/* RESET CSS */
* {
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: sans-serif;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}

input,
textarea {
    border: none;
    outline: none;
}



/* HEADER */
header {
    background-color: #000720;
    width: 100%;
}

.header_inner {
    min-height: 60px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    background-color: #d1ecff;
    /* padding: 12.5px 0; */
}

.header_logo.logo {
    padding: 15px 0;
    /*background: #001B2C;*/
    /*width: 100%;*/
}

.logo>a {
    display: flex;
    width: 100%;
}

.header_logo img {
    width: 100%;
    height: 35px;
}

.header_nav {
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin: 0 auto;
    /*background-color: #0060A5;*/
    color: #A1BAE0;
}

.header_nav ul {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
    align-items: center;
}

.header_nav ul>li:not(:last-child),
.list_menu>li:not(:last-child) {
    margin-right: 35px;
}

.header_nav ul>li>a {
    color: #000;
    text-decoration: none;
    transition: 0.2s;
    font-family: "Avenir Book";
}

.header_nav ul>li.active>a {
    background-color: #0b2cb8;
    color: #fff;
    padding: 5px 15px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 18px;
}

/* TOP-CONTENT */
#top-content {
    background-image: url("../images/bg_img2.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

#top-content,
#top-overlay,
.top-content__wrapper {
    height: 50vh;
}

#top-overlay {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-content__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60%;
    align-items: left;
    margin: auto;
    color: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    
    /*background-color: #172734bb;*/
    /*width: 60%;*/
}

#top-content h1 {
    margin-bottom: 10px;
    font-size: 40px;
    text-align: center;
    font-weight: 600;
}

#top-content p {
    width: 80%;
    line-height: 22px;
    font-weight: 300;
    text-align: center;
}

/* HOTELS */
.hotels_wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 2em 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.hotel_item {
    width: 100%;
    background-color: #F7F5F3;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 10px;
    /*height: 300px;*/
}

.hotel_item_inner {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    /*height: 80%;*/
}

.hotel_info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    /*margin-bottom: 2em;*/
}

/*.hotel_info>div:first-child {*/
/*    width: 60%;*/
/*}*/

/*.hotel_info>div {*/
/*    width: 40%;*/
/*}*/

.hotel_info>div:first-child {
    margin-right: 1em;
    width: 22%;
}

.hotel_info div > img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.hotel_info_content {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    width: 28%;
}

.hotel_info_content ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    width: 60%;
}

.hotel_info_content img {
    width: 80%;
}

.check-btn {
    background-color: #013dc4;
    width: 60%;
    text-align: center;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 0 0 9px 0 rgba(61, 93, 77, 0.35);
    transition: .2s ease all;
}

.check-btn:hover {
    background-color: #0e265a;
    font-size: 1.5em;
    transition: .3s ease all;
}

.hotel_text {
    width: 45%;
    display: flex;
    align-items: center;
    /*height: 20%;*/
}

.hotel_text p {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.5em;
    letter-spacing: 0.8px;
}

/* CONTACT */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 50%;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1em;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: rgb(130, 130, 130);
    font-family: sans-serif;
}

/* PLACES */
.places-wrapper {
    width: 58%;
    margin: 3em auto 0;
}

.places-wrapper h2 {
    margin-bottom: 1em;
}

.places-wrapper>p {
    margin-bottom: 3em;
    line-height: 23px;
    letter-spacing: 1px;
    font-weight: lighter;
}

.place-item {
    margin-bottom: 6em;
}

.place_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 2em;
}

.place__order {
    margin-right: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.place__rating {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.place__rating>p {
    color: #004990;
    font-size: 23px;
    font-weight: 600;
}

.place__rating ul {
    display: flex;
}

.place_img {
    margin-bottom: 2em;
}

.place_img img {
    /* margin-bottom: 2em; */
    width: 100%;
    height: 100%;
}

.place_info p {
    line-height: 25px;
}


/* BOTTOM CONTENT */
#bottom-content {
    margin-top: 2em;
}

.bottom-content_wrapper {
    width: 78%;
    margin: 0 auto;
    color: #000;
}

.bottom-content_wrapper p:not(:last-child) {
    margin-bottom: 2em;
}

.bottom-content_wrapper p:nth-child(2n+1) {
    font-weight: 600;
}

/* FOOTER */
footer {
    width: 100%;
    margin: 6em auto 0;
    padding: 3em 0;
    background-color: #d1ecff;
    color: #fff;
}

.footer-wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    margin: 0 auto;
}

.footer-top,
.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-top {
    margin-bottom: 2em;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom {
    /*align-items: flex-end;*/
    justify-content: center;
}

.footer-bottom span {
    text-align: center;
    color: #000;
}

.footer-bottom p {
    width: 75%;
}

footer ul {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    /*width: 45%;*/
}

footer ul li a {
    color: #000;
}



/* MOBILE RESPONSIVENESS */
@media screen and (max-width: 991px) {
    .header_nav ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header_nav ul>li {
        margin-bottom: 10px;
        text-align: center;
    }

    .header_nav ul>li:not(:last-child) {
        margin-right: 0;
    }

    .top-content__wrapper {
        background-color: #17273459;
        width: 100%;
        height: 100%;
    }

    .hotels_wrapper {
        width: 90%;
    }

    .hotel_item {
        width: 100%;
        height: 100%;
        margin-bottom: 3em;
    }

    .hotel_info {
        flex-direction: column;
        align-items: center;
    }

    .hotel_info>div:first-child {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1em;
    }

    .hotel_info>div {
        width: 100%;
    }

    .hotel_info_content {
        align-items: center;
    }

    .hotel_info_content ul {
        width: 35%;

    }

    .hotel_info_content h2,
    .hotel_info_content ul {
        margin-bottom: 7px;
    }

    .hotel_item_inner,
    .hotel_item {
        padding: 0;
    }

    .hotel_text p {
        margin-bottom: 1em;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    footer ul {
        width: 100%;
        flex-direction: column;
        margin: 1em auto 0;
        text-align: center;
    }

    footer ul li a {
        text-decoration: underline;
    }

    footer ul li:not(:last-child) {
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
    }

    .footer-bottom span,
    .footer-bottom p {
        width: 100%;
        text-align: center;
    }

    .footer-bottom p {
        margin-bottom: 2em;
    }

    .footer-bottom span {
        font-weight: 600;
    }

    .places-wrapper {
        width: 90%;
    }
}

@media screen and (min-width: 560px) {
    .header_burger,
    .header_overlay {
        display: none;
    }
}
.clearfix::after{content:"";display:table;clear:both}
