:root {
    --default-font: "Lato", sans-serif;
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Lato", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #03070c;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2FA56D;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #0a0a0a;
    /* The default color of the main navmenu links */
    --nav-hover-color: #2FA56D;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #0a0a0a;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #3b3b3b;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #ffffff;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #2FA56D;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f8f4f2;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #6f6f6f;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #898989;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

:root {
    --secondary-color: #0e93fb;
}

/*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--accent-color);
    font-family: var(--heading-font);
}

h1 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --default-color: #5385c4;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
    width: 242px;
}

.header .logo img {
    max-height: 40px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 40px;
    margin: 0;
    font-weight: 300;
    color: var(--heading-color);
}

/* Global Header on Scroll
    ------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--contrast-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li>a.active,
    .navmenu a.active:focus {
        color: var(--accent-color);
    }

    .navmenu li a:hover {
        color: #cbd0c8;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--accent-color);
        font-size: 28px;
        line-height: 0;
        margin-top: 15px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 28px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-bg-img {
    background: url('https://realestics.temptics.com/assets/img/banner-slide-1.jpg') center no-repeat;
    background-size: auto;
    background-size: cover;
    position: relative;
    background-position: left;
}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 14px;
    font-weight: 400;
    color: var(--contrast-color);
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: var(--contrast-color);
    line-height: 1.2s;

}

.hero span {
    color: #000;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke-color: transparent;
    -webkit-text-stroke-width: 5px;
    background-image: linear-gradient(190deg, #31AF0A, #0d92f9);
}

.hero p {
    margin: 10px 0 0 0;
    font-size: 16px;
    color: var(--contrast-color);
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    margin: 30px 0 0 0;
    border-radius: 50px;
    transition: 0.3s;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero {
        width: 100%;
        min-height: 50vh;
    }

    .hero-bg-img {
        background: url('../images/hero/banner-mobile-bg.png') center no-repeat;
        background-size: auto;
        background-size: cover;
        position: relative;
    }
}

/*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
.section-title {

    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-title h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: var(--heading-color);
    line-height: 1.4;
    text-transform: uppercase;
}

.section-title p {
    margin-bottom: 0;
    line-height: 1.8;
}

.section h4 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    background: url('https://html.awaikenthemes.com/infine/images/icon-sub-heading.svg') no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-position: left center;
    background-size: auto;
    padding-left: 24px;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 78px;
    overflow: clip;
}

.gradient {
    background-image: linear-gradient(to right, #2FA56D, #1c87a8);
    background-clip: text;
    color: transparent;
}

.botox-section {
    background-color: #f6f0e8;
    /* soft beige like in sample */
}

.image-wrapper {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.process-item {
    display: flex;
    gap: 29px
}

.process-item:not(:last-child) {
    position: relative;
    margin-bottom: 24px;
}

.process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    background-color: var(--accent-color);
    width: 4px;
    height: calc(100% - 30px);
    top: 42px;
    left: 13px;
}

.section-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    background-image: url("../images/section-img/banner_shape.png"), linear-gradient(80deg, #ecf6ee 0%, rgba(213, 255, 221, 0) 100%);
}

.section-bg {
    background-color: #f9fdfb;
}

.content_p {
    font-style: italic;
    font-size: 18px;
    color: #000;
    font-weight: 900;
    text-decoration: underline;
}

.process-item:nth-child(-n + 7)::after {
    content: none !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.overlay.style2 {

    opacity: 70%;
    background: linear-gradient(90deg, #182900 0%, rgba(26, 33, 57, 0.5) 100%);

}

.estate-sector {
    background-image: url("../images/hero/banner-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center, bottom;
}

.estate-sector .section-title p {
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--contrast-color);
}

.estate-sector .section h4 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    background: url('../images/section-img/icon-sub-heading.svg') no-repeat;
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-position: left center;
    background-size: auto;
    padding-left: 24px;
    letter-spacing: 0.1em;
    color: var(--secondary-color);
}

.estate-sector .section-title h3 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: var(--contrast-color);
    line-height: 1.4;
    text-transform: uppercase;
}

.client-item {

    padding: 60px 45px;
    /* border: 1px solid rgba(0, 0, 0, 0.1);*/
    height: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;

}

.client-item h3 {
    color: var(--contrast-color);
}

.client-item-par {
    padding: 60px 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    border-radius: .5rem;
}

.client-icon svg {

    margin-bottom: 40px;
    width: 40px;
    height: 40px;
}

.client-icon img {
    width: 40px;
    margin-bottom: 40px
}

.client-item {

    padding: 0;
   
  
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
    border-radius: .5rem;
}

.client-icon img {
    width: 40px;
    margin-bottom: 40px
}

.client-item h3 {
    font-size: 38px;
    font-weight: 900;
}

.client-item p {
    color: var(--contrast-color);
}

.client-item-img {
    width: 40px;
    padding: 0px;
    display: flex;
    justify-content: start;
    align-content: start;
    height: 40px;

}

.client-item-img-p {
    margin-left: 1rem;
}

.client-item-par p {
    color: var(--heading-color);
}

.client-item-par h5 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
}

.shelp .client-item {

    padding: 60px 45px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;

}

.shelp .client-icon img {
    width: 40px;
    margin-bottom: 40px;

}

.shelp .client-item li {

    line-height: 1.5;
}

.shelp .client-item h5 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;


}

.shelp .client-item p {
    color: var(--heading-color);


}

.shelp-section-bg {
    background: url("../images/hero/hero_bg.png"), #fff;
}

.inner-box {
    position: relative;
    display: block;
    padding: 50px 45px;
    background: var(--contrast-color);
    min-height: 100%;
    border-radius: 7px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid #d7e8ce;

}

.inner-box::before {

    content: "0" counter(slides-num);
    position: absolute;
    left: 45px;
    top: 50px;
    font-size: 50px;
    line-height: 1em;
    color: var(--nav-color);
    opacity: 0.07;
    font-family: var(--nunber-font);
    font-weight: 900;
}

.inner-box h6 {
    margin-top: 1rem;
    color: var(--heading-color);
    margin-bottom: .5rem;
    line-height: 1.5;
    font-weight: 700;
    font-size: 24px;
}

.inner-box li {
    color: var(--heading-color);
    line-height: 1.4;
    margin-bottom: .8rem;
}

.industries h2 {
    color: #d3f45d;
}

.industries span {
    color: #008f7a;
    margin-bottom: 1rem !important;
    display: flex;
    font-weight: 700;
}

.inner-box i {
    color: #d3f45d;
    font-size: 40px;
    padding: .5rem;
}

.service-block {
    counter-increment: slides-num;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--contrast-color);
    background-color: var(--heading-color);
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    position: relative;
}

.footer h3 {
    font-size: 36px;
    font-weight: 300;
    position: relative;
    padding: 0;
    margin: 0 0 15px 0;
}

.footer p {
    font-size: 15;
    font-style: italic;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer .social-links {
    margin: 0 0 30px 0;
}

.footer .social-links a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    line-height: 1;
    margin: 0 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    text-decoration: none;
}

.footer .copyright {

    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
    font-size: 13px;
    padding-top: 5px;
}

.progress-div {
    padding: 30px 25px;
    border: 1px solid rgba(232, 225, 225, 0.9);
    height: 100%;

    transition: all .4s;
    background: #31B00A;
    color: #fff;
    border-radius: 49px 0 40px 0px;
    background-image: url('../images/about/shape_05.svg');
}

.progress-div p {
    font-size: 18px;
}

.progress-div-box {
    background: #0C93FA !important;
}

.text-p {
    font-size: 24px;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 700;
}

.text-p span {
    color: var(--default-color);
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.inner-section {
    color: white;
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    border-bottom: 8px solid #31AF0A;
}

.inner-content h2 {
    font-size: 24px;
    color: #fff;
}

.inner-content p {
    font-size: 24px;
    font-weight: 300;
}

.inner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.inner-content {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------------- 
 * ## about-us
 * ------------------------------------------------------------------- */

.about-img .img-1 {
    border-radius: 80px 80px 0 80px;
}

.about-experience {
    display: flex;
    align-items: center;
    text-align: center;
    background: #1a65c1;
    padding: 15px 20px 15px 15px;
    color: var(--contrast-color);
    border-radius: 50px 50px 50px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

.about-img {
    display: flex;
    gap: 30px;
    position: relative;
}

.about-img .img-2 {
    border-radius: 50%;
    border: 2px dashed var(--accent-color);
    padding: 8px;
}

.about-img .img-3 {
    border-radius: 0 80px 80px 80px;
}

.about-left {
    margin-right: 20px;
}

.about-item-icon {
    width: 35%;
    height: 70px;
    line-height: 58px;
    text-align: center;
    margin-bottom: 12px;
    background: var(--accent-color);
    border-radius: 100%;
    font-size: 45px;
    color: var(--contrast-color);
    box-shadow: -5px 5px 0 var(--surface-color);
}

.about-item-content li {
    line-height: 1.8;
}

.about-item {
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    margin-top: 2rem;
}

.about-item-icon img {
    width: 45px;
    filter: brightness(0) invert(1);
}

.about-item-content h5 {
    color: var(--heading-color);
}

.about-item-content {
    font-size: 12px;
    color: var(--default-color);
}

.about-box {
    border-radius: 0px 20px 20px 20px;
    background: #2FA56D;
    padding: 1rem;
    height: 100%;
    color: var(--contrast-color);
    /*-margin-bottom: 1rem;-*/
}

.about-icon {

    position: relative;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 51px;
    text-align: center;
    margin-bottom: 1rem;

}

.about-icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #F8F7FF 0%, #FDFFFB 100%);
    z-index: 2;
    border-radius: 50%;
}

.about-icon img {
    position: relative;
    z-index: 4;
    width: 34px;
}

.about-box h5 {
    color: var(--contrast-color);
}

.about-box p {
    font-size: 12px;
}

.about-li li {
    line-height: 2.2;
}
.about-li {
    margin-bottom: 2.5rem;
}
.about-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: .5rem;
}

.about-li p {
    font-weight: 600;
    margin: 1rem 0;
}

.timeline-cards .story-box {
    border: 1px solid #e6e6e6;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    min-height: 100%;
}

.timeline-cards .year {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: 900;
    color: #45504a;
}

.timeline-cards .icon img {
    width: 55px;
    height: 55px;
    opacity: 0.85;
}

.timeline-cards p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--heading-color);
    line-height: 1.4;
    font-weight: 300;
}

.crc {
    width: 55px;
    height: 55px;

    border-radius: 50%;
    color: var(--background-color);
    font-size: 18px;
    display: flex;
    background-color: var(--accent-color);
    justify-content: center;
    align-items: center;
}

.new-about-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 15px;
}

.new-about-icon {
    width: 70px;
    height: 55px;
    background: #2FA56D;
    /* Green circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-about-icon svg {
    width: 36px;
    height: 36px;
    color: var(--contrast-color);
}

.new-about-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.new-about-text {
    font-size: 18px;
    color: #333;
    max-width: 650px;
    line-height: 1.5;
}

.icon i {
    font-size: 60px;
    color: #087fe8;
    margin-top: 2.4rem;
}

.story-section {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.story-section::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(95.51% 264.21% at 92.63% 41.85%, rgba(0, 7, 31, 0) 0%, rgba(1, 30, 4, 0.98) 99.98%, rgba(0, 0, 0, 0.98) 99.99%);
    content: "";
    z-index: -1;
}

.story-section .sec-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.story-section-block {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #fff;
}

.inner-box-block {
    padding: 30px;
    padding-bottom: 0;
    border-right: 1px solid #d9d9d9;
}

.inner-box-block .number {
    font-size: 66px;
    font-weight: 700;
    line-height: 66px;
    margin-bottom: 30px;
    color: transparent;
    -webkit-text-stroke: 1px var(--contrast-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    font-family: var(--nav-font);
}

.inner-box-block p {
    font-size: 24px;
    font-weight: 300;
}

.story-section .section-title h3 {
    color: var(--contrast-color);

}

.story-section .section-title h4 {
    color: var(--contrast-color);

}

.inner-box-block.last-block {
    border: none;
}

.We-Work li {
    line-height: 2;
}

.we-work-block {
    padding: 2rem;
}

.We-Work h5 {
    color: var(--heading-color);
    font-weight: 700;
}

.We-Work-image img {
    border-radius: 6px;
}

.object-fit-cover {
    object-fit: cover;
}

.news-event h3 {
    color: var(--heading-color);
}

.news-event svg {
    width: 40px;
    height: 40px;
    margin: 2rem;
}

.contact .form-control {
    width: 100%;
    border: 1px solid rgba(132, 117, 117, 0.2);
    border-radius: 10px;
    background-color: #fafafa;
    height: 48px;
}

.contact .form-control::placeholder {
    color: #000;
    opacity: 1;
    font-size: 12px;

}

.submit-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 40px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
}

.contact h6 {
    color: var(--heading-color);
}

.contact-text i {
    font-size: 48px;
    margin-bottom: 2rem;
}

.contact-text {
    text-align: center;
    color: #000;
    border: 1px solid #ece3e3;
    padding: 2rem;
    border-radius: .5rem;
}

.contact-text h3 {
    color: #000;
    font-weight: 400;
}

.list-text {
    line-height: 1.8;
}

.arr .story-section-block {
    color: #000;
    margin-bottom: 2rem;
}

.arr .inner-box-block .number {
    -webkit-text-stroke: 1px #0078A6;
}

.arr .inner-box-block p {
    font-size: 22px;
    font-weight: 300;
}

.balck-text h6 {
    color: var(--heading-color);
}

.core-text {
    padding: 2rem;
}

.case-studies .content_p {
    font-weight: 400;
}

.arr-serves-svg svg {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.arr-serves-h3 {
    color: #000;
    font-size: 22px;
}

.our-platform-col h3 {
    color: var(--heading-color);
}

.our-platform-col h6 {
    color: #0078A6;
}

.our-platform-col {
    border: 1px solid #fff;
    padding: 0 3rem;
    height: 100%;
    border-radius: 5px;
}

.our-platform-svg svg {
    width: 40px;
    height: 40px;
    color: #0078A6;
    margin-bottom: 1rem;
}

@media (max-width: 576px) {
    .new-about-icon {
        width: 139px;
    }
}

/* MAIN WRAPPER */
.about-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #f5f9f8;
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

/* LEFT IMAGE */
.about-img-card {
    flex: 1 1 50%;
    min-height: 350px;
}

.about-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 0 30px;
}

/* RIGHT TEXT */
.about-text {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    padding: 0;
}

.about-text p {
    font-size: 1.35rem;
    line-height: 1.6;
    margin: 0;
}

/* ARROWS */
.about-arrows {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.25s;
}

.arrow-btn:hover {
    background: #000;
    color: #fff;
}

/* ------------------ RESPONSIVE ------------------ */

@media (max-width: 992px) {
    .about-text {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .about-card {
        flex-direction: column;
    }

    .about-img-card img {
        border-radius: 30px 30px 0 0;
    }

    .about-text {
        padding: 25px;
    }

    .about-arrows {
        left: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .about-text p {
        font-size: 1.1rem;
    }

    .arrow-btn {
        width: 42px;
        height: 42px;
    }
}


/* MAIN CARD BLOCK */
.card-right {
    background: #000;
    padding: 50px;
    color: #fff;
    border-radius: 0 1rem 1rem 0rem;

    position: relative;
    /* FIXED */
    top: 0;
    /* FIXED */
    right: 10%;
    /* FIXED */
    width: 100%;
    /* FIXED */
    height: 100%;
    /* FIXED */

}


/* SMALL TITLE */
.small-title {
    font-size: 18px;
    color: #31af09;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: capitalize;

}

/* MAIN TITLE */
.card-right-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: .5rem;
    color: #fff;
}

.card-right-title span {
    color: #fff;
}

/* VIEW ALL LINK */
.view-all {
    font-size: 20px;
    text-decoration: none;
    font-weight: 600;
    color: #c9a669;
    display: flex;
    flex-direction: column;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid #06384a;
    margin-left: 6px;
}

/* DECORATIVE DOTS */
.vc-dots {
    position: absolute;
    left: 5%;
    bottom: 40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#f9fcff 3px, transparent 3px);
    background-size: 14px 14px;
    opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .card-right {
        padding: 40px;
    }

    .card-right-title {
        font-size: 30px;
    }

    .play-btn {
        width: 85px;
        height: 85px;
    }

    .play-icon {
        border-left-width: 22px;
        border-top-width: 14px;
        border-bottom-width: 14px;
    }
}

.card-right .content_p {
    color: #fff;
}

.rounded-img {
    border-radius: 20px;
    border: 5px solid #f4eded;
}

.vc-right {
    top: 5% !important;
    left: 70% !important;

}

.t-arrows {

    display: flex;
    gap: 18px;
    margin-bottom: 1rem;
}

.t-prev,
.t-next {
    cursor: pointer;
    transition: 0.2s ease-in-out;
    color: #fff;
}

.t-prev:hover,
.t-next:hover {

    color: #5eaf33;
}

.outline-animate {
    font-size: 70px;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #c9a669;

    position: relative;
    display: inline-block;
    overflow: hidden;

    animation: outlineDraw 3s ease forwards,
        textFill 2s ease 3s forwards;
}

@keyframes outlineDraw {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes textFill {
    0% {
        color: transparent;
    }

    100% {
        color: #c9a669;
        -webkit-text-stroke: 0px transparent;
    }
}

.marquee2 {
    width: 100%;
    overflow: hidden;

    padding: 15px 0;
}

.track {
    display: flex;
    white-space: nowrap;
}


@keyframes scrollTrack {
    0% {

        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.card-content-text {
    font-size: 40px;
    font-weight: 600;
    animation: scrollTrack 50s linear infinite;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(203, 208, 200, 0.9);
}

.card-content-text .no-stroke {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-text-stroke: 0 !important;
}

.animate-text {
    font-size: 50px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.45s ease-out;
}

.animate-text.show {
    opacity: 1;
    transform: translateY(0);
}

.tb-matters .section-title h3 {
    color: var(--contrast-color);
}

.dgm-hero-bg {

    background-image: url('https://crowdytheme.com/html/axtra-react-preview/assets/imgs/hero/hero-bg.jpg');
    padding-top: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: all .3s;
    overflow: hidden;
}

.scrolled .navmenu a,
.navmenu a:focus {
    color: #000;
}

.shape-img {
    background-image: url("../images/about/pattern.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.scrolled .scrolled-logo {
    display: block;
}

.scrolled-logo {
    display: none;
}

.scrolled .white-logo {
    display: none;
}

.ul-banner-slide-shadow-title {
    position: absolute;
    top: clamp(40px, 9.2vw, 35px);
    left: clamp(18px, 4.62vw, 88px);
    font-weight: 800;
    font-size: clamp(50px, 15.76vw, 250px);
    line-height: 100%;
    letter-spacing: -0.03em;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
    color: transparent;
    pointer-events: none;
    z-index: -1;
}
.img-overlay::before {
    content: "";
    background: #000;
  }
  .client-item-img::before {
    content: "";
    background: #fff;
    width: 80px;
    height: 80px;
  }
  .text-p-element p{
    line-height: 1.8;
  color: var(--contrast-color);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  }
 .client-matters p{
    font-size: 14px;
    font-style: italic;
 }
 @media (max-width: 576px) { 
    .card-right{
        right: 0;
    }
  }
  .impact {
    background-color: #f9f9f9;
  }
  
  .bsb-overlay-hover {
    position: relative;
    cursor: pointer;
  }
  
  .bsb-overlay-hover img {
    transition: transform 0.4s ease, filter 0.4s ease;
    border-radius: 10px;
  }
  
  .bsb-overlay-hover:hover img {
    transform: scale(1.1);
    filter: brightness(40%);
  }
  
  .team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border-radius: .25rem;
    top: 0;
  }
  
  .bsb-overlay-hover:hover .team-overlay {
    opacity: 1;
    visibility: visible;
  }
  
  .team-overlay h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  
  .team-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e5e5;
  }
  
  .team-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .team-info p {
    font-size: 0.9rem;
  }