/* ==============================
   Sticky Header
================================= */

.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease,
                box-shadow 0.3s ease;
}

.site-header .navbar {
    padding: 12px 0;
    transition: padding 0.3s ease;
}

/* Logo */

.site-header .navbar-brand {
    padding: 0;
    margin: 0;
}

.site-header .navbar-brand img {
    max-width: 170px;
    height: auto;
    display: block;
}

/* Navigation */

.site-header .navbar-nav {
    gap: 8px;
}

.site-header .nav-link {
    color: #1f2937;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 14px !important;
    transition: color 0.3s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #0b5ed7;
}

/* Contact Button */

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b5ed7;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-contact-btn:hover {
    background: #084298;
    color: #ffffff;
}


/* =================================
   SCROLLED HEADER
================================= */

.site-header.scrolled {
    background: rgb(11, 54, 61);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.site-header.scrolled .navbar {
    padding: 12px 0;
}

.site-header.scrolled .nav-link {
    color: #ffffff;
}

.site-header.scrolled a.navbar-brand
{
    background: #fff;;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: #ffffff;
}

/* =========================================
   CORPORATE HERO
========================================= */

.corporate-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(255, 190, 170, 0.22),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #fff7f3 0%,
            #ffffff 45%,
            #f8fbfb 100%
        );

    padding: 100px 0 110px;
}


/* Subtle background circles */

.corporate-hero::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    border: 1px solid rgba(11, 54, 61, 0.05);
    border-radius: 50%;

    right: -180px;
    top: -180px;
}

.corporate-hero::after {
    content: "";
    position: absolute;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(11, 54, 61, 0.04);
    border-radius: 50%;

    left: -250px;
    bottom: -250px;
}


/* =========================================
   HERO BADGE
========================================= */

.hero-badge {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 28px;

    position: relative;
    z-index: 2;
}

.hero-badge-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff8a4c;
    color: #ffffff;

    border-radius: 50%;

    font-size: 19px;
}

.hero-badge small {
    display: block;

    color: #68777b;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 3px;
}

.hero-badge strong {
    display: block;

    color: #0b363d;

    font-size: 15px;
    font-weight: 600;
}


/* =========================================
   HERO TITLE
========================================= */

.hero-title {
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin: 0 0 25px;

    color: #0b363d;

    font-size: clamp(44px, 5vw, 68px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -2px;
}

.hero-title span {
    display: block;

    color: #ff7542;
}


/* =========================================
   HERO DESCRIPTION
========================================= */

.hero-description {
    position: relative;
    z-index: 2;

    max-width: 590px;

    margin-bottom: 32px;

    color: #657477;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 12px;
}

.hero-btn-primary,
.hero-btn-secondary {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 3px;

    transition: all 0.3s ease;
}


/* Primary */

.hero-btn-primary {
    background: #0b363d;
    color: #ffffff;

    gap: 10px;
}

.hero-btn-primary:hover {
    background: #ff7542;
    color: #ffffff;

    transform: translateY(-2px);
}

.hero-btn-primary i {
    font-size: 16px;
}


/* Secondary */

.hero-btn-secondary {
    background: transparent;

    color: #0b363d;

    border: 1px solid #0b363d;
}

.hero-btn-secondary:hover {
    background: #0b363d;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   HERO VISUAL
========================================= */

.hero-visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* Dashboard image */

.hero-image-wrapper {
    position: relative;
    z-index: 2;

    width: 720px;
    max-width: 130%;

    margin-right: -150px;

    filter: drop-shadow(
        0 25px 45px rgba(11, 54, 61, 0.18)
    );
}

.hero-image {
    display: block;

    width: 100%;
    height: auto;
}


/* =========================================
   FLOATING CIRCLES
========================================= */

.hero-circle {
    position: absolute;

    z-index: 3;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle::after {
    content: "";

    width: 12px;
    height: 12px;

    background: #ffffff;

    border-radius: 50%;
}


/* Green */

.hero-circle-green {
    background: #19e6a3;

    top: 70px;
    left: 35px;
}


/* Purple */

.hero-circle-purple {
    background: #6865ee;

    bottom: 55px;
    left: 5px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199.98px) {

    .corporate-hero {
        padding: 80px 0 90px;
    }

    .hero-title {
        font-size: 54px;
    }

    .hero-image-wrapper {
        width: 650px;
        margin-right: -120px;
    }

    .hero-visual {
        min-height: 450px;
    }
}


@media (max-width: 991.98px) {

    .corporate-hero {
        padding: 70px 0 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-visual {
        min-height: auto;

        margin-top: 60px;

        justify-content: center;
    }

    .hero-image-wrapper {
        width: 100%;
        max-width: 700px;

        margin-right: 0;
    }

    .hero-circle-green {
        top: 10px;
        left: 5%;
    }

    .hero-circle-purple {
        bottom: 20px;
        left: 3%;
    }
}


@media (max-width: 575.98px) {

    .corporate-hero {
        padding: 55px 0 65px;
    }

    .hero-badge {
        margin-bottom: 22px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
    }

    .hero-visual {
        margin-top: 45px;
    }

    .hero-circle {
        width: 30px;
        height: 30px;
    }

    .hero-circle::after {
        width: 9px;
        height: 9px;
    }
}


/* =================================
   Mobile
================================= */

@media (max-width: 991.98px) {

    .site-header .navbar {
        padding: 14px 0;
    }

    .site-header.scrolled button.navbar-toggler
    {
        background: #fff;;
    }

    .site-header .navbar-brand img {
        max-width: 145px;
    }

    .site-header .navbar-collapse {
        padding-top: 20px;
    }

    .site-header .navbar-nav {
        gap: 0;
    }

    .site-header .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .site-header.scrolled .nav-link {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .header-contact-btn {
        margin-top: 15px;
        width: 100%;
    }
}

/* =========================================
   CLIENT LOGOS
========================================= */

.client_logo {
    width: 100%;
    background: #ffffff;
    padding: 38px 0;
}

.client_logo .client_logo_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.client_logo .client_logo_item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client_logo .client_logo_item img {
    display: block;
    width: auto;
    opacity: 0.65;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
}

.client_logo .client_logo_item img:hover {
    opacity: 1;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .client_logo {
        padding: 32px 0;
    }

    .client_logo .client_logo_inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 50px;
    }

    .client_logo .client_logo_item {
        flex: 0 0 calc(33.333% - 50px);
    }

    .client_logo .client_logo_item img {
        max-width: 120px;
        max-height: 32px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .client_logo {
        padding: 28px 0;
    }

    .client_logo .client_logo_inner {
        gap: 25px 20px;
    }

    .client_logo .client_logo_item {
        flex: 0 0 calc(50% - 20px);
    }

    .client_logo .client_logo_item img {
        max-width: 110px;
        max-height: 30px;
    }
}

/* =========================================
   FEATURES
========================================= */

.features {
    width: 100%;
    background: #ffffff;
    padding: 85px 0 75px;
}


/* =========================================
   HEADING
========================================= */

.features .features_heading {
    text-align: center;
    margin-bottom: 38px;
}

.features .features_subtitle {
    display: block;
    margin-bottom: 20px;

    color: #ff7542;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.features .features_title {
    margin: 0;

    color: #0b363d;

    font-size: clamp(32px, 3.2vw, 43px);
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: -1px;
}

.features .features_title span {
    color: #ff7542;
}


/* =========================================
   FEATURE CARD
========================================= */

.features .features_card {
    position: relative;

    height: 285px;

    padding: 45px 37px 30px;

    background: #fffaf7;

    border-radius: 10px;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.features .features_card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 28px rgba(11, 54, 61, 0.12);
}


/* =========================================
   ICON
========================================= */

.features .features_icon {
    width: 55px;
    height: 55px;

    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    color: #111111;

    font-size: 42px;

    line-height: 1;
}

.features .features_icon i {
    color: #111111;
}


/* =========================================
   CARD TITLE
========================================= */

.features .features_card h3 {
    margin: 0;

    color: #0b363d;

    font-size: 18px;
    font-weight: 700;

    line-height: 1.45;
}


/* =========================================
   CARD BOTTOM
========================================= */

.features .features_card_bottom {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.features .features_card_bottom span {
    color: #111111;

    font-size: 15px;
    font-weight: 400;
}

.features .features_card_bottom a {
    width: 42px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    color: #111111;

    font-size: 25px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}

.features .features_card_bottom a:hover {
    color: #ff7542;

    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .features {
        padding: 70px 0 60px;
    }

    .features .features_heading {
        margin-bottom: 32px;
    }

    .features .features_card {
        height: 270px;
        padding: 35px 30px 28px;
    }

    .features .features_icon {
        margin-bottom: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .features {
        padding: 55px 0 50px;
    }

    .features .features_subtitle {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .features .features_title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .features .features_card {
        height: auto;
        min-height: 260px;

        padding: 30px 25px 25px;
    }

    .features .features_icon {
        margin-bottom: 20px;
    }

    .features .features_card h3 {
        font-size: 17px;
    }

}

/* =========================================
   OUR STRUCTURE
========================================= */

.our_structure {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #fffaf7;

    padding: 105px 0 110px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.our_structure .our_structure_content {
    position: relative;
    z-index: 2;

    padding-right: 55px;
}

.our_structure .our_structure_label {
    display: inline-block;

    margin-bottom: 24px;

    color: #ff7542;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
}

.our_structure .our_structure_title {
    margin: 0 0 22px;

    max-width: 570px;

    color: #0b363d;

    font-size: clamp(38px, 4vw, 52px);
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -1.5px;
}

.our_structure .our_structure_title span {
    color: #ff7542;

    position: relative;
}

.our_structure .our_structure_title span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 2px;

    width: 100%;
    height: 8px;

    background: rgba(255, 117, 66, 0.12);

    z-index: -1;
}


.our_structure .our_structure_description {
    max-width: 570px;

    margin: 0 0 34px;

    color: #647579;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   FEATURE POINTS
========================================= */

.our_structure .our_structure_points {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 40px;
    row-gap: 25px;

    margin-bottom: 38px;
}

.our_structure .our_structure_point {
    display: flex;
    align-items: center;

    gap: 16px;

    color: #0b363d;

    font-size: 15px;
    font-weight: 600;
}

.our_structure .our_structure_dot {
    flex: 0 0 auto;

    width: 16px;
    height: 16px;

    background: #ff7542;

    border-radius: 50%;
}


/* =========================================
   BUTTON
========================================= */

.our_structure .our_structure_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;

    padding: 0 27px;

    background: #0b363d;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 3px;

    transition: all 0.3s ease;
}

.our_structure .our_structure_button:hover {
    background: #ff7542;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.our_structure .our_structure_visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   BACKGROUND SHAPE
========================================= */

.our_structure .our_structure_shape {
    position: absolute;

    width: 270px;
    height: 270px;

    top: 25px;
    left: 80px;

    background: #e3f1e3;

    border-radius: 15px 0 0 0;
}


/* =========================================
   DASHBOARD CARD
========================================= */

.our_structure .our_structure_dashboard {
    position: relative;

    z-index: 3;

    width: 350px;

    background: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 15px 35px rgba(11, 54, 61, 0.12);

    overflow: hidden;
}


/* Dashboard header */

.our_structure .our_structure_dashboard_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding: 27px 28px 22px;

    border-bottom: 1px solid #eeeeee;
}

.our_structure .our_structure_dashboard_header span {
    display: block;

    margin-bottom: 7px;

    color: #111111;

    font-size: 14px;
    font-weight: 600;
}

.our_structure .our_structure_dashboard_header strong {
    display: block;

    color: #0b363d;

    font-size: 29px;
    font-weight: 700;

    line-height: 1.1;
}

.our_structure .our_structure_dashboard_header small {
    display: block;

    margin-top: 5px;

    color: #899497;

    font-size: 11px;
}

.our_structure .our_structure_dashboard_icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e9;

    color: #ff7542;

    border-radius: 50%;

    font-size: 15px;
}


/* =========================================
   CHART
========================================= */

.our_structure .our_structure_chart {
    position: relative;

    height: 205px;

    margin: 20px 25px 0;

    overflow: hidden;
}

.our_structure .our_structure_chart_grid {
    position: absolute;

    inset: 10px 0 15px;

    background-image:
        linear-gradient(
            to right,
            rgba(11, 54, 61, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(11, 54, 61, 0.08) 1px,
            transparent 1px
        );

    background-size: 30px 35px;
}


/* Bars */

.our_structure .our_structure_bars {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 20px;

    height: 165px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 10px;
}

.our_structure .our_structure_bars span {
    flex: 1;

    max-width: 22px;

    background: #40bd86;

    border-radius: 5px 5px 0 0;

    opacity: 0.9;

    transition: height 0.3s ease;
}

.our_structure .our_structure_bars span:nth-child(2n) {
    background: #ff9a2f;
}

.our_structure .our_structure_bars span:hover {
    opacity: 1;
}


/* Chart footer */

.our_structure .our_structure_chart_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 5px 28px 23px;
}

.our_structure .our_structure_chart_footer span {
    color: #647579;

    font-size: 12px;
}

.our_structure .our_structure_chart_footer span i {
    margin-right: 5px;

    color: #40bd86;

    font-size: 7px;
}

.our_structure .our_structure_chart_footer strong {
    color: #40bd86;

    font-size: 14px;
}


/* =========================================
   FLOATING STAT CARD
========================================= */

.our_structure .our_structure_stat_card {
    position: absolute;

    z-index: 5;

    top: 105px;
    right: 5px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 17px;

    background: #ffffff;

    border-radius: 13px;

    box-shadow:
        0 10px 25px rgba(11, 54, 61, 0.12);
}

.our_structure .our_structure_stat_icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e7f8f0;

    color: #28ad76;

    border-radius: 50%;

    font-size: 16px;
}

.our_structure .our_structure_stat_card small {
    display: block;

    color: #7a878a;

    font-size: 10px;
}

.our_structure .our_structure_stat_card strong {
    display: block;

    color: #0b363d;

    font-size: 18px;
}

.our_structure .our_structure_stat_card span {
    display: block;

    color: #9aa3a5;

    font-size: 9px;
}


/* =========================================
   SMALL FLOATING CARD
========================================= */

.our_structure .our_structure_small_card {
    position: absolute;

    z-index: 5;

    bottom: 70px;
    left: 5px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 10px 25px rgba(11, 54, 61, 0.11);
}

.our_structure .our_structure_small_card > i {
    color: #ff7542;

    font-size: 23px;
}

.our_structure .our_structure_small_card strong {
    display: block;

    color: #0b363d;

    font-size: 17px;
}

.our_structure .our_structure_small_card span {
    display: block;

    color: #899497;

    font-size: 10px;
}


/* =========================================
   DECORATIVE DOT
========================================= */

.our_structure .our_structure_decorative_dot {
    position: absolute;

    z-index: 4;

    right: 20px;
    bottom: 50px;

    width: 13px;
    height: 13px;

    background: #ff7542;

    border-radius: 50%;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .our_structure {
        padding: 85px 0;
    }

    .our_structure .our_structure_content {
        padding-right: 25px;
    }

    .our_structure .our_structure_dashboard {
        width: 330px;
    }

    .our_structure .our_structure_stat_card {
        right: -5px;
    }

}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_structure {
        padding: 70px 0;
    }

    .our_structure .our_structure_content {
        padding-right: 0;
    }

    .our_structure .our_structure_title {
        max-width: 650px;
    }

    .our_structure .our_structure_description {
        max-width: 650px;
    }

    .our_structure .our_structure_visual {
        margin-top: 60px;

        min-height: 500px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_structure {
        padding: 55px 0 60px;
    }

    .our_structure .our_structure_title {
        font-size: 34px;
    }

    .our_structure .our_structure_description {
        font-size: 15px;
    }

    .our_structure .our_structure_points {
        grid-template-columns: 1fr;

        row-gap: 18px;

        margin-bottom: 30px;
    }

    .our_structure .our_structure_visual {
        min-height: 420px;

        margin-top: 45px;
    }

    .our_structure .our_structure_shape {
        width: 210px;
        height: 210px;

        left: 25px;
        top: 15px;
    }

    .our_structure .our_structure_dashboard {
        width: 290px;

        border-radius: 17px;
    }

    .our_structure .our_structure_dashboard_header {
        padding: 20px;
    }

    .our_structure .our_structure_chart {
        height: 170px;

        margin-left: 18px;
        margin-right: 18px;
    }

    .our_structure .our_structure_stat_card {
        top: 65px;
        right: -5px;

        padding: 10px 12px;
    }

    .our_structure .our_structure_small_card {
        bottom: 35px;
        left: -5px;
    }

}

/* =========================================
   OUR PERFORMANCE
========================================= */

.our-performance {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #ffffff;

    padding: 105px 0 110px;
}


/* =========================================
   LEFT VISUAL
========================================= */

.our-performance .our-performance_visual {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   DECORATIVE SHAPES
========================================= */

.our-performance .our-performance_shape {
    position: absolute;

    border-radius: 50%;
}

.our-performance .our-performance_shape_one {
    width: 300px;
    height: 300px;

    left: 45px;
    top: 90px;

    background: #fff1ec;
}

.our-performance .our-performance_shape_two {
    width: 230px;
    height: 230px;

    left: 170px;
    top: 185px;

    background: #e9fbf2;
}

.our-performance .our-performance_shape_three {
    width: 170px;
    height: 170px;

    left: 95px;
    bottom: 35px;

    background: #fff6f2;
}


/* =========================================
   ANALYTICS CARD
========================================= */

.our-performance .our-performance_card {
    position: relative;
    z-index: 3;

    width: 390px;

    background: #ffffff;

    border-radius: 22px;

    box-shadow:
        0 18px 45px rgba(11, 54, 61, 0.13);

    transform: rotate(-4deg);

    overflow: hidden;
}


/* =========================================
   CARD HEADER
========================================= */

.our-performance .our-performance_card_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    padding: 27px 30px 22px;

    border-bottom: 1px solid #edf0f1;
}

.our-performance .our-performance_card_header span {
    display: block;

    margin-bottom: 7px;

    color: #55666b;

    font-size: 14px;
    font-weight: 500;
}

.our-performance .our-performance_card_header strong {
    display: block;

    color: #455265;

    font-size: 28px;
    font-weight: 500;

    line-height: 1.2;
}

.our-performance .our-performance_card_header small {
    display: block;

    margin-top: 7px;

    color: #9aa5aa;

    font-size: 11px;
}

.our-performance .our-performance_card_icon {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e8;

    color: #ff7542;

    border-radius: 50%;

    font-size: 20px;
}


/* =========================================
   CHART
========================================= */

.our-performance .our-performance_chart {
    position: relative;

    height: 245px;

    margin: 20px 27px 0;

    overflow: hidden;
}

.our-performance .our-performance_grid {
    position: absolute;

    inset: 10px 0 15px;

    background-image:
        linear-gradient(
            to right,
            rgba(11, 54, 61, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(11, 54, 61, 0.08) 1px,
            transparent 1px
        );

    background-size: 42px 40px;
}

.our-performance .our-performance_chart_svg {
    position: absolute;

    inset: 10px 0 15px;

    width: 100%;
    height: 100%;
}


/* =========================================
   LEGEND
========================================= */

.our-performance .our-performance_legend {
    display: flex;
    align-items: center;

    gap: 25px;

    padding: 5px 30px 25px;
}

.our-performance .our-performance_legend span {
    color: #657477;

    font-size: 12px;
}

.our-performance .our-performance_legend i {
    margin-right: 5px;

    font-size: 7px;
}

.our-performance .our-performance_legend span:first-child i {
    color: #ff7542;
}

.our-performance .our-performance_legend span:last-child i {
    color: #42bd88;
}


/* =========================================
   FLOATING PERCENTAGE
========================================= */

.our-performance .our-performance_percentage {
    position: absolute;

    z-index: 5;

    top: 135px;
    right: 10px;

    padding: 13px 18px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 10px 25px rgba(11, 54, 61, 0.12);

    transform: rotate(3deg);
}

.our-performance .our-performance_percentage strong {
    display: block;

    color: #0b363d;

    font-size: 19px;
}

.our-performance .our-performance_percentage span {
    display: block;

    margin-top: 2px;

    color: #8b9699;

    font-size: 10px;
}


/* =========================================
   DECORATIVE DOTS
========================================= */

.our-performance .our-performance_dots {
    position: absolute;

    left: 80px;
    bottom: 80px;

    width: 65px;
    height: 65px;

    background-image: radial-gradient(
        #ffb8a0 2px,
        transparent 2px
    );

    background-size: 18px 18px;

    opacity: 0.55;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.our-performance .our-performance_content {
    padding-left: 50px;
}

.our-performance .our-performance_label {
    display: inline-block;

    margin-bottom: 25px;

    color: #ff7542;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.our-performance .our-performance_title {
    max-width: 570px;

    margin: 0 0 24px;

    color: #0b363d;

    font-size: clamp(38px, 4vw, 50px);
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.our-performance .our-performance_title span {
    color: #ff7542;

    position: relative;
}

.our-performance .our-performance_title span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 1px;

    width: 100%;
    height: 8px;

    background: rgba(255, 117, 66, 0.13);

    z-index: -1;
}


/* =========================================
   DESCRIPTION
========================================= */

.our-performance .our-performance_description {
    max-width: 590px;

    margin: 0 0 28px;

    color: #647579;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================
   STATISTICS
========================================= */

.our-performance .our-performance_stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 45px;

    max-width: 560px;

    margin-bottom: 18px;
}

.our-performance .our-performance_stat strong {
    display: block;

    margin-bottom: 5px;

    color: #0b363d;

    font-size: 28px;
    font-weight: 700;
}

.our-performance .our-performance_stat span {
    display: block;

    max-width: 170px;

    color: #55666b;

    font-size: 14px;

    line-height: 1.45;
}


/* =========================================
   RATING
========================================= */

.our-performance .our-performance_rating {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 25px;
}

.our-performance .our-performance_stars {
    color: #ff7542;

    font-size: 17px;

    letter-spacing: 1px;
}

.our-performance .our-performance_rating > span:last-child {
    color: #657477;

    font-size: 13px;
}


/* =========================================
   BENEFITS
========================================= */

.our-performance .our-performance_benefits {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.our-performance .our-performance_benefit {
    display: flex;
    align-items: center;

    gap: 13px;
}

.our-performance .our-performance_benefit > span {
    flex: 0 0 auto;

    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0e9;

    color: #ff7542;

    border-radius: 50%;

    font-size: 14px;
}

.our-performance .our-performance_benefit p {
    margin: 0;

    color: #111111;

    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .our-performance {
        padding: 85px 0;
    }

    .our-performance .our-performance_content {
        padding-left: 25px;
    }

    .our-performance .our-performance_card {
        width: 360px;
    }

}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991.98px) {

    .our-performance {
        padding: 75px 0;
    }

    .our-performance .our-performance_content {
        padding-left: 0;
    }

    .our-performance .our-performance_visual {
        min-height: 500px;

        margin-bottom: 40px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our-performance {
        padding: 55px 0 65px;
    }

    .our-performance .our-performance_visual {
        min-height: 410px;
    }

    .our-performance .our-performance_shape_one {
        width: 230px;
        height: 230px;

        left: 15px;
        top: 65px;
    }

    .our-performance .our-performance_shape_two {
        width: 180px;
        height: 180px;

        left: 100px;
        top: 150px;
    }

    .our-performance .our-performance_card {
        width: 290px;

        transform: rotate(-3deg);
    }

    .our-performance .our-performance_card_header {
        padding: 20px;
    }

    .our-performance .our-performance_card_header strong {
        font-size: 22px;
    }

    .our-performance .our-performance_chart {
        height: 180px;

        margin-left: 18px;
        margin-right: 18px;
    }

    .our-performance .our-performance_percentage {
        top: 105px;
        right: -2px;
    }

    .our-performance .our-performance_dots {
        left: 15px;
        bottom: 55px;
    }

    .our-performance .our-performance_label {
        font-size: 13px;
    }

    .our-performance .our-performance_title {
        font-size: 34px;
    }

    .our-performance .our-performance_description {
        font-size: 15px;
    }

    .our-performance .our-performance_stats {
        gap: 20px;
    }

    .our-performance .our-performance_stat strong {
        font-size: 24px;
    }

}

/* =========================================
   OUR STATISTICS
========================================= */

.our_statistics {
    width: 100%;

    background: #0b363d;

    padding: 65px 0;
}


/* =========================================
   STATISTIC ITEM
========================================= */

.our_statistics .our_statistics_item {
    text-align: center;

    padding: 0 20px;
}


/* =========================================
   ICON
========================================= */

.our_statistics .our_statistics_icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #d9ebe5;

    color: #0b363d;

    border-radius: 7px;

    font-size: 32px;

    transition: all 0.3s ease;
}

.our_statistics .our_statistics_item:hover
.our_statistics_icon {
    background: #ff7542;

    color: #ffffff;

    transform: translateY(-5px);
}


/* =========================================
   NUMBER
========================================= */

.our_statistics .our_statistics_number {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 34px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   LABEL
========================================= */

.our_statistics .our_statistics_label {
    color: #9fc0c5;

    font-size: 14px;
    font-weight: 500;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_statistics {
        padding: 55px 0;
    }

    .our_statistics .our_statistics_item {
        padding: 15px 20px;
    }

    .our_statistics .our_statistics_icon {
        margin-bottom: 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_statistics {
        padding: 45px 0;
    }

    .our_statistics .our_statistics_item {
        padding: 20px 15px;
    }

    .our_statistics .our_statistics_icon {
        width: 62px;
        height: 62px;

        font-size: 27px;

        margin-bottom: 18px;
    }

    .our_statistics .our_statistics_number {
        font-size: 29px;
    }

    .our_statistics .our_statistics_label {
        font-size: 13px;
    }

}

/* =========================================
   OUR PRICING
========================================= */

.our_pricing {
    width: 100%;

    background: #fffaf7;

    padding: 100px 0 110px;
}


/* =========================================
   HEADING
========================================= */

.our_pricing .our_pricing_heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}

.our_pricing .our_pricing_label {
    display: block;

    margin-bottom: 20px;

    color: #ff7542;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.our_pricing .our_pricing_title {
    margin: 0 0 17px;

    color: #0b363d;

    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.our_pricing .our_pricing_title span {
    display: block;

    width: fit-content;

    margin: 0 auto;

    color: #ff7542;

    position: relative;
}

.our_pricing .our_pricing_title span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 1px;

    height: 8px;

    background: rgba(255, 117, 66, 0.13);

    z-index: -1;
}

.our_pricing .our_pricing_description {
    max-width: 600px;

    margin: 0 auto;

    color: #68777b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   PRICING CARD
========================================= */

.our_pricing .our_pricing_card {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        0 3px 12px rgba(11, 54, 61, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.our_pricing .our_pricing_card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(11, 54, 61, 0.12);
}


/* =========================================
   INTRO
========================================= */

.our_pricing .our_pricing_intro {
    margin: 14px 14px 0;

    min-height: 135px;

    padding: 24px 22px;

    background: #fffaf7;

    border-radius: 5px;
}

.our_pricing .our_pricing_intro h3 {
    margin: 0 0 18px;

    color: #0b363d;

    font-size: 20px;
    font-weight: 700;
}

.our_pricing .our_pricing_intro p {
    margin: 0;

    color: #657477;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   FEATURED CARD
========================================= */

.our_pricing .our_pricing_card_featured {
    border-color: transparent;

    box-shadow:
        0 8px 25px rgba(11, 54, 61, 0.15);
}

.our_pricing .our_pricing_card_featured .our_pricing_intro {
    background: #0b363d;
}

.our_pricing .our_pricing_card_featured .our_pricing_intro h3,
.our_pricing .our_pricing_card_featured .our_pricing_intro p {
    color: #ffffff;
}


/* =========================================
   PRICE
========================================= */

.our_pricing .our_pricing_price {
    display: flex;
    align-items: baseline;

    gap: 5px;

    padding: 32px 36px 18px;
}

.our_pricing .our_pricing_price strong {
    color: #0b363d;

    font-size: 37px;
    font-weight: 700;

    line-height: 1;
}

.our_pricing .our_pricing_price span {
    color: #303d40;

    font-size: 13px;
    font-weight: 500;
}


/* =========================================
   INCLUDES
========================================= */

.our_pricing .our_pricing_includes {
    padding: 0 36px;

    margin-bottom: 18px;

    color: #111111;

    font-size: 14px;
    font-weight: 600;
}


/* =========================================
   FEATURES LIST
========================================= */

.our_pricing .our_pricing_features {
    list-style: none;

    margin: 0;

    padding: 0 36px 30px;
}

.our_pricing .our_pricing_features li {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 17px;

    color: #647579;

    font-size: 14px;
}

.our_pricing .our_pricing_features li:last-child {
    margin-bottom: 0;
}

.our_pricing .our_pricing_features i {
    flex: 0 0 auto;

    color: #0b6f7c;

    font-size: 16px;
}


/* =========================================
   FOOTER / BUTTON
========================================= */

.our_pricing .our_pricing_footer {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: #fafafa;

    border-top: 1px solid #f2f2f2;
}

.our_pricing .our_pricing_button {
    min-width: 163px;

    min-height: 41px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 22px;

    color: #0b363d;

    border: 1px solid #0b363d;

    background: transparent;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 2px;

    transition: all 0.3s ease;
}

.our_pricing .our_pricing_button:hover {
    background: #0b363d;

    color: #ffffff;
}


/* Featured button */

.our_pricing .our_pricing_card_featured .our_pricing_button {
    background: #0b363d;

    color: #ffffff;

    border-color: #0b363d;
}

.our_pricing .our_pricing_card_featured .our_pricing_button:hover {
    background: #ff7542;

    border-color: #ff7542;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_pricing {
        padding: 80px 0;
    }

    .our_pricing .our_pricing_heading {
        margin-bottom: 40px;
    }

    .our_pricing .our_pricing_card {
        margin-bottom: 10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_pricing {
        padding: 60px 0 70px;
    }

    .our_pricing .our_pricing_title {
        font-size: 33px;
    }

    .our_pricing .our_pricing_description {
        font-size: 14px;
    }

    .our_pricing .our_pricing_intro {
        min-height: auto;

        padding: 22px 20px;
    }

    .our_pricing .our_pricing_price {
        padding-left: 25px;
        padding-right: 25px;
    }

    .our_pricing .our_pricing_includes {
        padding-left: 25px;
        padding-right: 25px;
    }

    .our_pricing .our_pricing_features {
        padding-left: 25px;
        padding-right: 25px;
    }

}

/* =========================================
   OUR FAQ
========================================= */

.our_faq {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #ffffff;

    padding: 95px 0 105px;
}


/* =========================================
   HEADING
========================================= */

.our_faq .our_faq_heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}

.our_faq .our_faq_label {
    display: block;

    margin-bottom: 20px;

    color: #ff7542;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.8px;
}

.our_faq .our_faq_title {
    margin: 0 0 18px;

    color: #0b363d;

    font-size: clamp(36px, 4vw, 47px);
    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.5px;
}

.our_faq .our_faq_title span {
    color: #ff7542;

    position: relative;
}

.our_faq .our_faq_title span::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 1px;

    height: 8px;

    background: rgba(255, 117, 66, 0.13);

    z-index: -1;
}

.our_faq .our_faq_intro {
    max-width: 620px;

    margin: 0 auto;

    color: #68777b;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   FAQ ITEM
========================================= */

.our_faq .our_faq_item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 40px;
}

.our_faq .our_faq_item:last-child {
    margin-bottom: 0;
}


/* =========================================
   NUMBER
========================================= */

.our_faq .our_faq_number {
    flex: 0 0 auto;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dceee8;

    color: #0b363d;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.3s ease;
}

.our_faq .our_faq_item:hover .our_faq_number {
    background: #ff7542;

    color: #ffffff;
}


/* =========================================
   CONTENT
========================================= */

.our_faq .our_faq_content {
    flex: 1;

    padding-top: 2px;
}

.our_faq .our_faq_content h3 {
    margin: 0 0 10px;

    color: #0b363d;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;
}

.our_faq .our_faq_content p {
    max-width: 490px;

    margin: 0;

    color: #667579;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_faq {
        padding: 80px 0 85px;
    }

    .our_faq .our_faq_heading {
        margin-bottom: 45px;
    }

    .our_faq .our_faq_item {
        margin-bottom: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_faq {
        padding: 60px 0 65px;
    }

    .our_faq .our_faq_heading {
        margin-bottom: 38px;
    }

    .our_faq .our_faq_title {
        font-size: 33px;
    }

    .our_faq .our_faq_intro {
        font-size: 14px;
    }

    .our_faq .our_faq_item {
        gap: 12px;

        margin-bottom: 30px;
    }

    .our_faq .our_faq_number {
        width: 31px;
        height: 31px;

        font-size: 12px;
    }

    .our_faq .our_faq_content h3 {
        font-size: 15px;
    }

    .our_faq .our_faq_content p {
        font-size: 13px;
    }

}

/* =========================================
   CONTACT US
========================================= */

.contact_us {
    width: 100%;

    background: #fffaf7;

    padding: 55px 0 65px;
}


/* =========================================
   CONTACT CARD
========================================= */

.contact_us .contact_us_card {
    min-height: 102px;

    display: flex;
    align-items: center;

    gap: 25px;

    padding: 20px 27px;

    background: #ffffff;

    box-shadow:
        0 3px 12px rgba(11, 54, 61, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact_us .contact_us_card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(11, 54, 61, 0.11);
}


/* =========================================
   ICON
========================================= */

.contact_us .contact_us_icon {
    flex: 0 0 auto;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b363d;

    background: #dceee8;

    border-radius: 8px;

    font-size: 32px;

    transition: all 0.3s ease;
}

.contact_us .contact_us_card:hover .contact_us_icon {
    background: #ff7542;

    color: #ffffff;
}


/* =========================================
   CONTENT
========================================= */

.contact_us .contact_us_content {
    min-width: 0;
}

.contact_us .contact_us_content h3 {
    margin: 0 0 7px;

    color: #0b363d;

    font-size: 19px;
    font-weight: 700;

    line-height: 1.3;
}

.contact_us .contact_us_content p {
    margin: 0;

    color: #39494d;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .contact_us {
        padding: 50px 0 55px;
    }

    .contact_us .contact_us_card {
        padding: 18px 22px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .contact_us {
        padding: 45px 0 50px;
    }

    .contact_us .contact_us_card {
        min-height: 95px;

        gap: 18px;

        padding: 17px 20px;
    }

    .contact_us .contact_us_icon {
        width: 54px;
        height: 54px;

        font-size: 27px;
    }

    .contact_us .contact_us_content h3 {
        font-size: 17px;
    }

    .contact_us .contact_us_content p {
        font-size: 12px;
    }

}

/* =========================================
   OUR FOOTER
========================================= */

.our_footer {
    width: 100%;

    background: #0b363d;

    padding: 70px 0 25px;
}


/* =========================================
   COMPANY AREA
========================================= */

.our_footer .our_footer_company {
    max-width: 390px;
}

.our_footer .our_footer_logo {
    display: inline-block;

    margin-bottom: 24px;
}

.our_footer .our_footer_logo img {
    display: block;

    max-width: 155px;
    max-height: 55px;

    width: auto;
    height: auto;
}


/* =========================================
   DESCRIPTION
========================================= */

.our_footer .our_footer_description {
    max-width: 360px;

    margin: 0 0 28px;

    color: #9db8bc;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   SUBSCRIBE
========================================= */

.our_footer .our_footer_subscribe_title {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
}

.our_footer .our_footer_subscribe {
    width: 100%;

    max-width: 375px;

    height: 46px;

    display: flex;
    align-items: stretch;

    background: #123f46;

    border-radius: 4px;

    overflow: hidden;
}

.our_footer .our_footer_subscribe input {
    flex: 1;

    min-width: 0;

    padding: 0 13px;

    background: transparent;

    border: 0;
    outline: 0;

    color: #ffffff;

    font-size: 13px;
}

.our_footer .our_footer_subscribe input::placeholder {
    color: #91adb1;
}

.our_footer .our_footer_subscribe button {
    flex: 0 0 67px;

    border: 0;

    background: #ff7542;

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition: background 0.3s ease;
}

.our_footer .our_footer_subscribe button:hover {
    background: #e95f30;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.our_footer .our_footer_column {
    padding-top: 8px;
}

.our_footer .our_footer_column h3 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
}

.our_footer .our_footer_column ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.our_footer .our_footer_column li {
    margin-bottom: 14px;
}

.our_footer .our_footer_column li:last-child {
    margin-bottom: 0;
}

.our_footer .our_footer_column a {
    color: #91adb1;

    font-size: 13px;

    text-decoration: none;

    transition: color 0.3s ease;
}

.our_footer .our_footer_column a:hover {
    color: #ff7542;
}


/* =========================================
   BOTTOM FOOTER
========================================= */

.our_footer .our_footer_bottom {
    margin-top: 55px;

    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.our_footer .our_footer_bottom p {
    margin: 0;

    color: #7f9da1;

    font-size: 12px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.our_footer .our_footer_social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 34px;
}

.our_footer .our_footer_social a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    background: #123f46;
    color: #b2c8ca;

    border-radius: 50%;

    font-size: 14px;
    line-height: 1;

    text-decoration: none;

    transition: all 0.3s ease;
}

.our_footer .our_footer_social a i {
    display: block;
    line-height: 1;
}

.our_footer .our_footer_social a:hover {
    background: #ff7542;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .our_footer {
        padding: 60px 0 25px;
    }

    .our_footer .our_footer_company {
        margin-bottom: 40px;
    }

    .our_footer .our_footer_column {
        margin-bottom: 35px;
    }

    .our_footer .our_footer_bottom {
        margin-top: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .our_footer {
        padding: 50px 0 22px;
    }

    .our_footer .our_footer_company {
        max-width: 100%;

        margin-bottom: 40px;
    }

    .our_footer .our_footer_logo img {
        max-width: 140px;
    }

    .our_footer .our_footer_description {
        font-size: 13px;
    }

    .our_footer .our_footer_column {
        margin-bottom: 28px;
    }

    .our_footer .our_footer_bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 18px;
    }

}

#devtools-warning {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.devtools-warning-box {
    padding: 40px;
    max-width: 500px;
}

.devtools-warning-box h2 {
    margin: 0 0 15px;
    font-size: 30px;
    color: #111827;
}

.devtools-warning-box p {
    margin: 0;
    font-size: 18px;
    color: #6b7280;
}