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

@font-face {
    font-family: 'Inter';
    src: url('/fonts/baka.woff2') format('woff2');
    /* Add other font formats here if needed */
  }
  
  @font-face {
    font-family: 'Inter';
    src: url('/fonts/baka2.woff2') format('woff2');
    font-weight: 300;
    /* Add other font formats here if needed */
  }

body {
    font-family: Inter, Arial, sans-serif;
    color: #383838;
    position: relative;
}
body:before {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top:0;
    height: 100%;
    z-index: -1;
    filter: hue-rotate(20px)
}
a {
    text-decoration: none;
}

:root {
    --primary: #1e2d3b;
    --primary-2: #23225E;
    --secondary: #ffdd00;
    --gray: #f8f9fb;
    --gray-2: #eef1f6;
    --violet: #4d4c7c;
  }

.patop {
    padding-top: 80px;
}



.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}



.font-light {
    font-weight: 300;
}


.flex {
    display: flex;
}

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

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.w-full {
    width: 100%;
}

.w-1\/2 {
    width: 50%;
}

.w-1\/3 {
    width: 33.3333333%;
}

.w-2\/3 {
    width: 66.6666666%;
}

.w-1\/4 {
    width: 25%;
}

.w-2\/4 {
    width: 50%;
}

.w-3\/4 {
    width: 75%;
}
.w-4 {
    width: 1rem;
}
.w-6 {
    width: 1.5rem;
}
.w-8 {
    width: 2rem;
}
.w-1\/5 {
    width: 20%;
}

.w-2\/5 {
    width: 40%;
}

.w-3\/5 {
    width: 60%;
}

.w-4\/5 {
    width: 80%;
}

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

.ml-auto {
    margin-left: auto;
}
.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p-1 { padding: 0.25rem }
.p-2 { padding: 0.5rem }
.p-3 { padding: 0.75rem }
.p-4 { padding: 1rem }
.p-5 { padding: 1.25rem }
.p-6 { padding: 1.5rem }
.p-7 { padding: 1.75rem }
.p-8 { padding: 2rem }
.p-9 { padding: 2.25rem }
.p-10 { padding: 2.5rem }

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.h-full {
    height: 100%;
}

.gap-1 {
    gap: 1rem;
}
.gap-2 {
    gap: 2rem;
}
.gap-3 {
    gap: 3rem;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.top-0 {
    top: 0;
}

.text-white {
    color: #fff;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}



@media(min-width: 1024px) {
    .container {
        width: 1000px;
    }
}

@media(min-width: 1280px) {
    .container {
        width: 1080px;
    }
}

@media(min-width: 1480px) {
    .container {
        width: 1280px;
    }
}

/**
header 
**/ 

  



.logo img {
    max-width: 100px;
}

nav ul {
    list-style: none;
    display: flex;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 300;
  
}

.nav-links li {
    margin-right: 20px;
}

.nav-links li:last-child {
    margin-right: 0;
}


.nav-links a {
    font-weight: 400;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--secondary)
}

.subnav {
    position: relative;

}
.sublinks {
    display: flex;
    position: absolute;
    top: 100%;
    padding-top: 30px;
    left: -2px;
    z-index: 2;
    flex-direction: column;
    filter: drop-shadow(5px)
}

.subnav .sublink {
    display: none;
    min-width: 220px;
    padding: 10px 15px;
    text-transform: uppercase;
    background: white;
    color: var(--primary);
    border-bottom: 1px solid var(--gray-2);
}
.subnav:hover .sublink {
    display: block;
}
.sublink:hover {
    background: var(--gray-2);
    color: var(--primary) !important
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 3px 3px;
    border-radius: 3px;
}

.header {
    height: 80px;
}

@media(max-width: 580px) {
    .sublinks {
        display: flex;
        position: relative;
        padding-top: 0;
        left: 0;
        
    }
    .subnav .sublink {
        display: block;
        background: unset;
        color: #fff;
        border: none;
        font-size: 0.9rem;
        padding: 10px 20px;
        padding-left: 40px !important;
    }

}

header {
    display: flex;
  
 
    background-color: var(--primary);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header .container {
    align-items: center;
    margin: 0 auto;
}


.logoo {
    height: 100px;
    color: #23215e;
    line-height: 24px;
    font-weight: 500;
    display: flex;
    z-index: 100;
    background: var(--secondary);
    font-size: 26px;
    gap: 10px;
    align-items: center;
    padding-left: 20px;
    padding-top: 10px;
    padding-right: 30px;
    border-radius: 0 0 15px 15px;
    font-family: math;
    text-align: center;

}

.logoo img {
    width: 80px;
}

.nav-links .special-btn {
    display: none;
}
@media screen and (max-width: 1024px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: flex-end;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--primary);
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        z-index: 100;
        transition: 0.5s ease all;
    }
    
    .nav-links a {
        padding: 10px 20px;
        font-size: 1.1rem;
        display: block;
    }

    .nav-links .special-btn {
        display: flex;
        justify-content: flex-end;
        text-align: right;
        padding: 0 15px;
    }

    .nav-links .special-btn span {
        font-size: 1.25rem;
        transform: scaleX(1.5);
    }






    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .nav-links.nav-active {
        display: block;
        height: 0;
        transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.5s;
        transform: scale(1.08);
    }
    
    .nav-links.nav-anim {
        height: 100lvh;
        transform: scale(1);
    }

}

.logoo p:last-child {
    font-size: 16px;
    font-family: sans-serif;
}

.logoo img {
    width: 50px;
}

@media (max-width: 576px) {
    .header {
        height: 70px;
    }

    .logoo { 
        position: relative;
        width: 90%;
        width: calc(100% - 60px);
        height: 100px;
        font-size: 20px;
        padding-top: 15px;
    }

    .logoo img {
        width: 60px;
    }
    
}


/** 
footer 
**/ 
.footer {
    background-color: var(--gray);
}
.footer-logo {
    color: #383838;
    font-weight: 600;
}

.footer-logo p:first-child {
        font-size: 24px;
}

.footer-logo p:last-child {
    font-size: 16px;
}

.footer-logo img {
    width: 150px;
}

.footer-floor {
    height: 50px;
    display: flex;
    align-items: center;
    color: #383838;
    font-weight: 300;
    font-size: 0.8rem;
    background: var(--gray-2);
}

.footer-link {
    color: #383838;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight:500;
}
.footer-links  {
   justify-content: space-between;
}

.footer-floor-link {
    color: #383838;
}

.footer-link:hover {
    color: var(--secondary);
}
.footer-contacts {
    font-size: 0.85rem;
}
.border-t {
    border-top: 1px solid var(--gray-2)
}
.footer .sad .flex {
    align-items: flex-start;
}


@media(max-width: 768px) {
    .footer .flex.container {
        flex-wrap: wrap;

    }
    .footer .w-1\/3,
    .footer .w-2\/3 {
        width: 100%;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer .w-1\/2 {
        width: 100%;
    }
    .footer-contacts {
        flex-wrap: wrap;
    }

   
    .footer-floor {
        height: auto;
    }
    .footer-floor .container {
        justify-content: center;
    }
    .footer-floor .container div {
        margin: 0;
        width: 100%;
        text-align: center;
    } 
} 

/**
hero 
**/

.hero {
    height: 75vh;
    min-height: 500px;
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    align-items: flex-end;
    padding-top: 80px;
}
.hero .text {
    line-height: 1.4rem;
}
.hero .w-1\/2  {
    max-width: 700px;
}

.hero-slider .slide {
    height: 75vh;
    min-height: 500px;
}

.hero-contrast {
    background: #fddd01;
    padding: 30px;
    border-radius: 7px;
}

.hero .title {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    color: var(--primary);

}
.hero .container {
    z-index: 2;
}
.hero .w-1\/2 {
    width: 70%;
}

.hero-slider-wrapper {
   
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.hero-slider {
    height: 100%;
}
.hero {
    padding-bottom: 0;
}
.hero > div {
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
  
}

.hero-slider .slick-dots {
    bottom: 15px;
}

.hero-slider .slick-dots li button:before {
    font-size: 16px;
    color: white;
}

.hero-slider .slick-dots .slick-active button:before {
    color: white;
}

.hero-slider .slide {
    background-size: cover;
    background-position:  center 0;

}

@media(min-width: 1400px) {
	.hero {
		min-height: 600px;
	}
}

@media(max-width: 1400px) {
    .hero .w-1\/2 {
        width: 75%;
    }
}

@media(max-width: 1024px) {
    
    .hero {
        height: 85lvh;
        background-position: top center;
    }
    .hero .w-1\/2 {
        width: 75%;
    }
}

@media(max-width: 768px) {
    .hero {
        height: 100lvh;
        padding-top: 69px;
    }
    .hero-slider .slide {
        height: 100lvh;
        min-height: 500px;
    }
    .hero .w-1\/2 {
        width: 80%;
        padding-top: 3rem;
        padding-bottom: 3rem;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        display: flex;

    }    
    .hero .title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .hero .text {
        font-size: 1rem;
    }
}

@media(max-width: 560px) {
    .hero .w-1\/2 {
        width: 100%;
        padding: 1rem;
    }
    .hero .title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.5rem;
    }
    .hero .text {
        font-size: 0.8rem;
        text-align: center;
    }
}

/**
common
**/



.common-title {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px; 
}

@media(max-width: 1400px) {

}

@media(max-width: 1200px) {
    .common-title {
        font-size: 38px;
    }
}

@media(max-width: 1024px) {
    .common-title {
        font-size: 36px;
    }
}

@media(max-width: 500px) {
    .common-title {
        font-size: 32px;
    }
}

/* .common-title:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    width: 100px;
    background: var(--secondary);
} */


/**
index - catalog
**/

.catalog-card {
    background: var(--secondary);
    transition: 0.4s ease all;
    overflow: hidden    ;
    cursor: pointer;
    display: block;
    color: #333;
}

.catalog-card .card-image {
    height: 200px;  
    background-size: cover;
    transition: 1s ease all;
}

.catalog-card .card-text {
    height: 220px;  
    padding: 1.5rem 1.25rem;
    background: var(--gray);
}

.catalog-card .card-title {
    line-height: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.catalog-card .card-subtitle {
    font-size: 0.85rem;
    line-height: 1.2rem;
    font-weight: 300;
}

.catalog-card:hover {
    box-shadow: 0 0 15px 5px #eef1f6;
}

.catalog-card:hover .card-image {
    transform: scale(1.05);
    transform-origin: bottom;
}

@media(max-width: 1023px) {
    .catalog .flex {
        flex-wrap: wrap;
        gap: 0;
    }

    .catalog .w-1\/3 {
        width: 50%;
        padding: 10px;
    }
    .catalog .card-text {

    }
}

@media(max-width: 768px) {
    .catalog .w-1\/3 {
        width: 100%;
    }
}


/**
product-card
**/
.patop.products {
    padding-top: 120px;   
}


.product-card {
    margin-bottom: 3rem;
    color: #333;
    width: 50%;
    padding: 10px;
    transition: 0.4s ease all;
}

.product-card .left {
    height: 250px;
    background: var(--secondary);
    background-size: cover;
    width: 100%;
}

.product-card .right {
    background: var(--gray);
    width: 100%;
}

.product-card .right{
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 5px;
    
}

.product-card:hover {
    box-shadow: 0 0 15px 5px #eef1f6;
}

.product-card .right h2 {
    font-size: 24px;
}

.product-card:hover .right h2 {
    color: var(--secondary)
}

.product-card .right p {
    font-size: 16px;
    margin-bottom: 10px;
}

.product-card .right ul {
    list-style-type: none;
    padding: 0;
}

.product-card .right li {
    font-size: 16px;
    margin-bottom: 5px;
}

@media(max-width: 768px) {
    .product-card {
        flex-wrap: wrap;
    }

    .product-card .left,
    .product-card .right {
        width: 100%;
    }
    .product-card .left {
        min-height: 300px;
        height: unset;
    }
    .product-card .right {
        min-height: 300px;
        height: unset;
    }
    .patop .product-card .left {
        min-height: unset;
    }
}

@media(max-width: 768px) {
    .product-card {
        width: 100%;
    }
}


/**
other
**/

.contacts p.title {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contacts p.subtitle {
    font-size: 0.9rem;
    color: var(--gray-2);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.contacts .sad {
    color: var(--gray);
    font-size: 0.85rem;
}

.contacts .sad .flex {
    align-items: flex-start;
    margin-bottom: 2rem;
    width: 100%;

}
.contacts .sad .flex img {
    filter: invert(1);
}
.contacts .map {
    background: url(/img/map.png);
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
@media(max-width: 768px) {
    .contacts .container > .flex {
        flex-wrap: wrap;
     
    }

    .contacts .w-1\/2 {
        width: 100%;
    }
}


/**
certs 
*/ 
.certs {
    position: relative;
    min-height: 600px;
    background: var(--violet) url(/img/pattern2.png);
    margin-bottom: 150px;
    margin-top: 50px;
}
.certs:before {
    content: '';
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(100% 100%, 0% 0%, 100% 0%);
    background: #fff;
}

.certs:after {
    content: '';
    width: 100%;
    height: 30px;
    bottom: -1px;
    left: 0;
    position: absolute;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    background: #fff;
    z-index: 2;
}

.certs .common-title {
    color: #fff;
    position: absolute;
    opacity: 0.5;
    font-size: 7rem;
    left: 6rem;
    top: 4rem;
    filter: drop-shadow(5px 11px 15px #383838);
}

.certs .container {
}

.certs .slide {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.certs .slide .left {
    width: 50%;

}

.certs .slide .desc {
    color: var(--gray)
}

.certs .slide .title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.certs .slide .text {
    font-size: 0.9rem;
    line-height: 1.2rem;
    font-weight: 300;
    width: 85%;
}

.certs .slide .right {
    min-height: 500px;
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.certs .slide .right .pages {
    position: absolute;
    width: 30px;
    right: -50px;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.certs .slide .right .pages .page {
    text-align: center;
    width: 100%;
    height: 34px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.5;
    position: relative;
    transition: 0.4s ease all;
    cursor: pointer;
}

.certs .slide .right .pages .page.active {
    opacity: 1;
    transform: scale(1.4);
    top: 0;
}

.certs .slide .right .pages .page.active:after {
    width: 20px;
    border-top: 1px solid #fff;
    opacity: 0.8;
    border-bottom: 2px solid #fff;
    position: absolute;
    content: "";
    right: -30px;
    top: 30%;
}

.cert-image {
    width: 75%;
    position: absolute;
    top: 30px;
    border-radius: 5px;
}

.cert-link {
    margin-top: 1rem;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    display: block;
    font-weight: 700 !important;
}

.cert-link:hover {
    text-decoration: underline;
}

.cert-link,
.cert-title,
.cert-text {
    opacity: 0;
    transform: translateY(5px) scale(0.995);
    transition: all 0.3s ease-in-out;
}

.cert-image {
    opacity: 0;
    transform: translateY(5px) scale(0.995);
    transition: 0.5s 0.1s  ease-in-out all;
}

.cert-link.animated,
.cert-title.animated,
.cert-text.animated,
.cert-image.animated {
   
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media(max-width: 1650px) {
    .certs .common-title {
        font-size: 6rem
    }
} 
@media(max-width: 1400px) {
    .certs .common-title {
        font-size: 5rem;
        left: 1.75rem;
    }
}

@media(max-width: 1200px) {
    .certs .common-title {
        font-size: 5rem;

    }
    .certs .slide .right .pages {
        right: 0;
    }
}

@media(max-width: 1024px) {
    .certs .common-title {
        font-size: 4rem;
    }
    .certs .slide .right .pages {
        overflow: hidden;
    }
}

@media(max-width: 768px) {
    .certs .slide {
        flex-wrap: wrap;
    }
    .certs .slide .left {
        padding-top: 100px;
        width: 100%;
    }
    .certs .slide .right {
        width: 100%;
        flex-direction: column;
    }
    .certs .slide .right .pages  {
        flex-direction: row;
        display: flex;
        position: relative;
        width: 30px;
        right: 0;
        top: 0;
        height: 100%;
        gap: 1rem;
        margin-bottom: 3rem;
        justify-content: flex-start;
    }

    .certs .common-title {
        font-size: 4rem;
    }
    .certs .slide .right .pages .page.active::after {
        display: none;
    }
    .certs .slide .right {
        min-height: unset;
    }
    .cert-image {
        max-width: 300px;
        position: static !important;
        height: unset !important;
        top: 0;
    }
 
}

@media(max-width: 420px) {
    .certs .common-title {
        font-size: 2.5rem;
    }
}


/**
our offer 
**/ 
.our_offer {
    position: relative;
    background: var(--gray);
    padding: 0;
}

.our_offer .bg {
    background: url(/img/our_offer.jpg);
    background-size: cover;
    background-position: bottom center;
    width: 40%;
    min-height: 600px;
    position: absolute;
    left:0;
}

.our_offer .left {
    width: 40%;
}

.our_offer .right {
    width: 60%;
    padding: 3rem;
    padding-bottom: 5rem;
    align-items: center;
}

.our_offer .right ul {
    padding-left: 1rem;
    font-size: 1.2rem;
}
.our_offer .right ul li {
    padding-top: 1rem;
}

@media(max-width: 768px) {
    .our_offer .bg {
        background-size: cover;
        background-position: center;
        width: 100%;
        min-height: 400px;
        position: relative;
        left: 0;
    }   
    .our_offer .left {
        display: none;
    }
    .our_offer .right {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/**
why us 
**/ 
.why_us {
    background: var(--violet) url(/img/pattern2.png);
    color: #fff;
    position: relative;
}

.why_us .left {
    background: url(/img/why_us.jpg) ;
    background-size: 700px;
    background-position: right 0;
    width: 34%;
    min-height: 350px;
    position: absolute;
    right: 0; top: 0;
    height: 100%;
    background-attachment: fixed;
}

.why_us .right {
    width: 66%;
    padding: 2rem;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.why_us .right ul li {
    padding-top: 1rem;
    font-size: 1.2rem;
}

@media(max-width: 1024px) {
    .why_us .common-title {
        width: 50%;
    }
    .why_us .left {
        width: 50%;
      
    }
    .why_us .right  {
        width: 50%;
    }
    .why_us .right ul li {
        font-size: 1rem;
    }
}
@media(max-width: 768px) {
    .why_us .bg {
        background-size: cover;
        background-position: center;
        width: 100%;
        min-height: 400px;
        position: relative;
        left: 0;
    }   
    .why_us .left {
        width: 50%;
        opacity: 0.2;
     
    }
    .why_us .flex {
        flex-direction: column;
    }
    .why_us .right {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
/**
brands 
*/ 
.brands-slider {
    align-items: center;
}

.brands-slider  .slick-track  {
    display: flex;
    align-items: center;
}

.brands-slider .brand img {
    width: 80%;
    max-width: 150px;
    filter: grayscale(1);
    margin: 0 auto;
    opacity: 0.9;
}

.brands-slider .brand img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/**
advantages 
*/ 


.advantages .block {
    width: 33.33333%;
    position: relative;
 
}
.advantages .block:nth-child(2) {
    margin-top: 50px;
}
.advantages .block:nth-child(3) {
    margin-top: 100px;
}


.advantages .common-title {
    margin-bottom: 80px;
}
.advantages .title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantages .text {
    font-size: 0.9rem;
    font-weight: 6300;
}
.advantages .icon {
    width: 100px;
    position: absolute;
    opacity: 0.2;
    left: -20px;
    top: -60px;
    filter: grayscale(1);
}

@media(max-width: 1400px) {
  
}

@media(max-width: 1200px) {

}

@media(max-width: 1024px) {

}

@media(max-width: 768px) {
    .advantages .flex {
        flex-wrap: wrap;
    }
    .advantages .block{
        width: 100%;
    }
    .advantages .block:nth-child(2),
    .advantages .block:nth-child(3) {
        margin-top: 50px;
    }
}

@media(max-width: 420px) {

}

/**
why_become_distributor
*/ 
.why_become_distributor  {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--violet);
    color: #fff;
}

.why_become_distributor .mf {
    flex-wrap: wrap;
}

.why_become_distributor .w-1\/2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.why_become_distributor .w-1\/2:nth-child(even) {
    padding-left: 20px;
}

.why_become_distributor .w-1\/2:nth-child(odd) {
    padding-right: 20px;
}

.why_become_distributor img {
    width: 4rem;
    filter: grayscale(0.9) brightness(3)

}

.why_become_distributor .title {
    font-weight: 500; 
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.why_become_distributor .text {
    font-size: 0.85rem;
    font-weight: 300;
}

@media(max-width: 1024px) {
   
}

@media(max-width: 768px) {
    .why_become_distributor .mf {
        gap: 2rem;
    }
    .why_become_distributor .w-1\/2:nth-child(even) {
        padding-left: 0;
    }
    
    .why_become_distributor .w-1\/2:nth-child(odd) {
        padding-right: 0;
    }
    .why_become_distributor .w-1\/2 {
        width: 100%;
        padding: 0;
    }
}
@media(max-width: 560px) {
    .why_become_distributor img {
        width: 3rem;
    }
}

/**
how_to_start_cooperate
*/ 

@media(max-width: 1024px) {
    .how_to_start_cooperate .flex {
        flex-wrap: wrap;
        gap: 1%;
    }
    .how_to_start_cooperate .img {
        width: 49%;
    }
}
@media(max-width: 768px) {
    .how_to_start_cooperate .flex {
        gap: 1rem;
    }
    .how_to_start_cooperate .img {
        width: 100%;
    }
}


/**
cooperation
*/ 

.cooperation {
    padding-top: 80px;
    padding-bottom: 80px;
}

/**
team
*/ 

.team {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--gray);
}

/**
manufacture
*/ 

.manufacture {
    padding-top: 150px;
    padding-bottom: 80px;
}

@media(max-width: 1024px) {
    .manufacture .flex {
        flex-wrap: wrap;
        gap: 1%;
        justify-content: space-between;
    }
    .manufacture .img {

        width: 48%;
        margin-bottom: 1rem;
    }
}

@media(max-width: 560px) {
    .manufacture .img {
            width: 100%;
    }
}


/**
heros
*/
.about-hero {
    margin-top: 70px;
    background: var(--violet) url(/img/pattern2.png);
    background: cover;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.about-hero h1 {
    margin-bottom: 0;
}

.contacts-hero {
    margin-top:70px;
    background: var(--violet) url(/img/pattern2.png);
    background: cover;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contacts-hero h1 {
    margin-bottom: 0;
}

.catalog-hero {
    margin-top:70px;
    background: var(--violet) url(/img/pattern2.png);
    background: cover;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.catalog-hero h1 {
    margin-bottom: 0;
}

/**
action-btn
*/
.action-btn {
	background: var(--primary);
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	cursor:pointer;
	margin-top: 1rem;
	display:inline-block;
	transition: 0.3s all ease;
}
.action-btn:hover {
	opacity: 0.9;
	color: #333;
	background: var(--secondary);
}

.action-btns {
	display:flex;
	gap: 10px;
}

@media(max-width: 560px) {
	.action-btns {
		justify-content: center;
        position: fixed;
        left:0;
        padding: 0 2rem;
        width: 100%;
        z-index: 10000;
	}
	.action-btn {
		width: 50%;
		text-align: center;

	}
}
		


/**
category-hero
*/

.category-page {
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--gray-2);
}

.category-hero {
    background: var(--gray);

}

.category-hero .container {
    display: flex;  
}

.category-hero .left {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    width: 50%;
}
.category-hero .right {
    width: 50%;
    padding: 20px;
}

.category-hero h2 {
    padding-top: 40px;
    padding-bottom: 20px;
}
.category-hero p {
    padding-bottom: 1rem;
    color: #383838;
    font-weight: 300;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .category-hero {
        flex-wrap: wrap;
    }
    .category-hero .left {
        width: 100%;
        min-height: 300px;
    }
    .category-hero .right {
        width: 100%;
    }
    .category-hero .right h2 {
        padding-top: 0;
    }
}
.tab {
    display: none;
    margin-top: 30px;
 
}
.tab-btn {
    background: var(--gray);
    cursor: pointer;
    appearance: none;
    outline: 0;
    font-size: 1rem;
    padding: 8px 20px;
       margin-bottom: 5px;
    border: 1px solid var(--gray-2);
    border-radius: 7px;
    text-transform: uppercase;
    min-width: 100px;
}
.tab-btn.active {
    color: var(--gray-2);
    background: var(--primary-2);
   
}
.category-items {
    padding: 50px 0;
}

table.tth {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table.tth td{
    width: 50%;
    padding: 5px 10px;
    border: 1px solid var(--gray-2);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns with equal width */
    grid-gap: 20px; /* Gap between grid items */
}

.grid-item {
    transition: 0.3s ease all;
    border: 1px solid var(--gray);
    padding: 0.5rem;
    cursor: pointer;
    color: #333;
}
.grid-item p {
    margin-top: 10px;
}
.grid-item img {
    width: 100%;
}
.grid-item:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media(max-width: 1279px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 767px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/**/
.locale-select {
    margin-left: 100px;
    margin-right: 0;
    background: transparent;
    border: 0;
    color: white;
    text-transform: uppercase;
}

.locale-select:hover {
    color: #eee;
}

@media (max-width: 1023px) {
    .locale-select {
        margin-left: 10px;
        margin-right: 10px;
    }
}