﻿@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

:root {

    --tp-white: #ffffff;
    --tp-black: #000000;
    --tp-green: #187719;
    --tp-green-dark: #125a13;
    --tp-grey-900: #212121;
    --tp-grey-700: #333333;
    --tp-grey-100: #e9e9e9;
    --tp-grey-50: #f5f6f6;


    --tp-font: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --tp-font-alt: 'Open Sans', sans-serif;


    --tp-gutter: 20px;
    --tp-section-y: 80px;


    --tp-radius-sm: 6px;
    --tp-radius: 12px;
    --tp-radius-lg: 16px;


    --tp-transition: all 0.3s ease;
    --tp-shadow: 2px 2px 6.8px rgba(0, 0, 0, 0.25);
    --tp-shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.container {
    max-width: 1210px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.tp-main {
    font-family: var(--tp-font);
    color: var(--tp-grey-700);
    overflow-x: hidden;
}

.tp-main *,
.tp-main *::before,
.tp-main *::after {
    box-sizing: border-box;
}

.tp-main img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.tp-main .container {
    max-width: 1210px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.tp-section {
    position: relative;
    padding-top: var(--tp-section-y);
    padding-bottom: var(--tp-section-y);
}

.tp-section__title {
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--tp-grey-900);
    text-align: center;
    margin: 0 0 48px;
}

.tp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    min-width: 180px;
    padding: 6px 16px;
    font-family: var(--tp-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--tp-transition);
    white-space: nowrap;
}

.tp-btn__icon {
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tp-btn--primary {
    background: var(--tp-green);
    color: var(--tp-white);
}

.tp-btn--primary:hover {
    background: var(--tp-white);
    color: var(--tp-green);
    border-color: var(--tp-green);
    box-shadow: var(--tp-shadow-lg);
}

.tp-btn--primary:hover .tp-btn__icon {
    transform: translateX(4px);
}

.tp-btn--white {
    background: var(--tp-white);
    color: var(--tp-green);
}

.tp-btn--white:hover {
    background: var(--tp-green);
    color: var(--tp-white);
    border-color: var(--tp-white);
}

.tp-btn--outline {
    background: transparent;
    color: var(--tp-green);
    border-color: var(--tp-green);
}

.tp-btn--outline:hover {
    background: var(--tp-green);
    color: var(--tp-white);
}

.tp-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

.tp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%) lightgray center bottom / cover no-repeat;
    transition: background-position 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tp-hero:hover .tp-hero__bg {
    background-position: center 90%;
}

.tp-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.tp-hero__title {
    max-width: 1070px;
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 800;
    font-size: 46px;
    line-height: 56px;
    color: var(--tp-white);
}

.tp-hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.tp-hero__actions .tp-btn__icon svg {
    width: 100%;
    height: 100%;
    max-width: 12px;
    max-height: 16px;
}

@media (max-width: 991.98px) {
    .tp-hero__title {
        font-size: 38px;
        line-height: 46px;
    }
}

@media (max-width: 575.98px) {
    .tp-hero {
        min-height: 420px;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .tp-hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .tp-hero__inner {
        gap: 28px;
    }

    .tp-hero__actions {
        width: 100%;
    }

    .tp-hero__actions .tp-btn {
        flex: 1 1 100%;
    }
}

.tp-link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--tp-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-green);
    text-decoration: none;
    transition: var(--tp-transition);
}

.tp-products .tp-link[hidden] {
    display: none;
}

@media (max-width: 991.98px) {
    .tp-products .tp-link{
        display: none;
    }
}

.tp-link__icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}


.tp-link:hover {
    color: var(--tp-green-dark);
    gap: 8px;
}

.tp-link:hover .tp-link__icon {
    transform: translateX(3px);
}

.tp-tabs {
    --tp-tabs-gap: 60px;
    --tp-tabs-offset: 34px;
    --tp-tabs-indicator-width: min(280px, 40vw);

    position: relative;
    display: flex;
    justify-content: center;
    gap: var(--tp-tabs-gap);
    border-bottom: 2px solid #d7d7d7;
    margin-bottom: 30px;
    width: 620px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 34px;
    padding-right: 26px;
}

.tp-tabs::after {
    content: "";
    position: absolute;
    left: var(--tp-tabs-offset);
    bottom: -2px;
    width: var(--tp-tabs-indicator-width);
    height: 4px;
    background: var(--tp-green);
    transform: translateX(0);
    transition: transform 260ms ease;
}

.tp-tabs.is-capabilities::after {
    transform: translateX(calc(var(--tp-tabs-indicator-width) + var(--tp-tabs-gap)));
}

.tp-tabs__tab {
    appearance: none;
    background: none;
    border: 0;
    border-bottom: 4px solid transparent;
    margin-bottom: -2px;
    width: 280px;
    max-width: 40vw;
    height: 72px;
    padding: 6px 16px;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 25px;
    line-height: 32px;
    color: var(--tp-grey-700);
    opacity: 0.67;
    cursor: pointer;
    transition: var(--tp-transition);
}

.tp-tabs__tab:hover {
    opacity: 1;
    color: var(--tp-green);
}

.tp-tabs__tab.is-active {
    color: var(--tp-grey-900);
    opacity: 1;
    border-bottom-color: transparent;
}

.tp-products__group {
    display: none;
}

.tp-products__group.is-active {
    display: block;
    animation: tp-products-fade-in 180ms ease both;
}

.tp-products__body {
    display: grid;
    grid-template-columns: 215px 421px 286px;
    column-gap: 40px;
    row-gap: 0;
    align-items: start;
    justify-content: center;
    max-width: 1002px;
    margin-left: auto;
    margin-right: auto;
}

.tp-products__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 215px;
    text-align: right;
}

.tp-products__menu button {
    position: relative;
    display: inline-block;
    appearance: none;
    background: none;
    border: 0;
    padding: 8px 0 8px 4px;
    width: auto;
    text-align: right;
    font-family: var(--tp-font);
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: var(--tp-grey-900);
    cursor: pointer;
    transition: var(--tp-transition);
    white-space: normal;
}

.tp-products__menu button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    width: 100%;
    height: 1px;
    background: var(--tp-green);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 220ms ease;
}

.tp-products__menu button:hover {
    color: var(--tp-green);
}

.tp-products__menu li.is-active button {
    color: var(--tp-green);
}

.tp-products__menu li.is-active button::after {
    transform: scaleX(1);
}

.tp-products__media {
    overflow: hidden;
    width: 421px;
    height: 448px;
    align-self: stretch;
}

.tp-products__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 1;
    transition: opacity 160ms ease, transform 0.4s ease;
}

.tp-products__media img.is-fading {
    opacity: 0;
}

.tp-products__media:hover img {
    transform: none;
}

.tp-products__panel {
    display: none;
}

.tp-products__panel.is-active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 286px;
    animation: tp-products-fade-in-up 180ms ease both;
}

@keyframes tp-products-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes tp-products-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tp-products__group.is-active,
    .tp-products__panel.is-active {
        animation: none;
    }

    .tp-products__media img {
        transition: none;
    }
}

.tp-products__heading {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: var(--tp-green);
}

.tp-products__text {
    font-family: var(--tp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-black);
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 13;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .tp-products__text{
        display: block;
    }
}

.tp-products__text p {
    margin: 0 0 24px;
}

.tp-products__text p:last-child {
    margin-bottom: 0;
}

.tp-products__panel.is-expanded .tp-products__text {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

@media (max-width: 991.98px) {
    .tp-products__body {
        grid-template-columns: 200px 1fr;
        grid-template-areas:
            "menu media"
            "content content";
        max-width: 720px;
    }

    .tp-products__menu {
        grid-area: menu;
        width: 200px;
    }

    .tp-products__media {
        grid-area: media;
        width: 100%;
        height: auto;
        aspect-ratio: 421 / 448;
    }

    .tp-products__content {
        grid-area: content;
    }

    .tp-products__panel.is-active {
        width: 100%;
    }
}

@media (max-width: 976px) {
    .tp-products__body {
        row-gap: 30px;
    }
}

@media (max-width: 575.98px) {
    .tp-tabs {
        --tp-tabs-gap: 8px;
        --tp-tabs-offset: 0px;
        --tp-tabs-indicator-width: calc((100% - var(--tp-tabs-gap)) / 2);

        padding-left: 0;
        padding-right: 0;
    }

    .tp-tabs__tab {
        flex: 1 1 0;
        width: auto;
        max-width: none;
        font-size: 20px;
        height: 60px;
    }

    .tp-products__body {
        grid-template-columns: 1fr;
        grid-template-areas:
            "menu"
            "media"
            "content";
        gap: 24px;
    }

    .tp-products__menu {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        width: 100%;
        gap: 18px;
        padding-bottom: 8px;
    }

    .tp-products__menu::-webkit-scrollbar {
        height: 4px;
    }

    .tp-products__menu::-webkit-scrollbar-track {
        background: var(--tp-grey-100);
        border-radius: 2px;
    }

    .tp-products__menu::-webkit-scrollbar-thumb {
        background: var(--tp-green);
        border-radius: 2px;
    }

    .tp-products__menu button {
        width: auto;
        font-size: 16px;
        text-align: center;
        white-space: nowrap;
        padding: 8px 12px;
    }

    .tp-products__media {
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
}

.tp-values {
    background: var(--tp-grey-100);
}

.tp-values__title {
    color: var(--tp-green);
    margin-bottom: 50px;
}

.tp-values__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 500px));
    gap: 50px;
    justify-content: center;
}

.tp-vcard {
    position: relative;
    aspect-ratio: 500 / 438;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--tp-shadow);
}

.tp-vcard__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transition: transform 0.5s ease;
}

.tp-vcard:hover .tp-vcard__img {
    transform: scale(1.05);
}

.tp-vcard__shade {
    position: absolute;
    inset: 0;
    background: var(--tp-grey-700);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tp-vcard:hover .tp-vcard__shade {
    opacity: 1;
}

.tp-vcard__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: justify-content 0.3s ease;
}

.tp-vcard:hover .tp-vcard__inner {
    justify-content: flex-start;
}

.tp-vcard__bar {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 12px 16px;
    background: var(--tp-green);
}

.tp-vcard__heading {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 25px;
    line-height: 32px;
    color: var(--tp-white);
    text-align: center;
}

.tp-vcard__reveal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease, flex-grow 0.4s ease;
}

.tp-vcard:hover .tp-vcard__reveal {
    max-height: 360px;
    opacity: 1;
    padding: 24px;
    flex-grow: 1;
}

.tp-vcard__text {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-white);
    text-align: center;
    max-width: 366px;
}

.tp-link--white {
    color: var(--tp-white);
}

.tp-link--white:hover {
    color: var(--tp-grey-100);
}

@media (max-width: 767.98px) {
    .tp-values__grid {
        grid-template-columns: minmax(0, 500px);
    }

    .tp-vcard {
        aspect-ratio: auto;
        height: auto;
    }

    .tp-vcard__inner {
        position: relative;
        height: auto;
        justify-content: flex-start;
    }

    .tp-vcard__reveal {
        max-height: none;
        opacity: 1;
        padding: 24px;
        flex-grow: 1;
    }

    .tp-vcard__shade {
        opacity: 0.94;
    }
}

.tp-why {
    --tp-why-container-width: 1210px;
    --tp-why-container-edge: max(0px, calc((100vw - var(--tp-why-container-width) + 30px) / 2));
    --tp-why-grid-content-width: 532px;
    --tp-why-grid-garp: 68px;
    --tp-why-hero-media-gap: calc(194px + var(--tp-why-grid-garp));
    --tp-why-hero-media-left: calc(var(--tp-why-container-edge) + var(--tp-why-grid-content-width) + var(--tp-why-hero-media-gap));

    position: relative;
}

@media (min-width: 992px) {
    .tp-why::after {
        position: absolute;
        content: "";
        right: 0;
        left: var(--tp-why-hero-media-left);
        top: var(--tp-section-y);
        bottom: var(--tp-section-y);
        height: auto;
        background-color: var(--tp-green);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    left: 720px;
}

.tp-why__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: var(--tp-why-grid-content-width) 1fr;
    gap: var(--tp-why-grid-garp);
    align-items: center;
}

.tp-why__col {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
}

.tp-why__title {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 800;
    font-size: 46px;
    line-height: 56px;
    color: var(--tp-green);
}

.tp-why__intro {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--tp-font-alt);
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-black);
    text-align: justify;
}

.tp-why__intro p {
    margin: 0;
}

.tp-why__intro strong {
    font-weight: 700;
}

.tp-why__intro a {
    color: var(--tp-green);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--tp-transition);
}

.tp-why__intro a:hover {
    color: var(--tp-green-dark);
}

.tp-why__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.tp-why__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.tp-why__check {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    color: var(--tp-green);
    margin-top: 1px;
    transition: transform 0.3s ease;
}

.tp-why__check svg {
    width: 100%;
    height: 100%;
}

.tp-why__item:hover .tp-why__check {
    transform: scale(1.12);
}

.tp-why__item-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tp-why__item-title {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--tp-green);
}

.tp-why__item-text {
    margin: 0;
    font-family: var(--tp-font-alt);
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-black);
}

.tp-why__btn {
    margin-top: 0;
}

.tp-why__visual {
    position: relative;
    aspect-ratio: 710 / 774;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .tp-why__accent {
        position: absolute;
        top: 0;
        right: -15px;
        width: 71.8%;
        height: 100%;
        background: var(--tp-green);
    }
}

.tp-why__media {
    position: absolute;
    top: 11.9%;
    left: 0;
    width: 74.6%;
    height: 77.3%;
    overflow: hidden;
    box-shadow: var(--tp-shadow-lg);
}

.tp-why__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-why__media:hover img {
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .tp-why__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tp-why__visual {
        margin: 0 auto;
        width: 100%;
    }

    .tp-why__title {
        font-size: 38px;
        line-height: 46px;
    }
}

@media (max-width: 575.98px) {
    .tp-why__title {
        font-size: 30px;
        line-height: 38px;
    }

    .tp-why__btn {
        width: 100%;
    }
}

.tp-certs {
    position: relative;
    border-top: 20px solid var(--tp-green);
    border-bottom: 20px solid var(--tp-green);
    overflow: hidden;
    background-image: url("../images/redesign/bk-our-certifications.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.tp-certs::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.71);
    pointer-events: none;
}

.tp-certs__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
}

.tp-certs__title {
    color: var(--tp-white);
    margin: 0;
}

.tp-certs__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.tp-cert {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 0;
    width: 140px;
    text-align: center;
}

.tp-cert__badge {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tp-cert__badge img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.tp-cert__badge--circle {
    width: 100px;
    height: 100px;
    padding: 14px 17px;
    background: var(--tp-white);
    border: 1px solid #004185;
    border-radius: 50%;
}

.tp-cert__badge--circle img {
    max-height: 100%;
    max-width: 100%;
}

.tp-cert:hover .tp-cert__badge {
    transform: translateY(-4px) scale(1.05);
}

.tp-cert__label {
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-white);
}

.tp-cert__label a {
    color: var(--tp-white);
    text-decoration: none;
    transition: var(--tp-transition);
}

.tp-cert__label a:hover {
    color: #8fd28f;
    text-decoration: underline;
}

.tp-certs__btn {
    min-width: 232px;
}

@media (max-width: 575.98px) {
    .tp-certs__grid {
        gap: 24px 18px;
    }

    .tp-cert {
        width: 120px;
    }
}

.tp-industries {
    position: relative;
    overflow: hidden;
    background-image: url("../images/redesign/industries-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tp-industries::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(233, 233, 233, 0.3);
    pointer-events: none;
}

.tp-industries__inner {
    position: relative;
    z-index: 1;
}

.tp-industries__title {
    color: var(--tp-green);
    margin-bottom: 64px;
}

.tp-industries__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 16px;
}

.tp-ind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 0 1 auto;
    width: max-content;
    min-width: 120px;
    max-width: 252px;
}

.tp-ind__circle {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tp-white);
    border-radius: 50%;
    box-shadow: 2px 2px 3.4px rgba(0, 0, 0, 0.25);
    transition: var(--tp-transition);
}

.tp-ind__icon {
    width: 64px;
    height: 64px;
    color: var(--tp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tp-ind__icon svg {
    width: 100%;
    height: 100%;
}

.tp-ind__icon-shield-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tp-ind__icon-shield-wrap .tp-shield {
    width: 42.67px;
    height: 53.33px;
    color: var(--tp-green);
}

.tp-ind__icon-shield-wrap .tp-home {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 18px;
}

.tp-ind__label {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: var(--tp-grey-900);
    text-align: center;
}

.tp-ind:hover .tp-ind__circle {
    transform: translateY(-6px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1400px) {
    .tp-ind {
        flex: 0 1 calc((100% - 64px) / 5);
        width: auto;
        min-width: 0;
    }
}

@media (min-width: 768px) and (max-width: 1399px) {
    .tp-ind {
        flex: 0 1 calc((100% - 32px) / 3);
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

@media (max-width: 991.98px) {
    .tp-industries__grid {
        gap: 32px 24px;
    }

    .tp-ind__label {
        font-size: 19px;
        line-height: 28px;
    }
}

@media (max-width: 575.98px) {
    .tp-ind__circle {
        width: 96px;
        height: 96px;
    }

    .tp-ind__icon,
    .tp-ind__icon-shield-wrap {
        width: 48px;
        height: 48px;
    }

    .tp-ind__icon-shield-wrap .tp-shield {
        width: 32px;
        height: 40px;
    }

    .tp-ind__icon-shield-wrap .tp-home {
        width: 12px;
        height: 13.5px;
    }

    .tp-ind__label {
        font-size: 17px;
        line-height: 24px;
    }
}

.tp-process__title {
    color: var(--tp-green);
    margin-bottom: 48px;
}

.tp-process__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.tp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 200px;
    flex: 0 0 auto;
}

.tp-step__card {
    width: 100%;
    height: 236px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 10px 24px;
    background: var(--tp-white);
    border-radius: 4px;
    box-shadow: 2px 2px 3.4px rgba(0, 0, 0, 0.25);
    transition: var(--tp-transition);
}

.tp-step__icon {
    width: 64px;
    height: 64px;
    color: var(--tp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tp-step__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tp-step__icon-process-1 {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-flex;
    color: var(--tp-green);
}

.tp-step__icon-process-1 svg {
    position: absolute;
}

.tp-step__icon-process-1 .tp-chat-big {
    top: 4%;
    left: 0;
    width: 19.7px;
    height: 18.8px;
}

.tp-step__icon-process-1 .tp-chat-small {
    top: 13%;
    left: 20%;
    width: 11.9px;
    height: 11.6px;
    --stroke-color: #fff;
}

.tp-step__icon-process-1 .tp-person-big {
    bottom: 0;
    left: 17%;
    width: 23.3px;
    height: 26.2px;
}

.tp-step__icon-process-1 .tp-person-small {
    bottom: 0;
    left: 45%;
    width: 33.9px;
    height: 35.8px;
}

.tp-step__process-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.tp-step__icon-process-3 {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-flex;
    color: var(--tp-green);
}

.tp-step__icon-process-3 svg {
    position: absolute;
}

.tp-step__icon-process-3 .tp-clipboard {
    top: 0;
    left: 11px;
    width: 41.5px;
    height: 64px;
}

.tp-step__icon-process-3 .tp-check-badge {
    bottom: 0;
    right: 4px;
    width: 23.8px;
    height: 23.8px;
}

.tp-step__num {
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--tp-green);
}

.tp-step__line {
    width: 56px;
    height: 2px;
    flex: 0 0 auto;
    background: var(--tp-green);
}

.tp-step__title {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 25px;
    line-height: 32px;
    color: var(--tp-grey-900);
    text-align: center;
}

.tp-step__desc {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-grey-900);
    text-align: center;
}

.tp-step:hover .tp-step__card {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.tp-step:hover .tp-step__icon,
.tp-step:hover .tp-step__icon-process-1,
.tp-step:hover .tp-step__icon-process-3,
.tp-step:hover .tp-step__process-img {
    transform: scale(1.1);
}

.tp-process__arrow {
    flex: 0 0 auto;
    width: 12.3px;
    height: 21.2px;
    margin-top: 107px;
    color: var(--tp-grey-900);
    display: inline-flex;
    align-items: center;
}

.tp-process__arrow svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1199.98px) {
    .tp-process__row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .tp-process__arrow {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .tp-step {
        width: 100%;
        max-width: 280px;
    }

    .tp-step__card {
        height: auto;
        padding-bottom: 28px;
    }
}

.tp-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.tp-cta__media {
    position: relative;
    overflow: hidden;
}

.tp-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    filter: grayscale(100%) contrast(1.05);
}

.tp-cta__panel {
    background: var(--tp-grey-900);
    display: flex;
    align-items: center;
    padding: 80px clamp(24px, 6vw, 130px) 80px clamp(24px, 4vw, 90px);
}

.tp-cta__inner {
    display: flex;
    flex-direction: column;
    gap: 52px;
    max-width: 500px;
}

.tp-cta__title {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--tp-white);
}

.tp-cta__text {
    margin: 0;
    font-family: var(--tp-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-white);
    text-align: justify;
}

.tp-cta__head {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tp-cta__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .tp-cta {
        grid-template-columns: 1fr;
    }

    .tp-cta__media {
        min-height: 280px;
    }

    .tp-cta__panel {
        padding: 56px clamp(20px, 6vw, 64px);
    }

    .tp-cta__inner {
        max-width: 640px;
        gap: 40px;
    }
}

@media (max-width: 575.98px) {
    .tp-cta__title {
        font-size: 28px;
        line-height: 36px;
    }

    .tp-cta__actions .tp-btn {
        flex: 1 1 100%;
    }
}

@media (min-width: 992px) {

    .page-id-2647 .site-header.header4 {
        padding-bottom: 40px !important;
    }

    .site-header.header4 {
        background: var(--tp-white);
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.09);
        position: relative;
        z-index: 1000;
    }

    .site-header.header4 .top-module.tm-black-bg {
        background-color: var(--tp-grey-900) !important;
        height: 64px;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .site-header.header4 .top-module.tm-black-bg .container {
        height: 100%;
    }

    .site-header.header4 .top-module.tm-black-bg .container>div {
        height: 100%;
    }

    /* Phone Block */
    .site-header.header4 .cms_phone {
        display: inline-flex !important;
        align-items: center;
        gap: 10px;
        height: 100%;
        color: var(--tp-white) !important;
        text-decoration: none !important;
        font-family: var(--tp-font-alt);
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
    }

    .site-header.header4 .cms_phone:hover {
        color: var(--tp-green) !important;
    }

    .site-header.header4 .tp-phone-icon {
        position: relative;
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .site-header.header4 .tp-phone-wave {
        position: absolute;
        top: 8.33%;
        right: 8.33%;
        bottom: 54.17%;
        left: 54.12%;
        width: 37.55%;
        height: 37.5%;
        display: block;
    }

    .site-header.header4 .tp-phone-handle {
        position: absolute;
        top: 13.27%;
        right: 13.28%;
        bottom: 12.5%;
        left: 12.5%;
        width: 74.22%;
        height: 74.23%;
        display: block;
    }

    .site-header.header4 .tp-phone-txt-label {
        opacity: 1;
    }

    .site-header.header4 .tp-phone-txt-num {
        margin-left: 2px;
    }

    /* Apply Now button */
    .site-header.header4 .tp-btn-apply-top {
        font-family: var(--tp-font);
        font-weight: 600;
        font-size: 20px;
        line-height: 26px;
        color: var(--tp-white) !important;
        text-decoration: none !important;
        text-transform: uppercase;
        transition: var(--tp-transition);
    }

    .site-header.header4 .tp-btn-apply-top:hover {
        color: var(--tp-green) !important;
    }

    /* 2. Brand Bar */
    .site-header.header4 .top-line {
        padding: 30px 0;
        background: var(--tp-white);
    }

    .site-header.header4 .site-logo img {
        height: 95px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* Search wrap */
    .site-header.header4 .tp-header-search-wrap {
        width: 380px;
        position: relative;
    }

    .site-header.header4 .tp-search-form {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 1px solid var(--tp-grey-900);
        padding-bottom: 8px;
        width: 100%;
    }

    .site-header.header4 .tp-search-input {
        border: none !important;
        background: transparent !important;
        outline: none !important;
        font-family: var(--tp-font);
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: var(--tp-grey-900);
        padding: 0;
        width: calc(100% - 40px);
    }

    .site-header.header4 .tp-search-input::placeholder {
        color: var(--tp-grey-900);
        opacity: 0.56;
    }

    .site-header.header4 .tp-search-submit {
        border: none;
        background: transparent;
        padding: 0;
        cursor: pointer;
        color: var(--tp-grey-900);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--tp-transition);
    }

    .site-header.header4 .tp-search-submit:hover {
        color: var(--tp-green);
        transform: scale(1.1);
    }

    .site-header.header4 .tp-search-submit svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    /* 3. Navigation Bar */
    .site-header.header4 .header-inner {
        background: var(--tp-white);
        padding: 8px 0;
    }

    .site-header.header4 .header-inner nav.navbar {
        background: transparent !important;
        padding: 0;
    }

    .site-header.header4 .header-inner .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Menu styling */
    .site-header.header4 #navbarNavDropdown {
        display: flex;
        justify-content: center;
        flex-grow: 1;
    }

    .site-header.header4 .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 36px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
        justify-content: start !important;
    }

    .site-header.header4 .navbar-nav .nav-item {
        position: relative;
    }

    .site-header.header4 .navbar-nav .nav-link {
        font-family: var(--tp-font);
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--tp-grey-900) !important;
        text-transform: none;
        padding: 8px 0 !important;
        transition: var(--tp-transition);
    }

    .site-header.header4 .navbar-nav .nav-link:hover,
    .site-header.header4 .navbar-nav .nav-link:focus,
    .site-header.header4 .navbar-nav .nav-item.active .nav-link {
        color: var(--tp-green) !important;
    }

    /* Override dropdown toggle arrow with Figma arrow */
    .site-header.header4 .navbar-nav .dropdown-toggle::after {
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 4px;
        vertical-align: middle;
        content: "";
        border: none;
        /* remove bootstrap border arrow */
        background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.81738 4.73601L8 9.70085L12.1826 4.73503L13 5.70574L8.5459 10.9958C8.47453 11.0811 8.38938 11.1488 8.2959 11.195C8.20243 11.2412 8.10221 11.2653 8.00098 11.2653C7.89978 11.2653 7.79948 11.2411 7.70605 11.195C7.61266 11.1488 7.52737 11.081 7.45605 10.9958L3 5.70574L3.81738 4.73601Z" fill="%23212121" stroke="%23212121"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: var(--tp-transition);
    }

    .site-header.header4 .navbar-nav .dropdown-toggle:hover::after {
        background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.81738 4.73601L8 9.70085L12.1826 4.73503L13 5.70574L8.5459 10.9958C8.47453 11.0811 8.38938 11.1488 8.2959 11.195C8.20243 11.2412 8.10221 11.2653 8.00098 11.2653C7.89978 11.2653 7.79948 11.2411 7.70605 11.195C7.61266 11.1488 7.52737 11.081 7.45605 10.9958L3 5.70574L3.81738 4.73601Z" fill="%23187719" stroke="%23187719"/></svg>');
    }

    /* Dropdown Menu styling */
    .site-header.header4 .navbar-nav .dropdown-menu {
        border: none;
        border-radius: var(--tp-radius-sm);
        box-shadow: var(--tp-shadow-lg);
        padding: 10px 0;
    }

    /* Hover dropdown on desktop */
    .site-header.header4 .navbar-nav .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        margin-top: 0 !important;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
    }

    .site-header.header4 .navbar-nav .dropdown:hover>.dropdown-menu,
    .site-header.header4 .navbar-nav .dropdown:focus-within>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Bridge to prevent losing hover when moving mouse down */
    .site-header.header4 .navbar-nav .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
        background: transparent;
        z-index: -1;
    }

    .site-header.header4 .navbar-nav .dropdown-menu .dropdown-item {
        font-family: var(--tp-font);
        font-weight: 500;
        font-size: 15px;
        color: var(--tp-grey-900);
        padding: 8px 20px;
        transition: var(--tp-transition);
    }

    .site-header.header4 .navbar-nav .dropdown-menu .dropdown-item:hover {
        background: var(--tp-grey-50);
        color: var(--tp-green);
    }

    /* Navigation CTAs (Right-aligned) */
    .site-header.header4 .tp-nav-ctas {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-shrink: 0;
    }

    .site-header.header4 .tp-nav-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        height: 48px;
        background-color: var(--tp-green);
        color: var(--tp-white) !important;
        font-family: var(--tp-font);
        font-weight: 600;
        font-size: 16px;
        text-decoration: none !important;
        text-align: center;
        border: 1px solid transparent;
        transition: var(--tp-transition);
        white-space: nowrap;
    }

    .site-header.header4 .tp-nav-btn:hover {
        background-color: var(--tp-green-dark);
        box-shadow: var(--tp-shadow);
        transform: translateY(-1px);
    }
}

/* Optimize Navigation for Medium/Tablet Screens (e.g., iPad Pro 1024px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header.header4 .navbar-nav {
        gap: 16px !important;
    }

    .site-header.header4 .navbar-nav .nav-link {
        font-size: 14px;
    }

    .site-header.header4 .tp-nav-ctas {
        gap: 10px;
    }

    .site-header.header4 .tp-nav-btn {
        width: 130px;
        font-size: 13px;
        height: 40px;
    }

    /* Optimize brand bar on tablet */
    .site-header.header4 .site-logo img {
        height: 75px;
    }

    .site-header.header4 .tp-header-search-wrap {
        width: 280px;
    }
}

/* Optimize Brand Bar Logo on Tablet (767px - 991px) */
@media (min-width: 767px) and (max-width: 991.98px) {
    .site-header.header4 .top-line .d-flex {
        justify-content: center !important;
    }
}

/* ==========================================================================
   Footer Redesign Styles (Figma Frame 81)
   ========================================================================== */
.site-footer.redesign-footer {
    background-color: var(--tp-white) !important;
    color: var(--tp-grey-900) !important;
    padding: 12px 0 12px 0 !important;
    border-top: 1px solid var(--tp-grey-100) !important;
    font-family: var(--tp-font) !important;
}

.site-footer.redesign-footer a {
    color: var(--tp-grey-900) !important;
    transition: var(--tp-transition) !important;
    margin: 0 !important;
}

.site-footer.redesign-footer a:hover {
    color: var(--tp-green) !important;
}

/* 1. Top Row: Logo & Horizontal Menu */
.site-footer.redesign-footer .footer-top-row {
    margin-bottom: 48px !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.site-footer.redesign-footer .footer-logo-col {
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: left !important;
}

.site-footer.redesign-footer .footer-menu-col {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.site-footer.redesign-footer .sf-logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.site-footer.redesign-footer .sf-menu-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.site-footer.redesign-footer .sf-links-horizontal {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer.redesign-footer .sf-links-horizontal li {
    margin: 0;
    padding: 0;
}

.site-footer.redesign-footer .sf-links-horizontal a {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
}

/* 2. Bottom Row: Contact & Social/Badge */
.site-footer.redesign-footer .footer-bottom-row {
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.site-footer.redesign-footer .footer-contact-col {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.site-footer.redesign-footer .sf-contact-info-block {
    padding: 0 !important;
    margin: 0;
    text-align: left !important;
    margin-left: 47px;

}

.site-footer.redesign-footer .sf-company-name {
    font-weight: 700;
    font-size: 25px;
    line-height: 32px;
    color: var(--tp-grey-900);
    margin-bottom: 19px;
}

.site-footer.redesign-footer .sf-address {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: var(--tp-grey-900);
    font-family: var(--tp-font-alt);
    margin-bottom: 19px;
    max-width: 210px;
    width: 100%;
}

.site-footer.redesign-footer .sf-contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer.redesign-footer .sf-detail-item {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    font-family: var(--tp-font-alt);
    color: var(--tp-grey-900);
}

.site-footer.redesign-footer .sf-detail-item a {
    position: relative;
    display: inline-block;
}

.site-footer.redesign-footer .sf-detail-item a:after {
    position: absolute;
    content: "";
    bottom: 6px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--tp-grey-900);
}

.site-footer.redesign-footer .sf-detail-item strong {
    font-weight: 700;
    margin-right: 4px;
    display: inline !important;
}

/* Social & Badge widgets */
.site-footer.redesign-footer .footer-right-col {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.site-footer.redesign-footer .footer-right-widgets {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer.redesign-footer .social-widget {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer.redesign-footer .social-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--tp-grey-900);
    text-transform: uppercase;
}

.site-footer.redesign-footer .social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer.redesign-footer .social-icons a {
    color: var(--tp-green) !important;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--tp-transition);
}

.site-footer.redesign-footer .social-icons a:hover {
    color: var(--tp-green-dark) !important;
    transform: translateY(-2px);
}

.site-footer.redesign-footer .social-icons svg,
.site-footer.redesign-footer .social-icons i {
    width: 20px;
    height: 20px;
    fill: currentColor;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.site-footer.redesign-footer .thomas-badge img,
.site-footer.redesign-footer .thomas-badge svg {
    max-height: 80px;
    width: auto;
}

/* 3. Copyright Row */
.site-footer.redesign-footer .footer-copyright-row {
    border-top: 1px solid var(--tp-grey-100);
    padding-top: 24px;
    text-align: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.site-footer.redesign-footer .footer-copyright-row .copyright {
    font-size: 13px;
    line-height: 18px;
    color: var(--tp-grey-500);
    margin: 0;
}

.site-footer.redesign-footer .footer-copyright-row .copyright a {
    color: var(--tp-grey-500);
}

.site-footer.redesign-footer .footer-copyright-row .copyright a:hover {
    color: var(--tp-green) !important;
}

@media (max-width: 991.98px) {
    .site-footer.redesign-footer {
        padding: 40px 0 24px 0 !important;
        text-align: center !important;
    }

    .site-footer.redesign-footer .footer-logo-col {
        margin-bottom: 24px !important;
        text-align: center !important;
    }

    .site-footer.redesign-footer .sf-menu-row {
        justify-content: center !important;
        gap: 16px !important;
    }

    .site-footer.redesign-footer .sf-links-horizontal {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .site-footer.redesign-footer .footer-top-row {
        margin-bottom: 32px !important;
    }

    .site-footer.redesign-footer .footer-contact-col {
        margin-bottom: 32px !important;
    }

    .site-footer.redesign-footer .sf-contact-info-block {
        text-align: center !important;
    }

    .site-footer.redesign-footer .sf-contact-details {
        align-items: center !important;
    }

    .site-footer.redesign-footer .footer-right-col {
        justify-content: center !important;
    }

    .site-footer.redesign-footer .footer-right-widgets {
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px;
    }

    .site-footer.redesign-footer .social-widget {
        align-items: center !important;
    }
}

.social-icons a .material-icons,
.social-icons a i {
    opacity: 1 !important;
}
