/*
  Theme Name: Vertex
  Author: Wings Tech Solutions
  Support: buzz@wingsts.com
  Description: Vertex
  Version: 1.0
*/

/* ==============CSS Index================
------------------------------------------
    1. Common CSS
    2. Button 
    3. Header
    4. Hero
    5. About
    6. Service
    7. Logo
    8. Project
    9. Expertise
    10. Feature
    11. Blog
    12. Brochure
    13. Contact
    14. Footer
    15. Copyright
    16. About Page
    17. Service Page
    18. Project Page
    19. Project Deatil Page
    20. Blog Page
    21. Resource Page
    22. Contact Page
    23. Blog Detail Page
    24. Privacy & Terms Page
-----------------------------------------
=======================================*/

/****************
  Common CSS
****************/
* {
    margin: 0;
    padding: 0;
    font-family: "Work Sans", sans-serif;
}

:root {
    --dark-gray: #6c6c6c;
    --light-gray: #f5f5f5;
    --black: #333333;
}

html {
    scroll-padding-top: 120px;
    scroll-margin-top: 120px;
}

.content {
    font-weight: 400;
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 24px;
    margin: 0;
}

.elips {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.elips2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mt-30 {
    margin-top: 30px;
}

.py-90 {
    padding: 90px 0;
}

.pt-90 {
    padding: 90px 0 0;
}

.ps-38 {
    padding-left: 38px;
}

.pe-38 {
    padding-right: 38px;
}

.px-50 {
    padding-left: 38px;
    padding-right: 38px;
}

.section-title {
    margin-bottom: 40px;
}

.common-banner {
    margin: 120px 8px 0;
}

.section-title h2 {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 10px;
}
.section-title h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 10px;
}
.section-title h4 {
    font-size: 42px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}
.section-title h5 {
    font-size: 44px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

/****************
  Common Button
****************/
.theme-btn {
    font-weight: 600;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--black);
    display: inline-block;
    border-radius: 35px;
    padding: 7px 20px;
    text-decoration: none;
    border: 1px solid var(--black);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background-color: #fff;
}

.theme-btn:hover, .theme-btn:focus {
    background-color: var(--black) !important;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #fff;
}

/**********
  Header
**********/
header {
    position: fixed;
    top: 15px;
    left: 0;
    width: calc(100% - 28px);
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    background-color: var(--light-gray);
    margin: 0 14px;
    border-radius: 10px;
}

header .navbar {
    padding: 0 8px;
    align-items: center;
}

header .navbar-nav {
    border-radius: 20px;
    background-color: #fff;
    padding: 7px 40px;
}

header .navbar .navbar-brand {
    padding: 0;
    margin: 0;
    width: 130px;
}

header .navbar .navbar-toggler {
    font-size: 16px;
    border: none;
    margin: 5px 0 0;
    padding: 0;
}

header .navbar .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
}

header .hamburger {
    position: absolute;
    width: auto;
    height: 0;
    top: -11px;
    right: 30px;
    transition-duration: 0.5s;
    left: auto;
}

header .hamburger .icon {
    transition-duration: 0.5s;
    position: absolute;
    height: 2px;
    width: 20px;
    top: 27px;
    background-color: var(--black);
}

header .hamburger .icon::before {
    transition-duration: 0.5s;
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--black);
    content: "";
    top: -6px;
    right: 0;
}

header .hamburger .icon::after {
    transition-duration: 0.5s;
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--black);
    content: "";
    top: 6px;
    right: 0;
}

header .hamburger.open .icon {
    transition-duration: 0.5s;
    background: transparent;
    top: 31px;
}

header .hamburger.open .icon::before {
    -webkit-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
    -moz-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
    -ms-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
    -o-transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
    transform: rotateZ(45deg) scaleX(0.75) translate(2px, 2.5px);
}

header .hamburger.open .icon::after {
    -webkit-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
    -moz-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
    -ms-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
    -o-transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
    transform: rotateZ(-45deg) scaleX(0.75) translate(8px, -7px);
}

header .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
}

header .navbar .navbar-collapse {
    justify-content: center;
}

header .nav-item {
    position: relative;
}

header .nav-item:not(:last-child) {
    margin-right: 30px;
}

header .nav-item:last-of-type {
    margin-right: 0 !important;
}

header .navbar-collapse .nav-item .nav-link {
    color: #999;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    margin: 0;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    position: relative;
}

header .nav-item .nav-link:hover, header .nav-item .nav-link.active, header .nav-item.active .nav-link {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--black);
}

header .contact-btn {
    padding: 7px 20px !important;
    font-size: 16px;
    font-weight: 600;
    background-color: #fff;
    border: 0;
    outline: 0;
    border-radius: 35px;
    color: var(--black);
    border: 1px solid var(--black);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-decoration: none;
}

header .contact-btn:hover {
    background-color: var(--black);
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

header .contact-btn.active {
    background-color: var(--black);
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header-sticky {
    border-bottom: 1px solid var(--border-light);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    background-color: #f5f5f550;
    backdrop-filter: blur(70px);
}

/**********
  Hero
**********/
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /*margin: 90px 14px 0;*/
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    /*border-radius: 10px;
    background: linear-gradient(100.26deg, #FFE3C5 0%, #A6EFFF 100%);*/
    z-index: -1;
}

.hero .section-title {
    height: calc(100% - 66px);
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-left: 28px;
}

.hero .section-title a {
    background-color: var(--black);
    color: #fff;
    display: inline-block;
}

.hero .section-title a:hover {
    background-color: #171717 !important;
}

.hero .section-title p {
    margin: 15px 0 30px;
}

.hero-banner img {
    max-width: 100%;
}

/**********
  About
**********/
.about .content {
    margin: 15px 0 30px;
}

.about-flex {
    flex: 1;
}

.about-flex span {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-flex h6 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 3px;
    color: var(--black);
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 10px;
}

.about-flex:first-child span {
    background-color: #F59B501A;
}

.about-flex:nth-child(2) span {
    background-color: #007AFF1A;
}

.about-flex:last-of-type span {
    background-color: #9C69DF1A;
}

.about .about-flex-content p {
    margin: 0;
}

/*********
  Service 
**********/
.service {
    overflow: hidden;
}

.service .section-title {
    margin-left: 50px;
}

.service .service-slider {
    margin-left: 35px;
}

.service .section-title .content {
    margin: 15px 0 30px;
}

.service-slider-content {
    border-radius: 10px;
}

.service-slider-content img {
    border-radius: 10px;
    max-width: 320px;
    max-height: 415px;
}

.service-slider-content a {
    color: var(--black);
    font-size: 24px;
    margin: 16px 0 0;
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.service .blog-buttons-block {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

/*********
  Logo 
**********/
.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 70px;
    background-color: var(--light-gray);
    border-radius: 30px;
}

.logo-wrapper img {
    filter: contrast(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.logo-wrapper img:hover {
    filter: contrast(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*************
  Project
**************/
.project-block.main-project-block {
    height: 1030px;
}

.project-block {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.project-image {
    height: 100%;
    border-radius: 10px;
}

.project-image>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

.project-block .upcoming-badge {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 35px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    padding: 6px 15px;
    text-transform: capitalize;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 10px;
    border: 1px solid #ffffff20;
    display: inline-block;
}

.project-btn {
    margin-top: 40px;
}

.project-content {
    background-color: #00000020;
    backdrop-filter: blur(80px);
    border: 2px solid #ffffff30;
    border-radius: 10px;
    padding: 10px 16px;
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-content img {
    height: auto;
}

.project-content-block {
    flex: 0 0 90%;
}

.project-content h5 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 2px;
    text-transform: capitalize;
    color: #fff;
}

.project-content p {
    font-weight: 400;
    color: #fff;
    font-size: 16px;
    margin: 0;
    text-transform: capitalize;
}

.project-block:hover .project-content {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/*************
  Expertise
**************/
.expertise {
    padding: 90px 0 0;
}

.expertise-block {
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    height: 100%;
}

.expertise-block h3 {
    font-weight: 600;
    font-size: 30px;
    color: var(--black);
    margin: 30px 0 16px;
}

.expertise-block li {
    line-height: 48px;
}

/***********
  Feature 
************/
.feature-block {
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    height: 100%;
}

.feature-block h3 {
    font-weight: 600;
    font-size: 30px;
    color: var(--black);
    margin: 30px 0 16px;
}

.feature .section-title {
    position: sticky;
    top: 120px;
}

/*******
  Blog 
********/
.blog-page {
    padding: 100px 0 90px;
}

.blogs .blog-wrapper {
    border-radius: 10px;
}

.blogs .blog-content {
    padding: 30px;
    border: 2px solid var(--light-gray);
    border-radius: 0 0 10px 10px;
}

.blog-wrapper .blog-image {
    border: 2px solid var(--light-gray);
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
}

.blog-wrapper .blog-image img {
    border-radius: 10px 10px 0 0;
    max-height: 240px;
    width: 100%;
    object-fit: cover;
}

.blog-content h3 {
    margin: 20px 0 30px;
    font-weight: 700;
    font-size: 30px;
    color: var(--black);
}

.blog-read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-date span {
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
    position: relative;
}

.blog-date span {
    margin-right: 16px;
}

.blog-date span::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    padding: 0;
    background-color: var(--black);
    position: absolute;
    bottom: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin: -8px 5px;
}

.blog-date span:last-child::after {
    display: none;
}

.blog-content a:hover .theme-btn {
    background-color: var(--black);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #fff;
}

.blog-buttons-block {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.blog-buttons-block .owl-next,
.blog-buttons-block .owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: 2px solid var(--light-gray);
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;

}

.blog-buttons-block .owl-next:hover,
.blog-buttons-block .owl-prev:hover {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background-color: var(--black);
}

.blog-buttons-block .owl-next:hover svg,
.blog-buttons-block .owl-next:hover path,
.blog-buttons-block .owl-prev:hover svg,
.blog-buttons-block .owl-prev:hover path {
    fill: #fff;
}

/***********
  Brochure 
************/
.brochure {
    background: linear-gradient(100.26deg, #FFE3C5 0%, #A6EFFF 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    border-radius: 10px;
}

.brochure .section-title {
    margin-left: 28px;
}

.brochure .theme-btn {
    background-color: var(--black);
    color: #fff;
    margin-top: 30px;
}

.brochure .theme-btn:hover {
    background-color: #171717 !important;
}

.brochure .content {
    margin-top: 16px;
}

.brochure-image img {
    margin-bottom: -100px;
}

/**********
  Contact
***********/
.contact {
    padding-top: 60px;
}

.project-location+.contact {
    padding-top: 90px;
}

.contact-form label {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-form input {
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 35px;
    color: var(--black);
    box-shadow: none;
    font-weight: 500;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #999;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form textarea {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    color: var(--black);
    box-shadow: none;
    width: 100%;
    padding: 10px;
    font-weight: 500;
}

.contact-form input:focus, .contact-form textarea:focus {
    box-shadow: none;
    border: 1px solid var(--black);
    outline: none;
}

.contact-form {
    padding-bottom: 90px;
}

/*********
  Footer 
**********/
footer {
    background-color: var(--black);
    padding: 50px;
    margin: 0 20px;
    border-radius: 10px;
}

.footer-logo img{
    width: 200px;
}

.footer-content p {
    margin: 20px 0 25px;
    opacity: 0.6;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.footer-social-links ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #474747;
    border: 1px solid #ffffff30;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-social-links ul li a:hover {
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-social-links ul li a:hover svg,
.footer-social-links ul li a:hover path {
    fill: var(--black);
}

.footer-social-links span {
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-transform: capitalize;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 20px;
}

.footer-links ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.footer-links ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    opacity: 0.6;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-links ul li a:hover, .footer-links ul li a.active {
    opacity: 1;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.footer-form {
    margin-top: 30px;
    position: relative;
}

.footer-form input {
    border: 1px solid #ffffff30;
    background-color: #474747;
    height: 50px;
    border-radius: 35px;
    box-shadow: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer-form input::placeholder {
    color: #fff;
    opacity: 0.6;
    font-size: 18px;
    font-weight: 400;
}

.footer-form input:focus {
    background-color: #474747;
    box-shadow: none;
    border: 1px solid #ffffff30;
    color: #fff;
}

.footer-form button {
    padding: 8px 20px;
    border-radius: 35px;
    background-color: #fff;
    color: var(--black);
    box-shadow: none;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 5px;
    right: 7px;
}

/***********
  Copyright 
************/
.copyright {
    padding: 20px 0;
}

.copyright-content {
    padding: 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    margin: 0;
}

.copyright-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.copyright-content ul li {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.copyright-content ul li:not(:last-child) {
    margin-right: 16px;
}

.copyright-content ul li a {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--black);
    display: inline-block;
    text-decoration: none;
}

.copyright-content ul li:not(:last-child)::after {
    content: '';
    height: 70%;
    width: 2px;
    background-color: #e0e0e0;
    margin: 0 10px;
    position: absolute;
    right: -22px;
    bottom: 2px;
}

/**************************/
/*******About Page*********/
/**************************/

/* About Banner */
.about-banner {
    margin-top: 60px;
    margin-left: 2px;
    margin-right: 2px;
}

.hero-banner-image {
    background: linear-gradient(100.26deg, #FFE3C5 0%, #A6EFFF 100%);
    /*padding-top: 46px;*/
    border-radius: 10px;
}

.hero-banner-image img {
    margin: 0 0 -38px;
    max-width: 100%;
}

/* Approach */
.approach-block {
    padding: 30px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    flex: 1;
}

.approach-content-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 30px;
}

.approach-block h3 {
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
    color: var(--black);
    margin: 30px 0 15px;
}

.approach .section-title p {
    margin-top: 16px;
}

.approach-block .content {
    margin: 0;
}

/* About Icons */

.about-icons {
    padding: 85px 0 0;
}

.about-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    gap: 16px;
}

.about-icons .about-flex {
    flex: 1;
}

.about-icons .about-flex span {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icons .about-flex h6 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 3px;
    color: var(--black);
}

.about-icons .about-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    gap: 10px;
}

.about-icons .about-flex:first-child span {
    background-color: #F59B501A;
}

.about-icons .about-flex:nth-child(2) span {
    background-color: #007AFF1A;
}

.about-icons .about-flex:nth-child(3) span {
    background-color: #9C69DF1A;
}

.about-icons .about-flex:nth-child(4) span {
    background-color: #F59B501A;
}

.about-icons .about-flex:nth-child(5) span {
    background-color: #9C69DF1A;
}

.about .about-flex-content p,.about .about-flex-content div {
    margin: 0;
}

/* History */
.history .section-title {
    margin-bottom: 30px;
}

.history-wrapper {
    position: relative;
}

.history-wrapper::after {
    content: '';
    position: absolute;
    background-color: var(--light-gray);
    height: 4px;
    top: 22px;
    left: 40px;
    width: 100%;
    z-index: -4;
}

.history .section-title p {
    margin-top: 16px;
}

.history-year span {
    width: 48px;
    height: 48px;
    display: inline-block;
    border: 2px solid #000;
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.history-year span::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #000;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.history-slider .owl-item:nth-child(odd) .history-wrapper .history-year span {
    border: 4px solid var(--light-gray);
}

.history-slider .owl-item:nth-child(odd) .history-wrapper .history-year span::after {
    background-color: var(--light-gray);
}

.history-slider .owl-item .history-wrapper .history-year span {
    border: 4px solid var(--light-gray);
}

.history-slider .owl-item .history-wrapper .history-year span::after {
    background-color: var(--light-gray);
}

.history-box {
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    padding: 30px;
    position: relative;
    background-color: #fff;
    margin-top: 30px;
}

.history-year h6 {
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.history-box>.arrow {
    background-color: #fff;
    width: 30px;
    height: 30px;
    border: 2px solid var(--light-gray);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: -16px;
    left: 13px;
    border-width: 2px 0px 0px 2px;
}

.history-box .history-content:not(:last-child) {
    margin-bottom: 30px;
}

.history-box .history-content h6 {
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.history-box .history-content span {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--dark-gray);
}

.history .owl-item.center.active .history-year span {
    border: 4px solid #F59B50;
}

.history .owl-item.center.active .history-year span::after {
    background-color: #F59B50;
}

.history .owl-item.center.active .history-content h6 {
    color: #F59B50;
}

.history .owl-item.center.active .history-box {
    background-color: #FFFDFC;
}

.history .owl-item.center.active .history-box>.arrow {
    background-color: #FFFDFC;
}

/* Team */
.team .section-title {
    margin-bottom: 30px;
}

.team-block {
    position: relative;
    overflow: hidden;
}

.team .content {
    margin-top: 15px;
}

.team-content {
    background-color: #00000020;
    backdrop-filter: blur(80px);
    border: 2px solid #ffffff30;
    border-radius: 10px;
    padding: 10px 16px;
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.team-content h5 {
    font-weight: 700;
    font-size: 18px;
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 2px;
}

.team-content p {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    color: #fff;
}

.team-block:hover .team-content {
    transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.slider-button-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.slider-button-block .owl-next,
.slider-button-block .owl-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: 2px solid var(--light-gray);
    background-color: transparent;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;

}

.slider-button-block .owl-next:hover,
.slider-button-block .owl-prev:hover {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    background-color: var(--black);
}

.slider-button-block .owl-next:hover svg,
.slider-button-block .owl-next:hover path,
.slider-button-block .owl-prev:hover svg,
.slider-button-block .owl-prev:hover path {
    fill: #fff;
}

/* Awards */

.awards-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.award-block {
    flex: 1;
}

.approach-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 30px;
}

.approach-wrapper .award-block .award-image {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    height: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-wrapper .award-block .award-image img {
    height: 280px;
}

.approach-wrapper .award-block h3 {
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
    color: var(--black);
    margin: 16px 0 5px;
}

.approach-wrapper .award-block p {
    font-weight: 400;
    font-size: 18px;
    color: var(--dark-gray);
    margin: 0;
}

/**********************/
/*****Service Page*****/
/**********************/

/* Service Icons */
.service-icons {
    padding: 85px 0 0;
}

.service-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    gap: 16px;
}

.service-icons .service-flex {
    flex: 1;
}

.service-icons .service-flex span {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icons .service-flex h6 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 0;
    color: var(--black);
}

.service-icons .service-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.service-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 10px;
}

.service-icons .service-flex:first-child span {
    background-color: #F59B501A;
}

.service-icons .service-flex:nth-child(2) span {
    background-color: #007AFF1A;
}

.service-icons .service-flex:nth-child(3) span {
    background-color: #9C69DF1A;
}

.service-icons .service-flex:nth-child(4) span {
    background-color: #F59B501A;
}

.service-icons .service-flex:nth-child(5) span {
    background-color: #9C69DF1A;
}

.service .service-flex-content p {
    margin: 0;
}

/****************************/
/*******Project Page*********/
/****************************/
.project-page .section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-page .section-title h5 {
    margin-bottom: 10px;
}

.project-page .section-title form {
    position: relative;
    width: 500px;
}

.project-page .section-title form input {
    height: 40px;
    border-radius: 35px;
    border: 1px solid #e0e0e0;
    padding: 0 46px;
    box-shadow: none;
    font-weight: 500;
    font-size: 16px;
}

.project-page .section-title form input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--black);
}

.project-page .section-title form img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 20px;
}

.project-page .section-title form input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #999;
}

.project-wrapper {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    height: 100%;
}

.project-content-block {
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border-top: 0;
}

.project-content-block>span {
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black);
    display: inline-block;
}

.project-content-block h6 {
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 10px;
    color: var(--black);
}

.project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-link span {
    font-weight: 600;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black);
    display: inline-block;
}

.project-image-block {
    position: relative;
}

.project-image-block .upcoming-badge {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    border-radius: 35px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    padding: 6px 15px;
    text-transform: capitalize;
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 10px;
    border: 1px solid #ffffff20;
    display: inline-block;
}

.project-image-block img {
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid var(--light-gray);
    width: 100%;
}

.project .nav {
    border: 0;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    overflow-y: auto;
}

.project .nav .nav-item {
    border: 0;
    flex-shrink: 0;
}

.project .nav .nav-item:not(:last-child) {
    margin-right: 20px;
}

.project .nav .nav-item .nav-link.active {
    border: 1px solid transparent;
    background-color: var(--black);
    color: #fff;
}

.project .nav .nav-item .nav-link {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--black);
    margin: 0;
    padding: 7px 20px;
    border-radius: 35px;
    border: 1px solid var(--light-gray);
}

.project .nav .nav-item .nav-link:hover {
    border: 1px solid transparent;
    background-color: var(--black);
    color: #fff;
}

.project .load-btn {
    margin-top: 16px;
}

.project .load-btn .theme-btn {
    background-color: #fff;
}

/**************************************/
/*********Project Deatil Page**********/
/**************************************/
.project-detail-banner {
    padding: 40px 0 60px;
}

.project-share {
    margin-top: 120px;
}

.project-share-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-share-title h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 10px;
}

.project-share-title .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-detail-images img {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
}

.project-detail-images.group-image img:first-child {
    margin-bottom: 25px;
}

.project-images-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}

.project-images-wrapper .first-block {
    flex: 0 0 57.8%;
}

.project-images-wrapper .second-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-images-wrapper img {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
}

.project-share-title .theme-btn:hover svg,
.project-share-title .theme-btn:hover path {
    fill: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-share-title ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.project-share-title ul li {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.project-share-title ul li:not(:last-child) {
    margin-right: 30px;
}

.project-share-title ul li span {
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
}

.project-share-title ul li::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--black);
    border-radius: 50%;
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.project-share-title ul li:last-child::after {
    display: none;
}

.project-location .project-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

.project-title h5 {
    font-weight: 700;
    font-size: 30px;
    color: var(--black);
    margin-bottom: 40px;
    text-transform: capitalize;
}

.amenities-block {
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.amenities-block h6 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
    margin: 20px 0 0;
}

.plans .plan-wrapper {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
}

.plans .plan-wrapper .plan-image img {
    border-radius: 10px 10px 0 0;
}

.plans .plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-top: 2px solid var(--light-gray);
}

.plans .plan-content h6 {
    font-weight: 700;
    font-size: 30px;
    text-transform: capitalize;
    color: var(--black);
    margin-bottom: 0;
}

.plan-content .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.plan-content .theme-btn:focus {
    color: #fff;
}

.plan-content .theme-btn:focus svg,
.plan-content .theme-btn:focus path,
.plan-content .theme-btn:hover svg,
.plan-content .theme-btn:hover path {
    fill: #fff;
}

.project-overview .project-overview-image img {
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

.project-overview {
    padding-top: 60px;
}

.project-overview .section-title p {
    margin-top: 15px;
}

.project-overview .section-title {
    padding-left: 38px;
}

.project-pills .project-pill-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.project-pills .project-pill-wrapper ul li {
    display: inline-flex;
    align-items: center;
}

.project-pills .project-pill-wrapper ul li:not(:last-child) {
    margin-right: 16px;
}

.project-pills {
    margin: 40px 0 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-pill-wrapper {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 20px 20px;
}

.project-sticky-pills {
    display: block;
    background-color: #fff;
    border-radius: 0;
    padding: 20px 20px;
    margin-top: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-pill-sticky {
    position: sticky;
    top: 62px;
    z-index: 99;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-pill-wrapper .theme-btn {
    border-color: var(--light-gray);
    border-width: 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.project-pill-wrapper .theme-btn:hover {
    border-color: var(--black);
    border-width: 2px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

/****************************/
/*********Blog Page**********/
/****************************/
.blog-page .section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-page .section-title h5 {
    margin-bottom: 10px;
}

.blog-page .section-title form {
    position: relative;
    width: 500px;
}

.blog-page .section-title form input {
    height: 40px;
    border-radius: 35px;
    border: 1px solid #e0e0e0;
    padding: 0 46px;
    box-shadow: none;
    font-weight: 500;
    color: var(--black);
}

.blog-page .section-title form input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--black);
}

.blog-page .section-title form img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 20px;
}

.blog-page .section-title form input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #999;
}

.blog-page .load-btn {
    margin-top: 16px;
}

.blog-page .load-btn .theme-btn {
    background-color: #fff;
}

/********************************/
/*********Resource Page**********/
/********************************/
.resource-page {
    padding: 120px 0 90px;
}

.resource .section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.resource .section-title h5 {
    margin-bottom: 10px;
}

.resource .section-title form {
    position: relative;
    width: 500px;
}

.resource .section-title form input {
    height: 40px;
    border-radius: 35px;
    border: 1px solid #e0e0e0;
    padding: 0 46px;
    box-shadow: none;
}

.resource .section-title form img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 20px;
}

.resource .section-title form input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #999;
}

.resource-box {
    padding: 30px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-box .resource-pdf {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.resource-box .resource-pdf span {
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
    text-transform: capitalize;
}

.resource-box .resource-pdf .theme-btn:focus .resource-box .resource-pdf .theme-btn:focus {
    color: #fff;
}

.resource-box .resource-pdf .theme-btn:focus svg,
.resource-box .resource-pdf .theme-btn:focus path,
.resource-box .resource-pdf .theme-btn:hover svg,
.resource-box .resource-pdf .theme-btn:hover path {
    fill: #fff;
}

.resource-box .resource-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.resource-box .resource-content>div {
    flex: 0 0 65%;
}

.resource-box .resource-content span {
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    color: var(--black);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.resource-box .resource-content h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--black);
    text-transform: capitalize;
    margin-bottom: 0;
}

/*****************************/
/*********Contact Page********/
/*****************************/
.contact-page {
    padding: 120px 0 90px;
}

.contact-page .section-title, .resource-page .section-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.resource-page .section-title h5,
.contact-page .section-title h5 {
    margin-bottom: 10px;
}

.search-form {
    position: relative;
    width: 500px;
}

.search-form input {
    height: 40px;
    border-radius: 35px;
    border: 1px solid #e0e0e0;
    padding: 0 46px;
    box-shadow: none;
    font-weight: 500;
}

.search-form input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--black);
}

.search-form img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: 20px;
}

.search-form input::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #999;
}

.contact-page .contact-wrapper {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-page .contact-wrapper .contact-block {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.contact-page .contact-wrapper .contact-block h6 {
    font-weight: 700;
    font-size: 30px;
    color: var(--black);
    margin-bottom: 5px;
}

.contact-page .contact-wrapper .contact-block p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-gray);
    margin: 0;
}

.contact-page .contact-wrapper .contact-block span {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #007AFF;
}

.contact-links {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-page .contact-links a {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    color: var(--black);
    border: 2px solid var(--light-gray);
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 6px 20px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-wrapper .contact-block.blue span {
    background-color: #f2f8ff;
}

.contact-wrapper .contact-block.orange span {
    background-color: #fef7f1;
}

.contact-wrapper .contact-block.purple span {
    background-color: #f7f3fc;
}

.contact-wrapper .contact-links.purple a:hover {
    background-color: #9C69DF;
    border: 2px solid #9C69DF;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-wrapper .contact-links.blue a:hover {
    background-color: #007AFF;
    border: 2px solid #007AFF;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-wrapper .contact-links.orange a:hover {
    background-color: #F59B50;
    border: 2px solid #F59B50;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-wrapper .contact-links a:hover svg,
.contact-wrapper .contact-links a:hover path {
    fill: #fff;
}

/*********************************/
/*********Blog Deatil Page********/
/*********************************/
.category-nav {
    margin: 40px 0 90px;
    padding-left: 38px;
    font-size: 20px;
}

.blog-banner .blog-detail-image img {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.blog-detail {
    margin: 40px 0 90px;
}

.blog-detail-content {
    padding: 0 1rem;
}

.blog-detail-content p {
    font-weight: 400;
    font-size: 18px;
    color: var(--dark-gray);
    margin: 0;
}

.blog-detail-block h5 {
    font-weight: 600;
    font-size: 30px;
    margin: 0;
    color: var(--black);
    margin-bottom: 16px;
}

.blog-detail-block:not(:last-child) {
    margin-bottom: 30px;
}

.blog-detail-content p:not(:last-child) {
    margin-bottom: 15px;
}

.blog-detail-content ul {
    margin: 0;
}

.blog-detail-content ul li:not(:last-child) {
    margin-bottom: 4px;
}

.blog-detail-content ul li::marker {
    color: var(--dark-gray);
}

.blog-title {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.blog-title h2 {
    font-weight: 700;
    font-size: 44px;
    color: var(--black);
    margin-bottom: 10px;
}

.blog-title ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.blog-title ul li {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.blog-title ul li:not(:last-child) {
    margin-right: 30px;
}

.blog-title ul li span {
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
}

.blog-title ul li:last-child span {
    font-weight: 600;
    color: var(--dark-gray);
}

.blog-title ul li::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--black);
    border-radius: 50%;
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.blog-title ul li:last-child::after {
    display: none;
}

.blog-sub-title {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--black);
}

.tag-block .blog-sub-title {
    margin-bottom: 20px;
}

.blog-detail-pagination {
    padding-top: 40px;
    /*margin-left: 38px;*/
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-detail-pagination a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-detail-pagination a span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light-gray);
}

.blog-detail-pagination a:hover span {
    background-color: var(--black);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-detail-pagination a:hover span svg,
.blog-detail-pagination a:hover span path {
    fill: #fff;
}

.blog-block {
    padding: 30px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
}

.blog-block:not(:last-child) {
    margin-bottom: 30px;
}

.blog-block .tag-wrapper span {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
    border-radius: 35px;
    border: 2px solid var(--light-gray);
    padding: 6px 20px;
}

.blog-block .tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
}

.blog-social-links ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.blog-social-links ul li {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.blog-social-links ul li:not(:last-child) {
    margin-right: 10px;
}

.blog-social-links ul li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-social-links ul li a svg,
.blog-social-links ul li a path {
    fill: var(--black);
}

.blog-social-links ul li a:hover {
    background-color: var(--black);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-social-links ul li a:hover svg,
.blog-social-links ul li a:hover path {
    fill: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.blog-block .blog-post {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.blog-block .blog-post:not(:last-child) {
    margin-bottom: 20px;
}

.blog-block .blog-post img {
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    width: 160px;
    height: 120px;
}

.blog-post-content a {
    font-weight: 700;
    font-size: 18px;
    color: var(--black);
    margin: 10px 0 10px;
    line-height: 24px;
    text-decoration: none;
    display: inline-block;
}

.blog-post-content p {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-gray);
    margin: 0;
}

.blog-post-content .blog-date span {
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
    position: relative;
    text-transform: capitalize;
}

.blog-post-content .blog-date span {
    margin-right: 16px;
    margin-bottom: 0;
}

.blog-post-content .blog-date span:last-child {
    margin-right: 0;
}

.blog-post-content .blog-date span::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    padding: 0;
    background-color: var(--black);
    position: absolute;
    bottom: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    margin: -8px 5px;
}

.blog-post-content .blog-date span:last-child::after {
    display: none;
}

.blog-form {
    position: relative;
    margin-top: 8px;
}

.blog-block span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    color: var(--black);
    display: inline-block;
    margin-bottom: 4px;
}

.blog-block p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 18px;
    color: #999;
    line-height: 22px;
}

.blog-block form {
    margin-top: 20px;
}

.blog-block form label {
    font-weight: 400;
    font-size: 16px;
    color: var(--black);
    display: inline-block;
    text-transform: capitalize;
}

.blog-form input {
    border: 1px solid #e0e0e0;
    background-color: #fff;
    height: 50px;
    border-radius: 35px;
    box-shadow: none;
    color: #fff;
    font-size: 16px;
}

.blog-form input:focus {
    background-color: #fff;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    color: var(--black);
}

.blog-form button {
    padding: 8px 20px;
    border-radius: 35px;
    background-color: var(--black);
    color: #fff;
    box-shadow: none;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 5px;
    right: 7px;
}

.blog-form input::placeholder {
    font-weight: 500;
    font-size: 18px;
    color: #999;
    text-transform: capitalize;
}

/********************
Privacy & Terms Page 
********************/
.privacy-terms-wrapper {
    padding: 120px 0 90px;
}

.privacy-title {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-title h2 {
    font-weight: 700;
    font-size: 44px;
    color: var(--black);
    margin-bottom: 10px;
}

.privacy-detail {
    margin: 40px 0 90px;
}

.privacy-detail-content p {
    font-weight: 400;
    font-size: 18px;
    color: var(--dark-gray);
    margin: 0;
}

.privacy-detail-block h5 {
    font-weight: 600;
    font-size: 30px;
    margin: 0;
    color: var(--black);
    margin-bottom: 16px;
}

.privacy-detail-block:not(:last-child) {
    margin-bottom: 30px;
}

.privacy-detail-content p:not(:last-child) {
    margin-bottom: 15px;
}

.privacy-detail-content ul {
    margin: 0;
}

.privacy-detail-content ul li:not(:last-child) {
    margin-bottom: 4px;
}

.privacy-detail-content ul li::marker {
    color: var(--dark-gray);
}

/* *****************
scrollbar design start
********************/
.project-pill-wrapper::-webkit-scrollbar,
.project .nav::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.project-pill-wrapper::-webkit-scrollbar-thumb,
.project .nav::-webkit-scrollbar-thumb {
    border-radius: 16px;
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 10%);
    background-color: rgba(255, 255, 255, 0);
}

.project-pill-wrapper::-webkit-scrollbar-track,
.project .nav::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #eeeeee00;
}

/* *****************
scrollbar design end
********************/

/* All kind Of btns Styles */
.ud-btn {
    border-radius: 12px;
    display: inline-block;
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 15px;
    font-style: normal;
    letter-spacing: 0em;
    padding: 5px 10px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .ud-btn i {
        margin-left: 10px;
        font-size: 16px;
        transform: rotate(-45deg);
    }

    .ud-btn:hover, .ud-btn:focus, .ud-btn:active {
        outline: none;
        box-shadow: none;
    }

@media (max-width: 339px) {
    .ud-btn {
        padding: 13px 25px;
    }
}

.ud-btn2 {
    font-family: var(--title-font-family);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

    .ud-btn2 i {
        margin-left: 10px;
        font-size: 16px;
        transform: rotate(-45deg);
    }

    .ud-btn2:hover {
        outline: none;
    }

.btn-thm {
    background-color: #EB6753;
    border: 1px solid #EB6753;
    color: #ffffff;
}

.btn-dark {
    background-color: var(--headings-color);
    border: 1px solid var(--headings-color);
    color: #ffffff;
}

    .ud-btn:before,
    .btn-gray:before,
    .btn-dark:before,
    .btn-thm:before,
    .btn-thm2:before,
    .btn-thm3:before,
    .btn-thm-border:before,
    .btn-white:before,
    .btn-light-gray:before,
    .btn-transparent:before,
    .btn-transparent2:before {
        background-color: #EE4C34;
        content: "";
        height: 100%;
        left: -100%;
        position: absolute;
        top: 0;
        width: 0;
        z-index: -1;
        -webkit-transform: skew(50deg);
        -moz-transform: skew(50deg);
        -o-transform: skew(50deg);
        transform: skew(50deg);
        -webkit-transition: width 0.6s;
        -moz-transition: width 0.6s;
        -o-transition: width 0.6s;
        transition: width 0.6s;
        transform-origin: top left;
    }

    .ud-btn:hover,
    .btn-gray:hover,
    .btn-dark:hover,
    .btn-thm:hover,
    .btn-thm2:hover,
    .btn-thm3:hover,
    .btn-thm-border:hover,
    .btn-white:hover,
    .btn-light-gray:hover,
    .btn-transparent:hover,
    .btn-transparent2:hover {
        color: #ffffff;
    }

        .ud-btn:hover:before,
        .btn-gray:hover:before,
        .btn-dark:hover:before,
        .btn-thm:hover:before,
        .btn-thm2:hover:before,
        .btn-thm3:hover:before,
        .btn-thm-border:hover:before,
        .btn-white:hover:before,
        .btn-light-gray:hover:before,
        .btn-transparent:hover:before,
        .btn-transparent2:hover:before {
            height: 100%;
            width: 200%;
        }

.btn-gray {
    background-color: #f7f7f7;
    border: 1px solid transparent;
    color: var(--headings-color);
    font-size: 13px;
    font-weight: 400;
    height: 50px;
    padding: 10px 30px;
}

.btn-dark:hover {
    background-color: #EB6753;
    border: 1px solid #EB6753;
}

.btn-thm2 {
    background-color: rgba(235, 103, 83, 0.1);
    color: #EB6753;
}

.btn-thm3 {
    background-color: #ffffff;
    border: 1px solid #EB6753;
    color: #EB6753;
}

.btn-thm-border {
    background-color: #ffffff;
    border: 1px solid #EB6753;
    color: var(--headings-color);
}

.btn-white,
.btn-white2 {
    background-color: #ffffff;
    border: 1px solid var(--headings-color);
}

    .btn-white:hover,
    .btn-white2:hover {
        border: 1px solid #EB6753;
    }

    .btn-white2:before {
        background-color: #181A20;
    }

    .btn-white2:hover {
        border: 1px solid #181A20;
    }

.btn-light-gray,
.btn-transparent {
    background-color: #F7F7F7;
    border: 1px solid var(--headings-color);
}

    .btn-light-gray:hover,
    .btn-transparent:hover {
        border: 1px solid #EB6753;
    }

.btn-transparent,
.btn-transparent2 {
    background-color: transparent;
}

.btn-transparent2 {
    border: 1px solid #ffffff;
    color: #ffffff;
}

    .btn-transparent2:hover, .btn-transparent2:focus, .btn-transparent2:active {
        border: 1px solid #ffffff;
        color: #EB6753;
    }

        .btn-transparent2:hover:before, .btn-transparent2:focus:before, .btn-transparent2:active:before {
            background-color: #ffffff;
        }

.add-property {
    font-size: 14px;
    height: 47px;
    padding: 9px 22px;
}

    .add-property:hover {
        color: #ffffff;
    }

.menu-btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

    .menu-btn:hover {
        background-color: #EB6753;
        border: 1px solid #EB6753;
    }

.signup-modal .btn-white i,
.signup-modal .btn-fb i,
.signup-modal .btn-apple i {
    transform: rotate(0deg);
    position: absolute;
    left: 10px;
    top: 12px;
}

.btn-fb {
    background-color: #3A77EA;
    border: 1px solid #3A77EA;
    color: #ffffff;
}

    .btn-fb:hover {
        border-color: #EB6753;
    }

.btn-apple {
    background-color: #181818;
    border: 1px solid #181818;
    color: #ffffff;
}

    .btn-apple:hover {
        border-color: #EB6753;
    }

.radio-element {
    position: relative;
}

    .radio-element .form-check-input {
        border: 1px solid var(--headings-color);
        height: 16px;
        margin-top: 0;
        width: 16px;
    }

        .radio-element .form-check-input:focus {
            border: 3px solid var(--headings-color);
            box-shadow: none;
            outline: none;
        }

        .radio-element .form-check-input:checked {
            background-color: #ffffff;
        }

    .radio-element .form-check-label {
        color: #222222;
        font-size: 15px;
        padding-left: 10px;
    }

.checkbox-style1 {
    position: relative;
}

.custom_checkbox {
    display: block;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0em;
    position: relative;
    padding-left: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .custom_checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

        .custom_checkbox input:checked ~ .checkmark {
            background-color: #041e42;
        }

    .custom_checkbox .checkmark {
        border: 1px solid #041e42;
        border-radius: 4px;
        position: absolute;
        top: 10px;
        left: 0;
        height: 16px;
        width: 16px;
    }

        .custom_checkbox .checkmark:after {
            content: "";
            position: absolute;
            left: 5px;
            top: 2px;
            width: 5px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

.switch-style1 input.form-check-input {
    background-color: rgba(235, 103, 83, 0.07);
    border: none;
    height: 30px;
    width: 55px;
}

.switch-style1 .form-check-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-position: left center;
    transition: background-position 0.15s ease-in-out;
}

    .switch-style1 .form-check-input:checked {
        background-color: #041e42;
        box-shadow: none;
    }

    .switch-style1 .form-check-input:focus {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
        box-shadow: none;
        outline: none;
    }

.switch-style1 label.form-check-label {
    color: var(--headings-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0em;
    line-height: 30px;
    margin-left: 17px;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
}

    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:focus {
        box-shadow: none;
        outline: none;
    }

.video-icon {
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--headings-color);
    display: block;
    height: 54px;
    line-height: 54px;
    outline: 1px solid #ffffff;
    outline-offset: 7px;
    text-align: center;
    width: 54px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .video-icon:hover {
        background-color: #EB6753;
        color: #ffffff;
        outline-offset: 10px;
        outline: 1px solid #ffffff;
    }

@media (max-width: 767.98px) {
    .video-icon {
        height: 40px;
        line-height: 40px;
        width: 40px;
        top: 0px;
    }
}

.btn:focus {
    box-shadow: none;
    outline: none;
}
/* Listings Styles */
.listing-style1 {
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  -moz-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  -o-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.listing-style1 .list-thumb {
  overflow: hidden;
  position: relative;
}
.listing-style1 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style1 .list-agent {
  position: absolute;
  right: 30px;
  top: -40px;
}
.listing-style1 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style1 .tag-del {
  background-color: #ffffff;
  border-radius: 4px;
  color: var(--headings-color);
  font-size: 10px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 20px;
  width: 40px;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style1 .list-price {
  background-color: #ffffff;
  border-radius: 6px;
  bottom: 20px;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
  left: 20px;
  padding: 3px 12px;
  position: absolute;
}
.listing-style1 .list-price span {
  font-weight: normal;
}
.listing-style1 .list-meta a {
  font-family: var(--title-font-family);
  font-size: 13px;
  margin-right: 25px;
}
.listing-style1 .list-meta a:last-child {
  margin-right: 0;
}
@media (max-width: 320px) {
  .listing-style1 .list-meta a {
    margin-right: 15px;
  }
}
.listing-style1 .list-meta span {
  margin-right: 6px;
}
.listing-style1 .list-content {
  padding: 20px;
  position: relative;
}
.listing-style1 .list-title {
  margin-bottom: 2px;
}
.listing-style1 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style1 .list-title a:hover {
  color: var(--headings-color);
}
.listing-style1 .list-text {
  color: #717171;
  margin-bottom: 10px;
}
.listing-style1 .list-meta2 a {
  background-color: #ffffff;
  border-radius: 6px;
  height: 35px;
  line-height: 40px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-right: 2px;
}
.listing-style1 .list-meta2 a:hover {
  background-color: #F7F7F7;
  color: var(--headings-color);
}
.listing-style1 .for-what {
  font-size: 13px;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 400;
}
.listing-style1 hr {
  background-color: #DDDDDD;
  opacity: 1;
}
.listing-style1:hover .list-title {
  text-decoration: underline;
}
.listing-style1:hover .list-tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style1:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}
.listing-style1.style2 {
  box-shadow: none;
  border: 1px solid #DDDDDD;
}
.listing-style1.style3 {
  -webkit-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -moz-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -o-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
}
.listing-style1.style4 {
  box-shadow: none;
}
.listing-style1.style4 .list-thumb {
  border-radius: 6px;
  overflow: hidden;
}
.listing-style1.style4 .list-content {
  padding-left: 0;
  padding-right: 0;
}
.listing-style1.listing-type {
  border-radius: 12px;
  display: flex;
}
@media (max-width: 767.98px) {
  .listing-style1.listing-type {
    display: block;
  }
}
.listing-style1.listing-type .list-content {
  padding: 30px;
}
.listing-style1.listing-type .list-text2 {
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-size: 13px;
  font-weight: normal;
}
.listing-style1.listing-type img {
  height: 100%;
}
.listing-style1.style12 {
  border-radius: 12px;
}
@media (max-width: 991.98px) {
  .listing-style1.style12 .list-agent {
    right: 0px;
  }
  .listing-style1.style12 .list-agent img {
    width: 70px;
  }
}
.listing-style1.sidebar-style1 {
  box-shadow: none;
}
.listing-style1.sidebar-style1 .list-thumb {
  border-radius: 6px;
}
.listing-style1.sidebar-style1 .list-meta a {
  margin-right: 10px;
}
.listing-style1.mini-style {
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  -moz-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  -o-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  left: 40px;
  max-width: 305px;
  position: absolute;
  top: -223px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .listing-style1.mini-style {
    position: relative;
    top: 0;
  }
}
@media (max-width: 425px) {
  .listing-style1.mini-style {
    left: 0;
  }
}
.listing-style1.mini-style .btn {
  padding: 0;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 600;
}
.listing-style1.mini-style .btn i {
  margin-left: 10px;
  transform: rotate(-30deg);
}
.listing-style1.mini-style .list-content {
  padding: 30px;
}
.listing-style1.mini-style {
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  -moz-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  -o-box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  box-shadow: 0px 0px 50px rgba(24, 26, 32, 0.07);
  left: 40px;
  max-width: 305px;
  position: absolute;
  top: -223px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .listing-style1.mini-style {
    position: relative;
    top: 0;
  }
}
@media (max-width: 425px) {
  .listing-style1.mini-style {
    left: 0;
  }
}
.listing-style1.mini-style .btn {
  padding: 0;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 600;
}
.listing-style1.mini-style .btn i {
  margin-left: 10px;
  transform: rotate(-30deg);
}
.listing-style1.mini-style .list-content {
  padding: 30px;
}
.listing-style1.at-home9-hero .list-price {
  background-color: #EB6753;
  bottom: 17px;
  color: #ffffff;
  display: inline-block;
  left: 0;
  max-width: 127px;
  position: relative;
}
.listing-style1.at-home9-hero .list-price span {
  font-weight: normal;
}
.listing-style1.at-home9-hero .list-content {
  padding: 35px 20px 20px;
}
.listing-style1.dashboard-style {
  box-shadow: none;
}
.listing-style1.dashboard-style .list-thumb {
  border-radius: 12px;
  height: 90px;
  max-width: 110px;
}
.listing-style1.dashboard-style img {
  border-radius: 12px;
}
.listing-style1.dashboard-style .list-text {
  margin-bottom: 0px;
}
.listing-style1.dashboard-style .list-price {
  bottom: 0;
  left: 0;
  position: relative;
  padding: 0;
}

.listing-style5 {
  margin-bottom: 30px;
  position: relative;
}
.listing-style5 .list-thumb {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.listing-style5 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style5 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style5 .list-price {
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
}
.listing-style5 .list-price span {
  font-weight: normal;
}
.listing-style5 .list-meta a {
  font-family: var(--title-font-family);
  font-size: 13px;
  margin-right: 12px;
}
.listing-style5 .list-meta a:last-child {
  margin-right: 0;
}
.listing-style5 .list-meta span {
  margin-right: 6px;
}
.listing-style5 .list-meta2 {
  bottom: 10px;
  position: absolute;
  right: 20px;
  transform: translateY(125px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style5 .list-meta2 a {
  background-color: rgba(24, 26, 32, 0.9);
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  height: 35px;
  line-height: 38px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style5 .list-meta2 a:last-child {
  margin-bottom: 0;
}
.listing-style5 .list-meta2 a:hover {
  background-color: rgba(235, 103, 83, 0.9);
  color: #ffffff;
}
.listing-style5 .list-content {
  padding: 20px 0 0;
}
.listing-style5 .list-title {
  margin-bottom: 2px;
}
.listing-style5 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style5 .list-title a:hover {
  color: var(--headings-color);
}
.listing-style5 .list-text {
  color: #717171;
  margin-bottom: 0;
}
.listing-style5:hover .list-tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style5:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}
.listing-style5:hover .list-meta2 {
  transform: translateY(0px);
}

.listing-style6 {
  margin-bottom: 30px;
  position: relative;
}
.listing-style6 .list-thumb {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.listing-style6 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 135px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 .list-meta {
  position: absolute;
  right: 10px;
  top: 20px;
  transform: translateX(45px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 .list-meta a {
  background-color: rgba(24, 26, 32, 0.9);
  border: 1px solid var(--headings-color);
  border-radius: 6px;
  color: #ffffff;
  display: block;
  height: 35px;
  line-height: 40px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 .list-meta a:last-child {
  margin-bottom: 0;
}
.listing-style6 .list-meta a:hover {
  background-color: rgba(235, 103, 83, 0.9);
  border: 1px solid #EB6753;
  color: #ffffff;
}
.listing-style6 .list-price {
  background-color: #ffffff;
  border: 1px solid #181A20;
  border-radius: 6px;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
  right: 20px;
  top: 18px;
  padding: 8px 15px 8px 15px;
  position: absolute;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
  .listing-style6 .list-price {
    display: inline-block;
    left: 0;
    position: relative;
    top: 0;
  }
}
.listing-style6 .list-content {
  background-color: #ffffff;
  border-radius: 12px;
  bottom: 10px;
  left: 10px;
  padding: 20px 20px 10px;
  position: absolute;
  right: 10px;
}
@media (max-width: 360px) {
  .listing-style6 .list-content {
    border: 1px solid #DDDDDD;
    left: 0;
    position: relative;
    right: 0;
  }
}
.listing-style6 .list-title {
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.listing-style6 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style6 .list-title a:hover {
  color: var(--headings-color);
}
.listing-style6 .list-text {
  color: #717171;
  margin-bottom: 0;
}
.listing-style6:hover .list-tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style6:hover .list-meta {
  transform: translateX(0px);
}
.listing-style6:hover .list-price {
  background-color: var(--headings-color);
  color: #ffffff;
}
.listing-style6:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}

.listing-style7 {
  -webkit-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  -moz-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  -o-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.listing-style7 .list-thumb {
  overflow: hidden;
  position: relative;
}
.listing-style7 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 135px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-meta {
  bottom: 10px;
  position: absolute;
  right: 20px;
  transform: translateY(125px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-meta a {
  background-color: #ffffff;
  border-radius: 6px;
  color: var(--headings-color);
  display: inline-block;
  height: 35px;
  line-height: 38px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-meta a:last-child {
  margin-bottom: 0;
}
.listing-style7 .list-meta a:hover {
  background-color: rgba(235, 103, 83, 0.9);
  color: #ffffff;
}
.listing-style7 .list-meta2 a {
  font-family: var(--title-font-family);
  font-size: 13px;
  font-weight: normal;
}
.listing-style7 .list-price {
  color: #EB6753;
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-price span {
  font-weight: normal;
}
.listing-style7 .list-content {
  background-color: #ffffff;
  padding: 20px;
}
.listing-style7 .list-title {
  margin-bottom: 10px;
}
.listing-style7 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style7 .list-title a:hover {
  color: var(--headings-color);
  text-decoration: underline;
}
.listing-style7 .list-text {
  color: #717171;
  margin-bottom: 0;
}
.listing-style7:hover .list-tag {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style7:hover .list-meta {
  transform: translateY(0px);
}
.listing-style7:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}
.listing-style7.at-home10 .list-price {
  color: var(--headings-color);
}

.listing-style8 {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-thumb {
  overflow: hidden;
  position: relative;
}
.listing-style8 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 135px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-meta {
  bottom: 10px;
  position: absolute;
  right: 20px;
  transform: translateY(125px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-meta a {
  background-color: rgba(24, 26, 32, 0.9);
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  height: 35px;
  line-height: 38px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-meta a:last-child {
  margin-bottom: 0;
}
.listing-style8 .list-meta a:hover {
  background-color: rgba(235, 103, 83, 0.9);
  color: #ffffff;
}
.listing-style8 .list-meta2 a {
  font-size: 13px;
  font-weight: normal;
  font-family: var(--title-font-family);
}
.listing-style8 .list-price {
  background-color: #ffffff;
  border: 1px solid #181A20;
  border-radius: 0;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 15px 8px 15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-content {
  background-color: #ffffff;
  padding: 20px;
  position: relative;
}
.listing-style8 .list-title {
  margin-bottom: 2px;
}
.listing-style8 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style8 .list-title a:hover {
  color: var(--headings-color);
  text-decoration: underline;
}
.listing-style8 .list-text {
  color: #717171;
  margin-bottom: 0;
}
.listing-style8:hover {
  -webkit-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -moz-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -o-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
}
.listing-style8:hover .list-tag,
.listing-style8:hover .list-tag2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style8:hover .list-price {
  background-color: #181A20;
  color: #ffffff;
}
.listing-style8:hover .list-meta {
  transform: translateY(0px);
}
.listing-style8:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}

.listing-style9 {
  border-radius: 12px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-thumb {
  overflow: hidden;
  position: relative;
}
.listing-style9 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 135px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-meta {
  position: absolute;
  right: 10px;
  top: 20px;
  transform: translateX(45px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-meta a {
  background-color: rgba(24, 26, 32, 0.9);
  border: 1px solid var(--headings-color);
  border-radius: 6px;
  color: #ffffff;
  display: block;
  height: 35px;
  line-height: 40px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-meta a:last-child {
  margin-bottom: 0;
}
.listing-style9 .list-meta a:hover {
  background-color: rgba(235, 103, 83, 0.9);
  border: 1px solid #EB6753;
  color: #ffffff;
}
.listing-style9 .list-meta2 a {
  color: #ffffff;
  font-size: 13px;
  font-weight: normal;
  font-family: var(--title-font-family);
}
.listing-style9 .list-price {
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-content {
  bottom: 0;
  padding: 30px;
  position: absolute;
  width: 100%;
}
.listing-style9 .list-title {
  margin-bottom: 2px;
  color: #ffffff;
}
.listing-style9 .list-title a {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style9 .list-title a:hover {
  color: #ffffff;
}
.listing-style9:hover {
  -webkit-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -moz-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -o-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
}
.listing-style9:hover .list-tag,
.listing-style9:hover .list-tag2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style9:hover .list-meta {
  transform: translateY(0px);
}
.listing-style9:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}

.listing-style10 {
  border-radius: 12px;
  -webkit-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  -moz-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  -o-box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  box-shadow: 0px 1px 4px rgba(24, 26, 32, 0.07);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.listing-style10 .list-thumb {
  overflow: hidden;
  position: relative;
}
.listing-style10 .list-thumb:before {
  background: linear-gradient(180deg, rgba(24, 26, 32, 0) 0%, #181A20 100%);
  border-radius: 12px 12px 0px 0px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.7;
  position: absolute;
  right: 0;
  top: 0;
}
.listing-style10 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 20px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style10 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  left: 135px;
  opacity: 1;
  padding: 2px 12px;
  position: absolute;
  top: 20px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style10 .list-meta {
  bottom: 10px;
  position: absolute;
  right: 20px;
  transform: translateY(125px);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style10 .list-meta a {
  background-color: rgba(24, 26, 32, 0.9);
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  height: 35px;
  line-height: 38px;
  text-align: center;
  width: 35px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
  background-color: rgba(24, 26, 32, 0.7);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style10 .list-meta a:last-child {
  margin-bottom: 0;
}
.listing-style10 .list-meta a:hover {
  background-color: rgba(235, 103, 83, 0.9);
  color: #ffffff;
}
.listing-style10 .list-meta2 a {
  font-size: 13px;
  font-weight: normal;
  font-family: var(--title-font-family);
}
.listing-style10 .list-price {
  bottom: 20px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 15px;
  left: 20px;
  position: absolute;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style10 .list-price span {
  font-weight: normal;
}
.listing-style10 .list-content {
  padding: 20px;
}
.listing-style10 .list-title {
  margin-bottom: 2px;
}
.listing-style10 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style10 .list-title a:hover {
  color: var(--headings-color);
}
.listing-style10 .list-text {
  color: #717171;
  margin-bottom: 10px;
}
.listing-style10:hover .list-title {
  text-decoration: underline;
}
.listing-style10:hover .list-tag,
.listing-style10:hover .list-tag2 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
}
.listing-style10:hover .list-meta {
  transform: translateY(0px);
}

.listing-style11 {
  background-color: #F4EFF7;
  border-radius: 12px;
  margin: 50px 0;
  padding: 70px 60px;
  position: relative;
}
@media (max-width: 991.98px) {
  .listing-style11 {
    padding: 40px 30px;
  }
}
.listing-style11 .list-thumb .img-1 {
  border-radius: 12px;
  position: absolute;
  right: 0;
  top: -50px;
  max-width: 560px;
  max-height: 610px;
}
@media (max-width: 1199.98px) {
  .listing-style11 .list-thumb .img-1 {
    position: relative;
    top: auto;
  }
}
.listing-style11 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  opacity: 1;
  padding: 2px 12px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style11 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  opacity: 1;
  padding: 2px 12px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style11 .list-price span {
  font-weight: normal;
}
.listing-style11 .list-meta a {
  font-size: 15px;
  margin-right: 25px;
  font-family: var(--title-font-family);
  font-weight: 600;
}
.listing-style11 .list-meta a:last-child {
  margin-right: 0;
}
@media (max-width: 320px) {
  .listing-style11 .list-meta a {
    margin-right: 15px;
  }
}
.listing-style11 .list-meta span {
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  color: var(--headings-color);
  display: block;
  font-size: 17px;
  height: 50px;
  line-height: 50px;
  margin-right: 10px;
  text-align: center;
  width: 50px;
}
.listing-style11 .list-meta2 a {
  background-color: #ffffff;
  border-radius: 50%;
  color: var(--headings-color);
  height: 40px;
  line-height: 45px;
  margin-right: 10px;
  text-align: center;
  width: 40px;
}
.listing-style11 .list-meta2 a:last-child {
  margin-right: 0;
}
.listing-style11 .list-title {
  margin-bottom: 8px;
}
.listing-style11 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style11 .list-title a:hover {
  color: var(--headings-color);
}
.listing-style11 .list-text {
  color: #717171;
  margin-bottom: 10px;
}
.listing-style11 .for-what {
  font-size: 13px;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 400;
}

.listing-style13 {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style13 .list-thumb {
  overflow: hidden;
  position: relative;
}
.listing-style13 .list-thumb:before {
  background: linear-gradient(180deg, rgba(24, 26, 32, 0) 0%, #181A20 100%);
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
}
.listing-style13 img {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 320px) {
  .listing-style13 img {
    height: 250px;
  }
}
.listing-style13 .list-title {
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .listing-style13 .list-title {
    font-size: 20px;
  }
}
.listing-style13 .list-meta a {
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  font-family: var(--title-font-family);
}
@media (max-width: 767.98px) {
  .listing-style13 .list-meta a {
    font-size: 13px;
  }
}
.listing-style13 .list-price {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767.98px) {
  .listing-style13 .list-price {
    font-size: 16px;
  }
}
.listing-style13 .list-content {
  bottom: 0;
  padding-bottom: 60px;
  padding-left: 60px;
  position: absolute;
  width: 100%;
}
@media (max-width: 767.98px) {
  .listing-style13 .list-content {
    padding: 30px;
  }
}
@media (max-width: 375px) {
  .listing-style13 .list-content {
    padding: 30px 15px;
  }
}
.listing-style13 .list-content .ud-btn {
  border-radius: 0;
  position: absolute;
  right: 30px;
  top: 30px;
}
@media (max-width: 767.98px) {
  .listing-style13 .list-content .ud-btn {
    position: relative;
    right: auto;
    top: 15px;
  }
}
.listing-style13 .list-title {
  color: #ffffff;
}
.listing-style13 .list-title a {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style13 .list-title a:hover {
  color: #ffffff;
}
.listing-style13:hover .list-thumb img {
  transform: scale(1.1) rotate(-1deg);
}

.listing-style14 {
  border-radius: 12px;
  padding: 10px 80px 90px 0;
  position: relative;
}
.listing-style14 .list-thumb .img-1 {
  border-radius: 12px;
  position: absolute;
  right: 0;
  top: -50px;
  max-width: 560px;
  max-height: 610px;
}
@media (max-width: 1199.98px) {
  .listing-style14 .list-thumb .img-1 {
    position: relative;
    top: auto;
  }
}
.listing-style14 .list-tag {
  background-color: #EB6753;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  opacity: 1;
  padding: 2px 12px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style14 .list-tag2 {
  background-color: #181A20;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--title-font-family);
  font-weight: 600;
  opacity: 1;
  padding: 2px 12px;
  transform: translateY(0px);
  visibility: visible;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style14 .list-price span {
  font-weight: normal;
}
.listing-style14 .list-meta a {
  font-size: 15px;
  margin-right: 25px;
  font-family: var(--title-font-family);
  font-weight: 600;
}
.listing-style14 .list-meta a:last-child {
  margin-right: 0;
}
@media (max-width: 320px) {
  .listing-style14 .list-meta a {
    margin-right: 15px;
  }
}
.listing-style14 .list-meta span {
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  color: var(--headings-color);
  display: block;
  font-size: 17px;
  height: 50px;
  line-height: 50px;
  margin-right: 10px;
  text-align: center;
  width: 50px;
}
.listing-style14 .list-meta2 a {
  background-color: #ffffff;
  border-radius: 50%;
  color: var(--headings-color);
  height: 40px;
  line-height: 45px;
  margin-right: 10px;
  text-align: center;
  width: 40px;
}
.listing-style14 .list-meta2 a:last-child {
  margin-right: 0;
}
.listing-style14 .list-title {
  margin-bottom: 8px;
}
.listing-style14 .list-title a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.listing-style14 .list-title a:hover {
  color: var(--headings-color);
}
.listing-style14 .list-text {
  color: #717171;
  margin-bottom: 10px;
}
.listing-style14 .for-what {
  font-size: 13px;
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 400;
}

.apartment-style1 {
  background-color: #ffffff;
  border-radius: 12px;
  -webkit-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -moz-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  -o-box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  box-shadow: 0px 10px 40px rgba(24, 26, 32, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.apartment-style1 .apartment-content {
  padding: 20px;
}

.apartment-style2 {
  position: relative;
}
.apartment-style2 .apartment-content {
  bottom: 0;
  left: 0;
  position: absolute;
  padding-top: 40px;
  right: 0;
  top: 0;
}
.spec{
	margin-top:20px;
}
.pagination_page_count {
  color: var(--headings-color);
  font-family: var(--title-font-family);
  font-weight: 400;
}
.hover-color2:hover {
    background-color: #2c8a8c; /* example hover color for Eco Friendly Premium Products */
    color: #000; /* text color */
}

.hover-color3:hover {
    background-color: #e31e25; /* example hover color for Sanitary Cleaning */
    color: #fff;
}

.hover-color4:hover {
    background-color: #0480b5; /* example hover color for Surface Cleaning */
    color: #fff;
}

.hover-color5:hover {
    background-color: #009746; /* example hover color for Floor Cleaning */
    color: #000;
}

.hover-color6:hover {
    background-color:#edb80e; /* example hover color for Kitchen Cleaning */
    color: #000;
}

.hover-color7:hover {
    background-color: #d78b9a; /* example hover color for Special */
    color: #fff;
}

.hover-color8:hover {
    background-color: #7900f2; /* example hover color for Laundry */
    color: #000;
}

.hover-color9:hover {
    background-color: #b09778; /* example hover color for Disinfection */
    color: #000;
}


.vam_nav_style.owl-theme .owl-nav {
    display: block;
    margin-top: 0;
}

    .vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: -30px;
        right: auto;
    }

@media (max-width: 579px) {
    .vam_nav_style.owl-theme .owl-nav button.owl-prev {
        left: -10px;
    }
}

.vam_nav_style.owl-theme .owl-nav button.owl-next {
    left: auto;
    right: -30px;
}

@media (max-width: 579px) {
    .vam_nav_style.owl-theme .owl-nav button.owl-next {
        right: -10px;
    }
}

.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.vam_nav_style.owl-theme .owl-nav button.owl-next {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    -moz-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    -o-box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    box-shadow: 0px 10px 35px rgba(5, 16, 54, 0.1);
    border: none;
    border-radius: 50%;
    color: #051036;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 38%;
    width: 50px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .vam_nav_style.owl-theme .owl-nav button.owl-prev:hover, .vam_nav_style.owl-theme .owl-nav button.owl-prev:active, .vam_nav_style.owl-theme .owl-nav button.owl-prev:focus,
    .vam_nav_style.owl-theme .owl-nav button.owl-next:hover,
    .vam_nav_style.owl-theme .owl-nav button.owl-next:active,
    .vam_nav_style.owl-theme .owl-nav button.owl-next:focus {
        background-color: #EB6753;
        color: #ffffff;
    }

.explore-apartment-slider,
.testimonial-slider {
    position: relative;
}

    .explore-apartment-slider .owl-stage-outer,
    .testimonial-slider .owl-stage-outer {
        display: inline-block;
    }

.property-city-slider.style2.vam_nav_style.owl-theme .owl-nav button.owl-prev,
.property-city-slider.style2.vam_nav_style.owl-theme .owl-nav button.owl-next {
    top: 25%;
}

.feature-listing-slider .listing-style1 {
    margin-bottom: 60px;
}

.feature-listing-slider2.owl-theme .owl-nav .owl-prev,
.feature-listing-slider2.owl-theme .owl-nav .owl-next {
    top: 25%;
}

.widget-wrapper {
    margin-bottom: 30px;
    position: relative;
}

    .widget-wrapper .list-title {
        margin-bottom: 15px;
    }

    .widget-wrapper .form-check-label,
    .widget-wrapper .custom_checkbox {
        font-size: 14px;
    }

    .widget-wrapper .custom_checkbox {
        line-height: 35px;
    }