:root {
    --bird-blue: #3F538E;
    --bedspread-green: #32714C;
    --white: #ffffff;
    --black: #000000;
    --logo-green: #73995B;
    --chair-gray: #A3ABA9;
    --half-white: #F5F1ED;
    --divider-color: #111E58;
    --overlay-color: #5E5E5E;
    --bg-color: #F5F1ED;
    --outline: #43704F;
    --font-family-gill-sans: "Gill Sans Light";
    --font-family-gill-sans-Regular: "Gill Sans Regular";
}

*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;

}

html, body {
    font-family: var(--font-family-gill-sans);
    font-weight: 600;
}

section {
    padding: 60px 30px;
}

h2 {
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--bird-blue);
    text-align: center;

}

h3 {
    font-family: var(--font-family-gill-sans);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: var(--overlay-color);
}

.heading-2 {
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.p-text {
    font-family: var(--font-family-gill-sans);
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.96px;
    color: var(--bird-blue);
    margin: 48px auto 0;
}

.link-button {
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1.2px;
    color: var(--white);
    text-transform: uppercase;
}


a {
    text-decoration: none;
}

p {
    font-family: var(--font-family-gill-sans);
}

img {
    width: 100%;
}

.footer__copyright {
    padding-top: 100px;
    text-decoration: none;
    font-weight: 300;
    color: var(--bird-blue);
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.96px;
    text-align: right;
}

/*HEader*/
/***************************************
************* Main Menu Style ********
***************************************/

.main-menu {
    width: 100%;
    position: relative;

}

.primary-menu ul li {
    position: relative;
}

.main-menu .main-menu-wrapper {
    width: 100%;
    /*padding: 15px 30px;*/
    padding: 30px 30px 15px;
    display: flex;
    height: 117px;
    background-color: #ffffff;
    align-items: center;
}

.main-menu.main .main-menu-logo {
    /*width: 25%;*/
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.quote-sub-content p {
    min-height: 205px;
}

.sub-menu li a {
    color: var(--bird-blue) !important;
}

.menu-item.hover a {
    color: #A3ABA9;
}

.main-menu-logo {
    position: absolute;
    margin: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    /*width: 25%;*/
    text-align: center;
}

.main-header.sticky-header .main-menu-logo {
    max-width: 200px;
    width: 100%;
    text-align: center;
}

.main-header.sticky-header .main-menu-logo a > img {
    width: 90%;
}

.main-menu-logo a > img {
    /*max-width: 242px;*/
    width: 100%;
    /*margin-top: 20px;*/
}

.nav-icon {
    width: 32px;
    height: 10px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--bird-blue);
    border-radius: 0px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.15s ease-in-out;

}

.nav-icon span:nth-child(1) {
    top: 0;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 6px;
}

.nav-icon span:nth-child(4) {
    top: 12px;
}

.nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.main-menu .nav-menu-nav {
    display: inline-block;
    margin-left: auto;
}


.inner p {
    padding: 60px;
    margin-bottom: 300px;
}

header.main-header {
    /*position: sticky;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    transition: all .6s cubic-bezier(.165, .84, .44, 1);
    transform: translateY(0px);
}

header.main-header.scrolling_down {
    /*transform: translateY(-101%);*/
}

/*Full Screen Menu*/
.model-menu-c-wrapper {
    width: 100%;
    padding: 30px;
}

.model-menu-content {
    max-width: 1300px;
    width: 100%;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

div.col-1 {
    width: 48%;

}

.model-menu {
    overflow: hidden;
    background: white;
    transition-duration: 0.5s;

}

.model-menu-wrapper {
    position: fixed;
    top: 117px;
    width: 100%;
    z-index: 3;
    transform: translateY(-120%);
    transition: transform ease-out 2s;
    background: white;
}

.model-menu.isactive .model-menu-wrapper {
    transform: translateY(-0px);
    height: 100%;
}

.primary-menu ul {
    list-style: none;
}

.primary-menu a {
    text-decoration: none;
}

.primary-menu ul {
    display: inline-block;
    position: relative;
}

.primary-menu a, .contact-button li a {
    color: var(--bird-blue);
    font-family: var(--font-family-gill-sans-Regular);
    letter-spacing: 1.44px;
    font-size: 24px;
    font-weight: 400;
}

.primary-menu li ul.sub-menu a {
    font-size: 20px;

}

.main-header.seconday-menu .main-menu-logo a > img {
    max-width: 242px;
    width: 100%;
}

.model-menu .menu .sub-menu {
    width: 100%;
}

.primary-menu .menu li, .contact-button li {
    padding: 10px;
    /*         display: block; */
    /*         vertical-align: middle; */
}

.primary-menu li ul.sub-menu {
    display: none;

}

.primary-menu li:hover > ul.sub-menu {
    display: block;
    position: absolute;
    /*  top: -48px; */
    top: 15px;
    left: 100%;
    padding-left: 20px;
    /*height: 800px;*/
    /*overflow-y: scroll;*/

}

.primary-menu li ul.sub-menu li {
    padding: 8px;
}

.menu-image img {
    padding-top: 80px;
    width: 100%;
}

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

.contact-button li {
    padding: 10px;
    display: table;
    vertical-align: middle;
    /*margin-top: 40px;*/
}

.contact-button li a {
    font-size: 20px;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-decoration: none;

}

.contact-button {
    display: flex;
    align-items: center;
}

.contact-button img {
    width: 30px;
}

.contact-button .social-icons a {
    display: inline-block;
}

.contact-button .social-icons {
    display: flex;
    gap: 20px;
}

.cta-button {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-button .social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button img {
    width: 30px;
}

.contact-button .social-icons {
    display: flex;
    gap: 20px;
}

.contact-button .social-icons a {
    display: inline-block;
}


/*-----------------------------------
********Mobile Menu Stye*************
************************************/

.mobile-menu {
    display: none;
}

.mobile-menu {
    position: fixed;
    background: white;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 7;
    transform: translateY(-250%);
    transition: transform ease-out 1s;
    overflow-y: scroll;
    overflow-x: hidden;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu .main-menu-wrapper {
    padding: 15px 25px;
    height: 100%;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/
    /*min-height: 832px;*/
}

.mobile-menu-head {
    align-items: start;
    padding: 15px 0;
    display: flex;
    position: relative;
    height: 120px;
}

.mobile-menu-head.hamburger {
    padding-top: 20px;
}

.mobile-menu-items .primary-menu-container.primary-menu- {
    padding-top: 30px;
}

.mobile-menu-logo {
    display: inline-block;
    position: absolute;
    margin-left: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    max-width: 100px;
    width: 100%;
}

.mobile-menu-logo img {
    width: 100%;
}

.mobile-nav-icon {
    width: 32px;
    height: 10px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.mobile-nav-icon span:nth-child(1) {
    top: 0;
}

.mobile-nav-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #000000;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.15s ease-in-out;
}

.mobile-nav-icon span:nth-child(2),
.mobile-nav-icon span:nth-child(3) {
    top: 8px;
}

.mobile-nav-icon span:nth-child(4) {
    top: 16px;
}

.mobile-nav-icon.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

.mobile-nav-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-nav-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

.mobile-nav-icon.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

.mobile-menu-items ul {
    list-style: none;
    display: inline-block;
    position: relative;
    padding: 5px;
}

.mobile-menu-items ul li {
    padding: 5px 10px;
    display: block;
    vertical-align: middle;
}

.mobile-menu-items ul li a, .cta-button li a {
    text-decoration: none;
    color: var(--bird-blue);
    font-family: var(--font-family-gill-sans-Regular);
    letter-spacing: 1.44px;
    font-size: 24px;
    font-weight: 400;
}

.nav-menu-mobile {
    width: 100%;
    height: 100%;
}

.mobile-menu-items {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-items .sub-menu {
    width: 100%;
    /*height: 100%;*/
    background: white;
    position: absolute;
    margin: auto;
    left: 50%;
    top: 65%;
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    /*display: none;*/
    -webkit-transition: transform 0.35s;
    transition: transform 1s;
    min-height: 645px;
}

.mobile-menu-items .sub-menu.isOpen {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    /*transform: translate3d(0, 0, 0);*/
}

.sub-menu.isOpen {
    display: block;
}

.nav-menu-mobile .sub-menu li:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-menu.isOpen li:not(li:first-child) {
    padding: 5px 20px;
}

.nav-toggle-icon {
    display: none;
}

.nav-toggle-icon::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-color: #43528A;
    border-style: solid;
    border-width: 1px 1px 0 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /*top: 50%;*/
    margin-top: -5px;
    right: 0;
}

.mobile-menu-items ul li.menu-item-has-children {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-toggle-icon-b::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-color: #43528A;
    border-style: solid;
    border-width: 1px 1px 0 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(-134deg);
    /* top: 50%; */
    margin-top: -5px;
    right: 15;
}

.nav-toggle-icon-b {
    margin-right: 20px;
}

.reserve-btn_ {
    display: none;
    background-color: var(--bird-blue);
    text-align: center;
    max-width: 300px;
    width: 100%;
    margin-top: 10px;
}

.cta-button li {
    list-style: none;
}

.cta-button li a {
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 20px;

}


/*Media Quries*/


.main-menu-wrapper.full-screen {
    height: 350px;
    align-items: start;
    /*padding-top: 30px;*/
}

.model-menu-wrapper.v2 .main-menu-wrapper.full-screen {
    height: 130px;
}

.model-menu-wrapper.v2 .main-menu-logo {
    /*width: 20%;*/
    text-align: center;
    max-width: 238px;
    width: 100%;

}

.model-menu-wrapper.v2 .main-menu-logo img {
    width: 100%;
}

.model-menu-wrapper.v2 {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 9;
    transform: translateY(-120%);
    transition: transform ease-out 1s;
    background: white;
}

.model-menu.isactive .model-menu-wrapper.v2 {
    /* transform: translateY(0px); */
    transform: translateY(0px);
    height: 100%;
}

.model-menu-wrapper.v2 .main-header {
    /*margin-top: 20px;*/
}

.model-menu-wrapper.v2 .model-menu-content {
    /*margin-top: 20px;*/
}

.main-header.sticky-header .main-menu-wrapper.full-screen {
    height: 117px;
    position: relative;
    display: flex;
    align-items: center;
}


/*end Header*/

/*Open Spring*/
.open_spring {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.villa-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1300px;
}

.full-width-banner-image img {
    width: 100%;
}

.open-spring-heading {
    /*padding-top: 100px;*/
}

.villa-footer .villa-container {
    max-width: 1246px;
    width: 100%;
}


.villa-container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.villa-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.villa-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

.villa-col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.villa-col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.villa-col-3 {
    /*-webkit-box-flex: 0;*/
    /*-ms-flex: 0 0 25%;*/
    /*flex: 0 0 25%;*/
    /*max-width: 25%*/
}

.villa-col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.villa-col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

.villa-col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.villa-col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.villa-col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

.villa-col-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%
}

.villa-col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

.villa-col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.villa-col-half {
    /*-webkit-box-flex: 0;*/
    /*-ms-flex: 0 0 22%;*/
    /*flex: 0 0 22%;*/
    max-width: 22%;
    width: 100%;
}

.villa-col-2-half- {
    /*-webkit-box-flex: 0;*/
    /*-ms-flex: 0 0 34%;*/
    /*flex: 0 0 34%;*/
    max-width: 34%
}

/*Footer Sytling*/
footer {
    border-top: 1px solid var(--bird-blue);
    padding: 90px 30px 40px 30px;
}

footer h3 {
    font-family: var(--font-family-gill-sans);
    letter-spacing: 6px;
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    color: var(--bird-blue);
    text-transform: uppercase;
}

footer .quick-links ul {
    list-style: none;
}

footer .quick-links ul a {
    text-decoration: none;
    font-weight: 300;
    color: var(--bird-blue);
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.96px;
}

footer .social-icons a {
    margin-right: 20px;
    text-decoration: none;
}

footer .social-icons a i.fa {
    display: inline-block;
    border-radius: 60px;
    padding: 0.1em 0.2em;
    font-size: 30px;
    background-color: var(--bird-blue);
    color: var(--white);
}

footer .social-icons img {
    width: 30px;
}

footer .address p,
footer .contact-info span {
    color: var(--bird-blue);
    letter-spacing: 0.96px;
    font-weight: 300;
    font-size: 16px;
}

.pt-33 {
    padding-top: 33px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-70 {
    padding-top: 70px;
}

.inputContainer {
    position: relative;
}

.inputContainer span {
    position: absolute;
    right: 15px;
    color: var(--black);
    font-family: var(--font-family-gill-sans);
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 100;
    width: 20px;
    cursor: pointer;

}

.main-menu .nav-menu-nav a, .open-spring-button.default-button a {
    font-family: var(--font-family-gill-sans);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--bird-blue);
    border: 1px solid var(--bird-blue);
    /*background-image: -webkit-linear-gradient(30deg, var(--bird-blue) 50%, transparent 50%);*/
    /*background-image: linear-gradient(30deg, var(--bird-blue) 50%, transparent 50%);*/
    /*background-size: 1000px;*/
    /*background-repeat: no-repeat;*/
    /*background-position: 0;*/
    /*-webkit-transition: background 300ms ease-in-out;*/
    /*transition: background 400ms ease-in-out;*/
}

.inputContainer span.icon::after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 10px;
    width: 10px;
    border-color: #43528A;
    border-style: solid;
    border-width: 1px 1px 0 0;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    /* top: 50%; */
    margin-top: -5px;
    right: 0;
}

.accept p {
    font-size: 14px;
    font-weight: 400;
    color: var(--bird-blue);
    letter-spacing: 0px;
    position: relative;
    padding-top: 36px;
}

.accept input[type="checkbox"] {
    float: right;
    width: 20px;
    height: 20px;
}

.inputContainer, .inputContainer input[type="email"] {
    width: 100%;
    font-size: 12px;
    color: var(--bird-blue);
    text-transform: capitalize;
}

.icon {
    color: var(--bird-blue);
    text-align: right;
}

.inputContainer input[type="email"] {
    border-radius: 56px;
    padding: 18px 22px 15px 25px;
    border: 0.5px solid #43528A;
    /*border: 0.5px solid var(--bird-blue);*/
}

.image-text.default-button.auto-margin.has-bg a {
    text-decoration: none;
}

.image-text.default-button.auto-margin.has-bg a:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
}

.room-list-wrapper {
    max-width: 1406px;
    margin: 0 auto 84px;
}

.room-list {
    padding: 0 25px;
}

.item-image img {
    max-width: 713px;
    width: 100%;
}

.room-list-items {
    display: flex;
}

.item-image {
    max-width: 713px;
    width: 100%;
}

.item-detail {
    max-width: 693px;
    width: 100%;
    margin: 13px auto 24px;
}

.room-list-title h2 {
    color: var(--bedspread-green);
    font-size: 32px;
    font-family: var(--font-family-gill-sans);
    letter-spacing: 9.6px;
    font-weight: 300;
}

.room-item-list-wrapper {
    max-width: 577px;
    width: 100%;
    margin-left: auto;
    position: relative;
}

.room-item-body {
    margin: 59px auto 50px;
}

.room-item-body p {
    font-size: 16px;
    color: var(--bedspread-green);
    letter-spacing: 0.96px;
}

.room-item-body p:not(:last-child) {
    margin-bottom: 50px;
}

.room-item-cta-button .reserve-btn, .room-item-cta-button .detail-btn {
    max-width: 255px;
    width: 100%;
    padding: 12px;
}

.room-item-cta-button .reserve-btn {
    border: 1px solid #43704F;

}

.room-item-cta-button .reserve-btn a, .room-item-cta-button .detail-btn a {
    font-size: 20px;
    color: var(--bedspread-green);
    font-family: var(--font-family-gill-sans-Regular);
    font-weight: 400;
    letter-spacing: 6px;
}

.room-item-cta-button .detail-btn a {
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
}

.room-item-cta-button {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.room-item-list-wrapper:before {
    position: absolute;
    width: 0.5px;
    height: 100%;
    position: absolute;
    background: var(--bird-blue);
    content: "";
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
}

/*centeral Image*/
.fullwidth {
    /*padding: 0 25px 115px;*/
    /*padding: 0 25px 100px;*/
    /*padding: 60px 25px;*/
}

.centeral-image-image {
    text-align: center;
}

.section.central-image.fullwidth {
    max-width: 1011px;
    width: 100%;
}

.central-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.central-image-container.no-title {
    padding-top: 0px;
    padding-bottom: 0px;
}

.central-image-container.has-title {
    /*padding-top: 120px;*/
    /*padding-bottom: 75px;*/
}

.centeral-image-image img, .centeral-vimeo-video {
    /*max-width: 734px;*/
    width: 100%;
}


.central-image .centeral-image-title {
    text-align: center;
}

.central-image .centeral-image-title h2 {
    color: var(--bird-blue);
}

.central-image .divider {
    width: 60%;
    height: 0.5px;
    background: var(--divider-color);
    margin: 30px 0px 50px 0px;
    display: inline-block;
}


.default-button {
    /*max-width: 380px;*/
    background: var(--bird-blue);
    margin-top: 65px;
    text-align: center;
    padding: 10px 12px;
}


.centeral-image-button {
    max-width: 380px;
    background: var(--bird-blue);
    margin-top: 56px;
    text-align: center;
    padding: 10px 12px;
    width: 100%;
    border: 1px solid var(--bird-blue);
}

.centeral-image-button:hover {
    /*background-color: var(--white);*/
    color: var(--bird-blue);
    text-decoration: underline;
}

.centeral-image-button:hover a {
    color: white;
}

.centeral-image-button p {
    color: var(--black);
}

.central-image .centeral-image-caption {
    /*width: 52%;*/
    max-width: 634px;
    /*margin-top: 48px;*/
}

.central-image .centeral-image-caption p {
    color: var(--bird-blue);
}

/*Open Spring*/
.open-spring {
    text-align: center;
}

.open-spring .p-text {
    max-width: 491px;
    width: 100%;
    /*padding: 100px 30px;*/
    padding: 50px 30px;
    letter-spacing: 1.2px;
    /*margin-top: 48px;*/
}

.open-spring-image img {
    max-width: 94px;
    max-height: 59px;
    width: 100%;
}

.open-spring .villa-container {
    /*padding-top: 160px;*/
    /*padding-bottom: 50px;*/
}

.open-spring-button.default-button a {
    max-width: 448px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    padding: 33px 40px;
    /*background: var(--bird-blue);*/

}

.open-spring-button.default-button {
    display: inline-block;
    background: transparent;
}

.open-spring-button.default-button .link-button {
    letter-spacing: 6px;
    text-decoration: underline;
    font-family: var(--font-family-gill-sans);
    text-decoration-thickness: 0.5px;
}

/*image Text*/
.image-text .villa-container {
    /*margin-top: 60px;*/
    /*margin-bottom: 60px;*/

}

.image-text-heading h2 {
    max-width: 510px;
    width: 100%;
    margin: auto;
}

.image-text-wrapper {
    display: flex;
    align-items: center;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
}

.image-text-desc {
    text-align: center;
}

.image-text .image-text-heading {
    padding-bottom: 16px;
}

.bird-icon {
    max-width: 95px;
    max-height: 59px;
    width: 100%;
}

/*.image-text-wrapper .image.image-text-column {*/
/*    width: 48%;*/
/*}*/

/*.image-text-wrapper .detail.image-text-column {*/
/*    width: 52%;*/
/*}*/
.image-text .image-text-image img {
    max-width: 573px;
    width: 100%;
}

.auto-margin {
    margin: auto;
}

.image-text .p-text {
    max-width: 395px;
    margin-bottom: 50px;
}

.image-text-icon {
    margin-top: 55px;
    margin-bottom: 37px;
}

.image-text-divider {
    max-width: 380px;
    width: 100%;
    height: 0.5px;
    background: var(--divider-color);
    margin-bottom: 45px;
    margin-top: 45px;

}

.image-text .link-button {
    font-size: 24px;
    color: var(--bird-blue);
    letter-spacing: 7.2px;
    /*letter-spacing: 1.2px;*/
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    transition: background 400ms ease-in-out;
}

.image-text.default-button .has-bg a {
    letter-spacing: 1.2px;
}

.image-text.default-button {
    background: none;
}

.image-text.default-button.has-bg {
    max-width: 380px;
    width: 100%;
}

.image-text-wrapper.reverse-col .detail.image-text-column {
    display: flex;
    justify-content: flex-start;
}

.image-text-vimeo-video {
    max-width: 573px;
    width: 100%;
}

/*Slider*/
.room-suite-slider-section {
    max-width: 1300px;
    margin: auto;
}

.room-suite-slider button.slick-next.pull-right.slick-arrow,
.gallary-image-slider button.slick-next.pull-right.slick-arrow,
.gallary-image-slider button.slick-prev.pull-left.slick-arrow,
.room-suite-slider button.slick-prev.pull-left.slick-arrow {
    background: none;
    border: none;
}

.room-suite-slider button.slick-next.pull-right.slick-arrow img,
.gallary-image-slider button.slick-next.pull-right.slick-arrow img,
.gallary-image-slider button.slick-prev.pull-left.slick-arrow img,
.room-suite-slider button.slick-prev.pull-left.slick-arrow img {
    width: 16px;
    height: 32px;
    transition: transform 0.5s ease-in-out;
    cursor: pointer;
}


.room-suite-slider button.slick-next.pull-right.slick-arrow img:hover,
.gallary-image-slider button.slick-next.pull-right.slick-arrow img:hover,
.gallary-image-slider button.slick-prev.pull-left.slick-arrow img:hover,
.room-suite-slider button.slick-prev.pull-left.slick-arrow img:hover {
    scale: 1.2;
}


.slides-numbers-detail {
    padding-top: 48px;
}

.slide-item img {
    margin: auto;
    /*max-width: 400px;*/
    max-width: 100%;
    width: 100%;
    height: 533px;
    object-fit: cover;
    object-position: center;
}

.room-suite-slider-section .slick-slide {
    height: auto;
}

.slides-numbers span, .slides-numbers {
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1.2px;
    color: var(--bedspread-green);
}

.slides-numbers-detail {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 200px;
    margin: auto;
}

.slide-item {
    position: relative;

}

.slide-item .slide-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.slide-item.slick-slide.slick-active:hover .overlay {
    opacity: 0.38;
}

.slide-item.slick-slide.slick-active:hover .slide-overlay-text {
    opacity: 1;
}

.triple-square-section-footer a:hover {
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
    /*transition: transform 400ms ease-in-out;*/
}

.image-text.default-button:hover {
    /*border: 1px solid var(--bedspread-green);*/
}

.image-text.default-button a:hover {
    text-decoration: none;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.38;
    transition: .5s ease;
    background-color: var(--overlay-color);
    /*max-width: 404px;*/
    max-width: 100%;
    margin: auto;
    opacity: 0;

}

.slide-overlay-text {
    opacity: 0;
}

.slide-overlay-text h2 {
    color: var(--white);
    font-size: 32px;
    letter-spacing: 9.2px;
    font-weight: 400;
}

.slide-overlay-text .cta {
    margin-top: 45px;
    max-width: 243px;
    width: 100%;
    background: var(--white);
    padding: 15px 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.slide-overlay-text a.link-button {
    color: var(--bedspread-green);
    font-size: 20px;
    letter-spacing: 6px;
    font-weight: 400;
}

.slider-suite.default-button {
    background: none;
    margin: 25px auto;
}

.slider-suite.default-button .link-button {
    letter-spacing: 6px;
    color: var(--bedspread-green);
    font-weight: 400;
}

/*Triple Square*/
.triple-square-sections {
    background-color: var(--bg-color);
    padding: 25px;
}

.triple-square-section-head {
    text-align: center;
}

.triple-square-section-head h2 {
    color: var(--bedspread-green);
    margin-bottom: 41px;
}

.triple-square-section-head p.p-text {
    max-width: 703px;
    color: var(--bedspread-green);
    margin: auto;
}

.triple-square-section {
    max-width: 1500px;
    margin: 97px auto 60px;
}

.triple-square-section-body-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 75px 0 75px 0;
    /*flex-wrap: wrap;*/
    /*position: relative;*/
}

.polaroid-editorial-sections {
    max-width: 1215px;
    margin: 97px auto 60px;
}

.polaroid-editorial-head h2 {
    color: var(--bedspread-green);
    text-align: center;
}

.polaroid-editorial-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 75px 0 75px 0;
    /*flex-wrap: wrap;*/
}

.polaroid-editorial-body-items {
    border: 0.25px solid #707070;
    max-width: 355px;
    box-shadow: 0px 1px 2px #00000029;
}

.polaroid-editorial-body-item {
    display: flex;
    flex-direction: column;
    padding: 12px 22px 40px;
    align-items: center;
    justify-content: center;
}

.polaroid-editorial-body-item img {
    /*max-width: 311px;*/
    width: 100%
}

h3 {
    font-family: var(--font-family-gill-sans-Regular);
    font-size: 16px;
    letter-spacing: 0.96px;
    color: var(--overlay-color);
    text-transform: uppercase;
    font-weight: 400;
}

.polaroid-editorial-body-item h3 {
    padding: 49px 0 0;
}

.polaroid-editorial-body-item p {
    max-width: 235px;
    width: 100%;
}

.polaroid-editorial-body-item p.p-text {
    max-width: 235px;
    width: 100%;
    color: var(--overlay-color);
}

.polaroid-editorial-footer .link-button {
    color: var(--bedspread-green);
    /*font-family: var(--font-family-gill-sans-Regular);*/
    font-weight: 400;
    font-family: var(--font-family-gill-sans);
}

.polaroid-editorial-footer {
    max-width: 475px;
    width: 100%;
    border: 0.5px solid var(--bedspread-green);
    margin: auto;
    text-align: center;
    padding: 25px 0;
}

.polaroid-editorial-cont {
    text-align: center;
}

.triple-square-section-footer {
    max-width: 475px;
    width: 100%;
    border: 0.5px solid var(--bedspread-green);
    margin: auto;
    text-align: center;
    padding: 22px 0;
}

.triple-square-body-item-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    opacity: 0;
}

.triple-square-body-item-overlay-text a {
    color: var(--white);
    font-size: 32px;
    letter-spacing: 9.2px;
    font-weight: 400;
    text-transform: uppercase;
}

triple-square-section-body-items:hover .triple-square-body-item-overlay {
    display: block;
}

/*Room Item List*/
.room-list-items {
    display: flex;
    align-content: center;
}

.room-list-wrapper {
    max-width: 1406px;
    /*margin: 0 auto 84 px;*/
    margin: 0 auto;
}

.room-list-items {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.room-list-title h2 {
    text-align: left;
}

.room-list-item img {
    /*max-width: 713px;*/
    width: 100%;
    /*max-height: 449px;*/
    /*height: 100%;*/
}

.room-list-title h2 {
    color: var(--bedspread-green);
    letter-spacing: 9.6px;
    font-size: 32px;
}

section.room-list {
    padding: 40px 30px;
}

.room-item-body p {
    margin-bottom: 65px;
}

.room-list-item.item-detail {
    max-width: 574px;
    position: relative;
    width: 100%;
}

.room-item-body p {
    margin-bottom: 55px;
    font-size: 16px;
    color: var(--bedspread-green);
}

.room-list-title h2 {
    margin-top: 3px;
    margin-bottom: 59px;
}

.room-item-cta-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 5px;
}

.room-item-cta-button .reserve-btn, .room-item-cta-button .detail-btn {
    max-width: 255px;
    width: 100%;
    padding: 12px;
}

.room-item-cta-button .reserve-btn {
    border: 1px solid #43704F;
    background: var(--bedspread-green);

}

.room-item-cta-button .reserve-btn a, .room-item-cta-button .detail-btn a {
    font-size: 20px;
    color: var(--bedspread-green);
    /*font-family: var(--font-family-gill-sans-Regular);*/
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    letter-spacing: 6px;
}

.room-item-cta-button .detail-btn a {
    text-decoration: underline;
    text-decoration-thickness: 0.5;
}

.room-list-item.item-detail:before {
    content: "";
    width: 0.5px;
    height: 90%;
    background: var(--divider-color);
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
}

.room-list-item.item-image {
    max-width: 713px;
    width: 100%;
    align-content: center;
}

.banner-image {
    height: 675px;
}

section.full-width-banner-image {
    padding: 0;
}

/*section.central-image.fullwidth {*/
/*    padding: 60px 25px 60px;*/
/*    max-width: 734px;*/
/*    width: 100%;*/
/*    margin: auto;*/
/*}*/
.room-list-item img {
    width: 93%;
}

.section.full-width-banner-image.single-image-suite {
    margin-bottom: 60px;
}

/*Page_title*/
.title-section {
    text-align: center;
}

.page-title {
    /* padding: 85px 0; */
    max-width: 793px;
    width: 100%;
    margin: auto;
}

.page-title h2 {
    color: var(--bedspread-green);
    margin-bottom: 0;
}

.page-title .image-text-divider.auto-margin {
    margin-bottom: 0;
}

/*Gallary*/
.gslides-numbers-detail {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 200px;
    margin: auto;
}

.gslides-numbers-detail {
    padding-top: 48px;
}

.fullwidth.gallary-image-slider {
    padding: 60px 25px;
}

.gallary-image-slider .slide-item > img {
    width: auto !important;
    max-width: 100%;
    height: 466px;
    object-fit: cover;
    object-position: center;
    margin-right: 10px;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}

/* the parent */
.slick-list {
    margin: 0 -10px;
}

.gallary-image-slider .slick-list {
    padding: 0 5% 0 0;
}

.gallary-header h2 {
    color: var(--bedspread-green);
    text-align: center;
}

.gallary-header .divider {
    width: 10%;
    height: 0.5px;
    background-color: var(--divider-color);
    /*margin: auto;*/
    margin: 39px auto 39px;
    display: inline-block;
}

.gallary-header {
    text-align: center;
}

.image-gallary-s {
    max-width: 90%;
    margin-left: 10%;
}

/*Single-Room*/
.single-room-feature-wrapper {
    max-width: 1368px;
    width: 100%;
    margin: auto;
}

.full-width-banner-image {
    min-height: 768px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-main {
    padding-top: 60px;
    padding-bottom: 60px;
}

.room-col {
    display: flex;
    flex-direction: column;
}

.room-col p {
    margin-top: auto;
    max-width: 418px;
    width: 100%;
}

.room-col h2, .room-col p {
    color: var(--bedspread-green);
    text-align: left;
}

.room-col p.p-text {
    text-align: left;
    margin: auto 0 30px 0;
}

.room-details p, .room-details ul > li, .room-details ol > li {
    margin-bottom: 30px;
    font-family: var(--font-family-gill-sans);
    /*text-align: center;*/
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.96px;
    color: var(--bedspread-green);
}

.room-details {
    padding-left: 100px;
}

.villa-col-6.room-details-col:before {
    content: "";
    width: 0.5px;
    height: 100%;
    background: var(--bird-blue);
    position: absolute;
    /*left: -10%;*/
    top: 50%;
    transform: translateY(-50%);
    /*border: 0.5px solid #111E58;*/
}

.villa-col-6.room-details-col {
    position: relative;
}

.open-spring-button.default-button.single-button {
    background: none;
    border: none;
    padding: 0;
    display: block;
    /*background-color: var(--bedspread-green);*/
    /*padding: 32px 36px;*/
    margin: 65px auto 0px;
}

.open-spring-button.default-button.single-button a {
    background-color: var(--bedspread-green);
    padding: 32px 36px;
    margin: auto;
    background-image: none;
    border: 1px solid var(--bedspread-green);

}

.open-spring-button.default-button.single-button a:hover {
    text-decoration: none;
    color: var(--bedspread-green);
}

.two-column-wrapper .villa-row {
    margin-left: 0;
    margin-right: 0;
}

.two-column-wrapper {
    max-width: 1324px;
    width: 100%;
    margin: auto;
}

.two-column-header h2 {
    text-align: center;
    color: var(--bedspread-green);
}

.two-column-wrapper .villa-row {
    margin-top: 100px;
}

.col-detail.room-details {
    padding-left: 0px;
}

.col-detail.room-details.col-sec {
    padding-left: 100px;
}

.villa-col-6.before-col {
    position: relative;
}

.two-column-wrapper .before-col:before {
    content: "";
    width: 0.5px;
    height: 100%;
    background: var(--bedspread-green);
    position: absolute;
    /* left: -10%; */
    top: 50%;
    transform: translateY(-50%);
    /* border: 0.5px solid #111E58; */

}

.double-media-wrapper {
    max-width: 1334px;
    margin: auto;
}

.double-media-items {
    display: flex;
    gap: 1rem;
    /*margin-bottom: 60px;*/
}

.double-media-item {
    max-width: 656px;
    width: 100%
}

.double-media-item img {
    /*max-width: 656px;*/
    width: 100%
}

.slider-suite.default-button a {
    border: 0.5px solid #43704F;
    padding: 13px 36px;
}

.slider-suite.default-button a {
    background-color: transparent;
    transition: background 400ms ease-in-out;
}

.slider-suite.default-button a:hover {
    background-color: var(--bedspread-green);
    color: var(--half-white);
}

.main-menu .nav-menu-nav a {
    padding: 13px 36px;
    letter-spacing: 4.8px;
    font-weight: 400;
}

strong {
    font-weight: 400;
}

.model-menu .model-menu-c-wrapper {
    height: 80%;
}

.main-menu .nav-menu-nav a:hover, .open-spring-button.default-button a:hover {
    background-color: var(--white);
    color: var(--bird-blue);
    text-decoration: none;
}

.main-header.seconday-menu .main-menu-logo a > img {
    width: 80%;
}

.main-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    transform: translateY(-200px);
    transition: transform ease-out 1.2s;
}

header.main-header.sticky-header.open.scrolling_up {
    transform: translateY(0px);
}

.text-editor {
    max-width: 1406px;
    width: 100%;
    margin: auto;
}

.text-editor.fullwidth {
    padding: 60px 25px 60px;
    text-align: center;
    color: var(--bedspread-green);

}

.text-editor.fullwidth p {
    font-family: var(--font-family-gill-sans);
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.96px;
}

.triple-square-section-body-item {
    position: relative;
    display: flex;
}

.triple-square-section-body-item:hover .triple-square-body-item-overlay {
    opacity: 0.38;
}

.triple-square-section-body-item:hover .triple-square-body-item-overlay-text {
    opacity: 1;
}

.triple-square-body-item-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0.38;
    transition: .5s ease;
    background-color: var(--overlay-color);
    /*max-width: 450px;*/
    margin: auto;
    opacity: 0;
}

.triple-square-section-body-item img {

    width: 450px;
    height: 450px;
    object-position: center;
    object-fit: cover;


    /*max-width: 450px;*/
    /*width: 100%*/
}

.triple-square-section-footer .link-button {
    color: var(--bedspread-green);
    /*font-family: var(--font-family-gill-sans-Regular);*/
    font-weight: 400;
    font-family: var(--font-family-gill-sans);
    letter-spacing: 6px;
}

.image-text.default-button.has-bg a {
    text-decoration: none;
    letter-spacing: 1.2px;
    font-size: 20px;
}

.image-text-divider- {
    height: 90px;
}

.image.image-text-column {
    width: 46%;
}

.detail.image-text-column {
    width: 54%;
    display: flex;
    justify-content: flex-end;
}

.main-menu-logo {
    text-align: center;
}


h1.main-heading {
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    font-size: 40px;
    letter-spacing: 12px;
    text-transform: uppercase;
    color: var(--bird-blue);
    text-align: center;
    padding: 60px 30px;
}

.grid-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.grid-item {
    width: 30%;
    padding: 20px;
    border: 1px solid #AEAEAE;
    text-align: center;
}

.quote-sub-content h3, .quote-sub-content p {
    padding: 15px;
    color: var(--bird-blue);

}

.quote-image img {
    max-width: 340px;
}

.quote-sub-content a, .quote-item a {
    font-size: 20px;
    color: var(--bird-blue);
    text-transform: uppercase;
    font-family: 'Gill Sans Regular';
    font-weight: 400;
    letter-spacing: 2px;

}

.award-img {
    text-align: center;
    padding: 100px 15px;
}

.award-img img {
    max-width: 140px;
}

.quote-items .quote-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.quote-items .quote-desc {
    max-width: 535px;
    text-align: center;
    padding: 40px 0;
}

h3.quote-heading {
    font-size: 20px;
    color: var(--bird-blue);
    text-transform: uppercase;
    font-family: 'Gill Sans Regular';
    font-weight: 400;
}

p.quote-date, div.quote-desc p {
    color: var(--bird-blue);
}

.quote_divider {
    height: 1px;
    width: 400px;
    background: var(--bird-blue);
    margin: 40px;
}

.quote_divider.last {
    height: 0;
}


/*Media Quries*/

@media (max-width: 1680px) {


}

@media (max-width: 1536px) {
    .primary-menu li:hover > ul.sub-menu {
        top: 15px;
    }

    .primary-menu li ul.sub-menu li {
        padding: 5px;
    }

    .primary-menu li ul.sub-menu a {
        font-size: 16px;
    }
}

@media (min-width: 1440px) {
    .model-menu-wrapper.v2 .main-menu-logo {
        width: 12%;
        text-align: center;
    }

}

@media (max-width: 1366px) {
    .room-list-item.item-image, .room-list-item.item-detail {
        max-width: 100%;
    }

    .triple-square-section-body-item img {
        width: 400px;
        height: 400px;

    }

    .full-width-banner-image {
        min-height: 600px;
    }

    section.title-section.fullwidth .page-title {
        width: 70% !important;
    }

    .room-list-item.item-detail:before {
        left: -8%;
    }

    .room-list-items {
        gap: 5rem;
    }

    .room-list-title h2 {
        margin-bottom: 40px;
    }

    .room-item-body p {
        margin-bottom: 40px;
    }
}

@media (max-width: 1280px) {
    .triple-square-section-body-item img {
        width: auto;
        max-width: 100%;
        height: 300px;

    }

    .gallery-item_ img {
        height: 280px;
    }

}

@media (max-width: 1080px) {
    .room-item-cta-button .reserve-btn, .room-item-cta-button .detail-btn {
        max-width: 200px;
    }

    .room-list-title h2 {
        margin-bottom: 20px;
    }

    .triple-square-section-body-item img {
        width: auto;
        max-width: 100%;
        height: 320px;
    }

    .open-spring-button.default-button a {
        padding: 18px;
    }

    .text-editor.fullwidth {
        width: 65% !important;
    }

    section.title-section.fullwidth {
        padding: 30px 30px;
    }

    .room-item-body p {
        margin-bottom: 20px;
    }

    .room-item-cta-button .reserve-btn, .room-item-cta-button .detail-btn {
        padding: 8px;
    }

    .two-column-wrapper .villa-row {
        margin-left: 0;
        margin-right: 0;
    }

    .image-text-desc {
        text-align: center;
        padding: 15px;
    }

    section.title-section.fullwidth .page-title {
        width: 70%;
    }

    h2 {
        font-size: 30px;
    }

    .room-list-item img {
        width: 100%;
    }

    .room-list-item.item-detail:before {
        height: 80%;
    }

    .room-item-body {
        margin: 20px auto 20px;
    }

    .room-item-body p:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (max-width: 1024px) {
    .polaroid-editorial-body-item p.p-text {
        margin: auto;
    }

    .open-spring-button.default-button, .centeral-image-button, .polaroid-editorial-footer, .triple-square-section-footer {
        padding: 12px 18px;
    }

    .villa-col-half, .villa-col-3.villa-col-2-half- {
        width: 100%;
        max-width: 50%;
        padding-bottom: 50px;
    }

    .polaroid-editorial-body-item h3 {
        padding: 20px 0px;
    }

    .open-spring-button.default-button, .centeral-image-button, .polaroid-editorial-footer, .triple-square-section-footer {
        /*max-width: 350px;*/
        max-width: 100%;
        padding: 20px 12px;
    }

    .polaroid-editorial-sections, .triple-square-section {
        margin: 50px auto 50px;
    }

    .two-column-wrapper .villa-row {
        margin-left: 0;
        margin-right: 0;
    }

    .primary-menu li ul.sub-menu li {
        padding: 6px;
    }

    .model-menu-content {
        gap: 5rem;
    }

    .triple-square-section-body-item img {
        max-width: 100%;
        width: auto;
        height: 300px;
    }

}

@media (max-width: 930px) {
    .image-text-wrapper .image.image-text-column, .image-text-wrapper .detail.image-text-column {
        width: 100%;
        text-align: center;
    }

    .image-text-desc {
        padding-top: 60px;
    }

    .room-item-cta-button .reserve-btn, .room-item-cta-button .detail-btn {
        max-width: 180px;
    }

    .enquiry-form .gform_wrapper.gravity-theme .gfield input::placeholder {
        font-size: 16px;
    }

    .enquiry-form {
        padding: 0 15px;
    }

    .enquiry-form .gfield {
        margin-bottom: 8px;
    }

    .enquiry-form .gform_wrapper.gravity-theme .gfield input {
        padding: 15px 5px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 30px 15px;
    }

    .full-width-banner-image {
        min-height: 300px;
    }

    .triple-square-section-body-items, .polaroid-editorial-body {
        flex-wrap: wrap;
        justify-content: center !important;
        margin: 30px 0;
    }

    .gallary-header .divider {
        width: 25%;
    }

    .main-menu-wrapper.full-screen {
        padding: 15px 15px !important;
    }


    ol, ul {
        list-style: none;
    }

    .page-title {
        width: 100%;
    }

    .open-spring-heading {
        padding-top: 50px;
    }

    .polaroid-editorial-footer, .centeral-image-button {
        max-width: 287px;
        padding: 10px 0;
    }

    .polaroid-editorial-body-items {
        max-width: 100% !important;
    }

    h2 {
        font-size: 30px;
    }

    .polaroid-editorial-body-item {
        flex-direction: row;
        padding: 5px;

    }

    .polaroid-editorial-body-item img {
        width: 50%;
    }

    .polaroid-editorial-body-item p.p-text {
        margin: auto;
    }

    section.title-section.fullwidth .page-title {
        width: 100% !important;
    }

    .image-text-wrapper {
        flex-wrap: wrap;
    }

    .polaroid-editorial-cont {
        padding-left: 20px;
    }

    .polaroid-editorial-body-item h3 {
        padding: 15px 0px;
    }

    .room-list-items {
        gap: 0;
        flex-direction: column;
    }

    .villa-col-half, .villa-col-3.villa-col-2-half- {
        max-width: 50%;
        padding-bottom: 50px;
    }

    .single-room-feature-wrapper .villa-row {
        flex-direction: column;
    }

    .single-room-feature-wrapper .villa-col-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .villa-col-6.room-details-col:before, .two-column-wrapper .before-col:before {
        width: 50%;
        height: 0.5px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .room-details, .col-detail.room-details.col-sec {
        padding-left: 0;
        margin-top: 30px;
    }

    .room-col p.p-text {
        text-align: center;
    }

    .two-column-wrapper .villa-row {
        margin-top: 50px;
    }

    .text-editor.fullwidth {
        width: 100% !important;
    }

    .detail.image-text-column {
        justify-content: center !important;
    }


    .triple-square-section-body-item img {
        max-width: 450px;
        width: 100%;
        height: auto;
    }

    .nav-menu-emeil {
        display: none;
    }

    .grid-item {
        width: 48%;
    }

    .gallery-item_ img {
        height: auto;
        object-fit: cover;
    }

}

@media (max-width: 767px) {

    .main-header.sticky-header .main-menu-logo img {
        width: 71px;
        height: 45px;
    }

    .main-header.seconday-menu .main-menu-logo a > img {
        width: 135px;
    }

    .main-header.sticky-header .main-menu-wrapper.full-screen {
        height: 68px !important;
    }

    .room-item-cta-button .reserve-btn a, .room-item-cta-button .detail-btn a {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .image-gallary-s {

        margin-left: 0;
    }

    .main-menu-logo.desktop {
        display: none;
    }

    .model-menu {
        display: none;
    }

    .gallary-image-slider .slide-item > img {

        /*height:auto;*/
    }

    .sub-menu li a {
        font-size: 18px !important;
    }

    .open-spring .p-text {
        /*padding: 50px 30px;*/
        padding: 15px 15px;
    }

    .image-text-divider- {
        display: none;
    }

    .open-spring-button.default-button a {
        padding: 12px 18px;
    }

    .open-spring-button.default-button, .centeral-image-button, .polaroid-editorial-footer, .triple-square-section-footer {
        padding: 12px 18px;
    }

    .detail.image-text-column, .image-text-wrapper.reverse-col .detail.image-text-column {
        justify-content: center;
    }

    .text-editor.fullwidth {
        width: 100%;
    }

    .room-list-item.item-detail:before {
        width: 0;
    }

    .main-menu-wrapper.full-screen {
        /*align-items: baseline !important;*/
        padding: 15px 0px 15px 15px !important;

    }

    .main-menu-wrapper.full-screen .main-menu-logo {
        width: 22%;
    }

    .mobile-menu .open {
        padding: 10px;
    }

    .main-header.seconday-menu .main-menu-wrapper.full-screen {
        height: 68px !important;
    }

    .main-menu-wrapper.full-screen {
        height: 120px !important;
        align-items: start;
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .nav-toggle-icon {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .main-menu .nav-menu-nav a {
        padding: 8px 18px;
    }

    .reserve-btn_ {
        display: block;

        /*color: white;*/

    }

    .reserve-btn_ a {
        color: var(--white) !important;
        text-transform: uppercase;

    }

    h2 {
        letter-spacing: 8px;
        margin-bottom: 12px;
    }

    .room-col p.p-text {
        /*margin: auto 10px 30px 10px;*/
        padding: 10px;
    }

    .open-spring-button.default-button.single-button a {
        padding: 20px 24px;
    }

    .gallary-image-slider .slide-item > img, .slide-item img {
        height: 350px;
        /*height:auto;*/
    }

    .enquiry-form .ginput_container_radio .gfield_radio {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .enquiry-form .gchoice {
        width: 120px !important;
    }

    .text-with-image-ihotel .cta-btn-ihotel {
        padding: 12px 18px;
    }
}

@media (max-width: 600px) {
    h2 {
        font-size: 25px !important;
        letter-spacing: 2px;
    }

    .slider-suite.default-button .link-button {
        padding: 12px;
    }

    .image-gallary-s {
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    h1.main-heading {
        letter-spacing: 2px;
        font-size: 25px;
        padding: 30px;
    }

    div.small-desc {;
        padding-bottom: 30px;
    }

    .event-offer-col {
        flex-wrap: wrap;
        gap: 30px;
    }

    div.col-1 {
        width: 100%;
    }

    .event-offer-col .divider {
        display: none;
    }

    .gallery-item_ img {
        height: auto;
    }

    .gallery-item_ {
        width: 100% !important;
    }

    .event-offer {
        padding: 30px 0;
    }

    .enquiry-form .gchoice {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .polaroid-editorial-body-item img {
        width: 100%;
    }

    .main-menu .nav-menu-nav a {
        /*padding: 7px 16px !important;*/
        /*letter-spacing: 2.8px !important;*/
        padding: 6px 8px !important;
        letter-spacing: 1.8px !important;
        font-size: 16px;
    }

    .polaroid-editorial-body-item {
        flex-direction: column !important;
    }


    .mobile-menu-items ul li a, .cta-button li a {
        font-size: 20px;

    }

    .main-menu-logo a > img {
        width: 75%;
    }

    .main-menu-logo {
        left: 50%;
    }

    .main-menu .main-menu-wrapper {
        padding: 0 15px;
    }

    /*.nav-menu-nav {*/
    /*    display: none !important;*/
    /*}*/
    .main-menu-wrapper.full-screen .main-menu-logo {
        width: 45%;

    }

    .grid-item {
        width: 100%;

    }

}

@media (max-width: 425px) {
    .villa-col-half, .villa-col-3.villa-col-2-half- {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .open-spring-button.default-button, .centeral-image-button, .polaroid-editorial-footer, .triple-square-section-footer {
        padding: 12px 5px;
        font-size: 16px;
    }

    .open-spring-button.default-button a {
        padding: 12px 5px;
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .main-menu .main-menu-wrapper {
        height: 90px;
    }

    .mobile-menu-logo {
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        max-width: 100px;
        width: 100%;

    }

    .main-menu-logo {
        left: 50%;
    }

    .main-menu-logo a > img {
        width: 75%;
    }

    .main-menu .nav-menu-nav a {
        padding: 6px 8px !important;
        letter-spacing: 1.8px !important;
    }

    /*.main-menu .nav-menu-nav {*/
    /*    display: none;*/
    /*}*/
}


/*404 page Styling*/
#notfound {
    position: relative;
    height: 80vh;
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 520px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
}

.notfound .notfound-404 {
    position: relative;
    height: 200px;
    margin: 0px auto 20px;
    z-index: -1;
}

.notfound .notfound-404 h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 236px;
    font-weight: 200;
    margin: 0px;
    color: #211b19;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound .notfound-404 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: #211b19;
    background: #fff;
    padding: 10px 5px;
    margin: auto;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

.notfound a {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 13px 23px;
    background: var(--bird-blue);
    font-size: 18px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    border: 1px solid var(--bird-blue);
}

.notfound a:hover {
    color: var(--bird-blue);
    background: #fff;

}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 h1 {
        font-size: 148px;
    }
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        height: 148px;
        margin: 0px auto 10px;
    }

    .notfound .notfound-404 h1 {
        font-size: 86px;
    }

    .notfound .notfound-404 h2 {
        font-size: 16px;
    }

    .notfound a {
        padding: 7px 15px;
        font-size: 14px;
    }
}

div.small-desc {
    max-width: 482px;
    width: 100%;
    margin: auto;
    padding-bottom: 60px;
}

div.small-desc p {
    letter-spacing: 1.08px;
    color: #3F538E;
    text-align: center;
    font-weight: 400;
}

.enquiry-form .gform_required_legend {
    letter-spacing: 1.2px;
    color: #3F538E;
    font-weight: 400;

}

.enquiry-form {
    max-width: 912px;
    margin: auto;
    width: 100%;
}

.enquiry-form .ginput_container_radio {

    border-bottom: 1px solid var(--bird-blue);
    padding-bottom: 15px;
}

.enquiry-form .gform_confirmation_wrapper {
    text-align: center;

}

.enquiry-form .gform_confirmation_message {
    border: 1px solid var(--bird-blue);
    display: inline;
    padding: 15px 40px;
    color: var(--bird-blue);
}

.enquiry-form .gform_wrapper.gravity-theme .gfield input {
    font-family: var(--font-family-gill-sans);
    border: unset;
    border-bottom: 1px solid var(--bird-blue);
    padding: 20px 5px;
    font-size: 20px;
    color: var(--bird-blue);
}

.enquiry-form .gfield {
    margin-bottom: 15px;
}

.enquiry-form .gform_wrapper.gravity-theme .ginput_container_date input {
    width: 100%;
}

.enquiry-form .ginput_container_radio .gfield_radio {
    display: flex;
    /*gap: 40px;*/
}

.enquiry-form span.gfield_required.gfield_required_custom {
    display: none;
}

.enquiry-form .ginput_container textarea {
    border: 1px solid var(--bird-blue);
}

.enquiry-form .gform_footer input[type="submit"] {
    color: var(--white);
    text-decoration: none;
    background-color: var(--bird-blue);
    border: 1px solid var(--bird-blue);
    /*padding: 10px 31px;*/
    padding: 12px 30px 10px 31px;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Gill Sans Regular';
    font-weight: 400;
    letter-spacing: 5px;
    cursor: pointer;
}

.enquiry-form .gform_footer input[type="submit"]:hover {
    background-color: var(--white);
    color: var(--bird-blue);
    text-decoration: none;
}

.enquiry-form .gchoice {
    margin: 0 5px 0 0;
    width: 120px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enquiry-form .gchoice label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.enquiry-form .gform_wrapper.gravity-theme .gfield input::placeholder {
    text-transform: inherit;
    letter-spacing: 1.2px;
    color: #3F538E;
}

.enquiry-form .gchoice label,
.enquiry-form .gchoice input {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.enquiry-form .gchoice input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.enquiry-form .gchoice input[type="radio"]:checked + label {
    background: transparent;
    border-radius: 0;
    border: 1px solid var(--bird-blue);
    letter-spacing: 1.2px;
    color: #3F538E;
    font-size: 20px;
    max-width: 80%;
}

.enquiry-form .gform_wrapper.gravity-theme .gfield textarea.large {
    color: #3F538E;
    font-size: 20px;
    letter-spacing: 1.2px;
    font-family: var(--font-family-gill-sans);;

}

.enquiry-form .gchoice label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.8em;
}

.enquiry-form .gform_heading {
    text-align: right;
}

.enquiry-form .gform_footer {
    justify-content: center;
}

.enquiry-form span.gfield_required.gfield_required_asterisk {
    display: none;
}

.enquiry-form .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
    letter-spacing: 2px;
}

.enquiry-form .gform_ajax_spinner {
    width: 40px;
}

.enquiry-form .gform_wrapper.gravity-theme .gfield_label {
    letter-spacing: 1.2px;
    color: #3F538E;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
}

.enquiry-form ::-ms-input-placeholder { /* Edge 12-18 */
    color: var(--bird-blue);
}

.enquiry-form ::placeholder {
    color: var(--bird-blue);
}

.event-offer {
    padding: 60px 0;
}

.event-offer .offer-details {
    text-align: center;
    max-width: 466px;
    margin: auto;
}

.event-offer .offer-details p {
    padding: 20px 0;
    color: var(--bird-blue);
    letter-spacing: 1.08px;
    font-weight: 400;
}

.gform_wrapper.gravity-theme .description,
.gform_wrapper.gravity-theme .gfield_description,
.gform_wrapper.gravity-theme .gsection_description,
.gform_wrapper.gravity-theme .instruction {
    clear: both;
    font-family: inherit;
    font-size: 15px;
    letter-spacing: normal;
    line-height: inherit;
    padding-top: 13px;
    width: 100%;
    padding: 10px;
    font-weight: 400;
}

.event-offer-col {
    display: flex;
    justify-content: space-between;
}

.divider {
    width: 1%;
}

.detail ul {
    list-style: none;
}

.divider-line {
    width: 1px;
    background: var(--bird-blue);
    height: 100%;
}

.col.col-1 {
    text-align: center;
}

.col h3 {
    padding-bottom: 15px;
    color: var(--bird-blue);
    letter-spacing: 1.2px;
    color: #3F538E;
    font-family: var(--font-family-gill-sans);
}

.enquiry-form .gform_wrapper.gravity-theme .gfield-choice-input + label {
    letter-spacing: 1.2px;
    color: #3F538E;
    font-size: 20px;
    font-weight: 400;
}

.col li {
    padding: 15px 0;
    font-weight: 400;
}

.event-offer-col {
    margin: 60px 0;
    color: var(--bird-blue);
}

.enquiry-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    justify-content: center;
}

.gallery-item_ {
    width: 30%;
}

.gallery-item_ img {
    height: 363px;
    object-fit: cover;
}


/*
Gallery Style */

.new-gallery {
    margin-top: 40px;
}

.layout-sec {
    padding-bottom: 30px;
}

.new-gallery-container {
    max-width: 1200px;
    margin: auto;
}

.layout-sec-1 {
    display: flex;
    gap: 30px;
    overflow: hidden;
    /*height: 600px;*/
}

.layout-sec-1 .video-container {
    width: 30%;
}

.layout-sec-1 .image-container {
    width: 70%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.layout-sec-1 .image-container img {
    max-width: 48%;
    height: 296px;
    object-fit: cover;
    object-position: center;
}

.layout-sec-2 {
    height: 530px;
}

.layout-sec-2 .image-section {
    display: flex;
    gap: 30px;
}

.layout-sec-2 .image-section img {
    object-fit: cover;
    object-position: center;
    height: 530px;
}

.layout-sec-3 {
    height: 287px;
}

.layout-sec-3 .image-gallery {
    display: flex;
    gap: 30px;
}

.layout-sec-3 .image-gallery img {
    height: 287px;
    object-fit: cover;
    object-position: center;
}

.layout-sec-3 {
    display: flex;
    gap: 30px;
    overflow: hidden;
}

.layout-sec-3 .video-container {
    width: 45%;
}

.layout-sec-3 .image-gallery {
    width: 55%;
}

.new-gallery .centeral-image-title {
    text-align: center;

}

.new-gallery .centeral-image-title .divider {
    width: 7%;
    height: 0.5px;
    background: var(--divider-color);
    margin: 30px 0px 50px 0px;
    display: inline-block;

}

/*Media Queries*/

@media Screen and (max-width: 1200px) and (min-width: 1024px) {
    .new-gallery-container {
        max-width: 1000px !important;
    }

    .layout-sec-1 .image-container img {
        max-width: 47% !important;
        height: 280px !important;
    }

    .layout-sec-2 .image-section img {
        height: 433px !important;
    }

    .layout-sec-1 .video-container {
        width: 37% !important;
    }

    .layout-sec-3 .image-gallery img {
        height: 247px !important;
    }

    .layout-sec-2 {
        height: 440px !important;
    }
}

@media Screen and (max-width: 1023px) and (min-width: 768px) {
    .new-gallery-container {
        max-width: 700px !important;
    }

    .layout-sec-1 {
        display: block;
        overflow: hidden;
        height: auto !important;
    }

    .layout-sec-1 .image-container {
        width: 100%;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .layout-sec-2 .image-section img {
        height: 305px;
    }

    .layout-sec-2 .image-section {
        gap: 20px;
    }

    .layout-sec-1 .video-container {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .layout-sec-3 .image-gallery {
        width: 100%;
        gap: 20px;
    }

    .layout-sec-3 .video-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .layout-sec-3 {
        display: block;
        overflow: hidden;
        height: auto !important;
    }

    .layout-sec-2 {
        height: auto !important;
    }

}

@media Screen and (max-width: 767px) and (min-width: 501px) {
    .new-gallery-container {
        max-width: 500px !important;
    }

    .layout-sec-1 {
        display: block;
        overflow: hidden;
        height: auto !important;
    }

    .layout-sec-1 .image-container {
        width: 100%;
        display: block;
    }

    .layout-sec-2 .image-section img {
        height: 215px;
    }

    .layout-sec-2 .image-section {
        gap: 20px;
    }

    .layout-sec-1 .video-container {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .layout-sec-3 .image-gallery {
        width: 100%;
        gap: 20px;
    }

    .layout-sec-3 .video-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .layout-sec-3 {
        display: block;
        overflow: hidden;
        height: auto !important;
    }

    .layout-sec-2 {
        height: auto !important;
    }

    .layout-sec-3 .image-gallery img {
        height: 230px;
    }
}

@media Screen and (max-width: 500px) {
    .new-gallery-container {
        max-width: 370px !important;
    }

    .layout-sec-1 {
        display: block;
        overflow: hidden;
        height: auto !important;
    }

    .layout-sec-1 .image-container {
        width: 100%;
        display: block;
    }

    .layout-sec-2 .image-section img {
        height: 215px;
    }

    .layout-sec-2 .image-section {
        display: block;
    }

    .layout-sec-1 .video-container {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .layout-sec-3 .image-gallery {
        width: 100%;
        display: block;
    }

    .layout-sec-3 .video-container {
        width: 100%;
        margin-bottom: 10px;
    }

    .layout-sec-3 {
        display: block;
        overflow: hidden;
        height: auto !important;
    }

    .layout-sec-2 {
        height: auto !important;
    }

    .layout-sec-3 .image-gallery img {
        height: 230px;
    }

    .layout-sec-1 .image-container img {
        max-width: 100%;
    }

    .layout-sec {
        padding-bottom: 0px;
    }
}


.footer__copyright span a {
    text-decoration: none;
    font-weight: 300;
    color: var(--bird-blue);
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.96px;
}

.villa-col-2-half- {
    position: relative;
}

.footer__copyright {
    position: absolute;
    bottom: 15px;
    right: 0;
}

/*Hotel L hotel*/

.text-with-image-ihotel {
    background-color: #F5F1ED;
    margin: 60px 0;
}

.text-with-image-ihotel .section-col {
    display: flex;
    align-items: center;
}

.text-with-image-ihotel .section-image,
.text-with-image-ihotel .section-desc {
    width: 50%;
}

.text-with-image-ihotel .section-image img {
    max-width: 430px;
}

.text-with-image-ihotel .section-desc p {
    max-width: 530px;
    margin-left: auto;
    text-align: center;
    letter-spacing: 0.96px;
    color: #32714C;
    font-family: var(--font-family-gill-sans);
    font-weight: 300;
    font-size: 16px;
}

.text-with-image-ihotel .section-row.cta {
    margin-top: 60px;
}

.text-with-image-ihotel .cta-btn-ihotel {
    max-width: 475px;
    width: 100%;
    border: 0.5px solid var(--bedspread-green);
    margin: auto;
    text-align: center;
    padding: 22px 0;
}

.text-with-image-ihotel .cta-btn-ihotel a {
    color: var(--bedspread-green);
  
    /* font-family: var(--font-family-gill-sans-Regular); */
    font-weight: 400;
    font-family: var(--font-family-gill-sans);
    letter-spacing: 6px;
}

.text-with-image-ihotel .cta-btn-ihotel:hover a {
    cursor: pointer;
    text-decoration: underline;
}

@media Screen and (max-width: 1024px) {
    .text-with-image-ihotel .section-col {
        gap: 20px;
    }

    .text-with-image-ihotel .section-image {
        width: 35%;
    }

    .text-with-image-ihotel .section-desc {
        width: 65%;
    }

    .text-with-image-ihotel .cta-btn-ihotel {
        padding: 12px 0;
    }
}

@media Screen and (max-width: 768px) {
    .text-with-image-ihotel .section-col {
        gap: 20px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .text-with-image-ihotel .section-image {
        width: 100%;
        text-align: center;
    }

    .text-with-image-ihotel .section-image img {
        max-width: 370px;
    }

    .text-with-image-ihotel .section-desc {
        width: 100%;


    }

    .text-with-image-ihotel .section-desc p {
        margin-right: auto;

    }

    .text-with-image-ihotel .cta-btn-ihotel {
        padding: 12px 0;
    }
}








