/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&family=Prompt&display=swap");
@import url("https://use.typekit.net/rfk6cyx.css");

* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
    outline: none;
    margin: 0;
    padding: 0;
    font-weight: 400;
    text-decoration: none;
    list-style: none;
    font-family: "Montserrat", "Prompt", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #a7967b;
}

a {
    display: flex;
}

h2 {
    letter-spacing: 1.8px;
    font-size: 48px;
    font-family: "aviano-sans", sans-serif;
    font-weight: 700;
}

@media (width <= 992px) {
    h2 {
        font-size: 42px;
    }
}

@media (width <= 576px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    letter-spacing: 1px;
    font-size: 28px;
    line-height: 1.4;
}

@media (width <= 992px) {
    h3 {
        font-size: 24px;
    }
}

@media (width <= 576px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 22px;
}

@media (width <= 992px) {
    h4 {
        font-size: 18px;
    }
}

@media (width <= 576px) {
    h4 {
        font-size: 16px;
    }
}

p {
    line-height: 1.6;
}

header {
    z-index: 2;
    width: 100%;
    /* padding: 20px 60px; */
    padding: 0 100px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    /* height: 180px; */
    /* height: 120px; */
    transition: .5s;
}

/* header.scrolling {
    height: 100px;
} */
/* @media (max-width: 1440px) {
    header {
        padding: 40px 60px;
    }
} */

@media (width <= 992px) {
    header {
        /* padding: 20px 40px; */
        height: 80px;
    }

    header.mobile {
        /* background-color: #005e42;
        box-shadow: -1px -2px 2px #00000040; */
    }

    header.mobile:before {
        /* display: none; */
    }
}

@media (width <= 576px) {
    header {
        height: 65px;
        /* padding: 5px 10px; */
    }
}

header:before {
    content: "";
    z-index: -1;
    opacity: 0;
    /* background: linear-gradient(0deg, #e3dfd400 -20%, #e3dfd4 50%); */
    /* background: linear-gradient(180deg, rgba(175, 187, 196,0.7) 0%, rgba(175, 187, 196,0.3) 50%,rgba(175, 187, 196,0.1) 78%, rgba(175, 187, 196,0) 100%); */
    background: linear-gradient(
        180deg,
        rgba(167, 150, 123, 1) 10%,
        rgba(167, 150, 123, 0.8) 40%,
        rgba(167, 150, 123, 0.1) 80%,
        rgba(167, 150, 123, 0) 100%
    );
    height: 160px;
    width: 100%;
    /* height: 100%; */
    transition: opacity 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

header.scrolling:before {
    opacity: 1;
}

header.scrolling-v2:before {
    content: "";
    z-index: -1;
    opacity: 1 !important;
    background: linear-gradient(
        180deg,
        rgba(167, 150, 123, 1) 10%,
        rgba(167, 150, 123, 0.8) 40%,
        rgba(167, 150, 123, 0.1) 80%,
        rgba(167, 150, 123, 0) 100%
    );
    height: 160px;
    width: 100%;
    transition: opacity 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

header > div {
    justify-content: center;
    align-items: center;
    width: 33.33%;
    display: flex;
}

header > div:last-child {
    justify-content: flex-end;
}

header > div a.btn-logo {
    height: 100%;
    align-items: center;
    padding: 10px 0;
}

@media (max-width: 576px) {
    header > div a.btn-logo {
        padding: 5px 0;
    }
}

header > div a.btn-logo img {
    object-fit: contain;
    width: 100%;
    max-height: 110px;
    height: 100%;
    transition: .5s;
}

header.scrolling >div img {
    transform: scale(.7);
}

@media (max-width: 992px) {
    header.scrolling >div img {
        transform: scale(1);
    }
}
/* @media (max-width: 576px) {
    header > div a.btn-logo img {
        max-height: unset;
        height: 30px;
    }
} */
header > div a.btn-register {
    color: #fff;
    background-color: #a7967b;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 40px;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    transition: 0.5s;
}

a.btn-register:hover {
    background-color: #f3e7cd;
    color: #7d6a58;
}

@media (width <= 576px) {
    header > div a.btn-register {
        height: unset;
        width: 90px;
        padding: 8px 10px;
        font-size: 11px;
    }
}

.container-wrapper {
    max-width: 1000px;
    margin: auto;
}

@media (width <= 992px) {
    main {
        /* margin-top: 80px; */
    }
}

@media (width <= 576px) {
    main {
        /* margin-top: 55px; */
    }
}

section.banner {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

section.banner:before {
    content: "";
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
    /* background: linear-gradient(0deg, #020202 0%, #A7967B00 100%); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

section.banner img {
    object-fit: cover;
    object-position: left;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media (width <= 1024px) {
    /* section.banner {
        height: unset;
    }

    section.banner img {
        top: unset;
        left: unset;
        position: relative;
    } */
}

@media (width <= 992px) {
    section.banner {
        flex-direction: column;
    }
}

section.banner .hidden {
    pointer-events: none;
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media (width <= 992px) {
    section.banner .hidden {
        height: 80px;
    }
}

@media (width <= 576px) {
    section.banner .hidden {
        height: 55px;
    }

    section.banner {
        height: 50vh;
    }

    section.banner .banner-1 img {
        object-position: 12% center;
    }
    section.banner .banner-2 img {
        object-position: 0 center;
    }
}

section.banner .box-title {
    z-index: 1;
    width: 100%;
    position: absolute;
    bottom: 3vw;
    left: 50%;
    transform: translateX(-50%);
}

@media (width <= 992px) {
    /* section.banner .box-title {
        bottom: unset;
        transform: unset;
        left: unset;
        background: #f3e7cd;
        width: 100%;
        padding: 20px 10px;
        position: relative;
    }

    section.banner .box-title h2,
    section.banner .box-title h4,
    section.banner .box-title span {
        color: #7d6a58 !important;
    }

    section.banner .scroll-downs .mousey {
        border-color: #7d6a58 !important;
    }

    section.banner .scroll-downs .mousey .scroller {
        background-color: #7d6a58 !important;
    } */
}

section.banner .box-title h2 {
    white-space: pre-line;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-bottom: 20px;
    font-size: 42px;
}

@media (width <= 1280px) {
    section.banner .box-title h2 {
        font-size: 32px;
    }
}

@media (width <= 576px) {
    section.banner .box-title h2 {
        font-size: 20px;
    }
}

section.banner .box-title h2.title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

@media (max-width: 1440px) {
    section.banner .box-title h2 {
        font-size: 38px;
    }
    section.banner .box-title h2.title {
        font-size: 27px;
    }
}

@media (max-width: 1280px) {
    section.banner .box-title h2 {
        font-size: 32px;
        margin-bottom: 10px !important;
    }
    section.banner .box-title h2.title {
        font-size: 23px;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 992px) {
    section.banner .box-title h2 {
        font-size: 28px;
        margin-bottom: 20px !important;
    }
    section.banner .box-title h2.title {
        font-size: 22px;
        margin-bottom: 15px !important;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    section.banner .box-title h2 {
        font-size: 18px;
        letter-spacing: 0.3px;
    }
    section.banner .box-title h2.title {
        font-size: 14px;
    }
}

section.banner .box-title h4 {
    text-align: center;
}

section.banner .box-title h4 span {
    font-weight: bold;
}

section.banner .box-title h2,
section.banner .box-title h4,
section.banner .box-title span {
    color: #fff;
}

section.banner .scroll-downs {
    width: 19px;
    height: 35px;
    margin: auto;
}

section.banner .scroll-downs .mousey {
    border: 2px solid #fff;
    border-radius: 25px;
    width: 3px;
    height: 100%;
    padding: 9px;
}

section.banner .scroll-downs .mousey .scroller {
    background-color: #fff;
    border-radius: 25%;
    width: 2px;
    height: 7px;
    margin-left: -1px;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
}

section.banner h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

section.banner h4 span {
    font-size: 34px;
}

section.banner h4 span.baht {
    font-size: 20px;
}

@media (width <= 1280px) {
    section.banner h4 {
        font-size: 16px;
    }

    section.banner h4 span {
        font-size: 28px;
    }

    section.banner h4 span.baht {
        font-size: 16px;
    }
}

@media (width <= 576px) {
    section.banner h4 {
        font-size: 14px;
    }

    section.banner h4 span {
        font-size: 24px;
    }

    section.banner h4 span.baht {
        font-size: 14px;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

section.register {
    padding: 60px 40px;
    overflow: hidden;
}

/* @media (width <= 992px) {
    section.register {
        padding: 80px 40px;
    }
} */

@media (width <= 576px) {
    section.register {
        padding: 40px 20px;
    }
}

section.register h2 {
    margin-bottom: 30px;
}

section.register h2,
section.register span {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    display: block;
}

section.register span {
    letter-spacing: 0.8px;
}

@media (width <= 992px) {
    section.register span {
        letter-spacing: 1px;
        font-size: 14px;
    }
}

@media (width <= 576px) {
    section.register span {
        letter-spacing: 1px;
        font-size: 9px;
    }
}

section.register form {
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto;
    display: flex;
}

section.register form .user-box {
    width: 50%;
    padding: 0 40px;
    margin-bottom: 40px;
    position: relative;
}

section.register form .user-box.col-1 {
    width: 100%;
}

@media (width <= 992px) {
    section.register form .user-box {
        padding: 0 20px;
        margin-bottom: 30px;
    }
}

@media (width <= 576px) {
    section.register form .user-box {
        width: 100%;
        padding: 0;
    }
}

section.register form .user-box select {
    color: #fff;
    background-color: #0000;
    border-bottom: 1px solid #fff;
    width: 100%;
    height: 42px;
    /* margin-bottom: 40px; */
    padding: 10px 0;
    font-size: 16px;
}

@media (width <= 576px) {
    section.register form .user-box select {
        font-size: 14px;
    }
}

section.register form .user-box.text-box label,
section.register form .user-box.time-box label {
    top: unset;
    left: unset;
    margin-bottom: 10px;
    padding: 0;
    display: block;
    position: relative;
}

/* section.register form .user-box.text-box {
  margin-bottom: 30px;
} */

section.register form .user-box.text-box textarea {
    color: #fff;
    background-color: #0000;
    border: 1px solid #fff;
    border-radius: 5px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

@media (width <= 576px) {
    section.register form .user-box.text-box textarea {
        font-size: 14px;
    }
}

/* section.register form .user-box.time-box {
  margin-bottom: 40px;
} */

/* @media (width <= 576px) {
  section.register form .user-box.time-box {
    margin-bottom: 30px;
  }
} */

section.register form .user-box.time-box ul {
    padding: 20px 0;
    display: flex;
}

section.register form .user-box.time-box ul li {
    align-items: center;
    width: 50%;
    display: flex;
}

section.register form .user-box.time-box ul li label {
    top: unset;
    left: unset;
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 16px;
}

@media (width <= 576px) {
    section.register form .user-box.time-box ul li label {
        font-size: 14px;
    }
}

section.register form .user-box ::placeholder {
    color: #fff;
}

section.register form .user-box input[type="text"] {
    color: #fff;
    background: none;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    width: 100%;
    /* margin-bottom: 40px; */
    padding: 10px 0;
    font-size: 16px;
}

@media (width <= 576px) {
    section.register form .user-box input[type="text"] {
        /* margin-bottom: 30px; */
        font-size: 14px;
    }
}

section.register form .user-box label {
    color: #fff;
    pointer-events: none;
    padding: 10px 0;
    font-size: 16px;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 40px;
}

@media (width <= 992px) {
    section.register form .user-box label {
        left: 20px;
    }
}

@media (width <= 576px) {
    section.register form .user-box label {
        font-size: 14px;
        left: 0;
    }
}

section.register form .user-box input:focus ~ label,
section.register form .user-box input:valid ~ label {
    font-size: 12px;
    top: -20px;
    left: 40px;
}

@media (width <= 992px) {
    section.register form .user-box input:focus ~ label,
    section.register form .user-box input:valid ~ label {
        left: 20px;
    }
}

@media (width <= 576px) {
    section.register form .user-box input:focus ~ label,
    section.register form .user-box input:valid ~ label {
        left: 0;
    }
}

section.register form .policy-box {
    width: 100%;
    padding: 0 40px;
}

@media (width <= 992px) {
    section.register form .policy-box {
        padding: 0 20px;
    }
}

@media (width <= 576px) {
    section.register form .policy-box {
        padding: 0;
    }
}

section.register form .policy-box label {
    top: unset;
    left: unset;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    padding-left: 35px;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    position: relative;
    pointer-events: all !important;
}

section.register form .policy-box label input {
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
    position: absolute;
}

section.register form .policy-box label input:checked ~ .checkmark:after {
    display: block !important;
}

section.register form .policy-box label .checkmark {
    border: 1px solid #fff;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
}

section.register form .policy-box label .checkmark:after {
    content: "";
    border: 2px solid #fff;
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 10px;
    display: none;
    position: absolute;
    top: 4px;
    left: 8px;
    transform: rotate(45deg);
}

@media (width <= 576px) {
    section.register form .policy-box label {
        font-size: 14px;
    }
}

section.register form .policy-box label a {
    color: #fff;
    text-decoration: underline;
    display: inline-block;
}

section.register form input[type="submit"] {
    color: #a7967b;
    text-transform: uppercase;
    cursor: pointer;
    background-color: #fff;
    border-radius: 5px;
    width: 160px;
    height: 40px;
    margin: 40px auto auto;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    transition: 0.5s;
}
section.register form input[type="submit"]:hover {
    background-color: #f3e7cd;
    color: #7d6a58;
}

@media (width <= 576px) {
    section.register form input[type="submit"] {
        height: unset;
        width: 90px;
        padding: 8px 10px;
        font-size: 14px;
    }
}

section.register form ul.convenient .container {
    -webkit-user-select: none;
    user-select: none;
    margin-bottom: 12px;
    display: block;
    position: relative;
    cursor: pointer !important;
    pointer-events: all !important;
    padding-left: 35px !important;
}

section.register form ul.convenient .container input {
    opacity: 0;
    cursor: pointer;
    position: absolute;
}

section.register form ul.convenient .container input:checked ~ .checkmark:after {
    display: block;
}

section.register form ul.convenient .container .checkmark {
    background-color: #0000;
    border: 1px solid #fff;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    position: absolute;
    top: -1px;
    left: 0;
}

@media (width <= 576px) {
    section.register form ul.convenient .container .checkmark {
        top: -4px;
    }
}

section.register form ul.convenient .container .checkmark:after {
    content: "";
    background: #fff;
    border-radius: 50%;
    width: 7px;
    height: 7px;
    display: none;
    position: absolute;
    top: 8px;
    left: 8px;
}

section.timeless {
    /* background-image: url("bg-timeless.a96f87d4.jpg"); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 40px;
    overflow: hidden;
}

@media (width <= 992px) {
    section.timeless {
        padding: 80px 50px;
    }
}

section.timeless h2,
section.timeless h3 {
    color: #1b3958;
}

@media (width <= 576px) {
    section.timeless {
        padding: 40px 10px;
    }
}

section.timeless .box-top h2,
section.timeless .box-top h3 {
    text-align: center;
    text-transform: uppercase;
    display: block;
}

@media (width <= 576px) {
    section.timeless .box-top {
        margin-bottom: 40px;
    }
}

section.timeless .box-center {
    flex-wrap: wrap;
    padding: 5vw 0;
    display: flex;
}

@media (width <= 576px) {
    section.timeless .box-center {
        margin-bottom: 40px;
        padding: 0;
    }
}

section.timeless .box-center > div {
    width: 25%;
    padding: 0 10px;
}

@media (width <= 576px) {
    section.timeless .box-center > div {
        width: 50%;
    }
}

section.timeless .box-center > div .wrapper-img {
    display: flex;
    position: relative;
}

section.timeless .box-center > div .wrapper-img h4 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.timeless .box-center > div:nth-child(2n) {
    margin-top: 40px;
}

section.timeless .box-center > div img {
    width: 100%;
}

section.timeless .box-bottom h3 {
    text-align: center;
    letter-spacing: normal;
}

@media (width <= 992px) {
    section.timeless .box-bottom h3 {
        white-space: pre-line;
    }
}

@media (width <= 576px) {
    section.timeless .box-bottom {
        padding: 0 10px;
    }
}

section.contact {
    background-color: #FCEBD7;
    flex-wrap: wrap;
    display: flex;
    overflow: hidden;
}

section.contact li,
section.contact a {
    font-family: "Prompt", sans-serif;
}

section.contact .box-left {
    width: 35%;
    /* padding: 80px 40px; */
    padding: 80px 40px 80px 6vw;
}

@media (max-width: 1440px) {
    section.contact .box-left {
        padding: 40px 4vw;
        width: 40%;
    }

    section.contact .box-right {
        width: 60% !important;
    }
}

/* @media (width <= 1080px) {
  section.contact .box-left {
    padding: 80px 60px;
  }
} */

@media (max-width: 992px) {
    section.contact .box-left, section.contact .box-right {
        width: 100% !important;
    }
}

@media (width <= 576px) {
    section.contact .box-left {
        padding: 40px 6vw;
    }
}

section.contact .box-left h2 {
    margin-bottom: 30px;
}

section.contact .box-left h2,
section.contact .box-left li,
section.contact .box-left a {
    color: #005e42;
}

section.contact .box-left ul.detail li,
section.contact .box-left ul.detail a {
}

section.contact .box-left ul.detail li {
    white-space: pre-line;
    margin-bottom: 20px;
    padding-left: 30px;
    font-size: 16px;
    position: relative;
}

@media (width <= 576px) {
    section.contact .box-left ul.detail li {
        font-size: 14px;
    }
}

section.contact .box-left ul.detail li:before {
    content: "";
    background-position: 0;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}

/* section.contact .box-left ul.detail li:first-child:before {
  background-image: url("ic-pin.fc986023.svg");
}

section.contact .box-left ul.detail li:nth-child(2):before {
  background-image: url("ic-call.a2e663dd.svg");
} */

section.contact .box-left ul.detail li:nth-child(3) {
    margin-bottom: 0;
}

/* section.contact .box-left ul.detail li:nth-child(3):before {
  background-image: url("ic-mail.2f87a42b.svg");
} */

section.contact .box-left ul.toggle {
    margin-top: 30px;
    display: flex;
}

section.contact .box-left ul.toggle li {
    color: #909090cc;
    cursor: pointer;
    padding: 0 10px;
    font-size: 18px;
    transition: color 0.5s;
    position: relative;
}

@media (width <= 576px) {
    section.contact .box-left ul.toggle li {
        font-size: 16px;
    }
}

section.contact .box-left ul.toggle li:first-child {
    padding-left: 0;
}

section.contact .box-left ul.toggle li:first-child:before {
    content: "";
    background-color: #005e42;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
}

section.contact .box-left ul.toggle li.active {
    color: #005e42;
}

section.contact .box-right {
    width: 65%;
    position: relative;
    display: flex;
}

section.contact .box-right .wrapper-map {
    width: 100%;
    /* padding-bottom: 66.66%; */
    position: relative;
    display: flex;
}

section.contact .box-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
}

@media (width <= 1080px) {
    section.contact .box-right .wrapper-map {
        /* padding-bottom: 56.25%; */
    }
}

section.contact .box-right .wrapper-map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

section.contact .box-right .wrapper-map iframe.active {
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 992px) {
    section.contact .box-right .wrapper-map iframe {
        position: relative !important;
        top: unset !important;
        left: unset !important;
        height: 500px !important;
    }
    section.contact .box-right .wrapper-map iframe.active, section.contact .box-right .wrapper-map .mobile.active {
        pointer-events: all !important;
        display: block !important;
    }
    section.contact .box-right .wrapper-map iframe, section.contact .box-right .wrapper-map .mobile {
        display: none !important;
    }
    
}

/* @media (width <= 1024px) {
    section.contact {
        min-height: 40vh;
    }
} */

section.thankyou {
    width: 100%;
    min-height: calc(100vh - 59.5px);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.thankyou img {
    object-fit: cover;
    filter: grayscale() blur(3px);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (width <= 1080px) {
    section.thankyou {
        min-height: calc(100vh - 59.5px);
    }
}

@media (width <= 992px) {
    section.thankyou {
        min-height: calc(100vh - 59.5px);
    }
}

@media (width <= 576px) {
    section.thankyou {
        min-height: calc(100vh - 54.5px);
        padding: 40px 0;
    }
}

section.thankyou:before {
    content: "";
    z-index: 1;
    background-color: #ffffff80;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section.thankyou .box-text {
    z-index: 1;
    width: 100%;
    padding: 0 40px;
    position: relative;
    /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
}

section.thankyou .box-text h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 34px;
}

@media (width <= 992px) {
    section.thankyou .box-text h2 {
        font-size: 28px;
    }
}

section.thankyou .box-text p {
    text-align: center;
    text-transform: uppercase;
}

@media (width <= 992px) {
    section.thankyou .box-text p {
        font-size: 14px;
    }
}

section.thankyou .box-text .btn-home {
    color: #fff;
    text-transform: uppercase;
    background-color: #a7967b;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 40px;
    margin: 20px auto 0;
    padding: 10px 40px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    transition: 0.5s;
}

section.thankyou .box-text .btn-home:hover {
    background-color: #f3e7cd;
    color: #7d6a58;
}

@media (width <= 576px) {
    section.thankyou .box-text .btn-home {
        height: 30px;
        padding: 8px 20px;
        font-size: 11px;
    }
}

section.policy {
    background-color:#fae9d6;
    min-height: calc(100vh - 80px);
    padding: 180px 80px 120px;
}

@media (width <= 1080px) {
    section.policy {
        min-height: calc(100vh - 120px);
    }
}

@media (width <= 992px) {
    section.policy {
        padding: 40px 60px;
    }
}

@media (width <= 576px) {
    section.policy {
        padding: 40px 20px;
    }
}

section.policy h2 {
    text-align: center;
    color: #005e42;
    margin-bottom: 40px;
    font-size: 38px;
}

section.policy p {
    color: #005e42;
    margin-bottom: 20px;
}

section.policy p:last-child {
    margin-bottom: 0;
}

footer {
    background-color: #005e42;
    flex-wrap: wrap-reverse;
    justify-content: center;
    padding: 20px 40px;
    display: flex;
}

@media (width <= 1080px) {
    footer > div {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    footer > div:first-child {
        /* margin-top: 20px; */
    }
}

@media (width <= 576px) {
    footer > div:last-child ul li span,
    footer > div:last-child ul li:first-child {
        padding-right: 10px;
    }

    /* footer > div:last-child ul li:first-child img {
    height: 30px !important;
  } */

    footer > div:last-child ul li:last-child {
        padding-left: 10px;
    }

    /* footer > div:last-child ul li:last-child img {
    height: 12px !important;
  } */
}

footer span {
    color: #fff;
    font-size: 16px;
}

@media (width <= 576px) {
    footer span {
        font-size: 12px;
    }
}

footer ul {
    display: flex;
}

footer ul li {
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

footer ul li:first-child {
    padding-right: 20px;
}

/* footer ul li:first-child:before {
    content: "";
    background-color: #fff;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
} */

footer ul li:last-child {
    padding-left: 20px;
}

footer ul li span {
    padding-right: 15px;
}

footer div:first-child {
    align-items: center;
    display: flex;
}
/*# sourceMappingURL=index.b2d9cf43.css.map */

section.not-found {
    width: 100%;
    min-height: calc(100vh - 80px);
    background-color: #fae9d6;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.not-found h2 {
    font-size: 140px;
    color: #005e42;
}

section.not-found span {
    text-align: center;
    display: block;
    font-size: 22px;
    color: #005e42;
}

@media (max-width: 1080px) {
    section.not-found {
        min-height: calc(100vh - 120px);
    }
}

@media (max-width: 576px) {
    section.not-found {
        min-height: calc(100vh - 160px);
    }
}

label.error {
    position: relative !important;
    bottom: unset !important;
    right: unset !important;
    left: unset !important;
    top: unset !important;
    padding: 0 !important;
    font-size: 11px !important;
    display: block;
    text-align: right;
    margin-top: 10px !important;
}

.dropdown-box {
    position: relative;
}

.dropdown-box:before {
    content: "";
    position: absolute;
    right: 50px;
    top: 15px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .dropdown-box:before {
        right: 30px;
    }
}

@media (max-width: 992px) {
    .dropdown-box:before {
        right: 10px;
    }
}

.loading {
    width: 100%;
    height: 100vh;
    background-color: rgba(250,233,214, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.loading.active {
    pointer-events: all;
    opacity: 1;
}

.loading svg {
    width: 80px;
    height: 80px;
}

select option {
    background: #fff !important;
    color: #000 !important;
}

.swiper {
    width: 100%;
    height: 100vh;
}

#lottie {
    width: 100%;
    max-height: 110px;
    margin-top: 20px;
}
@media (max-width: 992px) {
    #lottie {
        max-height: 90px;
        margin-top: 15px;
    }
}

section.banner .swiper {
    cursor: pointer;
}