@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primaryColor: #2E537D;
    --blackColor: #000;
    --whiteColor: #fff;
    --peragraphColor: #999999;
    --dmFont: "DM Sans", sans-serif;
    --plusjakartaFont: "Plus Jakarta Sans", sans-serif;
    --opensansFont: "Open Sans", sans-serif;
    --latoFont: "Lato", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button,
figure {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s all ease;
}

a:hover {
    text-decoration: none;
}

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

ul li {
    display: inline-block;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

::selection {
    color: white;
    background: #3f90de;
}

::-webkit-selection {
    color: white;
    background: #3f90de;
}

::-moz-selection {
    color: white;
    background: #3f90de;
}

/* .scrolltotop */
.scrolltotop {
    width: 37px;
    height: 37px;
    line-height: 37px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 25px;
    bottom: 22px;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
}

.scrolltotop i {
    color: #ffff;
    font-size: 16px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 9px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*
====================================
Home Page Start Here
====================================
*/

.custom-btn a {
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    text-align: center;
    text-transform: capitalize;
}

.heading-title {
    color: var(--whiteColor);
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.heading-title span {
    color: var(--primaryColor);
}

/*== Header Section Start Here ==*/

.header-section {
    background-image: url(images/DSC_2887_v1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.menu-area {
    padding-top: 35px;
}

.menu-bar ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding: 0 15px;
}

.menu-bar ul li a:hover,
.menu-bar ul li a.active {
    color: var(--primaryColor);
}

.menu-btn a {
    font-size: 18px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: 10px;
    color: var(--primaryColor);
    background: var(--whiteColor);
    text-transform: capitalize;
}

.menu-btn a:hover {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.offcanvas-body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 30px;
}

.offcanvas-body .mobile-side-bar-menu {
    padding-top: 30px;
}

.offcanvas-body .mobile-side-bar-menu ul li {
    display: block;
}

.offcanvas-body .mobile-side-bar-menu ul li a {
    color: #888888;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 18px;
    width: 100%;
    border-left: 2px solid transparent;
}

.offcanvas-body .mobile-side-bar-menu ul li a:hover {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-left: 2px solid var(--primaryColor);
    color: var(--primaryColor);
}

.offcanvas-start .offcanvas-header {
    padding-top: 28px;
    padding-bottom: 28px;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.offcanvas-header .btn-close {
    box-shadow: none !important;
}

.mobile-side-bar-btn {
    margin: 0 20px;
    margin-bottom: 30px;
}

.mobile-side-bar-btn a {
    width: 100%;
    text-align: center;
    border: 1px solid var(--primaryColor);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primaryColor);
    padding: 14px 0;
    text-transform: capitalize;
}

.mobile-side-bar-btn a:hover {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.off-menu-bar i {
    font-size: 24px;
    color: #fff;
}

.header-area {
    padding-top: 145px;
    padding-bottom: 210px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-area-inner1 p {
    font-size: 14px;
    color: var(--whiteColor);
    padding-left: 9px;
}

.header-area-inner2 h2 {
    padding-top: 5px;
    font-size: 60px;
    color: var(--whiteColor);
}

.header-area-inner2 h2 span {
    color: #2E537D;
}

.header-area-inner2 p {
    padding-top: 7px;
    font-size: 22px;
    font-weight: 500;
    color: var(--whiteColor);
}

.header-area-inner2 ul {
    padding-top: 65px;
}

.header-area-inner2 ul li a {
    padding: 18px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
}

.header-area-inner2 ul li:first-child a {
    margin-right: 20px;
    border: 1px solid #2E537D;
    color: var(--whiteColor);
    background: #2E537D;
}

.header-area-inner2 ul li:first-child a:hover {
    background: transparent;
    color: var(--whiteColor);
    border-color: var(--whiteColor);
}

.header-area-inner2 ul li:last-child a {
    border: 1px solid var(--whiteColor);
    color: var(--whiteColor);
    background: transparent;
    padding-left: 42px;
    padding-right: 42px;
}

.header-area-inner2 ul li:last-child a:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
}

/*== Estate Section Start Here ==*/

.estate-section {
    background-image: url(images/estate-bg-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 115px 0;
}

.estate-right strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

.estate-right h2 {
    padding: 6px 0;
}

.estate-right p {
    padding-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.estate-right-btn a {
    margin-top: 18px;
    padding-left: 38px;
    padding-right: 38px;
}

.estate-right-btn a:hover {
    color: #fff;
    background: var(--primaryColor);
}

/*== Featured Section Start Here ==*/

.featured-section {
    background-image: url(images/featured-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    padding-bottom: 80px;
}

.featured-top-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #292929;
}

.featured-top-left h2 span {
    color: var(--primaryColor);
}

.featured-top-left p {
    padding-top: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}

.featured-top-right a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.featured-slider {
    margin-top: 60px;
    position: relative;
}

.featured-slider-items {
    padding: 20px;
    background: #f5f5f580;
    border-radius: 12px;
    box-shadow: 0px 1px 6px 0px #aba9a959;
    margin: 5px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-slider-items h4 {
    padding-top: 30px;
    padding-bottom: 9px;
    font-size: 24px;
    font-weight: 600;
    color: #292929;
}

.featured-slider-items span {
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}

.featured-slider-items span i {
    font-size: 15px;
    padding-right: 10px;
}

.featured-slider-items p {
    padding-top: 10px;
    color: #565656;
    font-size: 16px;
}

.featured-slider-inner {
    padding: 30px 0;
}

.featured-slider-inner div span {
    font-size: 18px;
    font-weight: 500;
    color: #3e3838;
    padding-right: 24px;
    position: relative;
}

.featured-slider-inner div h6 {
    font-size: 20px;
    font-weight: 600;
    color: #3e3838;
}

.featured-slider-inner2 a {
    width: 100%;
    padding: 15px 0;
}

.featured-slider-inner2 a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.featured-slider .owl-nav {
    position: absolute;
    right: 0;
    margin-top: 35px;
}

.featured-slider .owl-nav .owl-next,
.featured-slider .owl-nav .owl-prev {
    height: 58px;
    width: 58px;
    line-height: 65px !important;
    text-align: center;
    border: 1px solid #cdcdcd !important;
    background: transparent !important;
    border-radius: 50%;
    transition: 0.3s;
}

.featured-slider .owl-nav .owl-next i,
.featured-slider .owl-nav .owl-prev i {
    font-size: 22px;
    color: #cdcdcd;
    transition: 0.3s;
}

.featured-slider .owl-nav .owl-next:hover,
.featured-slider .owl-nav .owl-prev:hover {
    background: var(--primaryColor) !important;
    border: 1px solid #fff;
}

.featured-slider .owl-nav .owl-next:hover i,
.featured-slider .owl-nav .owl-prev:hover i {
    color: #fff !important;
}

.featured-slider-page p {
    padding-top: 55px;
    font-size: 20px;
    font-weight: 500;
    color: #999999;
}

.featured-slider-page p span {
    color: var(--primaryColor);
}

.featured-slider-img {
    position: relative;
}

.featured-slider-img-btn {
    position: absolute;
    top: 12px;
    left: 10px;
}

.featured-slider-img-btn a {
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    color: var(--primaryColor);
}

.featured-slider-img-btn a:hover {
    background: var(--primaryColor);
}

/*== Exp Section Start Here ==*/

.exp-section {
    background-image: url(images/estate-bg-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 85px;
    padding-bottom: 90px;
}

.exp-area-left video {
    max-width: 605px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0px 1px 10px 3px #f1f1f140;
}

.exp-area-right strong {
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
    font-weight: 700;
    text-transform: capitalize;
    display: block;
}

.exp-area-right p {
    padding-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.exp-area-right-btn a {
    margin-top: 26px;
    padding: 18px 60px;
}

.exp-area-right-btn a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.teammate-left,
.teammate-right {
    padding-top: 55px;
}

.teammate-left strong {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
}

.teammate-left h2 {
    padding: 6px 0;
}

.teammate-left p {
    padding-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/*== Client Section Start Here ==*/

.client-section {
    background-image: url(images/featured-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.client-section-top-left h2 {
    color: #292929;
}

.client-section-top-left p {
    padding-top: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
}

.client-section-top-right a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.client-slider {
    padding-top: 58px;
    margin: 0 5px;
    position: relative;
}

.client-slider-items {
    padding: 50px 25px;
    min-height: 520px;
    border-radius: 12px;
    text-align: center;
    background: #f5f5f580;
    box-shadow: 0px 1px 6px 0px #aba9a959;
}

.client-slider-items ul li a {
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 24px;
    margin: 0 10px;
    color: #ffe500;
    background: #f5f5f5;
    border-radius: 50%;
}

.client-slider-items h4 {
    padding-top: 40px;
    font-size: 24px;
    color: #292929;
    font-weight: 600;
}

.client-slider-items p {
    padding-top: 14px;
    font-size: 14px;
    color: #888888;
    font-weight: 500;
}

.client-slider-items-buttom > div {
    padding-right: 12px;
}

.client-slider-items-buttom div img {
    height: 60px !important;
    width: 60px !important;
    margin-left: auto;
    margin-right: auto;
}

.client-slider-items-buttom {
    padding-top: 40px;
}

.client-slider-items-buttom h6 {
    font-size: 14px;
    font-weight: 500;
    color: #b98708;
}

.client-slider-items-buttom p {
    padding-top: 3px;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
}

.client-slider .owl-nav {
    position: absolute;
    right: 0;
    margin-top: 35px;
}

.client-slider .owl-nav .owl-next,
.client-slider .owl-nav .owl-prev {
    height: 58px;
    width: 58px;
    line-height: 65px !important;
    text-align: center;
    border: 1px solid #cdcdcd !important;
    background: transparent !important;
    border-radius: 50%;
    transition: 0.3s;
}

.client-slider .owl-nav .owl-next i,
.client-slider .owl-nav .owl-prev i {
    font-size: 22px;
    color: #cdcdcd;
    transition: 0.3s;
}

.client-slider .owl-nav .owl-next:hover,
.client-slider .owl-nav .owl-prev:hover {
    background: var(--primaryColor) !important;
    border: 1px solid #fff;
}

.client-slider .owl-nav .owl-next:hover i,
.client-slider .owl-nav .owl-prev:hover i {
    color: #fff !important;
}

/*== Journey Section Start Here ==*/

.journey-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.journey-section::after {
    content: url(images/journey-after.png);
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.journey-section::before {
    content: url(images/journey-before.png);
    position: absolute;
    display: block;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.journey-area {
    padding: 0 65px;
    z-index: 2;
    position: relative;
}

.journey-area-left p {
    padding-top: 15px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.journey-area-right a {
    background: var(--primaryColor);
    color: #fff;
}

.journey-area-right a:hover {
    color: var(--primaryColor);
    background: #fff;
    border: 1px solid #fff;
}

/*== Footer Section Start Here ==*/

.footer-area {
    padding-top: 35px;
    padding-bottom: 45px;
}

.footer-items {
    padding-top: 30px;
}

.footer-items-1st p {
    padding-top: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #888888;
}

.footer-items-1st ul {
    padding-top: 10px;
}

.footer-items-1st ul li a {
    color: var(--primaryColor);
    padding-right: 20px;
    font-size: 18px;
}

.footer-items-1st ul li a i {
    transition: 0.3s;
}

.footer-items-1st ul li a:hover i {
    transform: scale(1.1);
}

.footer-items-2nd h6 {
    font-size: 22px;
    padding-bottom: 30px;
    font-weight: 600;
    color: #292929;
    font-family: var(--plusjakartaFont);
}

.footer-items-3rd h6 {
    font-size: 22px;
    padding-bottom: 24px;
    font-weight: 600;
    color: #292929;
    font-family: var(--dmFont);
}

.footer-items-2nd ul li {
    display: block;
}

.footer-items-2nd ul li a {
    font-size: 16px;
    padding-bottom: 12px;
    font-family: var(--plusjakartaFont);
    color: #848282;
}

.footer-items-2nd ul li a:hover {
    color: var(--primaryColor);
}

.footer-items-2nd ul li a:hover i {
    color: #848282;
}

.footer-items-2nd ul li a i {
    color: var(--primaryColor);
    font-size: 14px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-items-3rd ul li {
    display: block;
    color: #848282;
    padding-bottom: 22px;
}

.footer-items-3rd ul li a {
    font-size: 16px;
    color: #848282;
    font-family: var(--dmFont);
}

.footer-items-3rd ul li a:hover {
    text-decoration: underline;
}

.footer-items-3rd ul li i {
    color: var(--primaryColor);
    font-size: 20px;
    margin-right: 12px;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left p {
    font-size: 14px;
    color: #515151;
}

.footer-bottom-right p {
    font-size: 14px;
    padding-right: 9px;
    color: #515151;
}

/*
====================================
Listing Page Start Here
====================================
*/

.list-menu-area {
    padding: 38px 0;
}

.list-menu-area .menu-bar a {
    color: #888888;
}

.list-menu-area .menu-btn a {
    border: 1px solid var(--primaryColor);
    color: var(--primaryColor);
}

.list-menu-area .menu-btn a:hover {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.list-menu-area .off-menu-bar i {
    color: #888888;
}

/* Dream Section Start Here */

.dream-section {
    padding-top: 25px;
    padding-bottom: 35px;
}

.dream-area {
    background-image: url(images/list-black-img.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 55px;
    border-radius: 20px;
}

.dream-area-inner1 {
    padding-bottom: 15px;
}

.dream-area-inner1 p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    padding-left: 5px;
}

.dream-area-left h6 {
    padding-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}

.dream-area-left-btn a {
    margin-top: 37px;
    padding-left: 40px;
    padding-right: 40px;
}

.dream-area-left-btn a:hover {
    background: var(--primaryColor);
    color: #fff;
}

.list-slider-area {
    padding-top: 35px;
}

.list-slider-section {
    background-image: url(images/featured-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 90px;
}

.pagination-area {
    padding-top: 70px;
}

.pagination-area-left p {
    font-size: 14px;
    font-weight: 600;
    color: #bababa;
    font-family: var(--opensansFont);
}

.pagination-area-left select {
    border: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/input-down-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    padding: 8px 30px;
    background-position: calc(100% - 15px) 50%;
    font-size: 14px;
    color: #7d7c7c;
    font-weight: 600;
    text-align: center;
    margin: 0 10px;
    border-radius: 4px;
}

.pagination-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-area-right ul li a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--opensansFont);
    color: #888888;
    border: 1px solid #88888871;
    border-radius: 4px;
    margin: 0 2px;
}

.pagination-area-right ul li a:hover {
    background: var(--primaryColor);
    color: #fff;
    border: 1px solid var(--primaryColor);
}

/*
====================================
Contact Page Start Here
====================================
*/

.contact-form-section {
    padding: 110px 0;
}

.contact-form-right {
    padding: 32px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 8px;
}

.contact-form-right h2 {
    color: #292929;
}

.contact-form-right p {
    padding-top: 18px;
    padding-bottom: 30px;
    color: #848282;
    font-size: 16px;
}

.contact-form-right label {
    display: block;
    font-size: 16px;
    color: #292929;
    padding-bottom: 9px;
}

.contact-form-right input {
    width: 100%;
    margin-bottom: 24px;
    padding: 18px 17px;
    border: 1px solid #99999977;
    border-radius: 8px;
    color: #999999;
    font-size: 16px;
    color: #999999;
}


.contact-form-right input:focus,
.contact-form-right textarea:focus {
    border-color: var(--primaryColor);
    box-shadow: 0 0 3px #b9870852;
}

.contact-form-right textarea {
    width: 100%;
    margin-bottom: 24px;
    padding: 13px 17px;
    border: 1px solid #99999977;
    border-radius: 8px;
    color: #999999;
    font-size: 16px;
    color: #999999;
}

.submit-btn {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.submit-btn input {
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #b98708;
    border: 1px solid #b98708;
    background: #fff;
    transition: 0.3s;
}

.submit-btn input:hover {
    background: #b98708;
    color: #fff;
}

.map-section iframe {
    width: 100%;
    min-height: 720px;
    display: block;
    margin: 0;
}

/*
====================================
Detail Page Start Here
====================================
*/

.detail-header {
    background-image: url(images/featured-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.detail-hero-area {
    padding-top: 35px;
    padding-bottom: 35px;
}

.detail-hero-area .carousel {
    margin-bottom: 20px;
}

.detail-hero-area .item .thumb {
    width: 25%;
    cursor: pointer;
    float: left;
}

.detail-hero-area .item .thumb img {
    width: 100%;
    margin: 2px;
}

.detail-hero-area .item img {
    width: 100%;
}

.detail-hero-area .clearfix {
    padding: 0 40px;
}

.detail-hero-area .thumb {
    padding: 0 6px;
}

.detail-hero-right {
    padding: 20px;
    background: #f5f5f580;
    box-shadow: 0px 1px 6px 0px #aba9a959;
    border-radius: 20px;
    max-width: 100%;
    padding-bottom: 0;
}

.detail-hero-inner1 h2 {
    color: #292929;
}

.detail-hero-inner1 p {
    padding-top: 15px;
    font-size: 16px;
    color: #999999;
}

.detail-hero-inner1 h1 {
    padding: 20px 0;
    font-size: 40px;
    font-weight: 700;
    color: var(--primaryColor);
}

.detail-hero-inner2 {
    background: #fff;
    border: 1px solid #f0f0ee;
    border-radius: 12px;
    padding: 20px;
}

.detail-hero-inner2 span {
    color: #999999;
    font-size: 18px;
    font-weight: 500;
}

.detail-hero-inner2 span i {
    margin-right: 6px;
}

.detail-hero-inner2 p {
    padding-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primaryColor);
}

.detail-hero-inner2 div {
    position: relative;
}

.detail-hero-inner2 div::after {
    content: "";
    position: absolute;
    height: 55px;
    width: 1px;
    background: #c7c7c7;
    display: block;
    top: 0;
    right: -35px;
}

.detail-hero-inner2 div:last-child::after {
    display: none;
}

.detail-hero-inner3 {
    padding-top: 35px;
}

.detail-hero-inner3 h2 {
    color: #292929;
    padding-bottom: 15px;
}

.detail-hero-inner3 > div {
    padding-bottom: 20px;
}

.detail-hero-inner3 p {
    font-size: 20px;
    font-weight: 700;
    color: #bcbcbc;
}

.detail-hero-inner3 span {
    font-size: 20px;
    font-weight: 500;
    color: #888888;
}

/* Description Section Start Here */

.description-section {
    padding-top: 20px;
    padding-bottom: 45px;
}

.description-top h2 {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
}

.description-top h2 span {
    color: var(--primaryColor);
}

.description-top p {
    padding-top: 12px;
    font-size: 16px;
    line-height: 30px;
    color: #565656;
}

.description-box {
    margin-top: 55px;
    padding: 38px 42px;
    background: #f5f5f580;
    box-shadow: 0px 1px 6px 0px #aba9a959;
    border-radius: 16px;
}

.description-box h4 {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--latoFont);
}

.description-box-items ul li {
    margin-top: 20px;
    padding-left: 18px;
    font-size: 16px;
    color: #484848;
    font-family: var(--latoFont);
    display: block;
    position: relative;
}

.description-box-items ul li::after {
    content: "";
    position: absolute;
    height: 7px;
    width: 7px;
    border-radius: 50%;
    background: #333333;
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.description-box-items ul li span {
    font-size: 17px;
    font-weight: 600;
    color: #333333;
}

.location-section {
    padding-bottom: 70px;
}

.location-area iframe {
    margin-top: 20px;
    width: 100%;
    min-height: 650px;
    box-shadow: 0px 1px 16px 0px #00000059;
    border-radius: 20px;
}

.detail-footer {
    background-image: url(images/featured-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.detail-hero-lightbox {
    text-align: center;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.detail-hero-lightbox img {
    max-width: 121px;
    border-radius: 12px;
}

.detail-hero-left-top img {
    border-radius: 28px;
}

.fancybox-thumbs {
    top: 0;
    width: 100%;
    max-height: 200px;
    top: auto;
    bottom: 0;
    display: flex;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    margin-left: auto;
    margin-right: auto;
}

.fancybox-outer, .fancybox-inner, .fancybox-bg, .fancybox-stage {
    right: 0;
    width: 100%;
}

.fancybox-slide--image {
    padding-bottom: 100px;
}


.btn-style {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2E537D; /* récupère la couleur du lien */
    color: #fff;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-style:hover {
    background-color: #hover-color;
}


.adresse-input {
    width: 100%;
    max-width: 450px;
    padding: 12px 20px;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #2E537D;
    border-radius: 8px;
    outline: none;
    color: #2E537D;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(46, 83, 125, 0.1);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.adresse-input::placeholder {
    color: #A0B4CC;
}

.adresse-input:focus {
    border-color: #2E537D;
    box-shadow: 0 0 0 3px rgba(46, 83, 125, 0.2);
}


.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px; /* espace entre le texte et le logo */
    justify-content: flex-end;
}

.creation-text {
    margin: 0;
}

.immob-logo {
    width: 100px;
    height: auto;
}

/* Adaptation mobile (facultatif) */
@media (max-width: 768px) {
    .footer-bottom-right {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .immob-logo {
        width: 120px;
        margin-top: 8px;
    }
}


.footer-items-1st {
    overflow: visible;
}

.footer-logo {
    display: block;
    width: 125% !important;
    max-width: none !important;
}


/* 📱 Agrandir uniquement sur mobile (moins de 768px) */
@media (max-width: 767px) {
    .footer-logo {
        width: 75% !important;
        display: block;

    }
}





@media (max-width: 767px) {
    .footer-bottom-right .immob-logo {
        width: 90px;
        height: auto;
        display: block;
    }
}

.immob-logo {
    max-width: 80%;
    height: auto;
}

@media (max-width: 768px) {
    .client-slider {
        height: 400px; /* ajuste selon ton besoin */
        overflow: hidden;
    }

    .client-slider .client-slider-items {
        height: 100%;
    }
}