@font-face {
    font-family: 'Charter';
    src: url(../../../assets/fonts/Charter/Charter.ttc);
    font-display: swap;
}
@font-face {
    font-family: 'CharterBold';
    src: url(../../../assets/fonts/Charter/Charter\ Bold.otf);
    font-display: swap;
}
@font-face {
    font-family: 'CharterBoldItalic';
    src: url(../../../assets/fonts/Charter/Charter\ Bold\ Italic.otf);
    font-display: swap;
}
:root {
    --en-text-font: 'Charter', sans-serif;
    --en-bold-font: 'CharterBold' , sans-serif;
    --en-bold-italic-font: 'CharterBoldItalic' , sans-serif;
    --primary-btn-color: #0C323C;
    --heading-color: #fff;
    --text-color: #0C323C;
    --text-color-light:#F0E9E2;
    --form-mob-bg-color: transparent;
    --form-bg-color: #FFFFFF;
    --lang-selector-color: #5D3E2E;
    --button-text-color: #E5D0BF;
    --input-color: #888888;
    --placeholder-color: #888888bd;
    --field-background: #E6E6E6;
    --page-background: #F0E9E2;
    --dark-section-bg: #0C323C;

}
/* GENERAL STYLING */
*{ box-sizing: border-box; margin: 0; padding: 0;color: var(--text-color); font-size: 18px;}
.container{ width: 85%; margin: 0 auto; }
img{ display: block; width: auto; height: auto; max-width: 100%;}
fieldset{ border: none; }
button, .button{ color: var(--button-text-color); background: var(--primary-btn-color); font-weight: 400; border: none; padding: 17px 20px; text-align: center; border-radius: 10px; width: 100%; font-size: 25px; line-height: 1em; cursor: pointer;}
strong{ font-size: inherit; color: inherit; font-weight: 700; }
body strong,body .bold{font-family: var(--en-bold-font);}
body .bold-italic{ font-family: var(--en-bold-italic-font); }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 1000px var(--field-background) inset !important; /* background color */ -webkit-text-fill-color: var(--input-color) !important;
  caret-color: var(--input-color); /* optional but nice */}
body{ font-family: var(--en-text-font);background: var(--page-background); }
body *{ font-family: var(--en-text-font);}
section{padding: 95px 0;}
 h2 { text-align: center; font-size: 60px; font-weight: 400;text-transform: uppercase; margin-bottom: 50px;}
.flex-row { display: flex; flex-wrap: wrap; }
.light-text *{color: var(--text-color-light);}
.owl-nav.disabled { display: none; }
/* hero */
#hero-image img { width: 100%; height: 100%; object-fit: cover;}
.hero-section { padding: 100px 0 140px;}
footer{ background-color: var(--primary-btn-color); height: 50px ; }

/* success */
#success-overlay { display: flex; justify-content: center; align-items: center; position: fixed; top: 0px; bottom: 0px; width: 100%; z-index: 99999999; background-color: rgba(0, 0, 0, 0.8); color: #3d3d3d; }
#success-overlay-innerwrap { display: block; position: relative; width: 92%; max-width: 600px; min-height: 180px; padding: 40px; background-color: rgb(255 255 255 / 90%); border-radius: 5px;    display: flex; justify-content: center; flex-direction: column; }
#success-overlay h4 { text-align: center; font-size: 35px;  margin-bottom: 10px; font-weight: 500;font-size: 30px; }
#success-overlay h5 { text-align: center; font-size: 18px; text-transform: none; font-size: 18px; font-weight: 400;}
#success-overlay-close { position: absolute; right: 0px; top: 0px; font-size: 22px; cursor: pointer; padding: 12px 15px 8px; font-weight: 600; background: #000; color: #fff; }

/* hero section */
.hero-section #hero-image { position: absolute; top: 0; left: 0; width: 100%; z-index: -1; height: 100%; padding: 40px;  }
#hero-image img { border-radius: 20px; }
.logo img { height: 80px; }
.hero-section .two-col-container { display: flex; gap: 50px; justify-content: space-between; flex-wrap: wrap; padding-top: 50px;}
.hero-section .two-col-container .headings {width: calc(100% - 50px - 35% - 30px ); padding-top: 30px;}
.hero-section .two-col-container .main-form { max-width: 360px; width: 35%; margin-right: 30px;}
h1 { font-size: 50px; line-height: 1.2em; max-width: 576px;color: var(--heading-color);padding-bottom: 50px; }
.headings .payment-plan { max-width: 370px; }
.hero-section:after { content: 'Scroll for more'; position: absolute; bottom: 39px; font-family: var(--en-text-font); font-size: 22px; left: calc((15% / 2) - 10px); padding: 10px 45px; /* background: var(--page-background); */ background: url(images/Button.png) no-repeat center; background-size: contain; font-style: italic; color: var(--text-color); }

/* form */
.main-form .field-wrap .error { font-size: 8px; color: red; position: absolute; width: fit-content; right: 2px; bottom: -10px; }
.select-wrap select { -webkit-appearance: none; -moz-appearance: none; appearance: none;  }
.select-wrap::after{ content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23566F76'><path d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z'/></svg>"); position: absolute; width: 18px; height: 18px; right: 5px; top: calc((100% - 18px ) / 2); }
.main-form .form-container { background: var(--form-bg-color); border-radius: 30px; margin-top: 0; padding: 30px 25px; }
.main-form .field-wrap input, .main-form .field-wrap select,.main-form .field-wrap select option { width: 100%; border: none; color: var(--input-color); background-color: var(--field-background); padding: 10px 12px; line-height: 1.3em; font-size: 14px; border-radius: 10px; }
.main-form .field-wrap { margin-bottom: 15px; position: relative;}
.main-form .field-wrap .iti { width: 100%; }
.main-form .field-wrap  input:focus-visible { outline: none; }
.main-form .field-wrap input::placeholder{color: var(--placeholder-color)}


/* quote section */
.quote-section p { font-size: 35px; font-style: italic; text-align: center; line-height: 1.4em; margin-bottom: 25px; }
.quote-section .container { max-width: 900px; }
.quote-section h2 { font-style: italic; text-transform: none;margin-bottom: 0; font-size: 45px; }

/* overview section */
.overview-section{background-color: var(--dark-section-bg); }
.overview-section .flex-row { gap: 20px; justify-content: space-between; }
.overview-section .flex-row .col { width: calc((100% - 20px * 3) / 4); text-align: center; }
.overview-section h4 { font-size: 27px; line-height: 1.2em; margin-bottom: 10px; font-weight: 400; }
.overview-section p .number { font-size: 60px; display: block; line-height: 1.2em; font-style: normal; color:#E6D1C0; font-weight: 700; margin-bottom: 5px; }
.overview-section p .text{ max-width: 200px; font-size: 20px; line-height: 1.2em; font-style: italic; display: block; margin: auto; }

/* Experiences Section  */
.experiences-section{background: url(images/Integrated\ Experiences-Desktop.jpg) no-repeat; background-size: cover;}
.experiences-section .flex-row { gap: 70px; }
.experiences-section .flex-row .col { width: calc((100% - 70px * 2) / 3); text-align: center; }
.experiences-section .col .img-wrap img { border-radius: 13%;margin: auto; }
.experiences-section .col .img-wrap { margin-bottom: 10px; }
.experiences-section .col h4 { font-size: 22px; font-style: italic; }

/* amenities section */
.amenities-section{ background: url(images/Amenities.png) no-repeat right bottom; background-size: 70%; padding-bottom: 19vw;}
.amenities-section .flex-row { gap: 80px  90px; }
.amenities-section .flex-row .col { width: calc((100% - 2 * 90px) / 3); }
.amenities-section h4 { display: flex; font-weight: 700; gap: 10px; margin-bottom: 10px; }
.amenities-section h4 .number { font-size: 60px; line-height: 1; }
.amenities-section h4 .text { font-size: 24px; font-weight: 700;  }
.amenities-section p { font-size: 24px; }


@media screen and (min-width:1600px) {
    .amenities-section { padding-bottom: 23vw; }
    
}
@media screen and (min-width:769px) {
    .mobile{display: none !important;}
    .hero-section{position: relative;}

    
}
@media screen and (max-width:1280px){
    .amenities-section .flex-row { gap: 80px 50px; }
    .amenities-section .flex-row .col { width: calc((100% - 2 * 50px) / 3); }
    .amenities-section { padding-bottom: 15vw; }
}
@media screen and (max-width:1024px) {
    .container { width: 90%; }
    .hero-section #hero-image { padding: 20px; }
    .hero-section .two-col-container .main-form { margin-right: 0; }
    .hero-section .two-col-container .headings { width: calc(100% - 20px - 35% ); }
    .hero-section:after { bottom: 19px; }
    .hero-section .two-col-container { gap: 20px; }
    .main-form .form-container { padding: 20px; }
    h1 { font-size: 45px; max-width: 500px; }
    h2 { font-size: 45px; }
}

@media screen and (max-width:980px){
    .overview-section .flex-row .col { width: calc((100% - 50px) / 2); }
    .overview-section .flex-row { justify-content: center; gap: 50px; max-width: 600px; margin: auto; }
}

@media screen and (max-width:768px) {
    /* general mobile layout */
    .desktop{display: none;}
    section { padding: 45px 0; }
    h2 { font-size: 30px;margin-bottom: 45px; }
    footer{height: 10px; background-color: transparent;}
    /* mobileslider */
    .experiences-section .flex-row .col{width: unset;}
    .experiences-section .flex-row{width: 95%; margin-left: auto;}
    /* hero section */
    .hero-section:after{display: none;}
    .hero-section .two-col-container .headings { position: relative; width: 100%; padding: 30px calc(5% + 10px) 70px; }
    .hero-section .two-col-container { flex-direction: column; padding: 0; gap: 30px; width: 100%;}
    .hero-section .two-col-container .main-form { width: 90%; margin: auto; max-width: unset; }
    .hero-section { padding: 0; }
    .hero-section #hero-image { padding: 10px; }
    .logo img { height: 44px; }
    .logo.mobile { padding-bottom: 30px; }
    h1 { font-size: 22px; }
    .headings .payment-plan { max-width: 240px; }
    .hero-section .headings:after {content: 'Scroll for more';position: absolute;bottom: 9px;font-family: var(--en-text-font);font-size: 14px;left: calc(5vw - 15px);padding: 6px 25px;/* background: var(--page-background); */background: url(images/Button.png) no-repeat center;background-size: contain;font-style: italic;color: var(--text-color);}
    /* quote section */
    .quote-section p { font-size: 20px; }
    .quote-section h2 { font-size: 24px; }

    /* amenities section */
    .amenities-section .flex-row .col { width: 100%; text-align: center; max-width: 410px; margin: auto; }
    .amenities-section h4 { justify-content: center; }
    .amenities-section .flex-row { gap: 45px; }
    .amenities-section p { font-size: 20px; }
    .amenities-section { background: unset; padding-bottom: 0; }
    .amenities-section .img-wrap img { width: 100%; }
    .amenities-section .img-wrap { padding-top: 45px; }

    /* overview */
    .overview-section h4 { font-size: 23px; }
    .overview-section p .text { font-size: 20px; }
    .overview-section p .number { font-size: 45px; }
}
@media screen and (max-width:480px) {
    .overview-section .flex-row .col{width: 100%;}
}