* {
    margin: 0;
    padding: 0
}

@font-face {
    font-family: 'Libre Caslon Text';
    src: url(../fonts/Libre_Caslon_Text/LibreCaslonText-Regular.ttf);
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: 'Libre Caslon Text';
    src: url(../fonts/Libre_Caslon_Text/LibreCaslonText-Bold.ttf);
    font-weight: 700;
    font-display: swap
}

@font-face {
    font-family: 'Jost';
    src: url(../fonts/Jost/Jost-Regular.ttf);
    font-weight: 400;
    font-display: swap
}

@font-face {
    font-family: 'Jost';
    src: url(../fonts/Jost/Jost-Medium.ttf);
    font-weight: 500;
    font-display: swap
}

@font-face {
    font-family: 'Jost';
    src: url(../fonts/Jost/Jost-SemiBold.ttf);
    font-weight: 600;
    font-display: swap
}

:root {
    --libre_font: 'Libre Caslon Text', serif;
    --jost_font: Jost;
    --bg_color: #f5f8fb;
    --mini_title: #ddb865;
    --primary: #000;
    --sub_text: #5f6160
}

body {
    font-family: var(--jost_font);
    letter-spacing: .5px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--libre_font)
}

span {
    font-family: var(--jost_font)
}

.form-control {
    box-shadow: none !important
}

.form-control:focus {
    border-color: var(--primary)
}

.mx_-30 {
    margin-left: -30px;
    margin-right: -30px
}

.mx_-50 {
    margin-left: -50px;
    margin-right: -50px
}

.px_30 {
    padding-left: 30px;
    padding-right: 30px
}

.px_50 {
    padding-left: 50px;
    padding-right: 50px
}

.btn.rounded {
    border-radius: 100px !important
}

.dark_btn {
    background: linear-gradient(-45deg, #e3b95c, #d0a649, #eaca6f, #c99c3e, #fcea9c);
    color: #000 !important;
    transition: all .3s ease-in-out;
    width: 50%;
    margin-top: 20px;
    height: 55px;
    font-size: 18px
}

.dark_btn:hover {
    background: var(--mini_title)
}

.dark_btn.secondary {
    background: linear-gradient(-45deg, #e3b95c, #d0a649, #eaca6f, #c99c3e, #fcea9c)
}

/*.dark_btn.secondary:hover{background:var(--primary)}*/
section.section {
    padding: 100px 0;
    position: relative
}

.left_arrow,
.right_arrow {
    display: flex;
    width: auto;
    outline: none
}

.left_arrow .circle,
.right_arrow .circle {
    height: 40px;
    width: 40px;
    border: 1px solid #b5b5b5;
    display: block;
    border-radius: 50%
}

.left_arrow img,
.right_arrow img {
    filter: invert(1);
    width: 36px
}

.left_arrow img {
    margin-left: -20px;
    opacity: .4
}

.right_arrow img {
    margin-right: -20px;
    opacity: .4
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none
}

.sec_heading {
    margin-bottom: 30px
}

.sec_heading.center {
    text-align: center
}

.sec_heading .mini_title {
    text-transform: uppercase;
    color: var(--mini_title) !important;
    letter-spacing: 1px
}

.sec_heading .heading {
    font-size: 48px;
    line-height: 60px
}

.sec_heading .sub_text {
    margin: 0;
    margin-top: 30px;
    font-size: 18px;
    line-height: 32px;
    color: var(--sub_text);
    text-align: justify
}

.hero_section {
    height: calc(100vh - 115px)
}

.hero_swiper {
    height: 100%;
    cursor: pointer
}

.hero_swiper .swiper-slide {
    padding: 70px 15vw;
    position: relative
}

.hero_swiper .swiper-slide .thumbnail {
    height: 100%;
    object-fit: cover
}

.hero_swiper .swiper-slide-active .thumbnail {
    opacity: 0;
    animation: bannerThumbnail .5s forwards;
    animation-delay: .2s
}

@keyframes bannerThumbnail {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .swiper-slide .bg_color {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .6
}

.hero_swiper .swiper-slide .prev,
.hero_swiper .swiper-slide .next {
    position: absolute;
    content: '';
    height: 300px;
    width: 150px;
    background-size: cover;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1
}

.hero_swiper .swiper-slide .prev {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.hero_swiper .swiper-slide-active .prev {
    opacity: 0;
    animation: bannerPrevImg .5s forwards;
    animation-delay: 1.4s
}

@keyframes bannerPrevImg {
    0% {
        left: -150px
    }

    100% {
        left: 0;
        opacity: 1
    }
}

.hero_swiper .swiper-slide .next {
    right: -150px;
    left: unset;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.hero_swiper .swiper-slide-active .next {
    opacity: 0;
    animation: bannerNextImg .5s forwards;
    animation-delay: 1.4s
}

@keyframes bannerNextImg {
    0% {
        right: -150px
    }

    100% {
        right: 0;
        opacity: 1
    }
}

.hero_swiper .swiper-slide-active .prev {
    left: 0
}

.hero_swiper .swiper-slide .main_banner_contents {
    position: absolute;
    width: calc(100% - 50vw);
    top: 70px;
    height: calc(100% - 140px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    z-index: 1
}

.hero_swiper .swiper-slide .contents {
    color: #fff;
    width: 100%
}

.hero_swiper .contents .mini {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 40px;
    margin-bottom: 0
}

.hero_swiper .swiper-slide-active .contents .mini {
    opacity: 0;
    animation: bannerMini .5s forwards;
    animation-delay: .4s
}

@keyframes bannerMini {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .contents .main_heading {
    font-size: 60px
}

.hero_swiper .swiper-slide-active .contents .main_heading {
    opacity: 0;
    animation: bannerMainHeading .7s forwards;
    animation-delay: .6s
}

@keyframes bannerMainHeading {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .contents .location {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-size: 15px
}

.hero_swiper .swiper-slide-active .contents .location {
    opacity: 0;
    animation: bannerLocation .7s forwards;
    animation-delay: .8s
}

@keyframes bannerLocation {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .contents .location img {
    margin-right: 5px;
    width: 30%
}

.hero_swiper .contents .typo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500
}

.hero_swiper .swiper-slide-active .contents .typo {
    opacity: 0;
    animation: bannerType .7s forwards;
    animation-delay: 1s
}

@keyframes bannerType {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .contents .price {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 70px
}

.hero_swiper .swiper-slide-active .contents .price {
    opacity: 0;
    animation: bannerPrice .7s forwards;
    animation-delay: 1.2s
}

@keyframes bannerPrice {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .contents .key_high {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0 60px;
    margin-bottom: 30px;
    justify-content: space-between
}

.hero_swiper .swiper-slide-active .contents .key_high {
    opacity: 0;
    animation: bannerKeyHigh .7s forwards;
    animation-delay: 1.4s
}

@keyframes bannerKeyHigh {
    0% {
        transform: scale(0.8)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.hero_swiper .contents .key_high li {
    max-width: calc(30.33% - 70px);
    flex: 0 0 calc(30.33% - 70px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 22px;
    position: relative
}

.hero_swiper .contents .key_high li::before {
    position: absolute;
    content: '';
    height: .5px;
    width: 45px;
    background: #fff;
    /* right:calc(100% + 15px); */
    top: 59%;
    right: -39px;
}

.hero_swiper .contents .key_high li:last-child:before {
    display: none;
}



.hero_swiper .contents .key_high li:nth-child(2):after {
    right: unset;
    left: calc(100% + 15px)
}

.hero_swiper .left_arrow img,
.hero_swiper .right_arrow img {
    filter: unset;
    width: 50px
}

.hero_swiper .swiper-button-prev {
    left: 40px
}

.hero_swiper .swiper-button-next {
    right: 40px
}

.hero_swiper .left_arrow .circle,
.hero_swiper .right_arrow .circle {
    border: 1px solid #fff;
    opacity: .4
}

.hero_swiper .left_arrow:hover img,
.hero_swiper .right_arrow:hover img,
.hero_swiper .left_arrow:hover .circle,
.hero_swiper .right_arrow:hover .circle {
    opacity: 1
}

header.navbar {
    padding: 10px 100px;
    box-shadow: 0 0 30px 0 rgba(25, 29, 27, 0.15)
}

header.navbar.fixed {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
}

header.navbar .navbar-brand {
    padding: 0;
    margin: 0
}

header.navbar .main_logo {
    max-width: 62%;
    transition: all .2s ease-in-out
}

header.navbar.fixed .main_logo {
    max-width: 62%;
}

header.navbar .navbar-toggler {
    padding: 0
}

header.navbar .navbar-toggler .bar,
header.navbar .navbar-toggler .bar:before,
header.navbar .navbar-toggler .bar:after {
    height: 1px;
    width: 30px;
    display: block;
    background: #000;
    position: relative
}

header.navbar .navbar-toggler .bar:before {
    position: absolute;
    content: '';
    position: absolute;
    right: 0;
    top: -8px;
    width: 100%
}

header.navbar .navbar-toggler .bar:after {
    position: absolute;
    content: '';
    position: absolute;
    right: 0;
    top: unset;
    bottom: -8px;
    width: 80%
}

header.navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 6px;
}

header.navbar .navbar-nav .nav-link {
    font-size: 16px;
    color: #000
}

.about_section {
    background-color: var(--bg_color)
}

.about_section .left_col {
    padding-top: 0;
    padding-bottom: 0
}

.about_section figure {
    position: relative;
    height: 100%;
    width: 100%
}

.about_section .overview_img {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about_section .left_col .des p {
    color: #191D1BCC;
    font-size: 17px
}

.about_section .left_col .bottom {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #3f766e33
}

.about_section .left_col .bottom h4 {
    color: #00776E;
    font-size: 20px
}

.about_section .left_col .bottom .btn {
    margin-top: 20px;
    padding: 5px 40px;
    height: 55px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px
}

.highlight_section {
    background-color: var(--bg_color)
}

.highlight_section .sec_heading {
    margin-bottom: 50px
}

.highlight_section .right_col {
    padding-top: 50px;
    padding-bottom: 50px
}

.highlight_section figure {
    position: relative;
    height: 100%;
    width: 100%
}

.highlight_section .highlight_img {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.highlight_section .highlight_points {
    padding-left: 40px;
    list-style-type: none
}

.highlight_section .highlight_points li {
    position: relative;
    margin-bottom: 15px;
    font-size: 18px;
    color: #191D1BCC
}

.highlight_section .highlight_points li:before {
    position: absolute;
    content: '';
    height: 15px;
    width: 15px;
    border: 1px solid #555;
    border-radius: 100%;
    left: -30px;
    top: 5px
}

.price_section .sec_heading {
    margin-bottom: 60px
}

.price_section .single {
    background: var(--bg_color);
    padding: 50px 30px;
    text-align: center;
    position: relative
}

.price_section .single.active:before {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    background: var(--mini_title);
    top: 0;
    left: 0
}

.price_section .single .title {
    font-size: 20px
}

.price_section .single .price {
    font-size: 40px;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 600
}

.price_section .single.active .price {
    color: var(--mini_title)
}

.price_section .single .price span {
    font-size: 14px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    font-weight: 400;
    margin-top: 5px
}

.price_section .single .bottom {
    border-top: 1px solid #3f766e33;
    margin-top: 30px;
    padding-top: 30px
}

.price_section .single .bottom ul {
    list-style-type: none
}

.price_section .single .bottom li {
    margin-bottom: 12px;
    font-size: 18px
}

.price_section .single .btn {
    width: 100%;
    margin-top: 20px;
    height: 55px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .5px
}

.amenity_section {
    overflow: hidden
}

.amenity_section .amenity_slider {
    height: calc(100% - 200px);
    position: absolute;
    width: calc(50vw - 50px);
    padding-right: 150px
}

.amenity_section .left_col {
    padding-top: 30px;
    padding-bottom: 30px
}

.amenity_section .amenity_slider .single {
    height: 100%;
    position: relative
}

.amenity_section .amenity_slider .single img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.amenity_section .amenity_slider .single .title {
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 15px 20px;
    background: rgb(255 255 255 / 80%);
    font-size: 18px
}

.amenity_section .amenity_slider_left .swiper_btns {
    display: flex;
    align-items: center
}

.amenity_section .swiper-button-next,
.amenity_section .swiper-button-prev {
    position: relative;
    left: unset;
    right: unset;
    margin-top: unset
}

.amenity_section .swiper-button-next {
    margin-left: 30px
}

.amenity_section .right_col {
    position: unset
}

.site_plan_section {
    background: var(--bg_color)
}

.site_plan_section .row {
    margin-top: 70px
}

.site_plan_section .single {
    position: relative;
    box-shadow: 2px 2px 5px #efefef
}

.site_plan_section .single .title {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    background: rgb(255 255 255 / 80%);
    font-weight: 600;
    text-align: center
}

.e_brochure_section .dark_btn {
    height: 55px;
    padding: 5px 40px;
    font-size: 18px
}

.e_brochure_section .right_col {
    display: flex;
    align-items: center
}

.location_advantage_section .container {
    position: relative;
    z-index: 1
}

.location_advantage_section .content_box {
    background: #f5f8fb;
    padding: 100px
}

.location_advantage_section .map_section {
    margin-top: -100px;
    position: relative
}

.location_advantage_section .map_link {
    display: flex
}

.location_advantage_section .map_section .map {
    height: 700px;
    width: 100%;
    object-fit: cover;
    border: 2px solid #000
}

.location_advantage_section .location_points {
    display: inline-flex;
    flex-wrap: wrap;
    margin: 20px -15px 0
}

.location_advantage_section .location_points li {
    max-width: 33.33%;
    flex: 0 0 33.33%;
    list-style-type: none;
    margin: 15px 0;
    padding: 0 15px
}

.location_advantage_section .location_points p {
    margin: 0;
    font-size: 18px
}

.location_advantage_section .location_points .point {
    border: 1px solid rgba(0, 119, 110, .2);
    padding: 20px
}

.location_advantage_section .location_points .distance {
    font-size: 34px;
    color: var(--mini_title);
    font-weight: 500;
    font-family: var(--libre_font)
}

.our_gallery_section .gallery_image_row {
    margin-top: 50px;
    display: block
}

.our_gallery_section .gallery_image_row .single_image {
    display: flex;
    color: #262626;
    text-decoration: none
}

.our_gallery_section .gallery_image_row .title {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    height: fit-content;
    margin: 0;
    margin-top: auto;
    margin-left: 30px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.our_gallery_section .single_col {
    margin-top: 50px;
    margin-bottom: 50px
}

.our_gallery_section .single_col:nth-child(2),
.our_gallery_section .single_col:nth-child(4),
.our_gallery_section .single_col:nth-child(6) {
    transform: translateY(50px)
}

.our_gallery_section .single_image .thumbnail {
    transition: all .3s ease-in-out
}

.our_gallery_section .single_image:hover .thumbnail {
    transform: scale(0.8)
}

.footer_section {
    padding-top: 100px;
    background: var(--primary)
}

.footer_section .footer_logo {
    max-width: 200px;
    margin-bottom: 0px;
    filter: invert(1);
}

.footer_section .left_col {
    display: flex;
    align-items: center
}

.footer_section .left_col p {
    color: #ffffffc2;
    text-align: justify
}

.footer_section .form {
    background: #fff;
    padding: 50px
}

.footer_section .form .form_title {
    margin-bottom: 20px;
    font-size: 30px
}

.footer_section .form .sub_text {
    margin: 0;
    margin-bottom: 25px
}

.footer_section .form label {
    font-size: 14px;
    letter-spacing: 0;
    color: rgba(21, 60, 54, 0.8)
}

.footer_section .form .form-control {
    border: none;
    border-bottom: 1px solid rgba(21, 60, 54, 0.1);
    padding: 5px 0 10px;
    border-radius: 0;
    color: #000;
    letter-spacing: .5px
}

.footer_section .form .form-control::placeholder {
    color: #000
}

.footer_section .form .dark_btn {
    width: 100%;
    height: 55px;
    font-size: 18px
}

.footer_section .copyright_row {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #fef9f536;
    padding-bottom: 40px
}

.footer_section .copyright_row p {
    display: block;
    text-align: center;
    margin-bottom: 3px
}

.footer_section .copyright_row a,
.footer_section .copyright_row p {
    color: #fff;
    font-size: 15px
}

.banner-form {
    width: 20%;
    text-align: start;
    bottom: 70px;
    right: 15px;
    z-index: 99;
    box-shadow: 0 0 30px 0 rgba(25, 29, 27, 0.15);
    border-radius: 12px;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out
}

.banner-form.active {
    bottom: 0;
    opacity: 1;
    visibility: visible
}

.banner-form.bottom {
    bottom: 0
}

.banner-form .close_outer {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -50px;
    right: 0;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 4px
}

.banner-form .close_outer .close {
    float: unset;
    width: 100%;
    height: 100%;
    position: relative
}

.banner-form .close:before,
.banner-form .close:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50%;
    background-color: #fff;
    transition: width .2s ease-out
}

.banner-form .close:before {
    transform: rotate(45deg);
    left: 7px;
    top: 7px;
    transform-origin: left
}

.banner-form .close:after {
    transform: rotate(-45deg);
    right: 7px;
    top: 7px;
    transform-origin: right
}

.banner-form .inner {
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.banner-form .inner:before,
.banner-form .inner:after {
    content: "";
    position: absolute;
    height: 2px;
    width: 50%;
    background-color: #fff;
    transition: width .2s ease-out
}

.banner-form .inner:before {
    transform: rotate(45deg);
    transform-origin: right;
    bottom: 6px;
    right: 8px
}

.banner-form .inner:after {
    transform: rotate(-45deg);
    transform-origin: left;
    bottom: 6px;
    left: 8px
}

.banner-form .label {
    opacity: 0;
    font-size: 10px;
    font-weight: 400;
    transition: all .2s ease-out
}

.banner-form .close_outer:focus .close:before,
.banner-form .close_outer:focus .close:after,
.banner-form .close_outer:hover .close:before,
.banner-form .close_outer:hover .close:after {
    width: 10px
}

.banner-form .close_outer:focus .close .inner:before,
.banner-form .close_outer:focus .close .inner:after,
.banner-form .close_outer:hover .close .inner:before,
.banner-form .close_outer:hover .close .inner:after {
    width: 10px
}

.banner-form .close_outer:focus .close .label,
.banner-form .close_outer:hover .close .label {
    opacity: 1
}

.banner-form .form {
    padding: 30px;
    background: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-bottom: 5px
}

.form-top {
    padding: 20px;
    color: #fff
}

.banner-form .form label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    color: #3f3f3f
}

.banner-form .form-top {
    background: #000;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 20px 20px 10px
}

.banner-form.bottom .form-top {
    padding: 15px 20px
}

.banner-form .form-top .form_title {
    font-size: 20px;
    color: #f1e599;
    text-align: center
}

.banner-form .form-top .sub_text {
    margin: 0;
    font-size: 14px;
    line-height: initial
}

.banner-form .form .form-control {
    border-radius: 10px;
    min-height: 46px;
    padding: 4px 15px;
    font-size: 16px;
    letter-spacing: .5px
}

.banner-form .form .form-control::placeholder {
    font-size: 16px
}

.banner-form .form .submit_btn {
    height: 44px;
    padding: 5px 30px;
    font-weight: 500;
    letter-spacing: .5px;
    width: 100%
}

.my-f-pop {
    position: absolute;
    right: 0;
    width: 20%;
    z-index: 99;
    bottom: 0;
    background: #fff;
    display: none
}

.my-f-pop.block {
    display: block
}

.brochure-btn {
    font-size: 16px !important;
    text-transform: uppercase;
    padding: 10px 40px !important
}

#on-form {
    animation: drop-in 1s ease 200ms backwards
}

.animate {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-fill-mode: both
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

.four {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.upward-icon {
    filter: invert(1);
    margin: 0 10px
}

.blink-hard {
    animation: blinker 1s step-end infinite
}

@keyframes blinker {
    50% {
        opacity: 0
    }
}

.pre-loader {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999991;
    background-color: #fff;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease
}

.pre-loader.hide {
    opacity: 0;
    visibility: hidden
}

.pre-loader .loader-inner {
    height: 100%;
    display: flex;
    padding: 25px;
    position: absolute;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.pre-loader .loader_txt {
    color: transparent;
    background: linear-gradient(to bottom, #000, #000 50%, #0d0000 50%);
    background-size: 100% 200%;
    background-position: 0 100%;
    -webkit-text-fill-color: transparent;
    transition: 1s linear
}

.pre-loader .loader_txt:hover {
    background-position: 0 200%
}

.pre-loader .loader_txt .logo {
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 46px
}

.pre-loader .loader_txt .sub_logo {
    font-size: 16px;
    text-transform: uppercase;
    margin: 0
}

.pre-loader .counter {
    margin: 15px 0 0
}

.modal {
    z-index: 99999
}

.modal-body {
    background-color: #fff;
    opacity: 1;
    align-items: center;
    text-align: center;
    padding: 30px
}

.modal-body img {
    width: 200px
}

.modal-body h2 {
    font-size: 26px;
    letter-spacing: 2px;
    padding-bottom: 0;
    margin-bottom: 15px
}

.modal-body h6 {
    font-size: 14px;
    padding-top: 0
}

.modal-body h4 {
    color: var(--primary);
    text-align: center;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px
}

.modal-body .form-control {
    border: .5px solid #ccc;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 0;
    padding: 25px;
    margin-bottom: 10px
}

.modal-body .form-control::placeholder {
    color: #222
}

.modal .close {
    color: #fff;
    opacity: 1;
    right: 15px;
    position: absolute;
    z-index: 9999999 !important;
    top: 15px;
    padding: 6px 10px;
    border-radius: 50px;
    padding-top: 3px;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc
}

.modal-body button {
    background: linear-gradient(-45deg, #e3b95c, #d0a649, #eaca6f, #c99c3e, #fcea9c);
    color: #000;
    font-size: 18px;
    width: 100%;
    border-radius: 0;
    padding: 8px 15px
}

.call-btn {
    color: #000;
    font-size: 20px;
    text-align: center
}

.call-btn:hover {
    color: #000;
    text-decoration: none
}

.call-btn-block {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding: 6px
}

.call-btn-block img {
    margin-right: 10px
}

.hero_section .bg_color1 {
    background: #000
}

.hero_section .bg_color2 {
    background: #453340
}

.hero_section .bg_color3 {
    background: #985B31
}

.hero_section {
    position: relative
}

.sticky-img {
    position: absolute;
    right: 20%;
    bottom: 18%;
    z-index: 9999;
    width: 100%;
    height: AUTO;
    max-width: 200PX
}

.offers {
    display: inline-block;
    font-size: 20px;
    margin: 5px 0;
    color: var(--colorBtn);
    padding: 10px 40px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 40px
}

.effetGradient,
.effetGradient:hover {
    text-shadow: 0 3px 6px var(--primary);
    background-color: var(--mini_title);
    background: linear-gradient(-45deg, var(--primary), var(--mini_title), var(--primary), var(--mini_title));
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    color: var(--colorBtn);
    border: none
}

@keyframes rocking {
    0% {
        transform: rotate(0deg)
    }

    25% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(2deg)
    }

    75% {
        transform: rotate(-2deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.dark_btn.rounded {
    margin-top: 0px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background: linear-gradient(-45deg, #e3b95c, #d0a649, #eaca6f, #c99c3e, #fcea9c);
    background-size: 400% 400%;
    animation: Gradient 3s ease infinite, rocking 0s ease infinite;
    animation-delay: 2s;
    padding: 12px 20px;
    color: #000 !important;
    letter-spacing: 1px;
    border-radius: 29px;
    display: inline-block;
}

@keyframes Gradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.modalConNu {
    animation: price-blink 1s infinite
}

@keyframes price-blink {
    50% {
        color: #e6ce76;
        filter: #e6ce76
    }
}

.golden-patch {
    position: unset;
    right: 4%;
    bottom: 37%;
    z-index: 99;
    width: 25%;
    margin-bottom: 5%
}

.navbar-collapse{
    margin-left: -176px;
}
.bottom .navbar-collapse{
    margin-left: -176px;
}

.main_heading img{
    width: 24%;
}

@media (max-width: 1500px) {
    .main_heading img {
        width: 35%
    }

    .hero_section {
        height: calc(100vh - 95px)
    }

    .hero_swiper .swiper-slide {
        padding: 40px 15vw
    }

    .hero_swiper .contents .main_heading {
        font-size: 46px
    }

    .hero_swiper .contents .location {
        margin-bottom: 15px
    }

    .hero_swiper .contents .typo {
        font-size: 20px
    }

    .offers {
        margin-bottom: 40px
    }

    .hero_swiper .contents .key_high {
        margin-bottom: 0
    }

    .hero_swiper .contents .key_high li {
        font-size: 13px
    }

    .sticky-img {
        position: absolute;
        right: 18%;
        bottom: 40%
    }

    header.navbar.fixed {
        padding: 5px 100px
    }

    header.navbar .main_logo {
        max-width: 150px
    }

    .location_advantage_section .map_section .map {
        height: 550px
    }

    .banner-form .form-top {
        padding: 20px
    }

    .banner-form .form-top .form_title {
        font-size: 18px
    }

    .banner-form .form {
        padding: 20px
    }

    .banner-form .form .form-control {
        min-height: 44px
    }

    .banner-form .form .form-control::placeholder {
        font-size: 15px
    }

    header.navbar.fixed {
        padding: 5px 56px
    }
}

@media (max-width: 1400px) {
    .main_heading img {
        width: 35%
    }

    .golden-patch {
        position: unset;
        right: 4%;
        bottom: 37%;
        z-index: 99;
        width: 25%;
        margin-bottom: 0;
        margin-top: 3%
    }

    .sec_heading .heading {
        font-size: 38px;
        line-height: 50px
    }

    .hero_section {
        height: calc(100vh - 90px)
    }

    .hero_swiper .swiper-slide {
        padding: 40px 20vw
    }

    .hero_swiper .contents .mini {
        font-size: 36px
    }

    .hero_swiper .contents .main_heading {
        font-size: 34px;
        margin-bottom: 15px
    }

    .hero_swiper .contents .location {
        font-size: 14px
    }

    .hero_swiper .contents .location img {
        margin-right: 2px;
        width: 30%
    }

    .hero_swiper .contents .typo {
        margin-bottom: 10px
    }

    .hero_swiper .contents .price {
        font-size: 30px;
        margin-bottom: 15px
    }

    .hero_swiper .swiper-slide .main_banner_contents {
        width: calc(100% - 50vw)
    }

    .hero_swiper .contents .key_high {
        padding: 0
    }

    .about_section .left_col {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .about_section .left_col .bottom h4 {
        font-size: 16px
    }

    .about_section .left_col .bottom .btn {
        padding: 5px 40px;
        height: 50px;
        font-size: 16px
    }

    .price_section .single .price {
        font-size: 32px
    }

    .price_section .single .btn {
        height: 50px;
        font-size: 16px
    }

    .amenity_section .amenity_slider .single .title {
        bottom: 10px;
        left: 10px;
        width: calc(100% - 20px);
        font-size: 18px
    }

    .location_advantage_section .content_box {
        padding: 70px
    }

    .location_advantage_section .location_points .distance {
        font-size: 24px
    }

    .location_advantage_section .map_section .map {
        height: 450px
    }

    .our_gallery_section .gallery_image_row .title {
        font-size: 20px
    }

    header.navbar .navbar-nav .nav-link {
        font-size: 16px;
        color: #000;
        padding: 4px 6px
    }

    header.navbar .main_logo {
        max-width: 50%;
    }

    .banner-form.active {
        bottom: -5px
    }

    .banner-form .form-top {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px
    }

    .banner-form .form {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px
    }

    .banner-form .form .form-group {
        margin-bottom: 10px
    }

    .banner-form .form .form-control {
        border-radius: 6px
    }

    .banner-form .form .submit_btn {
        font-weight: 400
    }

    .banner-form .form textarea.form-control {
        height: 60px
    }
}

@media (max-width: 1300px) {
    .main_heading img {
        width: 35%
    }

    .golden-patch {
        position: unset;
        right: 4%;
        bottom: 37%;
        z-index: 99;
        width: 25%;
        margin-bottom: 0;
        margin-top: 3%
    }

    header.navbar .navbar-nav .nav-link {
        padding: 2px
    }

    .amenity_section .amenity_slider .single .title {
        font-size: 16px
    }
}

.mobile-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    display: none
}

.mobile-section .btn {
    padding: 7px 10px;
    font-size: 12px;
    text-align: center;
    flex-grow: 1;
    color: #fff;
    position: relative
}

.mobile-section .btn:not(:last-child):before {
    position: absolute;
    content: '';
    height: 10px;
    width: 1px;
    background: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block
}

.checkbox-section {
    gap: 0 5px;
    margin-top: 10px
}

.checkbox-section input {
    height: 10px;
    width: 10px;
    position: relative;
    top: 3px
}

@media (max-width: 768px) {

    .footer_section .copyright_row a,
    .footer_section .copyright_row p {
        color: #fff;
        font-size: 12px;
    }

    .banner-form .form-top .form_title {
        font-size: 18px;
        text-align: center
    }

    .dark_btn.rounded {
        margin-top: 0;
        font-size: 15px
    }

    .golden-patch {
        position: unset;
        left: 5%;
        top: -31%;
        z-index: 99;
        width: 30%;
        margin-bottom: 5%
    }

    .swiper-wrapper {
        min-height: 608px
    }

    .hero_swiper .contents .location img {
        margin-right: 2px;
        width: 75%
    }
    .hero_swiper .contents .key_high li::before{
    content: unset;
    }

    .sticky-img {
        position: absolute;
        right: 0;
        bottom: 51%;
        max-width: 170PX
    }

    header.navbar .main_logo {
        max-width: 100px;
    }
    header.navbar.fixed .main_logo {
        max-width: 100px;
    }

    header.navbar.fixed {
        padding: 10px 15px;
    }
    .modal-body h2 {
        font-size: 20px
    }

    .site_plan_section .single {
        margin-top: 20px
    }

    .location_advantage_section .location_points {
        width: 100%
    }

    .mx_sm_-15 {
        margin-left: -15px;
        margin-right: -15px
    }

    .px_sm_15 {
        padding-left: 15px;
        padding-right: 15px
    }

    header.navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: #fff;
        padding: 10px 15px
    }

    header.navbar .navbar-nav {
        padding-top: 20px
    }

    header.navbar .navbar-nav .nav-link {
        padding: 6px 2px;
        font-size: 18px
    }

    .banner-form {
        position: relative;
        width: 100%;
        bottom: unset;
        right: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none
    }

    .banner-form .close_outer {
        display: none
    }

    .banner-form .form-top {
        border-top-left-radius: 0;
        border-top-right-radius: 0
    }

    .banner-form .form {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .hero_section {
        height: auto
    }

    .hero_swiper .swiper-slide {
        padding: 80px 0 0
    }

    .hero_swiper .swiper-slide .prev,
    .hero_swiper .swiper-slide .next {
        display: none
    }

    .hero_swiper .swiper-slide .thumbnail {
        position: unset;
        height: 240px;
        object-fit: cover
    }

    .hero_swiper .swiper-slide .main_banner_contents {
        width: 100%;
        padding: 20px;
        position: relative;
        height: auto;
        top: unset
    }

    .hero_swiper .swiper-slide .bg_color {
        opacity: .8
    }

    .hero_swiper .contents .main_heading {
        font-size: 20px;
        margin-top: 4px;
        line-height: 32px;
        margin-bottom: 5px
    }

    .hero_swiper .contents .location {
        font-size: 12px;
        margin-bottom: 4px
    }

    .hero_swiper .contents .typo {
        font-size: 18px;
        margin-bottom: 0
    }

    .hero_swiper .contents .price {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 10PX;
        margin-top: 10PX
    }

    .hero_swiper .contents .key_high {
        flex-direction: column
    }

    .hero_swiper .contents .key_high li {
        max-width: 100%;
        flex: 0 0 100%;
        font-size: 14px;
        margin: 4px 0
    }

    .hero_swiper .contents .key_high li:nth-child(2):before,
    .hero_swiper .contents .key_high li:nth-child(2):after {
        display: none
    }

    .hero_swiper .left_arrow,
    .hero_swiper .right_arrow {
        display: none
    }

    .hero_swiper .swiper-pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        top: -90px;
        position: absolute
    }

    .hero_swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #fff;
        margin: 0 7px !important
    }

    .hero_swiper .swiper-pagination-bullet-active {
        width: 15px;
        height: 15px
    }

    .my-f-pop {
        position: relative;
        width: 100%
    }

    .my-f-pop .form-top {
        color: #333;
        padding: 30px 20px 10px
    }

    .my-f-pop .form-top .sub_text {
        margin: 0
    }

    .my-f-pop .form {
        padding: 20px 20px 30px
    }

    .about_section .overview_img {
        position: unset;
        height: auto;
        object-fit: unset
    }

    .about_section .left_col .des p {
        font-size: 16px;
        text-align: justify
    }

    .sec_heading .sub_text {
        text-align: justify
    }

    section.section {
        padding: 20px 0
    }

    .highlight_section .highlight_img {
        position: unset;
        height: 100%;
        object-fit: unset
    }

    .highlight_section .highlight_points li {
        font-size: 16px
    }

    .sec_heading .heading {
        font-size: 30px
    }

    .about_section .left_col .bottom {
        margin-top: 30px;
        padding-top: 30px
    }

    .about_section .left_col .bottom .btn {
        padding: 5px 40px;
        height: 46px
    }

    .price_section .sec_heading {
        text-align: left
    }

    .price_section .single {
        margin-bottom: 20px
    }

    .sec_heading.center {
        text-align: left
    }

    .sec_heading .mini_title {
        margin-top: 20px
    }

    .amenity_section .amenity_slider {
        height: 100%;
        position: relative;
        width: calc(100vw - 30px);
        padding-right: 0
    }

    .amenity_section .amenity_slider .single .title {
        font-size: 12px
    }

    .location_advantage_section .content_box {
        padding: 16px
    }

    .location_advantage_section .location_points {
        display: inline-flex;
        flex-direction: column;
        margin-top: 0
    }

    .location_advantage_section .location_points li {
        max-width: 100%
    }

    .location_advantage_section .location_points .point {
        padding: 8px 30px
    }

    .our_gallery_section .single_col:nth-child(2),
    .our_gallery_section .single_col:nth-child(4),
    .our_gallery_section .single_col:nth-child(6) {
        transform: translateY(0px)
    }

    .our_gallery_section .single_col {
        margin-top: 20px;
        margin-bottom: 20px
    }

    .footer_section .form {
        padding: 20px
    }

    .sec_heading .heading {
        line-height: 40px
    }

    .about_section .left_col {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .footer_section {
        padding-top: 60px
    }

    .footer_section .footer_logo {
        max-width: 180px;
    }

    .footer_section .form .form_title {
        font-size: 22px
    }

    .offers {
        margin-bottom: 0;
        font-size: 16px;
        margin-top: 0;
        padding: 5px 10px
    }
}

@media (max-width: 575px) {
    .mobile-section {
        display: flex
    }
    .navbar-collapse {
        margin-left: unset;
    }
}

.floor-div {
    position: relative
}

.floor-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}