.faq-section {
    background: #f8f9fc;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(81, 86, 190, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(52, 195, 143, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.faq-accordion {
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    gap: 16px;
}

.faq-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    flex: 1;
}

.faq-header:not(.collapsed) h5 {
    color: var(--secondary-color);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f8;
    transition: all 0.3s ease;
}

.faq-header:not(.collapsed) .faq-icon {
    background: var(--secondary-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-icon i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-body {
    padding: 0 24px 20px 24px;
}

.faq-body p {
    margin: 0;
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 16px 18px;
    }

    .faq-header h5 {
        font-size: 15px;
    }

    .faq-body {
        padding: 0 18px 16px 18px;
    }

    .faq-body p {
        font-size: 14px;
    }
}

/* Hero section  */
p.hero_label {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    /* padding-left: 50px; */
    bottom: -30px;
}

/* p.hero_label::before {
    content: "";
    position: absolute;
    background: var(--secondary-color);
    width: 45px;
    height: 2px;
    top: 13px;
    left: 0;
} */
a.default-btn.service_btn {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

a.default-btn.active-btn>i {
    transform: rotate(-45deg);
    margin-left: 4px;
}

/* Trust Feature Section */
.trust-feature-section {
    background: #fff;
    padding: 34px 0;
}

.trust-feature-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 0;
}

.trust-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 88px;
    padding: 0 30px;
    position: relative;
}

.trust-feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 0;
    width: 1px;
    height: 64px;
    background: #e8edf5;
}

.trust-feature-icon {
    align-items: center;
    background: #eff6ff;
    border-radius: 50%;
    color: #2177ff;
    display: flex;
    flex: 0 0 58px;
    font-size: 26px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.trust-feature-icon i {
    line-height: 1;
}

.trust-feature-content h3 {
    color: #19213d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}

.trust-feature-content p {
    color: #526077;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 1199px) {
    .trust-feature-item {
        padding: 0 18px;
    }
}

@media (max-width: 991px) {
    .trust-feature-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-feature-item {
        padding: 22px 24px;
    }

    .trust-feature-item:not(:last-child)::after {
        display: none;
    }

    .trust-feature-item:nth-child(odd)::after {
        content: "";
        display: block;
        position: absolute;
        top: 22px;
        right: 0;
        width: 1px;
        height: calc(100% - 44px);
        background: #e8edf5;
    }
}

@media (max-width: 575px) {
    .trust-feature-section {
        padding: 18px 0;
    }

    .trust-feature-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-feature-item {
        padding: 16px 0;
    }

    .trust-feature-item:nth-child(odd)::after {
        display: none;
    }

    .trust-feature-item:not(:last-child) {
        border-bottom: 1px solid #e8edf5;
    }
}

/* About Section  */
.default_label {
    position: relative;
    text-transform: uppercase;
    font-weight: 500 !important;
    /* padding-left: 40px; */
}

/* .default_label::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    background: var(--secondary-color);
    top: 7px;
    left: 0;
} */
.secondary_bg_label {
    color: var(--white-color) !important;
}

.secondary_bg_label::before {
    background: var(--white-color);
}

.navbar-area.is-sticky .main-nav {
    box-shadow: none;
}

.slick-track {
    float: left;
}

/* Vacancies Page */
.vacancies-section {
    background:
        linear-gradient(180deg, rgba(6, 94, 210, 0.05) 0%, rgba(255, 255, 255, 0) 260px),
        #ffffff;
    padding: 95px 0 20px;
    position: relative;
}

.vacancies-heading {
    margin: 0 auto 58px;
    max-width: 760px;
    text-align: center;
}

.vacancies-heading span {
    color: var(--secondary-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.vacancies-heading h1 {
    color: var(--primary-color);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.vacancies-heading p {
    color: #5f6f85;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 680px;
}

.vacancies-list {
    display: grid;
    gap: 22px;
}

.vacancies-empty-state {
    background: #f8fbff;
    border: 1px solid rgba(6, 94, 210, 0.18);
    border-radius: 10px;
    padding: 36px 30px;
    text-align: center;
}

.vacancies-empty-state h3 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
}

.vacancies-empty-state p {
    color: #5f6f85;
    font-size: 16px;
    margin: 0;
}

.vacancy-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(6, 94, 210, 0.62);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(1, 17, 37, 0.07);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    overflow: hidden;
    padding: 24px 24px 24px 26px;
    position: relative;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.vacancy-card::before {
    background: var(--secondary-color);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.25s ease;
    width: 4px;
}

.vacancy-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 54px rgba(6, 94, 210, 0.15);
    transform: translateY(-3px);
}

.vacancy-card:hover::before {
    opacity: 1;
}

.vacancy-content {
    min-width: 0;
}

.vacancy-title-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.vacancy-title-row h2 {
    color: #020b18;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.vacancy-status {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;
    min-height: 30px;
    padding: 7px 16px;
}

.vacancy-status-open {
    background: #c9f6dc;
    color: #17643a;
}

.vacancy-status-closed {
    background: #fde8eb;
    color: #79313a;
}

.vacancy-location {
    align-items: center;
    color: #061326;
    display: flex;
    font-size: 15px;
    font-weight: 500;
    gap: 10px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vacancy-location i {
    color: var(--secondary-color);
    flex: 0 0 auto;
    font-size: 22px;
    line-height: 1;
}

.vacancy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.vacancy-meta span {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(1, 17, 37, 0.7);
    border-radius: 5px;
    color: #061326;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    gap: 9px;
    min-height: 44px;
    padding: 9px 15px;
}

.vacancy-meta i {
    color: var(--secondary-color);
    font-size: 21px;
    line-height: 1;
}

.vacancy-details-btn {
    align-items: center;
    background: var(--secondary-color);
    border-radius: 5px;
    color: #ffffff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    min-height: 50px;
    min-width: 136px;
    padding: 14px 24px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vacancy-details-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(3px);
}

.vacancy-details-btn i {
    font-size: 17px;
    line-height: 1;
}

.theme-dark .vacancies-section {
    background:
        linear-gradient(180deg, rgba(6, 94, 210, 0.12) 0%, rgba(1, 17, 37, 0) 260px),
        #061326;
}

.theme-dark .vacancies-heading h1,
.theme-dark .vacancy-title-row h2,
.theme-dark .vacancy-location,
.theme-dark .vacancy-meta span {
    color: #ffffff;
}

.theme-dark .vacancies-heading p {
    color: #c7d3e4;
}

.theme-dark .vacancy-card,
.theme-dark .vacancy-meta span {
    background: #0b1f38;
}

.theme-dark .vacancy-card {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

/* Vacancy Details Page */
.vacancy-details-page {
    background: #ffffff;
    padding: 82px 0 40px;
}

.vacancy-details-breadcrumbs {
    align-items: center;
    color: #5c6680;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
    line-height: 1.5;
    margin-bottom: 44px;
}

.vacancy-details-breadcrumbs a:hover {
    color: var(--secondary-color);
}

.vacancy-details-grid {
    align-items: flex-start;
    display: grid;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.vacancy-details-main h1 {
    color: #08101f;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px;
}

.vacancy-details-intro {
    border: 1px solid rgba(8, 16, 31, 0.18);
    color: #1e293b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 34px;
    padding: 17px 20px;
}

.vacancy-copy-section {
    margin-bottom: 28px;
}

.vacancy-copy-section h2,
.vacancy-copy-section h3 {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.vacancy-copy-section h2 {
    font-size: 28px;
    line-height: 1.25;
}

.vacancy-copy-section h3 {
    font-size: 24px;
    line-height: 1.25;
}

.vacancy-copy-section p,
.vacancy-copy-section li {
    color: #576174;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

.vacancy-copy-section p {
    margin: 0 0 16px;
}

.vacancy-copy-label {
    color: #263247 !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.vacancy-copy-section ul {
    list-style: disc;
    margin: 0 0 16px 24px;
    padding: 0;
}

.vacancy-copy-section ol {
    list-style: decimal;
    margin: 0 0 16px 24px;
    padding: 0;
}

.vacancy-copy-section ul li,
.vacancy-copy-section ol li {
    display: list-item;
    margin-bottom: 4px;
}

.vacancy-summary-card {
    background: color-mix(in srgb, var(--secondary-color) 12%, white);
    border-radius: 0;
    box-shadow: 0 16px 38px rgba(3, 24, 136, 0.08);
    padding: 34px 28px;
    position: sticky;
    top: 120px;
}

.vacancy-summary-card h3 {
    color: #08101f;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 26px;
}

.vacancy-summary-item {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.vacancy-summary-item:last-child {
    margin-bottom: 0;
}

.vacancy-summary-item i {
    color: var(--primary-color);
    font-size: 17px;
    line-height: 1;
    margin-top: 4px;
}

.vacancy-summary-item span {
    color: #576174;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 3px;
}

.vacancy-summary-item strong {
    color: #08101f;
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.theme-dark .vacancy-details-page {
    background: #061326;
}

.theme-dark .vacancy-details-main h1,
.theme-dark .vacancy-copy-section h2,
.theme-dark .vacancy-copy-section h3,
.theme-dark .vacancy-summary-card h3,
.theme-dark .vacancy-summary-item strong {
    color: #ffffff;
}

.theme-dark .vacancy-details-breadcrumbs,
.theme-dark .vacancy-copy-section p,
.theme-dark .vacancy-copy-section li,
.theme-dark .vacancy-summary-item span {
    color: #c7d3e4;
}

.theme-dark .vacancy-details-intro {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: #e4ecf7;
}

.theme-dark .vacancy-copy-label {
    color: #ffffff !important;
}

.theme-dark .vacancy-summary-card {
    background: color-mix(in srgb, var(--secondary-color) 20%, #08101f);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}


@supports not (background: color-mix(in srgb, white 50%, black)) {
    .vacancy-summary-card {
        background: rgba(6, 94, 210, 0.12);
    }

    .theme-dark .vacancy-summary-card {
        background: rgba(6, 94, 210, 0.2);
    }
}

@media (max-width: 991px) {
    .vacancies-section {
        padding: 75px 0 0;
    }

    .vacancies-heading {
        margin-bottom: 40px;
    }

    .vacancies-heading h1 {
        font-size: 38px;
    }

    .vacancy-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .vacancy-details-btn {
        min-width: 150px;
    }

    .vacancy-details-page {
        padding-top: 68px;
    }

    .vacancy-details-grid {
        grid-template-columns: 1fr;
    }

    .vacancy-details-main h1 {
        font-size: 40px;
    }

    .vacancy-summary-card {
        position: static;
    }
}

@media (max-width: 575px) {
    .vacancies-section {
        padding: 58px 0 0;
    }

    .vacancies-heading h1 {
        font-size: 32px;
    }

    .vacancies-heading p {
        font-size: 15px;
    }

    .vacancy-title-row h2 {
        font-size: 20px;
    }

    .vacancy-card {
        padding: 20px 18px;
    }

    .vacancy-meta {
        display: grid;
        gap: 10px;
        width: 100%;
    }

    .vacancy-meta span,
    .vacancy-details-btn {
        width: 100%;
    }

    .vacancy-details-page {
        padding: 54px 0 20px;
    }

    .vacancy-details-breadcrumbs {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .vacancy-details-main h1 {
        font-size: 31px;
    }

    .vacancy-details-intro {
        font-size: 15px;
        padding: 14px 16px;
    }

    .vacancy-copy-section h2 {
        font-size: 24px;
    }

    .vacancy-copy-section h3 {
        font-size: 22px;
    }

    .vacancy-copy-section p,
    .vacancy-copy-section li,
    .vacancy-summary-item span,
    .vacancy-summary-item strong {
        font-size: 15px;
    }

    .vacancy-summary-card {
        padding: 24px 18px;
    }

    .vacancy-summary-card h3 {
        font-size: 24px;
    }
}


.about-page {
    background: #ffffff;
    color: var(--text-color);
}

.about-page .about-hero {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 56px 0 42px;
    position: relative;
    overflow: hidden;
}

.about-page .about-hero::before {
    background: radial-gradient(circle at 20% 30%, rgba(6, 94, 210, 0.08), transparent 48%);
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.about-page .hero-row {
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-page .hero-col-text {
    padding: 34px 28px 34px 6px;
}

.about-page .hero-badge {
    color: var(--secondary-color);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-page .hero-title {
    color: var(--primary-color);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.02;
    margin: 0 0 14px;
}

.about-page .hero-sub {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
}

.about-page .hero-text p {
    color: #4f5b6f;
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 10px;
    max-width: 355px;
}

.about-page .hero-col-img {
    min-height: 100%;
    padding-left: 14px;
}

.about-page .hero-img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-page .mission {
    background: #f6f7f9;
    padding: 54px 0 62px;
}

.about-page .mission-card {
    margin: 0 auto;
    max-width: 930px;
    padding: 10px 20px 0;
    position: relative;
}

.about-page .mission-rule {
    background: var(--secondary-color);
    border-radius: 999px;
    height: 4px;
    margin: 0 auto 14px;
    width: 66px;
}

.about-page .mission-eyebrow {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.about-page .mission-quote {
    color: var(--primary-color);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 880px;
    position: relative;
}

.about-page .mission-quote .mark {
    color: var(--secondary-color);
    font-size: 64px;
    font-weight: 700;
    line-height: 0;
    position: absolute;
    top: 18px;
}

.about-page .mission-quote .mark-open {
    left: 0;
}

.about-page .mission-quote .mark-close {
    bottom: 10px;
    right: 0;
    top: auto;
}

.about-page .mission-copy {
    margin: 0 auto;
    max-width: 760px;
    padding: 0 54px;
}

.about-page .values {
    background: #ffffff;
    padding: 44px 0 42px;
}

.about-page .values-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.about-page .values-row {
    background: #ffffff;
    border-top: 1px solid #eceff4;
}

.about-page .value {
    border-right: 1px solid #eceff4;
    height: 100%;
    padding: 28px 26px 18px;
    text-align: center;
}

.about-page .value svg {
    color: var(--secondary-color);
    stroke: currentColor;
    margin-bottom: 14px;
}

.about-page .value h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-page .value p {
    color: #5f6f85;
    font-size: 14px;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 210px;
}

.about-page .founder {
    background: #f6f7f9;
    padding: 38px 0 34px;
}

.about-page .founder-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(1, 17, 37, 0.08);
    color: #ffffff;
    overflow: hidden;
    padding: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.about-page .founder-photo {
    border-radius: 4px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-page .founder-name {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.about-page .founder-role {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: none;
}

.about-page .founder-body p {
    color: #5f6f85;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.about-page .contact-strip {
    background: linear-gradient(180deg, #0c2e66 0%, #092451 100%);
    color: #ffffff;
    margin-top: 32px;
    padding: 28px 0 26px;
}

.about-page .contact-strip-inner {
    align-items: stretch;
}

.about-page .contact-strip-item {
    min-height: 104px;
    padding: 0 32px;
    position: relative;
}

.about-page .contact-strip-item:not(:last-child)::after {
    background: rgba(255, 255, 255, 0.18);
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
    width: 1px;
    height: calc(100% - 28px);
}

.about-page .contact-strip-icon {
    align-items: center;
    border: 2px solid rgba(6, 94, 210, 0.95);
    border-radius: 999px;
    color: #2d86ff;
    display: flex;
    font-size: 28px;
    height: 44px;
    justify-content: center;
    margin-bottom: 12px;
    width: 44px;
}

.about-page .contact-strip-item h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-page .contact-strip-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.about-page .contact-strip-item p a {
    color: inherit;
}

.about-page .contact-strip-row {
    background: transparent;
}

.about-page .footer-contact-space {
    background: #ffffff;
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .about-page .hero-col-text {
        padding: 24px 12px 20px;
    }

    .about-page .hero-col-img {
        padding-left: 0;
        margin-top: 10px;
    }

    .about-page .mission-copy {
        padding: 0 22px;
    }

    .about-page .value {
        border-right: 0;
        border-bottom: 1px solid #eceff4;
        padding: 26px 22px 20px;
    }

    .about-page .contact-strip-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        min-height: auto;
        padding: 22px 20px;
    }

    .about-page .contact-strip-item:not(:last-child)::after {
        display: none;
    }

    .about-page .founder-card {
        padding: 14px;
    }

    .about-page .founder-body {
        padding-left: 0 !important;
        padding-top: 16px;
    }
}

@media (max-width: 767px) {

    .about-page .about-hero,
    .about-page .values,
    .about-page .founder {
        padding: 40px 0;
    }

    .about-page .about-hero {
        padding-top: 32px;
        padding-bottom: 28px;
    }

    .about-page .hero-title {
        font-size: 42px;
    }

    .about-page .hero-sub {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .about-page .values-title {
        font-size: 28px;
    }

    .about-page .mission-quote {
        font-size: 22px;
    }

    .about-page .mission-quote .mark {
        font-size: 44px;
    }

    .about-page .mission-copy {
        padding: 0 18px;
    }

    .about-page .founder-name {
        font-size: 22px;
    }
}

p.team-designation {
    font-weight: 500;
    padding-bottom: 12px;
    font-size: 16px !important;
}

p.team-description {
    line-height: 21px !important;
    color: gray !important;
}
