/* banner start */

.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-image: url(../images/hotels-banner.png);
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
}

/* desc */

.banner .desc2 {
    padding: 90px 0 160px 0;
    display: flex;
    justify-content: center;
}

.banner .desc2 h1 {
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--white-color);
}

/* banner end */

/* section start */

.section {
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
}

.section .text {
    text-align: center;
    margin: 0 50px;
}

.section .text p {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--black-color);
    line-height: 1.7;
}

.section .text p span {
    font-size: 2rem;
    font-weight: 400;
    display: block;
    margin-top: 15px;
}

/* img-block */

.section .img-block {
    margin-top: 40px;
    text-align: center;
}

.section .img-block img {
    width: auto;
}

/* section end */

/* member start */

.member {
    background-color: var(--accent-color);
    padding: 50px 0;
}

.member h3 {
    font-family: var(--para-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
}

.member h3 a {
    font-size: 4rem;
    font-weight: 700;
    color: #c5dfff;
    border-bottom: 2px solid #c5dfff;
}

/* member end */

/* responsive */

/* 1920px start */

@media (max-width: 1920px) and (min-device-width: 1400px) {
    .banner .desc2 {
        padding: 200px 0 230px 0;
    }
}

/* 1400px end */

/* 1399px start */

@media (max-width: 1399px) and (min-device-width: 1200px) {
    html {
        font-size: 54%;
    }
}

/* 1200px end */

/* 1199px start */

@media (max-width: 1199px) and (min-device-width: 992px) {

    html {
        font-size: 48%;
    }

    .banner .header .nav ul li {
        margin-right: 30px;
    }

    .banner .desc2 {
        padding: 90px 0 110px 0;
    }

}

/* 992px end */

/* 991px start */

@media (max-width: 991px) and (min-device-width: 768px) {

    html {
        font-size: 48%;
    }

    .banner .desc2 {
        padding: 180px 0 80px 0;
    }

    .section .text {
        margin: 0;
    }

    .section .img-block img {
        width: 100%;
    }
}

/* 768px end */

/* 767px start */

@media (max-width: 767px) and (min-device-width: 576px) {

    html {
        font-size: 46%;
    }

    .banner .desc2 {
        padding: 180px 0 80px 0;
    }

    .section .text {
        margin: 0;
    }

    .section .img-block img {
        width: 100%;
    }
}

/* 576px end */

/* 575px start */

@media (max-width: 575px) and (min-device-width: 375px) {

    html {
        font-size: 46%;
    }

    .banner .desc2 {
        padding: 160px 0 80px 0;
    }

    .banner .desc2 h1 {
        font-size: 4.4rem;
    }

    .section .text {
        margin: 0;
    }

    .section .img-block img {
        width: 100%;
    }

    .member {
        padding: 40px 0;
    }

    .member h3 {
        font-size: 2.8rem;
    }

    .member h3 a {
        font-size: 2.8rem;
    }
}

/* 375px end */