@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("../fonts/GraphikLCG/stylesheet.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --header-height: 100px;
}
@media (max-width: 992px) {
    :root {
        --header-height: 72px;
    }
}

:active,
:hover,
:focus {
    outline: 0;
    outline-offset: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-size: 14px;
    line-height: 26px;
    background: #010101;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

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

*::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #383838;
}

*::-webkit-scrollbar {
    width: 4px;
    background-color: #383838;
}

*::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fff;
}

@-moz-document url-prefix() {
    *:not(.front-products-tab-btns) {
        scrollbar-width: thin;
        scrollbar-color: #fff #383838;
    }

    *:not(.front-products-tab-btns)::-moz-scrollbar-thumb {
        background-color: #fff;
        border-radius: 0px;
    }
}

img {
    max-width: 100%;
    height: auto;
    /* opacity: 0; */
    background-color: transparent;
}

button {
    cursor: pointer;
}

ins {
    text-decoration: none;
    font-weight: normal;
}

button,
input,
input::placeholder,
select,
textarea,
textarea::placeholder {
    outline: none;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-size: 14px;
    opacity: 1;
    color: #fff;
    background: none;
    border: none;
}

input {
    border-radius: 0;
    -webkit-border-radius: 0;
}

button,
input,
select,
textarea {
    outline: none;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-size: 14px;
}

a {
    text-decoration: none;
    outline: none;
    color: #fff;
    cursor: pointer;
}

ul,
ol {
    list-style-position: outside;
    list-style: none;
    margin-left: 0;
}

.container {
    width: 100%;
    max-width: 1330px;
    margin: 0 auto;
}

.half-container {
    width: calc(100vw - ((100vw - 1330px) / 2));
    margin-left: auto;
    margin-right: 0px;
}

.site-header {
    padding: 30px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}

.site-header.header-scrolled {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-left img {
    height: 34px;
    margin-top: 11px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.header-center ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.header-center ul li {
    position: relative;
}

.header-center .menu-item-has-children::before {
    content: "";
    position: absolute;
    display: block;
    width: 130%;
    height: 200%;
    z-index: 5;
}

.header-center .menu-item-has-children::after {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' fill='none'%3E%3Cpath fill='%23fff' d='m8.515.766-3.75 3.75a.375.375 0 0 1-.53 0L.485.766a.375.375 0 1 1 .53-.531L4.5 3.72 7.985.235a.375.375 0 0 1 .53.53'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.header-center .menu-item-has-children.hovered::after {
    transform: translateY(-50%) rotate(180deg);
}

.header-center ul li a {
    font-weight: 700;
    line-height: 20px;
    position: relative;
}

.header-services-sub-menu-item li a {
    position: relative;
}

.header-center ul li a::after,
.header-services-sub-menu-item li a::after,
.header-services-sub-menu-item li.current-page a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(270.51deg, #8764E5 0.66%, #4BC7A3 51.7%, #8764E5 99.77%);
    transition: width 0.3s ease-out;
}

.header-center ul li a:hover::after,
.header-center ul li a:focus::after,
.header-services-sub-menu-item li a:hover::after,
.header-services-sub-menu-item li a:focus::after,
.header-services-sub-menu-item li.current-page a::after {
    width: 100%;
}

.header-center .menu-item-has-children a:hover::after,
.header-center .menu-item-has-children a:focus::after {
    width: calc(100% + 15px);
}

.header-center ul li.menu-item-has-children a {
    position: relative;
    z-index: 9;
}

.header-center ul.sub-menu,
.header-services-sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    min-width: 125px;
    position: absolute;
    left: 0;
    top: 30px;
    border: 1px solid #7287CD;
    padding: 15px;
    list-style: none;
    transition: all .27s ease-in-out;
    z-index: 99;
    border-radius: 10px;
    background: #000;
}

.header-services-sub-menu {
    width: 100%;
    top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 25px;
    background: url('../img/bg-menu.png') #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Noise overlay for services dropdown menu */
.header-services-sub-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/noise-bg-large.png');
    background-repeat: repeat;
    background-size: 65px 65px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0.1);
}

.header-center ul.sub-menu.show-sub,
.header-services-sub-menu.show-sub {
    visibility: visible;
    opacity: 1;
}

.header-services-sub-menu-left {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px 20px;
}

.header-services-sub-menu-item:nth-child(-n+4) {
    padding-bottom: 25px;
    border-bottom: 1px solid #FFFFFF33;
    padding-right: 20px;
}

.header-services-sub-menu-item span {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    display: block;
    margin-bottom: 12px;
}

.header-services-sub-menu-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #1E1E1E;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.header-services-sub-menu-right-increase {
    margin-bottom: 25px;
}

.header-services-sub-menu-right-increase span {
    display: block;
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-services-sub-menu-right-audit {
    font-size: 18px;
    font-weight: 600;
    line-height: 24.59px;
    letter-spacing: -0.05em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-tel {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-tel a {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.header-tel span {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.white-btn a,
.white-btn button,
.white-btn span {
    font-weight: 600;
    line-height: 20px;
    padding: 9px 27px;
    border-radius: 800px;
    border: 1px solid #fff;
    cursor: pointer;
    transition: all .27s ease-in-out;
    min-width: 180px;
    display: inline-block;
    text-align: center;
}

.white-btn a:hover,
.white-btn button:hover,
.white-btn span:hover,
.contact-form-presentation:hover .white-btn button,
.contact-form-presentation:hover .white-btn a,
.contact-form-presentation:hover .white-btn span {
    color: #010101;
    background: #FFFFFF;
}

.ark-dropdown {
    color: #FFFFFF;
    position: relative;
    margin-right: 15px;
}

.dropdown-current {
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 20px;
}

.dropdown-current::after {
    content: '';
    display: block;
    width: 10px;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    right: -10px;
    margin-right: -50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='5' fill='none'%3E%3Cpath fill='%23fff' d='m8.515.766-3.75 3.75a.375.375 0 0 1-.53 0L.485.766a.375.375 0 1 1 .53-.531L4.5 3.72 7.985.235a.375.375 0 0 1 .53.53'/%3E%3C/svg%3E") no-repeat right center;
    transition: all .3s ease-in-out;
    transform: rotate(0deg) translate(-50%, -50%);
}

.dropdown-current.click::after {
    transform: rotate(180deg);
    top: 0;
    right: -5px;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 25px;
    left: -3px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101),
        linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.dropdown-item {
    color: #383838;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 8px 0 8px;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-item.current-dropdown-item {
    color: #fff;
}

.dropdown-item:first-child {
    padding-top: 8px;
}

.dropdown-item:last-child {
    padding-bottom: 8px;
}

.dropdown-item::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    border: 1px solid #383838;
}

.dropdown-item.current-dropdown-item::before {
    border: 1px solid #fff;
}

.dropdown-item.current-dropdown-item::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: #fff;
    position: absolute;
    top: 15px;
    left: 11px;
}

section {
    padding-bottom: 200px;
    overflow-x: clip;
}

section .container>div,
section .half-container>div {
    opacity: 0;
    transition: opacity 1s;
}

section .container>div.animate,
section .half-container>div.animate {
    opacity: 1;
}

/* Base styles for front-services section */
.front-services-sect {
    padding-top: calc(var(--header-height) + 200px);
    background: #010101;
    position: relative;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.hero-video-wrapper.visible {
    opacity: 1;
}

.hero-video-wrapper video {
    width: 115%;
    height: 115%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
}

.front-services-sect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../img/noise-bg-large.png') 0% 0% / 65px 65px repeat;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.front-services-sect .container {
    position: relative;
    z-index: 3;
}

.front-services {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.front-services h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 88px;
    letter-spacing: -0.02em;
}

.front-services p {
    font-size: 20px;
    line-height: 30px;
    color: #D9D9D9;
    margin-top: 45px;
}

.gradient-btn button,
.gradient-btn a,
.gradient-btn span,
.review-item-video-btn em {
    display: inline-block;
    background: linear-gradient(266.02deg, #009980 3.25%, #0066B2 47.25%, #4C00B2 96.75%);
    position: relative;
    padding: 14px 35px;
    z-index: 10;
    color: white;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    border: none;
    border-radius: 800px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.5s ease;
}

.gradient-btn button:after,
.gradient-btn a:after,
.gradient-btn span:after,
.review-item-video-btn em::after,
.review-item-pdf-btn em::after {
    background: linear-gradient(266.02deg, #4C00B2 3.25%, #009980 47.25%, #009980 96.75%);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -1;
    transition: opacity 0.5s;
    border-radius: 800px;
}

.gradient-btn button:hover::after,
.gradient-btn a:hover::after,
.gradient-btn span:hover::after,
.review-item-video-btn em:hover::after,
.review-item-pdf-btn em:hover::after {
    opacity: 1;
}

.blog-list-consult .gradient-btn button:hover::after {
    opacity: 0;
}

.blog-list-consult .gradient-btn:hover button::after {
    opacity: 1 !important;
}

.front-services .gradient-btn {
    margin-top: 30px;
}

.gradient-btn button, .gradient-btn a {
    height: 60px;
    line-height: 30px;
    min-width: 244px;
}

.front-services-list {
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    counter-reset: service-counter;
}

.front-services-item {
    counter-increment: service-counter;
    padding: 24px;
    border-radius: 16px;
    background: #0E0E0E;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.front-services-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/service-item-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.front-services-item:hover::before {
    opacity: 1;
}

.front-services-item>* {
    position: relative;
    z-index: 1;
}

.front-services-item-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.front-services-item-head::before {
    content: counter(service-counter, decimal-leading-zero);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 5px;
    background: #262626;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-services-item-head span {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.front-services-item ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 21px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title.section-title-beetween {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-title span {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: -0.02em;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.watch-all-link {
    font-weight: 700;
    position: relative;
    display: inline-block;
    transition: none;
}

.watch-all-link:hover {
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    -webkit-background-clip: text;
    color: transparent;
    transition: color 0.5s ease, background 0.5s ease;

}

.watch-all-link::before {
    content: '';
    position: absolute;
    left: -1%;
    bottom: -8px;
    width: 101%;
    height: 2px;
    background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%),
        linear-gradient(90deg, #fff, #fff, #fff);
    background-size: 4px 3px, 100% 0;
    pointer-events: none;
}

.watch-all-link:hover::before {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.watch-all-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, transparent, transparent 50%, #010101 50%, #010101 100%),
        linear-gradient(90deg, #4CFFCB, #35B2FF, #7846FF);
    background-size: 4px 3px, 100% 3px;
    border: none;
    opacity: 0;
}

.watch-all-link:hover::after {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.our-cases-sect {
    position: relative;
    z-index: 2;
}

.our-cases-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px 30px;
}

.toner-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.blog-grid-mob-view-all {
    display: none;
}

.blog-grid-list .toner-img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.toner-img>div {
    position: absolute;
    bottom: -100%;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #00000099;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .6s ease-in-out;
}

.toner-img div button:first-child,
.toner-btns span:first-child {
    color: #010101;
    padding: 10px 25px;
    border-radius: 800px;
    border: 1px solid #FFFFFF;
    color: #fff;
    transition: all .27s ease-in-out;
}

.toner-img div button:last-child,
.toner-btns span:last-child {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 1000px;
    transition: all .27s ease-in-out;
}

.our-cases-list a:hover .toner-img div,
.blog-grid-list a:hover .toner-img div,
.cases-page-list-wrapper a:hover .toner-img div,
.blog-page-list a:hover .toner-img div {
    bottom: 0;
}

.toner-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.toner-btns:hover button:first-child,
.toner-btns:hover span:first-child {
    background: #fff;
    color: #000;
}

.toner-btns:hover button:last-child,
.toner-btns:hover span:last-child {
    background: #fff;
}

.toner-btns:hover button:last-child svg path,
.toner-btns:hover span:last-child svg path {
    stroke: #000;
}

.our-cases-list a img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 15px;
}

.our-case-list-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999999;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
}

.our-case-list-item-title span {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
    width: fit-content;
}

.our-cases-list a:hover .our-case-list-item-title span {
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%);
    -webkit-background-clip: text;
    color: transparent;
}

.our-case-list-item-title span::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='16' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='1.3' d='M0 8h18.134m0 0L10.745.612M18.135 8l-7.389 7.388'/%3E%3C/svg%3E");
}

.our-cases-list a:hover .our-case-list-item-title span::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='16' fill='none'%3E%3Cpath stroke='url(%23a)' stroke-width='1.3' d='M0 8h18.134m0 0L10.745.612M18.135 8l-7.389 7.388'/%3E%3Cpath stroke='%23000' stroke-opacity='.3' stroke-width='1.3' d='M0 8h18.134m0 0L10.745.612M18.135 8l-7.389 7.388'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='18.134' x2='.131' y1='8' y2='9.537' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234CFFCB'/%3E%3Cstop offset='.471' stop-color='%2335B2FF'/%3E%3Cstop offset='1' stop-color='%237846FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.our-case-list-item-title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 12px;
}

.our-cases-list a ul,
.our-cases-list-item ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.our-cases-list a ul li,
.our-cases-list-item ul li {
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    padding: 7px 14px;
    border: 1px solid #FFFFFF33;
    border-radius: 800px;
    display: inline-block;
}

.our-cases .gradient-btn {
    margin-top: 50px;
}

.btn-center {
    text-align: center;
}

.section-title-flex {
    display: flex;
    align-items: center;
    gap: 55px;
}

.section-arrows {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-arrows span {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #383838;
    border-radius: 100%;
    cursor: pointer;
    background: transparent;
    transition: all .3s ease-in-out;
}

.section-arrows span:not(.swiper-button-disabled):hover {
    background: #FFFFFF;
}

.section-arrows span:not(.swiper-button-disabled):hover img {
    filter: brightness(0);
}

.section-arrows span.swiper-button-disabled {
    border: none;
    width: 20px;
}

.our-clients .swiper {
    padding: 10px 15px;
}

.swiper-grid-column>.swiper-wrapper {
    flex-direction: unset !important;
}

.our-clients .swiper-slide {
    text-align: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    opacity: 0;
}

.our-clients .swiper-slide:hover {
    z-index: 9;
}

.our-clients .swiper-slide img {
    position: relative;
    z-index: 9;
}

.our-clients .swiper-slide.swiper-slide-visible {
    opacity: 1;
}

.our-clients .swiper-slide::before {
    content: '';
    display: block;
    width: 105%;
    height: 105%;
    position: absolute;
    border-radius: 100%;
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 42.41%, #7846FF 96.75%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: all .27s ease-in-out;
}

.our-clients .swiper-slide::after {
    content: '';
    display: block;
    width: 105%;
    height: 105%;
    border: 1px solid #383838;
    position: absolute;
    border-radius: 100%;
}

.our-clients .swiper-slide:hover::before {
    opacity: 1;
}

.section-title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #343434;
}

.about-us-video-sect {
    position: relative;
    z-index: 3;
}

.about-us-video {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.about-us-video video {
    display: block;
    width: 100%;
}

.about-us-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 32px;
}

.about-us-video-poster {
    display: block;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.about-us-video-play .pause-icon {
    display: none;
}

.yt-active .about-us-video-play {
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 5;
}

.about-us-video.is-hovered .yt-active .about-us-video-play {
    opacity: 1;
}

.yt-active .about-us-video-play .play-icon,
.is-playing .about-us-video-play .play-icon {
    display: none;
}

.yt-active .about-us-video-play .pause-icon,
.is-playing .about-us-video-play .pause-icon {
    display: block;
}

.is-playing .about-us-video-play {
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 5;
}

.about-us-video.is-hovered .is-playing .about-us-video-play {
    opacity: 1;
}

.is-playing .about-us-video-play .about-us-video-play-wrapper,
.yt-active .about-us-video-play .about-us-video-play-wrapper {
    width: 80px;
    height: 80px;
}

/* Sound button */
.about-us-video-sound {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease, transform 0.15s ease;
}

.about-us-video-sound:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.08);
}

.about-us-video-sound .sound-on-icon {
    display: none;
}

.about-us-video-sound.sound-active .sound-off-icon {
    display: none;
}

.about-us-video-sound.sound-active .sound-on-icon {
    display: block;
}

.about-us-video .section-title {
    position: absolute;
    top: 45px;
    left: 30px;
}

.about-us-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    transition: all .27s ease-in-out;
}

.about-us-video-play:hover {
    border: .6px solid #467883;
}

.grid-block {
    display: grid;
    grid-template-columns: 25% 70%;
    gap: 5%;
}

.why-us-right-txt {
    font-size: 64px;
    font-weight: 600;
    line-height: 70.4px;
    letter-spacing: -0.02em;
    color: transparent;
}

.why-us-right-txt p {
    color: rgba(250, 250, 250, 0.2);
}

.why-us-right-txt p .word {
    background: linear-gradient(to right, #fff, #fff) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0% 100%;
    color: rgba(250, 250, 250, 0.2);
}

.why-us-right .gradient-btn {
    margin-top: 60px;
}

.why-us-sect {
    position: relative;
    overflow-x: clip;
}

/* Noise overlay on why-us gradient */
.why-us-sect::before {
    content: '';
    position: absolute;
    top: -300px;
    right: 0;
    width: 100%;
    height: calc(100% + 300px);
    background-image: url('../img/noise-bg-large.png');
    background-repeat: repeat;
    background-size: 65px 65px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0.1);
}

.why-us-sect::after {
    content: url('../img/why-us-bg.png');
    position: absolute;
    top: -300px;
    right: 0;
    z-index: -1;
}

.why-us-sect .container {
    position: relative;
    z-index: 1;
}

.our-tech-slider-top {
    margin-bottom: 20px;
}

.our-tech-sect .swiper-wrapper {
    transition-timing-function: linear;
}

.our-tech .swiper-slide {
    text-align: center;
    padding: 20px;
    background: #0E0E0E;
    border-radius: 20px;
}

.reviews-sect {
    position: relative;
    overflow-x: clip;
}

/* Noise overlay on reviews gradient */
.reviews-sect::before {
    content: '';
    position: absolute;
    top: -480px;
    left: 0;
    width: 100%;
    height: calc(100% + 480px);
    background-image: url('../img/noise-bg-large.png');
    background-repeat: repeat;
    background-size: 65px 65px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
    filter: brightness(0.1);
}

.reviews-sect::after {
    content: url('../img/rew-bg.svg');
    position: absolute;
    top: -480px;
    left: 0;
    z-index: -1;
}

.reviews-sect .container {
    position: relative;
    z-index: 1;
}

.review-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px;
}

.review-item-author {
    display: flex;
    align-items: center;
    gap: 25px;
}

.review-item-author-img {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
}

.review-item-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-item-author-info {
    max-width: 190px;
}

.review-item-author-info span {
    font-size: 20px;
    font-weight: 600;
    line-height: 27.32px;
    display: block;
    margin-bottom: 5px;
}

.review-item-author-info span:last-child,
.review-item-author-info p:last-child {
    margin-bottom: 0;
}

.review-item-author-info p {
    font-weight: 700;
    line-height: 19.12px;
    color: #9A9A9A;
    margin-bottom: 15px;
}

.review-item-head-btns {
    display: flex;
    align-items: center;
    gap: 100px;
}

.review-item-video-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.review-item-video-btn em {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 800px;
    padding: 0;
}

.review-item-video-btn em svg {
    display: block;
    margin-left: 3px;
}

.review-item-video-btn span {
    font-size: 20px;
    font-weight: 600;
    line-height: 27.32px;
}

.review-item-pdf-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.review-item-pdf-btn em {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 800px;
    padding: 0;
    background: linear-gradient(266.02deg, #009980 3.25%, #0066B2 47.25%, #4C00B2 96.75%);
    position: relative;
    z-index: 10;
}

.review-item-pdf-btn span {
    font-size: 20px;
    font-weight: 600;
    line-height: 27.32px;
}

.review-item-head-btns:has(.review-item-pdf-btn):has(.review-item-video-btn) {
    gap: 30px;
}

.review-item-head-btns:has(.review-item-pdf-btn):has(.review-item-video-btn) .review-item-pdf-btn span,
.review-item-head-btns:has(.review-item-pdf-btn):has(.review-item-video-btn) .review-item-video-btn span {
    font-size: 14px;
    line-height: 19.12px;
}

.review-item-body-wrapper {
    position: relative;
}

.review-item-body {
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

/* Стилі для HTML контенту у відгуках */
.review-item-body p {
    margin-bottom: -5px;
 }

.review-item-body p:last-child {
    margin-bottom: 0;
}

.review-item-body ul,
.review-item-body ol {
    margin: 16px 0;
    padding-left: 24px;
}

.review-item-body li {
    margin-bottom: 8px;
}

.review-item-body strong,
.review-item-body b {
    font-weight: 800;
}

.review-item-body em,
.review-item-body i {
    font-style: italic;
}

.review-item-body a {
    color: #4BECC4;
    text-decoration: underline;
}

.review-item-body a:hover {
    color: #fff;
}

.review-item-body blockquote {
    border-left: 3px solid #4BECC4;
    padding-left: 16px;
    margin: 16px 0;
    font-style: italic;
    color: #ccc;
}

.review-item-body-wrapper.has-overflow .review-item-body {
    max-height: 336px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.review-item-body-wrapper.has-overflow.expanded .review-item-body {
    max-height: none;
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
}

.review-readmore {
    display: none;
    position: relative;
    z-index: 1;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 700;
    line-height: 19.12px;
    color: #4C4C4C;
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-item-body-wrapper.has-overflow .review-readmore {
    display: block;
}

.review-readmore::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, transparent, transparent 50%, #4C4C4C 50%, #4C4C4C 100%),
        linear-gradient(90deg, #4C4C4C, #4C4C4C, #4C4C4C);
    background-size: 4px 3px, 100% 0;
    pointer-events: none;
    transition: background-image 0.3s ease;
}

.review-readmore:hover {
    color: #fff;
}

.review-readmore:hover::before {
    background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%),
        linear-gradient(90deg, #fff, #fff, #fff);
}

.ark-swiper-fraction {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 55px;
}

.ark-swiper-fraction i {
    display: block;
    width: 120px;
    height: 1px;
    background: #383838;
}

.reviews-right {
    position: relative;
}

.reviews-right>.section-arrows {
    position: absolute;
    right: 0;
    top: 5px;
    z-index: 9;
}

.review-item-head-btns .section-arrows {
    opacity: 0;
    pointer-events: none;
}

.blog-grid-list-desk {
    display: grid;
    grid-template-columns: 58% 40.5%;
    gap: 20px 2%;
    padding-bottom: 80px;
}

.blog-grid-list a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    padding: 25px 20px;
}

.blog-grid-list a::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.blog-grid-list a > span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 5px 14px;
    background: #1A1D20;
    border-radius: 1000px;
    margin-bottom: 330px;
}

.blog-grid-list a img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-grid-list-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-grid-list-column a {
    padding-right: 90px;
}

.blog-grid-list-column a > span {
    margin-bottom: 85px;
}

.blog-grid-list-item-txt div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.blog-grid-list-item-txt p {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.blog-grid-list-column a .blog-grid-list-item-txt p {
    font-size: 20px;
    line-height: 24px;
}

.contact-form-sect {
    padding-bottom: 85px;
}

.contact-form-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(225deg, rgba(120, 70, 255, 0.5) 0%, rgba(53, 178, 255, 0.5) 50%, rgba(76, 255, 203, 0.5) 100%);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15%;
    padding: 85px 55px;
    position: relative;
    overflow: hidden;
    border-radius: 23px;
    border: none !important;
    background: #000 !important;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../img/bg.svg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.contact-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url('../img/noise-bg-large.png') 0% 0% / 65px 65px repeat !important;
    mix-blend-mode: overlay !important;
    pointer-events: none;
    filter: brightness(0.1);
}

.contact-form-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.contact-form-title span {
    font-size: 64px;
    font-weight: 600;
    line-height: 70.4px;
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 30px;
}

.contact-form-title p {
    font-size: 16px;
    font-weight: 400;
    line-height: 21.86px;
}

.contact-form-address {
    font-family: Graphik LCG;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-connect {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 35px;
    background: #1E1E1E66;
    border-radius: 16px;
}

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

.s0cial a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #FFFFFF33;
    border-radius: 100%;
    background: transparent;
    position: relative;
}

.s0cial a::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 100%;
    opacity: 0;
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    transition: all .27s ease-in-out;
}

.s0cial a:hover::before {
    opacity: 1;
}

.s0cial a img,
.s0cial a svg {
    max-width: 24px;
    position: relative;
    z-index: 9;
}

.contact-form-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form-presentation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-form-presentation:hover .btn-svg,
.page-404 a:hover .btn-svg,
.page-404 a:hover .white-btn button {
    background: #fff;
    color: #000;
}

.contact-form-presentation:hover .btn-svg svg,
.page-404 a:hover .btn-svg svg {
    filter: brightness(0);
}

.page-404 a {
    width: max-content;
    margin: 0 auto;
}

.contact-form-right input {
    padding: 20px;
    background: #383838;
    font-size: 14px;
    line-height: 16px;
    border-radius: 8px;
    width: 100%;
    border: 1px solid transparent;
}

.contact-form-right input:focus {
    border: 1px solid #FFFFFF;
}

.contact-form-right {
    position: relative;
    z-index: 10;
}

.contact-form-right form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-right form>p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #D9D9D9;
    max-width: 80%;
}

.contact-form-right form>p a {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0%;
    color: #D9D9D9;
    text-decoration: underline;
}

.contact-form-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-right input::placeholder {
    color: #D9D9D9;
}

.contact-form-file-upload-origin-btn {
    display: none;
}

.contact-form-file-upload-custom-btn {
    padding: 8px 0 25px 0;
    cursor: pointer;
    width: max-content;
}

.contact-form-file-upload-custom-btn > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-form-file-upload-custom-btn > div > div:not(.clear-file-button) {
display: flex;
flex-direction: column;
gap: 5px;
}

.clear-file-button {
    display: none;
}

.contact-form-file-upload-custom-btn span {
    font-weight: 700;
    line-height: 19.12px;
    color: #D9D9D9;
}

.contact-form-file-upload-custom-btn i {
font-size: 12px;
line-height: 100%;
font-style: normal;
}

.contact-form-right .gradient-btn button {
    display: block;
    width: 100%;
}

.contact-form-right>p {
    margin-top: 5px;
    font-size: 12px;
    line-height: 16px;
}

.seo span {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    display: block;
    margin-bottom: 15px;
}

.seo .ark-content-block {
    position: relative;
    max-height: 60px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.ark-content-block {
    font-size: 16px;
    line-height: 24px;
    color: #D9D9D9;
}

.ark-content-block *:not(li, button, label, input, span, em, b, strong, i, a, svg, br, img) {
    margin-bottom: 10px;
}

.ark-content-block>*:last-child {
    margin-bottom: 0;
}

.ark-content-block img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: transparent !important;
    background-color: transparent !important;
}

.ark-content-block p img {
    background: transparent !important;
    background-color: transparent !important;
}

.ark-content-block table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.ark-content-block table,
.ark-content-block table td,
.ark-content-block table th {
    border: 1px solid #fff;
}

.ark-content-block table td,
.ark-content-block table th {
    padding: 10px;
}

.ark-content-block table th {
    color: #fff;
    background: #555352;
    font-weight: normal;
}

.ark-content-block ul,
.ark-content-block ol {
    list-style-position: outside;
    margin-left: 1em;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ark-content-block ul li {
    list-style: disc;
}

.ark-content-block ol li {
    list-style: decimal;
}

.ark-content-block h1 {
    font-size: 80px;
    line-height: 88px;
}

.ark-content-block h2 {
    font-size: 64px;
    line-height: 70.4px;
}

.ark-content-block h3 {
    font-size: 48px;
    line-height: 62.4px;
}

.ark-content-block h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

.ark-content-block h5,
.ark-content-block h6 {
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
}

.seo-sect {
    padding-bottom: 150px;
}

.seo .ark-content-block::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 6, 6, 0) 0%, #060606 100%);
}

.seo .ark-content-block.readed::after {
    background: none;
}

.seo-readmore {
    margin-top: 25px;
    font-weight: 700;
    line-height: 19.12px;
    color: #4C4C4C;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.seo-readmore.watch-all-link::before {
    background-image: linear-gradient(90deg, transparent, transparent 50%, #4C4C4C 50%, #4C4C4C 100%),
        linear-gradient(90deg, #4C4C4C, #4C4C4C, #4C4C4C);
}

.site-footer {
    padding: 60px 0 25px 0;
    position: relative;
    overflow: hidden;
}

/* Noise overlay effect */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/noise-bg-large.png');
    background-repeat: repeat;
    background-size: 65px 65px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0.1);
}

/* Footer background graphic */
.site-footer::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 542px;
    height: 310px;
    background-image: url('../img/footer-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    z-index: 0;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    margin-bottom: 80px;
    gap: 30px;
}

.footer-top-menus-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-top ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-top ul li a,
.footer-menu-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}

.footer-menu-title {
    display: none;
}

.footer-menu-title::after {
    content: '';
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath fill='%23fff' d='m11.354 1.354-5 5a.5.5 0 0 1-.707 0l-5-5a.5.5 0 0 1 .707-.707L6 5.293 10.647.647a.5.5 0 0 1 .707.707'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 15px;
    height: 6px;
    transform: rotate(0deg);
    transition: all .3s ease-in-out;
}

.footer-top ul li a:hover {
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.footer-contact-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-tel {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    letter-spacing: -0.02em;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-address a,
.footer-address span {
    font-size: 16px;
    line-height: 24px;
    display: block;
}

.footer-address .dropdown-list {
    display: none;
    min-width: 170px;
    max-height: 130px;
    overflow: auto;
    top: calc(100% + 25px);
}

.footer-address .dropdown-list::-webkit-scrollbar-track {
    margin: 10px;
}

.footer-address .dropdown-item {
    text-transform: none;
    font-weight: 400;
}

.footer-address .dropdown-current {
    display: flex;
    align-items: center;
    text-transform: none;
    font-weight: 400;
    width: max-content;
    padding: 20px;
    border: 1px solid #FFFFFF33;
    border-radius: 16px;
}

.footer-address .dropdown-current.click,
.footer-address .dropdown-current:hover {
    background: #FFFFFF;
    color: #010101;
}

.footer-address .dropdown-current::after {
    margin-left: 85px;
    position: static;
    margin: 0;
    margin-left: 85px;
    height: 10px;
    transform: rotate(0deg);
}

.footer-address .dropdown-current.click::after {
    transform: rotate(180deg);
    filter: brightness(0);
}

.footer-address .dropdown-current:hover::after {
    filter: brightness(0);
}

.footer-address .ark-dropdown {
    margin-right: 0;
    margin-top: 25px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.opacity-img {
    opacity: .4;
}

.services-main-column-sect {
    padding-bottom: 260px;
}

.services-main-column-sect .hero-actions-row {
    display: block;
}

/* Services page gradient on body */
body.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    aspect-ratio: 1920 / 900;
    background-image: url('../img/services-main-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    pointer-events: none;
}

/* Hide hero PNG on services page – gradient is now via body::before */
.services-page .services-main-column-sect .page-main-column-bg {
    display: none;
}

/* Cases page gradient on body */
body.cases-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    aspect-ratio: 1920 / 900;
    background-image: url('../img/cases-main-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    pointer-events: none;
}

/* Lift all page content above the fixed noise overlay (body::after z-index:1) */
body.cases-page > main {
    position: relative;
    z-index: 2;
}

/* Hide hero PNG on cases page – gradient is now via body::before */
.cases-page .cases-main-column-sect .page-main-column-bg {
    display: none;
}

/* Team page gradient on body */
body.team-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    aspect-ratio: 1920 / 900;
    background-image: url('../img/our-team-main-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    pointer-events: none;
}

/* Team page noise overlay */
body.team-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/noise-bg-large.png') 0% 0% / 65px 65px repeat;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

/* Hide hero PNG on team page – gradient is now via body::before */
.team-page .team-page-main-column-sect .page-main-column-bg {
    display: none;
}

.about-main-column-sect {
    padding-bottom: 320px;
}

/* About page gradient on body - static at top, full viewport width */
body.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    aspect-ratio: 1920 / 900;
    background-image: url('../img/about-us-blur.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    pointer-events: none;
}

.page-main-column-sect {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-main-column-bg {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
}

.page-main-column {
    max-width: 445px;
    margin: 0 auto;
}

.ark-breadcrumbs {
    padding-top: calc(var(--header-height) + 100px);
    margin-bottom: 25px;
    padding-bottom: 0;
}

.ark-breadcrumbs .ark-breadcrumbs-list {
    justify-content: center;
}

.ark-breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ark-breadcrumbs-list span.ark-bc-divider,
.ark-breadcrumbs-list a {
    line-height: 19.12px;
    letter-spacing: -0.02em;
    color: #D9D9D94D;
}

.ark-breadcrumbs-list span.ark-bc-divider {
    margin: 0 8px;
}

.ark-breadcrumbs-wrapper {
    margin-bottom: 20px;
}

.ark-breadcrumbs .ark-breadcrumbs-wrapper {
    margin-bottom: 0;
}

.contacts-page .ark-breadcrumbs {
    padding-top: calc(var(--header-height) + 85px);
}

.blog-page .ark-breadcrumbs,
.cases-page .ark-breadcrumbs {
    padding-top: calc(var(--header-height) + 65px);
}

.page-main-column h1,
.page-title-h1 {
    display: inline-block;
    font-size: var(--title-font-size, 80px);
    font-weight: 600;
    line-height: var(--title-line-height, 103px);
    letter-spacing: -0.02em;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
    background-position: 115%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-main-column p {
    margin-top: 45px;
    font-size: 20px;
    line-height: 30px;
}

.page-main-column .gradient-btn {
    margin-top: 0;
}

.page-main-column .hero-actions-row {
    margin-top: 25px;
}

.services-offer-right {
    display: flex;
    flex-direction: column;
}

.services-offer-right div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 660px;
}

.services-offer-right p {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.02em;
    font-weight: 400;
    color: #838383;
}

.services-offer-right li {
    position: relative;
    overflow: hidden;
    border-bottom: 0.6px solid #D9D9D9;
}

.services-offer-right li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(266.02deg, rgba(147, 255, 224, 0) 3.25%, rgba(53, 178, 255, 0.25) 50%, rgba(120, 70, 255, 0.7) 96.75%);
    transition: left 0.5s ease;
    z-index: 0;
}

.services-offer-right li:hover::before {
    left: 0;
}

.services-offer-right a {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
    letter-spacing: -0.02em;
    padding: 15px 30px;
    position: relative;
    z-index: 1;
}

.services-offer-right-with-icons a {
    display: grid;
    grid-template-columns: 4% 75% 17%;
    gap: 2%;
}

.services-offer-right a img {
    height: max-content;
    margin-top: 15px;
}

.services-offer-right a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='59' height='58' fill='none'%3E%3Crect width='58' height='57' x='.5' y='.5' stroke='%23D9D9D9' rx='28.5'/%3E%3Cpath stroke='%23fff' d='M18 29h23m0 0-9.37-9M41 29l-9.37 9'/%3E%3C/svg%3E");
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
}

.services-offer-right li:hover a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='59' height='58' fill='none'%3E%3Crect width='59' height='58' fill='%23fff' rx='29'/%3E%3Crect width='59' height='58' fill='url(%23a)' rx='29'/%3E%3Crect width='59' height='58' fill='%23000' fill-opacity='.3' rx='29'/%3E%3Cpath stroke='%23fff' stroke-width='2' d='M18 29h23m0 0-9.37-9M41 29l-9.37 9'/%3E%3Cdefs%3E%3ClinearGradient id='a' x1='59' x2='.294' y1='29' y2='33.156' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234CFFCB'/%3E%3Cstop offset='.471' stop-color='%2335B2FF'/%3E%3Cstop offset='1' stop-color='%237846FF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    display: flex;
}

.how-works-sect {
    position: relative;
}

.how-works-sect::after {
    content: url('../img/how-works-bg.png');
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.how-works {
    counter-reset: how-works-counter;
}

.how-works-item-head {
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.how-works-item-head::after {
    content: counter(how-works-counter, decimal-leading-zero);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 5px;
    background: #262626;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-works-item-head span {
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
    letter-spacing: -0.02em;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
    background-size: 100% 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.how-works-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how-works-right>div {
    padding: 50px 45px 25px 45px;
    background: #1E1E1E66;
    border-radius: 20px;
    backdrop-filter: blur(80px);
    counter-increment: how-works-counter;
}

.how-works-right>div ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.how-works-right>div li {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    line-height: 24.59px;
    color: #D9D9D9;
}

.how-works-right>div li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='25' fill='none'%3E%3Crect width='25.4' height='24.4' x='.3' y='.3' stroke='%23D9D9D9' stroke-width='.6' rx='12.2'/%3E%3Cpath stroke='%23D9D9D9' stroke-width='.6' d='m8 12.5 3 3L17.5 9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
}

.about-numbers-sect {
    position: relative;
}

.about-numbers-sect::after {
    content: url('../img/about-numbers-bg.png');
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-numbers-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    counter-reset: values-counter;
    margin-top: -50px;
}

.about-numbers-right span {
    font-size: 180px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.about-numbers-right p {
    font-size: 18px;
    line-height: 27px;
    color: #D9D9D9;
    padding-right: 100px;
}

.montserat-font {
    font-family: "Montserrat", serif;
}

.about-values-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 130px;
}

.about-values-item-head span {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.about-values-item-head::after {
    content: counter(values-counter, decimal-leading-zero);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 5px;
    background: #262626;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-values-right .swiper-slide {
    counter-increment: values-counter;
    padding: 40px;
    border-radius: 20px;
    overflow: hidden;
    background: #1E1E1E66;
    height: auto;
}

.about-values-right .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/values-item-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.about-values-right .swiper-slide:hover::before {
    opacity: 1;
}

.about-values-right .swiper-slide p {
    font-size: 18px;
    line-height: 27px;
    color: #D9D9D9;
}

.about-values-right .section-arrows {
    margin-top: 90px;
}

.about-values-left .section-arrows,
.team-left .section-arrows,
.team-page-slider .section-title .section-arrows {
    display: none;
}

.team-right .swiper-slide,
.team-page-slider .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    background: #1E1E1E66;
}

.team-right .swiper-slide>img,
.team-page-slider .swiper-slide>img {
    display: block;
    width: 100%;
    height: 100%;
}

.team-item-info {
    padding: 25px 25px 15px 25px;
}

.team-item-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.team-item-name span {
    font-size: 24px;
    font-weight: 500;
    line-height: 28.8px;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.about-page .team-item-name span {
    font-size: 22px;
}

.team-item-name p {
    font-size: 16px;
    line-height: 21.86px;
    color: #D9D9D9;
}

.team-slider-btns {
    align-items: center;
    justify-content: flex-end;
    display: grid;
    grid-template-columns: 30% 30%;
    gap: 4%;
}

.team-sect .team-slider-btns {
    margin-top: 30px;
}

.team-right .team-slider-btns .gradient-btn {
    position: relative;
    padding-right: calc(100vw - ((100vw - 1330px) / 2));
}

.team-sect .gradient-btn {
    text-align: right;
}

.geography-right img {
    display: block;
    width: 100%;
}

.geography-right .gradient-btn {
    text-align: center;
    margin-top: 30px;
}

.team-page-main-column {
    max-width: 545px;
}

.team-page-slider .section-title span {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
}

.team-page-slider-sect {
    position: relative;
    z-index: 3;
}

.team-page-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.team-page-slider .team-item-info {
    padding: 15px 18px 13px 18px;
}

.team-page-slider .team-item-name span {
    font-size: 16px;
    line-height: 21.6px;
}

.team-page-slider .team-item-name p {
    font-size: 12px;
    line-height: 16.39px;
}

.team-page-slider .team-item-name {
    margin-bottom: 20px;
}

.team-page-slider .s0cial a {
    width: 36px;
    height: 36px;
}

.team-page-slider .s0cial a img,
.team-page-slider .s0cial a svg,
.team-sect .s0cial a img,
.team-sect .s0cial a svg {
    max-width: 15px;
    max-height: 15px;
}

.team-page-slider .section-arrows {
    margin-top: 30px;
}

.single-tech-main-sect {
    padding-top: calc(var(--header-height) + 150px);
}

.single-tech-main {
    display: grid;
    grid-template-columns: 49% 43%;
    gap: 8%;
    align-items: center;
}

.single-tech-main-left p {
    margin-top: 35px;
    font-size: 20px;
    line-height: 30px;
}

.single-tech-main-left .gradient-btn {
    margin-top: 25px;
}

.single-tech-main-right {
    position: relative;
}

.single-tech-main-right::after {
    content: url('../img/single-tech-main-bg.png');
    position: absolute;
    top: -55%;
    left: -40%;
    z-index: -1;
}

.section-title.section-title-big {
    margin-bottom: 50px;
}

.section-title.section-title-big span {
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.what-you-get-grid.what-you-get-grid-desk>div:first-child {
    border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 0;
}

.what-you-get-grid.what-you-get-grid-desk>div:first-child>div {
    padding: 30px 25px 25px 25px;
}

.what-you-get-grid.what-you-get-grid-desk>div,
.what-you-get-grid.swiper .swiper-slide {
    background: #1E1E1E66;
    border-radius: 12px;
    padding: 30px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 391px;
    position: relative;
}

.what-you-get-grid.what-you-get-grid-desk span,
.what-you-get-grid.swiper .swiper-slide span {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    letter-spacing: -0.02em;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
    /* background-size: 40% 100%; */
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: fit-content;
}

.what-you-get-grid.what-you-get-grid-desk>div:first-child span {
    margin-bottom: 45px;
}

.what-you-get-grid form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.what-you-get-grid form input {
    background: #1E1E1E;
    border-radius: 8px;
    padding: 20px;
}

.what-you-get-grid form input::placeholder {
    color: #D9D9D9;
}

.what-you-get-grid form .gradient-btn {
    margin-top: 6px;
}

.what-you-get-grid form button {
    display: block;
    width: 100%;
}

.what-you-get-grid .what-you-get-grid-item-purple span,
.what-you-get-grid.swiper .swiper-slide.what-you-get-grid-item-purple span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 52px;
    margin-bottom: 0;
}

.what-you-get-grid>div.what-you-get-grid-item-purple {
    justify-content: flex-start;
    gap: 20px;
}

.what-you-get-grid>div.what-you-get-grid-item-purple+div>span {
    margin-bottom: 25px;
}

.what-you-get-grid>div.what-you-get-grid-item-green span {
    display: flex;
    align-items: center;
}

.what-you-get-grid>div.what-you-get-grid-item-green span img {
    flex-shrink: 0;
}

.what-you-get-grid>div p {
    font-size: 16px;
    line-height: 24px;
    color: #D9D9D9;
    position: absolute;
    top: 250px;
    left: 25px;
    right: 25px;
}

.what-you-get-grid>div.what-you-get-grid-item-purple p {
    margin-top: 0;
}

.what-you-get-grid-form-thank {
    background: url('../img/what-you-get-grid-form-thank-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    display: none;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.what-you-get-grid-form-thank::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: url('../img/noise-bg-large.png') 0% 0% / 65px 65px repeat !important;
    mix-blend-mode: overlay !important;
    pointer-events: none;
    filter: brightness(0.1);
}

.what-you-get-grid-form-thank-txt span {
    margin-bottom: 25px !important;
}

.what-you-get-grid-form-thank-txt {
    margin-bottom: 90px;
    position: relative;
    z-index: 10;
}

.what-you-get-grid-form-thank p {
    position: static !important;
    top: 0 !important;
    left: 0 !important;
}

.what-you-get-grid-form-thank button {
    display: block;
    width: 100%;
    position: relative;
    z-index: 10;
}

.audit-banner-sect {
    position: relative;
    z-index: 2;
    isolation: isolate;
}

.audit-banner-wrapper {
    border-radius: 24px;
    border: 1px solid transparent;
    border-radius: 24px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    overflow: hidden;
}

.audit-banner {
    display: grid;
    grid-template-columns: 37% 58%;
    gap: 5%;
    align-items: center;
    background: #0E0E0E;
    position: relative;
}

.audit-banner::after {
    content: url('../img/audit-banner-bg.png');
    position: absolute;
    top: 0;
    left: 0;
}

.audit-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('../img/noise-bg-large.png') 0% 0% / 65px 65px repeat;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.audit-banner-left {
    padding: 25px 50px;
    position: relative;
    z-index: 2;
}

.audit-banner-left .section-title {
    margin-bottom: 30px;
}

.audit-banner-left .section-title span {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
}

.audit-banner-left .gradient-btn {
    margin-top: 30px;
}

.audit-banner-right {
    position: relative;
    height: 100%;
}

.audit-banner-right img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.faq-right.faq-wrapper .faq-item:first-child {
    padding-top: 0;
}

.faq-item {
    border-bottom: 2px solid #383838;
    padding: 20px 0;
}

.tab-btn-dwn,
.faq-tab-btn {
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
    position: relative;
    cursor: pointer;
    padding-right: 40px;
}

.tab-btn-dwn::after,
.faq-tab-btn::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='30' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='3' d='M0 15.5h29M15 .5v29'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
    top: 0;
}

.tab-btn-dwn.tab-btn-up,
.faq-tab-btn.tab-btn-up {
    font-size: 28px !important;
    line-height: 42px !important;
}

.tab-btn-dwn.tab-btn-up::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='4' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='3' d='M0 2h29'/%3E%3C/svg%3E");
    top: -13px;
}

.tab-content {
    display: none;
    margin-top: 15px;
    font-size: 16px;
    line-height: 21.86px;
    color: #D9D9D9;
}

.single-subservice-main-sect {
    padding-top: calc(var(--header-height) + 40px);
    position: relative;
}

.single-subservice-main {
    display: grid;
    grid-template-columns: 65% 32%;
    gap: 2%;
    align-items: center;
}

.single-subservice-main-left {
    min-width: 0;
}

.single-subservice-main-left>p {
    margin-top: 40px;
    font-size: 20px;
    line-height: 30px;
    color: #D9D9D9;
}

.single-subservice-main-left .gradient-btn {
    margin-top: 0;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
}

.single-subservice-main-left .hero-actions-row {
    justify-content: flex-start;
}

.hero-google-rating {
    height: 50px;
    width: auto;
}

.single-subservice-main-meta {
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #D9D9D9;
}

.single-subservice-main-meta span {
    display: block;
    margin-bottom: 5px;
}

.single-subservice-main-meta p {
    font-size: 24px;
    line-height: 32.78px;
}

.single-subservice-main-right::before {
    content: url('../img/single-subservice-main-bg-1.png');
    position: absolute;
    top: 0;
    right: 10%;
    z-index: -1;
    opacity: 0;
}

.animate .single-subservice-main-right::before {
    animation: changeOpacity 1s 1s forwards;
}

.single-subservice-main-right::after {
    content: url('../img/single-subservice-main-bg-2.png');
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
}

.animate .single-subservice-main-right::after {
    animation: changeOpacity 1s 1s forwards;
}

.single-subservice-main-right {
    position: relative;
}

.single-subservice-main-right img {
    position: relative;
}

/* Single service page – stacking context for gradient */
.single-service-page main {
    position: relative;
    z-index: 0;
}

/* Single service page – text overflow fix */
.single-service-page .single-subservice-main-left > p {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Single service page – constrain hero image */
.single-service-page .single-subservice-main-right img {
    max-width: 519px;
    width: 100%;
    height: auto;
    position: relative;
    left: auto;
    transform: none;
}

/* SVG gradient background – positioned inside main */
.hero-svg-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 1020px;
    height: 942px;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    animation: changeOpacity 1s 1s forwards;
}

.hero-svg-background svg {
    width: 100%;
    height: 100%;
}

/* Header gradient (mobile only) */
.hero-svg-header-gradient {
    display: none;
}

/* Hide default PNG backgrounds when SVG gradient is used */
.single-service-page .single-subservice-main-right::before,
.single-service-page .single-subservice-main-right::after {
    display: none !important;
}

/* Horizontal hero image layout */
.single-subservice-main.horizontal-image {
    grid-template-columns: 42% 56%;
}

.single-subservice-main.horizontal-image .single-subservice-main-right img {
    max-width: 750px;
    height: 100%;
    object-fit: contain;
}

.work-stages-sect {
    counter-reset: work-stages-counter;
    position: relative;
    z-index: 2;
}

.work-stages-sect::after {
    content: url('../img/work-stages-bg.png');
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.work-stages-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.work-stages-btns li {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    letter-spacing: -0.02em;
    background-color: #949494;
    background-size: 30% 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    counter-increment: work-stages-counter;
}

.work-stages-btns li._active {
    background-color: #fff;
    width: fit-content;
}

.work-stages-btns li::before {
    content: counter(work-stages-counter, decimal-leading-zero);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 5px;
    background: #262626;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-text-fill-color: #999999;
}

.work-stages-btns li._active::before {
    -webkit-text-fill-color: #000;
    background: #fff;
}

.work-stages-right .faq-item {
    padding: 40px !important;
    border: none;
    background: #1E1E1E66;
    border-radius: 20px;
}

.work-stages-right .faq-right.faq-wrapper {
    /* display: none; */
    display: flex;
    opacity: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    flex-direction: column;
    gap: 30px;
    transition: opacity .3s ease-in-out;
}

.work-stages-right .faq-right.faq-wrapper.ark-tab-content._current {
    display: flex;
    opacity: 1;
    width: 100%;
    height: auto;
    visibility: visible;
}

.work-stages-right .tab-content {
    margin-top: 85px;
}

.work-stages-item-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

.work-stages-item-content-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work-stages-item-content-wrapper li img {
    border-radius: 15px;
    display: block;
    width: 100%;
    padding-bottom: 10px;
    background: transparent !important;
    background-color: transparent !important;
}

.work-stages-item-content-wrapper li span {
    display: block;
    margin-bottom: 10px;
}

.work-stages-item-content-wrapper .ark-content-block {
    grid-column: 1 / -1;
}

/* Двоколонковий макет для work stages з двома редакторами */
.work-stages-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    grid-column: 1 / -1;
}

.work-stages-column {
    display: flex;
    flex-direction: column;
}

.work-stages-column-left,
.work-stages-column-right {
    width: 100%;
}

.work-stages-two-columns .ark-content-block {
    grid-column: auto;
}

.work-stages-two-columns img,
.work-stages-column img,
.work-stages-two-columns .ark-content-block img,
.work-stages-column .ark-content-block img,
.work-stages-two-columns .ark-content-block p img,
.work-stages-column .ark-content-block p img {
    background: transparent !important;
    background-color: transparent !important;
}

.work-stages-item-content-wrapper img,
.work-stages-item-content-wrapper .ark-content-block img,
.work-stages-item-content-wrapper .ark-content-block p img {
    background: transparent !important;
    background-color: transparent !important;
}

/* Стилі для зображень з редактора - прозорий фон */
img.ark-editor-img {
    background: transparent !important;
    background-color: transparent !important;
}

.ark-content-block img.ark-editor-img,
.work-stages-item-content-wrapper img.ark-editor-img,
.work-stages-two-columns img.ark-editor-img,
.work-stages-column img.ark-editor-img {
    background: transparent !important;
    background-color: transparent !important;
}

p img.ark-editor-img {
    background: transparent !important;
    background-color: transparent !important;
}

/* Стилі для класів вирівнювання Quill Editor */
.ark-content-block .ql-align-center,
.ark-content-block p.ql-align-center,
.ark-content-block div.ql-align-center,
.ark-content-block h1.ql-align-center,
.ark-content-block h2.ql-align-center,
.ark-content-block h3.ql-align-center,
.ark-content-block h4.ql-align-center,
.ark-content-block h5.ql-align-center,
.ark-content-block h6.ql-align-center {
    text-align: center;
}

.ark-content-block .ql-align-right,
.ark-content-block p.ql-align-right,
.ark-content-block div.ql-align-right,
.ark-content-block h1.ql-align-right,
.ark-content-block h2.ql-align-right,
.ark-content-block h3.ql-align-right,
.ark-content-block h4.ql-align-right,
.ark-content-block h5.ql-align-right,
.ark-content-block h6.ql-align-right {
    text-align: right;
}

.ark-content-block .ql-align-justify,
.ark-content-block p.ql-align-justify,
.ark-content-block div.ql-align-justify,
.ark-content-block h1.ql-align-justify,
.ark-content-block h2.ql-align-justify,
.ark-content-block h3.ql-align-justify,
.ark-content-block h4.ql-align-justify,
.ark-content-block h5.ql-align-justify,
.ark-content-block h6.ql-align-justify {
    text-align: justify;
}

.ark-content-block .ql-align-left,
.ark-content-block p.ql-align-left,
.ark-content-block div.ql-align-left,
.ark-content-block h1.ql-align-left,
.ark-content-block h2.ql-align-left,
.ark-content-block h3.ql-align-left,
.ark-content-block h4.ql-align-left,
.ark-content-block h5.ql-align-left,
.ark-content-block h6.ql-align-left {
    text-align: left;
}

.blog-main-column-sect {
    padding-bottom: 60px;
}

/* Blog page gradient on body - static at top, full viewport width */
body.blog-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    aspect-ratio: 1920 / 900;
    background-image: url('../img/blog-blur.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 calc(100% - 60px), transparent 100%);
}

.blog-main-column-sect .page-main-column {
    max-width: 480px;
}

.blog-main-tags-wrap {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.blog-main-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-main-tags li {
    position: relative;
    overflow: hidden;
    border-radius: 1000px;
    border: 0.6px solid #FFFFFF;
}

.blog-main-tags li.current {
    border: 0.6px solid transparent;
}

.blog-main-tags li a,
.blog-main-tags li button {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #D9D9D9;
    display: inline-block;
    padding: 10px 15px;
    position: relative;
    z-index: 1;
}

.blog-main-tags li::after,
.blog-main-tags li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(266.02deg, #4CFFCB -14.97%, #35B2FF 35.19%, #7846FF 114.09%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    border: none;
    padding: 10px 16px;
    transition: all .27s ease-in-out;
}

.blog-main-tags li.current::after,
.blog-main-tags li.current::after {
    opacity: 1;
}

.blog-page-list-sect {
    padding-bottom: 140px;
    position: relative;
    z-index: 2;
}

.blog-page-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px 15px;
}

.blog-page-list a {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-page-list a i {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #D9D9D9;
    background: #1A1D20;
    border-radius: 1000px;
    padding: 10px;
    font-style: normal;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.blog-page-list a img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-page-list-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #9A9A9A;
}

.blog-page-list a p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.blog-page-list a > span,
.cases-page-list-item-readmore {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    width: max-content;
    padding-bottom: 8px;
    background: transparent;
    transition: all .3s ease-in-out;
}

.blog-page-list a:hover > span,
.cases-page-list-wrapper a:hover .cases-page-list-item-readmore {
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-page-list a > span::after {
    content: '';
    display: block;
    width: 94%;
    border-bottom: 1px solid #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 0;
    background: transparent;
}

.blog-page-list a:hover > span::after {
    width: 100%;
}

.blog-page-list a:hover > span::after,
.cases-page-list-wrapper a:hover .cases-page-list-item-readmore::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%);
    border: none;
}

.cases-page-list-wrapper a:hover .cases-page-list-item-readmore::after {
    width: 100%;
}

.blog-page-list a:hover .blog-readmore-svg,
.cases-page-list-wrapper a:hover .blog-readmore-svg {
    display: none;
}

.blog-readmore-svg-hover {
    opacity: 0;
    width: 0;
}

.blog-page-list a:hover .blog-readmore-svg-hover,
.cases-page-list-wrapper a:hover .blog-readmore-svg-hover {
    opacity: 1;
    width: auto;
}

.blog-list-consult {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.blog-list-consult>div {
    padding: 25px;

}

.blog-list-consult img {
    display: block;
    margin: 0 auto;
    margin-bottom: 25px;
}

.blog-list-consult span {
    font-size: 20px;
    line-height: 24px;
    display: block;
    margin-bottom: 20px;
}

.blog-list-consult p {
    line-height: 19.12px;
    color: #C2C1C1;
    margin-bottom: 25px;
}

.blog-list-consult .gradient-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.blog-list-consult .gradient-btn button {
    font-size: 16px;
    font-weight: 400;
    padding: 10px 35px;
    flex-shrink: 0;
}

.gradient-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #FFFFFF;
    border-radius: 100%;
    padding: 0 !important;
}

.tp-pagination {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.tp-pagination .gradient-btn {
    min-width: 245px;
}

.tp-pagination .gradient-btn button {
    display: block;
    width: 100%;
}

.tp-pagination .wp-pagenavi {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tp-pagination .wp-pagenavi a,
.tp-pagination .wp-pagenavi span {
    font-size: 18px;
    line-height: 20px;
    color: #D9D9D9;
    width: 60px;
    height: 60px;
    border: 1px solid #383838;
    border-radius: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-pagination .wp-pagenavi .prev,
.tp-pagination .wp-pagenavi .prev-no-active,
.tp-pagination .wp-pagenavi .next,
.tp-pagination .wp-pagenavi .next-no-active,
.tp-pagination .wp-pagenavi .extend {
    border: none;
}

.tp-pagination .wp-pagenavi .extend {
    width: auto;
    align-items: flex-end;
}

.wp-pagenavi span.current {
    color: #FFFFFF;
    background: #1A1D20;
    border: 1px solid #1A1D20;
}

.contacts-main-column-sect {
    padding-bottom: 85px;
}

.contacts-city-list-item {
    display: grid;
    grid-template-columns: 24% 76%;
    position: relative;
    border: 0.6px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 16px;
    overflow: hidden;
}

.contacts-city-list-item-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
}

/* Background SVG for contact blocks */
.contacts-city-list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/contact-block.svg') no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}

/* Noise overlay for contact blocks */
.contacts-city-list-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/noise-bg-large.png');
    background-repeat: repeat;
    background-size: 65px 65px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0.1);
}

.contacts-city-list-item>span {
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
    letter-spacing: -0.02em;
    padding: 40px;
    position: relative;
    z-index: 9;
}

.contacts-city-list-item-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
    position: relative;
    z-index: 9;
}

.contacts-city-list-item-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contacts-city-list-item-info span {
    color: #6E7175;
}

.contacts-city-list-item-info p {
    font-size: 16px;
    line-height: 21.86px;
}

.contacts-city-list-item-img {
    position: relative;
    z-index: 9;
}

.contacts-city-list-item-img img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.contacts-list-s0cial {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    align-items: center;
    gap: 8px;
}

.contacts-list-s0cial div {
    height: 100%;
    background: #1E1E1E;
    border-radius: 8px;
    line-height: 15.4px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
    transition: all .3s ease-in-out;
}

.contacts-list-s0cial div:first-child {
    padding: 15px;
}

.contacts-list-s0cial div a {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
    padding: 15px;
    width: 100%;
}

.contacts-list-s0cial div:not(.contacts-list-s0cial div:first-child):hover {
    background: #FFFFFF;
}

.contacts-list-s0cial div:not(.contacts-list-s0cial div:first-child):hover a {
    color: #010101;
}

.contacts-city-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.single-case-main-sect {
    padding-top: calc(var(--header-height) + 105px);
    padding-bottom: 65px;
    position: relative;
}

.single-case-main-sect::after {
    content: url('../img/single-case-main-bg.png');
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.single-case-main {
    display: grid;
    grid-template-columns: 50% 44%;
    gap: 6%;
}

.page-title-h1-64 {
    font-size: 64px;
    font-weight: 600;
    line-height: 70.4px;
}

.single-case-main-left p {
    margin-top: 45px;
    font-size: 20px;
    line-height: 30px;
    color: #D9D9D9;
}

.single-case-main-left .gradient-btn {
    margin-top: 30px;
}

.single-case-main-right img {
    position: relative;
    z-index: 2;
}

.single-case-thumb-slider-sect {
    position: relative;
}

.single-case-thumb-slider-sect>img {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    z-index: -1;
}

.single-case-main-sect>img {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    z-index: -1;
}

.single-case-thumb-slider-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 13% 86%;
    gap: 1%;
}

.single-case-thumb-slider-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.single-case-thumb-slider-tags li {
    padding: 4px 14px;
    border: 1px solid #FFFFFF33;
    border-radius: 800px;
    display: inline-block;
}

.single-case-thumb-slider-wrapper>div {
    width: 100%;
}

.single-case-thumb-slider-wrapper .single-case-gallery-nav .swiper-slide {
    overflow: hidden;
    border-radius: 13px;
    cursor: pointer;
}

.single-case-thumb-slider-wrapper .single-case-gallery-nav .swiper-slide:not(.swiper-slide-thumb-active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: #00000040;
    width: 100%;
    height: 100%;
}

.single-case-thumb-slider-wrapper .single-case-gallery-for {
    overflow: hidden;
    border-radius: 20px;
    min-height: 0;
    align-self: stretch;
}

.single-case-thumb-slider-wrapper .single-case-gallery-for .swiper-slide {
    overflow: hidden;
    border-radius: 20px;
}

.single-case-thumb-slider-wrapper .single-case-gallery-for .swiper-slide img {
    height: 100%;
    object-fit: cover;
}

.single-case-thumb-slider-wrapper img {
    display: block;
    width: 100%;
}

.single-case-gallery-nav .swiper-slide {
    height: max-content !important;
}

.txt-block-2-col-sect {
    padding-bottom: 100px;
}

.txt-block-2-col-right {
    display: grid;
    grid-template-columns: 340px 204px 340px;
    gap: 17px;
}

.txt-block-2-col-right div {
    background: #1E1E1E66;
    backdrop-filter: blur(80px);
    padding: 36px 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.txt-block-2-col-right div p {
    overflow: hidden;
    color: #D9D9D9;
    text-overflow: ellipsis;
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: nowrap;
    margin: 0;
}

.txt-block-2-col-right div p a {
    text-decoration: underline;
}

.txt-block-2-col-right div p.case-about-label {
    font-size: 14px;
    overflow: visible;
    white-space: normal;
}

.txt-block-right .ark-content-block {
    max-width: 919px;
}

.txt-block-sect:not(:nth-last-child(1 of .txt-block-sect)) {
    padding-bottom: 20px;
}

.single-case-page .txt-block-sect.txt-block-sect-left-bg {
    margin-bottom: -100px;
}

.txt-block-sect.txt-block-sect-right-bg,
.txt-block-sect.txt-block-sect-left-bg {
    position: relative;
}

.txt-block-sect.txt-block-sect-right-bg::after {
    content: url('../img/txt-block-sect-right-bg.png');
    position: absolute;
    top: -250%;
    right: 0;
    z-index: -1;
}

.txt-block-sect.txt-block-sect-left-bg::after {
    content: url('../img/txt-block-sect-left-bg.png');
    position: absolute;
    top: -65%;
    left: 0;
    z-index: -1;
}

.txt-block-right .ark-content-block {
    padding: 45px 170px 45px 45px;
    backdrop-filter: blur(80px);
    border-radius: 20px;
    background: #1E1E1E66;
    font-size: 18px;
    line-height: 27px;
    color: #D9D9D9;
}

.txt-block-right-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3%;
    margin-top: 20px;
}

.txt-block-right-img img {
    border-radius: 16px;
    display: block;
    width: 100%;
}

.single-service-main-right::before {
    content: url('../img/single-service-main-bg-1.png');
}

.single-service-main-right::after {
    content: url('../img/single-service-main-bg-2.png');
}

.technologies-main-column-sect .page-main-column {
    max-width: 700px;
}

.services-offer-sect-with-bg {
    position: relative;
}

:nth-last-child(3 of .services-offer-sect-with-bg)::after {
    content: url('../img/services-offer-sect-with-bg-1.png');
    position: absolute;
    top: -10%;
    left: 0;
    z-index: -1;
}

:nth-last-child(2 of .services-offer-sect-with-bg)::after {
    content: url('../img/services-offer-sect-with-bg-2.png');
    position: absolute;
    top: -25%;
    right: 0;
    z-index: -1;
}

:nth-last-child(1 of .services-offer-sect-with-bg)::after {
    content: '';
    background: url('../img/services-offer-sect-with-bg-3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 10%;
    right: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
}

:nth-last-child(1 of .services-offer-sect-with-bg) {
    padding-bottom: 100px;
}

.single-industry-main-sect {
    padding-top: calc(var(--header-height) + 110px);
    padding-bottom: 70px;
    position: relative;
}

.single-industry-main-sect::after {
    content: '';
    background: url('../img/single-industry-main-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
}

.single-industry-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2%;
}

.single-industry-main-left p {
    font-size: 20px;
    line-height: 30px;
    color: #D9D9D9;
    margin-top: 35px;
}

.single-industry-main-left .gradient-btn {
    margin-top: 20px;
}

.single-industry-main-right img {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.two-columns-txt .section-title span {
    font-size: 54px;
    font-weight: 600;
    line-height: 64.8px;
}

.two-columns-txt-wrapper .ark-content-block {
    font-size: 18px;
    line-height: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 2%;
}

.cases-main-column-sect .page-main-column {
    max-width: 570px;
}

.cases-page-list-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
}

.cases-filter-dropdown {
    margin-right: 0;
    z-index: 10;
}

.cases-filter-dropdown .dropdown-current {
    display: flex;
    align-items: center;
    text-transform: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.02em;
    width: max-content;
    padding: 7px 23px;
    border: none;
    box-shadow: inset 0 0 0 1px #FFFFFF;
    border-radius: 1000px;
    transition: all .3s ease-in-out;
}

.cases-filter-dropdown .dropdown-current::after {
    position: static;
    margin: 0;
    margin-left: 12px;
    height: 10px;
    transform: rotate(0deg);
}

.cases-filter-dropdown .dropdown-current.click::after {
    transform: rotate(180deg);
}

.cases-filter-dropdown .dropdown-current.click,
.cases-filter-dropdown .dropdown-current:hover {
    background-image: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%);
    box-shadow: none;
}

.cases-filter-dropdown .dropdown-list {
    top: calc(100% + 8px);
    left: 0;
    min-width: 100%;
}

.cases-filter-dropdown .dropdown-item {
    text-transform: none;
    font-weight: 400;
    font-size: 16px;
    white-space: nowrap;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #fff;
}

.cases-filter-dropdown .dropdown-item:first-child {
    padding-top: 16px;
}

.cases-filter-dropdown .dropdown-item:last-child {
    padding-bottom: 16px;
}

.cases-filter-dropdown .dropdown-item::before,
.cases-filter-dropdown .dropdown-item::after {
    display: none;
}

.cases-filter-dropdown .dropdown-item:hover {
    background: linear-gradient(266.02deg, #4CFFCB 3.25%, #35B2FF 47.25%, #7846FF 96.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cases-page-list-wrapper a,
.cases-page-list-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.cases-page-list-wrapper a img {
    border-radius: 20px;
    display: block;
    width: 100%;
    height: 436px;
    object-fit: cover;
}

.cases-page-list-item-tags {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
}

.cases-page-list-item-tags li {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: center;
    padding: 10px 15px;
    color: #D9D9D9;
    background: #1A1D20;
    border-radius: 1000px;
}

.cases-page-list-item-meta {
    font-weight: 500;
    color: #7D7B82;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cases-page-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px 15px;
}

.cases-page-list-wrapper a p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.cases-page-list-item-readmore {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: max-content;
    padding-bottom: 8px;
}

.cases-page-list-item-readmore::after {
    content: '';
    display: block;
    width: 94%;
    border-bottom: 1px solid #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.cases-page-list-sect {
    position: relative;
    z-index: 3;
}

.cases-page-list-sect,
.cases-page .audit-banner-sect {
    padding-bottom: 100px;
}

.cases-page-list-sect~.cases-page-list-sect {
    padding-bottom: 200px;
}

.cases-page-list-sect:has(+ #cases-load-more-section) {
    padding-bottom: 20px;
}

.cases-page-list-sect:has(.tp-pagination) {
    padding-top: 42px;
    padding-bottom: 200px;
}

.single-blog-sect {
    padding-top: calc(var(--header-height) + 105px);
    position: relative;
}

.single-blog-sect::before {
    content: url('../img/single-blog-left-bg.png');
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.single-blog-sect::after {
    content: '';
    background: url('../img/single-blog-center-bg.png');
    background-repeat: repeat;
    background-size: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 2%;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.single-blog {
    display: grid;
    grid-template-columns: 24% 41% 24%;
    gap: 5.5%;
    position: relative;
    z-index: 2;
}

.single-blog-contents {
    padding: 25px;
    background: #1E1E1E66;
    border-radius: 20px;
    backdrop-filter: blur(80px)
}

.single-blog-contents .section-title {
    margin-bottom: 15px;
}

.single-blog-contents ol {
    padding-left: 15px;
    list-style: decimal;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.single-blog-contents ol a,
.single-blog-contents ol li {
    letter-spacing: -0.02em;
    color: #D9D9D999;
    line-height: 19px;
}

.single-blog-left,
.single-blog-right {
    margin-top: 45px;
}

.single-blog-center h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    margin-bottom: 25px;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.single-blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.single-blog-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #D9D9D9;
}

.single-blog-meta div::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1' height='14' fill='none'%3E%3Cpath fill='%23CED4DA' d='M0 0h1v14H0z'/%3E%3C/svg%3E");
    display: flex;
    margin-left: 5px;
}

.single-blog-meta div:last-child:after {
    display: none;
}

.single-blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
}

.single-blog-author-left img {
    border-radius: 100%;
    display: block;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.single-blog-author-right span {
    font-size: 18px;
    font-weight: 600;
    line-height: 24.59px;
    color: #D9D9D9;
}

.single-blog-content {
    color: #D9D9D9;
}

.single-blog-content p {
    color: #D9D9D9 !important;
}

.single-blog-content img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

.single-blog-content.ark-content-block :not(li, button, label, input, span, em, b, strong, i, a, svg, br, img) {
    margin-bottom: 25px;
}

.single-blog-content.ark-content-block> :last-child {
    margin-bottom: 0;
}

.single-blog-content.ark-content-block .single-blog-consult {
    border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 0;
    position: relative;
    margin: 60px 0 0 0;
    overflow: hidden;
}

.single-blog-consult::before {
    content: '';
    background: url('../img/single-blog-consult-bg-1.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.single-blog-consult::after {
    content: '';
    background: url('../img/single-blog-consult-bg-2.png');
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100%;
}

.single-blog-consult-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 9;
}

.single-blog-consult-wrapper span {
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
    letter-spacing: -0.04em;
    color: #fff;
}

.single-blog-consult-wrapper p {
    font-size: 16px;
    line-height: 21.86px;
    color: #D9D9D9;
}

.single-blog-consult-wrapper,
.single-blog-consult-wrapper p,
.single-blog-consult-wrapper span,
.single-blog-consult-wrapper .gradient-btn {
    margin-bottom: 0 !important;
}

.single-blog-content.ark-content-block h1,
.single-blog-content.ark-content-block h2,
.single-blog-content.ark-content-block h3,
.single-blog-content.ark-content-block h4,
.single-blog-content.ark-content-block h5,
.single-blog-content.ark-content-block h6 {
    margin-top: 55px;
    background-color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
    background-size: 40% 100%;
    background-position: 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.02em;
    display: inline-block;
}

.single-blog-related-sect {
    padding-bottom: 140px;
}

.single-blog-right span {
    letter-spacing: -0.02em;
    color: #D9D9D9;
    display: block;
    margin-bottom: 15px;
}

.page-404-sect {
    padding-top: calc(var(--header-height) + 100px);
    text-align: center;

}

.page-404 {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.page-404::before {
    content: url('../img/404-bg.png');
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.page-404 p {
    font-size: 20px;
    line-height: 30px;
    color: #D9D9D9;
    margin-bottom: 40px;
}

.page-404 a {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.btn-svg {
    border: 1px solid #FFFFFF;
    border-radius: 1000px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.ark-radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.button-label {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.02em;
    padding: 6px 14px;
    border: 1px solid #FFFFFF;
    border-radius: 1000px;
    color: #D9D9D9;
    transition: all 0.3s ease-in-out;
}

.button-label:hover {
    color: #D9D9D9;
    border-color: #D9D9D9;
}

.button-label:active {
    transform: translateY(2px);
}

.radio-label:checked+.button-label {
    background: linear-gradient(266.02deg, #009980 3.25%, #0066B2 47.25%, #4C00B2 96.75%);
    border: none;
}

.radio-label:checked+.button-label:hover {
    background: linear-gradient(266.02deg, #009980 3.25%, #0066B2 47.25%, #4C00B2 96.75%);
    border: none;
}

.ark-radio-hidden {
    display: none;
}

.discuss-project-form-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.discuss-project-form-inputs-grid input {
    display: block;
    padding: 19px;
    background: #383838;
    font-size: 14px;
    line-height: 16px;
    border-radius: 8px;
    width: 100%;
    border: 1px solid transparent;
}

.discuss-project-form-inputs-grid input:focus {
    border: 1px solid #FFFFFF;
}

.ark-overlay-discuss-project {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.75); */
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.ark-overlay-discuss-project .popup-discuss-project {
    position: fixed;
    width: 640px;
    z-index: 4;
    margin: 0;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.popup-content-discuss-project {
    background: url('../img/discuss-project-form-bg.png') #000;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 55px;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.popup-close-discuss-project {
    position: absolute;
    top: 37px;
    right: 37px;
    z-index: 99;
    cursor: pointer;
}

.form-in-popup-discuss-project>span {
    font-size: 32px;
    font-weight: 700;
    line-height: 35.2px;
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 15px;
}

.form-in-popup-discuss-project>p {
    font-size: 16px;
    line-height: 21.86px;
    color: #D9D9D9;
    margin-bottom: 25px;
}

#discuss-project-form .contact-form-file-upload-custom-btn {
    padding: 18px 0 35px 0;
}

#discuss-project-form .gradient-btn button {
    min-width: 265px;
}

#discuss-project-form>p {
    font-size: 12px;
    line-height: 16px;
    color: #D9D9D9;
    margin-top: 18px;
}

.no-scroll {
    /* overflow: hidden; - Застосовується через JavaScript для уникнення стрибка контенту */
}

.no-scroll::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 10000vh;
    background: rgba(0, 0, 0, 0.77);
    z-index: 999;
}

.form-in-popup-discuss-project-thank {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    min-height: 550px;
}

.form-in-popup-discuss-project-thank-txt {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-in-popup-discuss-project-thank-txt span {
    font-size: 36px;
    font-weight: 600;
    line-height: 43.2px;
    letter-spacing: -0.02em;
}

.form-in-popup-discuss-project-thank-txt p {
    font-size: 16px;
    line-height: 21.86px;
    color: #D9D9D9;
}

.mf-cursor {
    z-index: 9999999;
}

.mf-cursor::before {
    background: #FFFFFF33;
    transform: scale(.5);
}

.mf-cursor.-pointer::before {
    background: #FFFFFF33;
    transform: scale(1);
}

.contact-form-right-thank {
    background: url('../img/contact-form-thank-bg.png') #1E1E1E;
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    padding: 50px;
    min-height: 470px;
    height: 100%;
}

.contact-form-right-thank,
.contact-form-right-thank-txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.contact-form-right-thank {
    display: none;
}

.contact-form-right-thank-txt span {
    font-size: 48px;
    font-weight: 600;
    line-height: 62.4px;
    letter-spacing: -0.02em;
}

.contact-form-right-thank-txt p {
    font-size: 16px;
    line-height: 21.86px;
    color: #D9D9D9;
}

.contact-form-right-thank button,
.form-in-popup-discuss-project-thank button,
.what-you-get-grid-form-thank button {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #010101;
    padding: 8px 16px;
    border-radius: 800px;
    background: #fff;
    padding: 20px;
}

.ark-animated-text {
    overflow: hidden;
    opacity: 0 !important;
}

.ark-animated-text.animated {
    opacity: 1 !important;
}

.ark-animated-text i {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.5s, transform 0.5s;
    padding: 5px;
    font-style: normal;
}


.animate {
    animation-name: fadeInFromLeft;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

img.animate {
    opacity: 1 !important;
    animation: scale-up-hor-center 1s linear 1s both;
}

.page-404 img,
.page-404,
.header-left img,
.ark-breadcrumbs-wrapper,
.page-main-column-bg,
.single-case-thumb-slider-sect>img,
.single-case-main-sect>img,
.section-arrows img,
.our-tech img,
.tel-menu-top-wrapper img,
.footer-bottom-left img,
.page-main-column-bg-mob-1,
.page-main-column-bg-mob-2,
.geography-right img,
.s0cial img,
.audit-banner-right img {
    animation: none !important;
    opacity: 1 !important;
}

.footer-bottom-left .opacity-img {
    opacity: .4 !important;
}

.sl-image img {
    border-radius: 15px;
}

.tel-menu-btn {
    display: none;
}

.tel-menu {
    width: 90vw;
    height: 90vh;
    position: relative;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 999;
    overflow: hidden;
    transform: translate(-50%, -100%);
    transition: all 0.7s ease;
    background: #000000;
    border: 1px solid transparent;
    border-radius: 10px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: content-box, border-box;
    margin-right: -50%;
    opacity: 0;
}

.tel-menu::after,
.tel-menu-center-wrapper .menu-item-has-children ul.sub-menu::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../img/tel-menu-bg.png') #000;
    background-size: 100% 100%;
    z-index: -1;
}

.showNav {
    transform: translateX(0);
    top: 0;
    opacity: 1;
    z-index: 99999;
    max-height: 675px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.tel-menu-wrapper {
    overflow: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 30px;
}

.tel-menu-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tel-menu-center-wrapper>ul>.menu-item-has-children>ul.sub-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: transform .7s ease-in-out;
    transform: translateX(-100%);
    padding: 30px;
}

.tel-menu-center-wrapper .menu-item-has-children ul.sub-menu.open-sub {
    transform: translateX(0%);
    transition: transform .7s ease-in-out;
}

.tel-menu-center-wrapper .menu-item-has-children>ul.sub-menu>li>ul {
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-height: 0;
}

.tel-menu-center-wrapper .menu-item-has-children ul.sub-menu>li>ul {
    gap: 12px;
}

.tel-menu-center-wrapper .menu-item-has-children ul.sub-menu>li>ul.show-sub {
    padding-bottom: 15px;
}

.tel-menu-center-wrapper .menu-item-has-children ul.sub-menu>li>ul li {
    border: none;
}

.tel-menu-center-wrapper .menu-item-has-children ul.sub-menu>li>ul a {
    padding: 0;
    font-family: Graphik LCG;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.tel-menu-center-wrapper .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tel-menu-center-wrapper .menu-item-has-children>a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' d='M15.5 1.322 8 8.822l-7.5-7.5'/%3E%3C/svg%3E");
    /* margin-left: 15px;
    transition: all 0.5s ease-in-out; */
    margin-left: 0;
    flex-shrink: 0;
    transition: transform .5s ease-in-out;
}

/* .tel-menu-center-wrapper .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
} */

.tel-menu-center-wrapper .hovered::after {
    transform: rotate(180deg);
}

.tel-menu-center-wrapper li {
    list-style: none;
    display: block;
    color: #fff;
    cursor: pointer;
}

.tel-menu-center-wrapper ul {
    margin: 0;
    padding: 0;
}

.tel-menu-center-wrapper li.menu-back-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none !important;
    margin-bottom: 20px;
}

.tel-menu-center-wrapper li.menu-back {
    color: #999;
}

.tel-menu-center-wrapper a#close-menu {
    color: #999;
}

.tel-menu-center-wrapper button:not(.tel-menu-close) {
    border: 0;
    border-radius: 3px;
    background: #333;
    padding: 10px 30px;
    color: #fff;
    appearance: none;
    -webkit-appearance: none;
}

.tel-menu-bottom {
    margin-top: 50px;
}

.tel-menu-bottom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tel-menu-bottom-wrapper .header-tel a {
    font-size: 18px;
}

.tel-menu-bottom-wrapper .header-tel span {
    display: block;
}

.tel-menu-bottom-wrapper .header-tel a::after {
    display: none;
}

.tel-menu-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tel-menu-center ul li a {
    font-family: 'Graphik LCG';
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.tel-menu-center ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tel-menu-center-wrapper>ul>.menu-item-has-children>ul.sub-menu {
    gap: 0;
}

.tel-menu-center-wrapper>ul>.menu-item-has-children>ul.sub-menu>li>a {
    padding: 15px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.tel-menu-center-wrapper>ul>.menu-item-has-children>ul.sub-menu>li {
    border-bottom: 1px solid #FFFFFF33;
}

.tel-menu-center-wrapper>ul>.menu-item-has-children>ul.sub-menu>li>ul {
    gap: 0;
}

/* Слайдерне меню послуг для мобільної версії */
.tel-menu-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.tel-menu-slides-container {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.tel-menu-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: transparent;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.tel-menu-slide.active {
    transform: translateX(0);
}

.tel-menu-slide.slide-out-left {
    transform: translateX(-100%);
}

.tel-menu-slide-header {
    margin-bottom: 25px;
}

.tel-menu-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: #999;
    font-family: 'Graphik LCG';
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
}

.tel-menu-back-btn svg {
    width: 20px;
    height: 20px;
}

.tel-menu-back-btn svg path {
    stroke: #999;
}

.tel-menu-category-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFFFFF33;
}

.tel-menu-category-title a {
    font-family: 'Graphik LCG';
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: #fff;
    text-decoration: none;
}

.tel-menu-services-btn,
.tel-menu-category-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Graphik LCG';
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.tel-menu-services-btn svg,
.tel-menu-category-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tel-menu-slide ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tel-menu-slide ul li a {
    font-family: 'Graphik LCG';
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #fff;
    text-decoration: none;
}

.tel-menu-slide-services ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

/* Dropdown меню в слайдері */
.tel-menu-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tel-menu-dropdown-header a {
    flex: 1;
}

.tel-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.tel-menu-dropdown-toggle svg {
    width: 20px;
    height: 20px;
}

.menu-item-has-children.open .tel-menu-dropdown-toggle {
    transform: rotate(180deg);
}

.tel-menu-slide .menu-item-has-children .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding-left: 20px;
    margin-top: 0;
}

.tel-menu-slide .menu-item-has-children.open .sub-menu {
    max-height: 500px;
    margin-top: 15px;
}

.tel-menu-slide .menu-item-has-children .sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ccc;
}

.tel-menu-slide .menu-item-has-children .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding-left: 15px;
    gap: 15px !important;
}

.tel-menu-slide .menu-item-has-children.open .sub-menu {
    max-height: 500px;
    margin-top: 15px;
}

.tel-menu-slide .menu-item-has-children .sub-menu li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #ccc;
}

.reviews-left .section-arrows,
.blog-grid-list-mob,
.blog-grid .section-arrows,
.contact-form-title-mob,
.footer-bottom-right-mob,
.page-main-column-bg-mob-1,
.page-main-column-bg-mob-2,
.what-you-get-grid.swiper,
.work-stages-counter-mob,
.contacts-city-list .section-title {
    display: none;
}

@keyframes fadeInFromLeft {
    from {
        transform: translateX(-50px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes changeOpacity {
    to {
        opacity: 1;
    }
}



/* Ark Media */

@media (max-width: 1380px) {
    .container {
        max-width: 942px;
    }

    .half-container {
        width: calc(100vw - ((100vw - 942px) / 2));
    }

    .header-tel span {
        display: none;
    }

    .header-tel a {
        font-size: 0;
    }

    .header-tel a::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.549 15.168a1 1 0 0 1 .948-.087l5.895 2.642a1 1 0 0 1 .6 1.037A6.04 6.04 0 0 1 18 24 17 17 0 0 1 1 7a6.04 6.04 0 0 1 5.24-5.993 1 1 0 0 1 1.037.6l2.642 5.9a1 1 0 0 1-.083.942l-2.671 3.176a.99.99 0 0 0-.067.976c1.033 2.116 3.22 4.278 5.343 5.301a.99.99 0 0 0 .979-.073z'/%3E%3C/svg%3E");
        margin-top: -13px;
        display: block;
    }

    .header-right .white-btn button {
        padding: 10px;
        min-width: max-content;
    }

    .front-services-list {
        gap: 15px 10px;
    }

    .about-us-video-play {
        width: 340px;
        height: 340px;
    }

    .why-us-right-txt {
        font-size: 55px;
        line-height: 60.4px;
    }

    .grid-block {
        grid-template-columns: 20% 75%;
    }

    .contact-form {
        gap: 3%;
    }

    .contact-form-title span {
        font-size: 54px;
        line-height: 60.4px;
    }

    .page-title-h1 {
        font-size: 65px;
        line-height: 73px;
    }

    .what-you-get-grid .what-you-get-grid-item-green span,
    .what-you-get-grid.swiper .what-you-get-grid-item-green span {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 45px;
    }

    .what-you-get-grid.what-you-get-grid-desk>div,
    .what-you-get-grid.swiper .swiper-slide {
        min-height: 250px;
    }

    .what-you-get-grid>div p {
        top: 195px;
        left: 20px;
        right: 20px;
    }

    .what-you-get-grid.what-you-get-grid-desk>div:not(.what-you-get-grid-item-purple, .what-you-get-grid-item-green, .what-you-get-grid.what-you-get-grid-desk > div:first-child) span {
        margin-bottom: 115px;
    }

    .audit-banner {
        grid-template-columns: 50% 45%;
    }

    .single-subservice-main-right::before,
    .single-subservice-main-right::after {
        right: -5%;
    }

    .single-case-main {
        align-items: center;
    }

    .services-offer-right-with-icons a {
        grid-template-columns: 6% 75% 15%;
    }

    .contact-form-right form>p {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .single-service-page .single-subservice-main-right img {
        max-width: 450px;
    }

    .single-subservice-main.horizontal-image {
        grid-template-columns: 40% 58%;
    }

    .single-subservice-main.horizontal-image .single-subservice-main-right img {
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    body {
        cursor: default !important;
    }

    .mf-cursor {
        display: none !important;
    }

    button,
    a,
    .white-btn a,
    .white-btn button,
    .white-btn span,
    .dropdown-current,
    .dropdown-item,
    .gradient-btn button,
    .gradient-btn a,
    .gradient-btn span,
    .review-item-video-btn em,
    .review-item-pdf-btn em,
    .section-arrows span,
    .about-us-video-play,
    .contact-form-file-upload-custom-btn,
    .seo-readmore,
    .tab-btn-dwn,
    .work-stages-btns li,
    .single-case-thumb-slider-wrapper .single-case-gallery-nav .swiper-slide,
    .cases-filter-dropdown .dropdown-current,
    .button-label,
    .popup-close-discuss-project {
        cursor: pointer;
    }

    .container {
        max-width: 718px;
    }

    .half-container {
        width: calc(100vw - ((100vw - 718px) / 2));
    }

    .header-center ul,
    .header-right .white-btn {
        display: none;
    }

    .header-right .ark-dropdown {
        order: 1;
    }

    .header-right .header-tel {
        order: 2;
    }

    .tel-menu-btn {
        display: flex;
        order: 3;
    }

    .review-item-body-wrapper.has-overflow .review-item-body {
        max-height: 340px;
    }

    .review-item-body-wrapper.has-overflow.expanded .review-item-body {
        max-height: none;
    }

    .front-services-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .our-cases-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-video-play {
        width: 200px;
        height: 200px;
    }

    .about-us-video .section-title {
        position: absolute;
        top: 25px;
        left: 30px;
    }

    .why-us-right-txt {
        font-size: 45px;
        line-height: 50.4px;
    }

    .grid-block {
        display: flex;
        flex-direction: column;
    }

    .blog-grid-list-column a {
        padding-right: 20px;
    }

    .contact-form {
        display: flex;
        flex-direction: column-reverse;
    }

    .contact-form-title-mob {
        display: block;
        margin-bottom: 30px;
    }

    .contact-form-title-desk {
        display: none;
    }

    .contact-form-left {
        margin-top: 30px;
    }

    .footer-top {
        margin-bottom: 0;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px 30px;
        grid-auto-flow: row;
        grid-template-areas:
            "footer-top-menus-wrapper footer-top-menus-wrapper footer-top-3"
            "footer-contact-column footer-contact-column footer-contact-column";
    }

    .footer-top-menus-wrapper {
        grid-area: footer-top-menus-wrapper;
    }

    .footer-top-3 {
        grid-area: footer-top-3;
    }

    .footer-contact-column {
        grid-area: footer-contact-column;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .footer-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 60px;
    }

    .footer-bottom-right-mob {
        display: flex;
    }

    .footer-bottom-right-mob a,
    .footer-bottom-right-mob span {
        font-size: 12px;
        line-height: 24px;
    }

    .footer-bottom-right-desk {
        display: none;
    }

    .about-numbers-right span {
        font-size: 120px;
        line-height: 150px;
    }

    .about-numbers-right p {
        padding-right: 0;
    }

    .about-values-left .section-arrows,
    .team-left .section-arrows,
    .team-page-slider .section-title .section-arrows {
        display: flex;
    }

    .about-values-right .section-arrows,
    .team-slider-btns .section-arrows,
    .team-page-slider .swiper .section-arrows {
        display: none;
    }

    .about-values-left .section-title,
    .team-left .section-title,
    .team-page-slider .section-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 15px;
        gap: 20px;
    }

    .team-page-slider .section-title {
        padding-right: 0;
    }

    .team-page-slider .section-arrows {
        margin-top: 0;
    }

    .team-slider-btns {
        display: block;
    }

    .team-sect .gradient-btn {
        text-align: center;
    }

    .team-sect .gradient-btn a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .team-item-info {
        padding: 25px 25px 30px 25px;
    }

    .team-item-name {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .single-tech-main {
        display: flex;
        flex-direction: column;
        gap: 100px;
    }

    .single-tech-main-left {
        text-align: center;
    }

    .single-tech-main .ark-breadcrumbs-list {
        justify-content: center;
    }

    .what-you-get-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audit-banner {
        display: flex;
        flex-direction: column;
    }

    .audit-banner-right,
    .audit-banner-right img {
        width: 100%;
        height: 100%;
    }

    .audit-banner-right img {
        position: static;
    }

    .audit-banner::after {
        content: url('../img/audit-banner-bg-mob.png');
    }

    .single-subservice-main {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .single-subservice-main-right::before {
        top: auto;
        bottom: 0;
        right: auto;
        left: 0;
    }

    .single-subservice-main-right::after {
        right: 0;
    }

    .single-service-page .single-subservice-main-left > p {
        font-size: 18px;
        line-height: 27px;
    }

    .single-subservice-main.horizontal-image {
        grid-template-columns: 45% 53%;
    }

    .single-subservice-main.horizontal-image .single-subservice-main-right img {
        max-width: 100%;
    }

    .single-subservice-main {
        text-align: center;
    }

    .single-subservice-main-left .ark-breadcrumbs-list,
    .single-subservice-main-meta {
        justify-content: center;
    }

    .single-subservice-main-left .hero-actions-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .single-subservice-main-left .hero-google-rating {
        height: 40px;
    }

    .single-subservice-main-meta {
        margin-top: 40px;
    }

    .work-stages-btns {
        display: none;
    }

    .work-stages-right .faq-right.faq-wrapper.ark-tab-content {
        display: flex !important;
        opacity: 1;
        width: auto;
        height: auto;
        visibility: visible;
    }

    .work-stages-sect {
        counter-reset: work-stages-mob-counter;
    }

    .work-stages-counter-mob {
        counter-increment: work-stages-mob-counter;
        font-size: 24px;
        font-weight: 600;
        line-height: 28px;
        letter-spacing: -0.02em;
        background-color: #fff;
        background-image: linear-gradient(90deg, #fff 0%, #999999 100%);
        /* background-size: 30% 100%; */
        background-position: 100%;
        background-repeat: no-repeat;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
        margin-top: 45px;
    }

    .work-stages-counter-mob:first-child {
        margin-top: 0;
    }

    .work-stages-counter-mob::before {
        content: counter(work-stages-mob-counter, decimal-leading-zero);
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        padding: 5px;
        background: #262626;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border-radius: 100%;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-text-fill-color: #999999;
    }

    .work-stages-counter-mob._active::before {
        -webkit-text-fill-color: #000;
        background: #fff;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
    }

    .work-stages-sect::after {
        bottom: auto;
        top: 0;
    }

    .blog-page-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-list-consult {
        display: none;
    }

    .contacts-city-list-item {
        display: flex;
        flex-direction: column;
    }

    .contacts-city-list-item-img img {
        position: static;
        display: block;
        margin: 0 0 0 auto;
    }

    .contacts-city-list-item-info {
        padding-top: 0;
    }

    .contacts-list-s0cial {
        grid-template-columns: repeat(6, 1fr);
    }

    .contacts-city-list-item-wrapper {
        align-items: flex-end;
    }

    .single-case-main {
        display: flex;
        flex-direction: column;
        gap: 70px;
    }

    .single-case-main-left {
        text-align: center;
    }

    .single-case-main-left .ark-breadcrumbs-list {
        justify-content: center;
    }

    .single-case-thumb-slider-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .single-case-main-sect {
        padding-bottom: 80px;
    }

    .single-case-thumb-slider .section-arrows {
        margin-top: 30px;
    }

    .txt-block-right .ark-content-block {
        padding: 45px;
    }

    .txt-block-sect.txt-block-sect-right-bg::after {
        top: -170%;
    }

    .txt-block-sect:not(:nth-last-child(1 of .txt-block-sect)) {
        padding-bottom: 100px;
    }

    .services-offer-right-with-icons a {
        grid-template-columns: 6% 80% 10%;
    }

    .single-industry-main {
        display: flex;
        flex-direction: column;
        gap: 80px;
    }

    .single-industry-main-left .ark-breadcrumbs-list {
        justify-content: center;
    }

    .single-industry-main-left {
        text-align: center;
    }

    .single-blog {
        display: flex;
        flex-direction: column;
    }

    .single-blog-left,
    .single-blog-right {
        display: none;
    }

    .single-blog-center .ark-breadcrumbs-list {
        justify-content: center;
    }

    .single-blog-center {
        text-align: center;
    }

    .single-blog-meta,
    .single-blog-author {
        justify-content: center;
        text-align: left;
    }

    .single-blog-content {
        text-align: left;
    }

    .about-numbers-right {
        margin-top: 0;
    }

    .blog-main-tags li:hover::after,
    .blog-main-tags li:hover::after {
        opacity: 0;
    }

    .blog-main-tags li.current::after,
    .blog-main-tags li.current::after {
        opacity: 1 !important;
    }

    .blog-main-tags li:hover {
        border: 0.6px solid #FFFFFF;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 526px;
    }

    .half-container {
        width: calc(100vw - ((100vw - 526px) / 2));
    }

    .single-service-page .single-subservice-main-right img {
        max-width: 100%;
    }

    .hero-svg-header-gradient {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        pointer-events: none;
    }

    .hero-svg-header-gradient svg {
        width: 100%;
        height: auto;
    }

    .hero-svg-background {
        width: 150%;
        height: auto;
        top: auto;
        bottom: 30px;
        left: -25%;
    }

    .hero-svg-background svg {
        height: auto;
    }

    .single-subservice-main.horizontal-image {
        grid-template-columns: 1fr;
    }

    .front-services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us-video-play {
        width: 150px;
        height: 150px;
    }

    .about-us-video-play svg {
        transform: scale(.8);
    }

    .review-item-head-btns .section-arrows,
    .reviews-right .section-arrows {
        display: none;
    }

    .reviews-left .section-arrows {
        display: flex;
    }

    .reviews-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 35px;
    }

    .reviews-left .section-title {
        margin-bottom: 0;
    }

    .blog-grid-list-desk {
        display: none;
    }

    .blog-grid-list-mob {
        display: block;
    }

    .blog-grid-sect .container {
        max-width: 100%;
        width: calc(100vw - ((100vw - 526px) / 2));
        margin-left: auto;
        margin-right: 0px;
    }

    .blog-grid-list-mob .swiper-slide {
        height: auto;
    }

    .blog-grid-list-mob .swiper-slide a {
        height: 100%;
    }

    .blog-grid-list a > span {
        margin-bottom: 160px;
        padding: 5px 15px;
    }

    .blog-grid-sect .swiper {
        overflow: visible;
    }

    .blog-grid-list-item-txt div {
        margin-bottom: 15px;
    }

    .blog-grid-list-item-txt p {
        font-size: 18px;
        line-height: 22px;
    }

    .blog-grid .section-arrows {
        display: flex;
        margin-top: 30px;
    }

    .contact-form-presentation .btn-svg {
        display: none;
    }

    .contact-form-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .contact-form-presentation {
        width: 100%;
    }

    .contact-form-presentation .white-btn {
        margin: 0 auto;
    }

    .what-you-get-grid.swiper {
        display: block;
        overflow: visible;
    }

    .what-you-get-grid.what-you-get-grid-desk>div:not(.what-you-get-grid > div:first-child) {
        display: none;
    }

    .what-you-get-grid.what-you-get-grid-desk {
        display: block;
        margin-bottom: 20px;
    }

    .contacts-list-s0cial {
        grid-template-columns: repeat(3, 1fr);
    }

    .txt-block-2-col-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .services-offer-right-with-icons a {
        grid-template-columns: 7% 77% 12%;
        padding: 15px 0;
    }

    .two-columns-txt-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cases-page-list-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .ark-overlay-discuss-project .popup-discuss-project {
        width: 90%;
    }

    .popup-content-discuss-project {
        padding: 20px;
        overflow: auto;
        max-height: 95vh;
    }

    .popup-close-discuss-project {
        top: 25px;
        right: 25px;
    }

    .blog-grid .section-title {
        padding-right: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .half-container {
        width: 100%;
        padding-left: 15px;
    }

    .single-service-page .single-subservice-main-left > p {
        font-size: 16px;
        line-height: 24px;
    }

    .site-header {
        padding: 20px 0;
    }

    .front-services-sect {
        padding-top: calc(var(--header-height) + 100px);
    }

    .front-services h1 {
        font-size: 64px;
        line-height: 70.4px;
    }

    .front-services p {
        margin-top: 30px;
        font-size: 16px;
        line-height: 24px;
    }

    .gradient-btn button,
    .gradient-btn a,
    .gradient-btn span {
        font-size: 16px;
        padding: 12px 35px;
    }

    .front-services-list {
        margin-top: 100px;
    }

    .front-services-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .front-services-item {
        min-height: auto;
    }

    .front-services-item-head::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M0 15h29M15 0v29'/%3E%3C/svg%3E");
        position: absolute;
        right: 0;
        top: 0;
    }

    .front-services-item.active .front-services-item-head::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M0 15h29'/%3E%3C/svg%3E");
        position: absolute;
        right: 0;
        top: 0;
    }

    .front-services-item-body {
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .front-services-item ul {
        margin-top: 60px;
    }

    section {
        padding-bottom: 150px;
    }

    .our-cases-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .our-cases-list a img {
        height: 264px;
    }

    .cases-page-list-wrapper a img {
        height: 230px;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .our-case-list-item-title span {
        font-size: 20px;
        line-height: 32px;
    }

    .our-cases .gradient-btn {
        margin-top: 30px;
    }

    .our-cases .gradient-btn button {
        display: block;
        width: 100%;
    }

    .section-title-flex {
        justify-content: space-between;
    }

    .section-arrows span {
        width: 55px;
        height: 55px;
    }

    .about-us-video-play {
        width: 115px;
        height: 115px;
    }

    .about-us-video-play svg {
        transform: scale(.4);
    }

    .about-us-video .section-title {
        position: static;
        margin-bottom: 20px;
    }

    .about-us-video {
        border-radius: 0;
    }

    .about-us-video video {
        border-radius: 32px;
    }

    .about-us-video-wrapper {
        position: relative;
    }

    .why-us-right-txt {
        font-size: 32px;
        line-height: 35.2px;
    }

    .why-us-right .gradient-btn {
        margin-top: 30px;
    }

    .why-us-right .gradient-btn button {
        display: block;
        width: 100%;
    }

    .why-us-sect::after {
        right: -20%;
    }

    .review-item-author-img {
        width: 88px;
        height: 88px;
        flex-shrink: 0;
    }

    .review-item-author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .review-item-head {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 40px;
    }

    .review-item-head-btns {
        gap: 0;
        flex-direction: row-reverse;
        justify-content: flex-start;
        margin: 0;
    }

    .review-item-head-btns .section-arrows {
        display: block;
        width: 115px;
        height: 0;
    }

    .review-item-author-info span {
        font-size: 16px;
        line-height: 21.86px;
        margin-bottom: 15px;
    }

    .review-item-author-info p {
        margin-bottom: 10px;
    }

    .review-item-author-info span:last-child {
        font-size: 14px;
        line-height: 19.12px;
    }

    .review-item-body {
        font-size: 16px;
        line-height: 24px;
    }

    .review-item-body p {
        margin-bottom: 1px;
    }

    .review-item-body ul,
    .review-item-body ol {
        margin: 12px 0;
        padding-left: 20px;
    }

    .review-item-body li {
        margin-bottom: 6px;
    }

    .review-item-body-wrapper.has-overflow .review-item-body {
        max-height: 200px;
    }

    .review-item-video-btn span,
    .review-item-pdf-btn span {
        font-size: 16px;
        line-height: 21.86px;
    }

    .review-item-head-btns:has(.review-item-pdf-btn):has(.review-item-video-btn) {
        gap: 14px;
    }

    .review-item-head-btns:has(.review-item-pdf-btn):has(.review-item-video-btn) .review-item-pdf-btn span,
    .review-item-head-btns:has(.review-item-pdf-btn):has(.review-item-video-btn) .review-item-video-btn span {
        font-size: 10px;
        line-height: 14.12px;
    }

    .review-item-video-btn em,
    .review-item-pdf-btn em {
        min-width: 40px;
        min-height: 40px;
    }

    .ark-swiper-fraction {
        margin-top: 15px;
    }

    .blog-grid-sect .container {
        padding-right: 0;
    }

    .blog-grid-sect .white-btn {
        display: none;
    }

    .blog-grid-mob-view-all {
        display: inline-block;
    }

    .blog-grid-list a {
        padding: 20px;
    }

    .contact-form {
        padding: 40px 20px;
    }

    .contact-form-title span {
        font-size: 38px;
        line-height: 41.8px;
        margin-bottom: 15px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 6px;
    }

    .contact-form-right form {
        gap: 6px;
    }

    .contact-form-right input {
        padding: 16px;
    }

    .contact-form-right form>p {
        margin-top: 15px;
        font-size: 12px;
        line-height: 16px;
    }

    .contact-form-connect {
        padding: 25px;
        gap: 25px;
    }

    .contact-form-address {
        font-size: 14px;
        line-height: 20px;
    }

    .contact-form-presentation .white-btn button,
    .contact-form-presentation .white-btn a,
    .contact-form-presentation .white-btn span {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        padding: 15px 35px;
    }

    .contact-form::before {
        background: url("../img/contact-form-bg-mob-1.png") !important;
        background-size: cover !important;
        background-position: top !important;
        background-repeat: no-repeat !important;
    }

    .contact-form::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background: url('../img/contact-form-bg-mob-2.png') !important;
        background-size: cover !important;
        background-position: 100% 100% !important;
        background-repeat: no-repeat !important;
        mix-blend-mode: normal !important;
        filter: none !important;
    }

    .contact-form-sect {
        padding-bottom: 100px;
    }

    .seo .ark-content-block {
        max-height: 190px;
    }

    .seo-readmore {
        margin-top: 17px;
    }

    .seo span {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .seo-sect {
        padding-bottom: 100px;
    }

    .footer-menu-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "footer-top-3    footer-top-menus-wrapper"
            "footer-contact-column    footer-contact-column";
    }

    .footer-top-menus-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-top-menus-wrapper ul {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
    }

    .footer-top-menus-wrapper>div.foot-menu-open ul {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        margin-top: 15px;
    }

    .footer-top-menus-wrapper>div.foot-menu-open .footer-menu-title::after {
        transform: rotate(180deg);
    }

    .services-main-column-sect .page-main-column-bg,
    .about-main-column-sect .page-main-column-bg,
    .team-page-main-column-sect .page-main-column-bg,
    .blog-main-column-sect .page-main-column-bg,
    .technologies-main-column-sect .page-main-column-bg,
    .cases-main-column-sect .page-main-column-bg {
        display: none;
    }

    .services-main-column-sect .page-main-column-bg-mob-1,
    .services-main-column-sect .page-main-column-bg-mob-2,
    .about-main-column-sect .page-main-column-bg-mob-1,
    .team-page-main-column-sect .page-main-column-bg-mob-1,
    .blog-main-column-sect .page-main-column-bg-mob-1,
    .technologies-main-column-sect .page-main-column-bg-mob-1,
    .cases-main-column-sect .page-main-column-bg-mob-1 {
        display: block;
    }

    .services-main-column-sect .page-main-column-bg-mob-1,
    .about-main-column-sect .page-main-column-bg-mob-1,
    .team-page-main-column-sect .page-main-column-bg-mob-1,
    .blog-main-column-sect .page-main-column-bg-mob-1,
    .technologies-main-column-sect .page-main-column-bg-mob-1,
    .cases-main-column-sect .page-main-column-bg-mob-1 {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .services-main-column-sect .page-main-column-bg-mob-2 {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .ark-breadcrumbs,
    .ark-breadcrumbs-list,
    .ark-breadcrumbs-wrapper {
        display: none;
    }

    .page-main-column-sect {
        padding-top: calc(var(--header-height) + 110px);
    }

    .team-page-main-column .page-main-column h1,
    .page-title-h1,
    .technologies-main-column-sect .page-main-column h1,
    .single-industry-main-left h1 {
        font-size: 64px;
        font-weight: 600;
        line-height: 70.4px;
    }

    .page-main-column p {
        margin-top: 30px;
        font-size: 16px;
        line-height: 24px;
    }

    .page-main-column .hero-actions-row {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .page-main-column .hero-google-rating {
        height: 40px;
    }

    .services-offer-right a {
        font-size: 24px;
        font-weight: 600;
        line-height: 31.2px;
        padding: 30px 0;
        align-items: center;
    }

    .services-offer-right a::after {
        transform: scale(0.9);
    }

    .services-offer-sect {
        position: relative;
    }

    .home-page .services-offer-sect::after {
        content: url('../img/services-offer-mob-bg.png');
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .how-works-right>div {
        padding: 30px;
    }

    .how-works-item-head::before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M0 15h29M15 0v29'/%3E%3C/svg%3E");
        grid-area: plus-minus;
        margin: 0 0 0 auto;
    }

    .how-works-right>div.active .how-works-item-head::before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M0 15h29'/%3E%3C/svg%3E");
    }

    .how-works-item-head {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        grid-template-areas:
            "counter plus-minus"
            "title title";
        margin-bottom: 0;
    }

    .how-works-item-head::after {
        grid-area: counter;
    }

    .how-works-item-head span {
        grid-area: title;
        font-size: 24px;
        line-height: 31.2px;
    }

    .how-works-right>div li {
        font-size: 16px;
        line-height: 24px;
    }

    .how-works-right>div ul {
        margin-top: 20px;
    }

    .how-works-right>div .ark-custom-mob-dropdown-content {
        display: none;
    }

    @media (min-width: 769px) {
        .ark-custom-mob-dropdown-content {
            display: block !important;
        }
    }

    /* MOBILE */
    @media (max-width: 768px) {
        .ark-custom-mob-dropdown-content {
            display: none;
        }

        .ark-custom-mob-dropdown-content.is-open {
            display: block;
        }
    }

    .how-works-right {
        gap: 20px;
    }

    .how-works-sect::after {
        top: -30%;
    }

    .about-main-column-sect {
        padding-bottom: 200px;
    }

    .about-numbers-right {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-numbers-right span {
        font-size: 80px;
        line-height: 109.28px;
        display: block;
        margin-bottom: 10px;
    }

    .about-numbers-right p {
        font-size: 16px;
        line-height: 24px;
    }

    .about-numbers-sect::after {
        left: 0;
    }

    .about-values-right .swiper-slide {
        padding: 32px;
    }

    .about-values-item-head span {
        font-size: 24px;
        line-height: 31.2px;
    }

    .about-values-right .swiper-slide p {
        font-size: 16px;
        line-height: 24px;
    }

    .about-values-item-head {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 70px;
        margin-bottom: 30px;
    }

    .team-page-slider .section-title span {
        font-size: 24px;
        line-height: 28.8px;
    }

    .team-page-slider-sect .container {
        padding-right: 0;
    }

    .team-page-slider .section-title {
        padding-right: 15px;
    }

    .team-page-slider-wrapper {
        gap: 80px;
    }

    .team-page-slider .swiper {
        overflow: visible;
    }

    .team-page-slider .team-item-info {
        padding: 25px 25px 30px 25px;
    }

    .team-page-slider .team-item-name span {
        font-size: 24px;
        line-height: 31.2px;
    }

    .team-page-slider .team-item-name p {
        font-size: 16px;
        line-height: 24px;
    }

    .team-page-slider .team-item-name {
        margin-bottom: 25px;
    }

    .team-page-slider .s0cial a {
        width: 48px;
        height: 48px;
    }

    .team-page-slider .s0cial a img,
    .team-page-slider .s0cial a svg,
    .team-sect .s0cial a img,
    .team-sect .s0cial a svg {
        max-width: 15px;
        max-height: 15px;
    }

    .footer-bottom-right-mob a,
    .footer-bottom-right-mob span {
        font-size: 14px;
        line-height: 19px;
    }

    .footer-bottom-right-mob {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding-top: 25px;
    }

    .single-tech-main-sect {
        position: relative;
        padding-top: calc(var(--header-height) + 60px);
    }

    .single-tech-main-sect::after {
        content: '';
        background: url('../img/single-tech-main-bg-mob.png');
        background-position: top center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .single-tech-main-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .single-tech-main-left .gradient-btn {
        margin-top: 30px;
    }

    .single-tech-main-left .gradient-btn button {
        display: block;
        width: 100%;
    }

    .single-tech-main-right::after {
        top: -70%;
        right: -35%;
        left: auto;
    }

    .page-title-h1 {
        font-size: 46px;
        line-height: 59px;
    }

    .what-you-get-grid.what-you-get-grid-desk span,
    .what-you-get-grid.swiper .swiper-slide span {
        font-size: 24px;
        line-height: 31.2px;
    }

    .what-you-get-grid form {
        gap: 5px;
    }

    .what-you-get-grid form .gradient-btn {
        margin-top: 15px;
    }

    .what-you-get-grid .what-you-get-grid-item-purple span,
    .what-you-get-grid.swiper .swiper-slide.what-you-get-grid-item-purple span {
        gap: 30px;
    }

    .what-you-get-grid>div.what-you-get-grid-item-purple {
        gap: 15px;
    }

    .what-you-get-grid.what-you-get-grid-desk>div,
    .what-you-get-grid.swiper .swiper-slide {
        min-height: 200px;
    }

    .what-you-get-grid>div p {
        top: 220px;
        left: 15px;
        right: 15px;
    }

    .what-you-get-grid.swiper .section-arrows {
        margin-top: 30px;
    }

    .audit-banner-left {
        padding: 30px;
    }

    .audit-banner-left .section-title span {
        font-size: 24px;
        line-height: 31.2px;
    }

    .audit-banner-left .gradient-btn {
        margin-top: 25px;
    }

    .audit-banner-left .section-title {
        margin-bottom: 25px;
    }

    .tab-btn-dwn,
    .faq-tab-btn {
        font-size: 20px;
        line-height: 26px;
    }

    .tab-content {
        margin-top: 25px;
    }

    .faq-item {
        padding: 30px 0 !important;
    }

    .tab-btn-dwn.tab-btn-up,
    .faq-tab-btn.tab-btn-up {
        font-size: 20px !important;
        line-height: 26px !important;
    }

    .tab-btn-dwn.tab-btn-up::after,
    .faq-tab-btn.tab-btn-up::after {
        top: -3px;
    }

    .contact-form-right-thank {
        background: none;
    }

    .single-subservice-main-right::before {
        content: url('../img/single-subservice-main-bg-1-mob.png');
        left: 0;
        top: auto;
        bottom: 15%;
        z-index: 0;
    }

    .single-subservice-main-right::after {
        content: url('../img/single-subservice-main-bg-2-mob.png');
        right: 0;
    }

    .single-subservice-main-sect {
        padding-top: calc(var(--header-height) + 60px);
        background: url('../img/single-subservice-main-bg-mob.png');
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

    .single-service-page .single-subservice-main-sect {
        background: none;
    }

    .single-service-page .single-subservice-main-right::before {
        content: '';
        background: url('../img/single-service-main-bg-1-mob.png');
        background-size: contain;
        background-position: 100% 100%;
        background-repeat: no-repeat;
        display: block;
        width: 100%;
        height: 100%;
        right: 0;
        z-index: -1;
        bottom: 6%;
    }

    .single-service-page .single-subservice-main-right::after {
        display: none;
    }

    .single-subservice-main-left>p {
        font-size: 16px;
        line-height: 24px;
        margin-top: 30px;
    }

    .single-subservice-main-meta {
        margin-top: 25px;
    }

    .single-subservice-main-meta p {
        font-size: 20px;
        line-height: 27.32px;
    }

    .work-stages-counter-mob {
        font-size: 20px;
        line-height: 26px;
    }

    .work-stages-right .faq-item {
        padding: 30px !important;
    }

    .work-stages-right .tab-btn-dwn {
        font-size: 24px;
        line-height: 31px;
    }

    .work-stages-right .faq-right.faq-wrapper {
        gap: 15px;
    }

    .work-stages-right .tab-content {
        margin-top: 35px;
    }

    .work-stages-item-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .work-stages-item-content-wrapper ul {
        gap: 25px;
    }

    /* Мобільна версія двоколонкового макету - стає вертикальним */
    .work-stages-two-columns {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .blog-main-tags-wrap {
        overflow-x: auto;
        margin-right: -15px;
        overflow-y: scroll;
        scrollbar-width: none;
    }

    .blog-main-tags-wrap::-webkit-scrollbar {
        display: none;
    }

    .blog-main-tags {
        flex-wrap: nowrap;
        width: max-content;
        padding-bottom: 10px;
    }

    .blog-main-tags li {
        flex-shrink: 0;
    }

    .blog-main-column-sect {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 35px;
    }

    .page-main-column h1,
    .two-columns-txt .section-title span {
        font-size: 46px;
        line-height: 50.6px;
    }

    .blog-main-tags-wrap {
        margin-top: 80px;
    }

    .blog-main-tags li a {
        padding: 6px 15px;
    }

    .blog-main-tags li.current a {
        padding: 7px 16px;
    }

    .blog-page-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .blog-page-list a i {
        padding: 2px 16px;
    }

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

    .tp-pagination .gradient-btn {
        min-width: 100%;
    }

    .tp-pagination .wp-pagenavi a.last {
        display: none;
    }

    .tp-pagination .wp-pagenavi {
        gap: 10px;
    }

    .tp-pagination .wp-pagenavi a,
    .tp-pagination .wp-pagenavi span {
        width: 56px;
        height: 56px;
        font-size: 14px;
    }

    .blog-page-list-sect {
        padding-bottom: 100px;
    }

    .contacts-city-list-item>span {
        display: flex;
        justify-content: space-between;
        padding: 30px;
        font-size: 32px;
        line-height: 43.71px;
    }

    .contacts-city-list-item>span::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M0 15h29M15 0v29'/%3E%3C/svg%3E");
    }

    .contacts-city-list-item.active>span::after {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='M0 15h29'/%3E%3C/svg%3E");
    }

    .contacts-city-list-item-wrapper.ark-custom-mob-dropdown-content {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
    }

    .contacts-city-list-item::before {
        background: url('../img/contact_page_form.png') no-repeat;
        background-size: cover;
        background-position: top;
    }

    .contacts-city-list-item {
        border-bottom: none;
        background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #8764E5);
    }

    .contacts-main-column-sect {
        padding-bottom: 60px;
    }

    .contacts-city-list-item-info {
        padding: 0 30px 30px 30px;
    }

    .contacts-list-s0cial {
        grid-template-columns: repeat(2, 1fr);
    }

    .contacts-list-s0cial div:first-child {
        display: none;
    }

    .contacts-city-list .section-title {
        display: block;
        margin-top: 110px;
        margin-bottom: 0;
    }

    .single-case-main-sect {
        padding-top: calc(var(--header-height) + 60px);
    }

    .single-case-main-left .gradient-btn button {
        display: block;
        width: 100%;
    }

    .single-case-thumb-slider-sect>img {
        top: -70%;
    }

    .single-case-main-sect>img {
        bottom: auto;
        top: 50%;
    }

    .single-case-main-left p {
        margin-top: 30px;
        font-size: 16px;
        line-height: 24px;
    }

    .single-case-thumb-slider-wrapper img {
        min-height: 80px;
        object-fit: cover;
    }

    .single-case-thumb-slider-tags li {
        padding: 2px 12px;
    }

    .single-case-thumb-slider-tags {
        margin-bottom: 25px;
    }

    .txt-block-sect:not(:nth-last-child(1 of .txt-block-sect)) {
        padding-bottom: 80px;
    }

    .txt-block-sect.txt-block-sect-right-bg::after {
        top: -100%;
        right: -50%;
    }

    .txt-block-2-col-sect {
        padding-bottom: 80px;
    }

    .txt-block-right .ark-content-block {
        padding: 25px;
    }

    .txt-block-right .ark-content-block {
        font-size: 16px;
        line-height: 24px;
    }

    .services-offer-right p {
        margin-right: -80px;
        font-size: 16px;
        line-height: 24px;
    }

    .services-offer-start.services-offer-right a {
        align-items: flex-start;
    }

    .services-offer-start.services-offer-right div {
        gap: 35px;
    }

    .technologies-main-column-sect .gradient-btn button {
        display: block;
        width: 100%;
    }

    .services-offer-right-with-icons.services-offer-right li a {
        position: relative;
    }

    .services-offer-right-with-icons.services-offer-right a img {
        margin-top: 0;
        position: absolute;
        top: 30px;
        left: 0;
    }

    .services-offer-right-with-icons a {
        grid-template-columns: 75% 21%;
    }

    .services-offer-right-with-icons a span {
        padding-left: 45px;
    }

    .single-industry-main-sect {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 25px;
    }

    .single-industry-main-left p {
        font-size: 16px;
        line-height: 24px;
    }

    .single-industry-main-left .gradient-btn {
        margin-top: 30px;
    }

    .single-industry-main-left .gradient-btn button {
        display: block;
        width: 100%;
    }

    .two-columns-txt-wrapper .ark-content-block {
        font-size: 16px;
        line-height: 24px;
    }

    .cases-main-column-sect {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 80px;
    }

    .cases-filter-dropdown .dropdown-current {
        font-size: 14px;
        line-height: 20px;
        padding: 6px 15px;
    }

    .cases-page-list-filter {
        margin-bottom: 40px;
    }

    .cases-filter-dropdown .dropdown-item {
        font-size: 14px;
    }

    .cases-page-list-item-tags {
        flex-direction: row;
        top: 20px;
        left: 20px;
    }

    .cases-page-list-item-tags li {
        padding: 5px 16px;
    }

    .cases-page-list-wrapper a,
    .cases-page-list-item-wrapper {
        gap: 15px;
    }

    .cases-page-list-sect,
    .cases-page .audit-banner-sect {
        padding-bottom: 150px;
    }

    .single-blog-sect {
        padding-top: calc(var(--header-height) + 60px);
    }

    .single-blog-center h1 {
        font-size: 38px;
        line-height: 41px;
    }

    .single-blog-author {
        margin-bottom: 60px;
    }

    .single-blog-content.ark-content-block h1,
    .single-blog-content.ark-content-block h2,
    .single-blog-content.ark-content-block h3,
    .single-blog-content.ark-content-block h4,
    .single-blog-content.ark-content-block h5,
    .single-blog-content.ark-content-block h6 {
        margin-top: 80px;
    }

    .single-blog-consult::before,
    .single-blog-consult::after {
        background-size: cover;
    }

    .single-blog-consult-wrapper {
        padding: 40px 30px;
    }

    .single-blog-consult-wrapper span {
        font-size: 24px;
        line-height: 31.2px;
    }

    .page-404-sect {
        padding-top: calc(var(--header-height) + 170px);
    }

    .page-404 p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .discuss-project-form-inputs-grid {
        display: flex;
        flex-direction: column;
    }

    .blog-grid .section-title {
        padding-right: 15px;
    }

    .services-offer-right li {
        overflow: visible;
    }

    .services-offer-right li:hover::before {
        left: -15px;
    }

    .single-blog-sect::after {
        top: 5%;
    }

    .form-in-popup-discuss-project-thank-txt p br,
    #discuss-project-form>p br {
        display: none;
    }

    .form-in-popup-discuss-project > span {
font-size: 24px;
line-height: 110.00000000000001%;
letter-spacing: -2%;
    }

    .ark-overlay-discuss-project .popup-discuss-project {
        top: 10px;
        transform: translateX(-50%);
        max-height: calc(100vh - 20px);
    }

    .popup-content-discuss-project {
        max-height: calc(100vh - 25px);
        overflow-y: auto;
    }
}

@media (max-width: 450px) {
    .our-clients .swiper {
        margin: 0 -15px;
    }

    .our-clients .swiper-slide img {
        transform: scale(.7);
    }
}

@media (max-width: 390px) {
    .page-main-column h1 {
        font-size: 42px;
        line-height: 46px;
    }

    .front-services h1 {
        font-size: 50px;
        line-height: 56px;
    }

    .our-cases-list a img {
        height: 230px;
    }
}

@media (max-height: 700px) {
    .form-in-popup-discuss-project-thank {
        min-height: auto;
    }
}
/* Покращена видимість хлібних крошок для SEO */
.ark-breadcrumbs-list a {
    color: #D9D9D9 !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.ark-breadcrumbs-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

.ark-breadcrumbs-list li.active span {
    color: #FFFFFF !important;
    font-weight: 500;
}

.ark-breadcrumbs-list span.ark-bc-divider {
    color: #D9D9D9;
    opacity: 0.5;
}

.reviews-right .swiper-wrapper {
    /* transition: height 0.3s ease-in-out !important;  */
}

.review-item-body-wrapper {
    overflow: hidden;
    transition: max-height 10s ease-in-out; 
}

.review-item-body-wrapper.expanded {
    max-height: 2000px;
}

.has-error {
    border-color: #ff4d4f;
}

.form-error {
    color: #ff4d4f;
    font-size: 12px;
    margin-top: 4px;
}

/* Забезпечуємо, щоб вирівнювання з редактора працювало */
.review-item-body,
.review-item-body-wrapper,
.review-item-body * {
    text-align: inherit !important;
}

/* Класи редактора для вирівнювання */
.review-item-body .ql-align-left {
    text-align: left !important;
}

.review-item-body .ql-align-center {
    text-align: center !important;
}

.review-item-body .ql-align-right {
    text-align: right !important;
}

.review-item-body .ql-align-justify {
    text-align: justify !important;
}

.first-sect .container .front-services {
    max-width: none;
}
.page-main-column-bg, 
.page-main-column-bg-mob-1, 
.page-main-column-bg-mob-2 {
    pointer-events: none;
    will-change: transform, opacity;
}
.form-col {
    width: 100%;
}

.form-col input {
    width: 100%;
}
.contact-form-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.contact-form-row.has-error {
    padding-bottom: 35px;
}

.form-col {
    flex: 1;
    position: relative;
}

.form-col input {
    width: 100%;
}

.form-error {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    font-size: 14px;
    color: #fff;
    background: #ff4d4f;
    padding: 6px 12px;
    border-radius: 6px;
    line-height: 1.2;
    white-space: nowrap;
    z-index: 10;
}

.form-error::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-top-color: #ff4d4f;
}

.form-col.has-error input {
    border-color: #ff4d4f;
}

.form-error-general {
    position: relative;
    bottom: auto;
    margin-bottom: 15px;
}

@media (max-width: 576px) {
    .contact-form-right form {
        gap: 12px;
    }

    .contact-form-row {
        gap: 12px;
    }
}

/* ===== Cookie Consent Popup ===== */
.cookie-consent {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 10px));
    width: 100%;
    max-width: 1200px;
    z-index: 9998;
    transition: transform 0.4s ease-in-out;
    pointer-events: none;
    border: 1px solid transparent;
    border-radius: 60px;
    background-image: linear-gradient(#010101, #010101), linear-gradient(to right, #8764E5, #4BC7A3, #8764E5);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cookie-consent.cookie-consent--visible {
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 40px;
}

.cookie-consent__text {
    font-size: 14px;
    line-height: 22px;
    color: #D9D9D9;
    flex: 1;
    margin: 0;
}

.cookie-consent__btn {
    flex-shrink: 0;
}

.cookie-consent__btn button {
    display: inline-block;
    background: linear-gradient(266.02deg, #009980 3.25%, #0066B2 47.25%, #4C00B2 96.75%);
    position: relative;
    padding: 10px 30px;
    z-index: 10;
    color: white;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    border: none;
    border-radius: 800px;
    cursor: pointer;
    font-family: "Manrope", serif;
    transition: color 0.5s ease;
}

.cookie-consent__btn button::after {
    background: linear-gradient(266.02deg, #4C00B2 3.25%, #009980 47.25%, #009980 96.75%);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    z-index: -1;
    transition: opacity 0.5s;
    border-radius: 800px;
}

.cookie-consent__btn button:hover::after {
    opacity: 1;
}

@media (max-width: 1240px) {
    .cookie-consent {
        left: 20px;
        right: 20px;
        width: auto;
        transform: translateX(0) translateY(calc(100% + 10px));
    }

    .cookie-consent.cookie-consent--visible {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        border-radius: 30px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
        text-align: center;
    }

    .cookie-consent__text {
        font-size: 13px;
        line-height: 20px;
    }

    .cookie-consent__btn button {
        padding: 10px 40px;
        font-size: 14px;
    }
}

/* Team section desktop/mobile visibility */
.team-sect--desktop,
.team-category--desktop {
    display: block;
}
.team-sect--mobile,
.team-category--mobile {
    display: none;
}
@media (max-width: 768px) {
    .team-sect--desktop,
    .team-category--desktop {
        display: none;
    }
    .team-sect--mobile,
    .team-category--mobile {
        display: block;
    }
}
