header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    left: 0;
    background: #074846;
}

.header-align {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 87px;
    position: relative;
}

.scroll-start .fixed-contact h6 {
    display: none;
    width: 0;
    padding: 0;
}

.scroll-start .fixed-contact {
    animation: btn_anim2 .5s ease;
}

.scroll-start header {
    border-bottom: 1px solid #FFFFFF54;
}

.scroll-start .header-align {
    height: 75px;
    transition: .3s;
}

@keyframes btn_anim2 {
    0% {
        right: -100px;
    }

    100% {
        right: 0px;
    }
}

.scroll-start .fixed-contact > div {
    padding: 12px 5px 12px 5px;
    min-width: auto;
}

.logo {
    align-items: center;
    display: flex;
    z-index: 9999;
}

    .logo img {
        max-width: 150px;
        height: 50px;
        object-fit: contain;
    }

.header-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-right: 25px;
    border-right: 1px solid #FFFFFF26;
    min-height: 50px;
}

.nav-items, .nav-items-dropdown {
    color: white;
    align-items: center;
    display: flex;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    height: fit-content;
    cursor: pointer;
    line-height: initial;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

    .nav-items:hover:before {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #D7A75B;
        opacity: .6;
        animation: tab_border .4s;
    }

@keyframes tab_border {
    0% {
        width: 5px;
        opacity: .2;
    }

    50% {
        width: 50%;
        opacity: .5;
    }

    100% {
        width: 100%;
        opacity: .6;
    }
}

.nav-items.active {
    color: #D7A75B;
}

.dropdown-menu.show {
    background-color: #c79f59;
    transform: translate3d(0px, 56px, 0px) !important;
    border-radius: 0;
}

.scroll-start .dropdown-menu.show {
    transform: translate3d(0px, 50px, 0px) !important;
}

.dropdown-menu .dropdown-item {
    color: #074846;
    font-weight: 600;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #ffffff;
}

.dropdown-arrow {
    transform: rotate(-90deg);
    margin-left: 10px;
    width: 12px;
    height: 12px;
    transition: .3s;
}

.nav-items-dropdown.show .dropdown-arrow {
    transform: rotate(90deg);
    transition: .3s;
}

.nav-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.button-site {
    background: #D7A75B;
    color: #074846;
    padding: 6px 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 100px;
    cursor: pointer;
    line-height: 24px;
    position: relative;
    overflow: hidden;
    z-index: 99;
    min-height: 34px;
}

.button-site2 {
    border: 1px solid white;
}

.button-site3 {
    background-color: #074846;
    color: white;
}

.button-site h6 {
    color: #074846;
    z-index: 9;
}

.button-site3 h6 {
    color: white;
}

.button-site img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    z-index: 9;
}

.button-site span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #c99542;
    height: 0%;
    top: 0;
    z-index: 1;
    transition: .3s;
}

.button-site3 span {
    background: #043d3b;
}

.button-site:hover span {
    animation: btn_anim .3s ease;
    height: 100%;
}

@keyframes btn_anim {
    0% {
        height: 0px;
    }

    100% {
        height: 100%;
    }
}


.button-site:hover:before {
    display: none;
}

.menu {
    width: 25px;
    height: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
    display: none;
}

    .menu span {
        height: 2px;
        width: 100%;
        background: white;
    }

        .menu span:nth-child(2) {
            width: 80%;
        }

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 1px solid #2C6362;
    padding-left: 15px;
    min-height: 30px;
}

    .search-box img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        cursor: pointer;
    }

    .search-box input {
        border: none;
        border-bottom: 1px solid #FFFFFF54;
        background-color: initial;
        outline: none;
        color: white;
        text-align: left;
        min-width: 200px;
    }

::placeholder {
    color: white;
}

.fixed-contact {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .fixed-contact > div {
        background-color: white;
        display: flex;
        padding: 12px 15px 12px 5px;
        cursor: pointer;
        justify-content: flex-end;
        align-items: center;
        height: 42px;
        box-shadow: -2px 2px 5px 2px #57575747;
        min-width: 200px;
    }

        .fixed-contact > div:hover {
            transform: scale(1.02);
            transition: .3s;
        }

    .fixed-contact h6 {
        color: white;
        padding: 0 15px;
        border-right: 1px solid #D0DDDC;
        font-size: 14px;
        height: 24px;
        align-items: center;
        display: flex;
    }

    .fixed-contact img {
        margin: 0 15px;
    }

.text-site-primary {
    color: #D7A75B !important;
}

.text-site-info {
    color: #074846 !important;
}

.header-2 {
    flex-direction: row-reverse;
}

    .header-2 .header-right {
        flex-direction: row-reverse;
    }

    .header-2 .nav {
        padding-left: 25px;
        border-left: 1px solid #FFFFFF26;
        border-right: none;
    }

    .header-2 .nav-buttons {
        flex-direction: row-reverse;
    }

    .header-2 .search-box {
        border-left: none;
        border-right: 1px solid #2C6362;
        padding-right: 15px;
    }
/* home started */
.site-body {
    padding-top: 87px;
}

.home .carousel-inner2 {
    position: relative;
}
/* .home .carousel-inner img{
    height: calc(100vh - 75px);
    object-fit: cover;
} */
/* .home .carousel-inner2:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000000A3;
    z-index: 9;
} */
@media (min-width: 521px) {


    .mobile-only2 {
        display: none !important;
    }
}

@media (max-width: 520px) {
    .search-box:hover {
        position: relative !important;
    }

    .desktop-only2 {
        display: none !important;
    }
}


@media (min-width: 768px) {


    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 767px) {


    .modal-window > div {
        width: 95% !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.home .carousel-caption {
    position: absolute;
    top: 40%;
    right: initial;
    bottom: initial;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    z-index: 99;
    width: 80%;
}

.carousel-indicators {
    z-index: 99;
}

.home .carousel-caption h5 {
    color: white;
    font-size: 40px;
    font-weight: 800;
}

.home .carousel-caption p {
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 35px;
}

.home .carousel-indicators {
    bottom: 10%;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    padding: 0;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 50%;
    background-color: #CA9933;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .3;
}

.carousel-indicators .active {
    opacity: 1;
}

.icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


/* about start */
.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #074846;
    padding: 70px 150px;
    justify-content: center;
    height: 100%;
    text-align: left;
}

.services .about-right {
    background: rgba(208, 221, 220, 1);
}

    .services .about-right h4:before {
        background-color: rgba(7, 72, 70, 1);
    }

.about-right h4 {
    padding-bottom: 16px;
    min-width: 180px;
    align-self: start;
    font-size: 38px;
    position: relative;
}
/* .about-right h4:before{
    content: "";
    position: absolute;
    left: 3px;
    bottom: 0px;
    height: 2px;
    width: 200px;
    background-color: #D7A75B;
} */
.about-right2 h4:before {
    background-color: rgba(7, 72, 70, 1);
}

.about-right .button-site {
    width: fit-content;
}

.about-right p {
    color: white;
    font-size: 16px;
    line-height: 32px;
}

/* feature start */
.features {
    background: #D7A75B;
    padding: 50px 0;
    text-align: center;
}

    .features img {
        width: 70px;
        height: 70px;
    }
/* video sec start */
.video {
    width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: cover;
}
/* .video-sec{
    background: url(../images/shape1.png);
    padding: 30px;
} */

/* properties start */
.properties {
    padding: 30px;
    background-color: #fff;
}

    .properties h4 {
        align-self: end;
        font-size: 38px;
    }

.carousel2-control {
    display: flex;
    gap: 20px;
    margin-top: -40px;
}

    .carousel2-control a {
        position: relative;
        opacity: 1;
        width: 30px;
    }

.property-card {
    padding: 10px;
    background-color: #D7A75B;
}

.property-card-top {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

    .property-card-top h4 {
        color: white;
        background-color: #074846;
        padding: 10px 15px;
        font-size: 12px;
        position: absolute;
        left: 0;
        top: 30px;
    }

.property-card-head {
    background: #00000066;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: left;
}

.property-card-top img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.property-card-head h5 {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

.property-card h6 {
    color: white;
    font-size: 12px;
}

.property-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    justify-content: left;
}

.property-features {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 110px;
    justify-content: left;
}

    .property-features img {
        width: 20px;
        height: 20px;
    }

.property-buttons {
    display: flex;
    justify-content: left;
    gap: 15px;
    border-top: 1px solid #FFFFFF54;
    padding-top: 20px;
    margin-top: 20px;
}

.properties .carousel-indicators {
    bottom: -100px;
}

.property-card:hover .property-card-top img {
    transform: scale(1.2) rotate(2deg);
    transition: .3s;
}

.properties .slick-slide {
    padding: 10px;
}

.slick-dots {
    text-align: center;
    margin: 20px 0 10px 0;
    padding: 0;
}

    .slick-dots li {
        display: inline-block;
        margin-left: 4px;
        margin-right: 4px;
    }

        .slick-dots li.slick-active button {
            background-color: #CA9933;
        }

        .slick-dots li button {
            font: 0/0 a;
            text-shadow: none;
            color: transparent;
            background-color: #D0DDDC;
            border: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }

        .slick-dots li :hover {
            background-color: black;
        }

.properties-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.slider-arrows {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .slider-arrows img {
        cursor: pointer;
        width: 20px;
        height: 20px;
    }

/* features2 start */
.features2 {
    background: #074846;
    padding: 50px 0px;
    text-align: center;
}

    .features2 h4 {
        padding-bottom: 15px;
        font-size: 38px;
    }

    .features2 h5 {
        font-size: 28px;
    }

.features-column {
    padding: 25px 15px;
}

    .features-column:not(:last-child) {
        border-right: 1px solid #FFFFFF24;
    }

/* vision start */
.vision-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #fff;
    padding: 70px 150px 70px 100px;
    justify-content: center;
    position: relative;
    text-align: left;
}

    .vision-right:before {
        content: "";
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        height: 270px;
        background: url(../images/shape2-en.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .vision-right h4 {
        font-weight: 700;
        padding-bottom: 15px;
        align-self: end;
        font-size: 28px;
    }

    .vision-right .button-site {
        width: fit-content;
        align-self: flex-end;
    }

    .vision-right p {
        color: #1E1E1E;
        font-size: 14px;
        line-height: 28px;
    }
/* contact start */
.contact-banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    z-index: 99;
    padding-left: 35px;
    align-items: start;
}

.contact {
    position: relative;
    padding: 120px 70px;
    min-height: 60vh;
    display: flex;
    justify-content: flex-end;
}

.contact2 {
    position: relative;
    padding: 120px 70px;
    min-height: 60vh;
    display: flex;
    justify-content: flex-end;
}

.contact:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000C7;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.contact-right h4 {
    align-self: start;
    font-size: 28px;
}

.contact-right .button-site {
    width: fit-content;
    align-self: start;
}

.contact-left {
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid #FFFFFF3B;
    padding-right: 35px;
    align-items: start;
}

.contact2 .contact-left {
    border-right: none;
}

.contact-right p {
    color: #1E1E1E;
    font-size: 14px;
    line-height: 28px;
    text-align: left;
}

.contact-left input {
    border: 1px solid #FFFFFF42;
    background: #4040404d;
    border-radius: 4px;
    text-align: left;
    padding: 5px 15px;
    outline: none;
    color: white;
    max-width: 400px;
    width: 100%;
}

.contact2 .contact-right {
    gap: 10px;
}

.text-left {
    text-align: left;
}

.contact2 .contact-right input {
    border: 1px solid #fff;
    background: #fff;
    border-radius: 0px;
    text-align: left;
    padding: 7px 15px;
    outline: none;
    color: #000;
    max-width: 400px;
    width: 100%;
}

.contact2 ::placeholder {
    color: rgba(171, 171, 171, 1);
}

.contact2 .row {
    margin: 0 auto;
    max-width: 1000px;
}
/* clients start */
.clients img {
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
}

.clients {
    background-color: #fff;
    padding: 70px 0;
}

    .clients h4 {
        padding-bottom: 15px;
        font-size: 38px;
        text-align: center;
    }

.client-row {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
}

.client-column {
    width: 20%;
    padding: 25px 15px;
}

    .client-column img {
        width: 100%;
        max-width: 170px;
    }
/* footer start */
.footer {
    background-color: #074846;
    padding: 20px 0;
}

.first-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #FFFFFF30;
    justify-content: center;
    padding: 10px 20px 30px 20px;
}

    .first-footer img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        cursor: pointer;
        padding: 0 5px;
    }

        .first-footer img:hover {
            -webkit-animation-name: jello;
            animation: jello 2s linear;
            -webkit-transform-origin: center;
            transform-origin: center;
        }


@keyframes jello {
    0%,11.1%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}




.footer h5 {
    padding-bottom: 15px;
}

.footer-column {
    padding: 30px;
}

.second-footer .nav2 {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-number {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
}

.second-footer .contact-number a {
    color: white !important;
}

.footer h6 {
    color: white;
    line-height: 26px;
    font-size: 13px;
    font-weight: 300;
}

.logo-footer-column {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.logo-footer img {
    max-width: 150px;
    height: 90px;
    object-fit: contain;
}

.logo-footer {
    border-right: 1px solid #FFFFFF30;
    /* margin-right: 5px; */
    padding-right: 17px;
}

.footer-column:not(:last-child) {
    border-right: 1px solid #FFFFFF24;
}

.third-footer {
    border-top: 1px solid #FFFFFF30;
    padding-top: 20px;
    text-align: center;
}

.second-footer {
    justify-content: center;
    text-align: left;
}
/* product-list start */
.product-list {
    padding: 70px 0;
    background-color: white;
}

.product-list-row {
    padding: 50px 0;
}

.property-list-card {
    overflow: hidden;
}

.property-list-card-top {
    position: relative;
    overflow: hidden;
}

    .property-list-card-top .button-site {
        position: absolute;
        top: 15px;
        left: 15px;
    }

        .property-list-card-top .button-site h6 {
            color: white;
        }

.property-list-card-bottom {
    background: #074846;
    padding: 20px;
    text-align: left;
}

.property-list-card-top img {
    aspect-ratio: 1/.9;
    object-fit: cover;
    width: 100%;
    transition: .3s;
}

.property-list-card:hover .property-list-card-top img {
    transform: scale(1.2) rotate(2deg);
    transition: .3s;
}
/* second page start */
.banner-shape {
    background-image: url(../images/banner-shape.png);
    height: 160px;
    width: 100%;
    background-size: auto;
    background-repeat-y: no-repeat;
}

.page_2 .about .row {
    flex-direction: row;
}

.valuable-set h5 {
    position: relative;
}

    .valuable-set h5:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0px;
        height: 2px;
        width: 30px;
        background-color: #D7A75B;
    }
/* services starts */
.services-start {
    padding: 70px;
}

.services-sec {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 30px;
}

.services-sec-child {
    width: 33.3%;
    text-align: left;
    padding: 0 10px;
    text-align: center;
}

    .services-sec-child img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

.services .about-right h4:before {
    width: 80px;
}

.services:nth-child(odd) .row {
    flex-direction: row-reverse;
}

/* product details start */
.gallery {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}




    .gallery-wrapper > div {
        width: 25%;
        padding: 5px;
        position: relative;
        cursor: pointer;
        overflow: hidden;
    }

/* .gallery-wrapper > div:hover:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 72, 70, 0.5);
    z-index: 9;
  } */

/* .gallery-wrapper > div:hover:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background:  url(..//images/zoom.png);
    background-repeat: no-repeat;
    z-index: 999;
  } */
.img-prev img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    z-index: 99;
}

.gallery-wrapper > div > img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    box-sizing: border-box;
    aspect-ratio: 1/1;
    transition: .3s;
    background-color: rgba(7, 72, 70, 0.5);
}

.gallery-wrapper div:hover > img.property {
    transform: rotate(10deg) scale(1.2);
    transition: .3s;
    z-index: 999;
    filter: brightness(0.5);
}


.image-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border: none;
    border-radius: 0px;
    object-fit: contain;
    background-color: initial;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.prev-btn {
    position: absolute;
    left: 0;
    z-index: 999999;
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    cursor: pointer;
    padding: 15px;
}

.next-btn {
    position: absolute;
    right: 0;
    z-index: 999999;
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    cursor: pointer;
    padding: 15px;
}

    .next-btn img, .prev-btn img {
        width: 30px;
        height: 30px;
    }

    .next-btn img {
        transform: rotate(-180deg);
    }

.product-gallery {
    padding: 60px 0;
}

.property-details {
    padding-bottom: 30px;
}

.property-details-collapse {
    padding-bottom: 30px;
}

.property-details-row {
    background-color: rgba(247, 247, 247, 1);
    border-radius: 10px;
    padding: 50px;
}

.details-col {
    background-color: rgba(180, 180, 180, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 5px 25px;
}

    .details-col h6 {
        color: white;
    }

    .details-col:nth-child(even) {
        background-color: #fff;
    }

        .details-col:nth-child(even) h6 {
            color: rgba(130, 130, 130, 1);
        }

.property-details-row h5 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 1px solid rgba(133, 133, 133, 0.5);
    padding-bottom: 25px;
    margin-bottom: 25px;
    text-align: left;
}

.details-col2 {
    background-color: rgba(242, 242, 242, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 5px 25px;
}

.property-collapse {
    background-color: rgba(217, 217, 217, 1);
    padding: 10px;
}

.collapse-arrow {
    width: 14px;
    height: 14px;
}

.accordion-item:not(:last-child) {
    margin-bottom: 10px;
}

.accordion-button {
    padding: 10px 25px;
    color: rgba(0, 0, 0, 1);
    flex-direction: unset;
    background-color: rgba(242, 242, 242, 1);
    border: none;
}

    .accordion-button:not(.collapsed) {
        background-color: rgba(242, 242, 242, 1);
        /* border: none!important; */
        box-shadow: none;
    }

.accordion-item:last-of-type .accordion-collapse {
    background-color: rgba(242, 242, 242, 1);
}

.accordion-collapse {
    background-color: rgba(242, 242, 242, 1);
    text-align: left;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: inherit;
    margin-left: auto;
    content: "";
    background-image: url(../images/up-arrow.png);
    transition: transform .3s ease-in-out;
    transform: rotate(-180deg);
    background-position: center;
    opacity: .8;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/up-arrow.png);
    transform: rotate(0deg);
}

.accordion-button h6 {
    text-align: left;
}

@media(max-width: 1600px) {
    .about-right {
        padding: 70px 110px;
    }

    .vision-right {
        padding: 70px 110px 70px 100px;
    }
}

@media(max-width: 1400px) {
    .nav {
        gap: 12px !important;
    }
}

@media(max-width: 1200px) {

    .search-box input {
        display: none;
    }

    .search-box:hover input {
        display: block;
    }

    .search-box:hover {
        position: absolute;
        width: 100%;
        top: 0px;
        background: #074846;
        left: 0;
        height: 75px;
        z-index: 999999;
    }

    .about-right {
        padding: 70px 50px;
    }

    .vision-right {
        padding: 70px 50px 70px 100px;
    }
}

@media(max-width: 990px) {
    .dropdown-menu {
        position: relative !important;
    }

    .nav-items-dropdown {
        justify-content: center;
    }

    .scroll-start .dropdown-menu.show {
        transform: translate3d(0px, 10px, 0px) !important;
    }

    .dropdown-menu.show {
        transform: translate3d(0px, 10px, 0px) !important;
        background-color: initial;
        border-bottom: 1px solid #FFFFFF54;
    }

    .dropdown-menu .dropdown-item {
        color: #fff;
        justify-content: center;
    }

    .header-right {
        gap: 40px;
        padding-right: 30px;
        margin-right: 50px;
    }

    .logo img {
        height: 50px;
    }

    .menu {
        display: flex;
        z-index: 9999;
        position: absolute;
        right: 40px;
    }

    .header-2 .header-left {
        padding-right: 50px;
    }

    .header-right .nav {
        flex-direction: column;
        height: 100vh;
        background: #074846;
        width: 100vw;
        position: fixed;
        top: 0;
        right: -150vw;
        justify-content: flex-start;
        transition: .3s;
        padding-top: 120px;
        padding-bottom: 120px;
        width: 100%;
        padding-right: 0;
        border: none;
    }

    .header-align.open .nav {
        right: 0;
        flex-direction: column;
        justify-content: flex-start;
    }

    .nav {
        flex-direction: column;
    }

    .open .menu span:nth-child(2) {
        display: none;
    }

    .open .menu span:nth-child(1) {
        transform: translate(0%, 10px) rotate(45deg);
        transition: .3s;
    }

    .open .menu span:nth-child(3) {
        transform: translate(0%, -6px) rotate(-45deg);
        transition: .3s;
    }

    .features2 h5 {
        font-size: 20px;
    }

    .vision-right {
        padding: 40px 40px 40px 80px;
    }

    .footer-column {
        border-right: none !important;
    }

        .footer-column:not(:last-child) {
            border-bottom: 1px solid #FFFFFF24;
        }

        .footer-column:first-child {
            border-right: 1px solid #FFFFFF24 !important;
        }
}

@media(max-width: 768px) {
    .fixed-contact > div {
        min-width: 0px;
    }

    .desktop-only {
        display: none !important;
    }

    .menu {
        right: 20px;
    }

    .home .carousel-caption h5 {
        font-size: 34px;
        line-height: 48px;
    }

    .home .carousel-caption p {
        font-size: 16px;
    }

    .header-align {
    }

    .header-right {
        margin-right: 30px;
    }

    .about-right {
        padding: 50px 40px;
    }

    .features {
        padding: 40px 0;
    }

    .features-column {
        border: 1px solid #FFFFFF24;
    }

    .contact-left {
        padding-right: 15px;
        border-right: none;
        border-top: 1px solid #FFFFFF3B;
        padding-top: 35px;
    }

    .contact-right {
        padding-left: 15px;
    }

    .contact {
        padding: 80px 40px;
    }

    .contact2 {
        padding: 80px 40px;
    }

    .clients {
        padding: 70px 0px;
    }

    .client-column {
        width: 33.33%;
    }

    .properties {
        padding: 20px;
    }

    .contact2 .row {
        flex-direction: column-reverse;
    }

    .banner-shape {
        height: 100px;
    }

    .valuable-row {
        flex-direction: column-reverse;
    }

    .services-start {
        padding: 70px 30px;
    }

    .services .row {
        flex-direction: row-reverse;
    }

    .gallery-wrapper > div {
        width: 33.33%;
    }

    .property-details-row {
        padding: 30px;
    }
}

@media(max-width: 580px) {
    .clear-cookie {
        width: 100%;
        margin-top: 5px;
        border-radius: 5px;
    }

    .ps-categogy__wrapper {
        padding: 8px 6px !important;
        display: flow !important;
    }

    .ps-categogy__sort {
        margin-left: 0px;
        margin-top: 5px;
    }

    .vision-right:before {
        display: none;
    }

    .footer-column:first-child {
        border-right: none !important;
    }

    .property-details-row {
        margin: 0px;
    }
}

@media(max-width: 520px) {

    .header-right {
        justify-content: space-between;
        gap: 25px;
        width: 100%;
    }

    .header-left {
        display: none;
    }

    .header-align.open .header-left {
        position: fixed;
        bottom: 0px;
        left: 0;
        width: 100%;
        display: block;
        z-index: 9999;
        animation: left_anim .3s ease;
    }

    @keyframes left_anim {
        0% {
            bottom: -100px;
        }

        100% {
            bottom: 0px;
        }
    }

    .nav-buttons {
        width: 100%;
        padding: 20px;
        justify-content: flex-start;
    }

    .about-right {
        padding: 50px 20px;
    }

    .features {
        padding: 80px 10px;
    }

    .features2 {
        padding: 50px 20px;
    }

    .vision-right {
        padding: 50px 20px 50px 80px;
    }

    .contact {
        padding: 80px 20px;
    }

    .contact2 {
        padding: 80px 20px;
    }

    .clients {
        padding: 70px 10px;
    }

    .client-column {
        width: 50%;
    }

    .footer h6 {
        font-size: 12px;
    }

    .fixed-contact {
        top: auto;
        transform: initial;
        bottom: 70px;
    }

    .properties {
        padding: 20px;
    }

        .properties .carousel-indicators {
            bottom: -80px;
        }

    .footer-column {
        padding: 20px;
    }

    .footer {
        padding: 20px;
    }

    .services-start {
        padding: 70px 30px;
    }

    .services-sec-child h6 {
        font-size: 12px;
    }

    .services-sec-child {
        padding: 0 5px;
    }

    .product-list {
        padding: 30px 0;
    }

    .product-list-row {
        padding: 30px 0;
    }

    .gallery {
        display: none;
    }

    .gallery-wrapper > div {
        width: 100%;
        padding: 5px;
    }

    .property-details-row {
        padding: 30px;
    }

    .properties h4 {
        font-size: 28px;
    }

    .modal-container {
        padding: 20px;
    }

    .prev-btn, .next-btn {
        padding: 10px;
    }

        .next-btn img, .prev-btn img {
            width: 20px;
            height: 20px;
        }
}


@media (max-width: 440px) {
    .property-details-row {
        padding: 30px 15px;
    }

    .properties-details .container-fluid {
        padding: 0;
    }
}

.mb_30 {
    margin-bottom: 30px;
}

.properties-details .slick-dots li button {
    background-color: #0748464f;
}


.properties-details .slick-dots li.slick-active button {
    background-color: #CA9933;
}

/* contact  */
.pad-20 {
    padding: 20px;
}

.widget-title {
    max-width: 270px;
    margin-bottom: 40px;
}

    .widget-title h3 {
        position: relative;
        padding-bottom: 18px;
        text-transform: capitalize;
        color: var(--block-color-three);
    }

        .widget-title h3:before {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            content: '';
            background-color: #4D4D4D;
        }

        .widget-title h3:after {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 45px;
            height: 2px;
            content: '';
            background: linear-gradient(270deg, #d7a75b -22.92%, #d7a75b 56.63%);
        }

.contact-info-two li i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 39px;
    border-radius: 50%;
    margin-right: 17px;
    text-align: center;
    color: #fff;
    display: inline-block;
}

.contact-info-two li {
    position: relative;
    margin-bottom: 24px;
    display: block;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    color: var(--white-color);
}

.contact-info-two {
    list-style: none;
    padding-left: 0 !important;
}

    .contact-info-two li i {
        background-color: #1b1b1b;
    }

    .contact-info-two li a {
        display: inline-flex;
        align-items: center;
        vertical-align: middle;
        justify-content: center;
        color: #272727;
        font-size: 16px;
    }

.contact-page .contact-info-two li a {
    color: #000000;
}

.contact-sec form {
    max-width: 600px;
    text-align: center;
}

    .contact-sec form input, form textarea {
        border: 0;
        outline: 0;
        padding: 1em;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        display: block;
        width: 100%;
        margin-top: 1em;
        font-family: 'Merriweather', sans-serif;
        -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
        resize: none;
    }

.btn6 {
    border: 0;
    outline: 0;
    padding: 1em;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    display: block;
    width: 100%;
    margin-top: 1em;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    resize: none;
}

.contact-sec form input:focus, form textarea:focus {
    -moz-box-shadow: 0 0px 2px #e74c3c !important;
    -webkit-box-shadow: 0 0px 2px #e74c3c !important;
    box-shadow: 0 0px 2px #e74c3c !important;
}

.contact-sec form #input-submit {
    color: white;
    background: #d7a75b;
    cursor: pointer;
}

    .contact-sec form #input-submit:hover {
        -moz-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
        -webkit-box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
        box-shadow: 0 1px 1px 1px rgba(170, 170, 170, 0.6);
    }

.contact-sec form textarea {
    height: 126px;
}

.contact-sec {
    text-align: left;
    padding: 100px 0px 100px 0px;
}

.half {
    float: left;
    width: 48%;
    margin-bottom: 1em;
}

.right {
    width: 50%;
}

.left {
    margin-right: 2%;
}

@media (max-width: 480px) {
    .half {
        width: 100%;
        float: none;
        margin-bottom: 0;
    }
}
/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.cf:after {
    clear: both;
}

.half ::placeholder {
    color: #bdbdbd;
    opacity: 1; /* Firefox */
}

.half ::-ms-input-placeholder { /* Edge 12 -18 */
    color: #bdbdbd;
}

.slick-slide img.property {
    height: 100%;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    padding: 8px;
}

.product-gallery-head {
    display: none;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.product-gallery .slick-dots li button {
    background-color: #0748464f;
}

.product-gallery .slick-dots li.slick-active button {
    background-color: #CA9933;
}

@media (max-width: 440px) {
    .product-gallery-head {
        display: flex;
    }
}


/* blog  */


.blog-grid {
    border: 1px solid #f1f1f1;
    border-radius: 6px;
    padding: 20px;
}

    .blog-grid .thumbnail {
        margin-bottom: 25px;
        overflow: hidden;
        border-radius: 6px;
        position: relative;
    }

.blog-date {
    margin-top: 5px;
    font-style: italic;
}

.content-blog .thumbnail {
    margin-bottom: 10px;
    height: 210px;
}

    .content-blog .thumbnail a {
        display: block;
        border-radius: 6px;
        overflow: hidden;
    }

.blog-grid .content .title {
    margin-bottom: 20px;
}

.content-blog .content .title {
    font-weight: 500;
    line-height: 1.3;
}

    .content-blog .content .title a {
        transition: 0.3s;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

a.axil-btn, button.axil-btn {
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
    display: inline-block;
    padding: 16px 38px;
    position: relative;
    transition: all .3s ease-in-out;
    z-index: 1;
}

.blog-grid .content .axil-btn {
    padding: 0;
    align-items: center;
    color: var(--color-heading);
}

.content-blog .content .read-more-btn .axil-btn {
    display: inline-flex;
}

.blog-grid:hover .thumbnail img {
    transform: scale(1.1);
}

.content-blog .thumbnail a img {
    width: 100%;
    border-radius: 6px;
}

.blog-grid .thumbnail img {
    transition: .5s;
}

.post-pagination {
    margin-top: 80px;
    width: 100%;
    margin-bottom: 30px;
}

    .post-pagination nav.pagination {
        display: block;
    }

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.post-pagination nav.pagination ul {
    position: relative;
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px;
    padding: 0;
}

    .post-pagination nav.pagination ul li {
        margin: 3px;
    }

        .post-pagination nav.pagination ul li span.current {
            background: #074846;
            color: #d7a75b;
            border-color: #292929;
        }

        .post-pagination nav.pagination ul li span {
            line-height: 42px;
            min-width: 42px;
            text-align: center;
            color: #2a2a32;
            transition: all .5s;
            display: block;
            padding: 0 15px;
            transition: all .5s;
            border: 1px solid #e2e4e7;
            border-radius: 6px;
        }

    .post-pagination nav.pagination ul li {
        margin: 3px;
    }

        .post-pagination nav.pagination ul li a:hover {
            background: #074846;
            color: #d7a75b !important
        }

.next:hover .next-icon {
    color: #d7a75b
}

.next-icon {
    color: #074846
}

.post-pagination nav.pagination ul li a {
    line-height: 42px;
    min-width: 42px;
    text-align: center;
    color: #2a2a32;
    transition: all .5s;
    display: block;
    padding: 0 15px;
    transition: all .5s;
    border: 1px solid #e4e7ea;
    border-radius: 6px;
}


.axil-sidebar-area .axil-single-widget:first-child {
    margin-top: 0 !important;
}

.axil-single-widget {
    border: 1px solid #f3f3f3;
    border-radius: 6px;
    padding: 30px;
}

    .axil-single-widget .widget-title {
        font-weight: 500;
        margin-bottom: 30px;
        color: #27272f;
    }

.content-blog.post-list-view {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    padding-bottom: 20px;
}

.mb--20 {
    margin-bottom: 20px;
}


.content-blog.post-list-view .thumbnail a img {
    width: 100%;
    border-radius: 6px;
    transition: .5s;
    object-fit: contain;
}

.content-blog.post-list-view .thumbnail {
    width: 120px;
    margin-right: 20px;
    min-width: 120px;
    overflow: hidden;
    margin-bottom: 0;
}

    .content-blog.post-list-view .thumbnail a {
        border-radius: 6px;
        overflow: hidden;
    }

.content-blog.post-list-view .content {
    flex: 1;
}

    .content-blog.post-list-view .content .title {
        font-size: 17px;
        margin-bottom: 10px;
    }

.content-blog .content .title {
    font-weight: 500;
    line-height: 1.3;
}


.content-blog.post-list-view .content .axil-post-meta {
    margin-bottom: 0;
}

.axil-post-meta {
    display: flex;
    margin-bottom: 20px;
}

.post-meta-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    margin: 0 -15px;
}

    .post-meta-list li {
        color: var(--color-body);
        font-size: 14px;
        padding: 0 15px;
        position: relative;
        margin-top: 0;
        margin-bottom: 0;
    }

.content-blog.post-list-view:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.content .title a:hover {
    color: #000000;
}

.ps-categogy__wrapper {
    background-color: #f0f2f5;
    border-radius: 5px;
    padding: 13px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ps-categogy__sort {
    background-color: white;
    margin-left: 5px;
}

.ps-categogy__onsale {
    color: #33312e;
    font-size: 14px;
    padding: 14px 0;
}

.ps-categogy__wrapper span {
    margin-right: 5px;
}

.ps-categogy__wrapper .form-select {
    border: none;
    background-color: transparent;
    font-weight: bold;
    color: #33312e;
}

form .fa-sort {
    position: absolute;
    right: 10px;
    top: 17px;
    color: #999;
}

form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

form label {
    position: absolute;
    left: 8px;
    top: 12px;
    width: 60%;
    color: #999;
    font-size: 16px;
    display: inline-block;
    padding: 4px 10px;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0);
    -moz-transition: color 0.3s, top 0.3s, background-color 0.8s;
    -o-transition: color 0.3s, top 0.3s, background-color 0.8s;
    -webkit-transition: color 0.3s, top 0.3s, background-color 0.8s;
    transition: color 0.3s, top 0.3s, background-color 0.8s;
    background-color: white;
}

    form label.active {
        top: -11px;
        color: #555;
        background-color: white;
        width: auto;
    }

.clear-cookie {
    transition-duration: 0.4s;
    background: black;
    border: none;
    color: white;
    display: block;
    font-size: 16px;
    margin-left: 5px;
    border-radius: 30px;
    cursor: pointer;
}

.widget-title2 {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 40px;
}

    .widget-title2 h3:before {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        content: '';
        background-color: #4D4D4D;
    }

    .widget-title2 h3:after {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 45px;
        height: 2px;
        content: '';
        background: linear-gradient(270deg, #d7a75b -22.92%, #d7a75b 56.63%);
    }

    .widget-title2 h3 {
        position: relative;
        padding-bottom: 18px;
        text-transform: capitalize;
        color: var(--block-color-three);
    }



/* modal  */
.modal-window {
    position: fixed;
    background-color: rgb(0 0 0 / 25%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

    .modal-window:target {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .modal-window > div {
        width: 60%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 2em;
        background: white;
    }

    .modal-window header {
        font-weight: bold;
    }

    .modal-window h1 {
        font-size: 150%;
        margin: 0 0 15px;
    }

.modal-close {
    color: #5c5c5c;
    line-height: 50px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}

    .modal-close:hover {
        color: black;
    }




.modal-window > div {
    border-radius: 1rem;
}



.logo {
    max-width: 150px;
    display: block;
}

small {
    color: lightgray;
}

.btn {
    background-color: white;
    padding: 1em 1.5em;
    border-radius: 0.5rem;
    text-decoration: none;
}

    .btn i {
        padding-right: 0.3em;
    }

.search-box2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 15px;
    min-height: 30px;
    justify-content: center;
    background-color: #f0f2f5;
    padding: 16px;
    margin-top: 28px;
}

    .search-box2 img {
        width: 18px;
        height: 18px;
        object-fit: contain;
        cursor: pointer;
    }

    .search-box2 input {
        border: none;
        border-bottom: 1px solid #3f3f3f54;
        background-color: initial;
        outline: none;
        color: #111111;
        text-align: left;
        min-width: 70%;
    }

.pb-35px {
    padding-bottom: 35px;
}

.contact-right3 {
    display: grid;
    /* flex-direction: row; */
    gap: 25px;
    justify-content: center;
    z-index: 99;
    /* padding-left: 35px; */
    align-items: start;
    text-align: center;
}

.download-btns {
    display: flex;
    gap: 10px;
}
