/* 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-bottom: 70px;
}

.section .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section .left {
    width: 46%;
}

.section .left h4 {
    font-family: var(--para-font);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 35px;
}

.section .left ul {
    display: block;
}

.section .left ul li {
    font-size: 2rem;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 35px;

    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: 0 3px;
    background-size: auto;
}

/* right */

.section .main .right {
    width: 52%;
}

.section .main .right form {
    background-color: #f6f6f6;
    padding: 60px;
}

.section .main .right form h4 {
    font-family: var(--para-font);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 30px;
    text-align: center;
}

.section .main .right form .control {
    font-family: var(--para-font);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--black-color);

    width: 100%;
    height: 65px;
    border: 1px solid transparent;
    margin-bottom: 15px;
    padding: 0 20px;
    transition: var(--trans);
}

.section .main .right form .control::placeholder {
    font-family: var(--para-font);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--black-color);
}

.section .main .right form .control:hover {
    border: 1px solid #b3e0db;
    box-shadow: 0 0 20px 0 rgba(179, 224, 219, .7);
}

.section .main .right form .control:focus {
    border: 1px solid #b3e0db;
    box-shadow: 0 0 15px 0 rgba(179, 224, 219, .7);
    outline: none;
}

/* comment */
.section .main .right form .comment {
    width: 100%;
    height: 130px;
    margin-bottom: 20px;
    padding-top: 20px;
}

/* btn */
.section .main .right form .btn {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white-color);
    background-color: #18a293;
    padding: 14px 90px;
    border-radius: 50px;

    display: flex;
    margin: 0 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 .main {
        display: block;
        margin-top: 70px;
    }

    .section .main .left {
        width: 100%;
    }

    .section .main .right {
        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 .main {
        display: block;
        margin-top: 70px;
    }

    .section .main .left {
        width: 100%;
    }

    .section .left ul li br {
        display: none;
    }

    .section .main .right {
        width: 100%;
    }

    .section .main .right form {
        padding: 50px;
    }
}

/* 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 .main {
        display: block;
        margin-top: 70px;
    }

    .section .main .left {
        width: 100%;
    }

    .section .left h4 {
        font-size: 3.2rem;
    }

    .section .left ul li br {
        display: none;
    }

    .section .main .right {
        width: 100%;
    }

    .section .main .right form {
        padding: 30px;
    }

    .section .main .right form h4 {
        font-size: 4rem;
    }
}

/* 375px end */