@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ----------------------------------------------------------------
			[ All Css Plugins & Helper Classes File ]
-----------------------------------------------------------------*/


/* == owl.carousel == */
@import url("../plugins/owl.carousel.min.css");
@import url("../plugins/owl.theme.default.min.css");

/* == Slick Slider == */
@import url("../plugins/slick.css");
@import url("../plugins/slick-theme.css");


/* == animate css == */
@import url("../plugins/animate.min.css");

/* == themify, flaticon and fontawesome icons ==*/
@import url("../plugins/themify-icons.css");
@import url("../plugins/flaticon-rounded.css");
@import url("../plugins/flaticon-all.css");
@import url("../plugins/font-awesome-pro.css");

/* == magnific-popup gallery  == */
@import url("../plugins/magnific-popup.css");



/* == Vegas Slider == */
@import url("../plugins/vegas.slider.min.css");


:root {
    --primary-color: #2095AE;
    --secondary-color: #0f2454;
    --font-color: #000000;
    --white-color:#ffffff;
    --font-main: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
}
p,
a {
    text-transform: none;
       font-family: "Montserrat", sans-serif;
}
a {
    text-decoration: none;
    color: var(--font-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
       font-family: "Montserrat", sans-serif;
}
a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
a:focus {
    text-decoration: none;
    /* color: inherit; */
}
button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
       font-family: "Montserrat", sans-serif;
}
body {
    padding: 0;
    margin: 0;
       font-family: "Montserrat", sans-serif;
    background: var(--white-color);
    text-align: start;
    /* color: var(--white-color); */
}


/* ======= Buttons style ======= */
/* Button Dark */
.butn-dark {
    position: relative;
    line-height: 1.2em;
    padding: 0;
}
.butn-dark a {
    font-weight: 400;
   font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0px;
}
.butn-dark a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: var(--secondary-color);
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.butn-dark a span {
    position: relative;
    z-index: 2;
}
.butn-dark a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-dark a:hover span {
    color: var(--white-color);
}

/* Button Light */
.butn-light {
    position: relative;
    line-height: 1.2em;
    padding: 0;
}
.butn-light a {
    font-weight: 400;
   font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: transparent;
    color: var(--white-color);
    padding: 15px 30px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0px;
    border: 1px solid rgba(255,255,255,1);
}
.butn-light a:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: var(--white-color);
}
.butn-light a span {
    position: relative;
    z-index: 2;
}
.butn-light a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-light a:hover span {
    color: var(--secondary-color);
}

/* Button Dark 2 */
.butn-dark2 {
    position: relative;
    line-height: 1.2em;
    font-weight: 400;
   font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0px;
}
.butn-dark2:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: var(--secondary-color);
    color: var(--white-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.butn-dark2 span {
    position: relative;
    z-index: 2;
}
.butn-dark2:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-dark2:hover span {
    color: var(--white-color);
}
/* Button Light 2 */
.butn-light2 {
    position: relative;
    line-height: 1.2em;
    font-weight: 400;
   font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: transparent;
    color: var(--white-color);
    padding: 15px 30px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0px;
    border: 1px solid rgba(255,255,255,0.5);
}
.butn-light2:after {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: var(--white-color);
}
.butn-light2 span {
    position: relative;
    z-index: 2;
}
.butn-light2:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-light2:hover span {
    color: var(--secondary-color);
}



/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    line-height: 1.5;
    display: block;
    outline: none;
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--white-color);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white-color);
    border: 1px solid var(--white-color);
}
.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255 ,0.7);
}
.team .owl-theme .owl-dots .owl-dot span,
.room .owl-theme .owl-dots .owl-dot span {
    background: rgba(32, 149, 174,0.2);
    border: 1px solid rgba(32, 149, 174,0.01);
}
.team .owl-theme .owl-dots .owl-dot.active span,
.team .owl-theme .owl-dots .owl-dot:hover span,
.room .owl-theme .owl-dots .owl-dot.active span,
.room .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.testimonials .owl-theme .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.7);
}
.testimonials .owl-theme .owl-dots .owl-dot.active span,
.testimonials .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white-color);
    border: 1px solid var(--white-color);
}
/* === owl carousel nav style  === */

.projects .owl-theme .owl-nav,
.attractions .owl-theme .owl-nav {
    position: absolute!important;
    top: 35%!important;
    bottom: auto!important;
    width: 100%
}
.slider-grid-bg .owl-theme .owl-nav,
.projects .owl-theme .owl-nav,
.attractions .owl-theme .owl-nav{
    position: relative;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.projects .owl-theme .owl-prev,
.attractions .owl-theme .owl-prev {
    left: 10px!important
}
.projects .owl-theme .owl-next,
.attractions .owl-theme .owl-next {
    right: 10px!important
}
.projects .owl-theme .owl-prev,
.projects .owl-theme .owl-next,
.attractions .owl-theme .owl-prev,
.attractions .owl-theme .owl-next {
    color: var(--white-color);
    position: absolute!important;
    top: 50%;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #272727;
    border: 1px solid #272727;
    line-height: 0;
    text-align: center;
    font-size: 16px
}
.projects .owl-theme .owl-prev>span,
.projects .owl-theme .owl-next>span,
.attractions .owl-theme .owl-prev>span,
.attractions .owl-theme .owl-next>span {
    position: absolute;
    line-height: 0;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.projects .owl-theme .owl-nav [class*=owl-],
.attractions .owl-theme .owl-nav [class*=owl-] {
    width: 50px;
    height: 50px;
    line-height: 44px;
    background: transparent;
    color: var(--white-color);
    font-size: 11px;
    margin-right: 15px;
    margin-left: 15px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255, 0.7);
    border-radius: 100%;
    transition: all 0.2s ease-in-out;
    transform: scale(1.0);
}
.projects .owl-theme .owl-nav [class*=owl-]:hover,
.attractions .owl-theme .owl-nav [class*=owl-]:hover {
    transform: scale(0.9);
    background: var(--primary-color);
    border: 1px solid var(--white-color);
    color: var(--secondary-color);
}
/* opacity 0 - 1 */
.projects .owl-theme .owl-nav [class*=owl-] {
    opacity: 1;
}
.projects .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}
.projects .owl-theme .owl-nav {
    margin-top: -50px;
}



.attractions .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    
}
.attractions .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    background: var(--primary-color);
}
.slider .owl-theme .owl-nav {
    position: absolute!important;
    top: 40%!important;
    bottom: auto!important;
    width: 100%
}
.slider .owl-theme .owl-nav [class*=owl-] {
    opacity: 0;
}
.slider .owl-theme:hover .owl-nav [class*=owl-] {
    opacity: 1;
}

/* ======= Section style ======= */
.section-padding {
    padding: 120px 0;
}
.section-padding2 {
    padding: 0 0 120px 0;
}
.section-padding h6 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 15px;
   font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0px;
    margin-bottom: 5px;
}
.section-subtitle span {
 color: var(--primary-color);
}
.section-title {
    font-size: 46px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}
.section-title span {
    color: var(--white-color);
}


/* ======= Navbar style ======= */
.navbar {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: var(--white-color);
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar .navbar-nav .nav-link {
   font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--white-color);
    margin: 1px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: var(--white-color);
}
.navbar .navbar-nav .nav-link:hover {
    color: #C8DFE5;
}
.navbar .navbar-nav .active {
    color: var(--primary-color) !important;
}
.navbar .navbar-nav .active i {
    color: var(--primary-color);
}
.nav-scroll {
    background: var(--white-color);
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    box-shadow: 0px 5px 15px rgb(15 36 84 / 5%);
    height: 90px;
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .nav-link {
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .nav-link:hover{
    color: var(--secondary-color);
}
.nav-scroll .navbar-nav .active {
    color: var(--primary-color) !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: var(--white-color);
}
.nav-scroll .logo-img {
    width: 100px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.logo-wrapper {
    float: left;
}
.logo {
    padding: 0;
}
.logo-img {
    padding: 20px 0;
    width: 100px;
    text-align: center;
}
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: var(--secondary-color);
}
.nav-scroll .dropdown .nav-link i {
    color: var(--secondary-color);
}
.nav-scroll .navbar-nav .active i {
    color: var(--primary-color);
}
.navbar .dropdown-menu .dropdown-item {
    padding: 8px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--secondary-color);
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    background-color: transparent;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {
    box-shadow: 0 16px 50px rgb(0 0 0 / 7%);
}
.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(32, 149, 174, 0.05);
}
.navbar .dropdown-menu li:last-child {
   border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}
.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/* ======= Section style ======= */
.section-padding {
    padding: 120px 0;
}
.section-padding2 {
    padding: 0 0 120px 0;
}
.section-padding h6 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 15px;
   font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0px;
    margin-bottom: 5px;
}
.section-subtitle span {
 color: var(--primary-color);
}
.section-title {
    font-size: 36px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 20px;
    line-height: 40px;
}
.section-title span {
    color: var(--white-color);
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/* ======= Banner Header style ======= */
.banner-header {
    min-height: calc(70vh - 100px);
}

.banner-header.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: url('../images/hero-banner3.jpg');
    background-attachment: fixed;
}
.banner-header.full-height{
    min-height: calc(100vh - 100px);
    background-position: center;
    position: relative;
}
.banner-header.full-height:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.banner-header.full-height .justify-content-center{
    position: relative;
    z-index: 2;
}
.banner-header.full-height h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: var(--white-color);
}
.banner-header.full-height h1 {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 62px;
    text-transform: uppercase;
    line-height: 60px;
    color: var(--white-color);
    letter-spacing: 0px;
    padding: 0 50px;
    font-weight: bold;
}
.banner-header p {
    font-size: 22px;
    color: var(--white-color);
    width: 70%;
    margin: 20px auto;
    line-height: normal;
    font-weight: 400;
}
.banner-header .butn-light {
    margin-top: 45px;
}
/* bounce */
.banner-header  .arrow {
    position: absolute;
    bottom: -120px;
    width: 100%;
    text-align: center;
    z-index: 8;
    left: 0;
    right: 0;
}
.banner-header  .arrow.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
.banner-header  .arrow i {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--white-color);
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100%;
}

.banner-header  .arrow i:hover {
    border: 1px solid var(--primary-color);
}
.banner-header  .arrow i:hover:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;

}

/* ======= About section style ======= */
section.about.section-padding p {
    font-size: 15px;
}
section.about.section-padding .btn{
    margin-top: 20px;
}
section.about .right-imgs .img-1{
    width: 75%;
}
section.about .right-imgs .img-2{
    width: 100%;
}
section.about .right-imgs .img-3{
    width: 50%;
}
section.about .right-imgs .img-4{
    width: 75%;
}




/* ======= Rooms style  ======= */
.projects {
    position: relative;
}
.projects:last-child {
    margin-bottom: 20px;
}
.projects .main-desc{
    font-size: 17px;
}
.projects figure {
    margin: 0;
    position: relative;
    width: 66.666667%;
    margin-left: auto;
}
.projects figure img{
    height: 500px;
    object-fit: cover;
    width: 100%;
}
.projects.left figure {
    margin-left: 0;
    margin-right: auto;
}
.projects .caption {
    background: rgb(255, 255, 255, 0.8);
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    padding: 4% 2% 4% 2%;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.projects.left .caption {
    left: auto;
    right: 0;
    background: var(--white-color);
    padding: 4% 4% 4% 4%;
}
.projects .caption.padding-left {
    padding-left: 4%;
}
.rooms.left .caption.padding-left {
    padding-right: 4%;
}
.projects .caption h4,
.projects .caption h4 a {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}
.projects .caption h3,
.projects .caption h3 a {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 0px;
}
.projects .caption h3 span {
    font-size: 15px;
    color: #676977;
    font-family: 'Barlow', sans-serif;
}
.projects .caption h6 {
    display: inline-block;
    color: var(--primary-color);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0px;
    text-transform: uppercase;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 10px 0;
}
.projects .caption .info-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.projects .caption .info-wrapper .more {
    color: #676977;
    text-decoration: none;
    font-size: 14px;
}
.rooms .caption .info-wrapper .more i {
    color: #676977;
    font-size: 10px;
}
.projects .caption .info-wrapper .date {
    color: var(--secondary-color);
   font-family: "Montserrat", sans-serif;
    font-size: 15px;
    background: transparent;
    border: 1px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0px;
    padding: 3px 12px;
}
.projects .caption .info-wrapper .date:hover {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}
@media (max-width: 991.98px) {
    .projects figure {
        width: auto;
        margin: 0;
    }
    .projects .caption {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        padding: 30px 20px;
        -ms-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}
/* hr style */
hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0;
}
hr.border-1 {
    border-top: 1px solid rgba(32, 149, 174, 0.7);
}
hr.border-2 {
    border-top: 1px solid rgba(32, 149, 174, 0.7);
}
/* button link */
.link-btn {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    letter-spacing: 0px;
    font-weight: bold;
}
.link-btn i {
    margin-left: 3px;
    font-size: 15px;
    color: var(--primary-color);
}
.link-btn:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}
.link-btn:hover::before {
    width: 100%
}
/* reservation button */
.reservations {
    display: flex;
    align-items: center;
}
.reservations .icon {
    position: relative;
    top: 3px;
}
.reservations .icon span {
    font-size: 36px;
    color: var(--primary-color);
}
.reservations .icon.color-1 span {
    font-size: 36px;
    color: var(--white-color);
}
.reservations .text {
    margin-left: 10px;
}
.reservations .text p {
    font-size: 15px;
    margin: 0;
    
}
.reservations .text a {
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: -1px;
}
.reservations .text a.color-1 {
    color: var(--white-color);
}

/* projects facilities */
.room-facilities .wrap {
    background: var(--secondary-color);
    padding: 30px;
}
.projects-facilities ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.projects-facilities ul li {
  color: var(--font-color);
  font-size: 14px;
  padding-bottom: 10px;
}
.projects-facilities ul li i {
    margin-right: 2px;
    color: var(--primary-color);
    font-size: 16px;
}

.projects .owl-theme .owl-dots .owl-dot span {
    background: rgba(32, 149, 174,0.2);
    border: 1px solid rgba(32, 149, 174,0.01);
}
.projects .owl-theme .owl-dots .owl-dot.active span,
.projects .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}



/* ======= Attractions style ======= */
section.attractions.section-padding{
    background: #C8DFE5;
    position: relative;
}
section.attractions.section-padding:before{
   content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 665px;
  height: 466px;
  background-image: url(../images/pattern.png);   
}
section.attractions p.main-desc {
    font-size: 22px;
    font-weight: 300;
    width: 60%;
    margin: 0 auto 50px auto;
}
.attractions .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.attractions .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(75%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.attractions .item:hover .con {
    bottom: 0;
}
.attractions .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-filter: brightness(100%);
}
.attractions .item .con {
    margin: -155px 20px 90px;
    padding: 20px;
    background-color: var(--white-color) !important;
    border: 1px solid var(--white-color);
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: .2s cubic-bezier(.3, .58, .55, 1);
    transition: .2s cubic-bezier(.3, .58, .55, 1);
    bottom: -90px;
    position: relative;
}
.attractions .item .con p{
    font-family: "Montserrat", sans-serif;
     font-size: 14px;
     color: var(--font-color);
}
.attractions .item .con .category {
    margin-right: 5px;
    position: relative;
    color: var(--primary-color);
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0px;
    line-height: 28px;
}
.attractions .item .con .category:hover {
    color: var(--secondary-color);
}
.attractions .item .con .category:last-child {
    margin-right: 0;
}
.attractions .item .con .category:last-child:after {
    display: none;
}
.attractions .item .con h5,
.attractions .item .con h5 a {
    color: var(--secondary-color);
    font-size: 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin-bottom: 0px;
}
.attractions .item .con h5:hover,
.attractions .item .con h5 a:hover {
    color: var(--primary-color);
}
.attractions .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.attraction-btn {
    margin-top: 50px;
    text-align: center;
}
.btn.butn-dark.attraction-btn:active {
    border: none;
}

/* ======= CTA style ======= */

section.mid-page_CTA{
    background: url('../images/mid-page-cta-bg.jpg') no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
section.mid-page_CTA:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.cta-box {
    position: relative;
    z-index: 2;
}
.cta-box h1 {
    color: var(--white-color);
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
}

/**
====================================================================
  service-section
====================================================================

***/
.service-section {
  position: relative;
  padding: 120px 0 88px;
}
@media (max-width: 575.98px) {
  .service-section .sec-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .service-section .sec-title .sub-title {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .service-section .sec-title h2 {
    font-size: 32px;
  }
}
.service-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 665px;
  height: 466px;
  background-image: url(../images/home.png);
}
.left-content-wrapper h1 {
    font-family: "Montserrat", sans-serif;
}
.left-content-wrapper p {
    font-size: 15px;
}
.service-block {
  margin-bottom: 24px;
}
.service-block .inner-box {
  position: relative;
  text-align: center;
  border: 2px solid #C8DFE5;
  padding: 45px 20px 33px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: var(--white-color);
  min-height: 200px;
}
.service-block .inner-box:hover {
  background-color: var(--primary-color);
}
.service-block .inner-box:hover .content-box .title a{
  color: var(--white-color);
}
.service-block .inner-box:hover .content-box .text {
  color: var(--white-color);
}
.service-block .inner-box:hover .icon-box {
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}
.service-block .inner-box:hover .icon-box i {
  color: var(--white-color);
}
.service-block .inner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 95px;
  height: 11px;
  background-color: #C8DFE5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.service-block .inner-box .icon-box {
  margin-bottom: 11px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-block .inner-box .icon-box i {
  color: var(--primary-color);
  font-size: 32px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box .content-box .title{
   font-family: "Montserrat", sans-serif;
   font-size: 17px;
}
.service-block .inner-box .content-box .text {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.left-content-wrapper {
    position: relative;
    z-index: 2;
    width: 85%;
}
.single-invest.invest-2 .invest-content {
    padding-bottom: 104px;
}
.snapchot {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 0px;
    color: var(--white-color);
}
.snapchot h3 {
    font-size: 20px;
    font-weight: bold;
}
.snapchot ul {
    padding: 0 15px;
}
.snapchot ul li{
    font-size: 12px;
}
.img-wrapper, .img-wrapper img {
    height: 100%;
    width: 100%;
}
.img-wrapper img{
    object-fit: cover;
}
.mobile-amenities{
    display: none;
}

.mobile-amenities .owl-theme .owl-prev,
.mobile-amenities .owl-theme .owl-next {
    color: var(--secondary-color) !important;
    padding: 0;
    height: 50px;
    width: 50px;
    border-radius: 0%;
    background: var(--primary-color) !important;
    border: none !important;
    line-height: 0;
    text-align: center;
    font-size: 16px
}

/* ======= Footer style ======= */

section.footer{
    background: url('../images/saadiyat-grove-5.jpg') no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
section.footer:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.footer-left-content{
    position: relative;
    z-index: 2;
}
.footer-left-content h1{
    color: var(--white-color);
    font-size: 32px;
     font-family: "Montserrat", sans-serif;
}
.booking-box {
    position: relative;
    background: #C8DFE5;
    padding: 45px;
    margin-bottom: -75px;
    z-index: 2;
}
.booking-box .head-box h6 {
    font-size: 15px;
   font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0px;
    margin-bottom: 10px;
}
.booking-box .head-box h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    font-weight: 400;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(32, 149, 174, 0.2);
    padding-bottom: 15px;
    letter-spacing: 0;
    text-transform: none;
    margin-top: 0;
}
.booking-box .head-box h4 span {
    color: var(--secondary-color);
}
.footer-form input, .footer-form textarea, .footer-form select {
    border-radius: 0;
}
.footer-form label span{
    color: var(--primary-color);
}
@media screen and (max-width: 991px) {
    .booking-box {
        margin-bottom: 90px;
        padding: 35px 20px;
    }
}
.btn-form1-submit {
    display: block;
    padding: 0;
    border: none;
    margin: 0;
    width: 100%;
    background: var(--primary-color);
    color: var(--white-color);
   font-family: "Montserrat", sans-serif;
    font-size: 15px;
    text-decoration: none;
    line-height: 62px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s 
ease-out;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-top: 15px;
}
.footer-bottom {
    background: var(--secondary-color);
    padding: 30px 0;
}
.footer-bottom-logo img {
    width: 150px;
}


/*** General popup *****/

button.butn-dark.btn.btn-primary {
    font-weight: 400;
   font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0px;
    border: none;
    border-radius: 0;
    width: 100%;
    margin-top: 20px;
}
button.butn-dark.btn.btn-primary:hover {
    transition: all 0.3s linear;
    background: var(--secondary-color);
}
.modal-header .modal-title h5 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--secondary-color);
}
.modal-header {
    justify-content: flex-start;
    align-items: flex-start;
}
.modal-header .modal-title .subtitle{
    font-size: 17px;
    font-weight: normal;
    text-transform:none;
    line-height: normal;
}
form.popup-form input, form.popup-form select, form.popup-form textarea {
    border-radius: 0;
    margin-bottom: 10px;
}
div#generalForm .modal-dialog .modal-content {
    background: #C8DFE5 !important;
}
.popup-form input, .popup-form select, .footer-form input, .footer-form select{
    height: 50px;
}
.footer-form textarea{
    height: 100px;
 }
/**** Project pop Style ***/

.hero-img {
    width: 70%;
    margin: 0 auto;
    position: relative;
}
.hero-img .img {
    position: relative;
    top: 150px;
}
.hero-img .img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}
.overlay{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: var(--secondary-color);
    opacity: 0.6;
    z-index: 1;
}
.projects-modal .modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    border: none;
}
.projects-modal .btn-close{
    background: none;
}
.projects-modal .btn-close i{
    color: var(--white-color);
    opacity: 1;
}
.projects-modal .modal-body{
    padding:0;
}
.modal-hero-section {
    background: url('../images/projects/project-1-bg.jpg') no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    height: auto;
    position: relative;
    left: 0;
    right: 0;
    padding: 0;
    padding-bottom: 30px;
}
.center-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white-color);
    z-index: 2;
}
.center-title h1{
     font-family: "Montserrat", sans-serif;
     font-size: 42px;
}
.center-title h2{
    font-size: 26px;
}
.center-title h3{
    font-size: 22px;
}
.modal-hero-section .desc {
    text-align: center;
    margin: 200px auto 0 auto;
    width: 70%;
}
.modal-hero-section .desc p{
    color: var(--white-color);
    font-size: 22px;
        text-align: center;
        line-height:30px;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
section.project-details-type {
    padding: 20px 50px;
}
section.project-details-type .projects-facilities ul li i{
     font-size: 18px;
}
section.project-details-type .projects-facilities ul li{
    font-size: 18px;
}
/* ======= Gallery style ======= */
.gallery-section{
    padding: 60px 0;
}
.row.gallery {
    padding: 0 50px;
}
.gallery-item {
    position: relative;
    padding-top: 20px;
}
.gallery-box {
    overflow: hidden;
    position: relative;
}
.gallery-box .gallery-img {
    position: relative;
    overflow: hidden;
}
.gallery-box .gallery-img:after {
    content: " ";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-img > img {
    transition: all 0.3s 
cubic-bezier(0.3, 0.1, 0.58, 1);
    border-radius: 0;
    height: 300px;
    object-fit: cover;
}
.gallery-box .gallery-detail {
    opacity: 0;
    color: var(--white-color);
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    overflow: hidden;
    transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.gallery-box .gallery-detail h4 {
    font-size: 18px;
}
.gallery-box .gallery-detail p {
    color: Rgba(15, 36, 84, 0.4);
    font-size: 14px;
}
.gallery-box .gallery-detail i {
    color: var(--secondary-color);
    padding: 8px;
}
.gallery-box .gallery-detail i:hover {
    color: var(--secondary-color);
}
.gallery-box:hover .gallery-detail {
    top: 50%;
    transform: translate(0, -50%);
    opacity: 1;
}
.gallery-box:hover .gallery-img:after {
    background: Rgba(15, 36, 84, 0.4);
}
.gallery-box:hover .gallery-img > img {
    transform: scale(1.05);
}
/* magnific popup custom */
.mfp-figure button {
    border: 0px solid transparent;
}
button.mfp-close,
button.mfp-arrow {
    border: 0px solid transparent;
    background: transparent;
}
.mfp-bg {
  z-index: 2000 !important; /* backdrop */
}
.mfp-wrap {
  z-index: 2001 !important; /* popup */
}

.payment-form-section {
    background: var(--primary-color);
    padding: 50px;
    position: relative;
}
button.btn.btn-primary.popbtn-register {
    font-weight: 400;
   font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--white-color);
    color: var(--font-color);
    padding: 15px 30px;
    margin: 0;
    position: relative;
    font-size: 15px;
    letter-spacing: 0px;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 0;
}
.modal-footer {
    display: none;
}
.payment-form-section.section h1.title{
       font-family: "Montserrat", sans-serif;
       color: var(--white-color);
}


/* ======= FAQ style ======= */
section.section-padding.bg-faq {
    background: var(--primary-color);
}
section#faq h1 {
    color: var(--white-color);
    font-size: 36px;
    margin-bottom: 25px;
      font-family: "Montserrat", sans-serif;
}
.accordion-box {
  position: relative;
    padding: 0;
}
.accordion-box .block {
  position: relative;
  background: var(--white-color);
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 15px;
}
.accordion-box .block.active-block {
  background-color: var(--white-color);
}
.accordion-box .block:last-child {
  margin-bottom: 0;
}
.accordion-box .block .acc-btn {
    position: relative;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    cursor: pointer;
    padding: 30px 40px;
    padding-right: 60px;
    color: var(--secondary-color);
    transition: all 500ms ease;
    font-family: "Montserrat", sans-serif;
}
.accordion-box .block .acc-btn .count {
  color: var(--primary-color);
  padding-right: 3px;
}
.accordion-box .block .acc-btn:before {
  position: absolute;
    right: 35px;
    top: 28px;
    height: 30px;
    font-size: 14px;
    font-weight: normal;
    color: var(--primary-color);
    line-height: 30px;
    content: "\e61a";
    font-family: "Themify";
    transition: all 500ms ease;
}
.accordion-box .block .acc-btn.active {
  background-color: var(--white-color);
    color: var(--primary-color);
}
.accordion-box .block .acc-btn.active:before {
  color: "Themify";
  content: "\e622";
}
.accordion-box .block .acc-content {
  position: relative;
  display: none;
}
.accordion-box .block .content {
  position: relative;
    padding: 0px 40px 30px;
    background-color: var(--white-color);
    color: #676977;
}
.accordion-box .block .acc-content.current {
  display: block;
}
.accordion-box .block .content .text {
  display: block;
  position: relative;
  top: 0px;
  display: block;
}
/*** Location ****/




/*-----WHy invest CSS-----*/

.invest-title{
    padding: 50px 0 50px 0;

}
.invest-title h1{
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    font-weight: bold;
}
.why-invest {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ensures all columns stretch equally */
  padding-bottom: 80px;
}

.why-invest .single-invest {
  width: 25%;
  display: flex;
  flex-direction: column;
  min-height: 480px; /* set overall card height (adjust as needed) */
  box-sizing: border-box;
}

/* flip layout for even items */
.why-invest .single-invest:nth-child(even) {
  flex-direction: column-reverse;
}

/* equalize images */
.why-invest .single-invest img {
  width: 100%;
  height: 50%;         /* image takes half the card height */
  object-fit: cover;   /* crop if needed to fit */
  display: block;
  flex-shrink: 0;
}

/* content fills remaining space */
.why-invest .invest-content {
  flex: 1 1 auto;
  display: flex;
  align-items: center;   /* center text vertically */
  justify-content: center; /* center text horizontally */
  text-align: center;
  padding: 30px 20px;
  box-sizing: border-box;
  position: relative;
}

.why-invest .invest-content:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: -7px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
}
.why-invest .single-invest:nth-child(even) .invest-content:before {
  top: auto;
  bottom: -7px;
}

/* typography */
.why-invest .invest-content p {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  padding: 0 10px;
}

.clamp-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* color schemes */
.single-invest.invest-1 .invest-content,
.single-invest.invest-3 .invest-content {
  background: var(--primary-color);
  color: var(--white-color);
}
.single-invest.invest-2 .invest-content,
.single-invest.invest-4 .invest-content {
  background: var(--secondary-color);
  color: var(--white-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-invest .single-invest { width: 50%; min-height: 400px; }
}
@media (max-width: 575px) {
  .why-invest .single-invest { width: 100%; min-height: auto; }
  .why-invest .single-invest img { height: 250px; } /* fixed mobile height */
}
/*** Thank you popup ***/

.thankyou-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup-content {
  background: var(--white-color);
  border-radius: 8px;
  max-width: 500px;
  margin: 15% auto;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
  margin-bottom: 15px;
  color: #333;
}

.popup-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.close-popup:hover {
  color: var(--font-color);
}
 


/***-=== ARABIC CSS -====**/

section.attractions_ar.section-padding:before{
    right: 0;
    left: unset;
}
.projects_ar .owl-theme .owl-prev,
.attractions_ar .owl-theme .owl-prev {
    right: 10px!important;
    left:unset !important;
}
.projects_ar .owl-theme .owl-next,
.attractions_ar .owl-theme .owl-next {
    left: 10px!important;
    right: unset !important;
}


/** -=== RESPONSIVE ===-**/


/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    /* CSS */
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {

      .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 190px;
        padding: 15px;
        border-radius: 0;
        border: 0;
        background-color: var(--white-color);
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 190px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }    

}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {


}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

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


  .navbar {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        height: auto;
    }
    .nav-scroll {
        background: var(--white-color);
    }
    .logo-wrapper {
        float: left;
        padding: 25px;
    }
    .nav-scroll .logo-wrapper {
        padding: 25px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 100px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .logo-img {
        margin-bottom: 0px;
        width: 100px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: var(--secondary-color);
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: var(--secondary-color) !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: var(--primary-color) !important;
    } 
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: var(--white-color);
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .dropdown .nav-link i {
        color: var(--secondary-color);
    }
    .nav-scroll .dropdown .nav-link i {
        color: var(--secondary-color);
    }
    .nav-scroll .dropdown .nav-link.active i {
    color: var(--primary-color);
    }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: var(--white-color);
        text-align: left;
        padding: 20px;
    }
.banner-header.bg-img {
    background-attachment: scroll;
}
    .banner-header.full-height h1 {
        font-size: 24px;
        margin-bottom: 15px;
        letter-spacing: 10px;
        line-height: 1.35em;
        padding: 0;
    }
    .banner-header.full-height h3 {
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 10px;
    line-height: 1.35em;
    }
    .banner-header.full-height h4 {
        font-size: 12px;
    } 
    .banner-header h1 {
        font-size: 46px;
    }


.section-padding {
    padding: 50px 10px;
}
.section-title {
    font-size: 27px;
    line-height: 32px;
}
span.navbar-toggler-icon i {
    line-height: 30px;
}
.banner-header.full-height h1 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1px;
    padding: 0;
}
.banner-header.full-height {
    min-height: calc(80vh - 100px);
    background-position: center;
    position: relative;
}
.banner-header p {
    width: 100%;
    font-weight: 300;
}
section.about.section-padding .btn {
    margin-top: 20px;
    margin-bottom: 30px;
}

section.about .right-imgs .img-1{
    width: 100%;
}
section.about .right-imgs .img-2{
    width: 100%;
}
section.about .right-imgs .img-3{
    width:75%;
}
    section.about .right-imgs .img-4 {
        margin-top: -30px;
        width: 100%;
    }
    section.attractions p.main-desc {
    width: 100%;
    line-height: normal;
}
.service-section {
    position: relative;
    padding: 50px 20px 50px 20px;
}
.left-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}
.left-content-wrapper {
    width: 100%;
    margin-bottom: 20px;
}
.service-section::before {
    width: 100%;
}
.info-wrapper .butn-dark {
    margin-top: 35px;
}
.hero-img {
    width: 88%;
    margin: 0 auto;
    position: relative;
}
.center-title h1 {
    font-family: 'Gilda Display', serif;
    font-size: 30px;
}
.center-title h3 {
    font-size: 18px;
    font-weight: 300;
}
.center-title h2 {
    font-size: 22px;
    font-weight: 300;
}
.modal-hero-section .desc {

    width: 80%;
}
.row.gallery {
    padding: 0;
}
.payment-form-section {
    background: var(--primary-color);
    padding: 50px 20px;
    position: relative;
}
select#iam_3 {
    margin-top: 10px;
}
.footer-bottom-logo {
    text-align: center;
}

    .why-invest{
        display: block;
    }
    .why-invest .single-invest {
        width: 100%;
        display: block;
    }
.why-invest .single-invest:nth-child(even) .invest-content:before {
    bottom: inherit;
    top: -7px;
}
.popup-form input, .popup-form select, .footer-form input, .footer-form select {
    height: auto;
}
.booking-box .head-box h4 {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
            padding: 0;
}
.booking-box{
  padding: 20px 20px;
  
}
.btn-form1-submit {
    line-height: 40px;
}
.invest-title {
    padding: 20px;
}
.mobile-amenities{
    display: block;
}
.desktop-amenities{
  display: none;
}
.service-block .inner-box {
  padding: 30px 20px 33px;
  min-height: 175px;
}
.invest-title.text-center h1 {
    font-size: 25px;
}
.projects figure img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.projects .caption h4, .projects .caption h4 a {
    font-size: 26px;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    margin-bottom: 10px;
}
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

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


  .navbar {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        height: auto;
    }
    .nav-scroll {
        background: var(--white-color);
    }
    .logo-wrapper {
        float: left;
        padding: 25px;
    }
    .nav-scroll .logo-wrapper {
        padding: 25px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 100px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .logo-img {
        margin-bottom: 0px;
        width: 100px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: var(--secondary-color);
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: var(--secondary-color) !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: var(--primary-color) !important;
    } 
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: var(--white-color);
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .dropdown .nav-link i {
        color: var(--secondary-color);
    }
    .nav-scroll .dropdown .nav-link i {
        color: var(--secondary-color);
    }
    .nav-scroll .dropdown .nav-link.active i {
    color: var(--primary-color);
    }
    .navbar .navbar-collapse {
        max-height: 450px;
        overflow: auto;
        background: var(--white-color);
        text-align: left;
        padding: 20px;
    }
.banner-header.bg-img {
    background-attachment: scroll;
}
    .banner-header.full-height h1 {
        font-size: 24px;
        margin-bottom: 15px;
        letter-spacing: 10px;
        line-height: 1.35em;
        padding: 0;
    }
    .banner-header.full-height h3 {
    font-size: 30px;
    margin-bottom: 15px;
    letter-spacing: 10px;
    line-height: 1.35em;
    }
    .banner-header.full-height h4 {
        font-size: 12px;
    } 
    .banner-header h1 {
        font-size: 46px;
    }


.section-padding {
    padding: 50px 10px;
}
.section-title {
    font-size: 27px;
    line-height: 32px;
}
span.navbar-toggler-icon i {
    line-height: 30px;
}
.banner-header.full-height h1 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1px;
    padding: 0;
}
.banner-header.full-height {
    min-height: calc(80vh - 100px);
    background-position: center;
    position: relative;
}
.banner-header p {
    width: 100%;
    font-weight: 300;
}
section.about.section-padding .btn {
    margin-top: 20px;
    margin-bottom: 30px;
}

section.about .right-imgs .img-1{
    width: 100%;
}
section.about .right-imgs .img-2{
    width: 100%;
}
section.about .right-imgs .img-3{
    width:75%;
}
    section.about .right-imgs .img-4 {
        margin-top: -30px;
        width: 100%;
    }
    section.attractions p.main-desc {
    width: 100%;
    line-height: normal;
}
.service-section {
    position: relative;
    padding: 50px 20px 50px 20px;
}
.left-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}
.left-content-wrapper {
    width: 100%;
    margin-bottom: 20px;
}
.service-section::before {
    width: 100%;
}
.info-wrapper .butn-dark {
    margin-top: 35px;
}
.hero-img {
    width: 88%;
    margin: 0 auto;
    position: relative;
}
.center-title h1 {
    font-family: 'Gilda Display', serif;
    font-size: 30px;
}
.center-title h3 {
    font-size: 18px;
    font-weight: 300;
}
.center-title h2 {
    font-size: 22px;
    font-weight: 300;
}
.modal-hero-section .desc {

    width: 80%;
}
.row.gallery {
    padding: 0;
}
.payment-form-section {
    background: var(--primary-color);
    padding: 50px 20px;
    position: relative;
}
select#iam_3 {
    margin-top: 10px;
}
.footer-bottom-logo {
    text-align: center;
}

    .why-invest{
        display: block;
    }
    .why-invest .single-invest {
        width: 100%;
        display: block;
    }
.why-invest .single-invest:nth-child(even) .invest-content:before {
    bottom: inherit;
    top: -7px;
}
.popup-form input, .popup-form select, .footer-form input, .footer-form select {
    height: auto;
}
.booking-box .head-box h4 {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
            padding: 0;
}
.booking-box{
  padding: 20px 20px;
  
}
.btn-form1-submit {
    line-height: 40px;
}
.invest-title {
    padding: 20px;
}
.mobile-amenities{
    display: block;
}
.desktop-amenities{
  display: none;
}
.service-block .inner-box {
  padding: 30px 20px 33px;
  min-height: 175px;
}
.invest-title.text-center h1 {
    font-size: 25px;
}
.projects figure img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.projects .caption h4, .projects .caption h4 a {
    font-size: 26px;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    margin-bottom: 10px;
}
}

