@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Outfit Regular"), local("Outfit-Regular"), url("https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObqx1XBaRk.woff2") format("woff2")
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local("Outfit Medium"), local("Outfit-Medium"), url("https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGObq2JXBaRk.woff2") format("woff2")
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local("Outfit SemiBold"), local("Outfit-SemiBold"), url("https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGOBo6NXBaRk.woff2") format("woff2")
}

@font-face {
    font-family: "Outfit";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Outfit Bold"), local("Outfit-Bold"), url("https://fonts.gstatic.com/s/outfit/v11/QGYyz_MVcBeNP4NjuGOBo-dXBaRk.woff2") format("woff2")
}


:root {
    --color-dark: #03271e;
    --color-accent-1: #a3e625;
    --color-accent-1-hover: #b5eb50;
    --color-accent-2: #89d200;
    --color-white: #ffffff;
    --color-gray-100: #f1f1f4;
    --color-gray-500: #b0b4be;
    --color-gray-700: #5d625a;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --font-family: "Outfit", sans-serif;
    --button-radius: 14px
}


/* New Home template: remove default site container top padding */
body.page-template-new-home-php .site-container {
    padding-top: 0 !important;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

p {
    margin: 0;
    padding: 0
}

.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 26px
}

.pagination-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.pagination__item {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: #b0b4ae;
    transition: width .3s ease
}

.pagination__item.active {
    width: 16px;
    background: #89d200
}

h1 {
    font-weight: 700;
    font-size: 72px;
    line-height: 86px;
    letter-spacing: -0.03em;
}

h1 span {
    font-weight: 700
}

h2 {
    font-weight: 700;
    font-size: 49px;
    line-height: 59px;
    letter-spacing: -0.03em;
    text-align: center;
}

h2 span {
    font-weight: 700;
    color: var(--color-accent-1)
}

h3 {
    font-weight: 700;
    font-size: 39px;
    line-height: 47px
}

h3 span {
    font-weight: 700;
    color: var(--color-accent-1)
}

h4 {
    font-weight: 700;
    font-size: 31px;
    line-height: 37px;
    color: var(--color-white)
}

h4 span {
    font-weight: 700;
    color: var(--color-accent-1)
}

h5 {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px
}

h5 span {
    font-weight: 700;
    color: var(--color-accent-1)
}

@media(max-width: 720px) {
    h1 {
        font-size: 32px;
        line-height: 48px
    }

    h2 {
        font-size: 29px;
        line-height: 44px
    }

    h3 {
        font-size: 26px;
        line-height: 39px
    }

    h4 {
        font-size: 23px;
        line-height: 35px
    }

    h5 {
        font-size: 20px;
        line-height: 30px
    }
}

.subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px
}

.body-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px
}

.body-16-semibold {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px
}

.body-16-bold {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px
}

.body-14 {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px
}

.body-14-bold {
    font-weight: 700;
    font-size: 14px;
    line-height: 21px
}

.caption-13 {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px
}

.overline-10 {
    font-weight: 600;
    font-size: 10px;
    line-height: 20px;
    text-transform: uppercase
}

.button-large {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px
}

.button-medium {
    font-weight: 500;
    font-size: 14px;
    line-height: 19px
}

.button-small {
    font-weight: 500;
    font-size: 13px;
    line-height: 19px
}

.text-white {
    color: var(--color-white)
}

.text-dark {
    color: var(--color-dark)
}

.text-accent {
    color: var(--color-accent-1)
}

.text-secondary {
    color: var(--text-secondary)
}

.btn {
    display: inline-flex;
    height: 56px;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    background: var(--color-accent-1);
    border-radius: var(--button-radius);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: .4s ease;
    white-space: nowrap;
}

.pricing-section .pricing-content .item .item-inner .top .btn.simple {
    background: none;
}

.btn-48 {
    display: inline-flex;
    height: 48px;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.btn-40 {
    display: inline-flex;
    height: 40px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-shrink: 0
}

.btn-32 {
    display: inline-flex;
    height: 32px;
    padding: 7px 10px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-shrink: 0
}

.btn-primary {
    background: var(--color-accent-1);
    color: var(--color-dark)
}

.btn-primary:hover {
    background: #72a119;
    color: var(--color-white)
}

.btn-secondary {
    background: var(--color-accent-2);
    color: var(--color-dark)
}

.btn-secondary:hover {
    background: #5f9300;
    color: var(--color-white)
}

.btn-white {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .16);
    background: var(--Background-White, #FFF)
}

.btn-outlined-light {
    background: var(--color-white);
    color: #000;
    border: 1px solid rgba(0, 0, 0, .16)
}

.btn-outlined-light:hover {
    background: #f8f8f8
}

.btn-outlined-dark {
    background: #15362e;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, .16);
    line-height: 24px
}

.btn-outlined-dark:hover {
    background: #1a4037
}

.btn-outlined-48 {
    height: 48px;
    padding: 8px 16px
}

.btn-outlined-40 {
    height: 40px;
    padding: 8px 16px;
    gap: 4px
}

.btn-outlined-56 {
    height: 56px;
    padding: 8px 32px
}

.btn-leading {
    width: 186px;
    display: flex;
    height: 48px;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .16);
    background: var(--Background-White, #FFF);
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.btn-contact {
    display: flex;
    height: 40px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .16);
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 12px
}

.header {
    position: absolute;
    width: 100%;
    top: 24px;
    z-index: 99999999999;
    height: 72px;
    position: fixed
}

.header__content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url(../assets/new-img/header.webp) no-repeat center top/cover;
    padding: 16px 16px;
    border-radius: 16px
}

.brand__logo {
    width: 170px;
    height: 32px;
    aspect-ratio: 85/16
}

.header__nav {
    flex: 1
}

.nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px
}

/* WP menu items inside new header */
.header .header-nav .nav__list>li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.header .header-nav .nav__list>li>a,
.header .header-nav .nav__list>li>span {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color .2s ease;
    cursor: pointer;
}

.header .header-nav .nav__list>li:hover>a,
.header .header-nav .nav__list>li:hover>span {
    color: rgba(255, 255, 255, .6) !important;
}

.header .header-nav .nav__list>li.current-menu-item>a,
.header .header-nav .nav__list>li.current-menu-ancestor>a,
.header .header-nav .nav__list>li.current_page_item>a {
    color: var(--color-white);
}

.nav__arrow {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: color .2s ease, transform .2s ease
}

.header .header-nav .nav__list>li:hover .nav__arrow,
.nav__item:hover .nav__arrow {
    color: var(--color-white);
    transform: rotate(180deg)
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px
}

/* Submenu base (override WP defaults to match design) */
.header .header-nav .nav__list li.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .header-nav .nav__list li .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    background: #0b191a;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    min-width: 220px;
    padding: 12px;
    display: none;
    z-index: 1000;
}

.header .header-nav .nav__list li:hover>.sub-menu {
    display: block;
}

.header .header-nav .nav__list li .sub-menu>li {
    list-style: none;
}

.header .header-nav .nav__list li .sub-menu>li>a {
    display: block;
    color: rgba(255, 255, 255, .8);
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
}

.header .header-nav .nav__list li .sub-menu>li>a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.header__actions .btn-outlined-dark {
    background: rgba(0, 0, 0, 0)
}

.mobile__menu {
    display: none
}

.header__burger {
    display: none
}

@media screen and (max-width: 1190px) {
    .header__actions {
        display: none
    }

    .header__nav {
        display: none
    }

    .header__burger {
        display: flex;
        width: 53px;
        height: 40px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        aspect-ratio: 53/40;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, .16);
        position: relative
    }

    .header__burger::after {
        content: "";
        width: 24px;
        height: 24px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M4.5 18H20.5C21.05 18 21.5 17.55 21.5 17C21.5 16.45 21.05 16 20.5 16H4.5C3.95 16 3.5 16.45 3.5 17C3.5 17.55 3.95 18 4.5 18ZM4.5 13H20.5C21.05 13 21.5 12.55 21.5 12C21.5 11.45 21.05 11 20.5 11H4.5C3.95 11 3.5 11.45 3.5 12C3.5 12.55 3.95 13 4.5 13ZM3.5 7C3.5 7.55 3.95 8 4.5 8H20.5C21.05 8 21.5 7.55 21.5 7C21.5 6.45 21.05 6 20.5 6H4.5C3.95 6 3.5 6.45 3.5 7Z' fill='white'/%3E%3C/svg%3E") no-repeat center top/cover;
        position: absolute
    }

    .header__burger.active::after {
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cg clip-path='url(%23clip0_258_2517)'%3E%3Cpath d='M18.8007 5.7107C18.4107 5.3207 17.7807 5.3207 17.3907 5.7107L12.5007 10.5907L7.6107 5.7007C7.2207 5.3107 6.5907 5.3107 6.2007 5.7007C5.8107 6.0907 5.8107 6.7207 6.2007 7.1107L11.0907 12.0007L6.2007 16.8907C5.8107 17.2807 5.8107 17.9107 6.2007 18.3007C6.5907 18.6907 7.2207 18.6907 7.6107 18.3007L12.5007 13.4107L17.3907 18.3007C17.7807 18.6907 18.4107 18.6907 18.8007 18.3007C19.1907 17.9107 19.1907 17.2807 18.8007 16.8907L13.9107 12.0007L18.8007 7.1107C19.1807 6.7307 19.1807 6.0907 18.8007 5.7107Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_258_2517'%3E%3Crect width='24' height='24' fill='white' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center top/cover
    }

    .header__burger-menu {
        background: #010f10;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        padding: 24px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, .16);
        display: flex;
        flex-direction: column;
        gap: 24px
    }

    .mobile__menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        transform: translate(-150%);
        height: 100vh;
        max-width: 100%;
        width: 100%;
        z-index: -1;
        transition: .3s;
        display: block;
        background: #010f10;
        padding: 32px;
        padding-top: 130px;
        overflow: auto;
    }

    .mobile__menu-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        border: 0;
        padding: 0
    }

    /* Head items (span or link) */
    .mobile__menu ul.mobile__menu-list>li>span,
    .mobile__menu ul.mobile__menu-list>li>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        line-height: 19px;
        text-decoration: none;
        cursor: pointer;
        gap: 10px;
        width: 100%;
    }

    .mobile__menu ul.mobile__menu-list>li>span>div {
        /* hover bridge from desktop — harmless on mobile */
        display: none;
    }

    .mobile__menu ul.mobile__menu-list>li .nav__arrow {
        width: 24px;
        height: 24px;
        transition: transform .2s ease, color .2s ease;
        flex-shrink: 0;
        position: absolute;
        right: 0;
        top: 14px;
        pointer-events: none;
    }

    .mobile__menu ul.mobile__menu-list>li.opened .nav__arrow {
        transform: rotate(180deg);
        color: #fff;
    }

    /* Submenu popup inside mobile menu */
    .mobile__menu .submenu-popup {
        display: none;
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 16px 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
        margin-top: 16px;
    }

    .mobile__menu .submenu-popup__title a {
        color: #ffff !important;
    }

    .mobile__menu ul.mobile__menu-list>li.opened>.submenu-popup {
        display: block;
    }

    .mobile__menu .submenu-popup__container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        display: block;
    }

    .mobile__menu .submenu-popup__info {
        width: 100%;
        padding: 0 0 12px 0;
    }

    .mobile__menu .submenu-popup__title,
    .mobile__menu .submenu-popup__text,
    .mobile__menu .submenu-popup__link,
    .mobile__menu .submenu-popup__link a {
        color: #fff;
    }

    .mobile__menu .submenu-market,
    .mobile__menu .submenu-company,
    .mobile__menu .submenu-service {
        width: 100%;
        padding: 0;
        display: block;
    }

    .mobile__menu .submenu-market__list,
    .mobile__menu .submenu-company__list,
    .mobile__menu .submenu-service__list {
        columns: 1;
        padding: 0;
    }

    .mobile__menu .submenu-market__list a,
    .mobile__menu .submenu-company__list a,
    .mobile__menu .submenu-service__list a {
        color: rgba(255, 255, 255, .8);
        text-decoration: none;
    }

    .mobile__menu .submenu-service__list>li {
        margin-bottom: 14px;
    }

    .mobile__menu .submenu-service__list>li>ul {
        padding-left: 18px;
    }

    /* Mobile item row styling */
    .mobile__menu ul.mobile__menu-list>li {
        width: 100%;
        display: flex;
        flex-direction: column;
        /* keep flex, stack vertically */
        align-items: stretch;
        padding: 14px 0;
        position: relative;
    }

    .mobile__menu-item {
        width: 100%;
        display: flex;
        align-items: center
    }

    .mobile__menu.active {
        transform: translate(0%)
    }

    .mobile__menu ul.mobile__menu-list>li>a,
    .mobile__menu-link {
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        line-height: 19px;
        display: flex;
        /* head row */
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-right: 32px;
    }

    /* ensure submenu block occupies full width under head */
    .mobile__menu ul.mobile__menu-list>li>.submenu-popup {
        width: 100%;
    }

    .mobile__menu ul.mobile__menu-list>li>a.submenu::after,
    .mobile__menu-link.submenu::after {
        content: "";
        width: 12px;
        height: 7px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M2.1207 0.290547L6.0007 4.17055L9.8807 0.290547C10.2707 -0.0994531 10.9007 -0.0994531 11.2907 0.290547C11.6807 0.680547 11.6807 1.31055 11.2907 1.70055L6.7007 6.29055C6.3107 6.68055 5.6807 6.68055 5.2907 6.29055L0.700703 1.70055C0.310703 1.31055 0.310703 0.680547 0.700703 0.290547C1.0907 -0.0894531 1.7307 -0.0994531 2.1207 0.290547Z' fill='white'/%3E%3C/svg%3E");
        top: 50%
    }

    .mobile__menu-actions {
        display: flex;
        justify-content: center;
        gap: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .mobile__menu-actions .btn-outlined-dark {
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, .16);
        background: rgba(0, 0, 0, 0);
        color: #fff
    }
}

.hero {
    position: relative;
    display: flex;
    padding: 144px 0;
    background: #010f10;
    width: 100%;
    height: 1200px;
    border-bottom-right-radius: 80px;
    background: #010f10 url(../assets/new-img/hero-bg.webp) no-repeat center center;
    background-size: contain
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #010F10 0%, rgb(1, 15, 16) 15%, rgba(1, 15, 16, 0) 50%, rgb(1, 15, 16) 85%, #010F10 100%);
    z-index: 1;
    pointer-events: none;
    border-bottom-right-radius: 80px
}

.hero .container {
    position: relative;
    width: 100%
}

.hero__content {
    position: relative;
    z-index: 2
}

.hero__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px
}

.hero__title {
    color: var(--color-white);
    width: 600px
}

.hero__title span {
    color: var(--color-accent-1)
}

.hero__subtitle {
    color: rgba(255, 255, 255, .6);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 646px
}

.hero__reviews {
    display: flex;
    justify-content: center;
    gap: 64px
}

.review {
    color: var(--color-white)
}

.review img {
    width: 131px
}

.review__rating {
    color: #fff;
    font-size: 20px;
    text-align: left;
    line-height: 30px;
    color: var(--text-white);
    margin-left: 4px
}

.hero__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.hero__cta-primary {
    padding: 12px 32px
}

.hero__cta-secondary {
    color: var(--color-white);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.hero__cta-secondary:hover {
    opacity: 1
}

.hero__video {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: -350px;
    width: 100%;
    z-index: 999999;
    padding: 0 20px
}

.hero__video-inner {
    width: 100%;
    max-width: 999px;
    height: 454px;
    border-radius: 16px;
    overflow: hidden;
    background: url(../assets/new-img/video-bg.svg) no-repeat center center/cover;
    position: relative
}

@media(max-width: 1200px) {
    .hero__video-inner {
        max-width: 80vw;
        height: 36vw
    }
}

@media(max-width: 768px) {
    .hero__video-inner {
        max-width: 90vw;
        height: 40.5vw;
        border-radius: 12px
    }
}

@media(max-width: 480px) {
    .hero__video-inner {
        max-width: 95vw;
        height: 42.75vw;
        border-radius: 8px
    }
}

.hero__video-inner .hero__video-bg {
    width: 100%;
    height: 100%
}

.hero__video-inner .hero__video-play {
    width: 64px;
    height: 64px;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer
}

.numbers {
    padding: 260px 0;
    padding-bottom: 0
}

.numbers__content {
    width: 100%;
    padding: 40px 64px;
    border-radius: 60px 0;
    background: #f8f8f8
}

.numbers__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px
}

.numbers__item {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    border-radius: 16px;
    background: #fff
}

.numbers__item-title {
    color: #03271e;
    font-size: 31px;
    font-weight: 700;
    line-height: 37px
}

.numbers__item-description {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.building {
    padding: 120px 0
}

.building .container {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.building__titles {
    display: flex;
    justify-content: center
}

.building__titles h2 {
    max-width: 500px
}

.building__cards {
    display: flex;
    justify-content: center;
    gap: 32px
}

.building__card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 24px
}

.building__card-image {
    display: flex;
    max-height: 200px;
    justify-content: center;
    align-items: center;
    border-radius: 16px
}

.building__card-image img {
    width: 100%;
    height: auto;
    object-fit: cover
}

.building__card-content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.building__card-step {
    color: rgba(3, 39, 30, .6);
    font-size: 10px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase
}

.building__card-title {
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.building__card-description {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.building__button {
    display: flex;
    justify-content: center
}

.industries__heading {
    display: flex;
    justify-content: space-between;
    gap: 50px
}

.industries__heading h2 {
    width: 443px;
    text-align: left
}

.industries__heading p {
    width: 603px;
    color: rgba(3, 39, 30, .6);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px
}

.industries__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px
}

.industries__card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px 0;
    background: #f8f8f8;
    text-decoration: none;
}

.industries__card-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.industries__card-icon {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #03271e
}

.industries__card-icon img {
    width: 24px;
    height: 24px
}

.industries__card-arrow {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(176, 180, 174, .24);
    transition: .3s ease
}

.industries__card-arrow:hover {
    background: #dcdddb
}

.industries__card-content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.industries__card-title {
    color: #03271e;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.industries__card-description {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.industries__seo {
    width: 100%;
    border-radius: 60px 0;
    background: url(../assets/new-img/industries-seo-bg.svg) no-repeat center top/cover;
    margin: 64px 0;
    overflow: hidden;
    position: relative;
    height: 468px;
    padding: 32px 57px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-right: 0
}

.industries__seo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%
}

.industries__seo-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 740px
}

.industries__seo-pagination {
    display: flex;
    align-content: center;
    gap: 16px
}

.industries__seo-pagination-button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: #ecedec;
    border: none;
    cursor: pointer;
    transition: .3s ease
}

.industries__seo-pagination-button:hover {
    background: #dcdddb
}

.industries__seo-swiper {
    width: 100%;
    height: 244px;
    position: relative;
    overflow: hidden;
    padding-left: 60px;
    height: 270px
}

.industries__seo-swiper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 24px;
    height: 268px;
    z-index: 99999999;
    background: linear-gradient(270deg, rgba(3, 39, 30, 0) 0%, #03271E 100%)
}

.industries__seo-swiper-wrapper {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
    width: 400%
}

.industries__seo-swiper-item {
    width: 387px;
    height: 244px;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #fff;
    position: relative;
    z-index: 1;
    flex-shrink: 0
}

.industries__seo-swiper-item::after {
    content: "";
    position: absolute;
    top: 244px;
    left: 23px;
    width: 339px;
    height: 24px;
    border-radius: 0 0 24px 24px;
    background: #7c8f8a;
    z-index: -1
}

.industries__seo-swiper-item ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 24px
}

.industries__seo-swiper-item ul li {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    gap: 6px
}

.industries__seo-swiper-item ul li::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../assets/new-img/list-check.svg) no-repeat center center/contain;
    position: absolute;
    left: 23px
}

.case {
    padding-bottom: 120px;
    overflow: hidden
}

.case .container {
    position: relative
}

.case .pagination-new {
    margin-top: 30px
}

.case__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px
}

.case__heading h2 {
    text-align: left
}

.case__heading-badge {
    display: flex;
    height: 40px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .16);
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.case__item {
    display: flex;
    justify-content: space-between;
    gap: 36px
}

.case__item-image {
    width: 548px;
    height: 418px;
    border-radius: 16px;
    background: #f6f6f6
}

.case__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case__item-content {
    width: 446px
}

.case__item-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px
}

.case__item-tag {
    display: flex;
    padding: var(--Spacing-System-Spacing-6px, 6px) var(--Spacing-System-Spacing-10px, 10px);
    align-items: center;
    gap: var(--Spacing-System-Spacing-6px, 6px);
    border-radius: var(--Radius-System-rounded-full, 9999px);
    border: 1px solid rgba(55, 65, 81, .12);
    background: #f3f4f6
}

.case__item-tag img {
    width: 20px;
    height: 15px
}

.case__item-tag:nth-child(2) {
    border-radius: var(--Radius-System-rounded-full, 9999px);
    border: 1px solid rgba(79, 70, 229, .12);
    background: #eef2ff
}

.case__item-tag:nth-child(3) {
    border-radius: var(--Radius-System-rounded-full, 9999px);
    border: 1px solid rgba(5, 150, 105, .12);
    background: #ecfdf5
}

.case__item-tag:nth-child(4) {
    border-radius: var(--Radius-System-rounded-full, 9999px);
    border: 1px solid rgba(217, 119, 6, .12);
    background: #fffbeb
}

.case__item-title {
    margin-bottom: 8px
}

.case__item-description {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px
}

.case__item-list {
    display: flex;
    gap: 24px;
    margin-bottom: 24px
}

.case__item-list-item {
    width: 221px
}

.case__item-list-item .title {
    color: var(--Text-Dark, #03271E);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.case__item-list-item .description {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}


.case__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 280px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

.case__navigation-button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(176, 180, 174, .24);
    border: none;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease
}

.case__navigation-button.left {
    position: relative;
    left: -15px
}

.leading {
    padding: 120px 0;
    border-radius: 200px 0;
    background: #f6f6f6
}

.leading .container {
    display: flex;
    flex-direction: column;
    align-items: center
}

.leading__titles {
    max-width: 800px;
    margin-bottom: 80px
}

.leading__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    row-gap: 64px
}

.leading__content-item {
    display: flex;
    padding: 64px 40px 40px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    border-radius: 40px 0;
    border: 1px solid #e3e3e3;
    background: var(--Background-White, #FFF);
    position: relative
}

.leading__content-item-icon {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: var(--Icon-Dark, #03271E);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 18px -8px rgba(3, 39, 30, .32);
    position: absolute;
    top: -40px
}

.leading__content-item-icon img {
    width: 30px;
    height: auto
}

.leading__content-item-title {
    color: var(--Text-Dark, #03271E);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.leading__content-item-description {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.leading__inner {
    width: 100%;
    height: auto;
    border-radius: 60px 0;
    padding: 64px;
    margin-top: 64px;
    background: url(../assets/new-img/leading-inner-bg.svg) no-repeat center center/cover
}

.leading__inner-content {
    display: flex;
    margin-top: 32px;
    gap: 32px
}

.leading__inner-content-item {
    width: 483px;
    max-height: 486px;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 24px;
    background: #fff;
    position: relative;
    z-index: 0;
    isolation: isolate
}

.leading__inner-content-item::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 30px;
    width: 400px;
    height: 24px;
    border-radius: 0 0 24px 24px;
    background: #7c8f8a;
    z-index: 999999
}

.leading__inner-content-item-image {
    border-radius: 16px
}

.leading__inner-content-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.leading__inner-content-item-title {
    color: var(--Text-Dark, #03271E);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.leading__inner-content-item-description {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.leading__inner-content-item-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    margin-bottom: 16px
}

.leading__inner-content-item-list li {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 8px
}

.leading__inner-content-item-list li::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    background: rgba(3, 39, 30, .6);
    border-radius: 100%
}

.reviews {
    padding: 120px 0
}

.reviews__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px
}

.reviews__left {
    width: 386px
}

.reviews__left h2 {
    text-align: left
}

.reviews .industries__seo-pagination {
    margin-top: 24px
}

.reviews__right {
    width: 644px;
    position: relative
}

.reviews__swiper-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    background: #f8f8f8
}

.reviews__swiper-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: url(../assets/new-img/quotes.svg) no-repeat center center/cover;
    z-index: 2
}

.reviews__slides-container {
    width: 100%
}

.reviews__slide {
    display: none;
    width: 100%;
    padding: 48px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

.reviews__slide.active {
    display: flex;
    opacity: 1
}

.reviews__right-stars {
    display: flex;
    align-items: center;
    gap: 2px
}

.reviews__right-text {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.reviews__right-author {
    display: flex;
    gap: 16px
}

.reviews__right-author-image {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(3, 39, 30, .16);
    background: #fff
}

.reviews__right-author-image img {
    width: 32px;
    height: 32px
}

.reviews__right-author-content {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.reviews__right-author-name {
    color: var(--Text-Dark, #03271E);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px
}

.reviews__right-author-position {
    display: flex;
    gap: 8px
}

.reviews__right-author-position span {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.reviews__right-author-position span::after {
    content: "";
    width: 1px;
    height: 20px;
    border-radius: 5px;
    background: var(--text-dark-secondary, rgba(3, 39, 30, 0.6))
}

.reviews__right-author-position span:last-child::after {
    display: none
}

.reviews__faq-section {
    margin: 64px 0;
    display: flex;
    justify-content: space-between;
    gap: 36px
}

.reviews__faq-section-left {
    width: 385px
}

.reviews__faq-section-title h2 {
    text-align: left;
    margin-bottom: 16px
}

.reviews__faq-section-title p {
    color: var(--text-dark-secondary, rgba(3, 39, 30, 0.6));
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.reviews__faq-section-contact-left {
    width: 192px
}

.reviews__faq-section-contact {
    margin-top: 32px;
    display: flex;
    padding: 24px;
    align-items: center;
    gap: 8px;
    border-radius: 40px 0;
    border: 1px solid rgba(0, 0, 0, .16);
    background: #f8f8f8
}

.reviews__faq-section-contact p {
    color: rgba(3, 39, 30, .6);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px
}

.reviews__faq-section-contact-icon {
    display: flex;
    width: 72px;
    height: 72px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 16px 0;
    background: #fff;
    margin-bottom: 16px
}

.reviews__faq-section-contact-icon img {
    width: 40px;
    height: 40px
}

.reviews .btn-contact {
    display: flex;
    height: 40px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .16);
    background: #fff;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: normal
}

.reviews__faq-section-right {
    width: 645px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.reviews__discuss-section {
    width: 100%;
    height: auto;
    border-radius: 60px 0;
    padding: 80px 0;
    background: url(../assets/new-img/discuss.svg) no-repeat center center/cover
}

.reviews__discuss-section h2 {
    color: #fff;
    margin-bottom: 24px
}

.reviews__discuss-section p {
    color: rgba(255, 255, 255, .6);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px
}

.reviews__discuss-section-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px
}

.reviews__discuss-section-buttons .btn {
    width: 150px
}

.faq-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: #f8f8f8;
    overflow: hidden;
    transition: all .3s ease
}

.faq-item__header {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: background-color .3s ease
}

.faq-item__title {
    flex: 1;
    color: #03271e;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin: 0
}

.faq-item__icon {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(176, 180, 174, .24);
    transition: transform .3s ease, background-color .3s ease;
    flex-shrink: 0
}

.faq-item__icon svg {
    transition: transform .3s ease
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 24px
}

.faq-item__content p {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
    background: rgba(176, 180, 174, .4)
}

.faq-item.active .faq-item__content {
    max-height: 200px;
    padding: 0 24px 16px 24px
}

.blog {
    padding-bottom: 64px
}

.blog__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px
}

.blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.blog__item {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 16px;
    background: #f8f8f8
}

.blog__item .image {
    border-radius: 8px;
    height: 200px;
    width: 100%
}

.blog__item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.blog__item .content {
    width: 100%
}

.blog__item .head {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    width: 100%
}

.blog__item .head .tag {
    display: flex;
    padding: var(--Spacing-System-Spacing-6px, 6px) var(--Spacing-System-Spacing-10px, 10px);
    align-items: center;
    gap: var(--Spacing-System-Spacing-6px, 6px);
    border-radius: var(--Radius-System-rounded-full, 9999px);
    border: 1px solid rgba(217, 119, 6, .12);
    background: #fffbeb
}

.blog__item .date {
    color: #03271e;
    text-align: right;
    font-size: 10px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase
}

.blog__item .title {
    color: #03271e;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 8px
}

.blog__item .description {
    color: rgba(3, 39, 30, .6);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
    margin-bottom: 16px
}

.blog__item .btn-contact {
    width: fit-content
}

.footer {
    background: #03271e;
    padding: 60px 0 40px 0;
    padding-bottom: 0;
    color: #fff
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.footer__content {
    display: flex;
    gap: 80px;
    justify-content: space-between
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 416px
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer__brand img {
    width: 170px;
    height: auto
}

.footer .title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px
}

.footer__subscribe {
    max-width: 480px
}

.footer__subscribe-text {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.footer__form {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-top: 24px
}

/* CF7 footer form: match new HTML form styles without changing markup */
.footer #footer-subscribe .wpcf7-form {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-top: 24px;
}

.footer #footer-subscribe .wpcf7-form>p {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-top: 24px;
}

.footer #footer-subscribe .wpcf7-form input[type="email"],
.footer #footer-subscribe .wpcf7-form input[type="text"] {
    display: flex;
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    color: #03271e;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    background: #f8f8f8;
    border: none;
    width: 290px;
    height: 56px;
}

.footer #footer-subscribe .wpcf7-form input[type="email"]::placeholder,
.footer #footer-subscribe .wpcf7-form input[type="text"]::placeholder {
    color: #03271e;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.footer #footer-subscribe .wpcf7-form input[type="submit"] {
    display: inline-flex;
    height: 56px;
    padding: 12px 22px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    background: var(--color-accent-2);
    border-radius: var(--button-radius);
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: .4s ease;
    white-space: nowrap;
}

.footer #footer-subscribe .wpcf7-form input[type="submit"]:hover {
    background: #5f9300;
    color: var(--color-white);
}

.footer__form .footer__input {
    display: flex;
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    color: #03271e;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    outline: none;
    border-radius: 12px;
    background: #f8f8f8;
    border: none;
    width: 290px
}

.footer__form .footer__input::placeholder {
    color: #03271e;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px
}

.footer .btn-secondary {
    font-weight: 600
}

.footer__nav {
    display: flex;
    justify-content: flex-end;
    gap: 33px;
    flex: 1
}

.footer__nav-column {
    min-width: 160px
}

.footer__nav .title {
    margin-bottom: 18px
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer__nav-list li {
    margin: 0
}

.footer__nav-list a {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-decoration: none;
}

.footer__nav-list a:hover {
    color: #fff
}

.footer__social .title {
    margin-bottom: 12px
}

.footer__social-icons {
    display: flex;
    gap: 16px
}

.footer__social-icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 1000px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08)
}

.footer__social-icon img,
.footer__social-icon svg {
    width: 25px;
    height: 25px
}

.footer__social-icon:hover img,
.footer__social-icon:hover svg {
    opacity: 1
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-top: 40px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .16)
}

.footer__bottom .footer__copyright {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px
}

.footer__bottom-list {
    display: flex;
    align-items: center;
    gap: 16px
}

.footer__bottom-list li {
    margin: 0
}

.footer__bottom-list a {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}

@media(max-width: 1080px) {
    .footer .footer__nav-column {
        min-width: auto
    }
}

.reviews__navigation.mobile {
    display: none
}

.blog__pagination {
    display: none
}

@media(max-width: 1220px) {
    .case__navigation-button.right {
        left: -40px;
        position: relative
    }
}

@media(max-width: 1160px) {
    .industries__cards {
        grid-template-columns: repeat(3, 1fr)
    }

    .leading__inner-content-item::after {
        display: none
    }

    .reviews__section {
        flex-direction: column
    }

    .reviews__left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .reviews__left h2 br {
        display: none
    }

    .reviews__right {
        width: 100%
    }

    .reviews__navigation {
        display: none
    }

    .reviews__navigation.mobile {
        display: flex
    }

    .reviews__faq-section {
        flex-direction: column
    }

    .reviews__faq-section-right {
        width: 100%
    }

    .reviews__faq-section-left {
        width: 100%
    }

    .reviews__faq-section-contact {
        justify-content: space-between
    }

    .case__item {
        flex-direction: column;
        align-items: center
    }

    .case__item-image {
        width: 100%
    }

    .case__item-content {
        width: 100%
    }
}

@media(max-width: 1020px) {
    .hero__video-inner {
        width: 100%;
        margin: 0 25px
    }

    .blog__list {
        grid-template-columns: repeat(2, 1fr)
    }

    .industries__cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .industries__seo {
        height: 530px
    }

    .industries__seo-pagination {
        margin-top: 24px
    }

    .industries__seo-inner {
        flex-direction: column;
        gap: 24px
    }

    .building__cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .building__card-image {
        border-radius: 16px;
        background: var(--Background-Gray, #F8F8F8)
    }

    .building__card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    .footer__content {
        flex-direction: column
    }

    .footer__nav {
        justify-content: flex-start
    }

    /* CF7 footer form responsive */
    .footer #footer-subscribe .wpcf7-form>p {
        flex-direction: column;
    }

    .footer #footer-subscribe .wpcf7-form input[type="email"],
    .footer #footer-subscribe .wpcf7-form input[type="text"] {
        width: 100%;
    }

    .blog__pagination {
        display: none
    }
}

@media(max-width: 1100px) {
    .hero {
        height: 1000px
    }
}

@media(max-width: 946px) {
    .hero {
        height: auto
    }
}

@media(max-width: 720px) {
    section {
        overflow: hidden
    }

    .hero {
        border-radius: 0 0 40px 0;
        background: #010f10;
        height: 750px;
        overflow: inherit
    }

    .hero::after {
        content: "";
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 209px;
        flex-shrink: 0;
        aspect-ratio: 375/209;
        border-radius: 0 0 40px 0;
        background: url(../assets/new-img/hero-bg-mobile.png) no-repeat center center/contain
    }

    .hero__video-inner {
        height: 400px
    }

    .hero__title {
        width: 100%
    }

    .hero__text {
        gap: 16px
    }

    .hero__video-inner .hero__video-bg {
        object-fit: cover
    }

    .hero__video {
        height: 300px;
        bottom: -250px
    }

    .hero__video-inner {
        height: 100%
    }

    .hero__cta-secondary {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px
    }

    .numbers {
        padding-top: 150px
    }

    .numbers__content {
        padding: 16px;
        border-radius: 40px 0
    }

    .numbers__list {
        grid-template-columns: repeat(2, 1fr)
    }

    .numbers__title {
        padding: 0 16px
    }

    .numbers__item {
        display: flex;
        padding: 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-radius: 16px;
        background: #fff
    }

    .numbers__item-title {
        font-size: 23px
    }

    .numbers__item-description {
        font-size: 14px
    }

    .building {
        padding: 64px 0
    }

    .building .container {
        gap: 24px
    }

    .building__cards {
        grid-template-columns: repeat(1, 1fr)
    }

    .building__card-content {
        gap: 4px
    }

    .building__card-title {
        font-size: 14px
    }

    .building__card-description {
        font-size: 14px
    }

    .industries__heading {
        flex-direction: column
    }

    .industries__heading {
        gap: 16px
    }

    .industries__heading p {
        width: 100%
    }

    .industries__cards {
        margin-top: 24px;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px
    }

    .industries__seo {
        margin: 32px 0;
        height: auto;
        padding-left: 16px;
        padding-right: 16px
    }

    .industries__seo {
        border-radius: 40px 0;
        background: url(../assets/new-img/industries-seo-bg-mob.svg) no-repeat center top/cover
    }

    .industries__seo-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .industries__seo-left {
        width: 100%;
        align-items: center;
        margin-bottom: 32px
    }

    .industries__seo-swiper::before {
        display: none
    }

    .industries__seo-swiper {
        padding: 0
    }

    .industries__seo-swiper-item {
        padding: 16px;
        border-radius: 16px
    }

    .industries__seo-swiper-item ul li {
        font-size: 14px;
        line-height: 21px
    }

    .industries__seo-swiper-wrapper {
        width: 100%;
        height: 270px;
        gap: 0
    }

    .industries__seo-swiper-item {
        width: 100%;
        min-width: 100%;
        margin-right: 0
    }

    .industries__seo-swiper-item::after {
        width: 91%
    }

    .industries__seo-swiper-item ul {
        padding-left: 35px
    }

    .industries__seo-swiper {
        padding-left: 0;
        height: auto
    }

    .industries__seo-swiper::before {
        display: none
    }

    .industries__seo-pagination {
        margin-top: 33px
    }

    .case {
        padding-bottom: 64px
    }

    .case__heading-badge {
        font-size: 0
    }

    .case__heading-badge::after {
        content: "Brands Trust Us!";
        font-size: 16px;
        font-weight: 500
    }

    .case__item-description {
        font-size: 14px;
        line-height: 21px
    }

    .case__item-list-item .title {
        font-size: 14px;
        line-height: 21px
    }

    .case__item-list-item .description {
        font-size: 14px;
        line-height: 21px
    }

    .case__item-tag {
        font-size: 14px
    }

    .leading {
        padding: 64px 0;
        border-radius: 40px 0;
        background: var(--Background-Gray, #F8F8F8);
        gap: 24px
    }

    .leading__content {
        grid-template-columns: repeat(1, 1fr)
    }

    .leading__content-item {
        display: flex;
        padding: 40px 16px 24px 16px;
        gap: 16px;
        border-radius: 40px 0
    }

    .leading__content-item-icon {
        width: 64px;
        height: 64px;
        border-radius: 8px
    }

    .leading__content-item-icon img {
        width: 32px;
        height: 32px
    }

    .leading__inner {
        margin-top: 32px;
        height: auto;
        padding: 48px 16px;
        border-radius: 40px 0;
        background: url(../assets/new-img/industries-seo-bg-mob.svg) no-repeat center top/cover
    }

    .leading__inner-content-item {
        width: 100%;
        border-radius: 16px
    }

    .leading__inner-content {
        flex-direction: column
    }

    .leading__inner-content-item-title {
        font-size: 14px
    }

    .leading__inner-content-item-description {
        font-size: 14px
    }

    .leading__inner-content-item-list li {
        font-size: 14px
    }

    .mobile__menu {
        display: block
    }

    .reviews {
        padding: 94px 0
    }

    .reviews__slide {
        padding: 24px
    }

    .reviews__right-text {
        font-size: 14px;
        line-height: 21px
    }

    .reviews__right-author-name {
        font-size: 14px
    }

    .reviews__right-author-position span {
        font-size: 13px
    }

    .reviews__right-author-position {
        flex-direction: column;
        gap: 0
    }

    .reviews__right-author-position span::after {
        display: none
    }

    .reviews__swiper-wrapper::before {
        top: -29px
    }

    .reviews .industries__seo-pagination {
        margin-top: 0
    }

    .reviews__faq-section-contact {
        margin-top: 16px;
        padding: 24px;
        border-radius: 40px 0
    }

    .reviews__faq-section-title h2 {
        width: 50%
    }

    .reviews__faq-section {
        gap: 24px
    }

    .faq-item__title {
        font-size: 14px
    }

    .faq-item__content p {
        line-height: 21px;
        font-size: 14px
    }

    .reviews__discuss-section {
        border-radius: 40px 0;
        height: auto;
        padding: 48px 24px;
        background: url(../assets/new-img/discuss-mob.svg) no-repeat center center/cover
    }

    .reviews__discuss-section h2 {
        margin-bottom: 16px
    }

    .reviews__discuss-section-buttons {
        margin-top: 24px
    }

    .reviews__discuss-section-buttons {
        flex-direction: column;
        align-items: center
    }

    .reviews__discuss-section-buttons .btn {
        width: 50%
    }

    .blog__list {
        display: flex;
        overflow: hidden;
        width: 100%
    }

    .blog__item {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease-in-out, visibility .5s ease-in-out
    }

    .blog__item.active {
        opacity: 1;
        visibility: visible
    }

    .blog__item:not(.active) {
        display: none
    }

    .blog__pagination {
        display: flex;
        justify-content: center
    }

    .footer__content {
        gap: 40px
    }

    .footer__nav {
        flex-direction: column
    }

    .footer__bottom {
        flex-direction: column
    }

    .footer__bottom .footer__copyright {
        order: 2
    }

    .footer__form {
        flex-direction: column
    }

    .footer__form .footer__input {
        height: 50px;
        width: 100%
    }

    /* CF7 footer form responsive heights */
    .footer #footer-subscribe .wpcf7-form input[type="email"],
    .footer #footer-subscribe .wpcf7-form input[type="text"] {
        height: 50px;
    }
}

@media(max-width: 600px) {
    .hero__video {
        height: 185px
    }
}


.case-template-default .site-container {
    padding-top: 0px;
}

.case-template-default .case-welcome {
    padding-top: 82px;
}