/*!
Theme Name: neoform
Theme URI: http://underscores.me/
Author: xside
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: neoform
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready


*/



/* ЦВЕТА */

:root {
    --primary: #B0D033;
    --blue: #2F379D;
}

/* ОБЩИЕ СТИЛИ */

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

body {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    line-height: 1.4;
    color: #000;
}

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

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

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease-in-out;
}

a:hover {
    opacity: 0.8;
}

h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--blue);
}

h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
}

input{
    font-family: 'Roboto', sans-serif;
}





.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 20px 32px;
    font-weight: 500;
    border-radius: 16px;
    line-height: 1;
    cursor: pointer;
    min-width: 256px;
    text-align: center;
}






/* ШАПКА */

.header{
    padding: 15px 0;
    z-index: 10;
}

.header .menu ul{
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.header .menu a {
    font-weight: 500;
    display: flex;
    align-items: center;
}

.header .menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #F6F7FF;
    display: none;
    min-width: 250px;
    border-radius: 12px;
    z-index: 100;
    border: 1px solid var(--primary);
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
}



.header .menu .sub-menu  li {
    padding: 10px 20px;
    position: relative;
    width: 100%;
    color: var(--blue);
}

.header .menu .sub-menu  li:hover{
    background-color: var(--primary);
    color: #fff;
    border-radius: 10px;
}

.header .menu .sub-menu  li a{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Стили для вложенного подменю */
.header .menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 0px;
    
}

.header .menu .sub-menu .sub-menu li{
    color: var(--blue)
}

.header .menu .sub-menu .sub-menu li:hover{
    background-color: var(--primary);
    color: #fff;
}

/* Добавляем стрелку для элементов с подменю */
.header .menu .sub-menu  li.has-child > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;    
    border-right: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);
    transform: rotate(-45deg);
    margin-left: 8px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.header .menu > ul > li.has-child {
    position: relative;
}

.header .menu > ul > li.has-child > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.header .menu > ul > li.has-child:hover > a::after {
    transform: rotate(-135deg);
}

.menu-toggle{
    display: none;
}










/* ГЛАВНАЯ */

.section-hero {
    padding: 60px 0;
}

.section-hero .wrapper{
    gap: 40px;
}

.section-hero .hero-content{
    min-width: calc(280px * 3 + 32px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 45px;
}

.section-hero p{
    max-width: 700px;
}

.section-hero .hero-content .btn{
    margin-top: 30px;
}

.section-hero .hero-content .hero-info{
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-hero .hero-info .hero-info-item{
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 24px;
    background-image: url(assets/img/info-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-hero .hero-info .hero-info-item .num{
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.section-hero .hero-info .hero-info-item .title{
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: var(--blue);
}

.section-hero .hero-info .hero-info-item .text{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: var(--blue);
}

.section-hero.homepage-hero .hero-image{
    margin-left: -80px;
    margin-right: -160px;
    margin-top: -40px;
}

.section-hero .text-1{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--blue);
    position: absolute;
    top: 55%;
    left: -140px;
    width: 140px;
    z-index: 1;
}

.section-hero.homepage-hero .text-1{
    left: -60px;
}

.section-hero .text-1::after{
    content: '';
    width: 75px;
    height: 33px;
    background-image: url(assets/img/line-dot.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 30px;
    right: -30px;
}

.section-hero .text-2{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--blue);
    position: absolute;
    top: 35%;
    right: 25px;
    width: 120px;
    z-index: 1;
}

.section-hero .text-2::after{
    content: '';
    width: 75px;
    height: 33px;
    background-image: url(assets/img/line-dot-left.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50px;
    right: 60px;
}

.section-hero ul{
    padding-left: 20px;
    color: var(--blue);
    font-weight: 500;
}

.section-hero ul li::marker{
    color: var(--primary);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
}


.section-categories{
    padding: 100px 0;
    background-image: url(assets/img/cat-bg.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.section-categories h2{
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.section-categories .wrapper{
    gap: 25px;
    row-gap: 50px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}

.section-categories .item{
    width: calc(33.3% - 20px);
    background: #FAFAFA;
    border-radius: 20px;
    border: 0.5px solid #B0D033;
    z-index: 1;
}

.section-categories .item:hover{
    opacity: 1;
}

.section-categories .item .title{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    height: 104px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
}

.section-categories .item .image{
    height: 100%;
}

.section-categories .item .image img{
    width: calc(100% - 20px);
    margin: 10px auto;
    height: calc(100% - 134px);
    border-radius: 20px;
    object-fit: cover;
}

.section-categories::after{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(assets/img/track.svg);
    position: absolute;
    bottom: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 0;
}


.section-works{
    margin: 100px 0;
    padding: 80px 0;
    overflow: hidden;
}

.section-works::before{
    content: '';
    width: 62%;
    height: calc(100% - 30px);
    background-color: var(--blue);
    position: absolute;
    bottom: 15px;
    right: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    z-index: 1;
}

.section-works::after{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(assets/img/track-2.svg);
    position: absolute;
    bottom: -15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 0;
}

.section-works h2{
    margin-bottom: 40px;
}

.section-works .container{
    display: flex;
    gap: 40px;
}

.section-works .works-content{
    min-width: 320px
}

.section-works .works-slider-wrapper{
    width: 100%;
}

.section-works .works-left{
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 100px);
}

.section-services{
    margin: 100px 0;
}

.section-services h2{
    margin-bottom: 40px;
    text-align: center;
}

.tabs{
    width: 100%;
}

.tabs-control{
    display: flex;
    gap: 6px;
    list-style: none;
    justify-content: center;
}

.tabs-control li{
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: var(--blue);
    padding: 20px 28px;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid var(--blue);
}

.tabs-control li.active{
    background-color: var(--blue);
    color: #fff;
}

.tabs-content{
    margin-top: 40px;
}

.tab-content{
    padding: 40px;
    background: #F6F7FF;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    display: none;
}

.tab-content-text{
    width: 50%;
}

.tab-content-text h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 20px;
}

.tab-content-text ul{
    list-style: none;
    margin-bottom: 20px;
    font-weight: 300;
}

.tab-content-text ul li{
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tab-content-text ul li::before{
    content: '';
    min-width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 8px;
}

.tab-content-text ul li:last-child{
    margin-bottom: 0;
}   

.tab-content-text .subtitle{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 12px;
    margin-top: 40px;
}

.tab-content-text p{
    font-weight: 300;
}

.tab-content-image{
    width: 50%;
}

.tab-content-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.tab-content.active{
    display: flex;
}       

.section-why{
    padding: 65px 0;
    background-color: var(--blue);
}

.section-why h2{
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.section-why .wrapper{
    gap: 32px;
    row-gap: 32px;
    flex-wrap: wrap;
}

.section-why .item{
    width: calc(33.3% - 22px);
    background: #F6F7FF;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--primary);
    transition: all 0.2s ease-in-out;
    min-height: 235px;
}

.section-why .item.item-img{
    padding: 0;
    background: transparent;
    border: none;
}

.section-why .item.item-img img{
    width: 100%;    
}

.section-why .item:hover{
    background-color: var(--primary);
    border-color: var(--primary);
}

.section-why .item:hover .title-text{
    color: #fff;
} 

.section-why .item:hover .content p{
    color: #fff;
}

.section-why .item:hover .title img{
    filter: brightness(0) invert(1);
}

.section-why .item .title{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-why .item .title img{
    width: 40px;    
}

.section-why .item .title-text{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
}

.section-partners{
   margin: 100px 0;
}

.section-partners h2{
    margin-bottom: 40px;
    text-align: center;
}

.section-partners .wrapper{
    gap: 25px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal{
    text-align: center;
    bottom: -30px;
}

.swiper-pagination-bullet-active{
    background-color: var(--blue);
}

.section-bottom{
    padding: 60px 0;
    background-color: #F5F5F5A8;
}

.section-bottom.contacts-bottom{
    background-color: #fff;
}

.section-bottom::before{
    content: '';
    width: 50%;
    height: calc(100% - 232px);
    background-color: var(--primary);
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.section-bottom.contacts-bottom::before{
    display: none;
}

.section-bottom h2{
    margin-bottom: 40px;
    text-align: center;
}

.section-bottom .wrapper{
    gap: 25px;
}

.section-bottom.contacts-bottom .wrapper{
    align-items: stretch;
}

.section-bottom .contacts{
    min-width: 420px;
    width: 420px;
    background-color: var(--blue);
    padding: 70px 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.section-bottom.contacts-bottom .contacts{
    border-radius: 20px;
}

.section-bottom .contacts-item{
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.section-bottom .contacts-item .title{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.section-bottom .contacts-item .text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.section-bottom .socials{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}   

.section-bottom .socials .title{
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.section-bottom .socials-links{
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-bottom .map{
    width: 100%;
}

.section-bottom .map iframe{
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
}

.section-bottom.contacts-bottom .map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.section-bottom.contacts-bottom .map iframe{
    height: 550px;
}



.bottom-form{
    padding: 20px 0 80px 0;
    background-color: #F5F5F5A8;
}

.bottom-form h2{
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 500;
}

.bottom-form .wrapper{
    gap: 25px;
}

.bottom-form .form{
    width: 100%;
}

.bottom-form form{
    width: 100%;
    display: flex;
    gap: 20px;
}   

.bottom-form .form input{
    width: 100%;
    padding: 13px 24px;
    border-radius: 5px;
    border: none;
    flex: 1;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    height: 60px;
}

.bottom-form .form input::placeholder{
    font-size: 20px;
    color: #000;
}

.bottom-form .form p{
    display: flex;
    gap: 10px;
}

.bottom-form .form p > .wpcf7-form-control-wrap{
    flex: 1;
}

.bottom-form .form .wpcf7-submit{
    background-color: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    height: 60px;
}

.bottom-form .form .wpcf7-response-output{
    position: absolute;
    bottom: -30px;
    font-size: 14px;
    left: 0;
    margin: 0;
    padding: 0;
    border: none;
}

.bottom-form .form .wpcf7-submit:hover{
    opacity: 0.8;
}

.bottom-form .form .wpcf7-not-valid-tip{
    font-size: 12px;
    left: 25px;
    bottom: -2px;
}

.section-product-type{
    padding: 100px 0;
    background-color: var(--blue);
}

.section-product-type h2{
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    padding-left: 40px;
    position: relative;
}

.section-product-type h2::before{
    content: '';
    width: 67px;
    height: 67px;
    background-image: url(assets/img/puzzle.svg);
    display: inline-block;
    margin-right: 20px;
    margin-bottom: -10px;
}

.section-product-type .tabs-control li{
    background-color: #fff; 
    color: var(--blue);
}

.section-product-type .tabs-control li.active{
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.section-product-type .tab-content{
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
}

.section-product-type .tab-content.active{
    display: block;
}

.section-product-type .tab-content h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    display: flex;
    align-items: center;
}

.section-product-type .tab-content h3::before{
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.section-product-type .tab-content .tab-content-box{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section-product-type .tab-content .tab-content-box .item{
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    width: calc(33.3% - 15px);
}

.section-product-type .tab-content .tab-content-box .item .title{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.section-product-type .tab-content .tab-content-box .item .text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
}

.section-how-we-work{
    margin: 100px 0;
}

.section-how-we-work h2{
    margin-bottom: 40px;
    text-align: center;
}

.section-how-we-work .wrapper{
    gap: 80px;
    align-items: stretch;
}

.section-how-we-work .left-col{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-how-we-work .left-col .item{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.section-how-we-work .left-col .item .number{
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.section-how-we-work .left-col .item .title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 15px;
}

.section-how-we-work .left-col .item .text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
}   

.section-how-we-work .right-col{
    width: 588px;
    min-width: 588px;
    border-radius: 20px;
    background-image: url(assets/img/hww-bg.png);
    display: flex;
    align-items: flex-end;
}

.section-how-we-work .right-col .content{
    padding: 20px 70px;
    background-color: #daddf1;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    text-align: center;
}

.section-how-we-work .right-col .content p{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
}

.section-how-we-work .right-col .content .btn{
    margin-top: 20px;
}

.section-advantages{
    margin: 100px 0;
}

.section-advantages h2{
    margin-bottom: 40px;
    text-align: center;
}

.section-advantages .wrapper{
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.section-advantages .item{
    width: calc(33.3% - 22px);
    padding: 30px 20px;
    background-color: var(--blue);
    border-radius: 20px;
    color: #fff;    
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    min-height: 230px;
}

.section-advantages .item .title{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}

.section-advantages .item .text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 40px;
}

.section-advantages .item .number{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
    background-color: var(--primary);
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-advantages .item .number::before{
    content: '';
    width: 55px;
    height: 55px;
    background-image: url(assets/img/adv-num-text.svg);
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    position: absolute;
    top: -14px;
    left: -13px;
    display: inline-block;
}

.section-advantages .item:hover{
    background-color: var(--primary)
}

.section-advantages .item:hover .number{
    background-color: var(--blue);
    color: #fff;
}

.section-advantages .item:hover .number::before{
    filter: invert(1);
}

.section-why-choose-us{
    padding: 100px 0;
    background-color: var(--blue);
}

.section-why-choose-us h2{
    margin-bottom: 30px;
    text-align: center; 
    color: #fff;
}

.section-why-choose-us .subtitle{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-why-choose-us .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-why-choose-us .wrapper{
    gap: 40px;
    row-gap: 100px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.section-why-choose-us .item{
    display: flex;
    align-items: center;
    gap: 20px;
    width: calc(33.3% - 28px);
}

.section-why-choose-us .item .text{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

.section-why-choose-us .item img{
    width: 80px;
    height: 80px;
    margin-top: -15px;
}

.section-why-choose-us .item:nth-child(2) img{
    transform: rotate(-90deg);
}

.section-why-choose-us .item:nth-child(3) img{
    transform: rotate(180deg);
}

.section-why-choose-us .item:nth-child(4) img{
    transform: rotate(90deg);
}

.section-why-choose-us .item:nth-child(5) img{
    transform: rotate(-90deg);
}

.section-why-choose-us .item:nth-child(6) img{
    transform: rotate(180deg);
}

.section-why-choose-us .btn{
    margin-top: 40px;
}

.section-hero-equipment{
    margin: 50px 0;
}

.section-hero-equipment .wrapper{
    gap: 100px;
    align-items: stretch;
}

.section-hero-equipment .left-col{
    width: 100%;
}

.section-hero-equipment .left-col h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 30px;
}

.section-hero-equipment .left-col p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-hero-equipment .left-col .btn{
    margin: 30px 0;
}

.section-hero-equipment .left-col ul{
    padding-left: 20px;
    font-weight: 300;
    margin: 30px 0;
}

.section-hero-equipment .left-col ul li::marker{
    color: var(--primary);
    font-size: 24px;
}
   
.section-hero-equipment .right-col{
    min-width: 490px;
    width: 490px;
    border-left: 1px solid #0000003B
}



.section-hero-equipment .right-col .toc{
    background: #FBFBFB;
    border-radius: 20px;
    padding: 35px 25px;
    margin-left: 10px;
}

.section-hero-equipment .right-col .toc .title{
    font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-hero-equipment .right-col .toc .title::after{
    content: '+';
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-left: 10px;
    font-weight: 300;
}

.section-hero-equipment .right-col .toc .toc-item.active .title::after{
    content: '—';
    
}

.section-hero-equipment .right-col .toc > .title{
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-hero-equipment .right-col .toc > .title::after{
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(assets/img/toc-arrow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-left: 10px;
}

.section-hero-equipment .right-col .toc .toc-item{
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid #0000003B;
}



.section-hero-equipment .right-col .toc .toc-item ul{
    list-style: none;
    padding-left: 30px;
    font-weight: 300;
    margin: 30px 0;
    display: none;
}

.section-hero-equipment .right-col .toc .toc-item.active ul{
    display: block;
}

.section-hero-equipment .right-col .toc .toc-item ul li{
    margin-bottom: 15px;
}


.section-hero-equipment .right-col .toc .toc-item ul li:last-child{
    margin-bottom: 0;
}

.section-hero-equipment .right-col .toc .toc-item ul li a{
    transition: color 0.2s ease-in-out;
}

.section-hero-equipment .right-col .toc .toc-item ul li a:hover{
    color: var(--blue);
}

.section-equipment-slider{
    margin: 100px 0;
    padding: 70px 0;
    overflow: hidden;
}

.section-equipment-slider::before{
    content: '';
    width: 50%;
    height: 100%;
    background-color: var(--blue);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.section-equipment-slider::after{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(assets/img/track-2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.section-equipment-slider .equipment-slider{
    margin-left: -5%;
    margin-right: -5%;
}

.section-form{
    margin: 100px 0;
}

.section-form .container{
    background: linear-gradient(90deg, #2F379D 0%, #101337 100%);
    padding: 50px 40px;
    border-radius: 20px;
}

.section-form h2{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 40px;
}

.section-form .left-col{
    width: 100%;
}

.section-form .left-col .text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    max-width: 500px;
}

.section-form .left-col .text p{
    margin-bottom: 20px;
}

.section-form .left-col .text p:last-child{
    margin-bottom: 0;
}   

.section-form .left-col .contacts{
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
}

.section-form .left-col .contact-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.section-form .left-col .contact-item .content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.section-form .left-col .contact-item .content .title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.section-form .left-col .contact-item .content .text{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.section-form .left-col .socials{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.section-form .left-col .socials .title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

.section-form .left-col .socials .socials-links{
    display: flex;
    align-items: center;
    gap: 10px;
}









.section-form .right-col{
    width: 345px;
    min-width: 345px;
}

.section-form .right-col form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-form .right-col form input{
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
    width: 100%;
}

.section-form .right-col form p{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-form .right-col form p br{
    display: none;
}

.section-form .right-col form .wpcf7-response-output{
    position: absolute;
    bottom: 0px;
    font-size: 12px;
    left: 0;
    margin: 0;
    padding: 0;
    border: none;
    color: #fff;
}

.section-form .right-col form .wpcf7-submit:hover{
    opacity: 0.8;
}

.section-form .right-col form .wpcf7-not-valid-tip{
    font-size: 12px;
    left: 25px;
    bottom: -2px;
}

.section-form .right-col form input::placeholder{
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
}

.section-form .right-col form .wpcf7-submit{
    background-color: var(--primary);
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.section-form .right-col form .btn:hover{
    opacity: 0.8;
}

.section-subcategories{
    padding: 80px 0 0 0;
    background-image: url(assets/img/cat-bg.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
}

.section-subcategories h2{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.section-subcategories .wrapper{
    gap: 50px;
    flex-direction: column;
}

.section-subcategories .item{
    display: flex;
    align-items: stretch;
    gap: 60px;
    background: #F6F7FF;
    padding: 50px 40px;
    border-radius: 20px;
}

.section-subcategories .item:nth-child(even){
    flex-direction: row-reverse;
}

.section-subcategories .item .col-left{
    width: 60%;
}

.section-subcategories .item .col-left h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);     
    margin-bottom: 20px;
}

.section-subcategories .item .col-left p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
    margin-bottom: 20px;
}

.section-subcategories .item .col-left p:last-child{
    margin-bottom: 0;
}

.section-subcategories .item .col-left ul{
    padding-left: 30px;
    font-weight: 300;
    margin: 20px 0;
}

.section-subcategories .item .col-left ul li::marker{
    color: var(--primary);
    font-size: 24px;
}


.section-subcategories .item .col-left .subtitle{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 20px;
}

.section-subcategories .item .col-left .btn-group{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.section-subcategories .item .col-right{
    width: 40%;
}

.section-subcategories .item .col-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contacts-top-section{
    padding: 60px 0;
}

.contacts-top-section .wrapper{
    gap: 25px;
    justify-content: space-between;
    align-items: flex-start;
}

.contacts-top-section .col-left{
    width: 63%;
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    row-gap: 50px;
}

.contacts-top-section .item{
    width: calc(50% - 50px);
}

.contacts-top-section .item .title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 10px;
}

.contacts-top-section .item .content{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
}

.contacts-top-section .item .content a{
    display: block;
}


.contacts-top-section .col-right{
    width: 37%;
}

.contacts-top-section .cta{
    background-color: var(--blue);
    padding: 40px 40px;
    border-radius: 20px;
    text-align: center;
}

.contacts-top-section .cta .title{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 10px;
}

.contacts-top-section .cta p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
}

.contacts-top-section .cta .btn{
    margin-top: 40px;
}

.section-page-content{
    margin: 40px 0 100px 0;
}

.section-page-content h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    margin-bottom: 20px;
}

.section-page-content .wrapper{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.section-page-content .subtitle{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    margin-top: 20px;
}

.section-page-content ul{
    padding-left: 30px;
    font-weight: 300;
}

.section-page-content ul li::marker{
    color: var(--primary);
    font-size: 24px;
}

.section-page-content h2{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    margin-top: 20px;
}

.section-page-content p{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #000;
}

.section-error{
    margin: 80px 0;
}

.section-error .wrapper{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.section-error h1{
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--blue);
    max-width: 600px;
}

.section-error p{
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    max-width: 800px;
    margin: 80px 0;
}

.section-error img{
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 850px);
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}





.footer{
    padding: 60px 0;
    background-color: var(--blue);
    color: #fff;
}

.footer .wrapper{
    gap: 25px;  
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
}

.footer .logo{
    width: 100%;
    text-align: center;
}

.footer .title{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.footer .contact-group{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer .contact-group + .contact-group{
    margin-top: 20px;
}

.footer .contact-item{
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer  ul{
    list-style: none;
    margin-top: 10px;
}

.footer ul li{
    margin-bottom: 10px;
    font-weight: 300;
}

.footer ul li:last-child{
    margin-bottom: 0;
}

.footer form{
    width: 470px;
    min-width: 470px;
    display: flex;
    gap: 10px;
}

.footer form input{
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 25px;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    color: var(--blue);
}

.footer form .btn{
    background-color: var(--primary);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 15px 15px;
    border-radius: 5px;
}

.footer .policy{
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    margin-top: 20px;
    width: 470px;
    min-width: 470px;
}

.section-works .works-slider .image {
    position: relative;
}

.section-works .works-slider .number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--blue);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 10px;
}


@media(max-width: 1024px){

    h1{
        font-size: 60px;
    }

    h2{
        font-size: 32px;
    }

    .container{
        padding: 0 60px;
    }

    .header .menu{
        display: none;
    }

    .header .header-links{
        display: none;
    }

    .menu-toggle{
        display: inline-block;
        width: 30px;
        height: 24px;
        background-image: url(assets/img/burger.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: all .3s ease-in-out;
    }

    .menu-toggle.open{
        background-image: url(assets/img/close.svg);
        height: 24px;
    }

    .header.menu-open .menu{
        display: block;
    }

    .header .menu{
        position: absolute;
        top: calc(100% + 16px);
        left: -16px;
        width: calc(100% + 32px);
        background: #F6F7FF;
        padding: 0;
        z-index: 10;
    }

    .header .menu ul{
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
    }

    .header .menu ul li{
        width: 100%;
    }

    .header .menu ul li a{ 
        font-size: 16px;
        font-weight: 500;
        color: var(--blue);
        padding: 10px 20px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu > ul > li.has-child > a::after{
        width: 8px;
        height: 8px;
        margin-right: 10px;
    }
    
    .header .menu > ul > li.has-child:hover > a::after{
        margin-top: 4px;
    }

    .header .menu ul li a:hover{
        background: var(--primary);
        color: #fff;
    }

    .header .menu .sub-menu{
        position: relative;
        min-width: 0;
        border: none;
        display: none;
    }

    .header .menu .sub-menu li{
        padding: 0;
    }

    .header .menu .sub-menu li a{
        padding: 10px 30px;
    }

    .header .menu .sub-menu li.has-child > a::after{
        width: 8px;
        height: 8px;
        transform: translateY(-50%) rotate(45deg);
        right: 30px;
    }

    .header .menu .sub-menu li:hover{
        background-color: transparent;
        color: var(--blue);
    }

    .header .menu .sub-menu .sub-menu{
        left: 20px;
    }

    .header .menu .sub-menu .sub-menu li a{
        color: var(--primary);
    }

    .header .menu .sub-menu .sub-menu li a:hover{
        background-color: var(--primary);
        color: #fff;
    }
    
    

    .section-hero{
        padding: 20px 0 60px 0;
    }

    .section-hero .wrapper{
        flex-direction: column;
    }

    .section-hero.homepage-hero .hero-image{
        margin-left: 0;
        margin-right: 0;
        margin-top: 20px;
    }

    .section-hero .hero-content{
        min-width: 0;
    }

    .section-hero .hero-image{
        margin-top: 20px;
    }

    .section-hero .hero-image img{
        max-width: 500px;
    }

    .section-hero .hero-info .hero-info-item{
        width: 200px;
        gap: 10px;
        background-size: contain;
    }

    .section-hero .hero-info .hero-info-item .title{
        font-size: 16px;
    }

    .section-hero .hero-info .hero-info-item .num{
        font-size: 40px;
    }

    .section-hero .hero-content .btn{
        margin-top: 0;
    }

    .section-hero.homepage-hero .text-1{
        left: -20px;
    }

    .section-hero .text-2{
        right: 10px;
    }

    .section-categories{
        padding: 50px 0;
    }

    .section-categories .wrapper{
        gap: 15px;
    }

    .section-categories .item{
        width: calc(50% - 10px);
    }

    .section-categories .item .title{
        font-size: 20px;
        height: 95px;
    }

    .section-categories::after{
        bottom: 50px;
    }

    .section-works{
        margin: 80px 0;
        padding: 0 0 50px 0;
    }

    .section-works .container{
        flex-direction: column;
    }

    .section-works h2{
        margin-bottom: 20px;
    }

    .section-works .title{
        text-align: center;
        margin-bottom: 20px;
    }

    .section-works .works-left{
        display: none;
    }
    

    .section-works::before{
        z-index: 0;
        height: calc(100% - 155px);
        width: 95%;
    }

    .section-works::after{
        content: none;
    }
    
    .section-services{
        margin: 80px 0;
    }

    .tab-content{
        flex-direction: column;
    }
    
    .tab-content-text{
        width: 100%;
    }
    
    .tab-content-image{
        width: 100%;
        margin-top: 20px;
    }

    .tabs-control{
        flex-wrap: wrap;
    }

    .section-why .wrapper{
        gap: 15px;
        row-gap: 15px;
    }

    .section-why .item{
        width: calc(50% - 8px);
    }

    .section-why .item.item-img{
        display: none;
    }
    
    .section-partners{
        margin: 80px 0;
    }

    .section-partners h2{
        margin-bottom: 20px;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal{
        bottom: -15px;
    }

    .section-bottom .wrapper{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-bottom .map img{
        height: 300px;
        object-fit: cover;
    }

    .section-bottom::before{
        width: calc(100% - 60px);
        height: calc(100% - 524px);
        bottom: 385px;
    }

    .bottom-form{
        display: none;
    }

    .section-hero .text-1{
        left: -60px;
    }

    .section-product-type{
        padding: 50px 0;
    }

    .section-product-type h2::before{
        width: 42px;
        height: 42px;
        background-size: contain;
    }

    .section-product-type .tab-content h3{
        font-size: 20px;
    }

    .section-product-type .tab-content .tab-content-box .item .title{
        font-size: 20px;
    }

    .section-product-type .tab-content .tab-content-box .item .text{
        font-size: 14px;
    }

    .section-how-we-work{
        margin: 60px 0;
    }

    .section-how-we-work .wrapper{
        flex-direction: column;
    }

    .section-how-we-work .right-col{
        width: 100%;
        background-size: cover;
    }

    .section-how-we-work .right-col .content{
        background-color: transparent;
    }

    .section-advantages{
        margin: 80px 0;
    }

    .section-advantages .wrapper{
        gap: 16px;
    }

    .section-advantages .item{
        width: calc(50% - 8px);
        padding: 16px;
    }

    .section-advantages .item .title{
        font-size: 18px;
    }

    .section-advantages .item .text{
        font-size: 16px;
        margin-top: 25px;
    }

    .section-advantages .item .number{
        font-size: 20px;
        min-width: 30px;
    }

    .section-why-choose-us{
        padding: 50px 0;
    }

    .section-why-choose-us .wrapper{
        gap: 16px;
        row-gap: 40px;
    }

    .section-why-choose-us .item{
        width: calc(50% - 8px);
    }

    .section-why-choose-us .item .text{
        font-size: 20px;
        text-align: left;
    }

    .section-hero-equipment .right-col{
        display: none;
    }

    .section-equipment-slider{
        margin: 60px 0;
    }

    .section-equipment-slider::after{
        top: -30px;
    }

    .section-form{
        margin: 80px 60px;
    }

    .section-form .wrapper{
        align-items: flex-end;
        gap: 20px;
    }

    .section-form .left-col .contacts{
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-top: 40px;
    }

    .section-form .left-col .text{
        margin-bottom: 0;
    }

    .section-form .right-col{
        width: 100%;
        min-width: 0;
    }
    
    .section-subcategories h2{
        font-size: 32px;
    }

    .section-subcategories .item{
        flex-direction: column;
    }

    .section-subcategories .item .col-left{
        width: 100%;
    }

    .section-subcategories .item .col-right{
        width: 100%;
    }

    .section-subcategories .item:nth-child(even){
        flex-direction: column;
    }

    .contacts-top-section .wrapper{
        flex-direction: column;
    }

    .contacts-top-section .col-left{
        width: 100%;
        gap: 40px;
    }

    .contacts-top-section .item{
        width: calc(50% - 20px);
    }

    .contacts-top-section .col-right{
        width: 100%;
        margin-top: 20px;
    }

    .contacts-top-section{
        padding: 0;
        margin: 60px 0;
    }

    .section-bottom.contacts-bottom{
        padding: 0;
        margin: 60px 0;
    }

    .section-error{
        margin: 20px 0 40px 0;
    }

    .section-error img{
        position: relative;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }

    .section-error p{
        margin: 40px 0;
    }


    .footer .wrapper{
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 60px;
    }

    .footer .wrapper .col{
        width: calc(33.3% - 20px);
    }

    .footer .wrapper .col:last-child{
        width: 100%;
        margin-top: 60px;
    }
}


@media(max-width: 768px){

    body{
        font-size: 18px;
    }
    
    h1{
        font-size: 32px;
    }

    h2{
        font-size: 24px;
    }

    .btn{
        width: 100%;
    }

    .container{
        padding: 0 16px;
    }

    .header .logo{
        width: 125px;
    }

    .section-hero .hero-content{
        width: 100%;
        gap: 20px;
    }

    .section-hero .hero-content .hero-info{
        flex-direction: column;
        width: 100%;
    }

    .section-hero .hero-info .hero-info-item{
        width: 100%;
        background-image: url(assets/img/info-bg-mob.svg);
    }

    .section-hero .hero-image img{
        width: 100%;
    }

    .section-hero.homepage-hero .text-1{
        left: 0;
        font-size: 12px;
    }

    .section-hero .text-1::after{
        top: 41px;
        right: 15px;
    }

    .section-hero .text-2{
        display: none;
    }

    .section-categories{
        background-image: none;
    }

    .section-categories h2{
        color: var(--blue);
    }

    .section-categories .item{
        width: 100%;
    }


    .section-works{
        margin: 40px 0;
    }

    .section-works::before{
        height: calc(100% - 180px);
        width: 100%;
        bottom: 22px;
        border-radius: 20px;
    }

    .tabs-control li{
        width: 100%;
        font-size: 18px;
        text-align: center;
        padding: 16px 20px;
    }

    .section-services{
        margin: 40px 0;
    }

    .tab-content{
        padding: 16px;
        margin-top: 30px;
    }

    .tab-content-text h3{
        font-size: 24px;
    }

    .section-why{
        padding: 40px 0;
    }

    .section-why h2{
        margin-bottom: 40px;
    }

    .section-why .item{
        width: 100%;
        padding: 20px;
        min-height: 0;
    }

    .section-why .item .title-text{
        font-size: 20px;
    }

    .section-why .item .title img{
        width: 20px;
    }

    .section-partners{
        margin: 40px 0;
    }

    .section-bottom{
        padding: 40px 0;
    }

    .section-bottom::before{
        content: none;
    }

    .section-bottom .contacts{
        width: 100%;
        min-width: 0;
        padding: 30px;
        border-radius: 20px;
    }
    
    .section-hero:not(.homepage-hero) .text-1{
        display: none;
    }

    .section-product-type h2{
        display: flex;
        padding-left: 0;
    }

    .section-product-type h2::before{
        background-size: cover;
        min-width: 42px;
    }

    .section-product-type{
        padding: 40px 0;
    }

    .section-product-type .tab-content .tab-content-box{
        flex-direction: column;
    }

    .section-how-we-work{
        margin: 40px 0;
    }

    .section-how-we-work .left-col .item{
        flex-direction: column;
    }

    .section-how-we-work .right-col{
        min-width: 0;
    }

    .section-how-we-work .right-col .content{
        padding: 30px;
    }

    .section-how-we-work .right-col .content p{
        font-size: 20px;
    }

    .section-advantages{
        margin: 40px 0;
    }

    .section-advantages .wrapper{
        flex-direction: column;
        margin-top: 40px;
    }

    .section-advantages .item{
        width: 100%;
        padding: 30px 16px;
    }

    .section-why-choose-us{
        padding: 40px 0;
    }

    .section-why-choose-us .subtitle{
        font-size: 18px;
    }

    .section-why-choose-us .wrapper{
        flex-direction: column;
    }

    .section-why-choose-us .item{
        width: 100%;
    }

    .section-why-choose-us .item img{
        width: 56px;
        height: 56px;
    }

    .section-why-choose-us .item .text{
        font-size: 18px;
    }
    
    .section-hero-equipment .left-col h1{
        font-size: 32px;
    }

    .section-equipment-slider{
        margin: 40px 0;
    }

    .section-equipment-slider::before{
        width: 100%;
        border-radius: 20px;
        height: calc(100% - 90px);
        top: 45px;
    }

    .section-equipment-slider .wrapper{
        padding: 0 36px;
    }

    .section-equipment-slider::after{
        content: none;
    }

    .section-form{
        margin: 60px 16px;
    }

    .section-form .container{
        padding: 20px;
    }

    .section-form h2{
        font-size: 32px;
    }

    .section-form .wrapper{
        flex-direction: column;
    }

    .section-form .right-col form{
        margin-top: 20px;
    }


    .section-subcategories{
        padding: 40px 0 0 0;
    }

    .section-subcategories .item{
        width: 100%;
        padding: 20px;
    }

    .section-subcategories .item .col-left .btn-group{
        flex-direction: column;
    }
    
    .section-subcategories .wrapper{
        gap: 20px;
    }

    .section-subcategories .item .col-left h3{
        font-size: 24px;
    }

    .section-page-content h1{
        font-size: 32px;
    }

    .section-page-content p{
        font-size: 18px;
        line-height: 1.4;
    }
    
    .section-page-content .subtitle{
        font-size: 18px;
    }

    .section-page-content h2{
        font-size: 20px;
    }

    .section-error h1{
        font-size: 32px;
    }

    .section-error p{
        font-size: 24px;
        margin: 10px 0;
    }


    .footer .wrapper{
        flex-direction: column;
        gap: 35px;
    }

    .footer .wrapper .col{
        width: 100%;
    }

    .footer .wrapper .col:last-child{
        margin-top: 0;
    }

    .footer form{
        width: 100%;
        min-width: 0;
        flex-direction: column;
    }

    .footer .policy{
        width: 100%;
        min-width: 0;
    }

    .bottom-form{
        display: flex;
        padding: 20px;
        background-color: var(--blue);
        color: #fff;
    }

    .bottom-form h2{
        color: #fff;
    }

    .bottom-form form{
        flex-direction: column;
    }

    .bottom-form .form p{
        flex-direction: column;
        gap: 0;
    }



}
