@font-face {
    font-family: 'RF Dewi';
    src: local('RF Dewi Light'), local('RF-Dewi-Light'),
        url('../fonts/RFDewiCondensed-Light.woff2') format('woff2'),
        url('../fonts/RFDewiCondensed-Light.woff') format('woff'),
        url('../fonts/RFDewiCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'RF Dewi';
        url('../fonts/RFDewiCondensed-Regular.woff2') format('woff2'),
        url('../fonts/RFDewiCondensed-Regular.woff') format('woff'),
        url('../fonts/RFDewiCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'RF Dewi';
    src: local('RF Dewi Italic'), local('RF-Dewi-Italic'),
        url('../fonts/RFDewiCondensed-Italic.woff2') format('woff2'),
        url('../fonts/RFDewiCondensed-Italic.woff') format('woff'),
        url('../fonts/RFDewiCondensed-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'RF Dewi';
    src: local('RF Dewi Semibold'), local('RF-Dewi-Semibold'),
        url('../fonts/RFDewiCondensed-Semibold.woff2') format('woff2'),
        url('../fonts/RFDewiCondensed-Semibold.woff') format('woff'),
        url('../fonts/RFDewiCondensed-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'RF Dewi';
    src: local('RF Dewi Bold'), local('RF-Dewi-Bold'),
        url('../fonts/RFDewiCondensed-Bold.woff2') format('woff2'),
        url('../fonts/RFDewiCondensed-Bold.woff') format('woff'),
        url('../fonts/RFDewiCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
  

:root {
    --header-bg-light: #F0F3F4;
    --header-bg-dark: #231F20;
    --text-light: #272727;
    --text-white: #FFF;
    --text-gray: #626262;
}


body {
    font-family: RF Dewi;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 1320px;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

.section__title {
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    margin-bottom: 20px;
}

.section__subtitle {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 170%;
    min-height: 35px;
    margin: 0;
}

@media screen and (max-width: 991px){
    .section__title {
        font-size: 40px;
        min-height: 50px;
        margin-bottom: 10px;
    }

    .section__subtitle {
        line-height: 150%
    }
}


img {
    max-width: 100%;
}

* {
    box-sizing: border-box
}

.center {
    text-align: center;
}

.light {
    color: #5B5B5B;
    line-height: 170%;
}

.blue {
    color: #236388;
}

/* Typography */
h3 {
    margin: 0;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

h4 {
    font-size: 36px;
    margin: 0 0 10px;
}

em {
    font-size: 24px;
}

h5 {
    font-size: 24px;
    margin: 10px 0;
}


p {
    margin: 0;
}

p:not(:last-child) {
    margin-bottom: 24px;
}

@media screen and (max-width: 768px){
    h3 {
        font-size: 36px;
        margin-bottom: 17px;
    }
    
    h4 {
        font-size: 24px;
        margin: 0 0 10px;
    }
    
    
    p:not(:last-child) {
        margin-bottom: 30px;
    }

}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 208px;
    height: 66px;
    padding: 0 30px;
    font-family: "RF Dewi", sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #231F20;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: #231F20;
    color: #FFF;
    border-color: #231F20;
}

.btn--primary:hover {
    background: #FFF;
    color: #231F20;
    border-color: #231F20;
}

.btn--primary:active {
    background: #F5F5F5;
}

.btn--outline {
    background: #FFF;
    color: #231F20;
    border-color: #231F20;
}

.btn--outline:hover {
    background: #231F20;
    color: #FFF;
    border-color: #231F20;
}

.btn--outline:active {
    background: #1a1718;
}

.btn--white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn--white:hover {
    background: white;
    color: black;
}


.btn:focus-visible {
    outline: 2px solid #231F20;
    outline-offset: 2px;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 576px) {
    .btn {
        height: 66px;
        font-size: 18px;
        padding: 0 20px;
    }
}

.site-header {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 70px 0 0px;
    transition: all 0.3s ease;
}

.site-header__desktop {
    display: block;
}

.site-header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.site-header__logo-wrap {
    display: flex;
    align-items: center;
    gap: 35px;
}

.site-header__logo img {
    max-width: 255px;
    height: auto;
    display: block;
}

.site-header__company-name {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 36px;
}

.site-header__company-desc {
    font-size: 16px;
    max-width: 200px;
}

.site-header__contacts {
    display: flex;
    align-items: center;
    gap: 86px;
}

.site-header__email {
    text-decoration: none;
    color: #236388 !important;
    font-size: 24px;
    font-weight: 600;
}

.site-header__phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    =: 39px;
}

.site-header__phone {
    text-decoration: none;
    margin-bottom: 5px;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
}

.site-header__city {
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
}

.site-header__bottom {padding: 15px 0;}

.site-header--dark .site-header__bottom {
    padding: 15px 0 35px;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 83px;
    height: 50px;
}

.primary-menu a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 28px;
}

.primary-menu a:hover {
    opacity: 0.7;
}

.site-header__mobile {
    display: none;
}

.site-header__mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header__mobile-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.site-header__burger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
}

.site-header__mobile-company {
    margin-top: 15px;
    text-align: center;
}

.site-header__mobile-company-name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
}

.site-header__mobile-company-desc {
    font-size: 14px;
    opacity: 0.8;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 390px;
    height: 100vh;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.is-active {
    right: 0;
}

.mobile-menu__inner {
    padding: 85px 30px 55px 38px;
    color: #FFF;
    background: #231F20;
}

.mobile-menu__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
    position: absolute;
    right:  25px;
    top: 47px;
}

.mobile-menu__close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #FFF;
}

.mobile-menu__logo {
    margin-bottom: 26px;
}

.mobile-menu__logo img {
    max-width: 230px;
    height: auto;
}

.mobile-menu__company-name {
    color: var(--text-gray);
    font-size: 24px;
    margin-bottom: 0px;
    height: 36px;
}

.mobile-menu__company-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 220px;
}

.mobile-menu__nav {
    margin-bottom: 50px;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}

.mobile-primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-primary-menu li {
}

.mobile-primary-menu a {
    color: #FFF;
    text-decoration: none;
    display: block;
    max-width: 200px;
}

.mobile-menu__phones {
    margin-bottom: 20px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mobile-menu__phone-item {
    margin-bottom: 1px;
}

.mobile-menu__phone-city {
    display: inline-block;
}

.mobile-menu__phone {
    color: #FFF;
    text-decoration: none;
}

.mobile-menu__email {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    color: #236388;
    font-size: 24px;
}

.mobile-menu__copyright {
    margin-top: 23px;
    color: #A6A6A6;
    font-size: 16px;
    line-height: 130%; /* 20.8px */
    max-width: 290px;
}

.site-header--transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: #FFF;
}

.site-header--transparent .site-header__email,
.site-header--transparent .site-header__phone,
.site-header--transparent .site-header__city,
.site-header--transparent .primary-menu a {
    color: #FFF;
}

.site-header--light, .site-header--transparent-menu {
    background: #F0F3F4;
    color: var(--text-light);
}

.site-header--light .site-header__phone, .site-header--light .site-header__city, .site-header--light .primary-menu a,
.site-header--transparent-menu .site-header__phone, .site-header--transparent-menu .site-header__city, .site-header--transparent-menu .primary-menu a{
    color: var(--text-light);
}

.site-header--transparent-menu .site-header__bottom {
    background: white
}

@media screen and (max-width: 991px){
    .site-header__mobile-logo {
        width: 300px;
    }
    
    .site-header__mobile-logo img {
        width: 255px;
    }
}

.site-header--dark {
    background: #231F20;
    color: #FFF;
}

.site-header--dark:before {
    content: '';
    width:100%;
    height: 14px;
    background-color: #F0F3F4;
    display: block;
    bottom: 0;
    top: auto;
    left: 0;
    z-index: 99;
    position: absolute;
}

.site-header--dark .site-header__email,
.site-header--dark .site-header__phone,
.site-header--dark .site-header__city,
.site-header--dark .primary-menu a {
    color: #FFF;
}

.cities-modal__inner {
    padding: 20px;
}

.cities-modal__title {
    font-size: 20px;
    margin-bottom: 20px;
}

.cities-modal__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cities-modal__list a {
    display: block;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    background: #F0F3F4;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cities-modal__list a:hover {
    background: #231F20;
    color: #FFF;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1200px){
    .primary-menu {
        gap: 40px;
    }
    
    .site-header__company {
        display: none;
    }
    
    .site-header {
        padding: 20px 0 0px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px 0 25px;
    }

    .site-header--dark {
        background-color:#F0F3F4;
        color: black
    }
    
    .site-header__desktop {
        display: none;
    }
    
    .site-header__mobile {
        display: block;
    }
}

@media (max-width: 390px) {
    .mobile-menu {
        max-width: 100%;
    }
}

@media screen and (max-width: 359px){
    .site-header__mobile-logo img {
        max-width: 160px;
    }

    .site-header {
        padding: 10px 0 15px;
    }
    
    .site-header__burger svg {
        width: 28px;
    }
    
    .site-header {
    }
    
    .mobile-menu__inner {
        padding: 60px 10px 40px;
    }
    
    .mobile-menu__close svg {
        width: 20px;
        top: 20px;
        right: 20px;
    }
    
    .mobile-menu__header {
        top: 10px;
        right: 10px;
    }
    
    .mobile-menu__logo img {
        max-width: 190px;
    }
    
    .mobile-menu__company-name {
        font-size: 20px;
        height: 28px;
    }
    
    .mobile-menu__company-desc {
        font-size: 16px;
    }
    
    .mobile-menu__nav {
        font-size: 20px;
    }
    
    .mobile-menu__phones {
        font-size: 20px;
    }
    
    .mobile-menu__phone-item {
        margin-bottom: 10px;
    }
    
    .mobile-menu__email {
        font-size: 20px;
    }
    
    .mobile-menu__copyright {
        font-size: 14px;
    }
}

.site-footer {
    background: #231F20;
    color: #FFF;
    padding: 73px 0 0;
}

.site-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.site-footer__top {
    display: flex;
    padding-bottom: 40px;
    justify-content: space-between;
}

.site-footer__column {
    max-width: 400px
}

.site-footer__column:not(:first-child) {
    padding-top: 8px;
}

.site-footer__column--contacts {
    min-width: 309px;
    padding-top: 15px !important;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 33px;
}

.site-footer__logo img {
    max-width: 230px;
    height: auto;
    display: block;
}

.site-footer__company-name {
    margin-bottom: 9px;
    color: var(--text-gray);
    font-size: 24px;
    font-weight: 700;
}

.site-footer__company-desc {
    max-width: 230px;
    color: var(--text-gray);
    font-size: 20px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    max-width: 200px;
}

.footer-menu li {
    margin-bottom: 10px
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    opacity: .8;
}

.site-footer__phones {
    margin-bottom: 20px;
}

.site-footer__phone-item {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 24px;
}

.site-footer__phone {
    color: #FFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-footer__phone:hover {
    opacity: 0.8;
}

.site-footer__phone-city {
}

.site-footer__email {
    display: block;
    text-decoration: none;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
    color: #236388;
    font-size: 24px;
}

.site-footer__email:hover {
    opacity: 0.8;
}

.site-footer__socials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
    color: #FFF;
    text-decoration: none;
}

.site-footer__social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFF;
}

.site-footer__social-link svg {
    fill: currentColor;
}

.site-footer__bottom {
    padding: 18px 0 40px;
}

.site-footer__copyright {
    color: #A6A6A6;
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
}

@media (max-width: 992px) {
    .site-footer__top {
        gap: 30px 0;
        flex-wrap: wrap;
    }
    
    .site-footer__column--info {
        order: 1;
    }
    
    .site-footer__column--contacts {
        order: 2;
        width: 50%;
        padding-top: 0 !important;
        min-width: auto;
    }
    
    .site-footer__column--menu-1 {
        order: 3;
        width: 50%;
    }
    
    .site-footer__column--menu-2 {
        order: 4;
        width: 50%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 85px 28px 0;
    }
    
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .site-footer__column--info {
        order: 1;
    }
    
    .site-footer__column--info .site-footer__company-desc {
        max-width: 100%;
    }
    
    .site-footer__column--contacts {
        order: 2;
        width: 100%;
    }

    .site-footer__phone-item {
        gap:0 8px
    }
    .site-footer__column--menu-1 {
        order: 3;
        width: 100%;
    }
    
    .site-footer__column--menu-2 {
        order: 4;
        width: 100%;
    }
    
    .site-footer__column-title {
        text-align: center;
    }
    
    .site-footer__email {
        margin-bottom: 14px;
    }
    
    .site-footer__column.site-footer__column--contacts .site-footer__socials {
        display: none;
    }
    
    .site-footer__column.site-footer__column--menu-2 .site-footer__socials {
        display: flex !important;
        margin-top: 38px;
        gap: 35px;
    }
    
    .site-footer__logo {
        display: block;
        text-align: center;
        margin-bottom: 27px;
    }

    .site-footer__company-info {
        margin-bottom: 32px;
    }

    .site-footer__bottom {
        padding-bottom: 57px;
    }
    .site-footer__copyright {
        line-height: 135%;
    }
}

@media (max-width: 576px) {
    .site-footer__top {
        gap: 0;
    }
    
    .site-footer__column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media (max-width: 359px) {
    .site-footer {
        padding: 60px 0px 0;
    }
        
    .site-footer__logo img {
        max-width: 200px;
    }
    
    .site-footer__company-desc {
        font-size: 16px;
    }
    
    .site-footer__company-name {
        font-size: 20px;
    }
    
    .site-footer__email {
        font-size: 20px;
    }
    
    .site-footer__phone-item {
        font-size: 18px;
    }
    
    .site-footer__column.site-footer__column--menu-2 .site-footer__socials {
        gap: 24px;
    }
    
    .site-footer__social-link {
        width: 24px;
        height: 24px;
    }
    
    .footer-menu {
        font-size: 16px;
    }
    
    .site-footer__copyright {
        font-size: 14px;
    }
}

/* Form */
.wpcf7-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: center;
    max-width: 100%;
}

.wpcf7-form-control-wrap[data-name="consent-personal-data"] {
    width: 100%;
}

.wpcf7-list-item {
    margin: 0;
}
.wpcf7-form-control-wrap {
    position: relative;
    max-width: 100%;
} 
.wpcf7-form-control:not(.wpcf7-acceptance) {
    width: 340px;
    height: 66px;
    border: 1px solid #000;
    font-family: RF Dewi;
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: black;
    max-width: 100%;
}

.wpcf7-form-control:placehoder {
    color: black !important;
}

.wpcf7-form-control.wpcf7-submit {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    background: black;
    font-family: RF Dewi;
    cursor: pointer;
}
.wpcf7 .wpcf7-not-valid-tip {
    position: absolute;
    margin-top: 4px !important;
}

span.wpcf7-spinner {
    display: none;
}


.wpcf7-form-control-wrap[data-name="consent-personal-data"] {
    display: block;
    margin-top: 5px;
}

.wpcf7-acceptance {
    display: flex;
    justify-content: CENTER;
}

.wpcf7-list-item {
    margin: 0 !important;
    display: block !important;
}

.wpcf7-list-item label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    cursor: pointer !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: var(--text-gray) !important;
    line-height: 1.5 !important;
    position: relative !important;
    padding-left: 0 !important;
    user-select: none !important;
}

.wpcf7-list-item input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
}

.wpcf7-list-item label::before {
    content: '' !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #D0D0D0 !important;
    border-radius: 4px !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    margin-top: 1px !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.wpcf7-list-item label::after {
    content: '' !important;
    position: absolute !important;
    left: 6px !important;
    top: 4px !important;
    width: 6px !important;
    height: 11px !important;
    border: solid #fff !important;
    border-width: 0 2px 2px 0 !important;
    transform: rotate(45deg) scale(0) !important;
    opacity: 0 !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.wpcf7-list-item label:hover::before {
    border-color: #231F20 !important;
    background: #FAFAFA !important;
}

.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label label::before,
.wpcf7-list-item input[type="checkbox"]:checked ~ label::before,
.wpcf7-list-item label:has(input[type="checkbox"]:checked)::before {
    background: #231F20 !important;
    border-color: #231F20 !important;
}

.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label label::after,
.wpcf7-list-item input[type="checkbox"]:checked ~ label::after,
.wpcf7-list-item label:has(input[type="checkbox"]:checked)::after {
    transform: rotate(45deg) scale(1) !important;
    opacity: 1 !important;
}

.wpcf7-list-item input[type="checkbox"]:focus-visible + .wpcf7-list-item-label label::before,
.wpcf7-list-item input[type="checkbox"]:focus-visible ~ label::before,
.wpcf7-list-item label:has(input[type="checkbox"]:focus-visible)::before {
    outline: 2px solid #231F20 !important;
    outline-offset: 2px !important;
    border-color: #231F20 !important;
}

.wpcf7-list-item-label a,
.wpcf7-list-item-label span a {
    color: #231F20 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: rgba(35, 31, 32, 0.3) !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.wpcf7-list-item-label a:hover,
.wpcf7-list-item-label span a:hover {
    color: #000 !important;
    text-decoration-color: #231F20 !important;
}

.wpcf7-not-valid-tip {
    font-size: 12px !important;
    color: #E53935 !important;
    margin-top: 8px !important;
    display: block !important;
}

.wpcf7-form-control-wrap[data-name="consent-personal-data"] .wpcf7-not-valid-tip {
    animation: shakeError 0.4s ease-in-out;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.wpcf7-form-control-wrap[data-name="consent-personal-data"] .wpcf7-not-valid + label::before,
.wpcf7-list-item input[type="checkbox"].wpcf7-not-valid ~ label::before {
    border-color: #E53935 !important;
    background: #FFF5F5 !important;
}

.wpcf7-not-valid {
    border: 1px solid red !important;
}

.wpcf7-not-valid-tip {
    display: none !important
}

.wpcf7-response-output {
    display: none;
}

/* CTA */
.mobile-menu .cta {
    background: white;
    padding: 53px 0 114px;
}

.cta__form {
    padding-top: 24px;
}

@media screen and (max-width: 1200px){
    .cta__form {
        max-width: 695px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .wpcf7-form-control-wrap[data-name="consent-personal-data"] {
        order: 3;
    }
    
    .wpcf7-form-control.wpcf7-submit {
        order: 4;
    }
}

@media screen and (max-width: 768px){ 
    .cta__form {
        max-width: 340px;
    }

    .wpcf7-form-control.wpcf7-submit {
        max-width: 297px
    }
}

/* ==================== Page 404 ==================== */
.page--404 {
    min-height: 70vh;
}

/* ÐšÐ¾Ð½Ñ‚ÐµÐ½Ñ‚ 404 */
.page__content--404 {
    max-width: 600px;
    text-align: center;
    margin: auto;
}

.error-404 {
    padding: 70px 0;
}

/* ÐšÑ€ÑƒÐ¿Ð½Ð°Ñ Ñ†Ð¸Ñ„Ñ€Ð° 404 */
.error-404__number {
    color: #272727;
    text-align: center;
    font-family: "RF Dewi";
    font-size: 331.487px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Ð¢ÐµÐºÑÑ‚ Ð¾ÑˆÐ¸Ð±ÐºÐ¸ */
.error-404__text {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 100px !important;
    margin-top: -10px;
}

/* ÐšÐ¾Ð½Ñ‚ÐµÐ¹Ð½ÐµÑ€ Ð´Ð»Ñ ÐºÐ½Ð¾Ð¿Ð¾Ðº */
.error-404__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== ÐÐ´Ð°Ð¿Ñ‚Ð¸Ð² 404 ==================== */
@media (max-width: 768px) {
    
    .page--404 {
        min-height: 60vh;
    }

    .error-404 {
        padding: 50px 0 75px;
    }
    
        
    .error-404__number {
        font-size: 191px;
    }
    
    .error-404__text {
        margin-top: -4px;
        margin-bottom: 140px !important;
    }
    
}


/* Page */
.page__header {
    margin-bottom: 40px;
}

.page__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 56px;
    font-weight: 700;
}

.page__subtitle {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 170%;
}

@media screen and (max-width: 991px){
    .page__title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .page__subtitle {
        font-size: 14px;
        max-width: 318px;
    }
}

@media screen and (max-width: 768px){
    .page__header {
        margin-bottom: 20px;
    }
}


.breadcrumbs {
    margin-bottom: 20px;
    padding: 10px 0;
}

.breadcrumbs a:after {
    content: '';
    width: 17px;
    height: 9px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="18" height="8" viewBox="0 0 18 8" fill="none"%3E%3Cpath d="M17.3536 4.03568C17.5488 3.84042 17.5488 3.52384 17.3536 3.32857L14.1716 0.146594C13.9763 -0.0486684 13.6597 -0.0486684 13.4645 0.146594C13.2692 0.341856 13.2692 0.658438 13.4645 0.853701L16.2929 3.68213L13.4645 6.51055C13.2692 6.70582 13.2692 7.0224 13.4645 7.21766C13.6597 7.41292 13.9763 7.41292 14.1716 7.21766L17.3536 4.03568ZM0 3.68213L4.37114e-08 4.18213L17 4.18213L17 3.68213L17 3.18213L-4.37114e-08 3.18213L0 3.68213Z" fill="black"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 13px;
    display: inline-flex;
}


.breadcrumbs a, .breadcrumbs span {
    position: relative;
    display: inline;
    align-items: center;
    color: #272727;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

@media screen and (max-width: 991px){
    .breadcrumbs {
        margin-bottom: 10px;
    }
}


/* Page/Post */
.page__thumbnail {
    margin-bottom: 40px;
}

.page__thumbnail img {
    width: 100%;
    height: auto;
}

.page__content {
    max-width: 919px;
    margin: auto;
    padding-bottom: 60px;
    font-size: 20px;
}

.page-template-default .page__content {
    max-width: 100%
}

@media screen and (max-width: 768px){
    .page__thumbnail {
        aspect-ratio: 370 / 284;
        margin-bottom: 20px;
    }
    
    .page__thumbnail img {
        height: 100%;
        object-fit: cover;
    }
}

/* Related Posts */
.single-post .related {
    padding: 50px 0 120px;
}

 .posts {
    display: grid;
    gap: 60px 26px;
    grid-template-columns: 1fr 1fr 1fr;
}

.related .posts {
    padding-top: 45px;
}

.post-content__thumbnail {
    display: flex;
    margin-bottom: 24px;
    aspect-ratio: 415 / 318;
    overflow: hidden;
}

.post-content__thumbnail img {
    max-height: 318px;
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.post-content__title {
    font-size: 36px;
    text-decoration: none;
    color: black;
    margin-bottom: 13px;
    display: block;
}

.post-content p {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 170%;
    max-width: 300px;
    margin-bottom: 13px;
}

.post-content__link {
    font-size: 20px;
    color:  black;
    text-decoration: none;
    position: relative;
    display: flex;
}

.post-content__link:after {
    content: '';
    width: 24px;
    height: 18px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="18" height="8" viewBox="0 0 18 8" fill="none"%3E%3Cpath d="M17.3536 4.03568C17.5488 3.84042 17.5488 3.52384 17.3536 3.32857L14.1716 0.146594C13.9763 -0.0486684 13.6597 -0.0486684 13.4645 0.146594C13.2692 0.341856 13.2692 0.658438 13.4645 0.853701L16.2929 3.68213L13.4645 6.51055C13.2692 6.70582 13.2692 7.0224 13.4645 7.21766C13.6597 7.41292 13.9763 7.41292 14.1716 7.21766L17.3536 4.03568ZM0 3.68213L4.37114e-08 4.18213L17 4.18213L17 3.68213L17 3.18213L-4.37114e-08 3.18213L0 3.68213Z" fill="black"/%3E%3C/svg%3E');
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 6px;
    margin-left: 12px;
    margin-right: 15px;
    background-size: contain;
}

@media screen and (max-width: 991px){
    .posts {
        grid-template-columns: 1fr 1fr;
        gap: 50px 26px;
    }
}

@media screen and (max-width: 768px){
    .related {
        padding: 35px 0 60px;
    }
    
    .posts {
        grid-template-columns: 1fr;
    }

    .post-content__thumbnail {
        aspect-ratio: 370/284;
    }

    .post-content__thumbnail img {
        max-height: 100%;
        width: 100%;
        object-position: center;
        height: 100%;
        object-fit: cover;
    }
}

/* Archive */
.archive__header {
    margin-bottom: 40px;
}

archive__title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 56px;
    font-weight: 700;
}

.archive__subtitle {
    color: #5B5B5B;
    font-size: 16px;
    line-height: 170%;
}

@media screen and (max-width: 991px){
    .archive__title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .archive__subtitle {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px){
    .archive__header {
        margin-bottom: 20px;
    }
}

.archive__content {
    padding-bottom: 200px;
    padding-top: 20px;
}

.load-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 0;
}

@media screen and (max-width: 768px){
    .archive__content {
        padding-bottom: 60px;
        padding-top: 20px;
    }

    .load-more-container {
        padding: 60px 0 0;
    }
}

/* Services */
.post-type-archive-services .archive__content {
    padding-bottom: 133px;
}

.post-type-archive-services .cta {
    margin-bottom: 80px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 62px 0;
}

.service {
    max-width: 415px;
    text-decoration: none;
    font-size: 36px;
    font-weight: 700;
    color:  black;
    text-decoration: none;
    width: 32%;
    text-align: left;
}

.service__image {
    aspect-ratio: 1/1;
    margin-bottom: 23px;
}

.service__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



@media screen and (min-width: 1100px){
    .service:nth-child(n+4){
        width: 19%;
        max-width: 247px;
        font-size: 24px;
    }
}

@media screen and (max-width: 1099px){
    .post-type-archive-services .archive__content {
        padding-bottom: 50px;
    }
    
    .post-type-archive-services .cta {
        margin-bottom: 104px;
    }

    .services {
        gap: 20px;
        display: flex;
        justify-content: center;
    }

    .service {
        width: 100% ;
        max-width: 250px;
        font-size: 24px
     }

    .service__image {
        margin-bottom: 10px;
    }
}

/* Single Services */
.single-services .page__content {
    max-width: 100%;
}

.single-services .page__text {
    max-width: 1147px;
}

.single-services .page__thumbnail {
    max-width: 965px;
    margin-left: auto;
    margin-right: auto;
}

.single-services div#Content {
    padding-bottom: 104px;
}

.single-services .wp-block-table {
    max-width: 900px;
    margin: 40px AUTO;
    overflow-x: auto;
}


.single-services .wp-block-table {
    scrollbar-color: #2d6a8d #f0f3f4;
}

.single-services table {
    min-width: 700px;
}

figure.wp-block-table {}

.single-services ul.wp-block-list {
    font-size: 24px;
}

@media screen and (max-width: 991px){
    .single-services div#Content {
        padding-bottom: 75px;
    }
    
    .single-services ul.wp-block-list {
        font-size: 20px;
    }

}

/* Cases */
.cases {
    padding: 50px 0 80px;
}

.cases__list {
    display: grid;
    gap: 50px 100px;
    grid-template-columns: 1fr 1fr;
    padding-top: 64px;
}

.case__thumbnail {
    display: flex;
    margin-bottom: 38px;
    aspect-ratio: 553 / 355;
    overflow: hidden;
}

.case__thumbnail img {
    max-height: 355px;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.case__excerpt {
    font-size: 24px;
    text-decoration: none;
    color: black;
    margin-bottom: 31px;
    display: block;
    text-align: left;
}


.case__link {
    font-size: 20px;
    color:  black;
    text-decoration: none;
    position: relative;
    display: flex;
}

.case__link:after {
    content: '';
    width: 24px;
    height: 18px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="18" height="8" viewBox="0 0 18 8" fill="none"%3E%3Cpath d="M17.3536 4.03568C17.5488 3.84042 17.5488 3.52384 17.3536 3.32857L14.1716 0.146594C13.9763 -0.0486684 13.6597 -0.0486684 13.4645 0.146594C13.2692 0.341856 13.2692 0.658438 13.4645 0.853701L16.2929 3.68213L13.4645 6.51055C13.2692 6.70582 13.2692 7.0224 13.4645 7.21766C13.6597 7.41292 13.9763 7.41292 14.1716 7.21766L17.3536 4.03568ZM0 3.68213L4.37114e-08 4.18213L17 4.18213L17 3.68213L17 3.18213L-4.37114e-08 3.18213L0 3.68213Z" fill="black"/%3E%3C/svg%3E');
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 6px;
    margin-left: 12px;
    margin-right: 15px;
    background-size: contain;
}

@media screen and (max-width: 991px){
    .cases {
        grid-template-columns: 1fr;
    }

    .cases__list {
        padding-top: 30px;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px){
    .cases {
        padding: 30px 0 60px;
    }

    .case__thumbnail {
        aspect-ratio: 185/119;
    }

    .case__thumbnail img {
        max-height: 100%;
        width: 100%;
        object-position: center;
        height: 100%;
        object-fit: cover;
    }

    .case__excerpt {
        font-size: 20px
    }
}

/* Single Case */
.single-case div#Content {
    padding-bottom: 105px;
}

.single-case .related {
    padding: 40px 0 80px;
}

@media screen and (max-width: 991px){
    .single-case div#Content {
        padding-bottom: 75px;
    }
}


/* Contacts */
.page-template-page-contacts #Content {
    padding-bottom: 68px;
}

.page-template-page-contacts .page__content {
    max-width: 100%;
    padding-bottom: 117px;
}

.contacts__row {
    display: flex;
    gap: 35px;
    justify-content: space-between;
    padding-top: 30px;
    padding-left: 30px;
}

.contacts__logo-wrap {
    display: flex;
    align-items: center;
    gap: 35px;
    color: #272727;
    margin-bottom: 55px;
    padding-top: 19px;
}

.contacts__logo img {
    max-width: 255px;
    height: auto;
    display: block;
}

.contacts__company-name {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 36px;
}

.contacts__company-desc {
    font-size: 16px;
    max-width: 200px;
}

.contacts__email {
    color: #236388;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 42px;
    text-decoration: none;
    display: block;
}

.contacts__address {
    margin-bottom: 34px;
}

.contacts__address .address__item {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 26px;
}

.contacts__address p {
    margin-bottom: 15px;
}

.contacts__address a {
    color: #272727;
    font-size: 32px;
    font-weight: 600;
    text-decoration: none;
    display: block;
}

.contacts__site_name {
    color: #236388;
    font-size: 40px;
    font-weight: 600;
}

.contacts__row iframe {
    max-width: 100%;
    height: auto;
    height: 100%;
}


@media screen and (max-width: 1300px){
    .contacts__logo-wrap {
        flex-wrap:wrap
    }
}

@media screen and (min-width: 1201px){
    .contacts__row iframe {
        aspect-ratio: 120/109
    }

    .contacts__email,.contacts__address,.contacts__site_name {
        padding-left: 30px;
    }
}

@media screen and (max-width: 1200px){
    .contacts__logo-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media screen and (max-width: 991px){
    .page-template-page-contacts #Content {
        padding-bottom: 158px;
    }

    .page-template-page-contacts .page__content {
        padding-bottom: 68px;
    }
    
    .contacts__logo-wrap {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .contacts__row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 70px;
        padding-top: 14px;
        padding-left: 0;
    }
    
    .contacts__col {
        max-width: 100%;
    }
    
    .contacts__row iframe {
        min-height: 565px;
    }
    
    .contacts__logo img {
        max-width: 203px;
    }

    .contacts__email {
        margin-bottom: 25px;
    }  
    
    .contacts__address {
        margin-bottom: 31px;
    }
    
    .contacts__address p {
        margin-bottom: 14px;
    }
    
    .contacts__site_name {
        font-size: 32px;
    }

}

/* Stats */
.page-template-page-experience .stats {
    padding: 35px 0;
    margin-bottom: 80px;
}

.stats__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px 17px;
    max-width: 1197px;
    margin: auto;
    margin-left: 60px;
}

.stats__item {
    text-align: center;
}

.stats__number {
    color: #272727;
    font-size: 80px;
    font-weight: 700;
}

.stats__number small {
    font-size: 24px;
    font-weight: 400;
    color: black;
}


.stats__text {
    text-align: center;
    font-size: 24px;
    margin-top: -12px;
}

@media screen and (max-width: 991px){
    .page-template-page-experience .stats {
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 70px;
    }

    .stats__list {
        margin-left: 0;
        gap: 30px 10px;
    }
    
    .stats__item {
        width: 180px;
    }
    
    .stats__item:nth-child(2), .stats__item:nth-child(3) {
        width: 155px;
    }
    
    .stats__item:nth-child(3) {
        order: 4;
    }
    
    .stats__number {font-size: 58px;}
    
    .stats__number small {
        display: none;
    }
    
    .stats__text {
        font-size: 17px;
        margin-top: -6px;
    }

}

@media screen and (max-width: 389px){
    .stats__item {
        width: 160px;
    }
    
    .stats__item:nth-child(2), .stats__item:nth-child(3) {
        width: 120px;
    }
}

@media screen and (max-width: 360px){
    .stats__item {
        width: 100%;
    }
    
    .stats__item:nth-child(2), .stats__item:nth-child(3) {
        width: 100%;
    }
}

/* Learnmore */
.page-template-page-experience .learnmore {
    margin-bottom: 90px;
}

.learnmore__inner {
    background-size: cover;
    background-position: bottom;
    display: flex;
    color: white;
    justify-content: space-between;
    padding: 39px 11px 39px 32px;
    flex-wrap: wrap;
    gap:50px;
    position: relative;
}

.learnmore__inner::before {
    content:'';
    width: 100%;
    height:80%;
    display: block;
    background: linear-gradient(180deg, #231F20 0%, rgba(0, 0, 0, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.learnmore__left, .learnmore__right {
    z-index: 2;
}

.learnmore__title {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.learnmore__subtitle {
    color: rgba(255, 255, 255, 0.60);
    font-size: 20px;
    max-width: 630px;
    margin-top: 20px;
}

.learnmore__right {
    padding-right: 49px;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1482px){
    .learnmore__inner {
        width: 1482px;
        padding: 63px;
        margin-left: -92px;
        min-height: 291px;
    }

    .learnmore__title br {
        display: none
    }
}

@media screen and (max-width: 991px){
    .page-template-page-experience .cta {
        margin-bottom: 60px;
    }
    
    .learnmore__inner {
        min-height: 447px;
        align-items: flex-start;
    }

    .learnmore__title {
        font-size: 36px;
    }
    
    .learnmore__subtitle {
        font-size: 16px;
        max-width: 290px;
    }

    .learnmore__right {
        display: none;
    }
}

@media screen and (max-width: 767px){
    .page-template-page-experience .learnmore {
        margin-bottom: 60px;
    }
}

/* Sliders */
.sliders {
    margin-bottom: 85px;
}

.swiper.swiper--logos .swiper-wrapper {
    align-items: center;
}

.swiper.swiper--logos .swiper-slide {
    display: flex;
    align-items: center;
    height: 100% !important;
    justify-content: center;
}

.swiper.swiper--logos .sliders__logo {
    background: lightgray;
    display: flex;
    width: auto;
    transition: all .3s ease;
    display: inline-block; /* или inline-flex */
    line-height: 0; /* Убирает лишний отступ снизу у изображения */
    width: fit-content; /* Ширина по содержимому */
    height: fit-content;
}

.sliders__logo {}

.swiper.swiper--logos .sliders__logo:hover {
    background: transparent
}

.swiper.swiper--logos .sliders__logo  img {
    mix-blend-mode: luminosity;
    width: 100%;
    height: auto;
}

.swiper-button-prev--custom {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
    transition: all .3s ease
}

.swiper-button-next--custom {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
}

.swiper-button-prev--custom:hover rect, .swiper-button-next--custom:hover rect {
    fill: black;
}

.swiper-button-prev--custom:hover path, .swiper-button-next--custom:hover path {
    stroke: white;
}

.swiper-button-prev--custom rect, .swiper-button-next--custom rect, .swiper-button-prev--custom path, .swiper-button-next--custom path {
    transition: all .3s ease
}

.sliders__group {
    padding: 61px 0;
}

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

.swiper--docs img {
    height: auto;
    max-height: 440px;
    max-width: 240px;
    width: 100%;
}

/* Общие стили */
.swiper--logos,
.swiper--docs {
    overflow: hidden;
}

/* Стили для grid режима */
.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: row !important;
    gap: 26px 0;
}

.swiper--logos.swiper-grid > .swiper-wrapper {
    gap: 50px 0px;
}

.swiper-grid .swiper-slide {
    margin-top: 0 !important;
}

@media screen and (min-width: 768px){
    .swiper-pagination {
        DISPLAY: NONE;
    }
}

@media (max-width: 767px) {
    .sliders {
        margin-bottom: 49px;
    }
    
    .sliders__group {
        padding: 24px 0;
    }
    
    .swiper-button-next--custom, .swiper-button-prev--custom {
        display: none;
    }
    
    .swiper-pagination {
        margin-top: 40px;
        position: relative;
    }
    
    .swiper-pagination-bullet {
        width: 11px;
        height: 11px;
        border-radius: inherit;
        background: #D9D9D9;
        opacity: 1;
        margin: 0 10px !important;
    }
    
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: black;
    }

    .swiper-grid .swiper-slide {
        height: auto !important;
    }
    
    /* Если нужно разное расстояние между рядами */
    .swiper-grid .swiper-slide:nth-child(odd) {
        margin-bottom: 10px;
    }
    
    .swiper-grid .swiper-slide:nth-child(even) {
    }

    .sliders__logo {
        width: 116px;
        height: 77px;
    }
    
    .sliders__logo img {
        max-width: 116px;
        max-height: 77px;
        object-fit: contain;
        aspect-ratio: auto;
        width: auto;
        height: auto;
    }

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

    .swiper--docs img {
        max-width: 138px;
    }
}

.page-template-page-experience .cta {
    margin-bottom: 75px;
}

/* About company*/
.company-info {
    margin-bottom: 50px;
}

.company-info__container {
    width: fit-content;
    padding: 0;
}

.company-info__content {
    max-width: 1567px;
    background: #F0F3F4;
    padding: 0;
    display: flex;
    position: relative;
    margin-top: 93px;
}

.company-info__content:before{
    content:'';
    display: block;
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='283' height='283' viewBox='0 0 283 283' fill='none'%3E%3Cpath d='M2.97656 0.5H279.496C280.861 0.500017 281.973 1.6113 281.973 2.97656V279.496C281.973 280.861 280.861 281.973 279.496 281.973H230.643C229.274 281.972 228.176 280.882 228.166 279.529V279.528L226.199 61.1133H226.214L226.206 60.6055C226.177 58.7022 224.619 57.1731 222.718 57.1729H222.716L2.98828 58.0293C1.60967 58.0289 0.5 56.9175 0.5 55.5537V2.97656C0.500102 1.61135 1.61135 0.500102 2.97656 0.5Z' stroke='%23B3B3B3'/%3E%3Cpath d='M0.5 122.28C0.500146 120.076 3.16074 118.97 4.71777 120.527L51.1328 166.942C51.5932 167.414 51.8563 168.048 51.8564 168.695V225.755C51.8564 227.673 53.4155 229.233 55.333 229.233H112.406C113.062 229.233 113.693 229.489 114.147 229.944L114.149 229.946L162.904 278.198L162.914 278.208L162.917 278.21C164.435 279.709 163.452 282.273 161.377 282.431L161.173 282.439C108.406 282.463 55.7438 282.476 2.97656 282.5L2.72363 282.487C1.47667 282.36 0.5 281.303 0.5 280.023V122.28Z' stroke='%23B3B3B3'/%3E%3Cpath d='M187.56 96.0264C188.925 96.0264 190.036 97.1377 190.036 98.5029V256.246C190.036 258.46 187.377 259.559 185.818 258L139.403 211.585C138.943 211.112 138.68 210.479 138.68 209.831V152.771C138.68 150.853 137.121 149.294 135.203 149.294H78.1309C77.4756 149.294 76.8443 149.038 76.3896 148.583L76.3877 148.581L27.6328 100.328L27.6201 100.315L27.4805 100.167C26.1663 98.6539 27.1514 96.2493 29.1592 96.0957L29.3633 96.0879C55.7314 96.0756 82.0968 96.0658 108.462 96.0566L187.56 96.0264Z' stroke='%23B3B3B3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 282px;
    height: 282px;
    bottom: 45px;
    right: 45px;
    z-index:2
}

.company-info__text {
    padding: 118px 162px 103px 110px;
    font-size: 20px;
    box-sizing: border-box;
}

.company-info__text p {
    max-width: 747px;
    width: 100%;
}

.company-info__text p:last-of-type{
    margin-bottom: 12px;
}

.company-info__text blockquote {
    color: #5B5B5B;
    line-height: 170%;
    padding-left: 0;
    margin: 0;
    max-width: 623px;
    margin-top: 13px;
}

.company-info__image {
    aspect-ratio: 27/37;
    flex-shrink: 0;
    max-width: 50%;
}

.company-info__image img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1400px) {
    .company-info__text {
        padding: 60px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 992px){
    .company-info__image {
        display: none
    }
}

@media screen and (max-width: 991px) {
    .company-info {
        padding-bottom: 200px;
        margin-bottom: 0;
    }

    .company-info__content {
        margin-top: 0;
    }
    
    .company-info__content:before {
        display: none;
    }

    .company-info__text {
        padding: 30px 6px 170px 10px;
    }

    .company-info__text p {
        font-size: 16px;
    }
    
    .company-info__text p:not(:last-child){
        margin-bottom: 19px;
    }
    
    .company-info__text p:last-of-type {
        margin-bottom: 24px;
    }

    .company-info__text blockquote {
        line-height: 130%;
    }

    .company-info__image {
        position: absolute;
        bottom: -90%;
        width: 251px;
        aspect-ratio: 27/37;
        bottom: -180px;
        max-width: 100%;
    }
    
}

.slogan {
    color: #000;
    text-align: center;
    font-size: 56px;
    font-style: italic;
    font-weight: 300;
    min-height: 92px;
    padding: 60px 0;
}

@media screen and (max-width: 991px){
    .slogan {
        font-size: 32px;
        padding: 40px 0 20px;
    }
}

.advantages {
    margin-bottom: 105px;
}

.advantages__wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-right: 80px;
    padding-top: 20px;
}

.advantages__image {
    aspect-ratio: 112/121;
    flex-shrink: 0;
    max-width: 440px;
    height: auto;
}

@media screen and (min-width: 992px){
    .advantages__image {
        width: 36%;
    }
}

.advantages__image img {
    width: 100%;
    height: auto
}

.advantages__list {
    padding: 40px 0 49px 36px;
}

.advantage-item {
    display: flex;
    align-items: CENTER;
    gap: 22px;
}


.advantage-item:not(:last-child) {
    margin-bottom: 25px;
}

.advantage-item__title {
    margin-bottom: 10px;
    font-size: 24px;
}

.advantage-item__text {
    font-size: 16px;
    color: #5B5B5B;
    margin-bottom: 10px;
}

.advantage-item__icon {
    width: 60px;
}

.advantages__text {
    font-size: 24px;
    max-width: 640px;
}

@media screen and (max-width: 991px){
    .advantages {
        margin-bottom: 60px;
    }
    
    .advantages__info {
        max-width: 100%;
    }

    .advantage-item:not(:last-child) {
        margin-bottom: 13px;
        gap: 18px;
    }
    
    .advantages__image {
        max-width: 230px;
    }
    
    .advantages__image img {
        height: auto;
    }
    
    .advantage-item__title {
        font-size: 20px;
    }
    
    .advantage-item__text {
        font-size: 15px;
    }
    
    .advantage-item__icon {
        width: 45px;
        flex-shrink: 0;
    }
    
    .advantage-item__icon svg {
        width: 100%;
    }
    
    .advantages__text {
        font-size: 20px;
    }
}

@media screen and (max-width: 991px){
    .advantages__wrapper {
        flex-direction: column;
        gap: 54px;
        padding-right: 0;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .advantages__list {
        padding: 20px 10px;
    }
}

.page-template-page-about-us .learnmore {
    margin-bottom: 109px;
}

@media screen and (max-width: 991px){
    .page-template-page-about-us .learnmore {
        margin-bottom: 68px;
    }
}

.team {
    margin-bottom: 157px;
}

.team__content {
    display: flex;
    justify-content: space-between;
    padding: 0 63px;
    margin-top: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.team__featured {
    max-width: 474px;
    margin-left: 10px;
    margin-bottom: 60px;
}

.team__featured-photo {
    margin-bottom: 29px;
}

.team__featured-info {
    padding-left: 21px;
}

.team__featured-name {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 3px;
}

p.team__featured-position {
    color: #5B5B5B;
    font-size: 24px;
    line-height: 120%; /* 28.8px */
    margin-bottom: 16px;
}

.team__featured-email {
    color: #236388;
    font-size: 24px;
    font-weight: 600;
}

.team__list {
    max-width: 531px;
}

.team__list-item:not(:last-child) {
    margin-bottom: 49px;
}

.team__list-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 135%;
    margin-bottom: 0;
}

.team__list-position {
    color: #5B5B5B;
    font-size: 24px;
}

@media screen and (max-width: 1200px){
    .team__content {
        padding: 0;
    }

}

@media screen and (max-width: 991px){
    .team {
        margin-bottom: 131px;
    }
        
    .team__content {
        padding: 0;
        margin-top: 56px;
        justify-content: space-around;
    }
    
    .team__featured {
        margin-bottom: 37px;
        margin-left: 0;
    }
    
    .team__featured-photo {
        width: 176px;
        aspect-ratio: 1/1;
    }
    
    .team__featured-photo img {
        height: auto;
    }
    
    .team__featured-info {
        max-width: 300px;
        padding-left: 0;
    }
    
    .team__featured-name {
        font-size: 40px;
        margin-bottom: 9px;
    }
    
    .team__featured-position {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .team__list {
        max-width: 320px;
    }

    .team__list-item:not(:last-child) {
        margin-bottom: 47px;
    }
    
    .team__list-position {
        font-size: 20px;
    }

    p.team__featured-position {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    h4.team__list-name {
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 767px){
    .team__content {
        justify-content: flex-start;
    }
}

.page-template-page-about-us .cta {
    margin-bottom: 70px;
}


/* Front page */
.banner {
    height: 100vh;
    min-height: 915px;
    max-height: 900px;
    display: flex;
    align-items: center;
    color: white;
    background-size: cover;
    background-position: center;
    margin-bottom: 33px;
}

.banner__title {
    font-size: 64px;
    margin: 0 0 20px;
}

.banner__inner {
    max-width: 860px;
    padding-top: 50px;
}

.banner__subtitle {
    color: rgba(255, 255, 255, 0.60);
    font-size: 20px;
    max-width: 630px;
    margin-bottom: 50px;
}


@media screen and (max-width: 991px){
    .site-header__mobile-company {
        color: rgba(255, 255, 255, 0.60);
        font-size: 16.706px;
        font-weight: 700;
        text-align: left;
        max-width: 200px;
    }
    
    .site-header__mobile-company-name {
        font-size: 17px;
    }
    
    .banner {
        min-height: 795px;
        max-height: 795px;
        margin-bottom: 41px;
    }
    
    .banner__inner {
        padding: 12px;
        max-width: 600px
    }

    .banner__title {
        font-size: 36px;
        margin: 0 0 10px;
    }

    .banner__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    } 
}

@media screen and (max-width: 430px){ 
    .banner__inner {
        padding: 0 12px;
        max-width: 312px;
        margin-bottom: 13px;
    }
}

.home .stats {
    margin-bottom: 80px;
}


.home .services-front {
    text-align: center;
}

.home .services {
    padding: 40px 0;
}


.home .company-info__btn {
    margin-top: 53px;
}

.home .learnmore {
    margin-bottom: 90px;
}

.home .cta {
    padding: 119px 0 70px;
}

.home .company-info {
    margin-bottom: 0px;
}

.home .company-info__text {
    padding: 88px 162px 103px 110px;
}

.home .company-info__text .section__subtitle {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
}


.home .team {
    margin-bottom: 61px;
}

.home .team__content {
    padding: 0 40px;
}

.home .team__featured {
    margin-left: 54px;
}

@media screen and (max-width: 1200px){
    .home .team__content {
        padding: 0;
    }
    
    .home .team__featured {
        margin-left: 0;
        max-width: 400px;
    }

    .team__featured-info {
        padding-left: 0px;
    }
}

.home .cases {
    text-align: center;
    padding: 50px 0 120px;
}

.home .cases__list {
    padding-top: 76px;
    max-width: 1207px;
    margin: auto;
}

.home .case {
    max-width: 550px;
}

.home .cases__btn {
    display: inline-flex !important;
    margin-top: 50px;
}

@media screen and (max-width: 1200px){
    .home .cases__list {
        gap: 30px;
    }
}

@media screen and (max-width: 991px){ 
    .home .stats {
        margin-bottom: 50px;
    }
    
    .home .services {
        padding: 20px 0 45px;
    }
    
    .home .services-front {
        margin-bottom: 54px;
    }
    
    .home .company-info {
        padding-bottom: 220px;
    }
    
    .home .company-info__btn {
        margin-top: 30px;
    }
    
    .home .company-info__image {
        bottom: -223px;
    }
    
    .home .company-info__text {
        padding: 35px 6px 170px 20px;
    }
    
    .home .company-info__text .section__subtitle {
        font-size: 16px;
        line-height: 130%;
    }
    
    .home .company-info__text p:last-of-type {
        margin-bottom: 10px;
    }
    
    .slogan {
        padding: 60px 0 20px;
    }
    
    .advantages__list {
        /* padding: 20px 0; */
    }
    
    .advantage-item {
        align-items: flex-start;
    }
    
    
    .home .learnmore {
        margin-bottom: 48px;
    }
    
    
    .home .case__excerpt {
        margin-bottom: 20px;
    }
    
    .home .sliders {
        margin-bottom: 0px;
    }
    
    .home .related {
        padding: 22px 0 60px;
    }
    
    .home .cta {
        padding: 20px 0 70px;
    }
}

/* Cookie Alert Styles */
.cookie-notice {
    position: fixed;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    max-width: 720px;
    width: calc(100% - 30px);
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #5a6b7a;
}

.cookie-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #EAAE00;
    font-size: 16px;
    font-weight: 600;
    color: black;
    border-radius: 0.26666666666666666rem;
}

.cookie-btn.accept:hover {
    background: #EAAE00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px hsl(44.62deg 100% 45.88% / 35%);
}

.cookie-btn.decline {
    background: #f8f9fa;
    color: #5a6b7a;
    border: 1px solid #e0e6ed;
}

.cookie-btn.decline:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Responsive ÃÂ´ÃÂ»Ã‘Â ÃÂ¼ÃÂ¾ÃÂ±ÃÂ¸ÃÂ»Ã‘Å’ÃÂ½Ã‘â€¹Ã‘â€¦ Ã‘Æ’Ã‘ÂÃ‘â€šÃ‘â‚¬ÃÂ¾ÃÂ¹Ã‘ÂÃ‘â€šÃÂ² */
@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column
    }
    
    .cookie-notice {
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 100%;
        font-size: 15px !important;
    }
}

/* ÃÂ¢ÃÂµÃÂ¼ÃÂ½ÃÂ°Ã‘Â Ã‘â€šÃÂµÃÂ¼ÃÂ° (ÃÂ¾ÃÂ¿Ã‘â€ ÃÂ¸ÃÂ¾ÃÂ½ÃÂ°ÃÂ»Ã‘Å’ÃÂ½ÃÂ¾) */
@media (prefers-color-scheme: dark) {
    .cookie-notice {
        background: #1a2634;
        border-color: #2d3748;
    }
    
    .cookie-text h3 {
        color: #e2e8f0;
    }
    
    .cookie-text p {
        color: #a0b3c9;
    }
    
    .cookie-btn.decline {
        background: #2d3748;
        color: #e2e8f0;
        border-color: #4a5568;
    }
    
    .cookie-btn.decline:hover {
        background: #4a5568;
    }
}

ul.wp-block-list, ol.wp-block-list {
    margin-top: 20px;
}

ol.wp-block-list li {
    margin-bottom: 20px;
}

.fancybox-active {
    height: auto;
    margin: 0 !important;
    margin-right: 0 !important;
}
