/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer

--------------------------------------------- */
*{
    margin: 0px;
    padding: 0px;
}

body {
    background-color: #F2EEE8 !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
div pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style: none;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
    display: block;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: "EB Garamond", serif;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #231F20;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: "EB Garamond", serif;
    font-weight: 400 !important;
    font-style: italic;
    font-size: 43px;
}

.fw-bold {
    font-weight: 400 !important;
}

h2.fw-bold {
    padding: 20px 0;
}

ul {
    margin-bottom: 0px;
}

p {
    color: #231F20 !important;
    font-size: 18px;
    text-align:left;
    font-family: "EB Garamond", serif;
    /*margin-top: 20px;
    margin-bottom: 20px;*/
}

.img-parra p {
    color: #231F20 !important;
    font-size: 18px;
    text-align:left;
    line-height: 20px;
    font-family: "EB Garamond", serif;
    margin-top: 20px;
}


img {
    width: 100%;
    overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
    font-family: "EB Garamond", serif;
}

::selection {
    background: #0071f8;
    color: #fff;
}

::-moz-selection {
    background: #0071f8;
    color: #fff;
}

.section {
    margin-top: 120px;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 56px;
}

.section-heading h2 em {
    font-style: normal;
    color: #0071f8;
}

.section-heading h6 {
    color: #ee626b;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.icon-button a {
    display: inline-block;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding: 0px 30px 0px 0px;
    border-radius: 25px;
    transition: all .3s;
}

.icon-button a i {
    background-color: #f35525;
    height: 50px;
    width: 50px;
    text-align: center;
    border-radius: 50%;
    line-height: 50px;
    display: inline-block;
    margin-right: 15px;
    margin-left: -1px;
}

.icon-button a:hover {
    color: #f35525;
}

.icon-button a:hover i {
    color: #fff;
}

.main-button a {
    display: inline-block;
    background-color: #1e1e1e;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    padding: 0px 30px;
    border-radius: 25px;
    transition: all .3s;
}

.main-button a:hover {
    background-color: #f35525;
    color: #fff;
}

/* 
---------------------------------------------
Pre-loader Style
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.99);
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

/* .preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: transparent;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #f35525;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #f35525;
  border-radius: 50%;
} */



/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/
.header-area .main-nav .logo img {
    width: 170px !important;
    height: auto;
}

.sub-header {
    background-color: #fff;
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
}

.sub-header ul li {
    display: inline-block;
}

.sub-header ul.social-links {
    text-align: right;
}

.sub-header ul.social-links li {
    margin-left: 8px;
}

.sub-header ul.social-links li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #cdcdcd;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    transition: all .3s;
}

.sub-header ul.social-links li a:hover {
    background-color: #f35525;
}

.sub-header ul.info li {
    font-size: 14px;
    color: #7a7a7a;
    border-right: 1px solid #eee;
    margin-right: 25px;
    padding-right: 25px;
}

.sub-header ul.info li:last-child {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}

.sub-header ul.info li i {
    font-size: 20px;
    color: #f35525;
    margin-right: 8px;
}

.background-header {
    background-color: #fff;
    height: 100%;
    /* position: fixed!important; */
    top: 0 !important;
    left: 0;
    right: 0;
    /*box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15) !important;*/
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
}

.header-area {
    position: relative;
    background-color: #F2EEE8;
    z-index: 100;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header-area .main-nav {
    background: transparent;
    display: flex;
}

.header-area .main-nav .logo {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    display: inline-block;
}

.header-area .main-nav .logo h1 {
    line-height: 100px;
    font-size: 28px;
    text-transform: uppercase;
    color: #1e1e1e;
    font-weight: 700;
    letter-spacing: 2px;
}

.background-header .main-nav .logo h1 {
    line-height: 80px;
}

.header-area .container {
    padding: 0px;
}

.header-area .col-12 {
    padding: 0px;
}

.header-area .main-nav {

    justify-content: space-between;
    align-items: center;
}

.header-area .main-nav ul.nav {
    flex-basis: 100%;
    /* margin-top: 30px; */
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    /* position: relative; */
    z-index: 999;
}

.header-area .main-nav .nav li a {
    display: block;
    font-family: "Lato", sans-serif;
    padding-left: 2px;
    padding-right: 2px;
    font-weight: 400;
    font-size: 16px;
    line-height:0px;
    color: #231F20;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border: transparent;
    letter-spacing: .25px;
    text-transform: uppercase !important;
}

li.book-now {
    /* position: relative;
    left: 20%; */
}

.header-area .main-nav .nav li {
    padding-left: 10px;
    padding-right: 10px;
    /* height: 100px;
  line-height: 100px; */
}


/* .header-area .main-nav .nav li:last-child a {
  color: #231F20;
  font-size: 17px;
  font-weight: 400;
  text-transform: none;
  border: 1px solid ;
  padding-left: 0px 20px;
  border-radius:0px
} */
.book-now {
    color: #231F20;
    font-size: 14px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    text-align: center;
    border: 1px solid;
    padding-left: 0px 20px;
    border-radius: 0px;
    width: 200px;
    height: 40px;
   
}

.book-now a {
    display: block;
    padding-left: 2px;
    padding-right: 2px;
    font-weight: 400;
    font-size: 14px;
    line-height: 38px;
    text-transform: uppercase;
    color: #231F20;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    border: transparent;
    letter-spacing: .25px;
}

/* .header-area .main-nav .nav li:last-child a i {
  background-color: #f35525;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  border-radius: 50%;
  margin-left: -1px;
} */

.header-area .book-now:hover a {
    background-color: #1e1e1e;
}

.header-area .book-now:hover a {
    color: #fff;
}

.header-area .main-nav .nav li:hover a {
    color: #C07B00;
}

/*.header-area .main-nav .nav li a.active {
    color: #f35525;
}*/


/*.background-header .main-nav .nav li a.active {
    color: #f35525;
}*/

.header-area .main-nav .menu-trigger {
    cursor: pointer;
    position: absolute;
    top: 23px;
    width: 32px;
    height: 40px;
    text-indent: -9999em;
    z-index: 99;
    right: 20px;
    display: none;
}

.background-header .main-nav .menu-trigger {
    top: 22px;
}

.background-header .main-nav ul.nav {
    margin-top: 0px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: #1e1e1e;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0;
    width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
    content: "";
}

.header-area .main-nav .menu-trigger span {
    top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
    -moz-transform-origin: 33% 100%;
    -ms-transform-origin: 33% 100%;
    -webkit-transform-origin: 33% 100%;
    transform-origin: 33% 100%;
    top: -10px;
    z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
    -moz-transform-origin: 33% 0;
    -ms-transform-origin: 33% 0;
    -webkit-transform-origin: 33% 0;
    transform-origin: 33% 0;
    top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
    background-color: transparent;
    width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
    -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
    -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
    -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
    transform: translateY(6px) translateX(1px) rotate(45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
    background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
    -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
    transform: translateY(-6px) translateX(1px) rotate(-45deg);
    background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
    background-color: #1e1e1e;
}

.visible {
    display: inline !important;
}

@media (max-width: 1200px) {
    .header-area .main-nav .nav li {
        padding-left: 5px;
        padding-right: 5px;
    }

}

@media (max-width: 767px) {
    .background-header .main-nav {
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
        border-radius: 0px 0px 25px 25px;
        width: 100%;
    }

    .background-header .main-nav .nav,
    .header-area .main-nav .nav {
        background-color: #fff;
    }

    .background-header .main-nav .nav li a,
    .header-area .main-nav .nav li a {
        line-height: 50px;
        height: 50px;
        font-weight: 400;
        color: #1e1e1e;
        background-color: #fff;
        border-radius: 0px 0px 25px 25px;
    }

    .background-header .main-nav .nav li,
    .header-area .main-nav .nav li {
        border-top: 1px solid #C07B00;
        background-color: #f1f0fe;
        height: 50px;
        border-radius: 0px 0px 25px 25px;
    }

    .header-area .main-nav .nav {
        height: auto;
        flex-basis: 100%;
    }

    .header-area .main-nav .logo {
        position: absolute;
        left: 30px;
        top: 0px;
    }

    .background-header .main-nav .logo {
        top: 0px;
    }

    .background-header .main-nav .border-button {
        top: 0px !important;
    }

    .header-area .main-nav .border-button {
        position: absolute;
        top: 15px;
        right: 70px;
    }

    .header-area.header-sticky .nav li a:hover,
    .header-area.header-sticky .nav li a.active {
        color: #C07B00 !important;
        opacity: 1;
    }

    .header-area.header-sticky .nav li.search-icon a {
        width: 100%;
    }

    .header-area .nav li:last-child a {
        background-color: transparent !important;
        font-weight: 300 !important;
        text-transform: capitalize !important;
    }

    .header-area {
        padding: 0px 15px;
        height: 80px;
        box-shadow: none;
        text-align: center;
        margin-bottom: 40px;
    }

    .header-area .container {
        padding: 0px;
    }

    .header-area .logo {
        margin-left: 0px;
    }

    .header-area .menu-trigger {
        display: block !important;
    }

    .header-area .main-nav {
        overflow: hidden;
    }

    .header-area .main-nav .nav {
        float: none;
        width: 100%;
        display: none;
        -webkit-transition: all 0s ease 0s;
        -moz-transition: all 0s ease 0s;
        -o-transition: all 0s ease 0s;
        transition: all 0s ease 0s;
        margin-left: 0px;
    }

    .header-area .main-nav .nav li:first-child {
        border-top: 1px solid #eee;
    }

    .header-area.header-sticky .nav {
        margin-top: 80px !important;
    }

    .background-header.header-sticky .nav {
        margin-top: 80px !important;
    }

    .header-area .main-nav .nav li {
        width: 100%;
        background: #fff;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

/*.main-banner{
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.main-banner .item-1 {
    background-image: url(../images/banner-img/banner-01.webp);
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}
*/

.main-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding: 0 !important;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main-banner .item-1 {
  position: relative;
  height: 100vh;
  z-index: 1; /* Make text above video */
  padding-bottom: 76px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.header-text h2 {
  font-size: 64px;
  font-weight: 400;
  font-family: "EB Garamond";
  color: #fff;
  /*text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);*/
  margin-bottom: 10px;
}

.arrow-icon {
  width: 100%;
  height: auto;
}


/* 
---------------------------------------------
Full Carousel
--------------------------------------------- 
*/

.text-center.mt-4,
.row.align-items-center.text-center\.mt-4 {
    text-align: left !important;
    max-width: 650px;
    width: 100%;
}

.container.mt-5 {
    /* padding: 50px 0 0; */
}

.text-center.mt-4 h2 {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* 
---------------------------------------------
Two Columns Images
--------------------------------------------- 
*/

.row.align-items-center button,
button {
    text-transform: uppercase;
    text-align: left;
    background: transparent;
    border: 0;
    margin-top: 20px;
}

button img{
    width: 20px;
    height: auto;
    margin-left: 2px;
    display: inline-block;
}

button a {
    font-size: 13px;
    color: #231F20;
    font-family: "Lato", sans-serif;
    line-height: 38px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.row.align-items-center h2.fw-bold {
    background: #ffff;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    font-family: "EB Garamond";
    font-style: normal;
    font-weight: 400 !important;
}

.row.align-items-center h2.fw-bold1 {
    background: #ffff;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    font-family: "EB Garamond";
    font-style: normal;
    font-weight: 400 !important;
    padding: 26px 0;
}

/* 
---------------------------------------------
End Two Columns Images
--------------------------------------------- 
*/

/* 
---------------------------------------------
Experience
--------------------------------------------- 
*/
.text-center.mt-7 {
    text-align: left !important;
    width: 100%;
    background: #fff;
}

.text-center.mt-7 h2 {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 0px;
}

.text-center.mt-7 p {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1000px;
    width: 100%;
}

.text-center.mt-7 button {
    padding: 0 40px 50px;
}

h2.fw-bold.pool-2 {
    font-size: 20px !important;
}

/*
---------------------------------------------
sustainablity& Amenities
--------------------------------------------- 
*/

h2.align {
    padding: 0 0 20px;
}

/*
--------------end-------------------------------------------*/
/*
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

.contact {
    background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0px 250px 0px;
    position: relative;
}

.contact .section-heading h2 {
    color: #fff;
}

.contact-content {
    margin-top: -240px;
    position: relative;
    z-index: 1;
}

.contact-content #map {
    border-radius: 10px;
    margin-bottom: 60px;
}

.contact-content .item {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.contact-content .phone {
    margin-right: 15px;
}

.contact-content .email {
    margin-left: 15px;
}

.contact-content .item img {
    float: left;
    margin-right: 25px;
    vertical-align: middle;
}

.contact-content .item h6 {
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.contact-content .item h6 span {
    font-size: 15px;
    color: #aaaaaa;
    font-weight: 400;
}

.contact-content #contact-form {
    margin-left: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.contact-content #contact-form label {
    font-size: 15px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-content #contact-form input {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 30px;
    font-size: 14px;
    padding: 0px 15px;
}

.contact-content #contact-form textarea {
    width: 100%;
    height: 150px;
    max-height: 180px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 40px;
    font-size: 14px;
    padding: 15px 15px;
}

.contact-content #contact-form button {
    background-color: #1e1e1e;
    height: 44px;
    border-radius: 22px;
    padding: 0px 20px;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all .5s;
}

.contact-content #contact-form button:hover {
    background-color: #f35525;
}


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/
.footer-top {
    background-color: #f3ece5;
    padding: 50px 0;
}

.footer-bottom {
    background-color: #ffffff;
    padding: 0px 0px 0px 0px;
    border-top: 1px solid #ddd;
    position: relative;
}

.footer-logo {
    /* position: absolute;
  left: 0%;
  top: 0px;
  z-index: 2; */
}

.footer-logo img {
    width: 170px !important;
    height: auto;
}

.social-icons a {
    margin: 0 6px;
    color: black;
    font-size: 18px;
}

.social-icons img {
  width: 32px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}


.footer-bottom.text-dark .container {
    width: 100%;
}

/* 
---------------------------------------------
Page Header Style
--------------------------------------------- 
*/

.page-heading {
    background-image: url(../images/page-heading-bg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0px;
    text-align: center;
}

.page-heading span {
    background-color: #fff;
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 25px;
    display: inline-block;
    margin-bottom: 30px;
}

.page-heading span a {
    color: #1e1e1e;
}

.page-heading h3 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}





/* 
---------------------------------------------
Single Page Style
--------------------------------------------- 
*/

.single-property .main-image img {
    float: none;
}

.single-property .main-content h4 {
    font-size: 25px;
    margin-top: 25px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.single-property .main-content span.category {
    background-color: #fbd9cf;
    font-weight: 500;
    border-radius: 5px;
    font-size: 14px;
    color: #1e1e1e;
    padding: 5px 12px;
    display: inline-block;
    margin-top: 40px;
}

.single-property .accordion {
    margin-top: 60px;
    margin-left: 0px;
    margin-right: 0px;
    --bs-accordion-border-radius: 10px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-bg: #fafafa;
    --bs-accordion-border-color: none;
    border: none !important;
}

.single-property .accordion-header {
    border-bottom: 1px solid #eaeaea;
}

.single-property .accordion-button {
    box-shadow: none;
    font-size: 17px;
    font-weight: 500;
    color: #1e1e1e;
}

.single-property .accordion-button:not(.collapsed) {
    color: #f35525;
    background-color: #fafafa;
    outline: none;
}

.single-property .accordion-button::after {
    display: none;
}

.single-property #headingThree {
    border-bottom: none;
}

.single-property .accordion-item:last-of-type .accordion-collapse {
    border-top: 1px solid #eaeaea;
}

.single-property .info-table {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    margin-left: 60px;
}

.single-property .info-table ul li {
    display: block;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.single-property .info-table ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.single-property .info-table ul li img {
    float: left;
    margin-right: 25px;
}

.single-property .info-table ul li h4 {
    font-size: 22px;
    font-weight: 600;
}

.single-property .info-table ul li h4 span {
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
}


/* 
---------------------------------------------
Contact Page Style
--------------------------------------------- 
*/

.contact-page #map {
    margin-top: 100px;
}

.contact-page .section-heading {
    margin-bottom: 40px;
    margin-right: 280px;
}

.contact-page p {
    margin-bottom: 50px;
}

.contact-page .item {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
    display: inline-block;
    min-width: 360px;
}

.contact-page .phone {
    margin-bottom: 30px;
}

.contact-page .item img {
    float: left;
    margin-right: 25px;
    vertical-align: middle;
}

.contact-page .item h6 {
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
}

.contact-page .item h6 span {
    font-size: 15px;
    color: #aaaaaa;
    font-weight: 400;
}

.contact-page #contact-form {
    margin-left: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
}

.contact-page #contact-form label {
    font-size: 15px;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.contact-page #contact-form input {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 30px;
    font-size: 14px;
    padding: 0px 15px;
}

.contact-page #contact-form textarea {
    width: 100%;
    height: 150px;
    max-height: 180px;
    border-radius: 22px;
    background-color: #f6f6f6;
    border: none;
    margin-bottom: 40px;
    font-size: 14px;
    padding: 15px 15px;
}

.contact-page #contact-form button {
    background-color: #1e1e1e;
    height: 44px;
    border-radius: 22px;
    padding: 0px 20px;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    transition: all .5s;
}

.contact-page #contact-form button:hover {
    background-color: #f35525;
}


/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
    overflow-x: hidden;
}

@media (max-width: 767px) {
   
    .book-now {
    position: relative;
    right: 15px;
}
    .main-banner .item {
    position: relative;
    height: 50vh;
}
.main-banner .item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 20% 0 20%;
    margin-top: 0px;
}
    .header-area .main-nav .logo h1 {
        line-height: 80px !important;
    }

    .best-deal .tabs-content .nav-link {
        font-size: 14px;
        padding: 0px 15px;
        height: 44px;
        line-height: 44px;
    }

    .best-deal .tabs-content ul.nav-tabs li {
        margin: 0px 5px;
    }

    .properties ul.properties-filter li a {
        font-size: 14px;
        padding: 10px 15px;
    }

    .properties ul.properties-filter li {
        margin: 5px;
    }

    .header-area .main-nav .nav li:last-child a{
        color: #1e1e1e;
        font-family: "Lato", sans-serif;
        font-size: 16px;
        background-color: #fff;
        line-height: 50px;
        height: 50px;
        font-weight: 400 !important;
        border-radius: 0px 0px 25px 25px;
        display: block;
        transition: all 0.4s ease 0s;
        letter-spacing: .25px;
        padding-left: 3px !important;
        padding-right: 3px !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 992px) {
    .sub-header {
        display: none;
    }

    .header-area .main-nav .logo h1 {
        line-height: 100px;
    }

    .background-header .main-nav .logo h1 {
        line-height: 80px;
    }

    .header-area .main-nav .nav li a {
        padding-left: 3px;
        padding-right: 3px;
    }

    .header-area .main-nav .nav li:last-child a {
        padding-right: 15px;
    }

    .main-banner .item h2 {
        width: 100%;
    }

    .featured .section-heading {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 100px;
    }

    .featured .accordion {
        margin-left: 0px;
        margin-right: 0px;
    }

    .featured .info-table {
        margin-top: 45px;
    }

    .fun-facts .counter {
        margin-bottom: 45px;
    }

    .best-deal .section-heading {
        text-align: center;
    }

    .best-deal .tabs-content ul.nav-tabs {
        margin-top: 0px;
        justify-content: center;
    }

    .best-deal .info-table {
        margin-bottom: 45px;
    }

    .best-deal .tab-content img {
        padding: 0px;
    }

    .best-deal .tabs-content h4 {
        margin-top: 45px;
    }

    .properties .item h6 {
        text-align: center;
        margin-bottom: 15px;
    }

    .properties .item .main-button {
        text-align: center;
    }

    .properties .item ul li {
        margin-right: 10px;
        font-size: 13px;
    }

    .contact-content .phone {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .contact-content .email {
        margin-left: 0px;
        margin-bottom: 45px;
    }

    .contact-content #contact-form {
        margin-left: 0px;
    }

    .single-property .info-table {
        margin-left: 0px;
        margin-top: 45px;
    }

    .contact-page .section-heading {
        margin-right: 0px !important;
    }

    .contact-page #contact-form {
        margin-left: 0px;
        margin-top: 60px;
    }

    .best-deal .info-table ul li span {
        float: right !important;
        width: auto !important;
    }
}


@media (max-width: 1200px) {
    .best-deal .info-table ul li span {
        float: none;
        width: 100%;
    }

    .contact-page .section-heading {
        margin-right: 100px;
    }
}

/* //footers css// */

.footer {
    display: block !important;
    /* Ensures it is shown on desktop */
}

.footer-mobile {
    display: none !important;
    /* Ensures it is hidden on desktop */
}

@media (max-width: 768px) {
    .footer {
        display: none !important;
    }

    .footer-mobile {
        display: block !important;
    }
}

.footer {
    display: block;
    background-color: #FFFFFF !important;
    padding: 70px 20px 30px 20px;
    color: #231F20;
}

.footer a {
    color: #231F20;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons a {
    margin-right: 6px;
    color: #231F20;
    font-size: 26px;
}

.social-icons a:hover {
    color: #444;
}

.footer-logo {
    font-weight: bold;
    font-size: 20px;
}

.map-container img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #231F20;
    padding-top: 30px;
}

.footer-bg {
    background-color: #f9f6f2;
}

.contect-text p {
    font-family: "Lato", sans-serif;
    font-weight: 400 !important;
    font-size: 18px;
    text-align: left;
    line-height: 26px;
    letter-spacing: 0%;
    padding-right: 70px;
}

.wild-origin p {
    margin-bottom: 7px;
    font-family: "Lato", sans-serif;
    font-weight: 400 !important;
    font-size: 18px;
    text-align: left;
    /*line-height: 0px;*/
    letter-spacing: 0%;
    margin-bottom: 20px;
}

.footer-head {
    font-family: "EB Garamond";
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    font-style: normal;
}

.footer-right-text {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.footer .justify-content-betweens {
    justify-content: space-between !important;
    /* align-items: center; */
    padding: 0;
}

.contact-form {
    margin: 30px auto;
    background-color: #FFFFFF;
}

.form-control {
    background-color: #F2EEE899 !important;
    outline: none;
    height: 50px;
    border-radius: 0px !important;
    font-size: 20px;
    font-family: "EB Garamond", serif;
    padding-left: 25px !important;
    border: none !important;
}

.msg-field textarea.form-control {
        height: 120px;
    }

.form-control:focus {
    outline: none !important;
    /* box-shadow: none; */
    /* border-color: none !important; */
    /* border-bottom: 1px solid #aaa; */
}

.btn-submit {
    /* display: block;
    margin: 20px auto 0;
    background: none;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer; */
    font-family: "Lato", sans-serif;
    font-size: 13px;
    line-height: 38px;
    letter-spacing: 5%;
    text-align: right;
    text-transform: uppercase;
    color: #231F20;
}

.btn-submit:hover {
    text-decoration: underline;
}

.contact-head {
    font-family: "EB Garamond";
    font-weight: 400;
    font-style: italic;
    font-size: 43px !important;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #231F20;
}

/* .footer-mobile {
    display: none;
} */

/* @media (max-width: 768px) { */
.footer-mobile {
    display: block;
    background-color: #fff;
    text-align: center;
    /*padding: 30px 20px;*/
    font-family: "Lato", sans-serif;
    color: #231F20 !important;
}

/*.container-mobile {
    max-width: 600px;
    margin: 0 auto;
}*/



.address-mobile {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 20px;
}

.contact-mobile, .contact-email {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
}

.contact-mobile a, .contact-email a {
    color: #231F20 !important;
    text-decoration: none;
    margin-bottom: 10px;
}


.social-icons-mobile {
    margin-top: 40px;
    margin-bottom: 20px;
}

.social-icons-mobile a {
    display: inline-block;
    margin: 0 8px;
}

.social-icons-mobile img {
    width: 32px;
    height: auto;
    margin-right: 2px;
    color: #231F20;
}

hr {
    width: 100%;
    border: none;
    border-top: 1px solid #231F20;
    margin-top: 40px;
    margin-bottom: -20px;
}

.copyright-mobile {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* responsive */
@media screen and (max-width: 1098px) {
    .book-now {
          
        width: 100px !important;
        height: 34px!important;
    }

    .book-now a {
    
        font-size: 10px!important;
        line-height: 33px!important;
    }

    /*h5.contact-head.fs-1.fw-normal {
        display: none;
    }

    .contact-form.p-5 {
        display: none;
    }*/

    .rounded {
        border-radius: 0px !important;
    }
    
    .background-header .main-nav .menu-trigger {
        top: 24px!important;
        left: 14px!important;
    }

    .main-banner .item h2 {
        font-size: 20px;
    }

    .container.mt-5 {
        padding: 0px 12px;
    }

    .rounded {
        border-radius: 0px !important;
    }

    .header-area .main-nav {
      /* justify-content: end; */
        display: flex !important;
                box-shadow: none;
    }

   .header-area .main-nav .logo {
        position: unset!important;
    }

    .header-area .main-nav .menu-trigger {
        /* position: unset!important; */
         left: 20px!important;
    }
/*
    .header-area .main-nav .logo img {
        max-width: 160px;
        max-height: 160px; 
    }*/

    .header-area .row {
        height: 80px;
    }

}

.arrow-imhg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 13px;
    height: 7px;
}

.rounded {
    border-radius:0px !important;
}

@media screen and (min-width: 768px) {
    .carousel-indicators [data-bs-target] {
    
            width: 12px !important;
            height: 12px !important;
    }
}

.carousel-indicators [data-bs-target] {
    
    /* width: 12px!important;
    height: 12px!important; */
    border-radius: 50%;
    background-color: #E8E8E8 !important;
}

.carousel-indicators .active {  
    background-color: #FFD9A1 !important;
}

.carousel-indicators {
width: 82%!important;
    justify-content: end !important;
}

.form-select {
        background-color: #F2EEE899!important;
}

.arrow-imhg {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 13px;
    height: 7px;
}

@media screen and (max-width: 1098px) {
    .header-area .main-nav .logo {
        position: unset !important;
        margin: AUTO !important;
                /* PADDING-LEFT: 58PX!important; */
    }
}


@media (max-width: 768px) {
    .header-area .nav {
        display: none;
    }

    .header-area.menu-open .nav {
        display: block;
    }

    .header-area.menu-open .logo,
    .header-area.menu-open .book-now {
        display: none;
    }
}

@media screen and (min-width: 320px) and (max-width: 767px) {

    .gap-1{
            margin-top: 60px !important;
            margin-bottom: 60px !important;
            padding-left: 18px;
            padding-right: 18px;
        }

    .gap-2{
        margin-top: 60px !important;
        margin-bottom: 60px !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .gap-3{
        margin-top: -10px !important;
        margin-bottom: 60px !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .gap-4{
        margin-top: 60px !important;
        margin-bottom: 60px !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .gap-5{
        margin-top: 10px !important;
        margin-bottom: 60px !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .gap-6{
        margin-top: -50px !important;
        margin-bottom: 50px !important;
        padding-left: 18px;
        padding-right: 18px;
    }

    .gap-inner-1{
        margin-top: 24px !important;
    }

    .gap-inner-2{
        margin-top: 30px !important;
        margin-bottom: 50px;
    }

    .gap-revse-1{
        margin-top: -30px !important;
    }

     h2{
        color: #231F20;
        margin-top: 0px;
        margin-bottom: 0px;
        font-family: "EB Garamond", serif;
        font-weight: 400 !important;
        font-style: italic;
        font-size: 35px;
    }

    .row.align-items-center h2.fw-bold {
        background: #ffff;
        font-size: 15px;
        text-align: center;
        text-transform: uppercase;
        font-family: "EB Garamond";
        font-style: normal;
        font-weight: 400 !important;
        padding-left: 5px;
        padding-right: 5px;
    }

    .row.align-items-center h2.fw-bold1 {
        background: #ffff;
        font-size: 15px;
        text-align: center;
        text-transform: uppercase;
        font-family: "EB Garamond";
        font-style: normal;
        font-weight: 400 !important;
        padding: 26px 5px;
    }
    
    .white-box span{
        background: #ffff;
        font-size: 15px !important;
        text-align: center;
        text-transform: uppercase !important;;
        font-family: "EB Garamond";
        font-style: normal;
        font-weight: 400 !important;
    }
    
    .main-banner {
        position: relative;
        height: 70vh;
        overflow: hidden;
        padding: 0 !important;
        margin-bottom: -320px;
    }

    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 64%;
        object-fit: cover;
        z-index: 0;
    }

    .main-banner .item-1 {
        position: relative;
        height: 45vh;
        z-index: 1;
        padding-bottom: 40px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .overlay-bg {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent) !important;
      z-index: 0;
      pointer-events: none;
    }

    .main-banner .header-text {
      position: relative;
      z-index: 1; /* Ensure it stays above the background */
    }

    .header-text h2 {
        font-size: 40px;
        font-weight: 400;
        font-family: "EB Garamond";
        color: #fff;
        /*text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);*/
        margin-bottom: 30px;
    }

    .arrow-imhg {
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 13px;
        height: 7px;
    }

    .text-center.mt-7 h2 {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 30px;
        padding-bottom: 0px;
    }

    .text-center.mt-7 p {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 1000px;
        width: 100%;
    }

    .text-center.mt-7 button {
        padding: 0 10px 50px;
    }

    .contact-head {
        font-family: "EB Garamond";
        font-weight: 400;
        font-style: italic;
        font-size: 35px !important;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: capitalize;
        color: #231F20;
    }
    
    .contact-form {
        margin: 30px auto;
        background-color: #FFFFFF;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .form-control {
        background-color: #F2EEE899 !important;
        outline: none;
        height: 50px;
        border-radius: 0px !important;
        font-size: 20px;
        font-family: "EB Garamond", serif;
        padding-left: 20px !important;
        border: none !important;
    }

    .msg-field textarea.form-control {
        height: 120px;
    }

    .logo-mobile img {
        width: 170px !important;
        height: auto;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .header-area .main-nav .logo img {
        width: 160px !important;
        height: auto;
        margin-top: 0px;
        margin-bottom: 12px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .header-area .main-nav .logo{
        position: relative !important;
    }

    .copyright-mobile {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .address-mobile {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
        padding-left: 5px;
        padding-right: 5px;
        margin-bottom: 20px;
    }

    .contact-mobile, .contact-email {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0%;
        text-align: center;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px !important;
        height: 10px !important;
    }

    .carousel-indicators {
        width: 82% !important;
        justify-content: end !important;
        bottom: -11px !important;
    }
    
    /* Mobile menu default hidden */
    .mobile-nav {
      display: none;
      list-style: none;
      padding: 1rem;
      margin: 0;
      background: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      position: absolute;
      width: 100%;
      top: 100%;
      left: 0;
      z-index: 999;
    }
    
    /* Show menu when active */
    .mobile-nav.active {
      display: block;
    }
    
    .menu-trigger {
      font-size: 1.8rem;
      cursor: pointer;
    }
    
    /* Optional: Animate dropdown */
    .mobile-nav li {
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
    
    /* Set link color */
    .mobile-nav li a {
      color: #1e1e1e;
      font-size: 16px;
      font-family: "Lato", sans-serif;
      text-decoration: none;
      text-transform: uppercase;
      display: block;
    }
    
    .mobile-nav li a.active {
      color: #C07B00;
      font-size: 20px;
      text-decoration: none;
      display: block;
    }
   
    .map-container {
        margin-top: 36px;
        padding-left: 14px;
        padding-right: 14px;
    }
    
    #imageCarousel2 .carousel-indicators {
        width: 82% !important;
        justify-content: end !important;
        bottom: 43px !important;
    }
    
    .book-now1 button {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        left: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 12px;
        z-index: 2;
    }
    
    .book-now1 button:hover {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        left: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 12px;
        z-index: 2;
    }
    
    .enq-now button {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 12px;
        z-index: 2;
    }
    
    .enq-now button:hover {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 12px;
        z-index: 2;
    }
    
   .suite-book-btn button {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 10px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -63px;
        z-index: 2;
    }
    
    .suite-book-btn button:hover {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 10px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -63px;
        z-index: 2;
    }
    
    .suite-book-btn {
      width: 20px !important;
      height: auto;
      transition: transform 0.2s ease;
    }
    
    .suite-book-btn .btn:hover .suite-booknow-arrow {
      transform: translateX(4px);
    }
    
    .suite-carousel-caption {
      bottom: 2% !important;
      left: 0;
      right: 0;
      transform: none;
      text-align: left;
      padding: 0 1rem;
    }
    .suite-carousel-caption h4 {
      color: #ffffff;
      text-align: left;
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      font-style: normal;
      vertical-align: text-top;
      font-size: 20px !important;
      font-family: "EB Garamond", serif;
      border-style: hidden;
      margin-top: -60px;
    }
    
}

@media screen and (min-width: 320px) and (max-width: 360px) {
    .resv_form_wrap {
        padding: 75px 20px 20px;
        margin-top: 250px !important;
    }
    
    .book-now1 button {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        left: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 60px;
        z-index: 2;
    }
    
    .book-now1 button:hover {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        left: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 60px;
        z-index: 2;
    }
    
    .enq-now button {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 60px;
        z-index: 2;
    }
    
    .enq-now button:hover {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 16px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: 60px;
        z-index: 2;
    }
    
    .suite-book-btn button {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 10px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -63px;
        z-index: 2;
    }
    
    .suite-book-btn button:hover {
        color: #fff;
        font-size: 10px;
        width: 111px;
        height: 33px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 10px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -63px;
        z-index: 2;
    }
    
    .white-box span {
        background: #ffff;
        font-size: 14px !important;
        text-align: center;
        text-transform: uppercase !important;
        font-family: "EB Garamond";
        font-style: normal;
        font-weight: 400 !important;
    }
    
    .suite-book-btn {
      width: 20px !important;
      height: auto;
      transition: transform 0.2s ease;
    }
    
    .suite-book-btn .btn:hover .suite-booknow-arrow {
      transform: translateX(4px);
    }
    
    .suite-carousel-caption {
      bottom: 2% !important;
      left: 0;
      right: 0;
      transform: none;
      text-align: left;
      padding: 0 1rem;
    }
    .suite-carousel-caption h4 {
      color: #ffffff;
      text-align: left;
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      font-style: normal;
      vertical-align: text-top;
      font-size: 20px !important;
      font-family: "EB Garamond", serif;
      border-style: hidden;
      margin-top: -60px;
    }
    

}

@media screen and (min-width: 1200px) and (max-width: 1920px){
    .col-gap1{
        padding-right: 25px;
    }

    .col-gap2{
        padding-left: 25px;
    }
    
    .white-box span{
        background: #ffff;
        font-size: 22px !important;
        text-align: center;
        text-transform: uppercase !important;;
        font-family: "EB Garamond";
        font-style: normal;
        font-weight: 400 !important;
    }
    
    #imageCarousel2 .carousel-indicators {
        width: 82% !important;
        justify-content: end !important;
        bottom: 64px !important;
    }
    
    .book-now1 button{
        display: none;    
    }
    
    .enq-now button {
        color: #fff;
        font-size: 14px;
        width: 157px;
        height: 42px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 33px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -90px;
        z-index: 2;
    }
    
    .enq-now button:hover {
        color: #fff;
        font-size: 14px;
        width: 157px;
        height: 42px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 33px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -90px;
        z-index: 2;
    }
    
    .booknow-btn button {
        color: #fff;
        font-size: 14px;
        width: 138px;
        height: 42px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 10px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -8px;
        z-index: 2;
    }
    
    .booknow-btn button:hover {
        color: #fff;
        font-size: 14px;
         width: 138px;
        height: 42px;
        font-weight: 400;
        font-family: "Lato", sans-serif !important;
        float: right;
        position: relative;
        right: 10px;
        text-transform: uppercase;
        border-radius: 0;
        border: 2px solid #fff;
        top: -8px;
        z-index: 2;
    }
    
    .booknow-arrow {
      width: 20px !important;
      height: auto;
      transition: transform 0.2s ease;
    }
    
    .booknow-btn .btn:hover .booknow-arrow {
      transform: translateX(4px);
    }
    
}



