@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-ExtraLight';
    src: url('../fonts/Montserrat-ExtraLight.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #BD945B;
}

.bg-primary {
    background-color: var(--primary) !important;
}

strong {
    font-weight: bold !important;
}

p {
    margin-bottom: 0
}

/***
====================================================================
  Loading Transition
====================================================================
 ***/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #000;
    overflow: hidden;
}

#preloader_1 {
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

#preloader_1 span {
    display: block;
    bottom: 0px;
    width: 6px;
    height: 5px;
    background: var(--primary);
    position: absolute;
    animation: preloader_1 1.5s infinite ease-in-out;
}

#preloader_1 span:nth-child(2) {
    left: 11px;
    animation-delay: .2s;

}

#preloader_1 span:nth-child(3) {
    left: 22px;
    animation-delay: .4s;
}

#preloader_1 span:nth-child(4) {
    left: 33px;
    animation-delay: .6s;
}

#preloader_1 span:nth-child(5) {
    left: 44px;
    animation-delay: .8s;
}

@keyframes preloader_1 {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #000;
    }
    25% {
        height: 30px;
        transform: translateY(15px);
        background: #000;
    }
    50% {
        height: 5px;
        transform: translateY(0px);
        background: #1e1e1e;
    }
    100% {
        height: 5px;
        transform: translateY(0px);
        background: #1e1e1e;
    }
}

.gap-15 {
    gap: 15px
}

.gap-10 {
    gap: 10px
}

.gap-5 {
    gap: 5px
}

.ltr {
    direction: ltr
}

span.ltr,a.ltr {
    display: inline-block
}

.more_btn {
    background-color: var(--primary);
    color: #fff;
    padding: 18px 60px;
    font-size: 18px
}

.more_btn:hover {
    background-color: #fff;
    color: var(--primary);
}

.img-hover {
    overflow: hidden;
}

.img-hover img {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.img-hover:hover img {
    -webkit-transform: scale(1.2) rotate(2.5deg);
    transform: scale(1.2) rotate(2.5deg);
}

/* :: 4.0 Search Wrapper */
.search-wrapper {
    width: 100%;
    height: 90px;
    position: fixed;
    z-index: 200;
    top: -90px;
    left: 0;
    background-color: var(--primary);
    -webkit-transition-duration: 700ms;
    transition-duration: 700ms;

}

.search-wrapper form {
    position: relative;
    z-index: 1;
}

.search-wrapper form input {
    width: 90%;
    height: 40px;
    border: 2px solid #ffffff;
    font-size: 12px;
    padding: 0 20px;
    margin: 25px 0;
    outline: none;
}

@media only screen and (max-width: 767px) {
    .search-wrapper form input {
        width: 100%;
    }
}

.search-wrapper form button {
    position: absolute;
    width: 60px;
    height: 40px;
    z-index: 1;
    top: 25px;
    border: none;
    cursor: pointer;
    outline: none;
}

html[dir="ltr"] .search-wrapper form button {
    right: 10%;
}

html[dir="rtl"] .search-wrapper form button {
    left: 10%;
}
.blog_item {
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
    html[dir="ltr"] .search-wrapper form button {
        right: 15%;
    }

    html[dir="rtl"] .search-wrapper form button {
        left: 0%;
    }

    html[dir="rtl"] .search-wrapper form input {
        padding-right: 70px;
    }
}

.search-wrapper .close-btn {
    position: absolute;
    width: 70px;
    height: 100%;
    background-color: #000000;
    line-height: 90px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    right: 0;
    top: 0;
    z-index: 100;
}

.search-wrapper.on {
    top: 0;
}

.header-area {
    position: relative
}

.header-area .main-header-area {
    padding: 0 !important;
    margin-top: 30px;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 9;
    position: absolute;
}


.header-area .main-header-area .main-header-area-inner {
    background-color: rgba(10, 10, 10, 0.9);
    position: relative;
}

.header-area .main-header-area .main-menu {
    text-align: start;
    padding-inline-start: 25px;
}

.header_bottom_border {
    border-bottom: none;
}

.header-area .main-header-area.sticky {
    background: transparent;
}

.header-area .main-header-area .main-menu ul li a {
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    transition: .3s all ease;
    font-size: 18px;
}

.header-area .main-header-area .main-menu ul li a:hover {
    color: var(--primary)
}

.header-area .main-header-area .main-menu ul li:hover::after {
    content: '';
    position: absolute;
    height: 3px;
    background: #fff;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -34px;
}

.header-top_area {
    background-color: #000;
    padding: 5px 0;
}

.header-top_area .contact-list,.header-top_area .contact-list a {
    color: #ccc;
    font-size: 12px;
}
.header-top_area .contact-list a:hover {
    color: var(--primary);
}
.header-top_area .social_media_links a:hover {
    color: var(--primary);
}

.logo {
    padding: 15px;

}
html[dir="ltr"] .logo{text-align: start;}
html[dir="rtl"] .logo{text-align: end;}
.logo img {
    width: 225px
}

.social_media_links {
    padding: 6px 10px;
    display: flex;
    gap: 10px;
}

.header-top_area .social_media_links a {
    font-size: 12px;
    color: #000;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    background: #565656;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 22px !important;
}

.header-top_area .social_media_links a:hover {
    background: #565656;
    color: var(--primary);
}

.lang_link {
    color: #fff;

    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-image: url(../images/lang-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -25px;

}

html[dir="ltr"] .lang_link {
    padding: 1px 17px;
    font-size: 14px;
    margin-inline-end: -10px;
}

html[dir="rtl"] .lang_link {
    padding: 7px 10px;
    font-size: 12px;
    margin-inline-start: -20px;
}

.lang_link:hover {
    color: var(--primary);
}

.search_btn {
    background-color: var(--primary);
    padding: 10px 23px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.search_btn i {
    color: #585F62;
    font-weight: bold;
}

.main-menu {
    margin-top: 5px;
    text-align: center;
}

.single_slider .title {
    font-size: 104px;
    color: #fff;
    font-weight: bold;
}

html[dir="rtl"] .single_slider .title {
    margin-bottom: 20px;
}

.single_slider .sub_title {
    font-size: 105px;;
    color: #fff;
    font-weight: lighter;
}

.single_slider .more {
    color: #fff;
    text-decoration: underline;
    margin-inline-start: 30px;
    font-size: 18px;
}

.single_slider .more:hover {
    color: var(--primary);
}

.slide_desc {
    z-index: 2
}

.slider-overlay {
    position: relative;
    z-index: 0;
}

.slider-overlay:before {
    position: absolute;
    content: "";
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.bradcam_text h4 {
    margin-top: 10px;
    color: #fff;
}

.request-demo-txt {
    color: #000;
    margin-bottom: 15px;
    font-size: 14px;
}

.request-demo-btn {
    background: #fff;
    padding: 15px;
    font-size: 14px;
}

.request-demo-btn i {
    color: var(--primary)
}

.request-demo-btn:hover {
    background: var(--primary);
    color: #fff
}

.request-demo-btn:hover i {
    color: #000
}

section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-head {
    padding: 30px 0;
    border-bottom: 1px solid #2e2e2e;
    margin-bottom: 30px;
}

.section-head h3 {
    margin-bottom: 0;
    font-weight: 500
}

.more-link {
    display: inline-block;
    text-decoration: underline;
    color: #5C5C5C;
    font-size: 20px;
}

.more-link:hover {
    color: #000
}


.clamp-11 {
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery_area .single-gallery .gallery_hover {
    background: rgba(255, 255, 255, 0.85);
    padding: 15px;
}

.gallery_area .single-gallery .gallery_hover .hover_inner {
    color: #000
}

.footer .footer_top {
    background-color: #000;
    background-image: url("../images/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    padding-top: 45px;
    padding-bottom: 15px;
}

.footer .footer_top .footer_widget .footer_title {
    margin-bottom: 5px
}

.footer .copy-right_text .footer_border {
    padding-bottom: 10px;
}

.footer .copy-right_text {
    background: #000;
    padding: 10px 0;
    text-align: center;
}

.footer .footer_logo {
    width: 230px
}

.copy_right {
    color: #7E7E7E
}

.footer_border {
    border-top: 1px solid #2e2e2e;
}

.footer-menu {
    width: 100%;
}


.footer-menu a {
    transition: .3s all ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
    color: #7E7E7E
}

.footer-menu a:hover {
    border-bottom: 2px solid #000;
    text-decoration: underline;
}

.footer .footer_top .footer_widget ul li {
    line-height: 35px;
}

.footer .footer_top .footer_widget ul li a {
    color: #fff;
    font-size: 16px;
}

.footer .footer_top .footer_widget ul li a:hover {
    color: var(--primary);
}

.footer .footer_top .address-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.footer .footer_top .address {
    color: #fff;
    font-size: 14px;
}

.footer .footer_top .phone {
    color: #7E7E7E;
    direction: ltr;
    font-size: 12px;
}

.footer .copy-right_text .copy_right a {
    color: #7E7E7E
}

.footer .footer_top p {
    color: #565656;
    font-size: 14px;
    text-align: justify
}

.footer .copy-right_text .copy_right a:hover {
    text-decoration: underline;
    color: var(--primary)
}

.footer .social_media_links {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    padding: 0;
}

.footer .social_media_links a {
    color: #7E7E7E
}

.footer .social_media_links a:hover {
    color: var(--primary)
}

.footer .social_media_links span {
    font-size: 12px;
    color: #fff
}

.news_latter_form {
}

.news_latter_form .form-control {
    background: #565656;
    border-radius: 0;
    border: 0;
    padding: 15px;
    color: #fff;
}

.news_latter_form .form-control::placeholder {
    color: #fff;
    text-align: center
}

.news_latter_form .news_latter_form_btn {
    background: #BD945B;
    border-radius: 0;
    border: 0;
    padding: 15px;
    width: 100%;
    color: #fff;
    cursor: pointer;
}

.news_latter_form .news_latter_form_btn:hover {
    background: #fff;
    color: #BD945B;
}

.subscribe_btn {
    background: none;
    border: 0;
}

.bradcam_area {
    padding:  0 !important;
    min-height: 165px;
}

.wrap-img{width: 400px;}
.wrap-icon{width: 100px;}
html[dir="rtl"] .wrap-img,html[dir="rtl"] .wrap-icon{
    float: right;
    margin: 0 0 0px 30px;
}
html[dir="ltr"] .wrap-img,html[dir="ltr"] .wrap-icon{
    float: left;
    margin: 0 30px 0px 0;
}
.clearfix::after{
    content: "";
    display: block;
    clear: both;
}
.page-details-title{font-weight: bold}


.boxed-btn {
    border: 1px solid #000;
    color: #000 !important;
    padding: 12px 40px;
}

.boxed-btn:hover {
    background: #000;
    color: #fff !important;
    border: 1px solid #000;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-page .contact-info .media-body h3 {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

footer .contact-info .media-body h3 {
    font-size: 22px;
    font-weight: bold;
    color: #fff !important;
}

.contact-info .media-body p, .contact-info .media-body p a {
    color: #8a8a8a !important;
    font-size: 14px !important;
}

.contact-info__icon i, .contact-info__icon span {
    color: var(--primary);
}

.counter_area {
    background-color: #F4F4F4;
    padding: 40px 0;
}

.counter_area .single_counter {
    margin-bottom: 0;
    color: #fff !important;
    position: relative;
}

.counter_area .single_counter .counter_title {
    color: #000;

}

.counter_area .single_counter img {
    width: 65px;
}

.counter_area .single_counter .counter_count {
    font-weight: bold;
    color: #000;
    font-size: 50px;
}

.counter_area .single_counter.border-end:after {
    content: "";
    position: absolute;
    top: 5px;
    height: 100%;
    width: 1px;
    background-color: #d7d7d7;
}

[dir="ltr"] .counter_area .single_counter.border-end:after {
    right: 0;
}

[dir="rtl"] .counter_area .single_counter.border-end:after {
    left: 0;
}

.about_wrap_area {
    padding: 45px 0;
}

.about_wrap_area .title,
.about_wrap_area .short_desc {
    color: #fff;
}

.about_wrap_area .title {
    font-size: 70px;
}

.about_wrap_area .short_desc {
}

.about_wrap_area a {
    color: var(--primary);
    text-decoration: underline;
    margin-top: 15px
}

.about_wrap_area a:hover {
    color: #fff;
}

.abouts .abouts-title {
    font-size: 120px;
    font-weight: bold;
    font-family: inherit;
    margin-bottom: 15px;
}

.clients_area .title {
    font-weight: bold
}

.clients_area .title span {
    font-weight: normal
}

.owl-carousel .owl-nav div {
    background: transparent;
    height: 50px;
    position: absolute;
    text-align: center;
    bottom: -18px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 50px;
    color: #787878;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 15px;
    line-height: 50px;

}

html[dir="rtl"] .owl-carousel .owl-nav div.owl-prev {
    right: -50px;
}

html[dir="rtl"] .owl-carousel .owl-nav div.owl-next {
    right: -90px;
}


html[dir="ltr"] .owl-carousel .owl-nav div.owl-prev {
    left: -90px;
}

html[dir="ltr"] .owl-carousel .owl-nav div.owl-next {
    left: -50px;
}

html[dir="rtl"] .owl-carousel .owl-nav div.owl-next i {
    position: relative;
    right: 0;
}

.owl-carousel .owl-nav div.owl-prev i {
    position: relative;
    top: 0;
}


.owl-carousel:hover .owl-nav div {
    opacity: 1;
    visibility: visible;
}

.owl-carousel:hover .owl-nav div:hover {
    color: var(--primary);
}

/* services_area */
.services_area {
    margin-top: -150px;
    z-index: 10;
    position: relative;
}

.services_area_inner {
    padding: 30px;
    background-color: #000;
}

.services_area .blog_item .blog_details {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    box-shadow: none !important;
    padding: 0;
    margin-top: 30px;
}

.services_area .blog_item {
    margin-bottom: 0;
}

.services_area .blog_item img {
    width: 60px;
}

.services_area .blog_details h2 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.services_area .blog_details .short_description {
    color: #919191;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    text-align: justify;
}

.services_area .blog_details .read_more {
    color: #fff;
    margin-top: 15px;
    display: inline-block;
    font-size: 14px
}

.services_area .blog_item:hover h2 {
    color: var(--primary);
}

.services_area .blog_item:hover .short_description {
    color: #fff;
}

.services_area .blog_item:hover .read_more {
    color: var(--primary);
}


.services_area .title {
    font-weight: bold;
    color: #fff;
}

.services_area .title span {
    font-weight: normal
}


.page-details .service-title {
    font-size: 75px;
    color: var(--primary);

}

html[dir="ltr"] .page-details .service-title {
    letter-spacing: 10px;
}

/* real_estate_activities_area */
.real_estate_activities_area {
    background-color: #fff;
    padding: 65px 0;
}

.real_estate_activities_area .title {
    font-weight: bold;
    color: #000;
    font-size: 20px
}

.real_estate_activities_area .blog_item .blog_title {
    background-color: #000;
    padding: 15px;
}

.real_estate_activities_area .blog_item .blog_title a span {
    color: #919191;
    font-size: 18px;
    font-weight: bold;
}

.real_estate_activities_area .blog_item .blog_title a i {
    color: #919191;
}

.real_estate_activities_area .blog_item:hover .blog_title a span,
.real_estate_activities_area .blog_item:hover .blog_title a i {
    color: #fff
}

.real_estate_activities_area .blog_item .blog_title a:hover span,
.real_estate_activities_area .blog_item .blog_title a:hover i {
    color: var(--primary)
}

/* banners */

.banner_area {
}

.banner_area .banner_text {
    color: #fff;
}

.banner_area .banner_text p {
    line-height: 36px;
    color: #fff;
}

.banner_2 .banner_btn {
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    border: 1px solid #fff;
}

.banner_2 .banner_btn:hover {
    background-color: #fff;
    color: #00335E;
}
.banner_3{margin-top: 65px}
.banner_3 .read_more{
    color: var(--primary);
    display: inline-block;
}
.banner_3 .read_more:hover{color: #fff;}
/* news_area */
.news_area {
    background-color: #fff;
    padding: 65px 0 50px 0;
}

.news_inner_area {
    background-color: #E5E5E5;
    padding: 50px 30px;
}

.news_area .title {
    font-weight: bold;
    color: #000;
    font-size: 20px
}

.news_area .blog_item .blog_top {
    padding: 15px !important;
    background-color: #000;
    color: #919191;

}

.news_area .blog_details {
    padding: 30px !important;
    background-color: #000;
    color: #fff;
}

.news_area .blog_details h2 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
}

.news_area .blog_details .short_description {
    color: #919191;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 12px;
    text-align: justify;
}

.news_area .blog_details .read_more {
    color: #fff;
    margin-top: 15px;
    display: inline-block;
    font-size: 14px;
}

.news_area .blog_item:hover h2 {
    color: var(--primary);
}

.news_area .blog_item:hover .short_description {
    color: #fff;
}

.news_area .blog_item:hover .read_more {
    color: var(--primary);
}


.news_area .read_more {
    color: #000;
    margin-top: 15px;
    font-size: 18px;
}

.news_area .read_more:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contact_area h2 {
    color: #fff;
    margin-bottom: 0;
    font-weight: bold;
}

.contact_area .title {
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
}

.contact_area .sub_title {
    color: var(--primary)
}

.contact_area i {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.contact_area .form-control {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 5px;
    outline: none;
}

.contact_area .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.about-story {
    background-color: #E5E5E5;
}

.about-story .brief-title {
    font-size: 65px;
}

.about-story .title {
    color: var(--primary);
    font-weight: bold;
    font-size: 30px;
}

.about-missions .title {
    font-size: 90px;
    margin-bottom: 30px
}

.about-missions .mission-item {
    margin-bottom: 30px;
}

.about-missions .mission-img {
    background-color: var(--primary);
    text-align: end;
    padding: 0 30px;
}

.about-missions .mission-title {
    color: var(--primary);
    font-weight: bold
}

.about-values {
    background-color: #000
}

.about-values .title {
    color: var(--primary);
    font-size: 60px;
    margin-bottom: 30px
}

.about-values .value-title {
    color: var(--primary);
}

.about-values .value-desc, .about-values .value-desc p {
    color: #c3c3c3
}

.about-values .col-middle .value-img {
    margin-bottom: 15px;
}

.about-values .col-middle .value-img img {
    width: 50px;
}

.about-values .col-middle .value-title {
    margin-bottom: 15px
}

.about-values .col-first img, .about-values .col-end img {
    border-radius: 50%;
    padding: 7px;
    border: 1px solid #4e4e4e;
}

.about-values .col-first .value-item, .about-values .col-end .value-item {
    margin-bottom: 60px;
}

.a2a_kit {
    display: flex;
    justify-content: start;
    margin-top: 10px
}

#scrollUp {
    background-color: var(--primary);
    border-radius: 0;
    bottom: 60px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 38px;
    right: 60px;
    text-align: center;
    width: 40px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    display: none;
}

.slider_area {
    position: relative
}

.slider_area .mouse_area {
    position: absolute;
    right: 0;
    bottom: 100px;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: end;
    padding-inline-end: 50px;
}

.slider_area .mouse_area .mouse_area_cell {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
}

.slider_area .mouse {
    position: relative;
    width: calc(14px * 2);
    height: calc(28px * 2);
    margin: 20px auto 20px;
    background: none;
    border: 2px solid white;
    border-radius: calc(16px * 2);
    z-index: 1;
}

.slider_area .mouse:after {
    display: block;
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: calc(2px * 2);
    height: calc(2px * 2);
    background: none;
    border: 2px solid white;
    border-radius: 100%;
    -webkit-animation-name: scrollWheel;
    animation-name: scrollWheel;
    -webkit-animation-duration: 1.4s;
    animation-duration: 1.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    will-change: transform;
}

@-webkit-keyframes scrollWheel {
    from {
        -webkit-transform: translate(-50%, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0);
        opacity: 1;
    }
    to {
        -webkit-transform: translate(-50%, 20px);
        -webkit-transform: translate3d(-50%, 20px, 0);
        transform: translate(-50%, 20px);
        transform: translate3d(-50%, 20px, 0);
        opacity: 0;
    }

@media (min-width: 768px) {
    from {
        -webkit-transform: translate(-50%, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0);
        opacity: 1;
    }

    to {
        -webkit-transform: translate(-50%, 40px);
        -webkit-transform: translate3d(-50%, 40px, 0);
        transform: translate(-50%, 40px);
        transform: translate3d(-50%, 40px, 0);
        opacity: 0;
    }
}

}

@keyframes scrollWheel {
    from {
        -webkit-transform: translate(-50%, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0);
        opacity: 1;
    }
    to {
        -webkit-transform: translate(-50%, 20px);
        -webkit-transform: translate3d(-50%, 20px, 0);
        transform: translate(-50%, 20px);
        transform: translate3d(-50%, 20px, 0);
        opacity: 0;
    }

@media (min-width: 768px) {
    from {
        -webkit-transform: translate(-50%, 0);
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate(-50%, 0);
        transform: translate3d(-50%, 0, 0);
        opacity: 1;
    }

    to {
        -webkit-transform: translate(-50%, 40px);
        -webkit-transform: translate3d(-50%, 40px, 0);
        transform: translate(-50%, 40px);
        transform: translate3d(-50%, 40px, 0);
        opacity: 0;
    }
}

}
@media (min-width: 768px) {

    .slider_area .mouse:after {
        position: absolute;
        top: 25px;
        left: 50%;
        width: calc(2px * 2);
        height: calc(2px * 2);
    }

    .slider_area .mouse {
        width: calc(14px * 2);
        height: calc(28px * 2);
        margin: 20px auto 0px;
        background: none;
        border: 2px solid white;
        border-radius: calc(14px * 2);
    }
}

@media (max-width: 767px) {
    .header-area {
        position: relative;
    }

    .header-area .main-header-area {
        padding: 8px 0;
        position: relative;
        left: 0;
        right: 0;
        width: 100%;
        top: 0;
        z-index: 9;
        margin-top: 0 !important;
        background-color: rgba(10, 10, 10);
    }

    .slicknav_btn {
        margin-top: 0;
        top: -52px;
    }

    .logo img {
        width: 100px;
    }

    .search_btn {
        margin-top: 0;
    }

    .slider_area .single_slider, .slider_area .single_slider .slide_img {
        height: 300px;
    }

    .slider_area .single_slider, .slider_area .single_slider .slide_img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .slider_area .slider_text *  {
        font-size: 12px !important;
    }

    .request-demo-txt {
        font-size: 12px;
    }

    .counter_area .single_counter {
        justify-content: center;
    }

    .counter_area .single_counter.border-end:after {
        width: 0
    }


    section {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .contact_area h2 {
        margin-bottom: 10px;
    }

    .contact_area .form-control {
        margin-bottom: 10px;
    }

    .about_area .about_info {
        padding-bottom: 0
    }

    .gallery_area {
        padding-top: 15px
    }

    .gallery_area .single-gallery {
        margin-bottom: 30px
    }

    .page-details-title {
        margin-top: 15px
    }

    .footer-menu {
        text-align: center
    }

    .footer-menu ul li {
        display: block;
    }

    .footer .social_media_links {
        justify-content: center;
    }

    .footer .copy-right_text .copy_right {
        text-align: center !important;
    }
    .footer_menu_widget{text-align: center}
    .owl-carousel .owl-nav {
        display: none !important;
    }

    .abouts .abouts-title {
        font-size: 50px;
    }

    .page-details .service-title {
        font-size: 40px;
    }
    .header-top_area .contact-list{
        text-align: center;
        margin-bottom: 5px;
    }
    .real_estate_activities_area {
        padding: 30px 0;
    }
    .services_area {
        margin-top: -30px;
    }
    .services_area .blog_item {
        margin-bottom: 15px;
    }
    .services_area .blog_item .blog_details {
        margin-top: 10px;
    }
    html[dir="rtl"] .lang_link {

        margin-inline-start: -8px;
    }
    .news_area {
    padding: 35px 0 25px 0;
    }
    .more_btn {
        padding: 8px 30px;
        font-size: 14px;
    }
    .banner_text *  {
        font-size: 12px !important;
    }
    .banner_area .banner_text p {
        line-height: 24px;
    }

    .banner_2 .banner_btn {
        padding: 4px 8px;
        font-size: 13px;
        background-color: #013763b0;
    }
    .banner_3 {
        margin-top: 35px;
    }
    .banner_3 .banner_img{
        height: 100px;
    }
    .banner_3 .banner_img img{
        object-fit: cover;
        height: 100%;
        width: 100%;
        object-position: -110px;
    }
}
