@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
    --accent: #0B4996;
    --text-black: #070707;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
a{
    color: var(--text-black);
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
}
ul{
    list-style: none;
}
button{
    border: none;
    background: none;
    cursor: pointer;
}
.container{
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.app{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main{
    flex: 1;
}
.dn{
    display: none!important;
    visibility: hidden!important;
}
/* header */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-top: 40px;
    transition: all 0.3s ease;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header.fixed{
    padding-top: 5px;
    padding-bottom: 5px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.header_logo_img{
    display: block;
    width: 100%;
    max-width: 221px;
    height: auto;
}
.header_menu{
    display: flex;
    align-items: center;
    gap: 50px;
}
.header_menu_list{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_menu_link{
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 400;
    color: #1E1E1E;
    transition: color 0.3s ease;
}
.header_menu_link:hover{
    color: var(--accent);
}
.header_menu_button,
.arrow_button{
    padding: 8px 8px 8px 16px;
    border-radius: 56px;
    background: var(--accent);
    height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}
.header_menu_button img,
.arrow_button img{
    transition: all 0.3s ease;
    border: 1px solid transparent;
    border-radius: 50%;
}
.header_menu_button span,
.arrow_button span{
    transition: color 0.3s ease;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.header_menu_button:hover,
.arrow_button:hover{
    background: #fff;
}
.header_menu_button:hover img,
.arrow_button:hover img{
    border: 1px solid var(--accent);
}
.header_menu_button:hover span,
.arrow_button:hover span{
    color: var(--accent);
}
.header_menu_mobile{
    display: none;
    width: 40px;
    height: 40px;
}
.header_menu_mobile img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* mobile menu */
.mobile_menu{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: url(../images/new/home/hero.jpg) no-repeat center center / cover;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.mobile_menu.active{
    right: 0;
}
.mobile_menu h2{
    font-size: 30px;
    font-weight: 500;
    color: var(--text-black);
}
.mobile_menu ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mobile_menu ul li{
    font-size: 22px;
    font-weight: 400;
    color: var(--text-black);
}
.mobile_menu_close{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.mobile_menu_close img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 1050px) {
    .header_menu_list{
        display: none;
    }
    .header_menu_mobile{
        display: flex;
    }
    .header_menu{
        gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    .header_logo_img {
        max-width: 150px;
    }
    .header{
        padding-top: 20px;
    }
}
@media screen and (max-width: 450px) {
    .header_menu_button{
        display: none;
    }
}

/* Homepage */
/* hero */
.hero{
    padding-top: 175px;
    background: url(../images/new/home/hero.jpg) no-repeat center center / cover;
    position: relative;
    min-height: 860px;
    display: flex;
    overflow: hidden;
}
.hero .container{
    min-height: 10%;
}
.hero_wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-height: 100%;
}
.hero_img{
    position: absolute;
    bottom: -40px;
    right: -250px;
}
.hero_img img{
    display: block;
    height: 600px;
    object-fit: contain;
}
.hero_subtitle{
    padding: 5px 20px;
    border-radius: 56px;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}
.hero_title{
    font-weight: 500;
    font-size: 64px;
    line-height: 1.2;
    color: var(--text-black);
    margin-top: 25px;
    margin-bottom: 25px;
}
.hero_text{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 25px;
    max-width: 550px;
}
.hero_box{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.hero_box a{
    flex-shrink: 0;
}
.hero_link_white{
    font-size: 16px;
    font-weight: 400;
    color: var(--text-black);
    border-radius: 56px;
    background: #fff;
    padding: 8px 32px;
    height: 46px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.hero_link_white:hover{
    background: var(--accent);
    color: #fff;
}
@media screen and (max-width: 1450px) {
    .hero_title{
        font-size: 56px;
        line-height: 64px;
        max-width: 900px;
    }
}
@media screen and (max-width: 1050px) {
    .hero_title{
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 48px;
        line-height: 56px;
    }
    .hero_img img {
        height: 550px;
    }
    .hero_img {
        right: -210px;
    }
}
@media screen and (max-width: 840px) {
    .hero_img img {
        height: 500px;
    }
    .hero_title {
        font-size: 39px;
        line-height: 48px;
    }
}
@media screen and (max-width: 750px) {
    .hero_img img {
        object-fit: unset;
        max-width: none;
    }
    .hero_img{
        left: 50%;
        right: unset;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 650px) {
    .hero_img img {
        height: 450px;
    }
}
@media screen and (max-width: 600px) {
    .hero {
        padding-top: 110px;
    }
}
@media screen and (max-width: 500px) {
    .hero_title {
        font-size: 32px;
        line-height: 40px;
    }
    .hero_img img {
        height: 350px;
    }
    .hero_img {
        bottom: 40px;
    }
}
@media screen and (max-width: 415px) {
    .hero_img {
        bottom:0px;
    }
}

/* about */
.about{
    background: #F8F8F8;
    padding-top: 100px;
    padding-bottom: 150px;
}
.about_wrapper{
    display: flex;
    flex-direction: column;
}
.about_subtitle{
    font-size: 24px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 12px;
}
.about_title{
    font-size: 40px;
    line-height: 48px;
    color: var(--text-black);
    margin-bottom: 35px;
    font-weight: 600;
}
.about_title span{
    font-size: 40px;
    line-height: 48px;
    color: #B1B1B1;
    font-weight: 600;
}
.about_buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 85px;
    margin-bottom: 85px;
    border-bottom: 1px solid #B1B1B1;
}
.about_box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.about_box_item{
    background: #fff;
    border-radius: 24px;
    padding: 24px;
}
.about_box_item img{
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 30px;
}
.about_box_item h3{
    border-top: 1px solid #EBEBEB;
    padding-top: 20px;
    padding-bottom: 12px;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
}
.about_box_item p{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .about_title span, 
    .about_title {
        font-size: 32px;
        line-height: 42px;
    }
}
@media screen and (max-width: 900px) {
    .about_box{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 870px) {
    .about_title span, 
    .about_title {
        font-size: 24px;
        line-height: 32px;
    }
    .about_subtitle {
        font-size: 18px;
    }
    .about_buttons{
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 670px) {
    .about_box {
        grid-template-columns: 1fr;
    }
    .about{
        padding-top: 70px;
        padding-bottom: 100px;
    }
}

/* product */
.product{
    padding-top: 150px;
}
.product_wrapper{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.product_top{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product_top_box{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.product_subtitle{
    font-size: 24px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
}
.product_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 650px;
}
.product_title span{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--accent);
}
.product_text{
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    max-width: 520px;
}
.product_box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.product_box_left{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product_box_item{
    display: flex;
    gap: 24px;
    padding: 24px;
    transition: all 0.3s ease;
    border-left: 4px solid #EBEBEB;
    cursor: pointer;
}
.product_box_item.active,
.product_box_item:hover{
    border-left: 4px solid var(--accent);
}
.product_box_item img{
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.product_box_item_text{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product_box_item_text h3{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-black);
}
.product_box_item_text p{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.product_box_right{
    position: relative;
}
.product_box_right_img{
    border-radius: 24px;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
}
.product_box_right_nav{
    position: absolute;
    background: #fff;
    border-radius: 20px;
    padding: 5px;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    /* justify-content: center; */
    gap: 5px;
    z-index: 5;
    flex-shrink: 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.product_box_right_nav_img{
    position: relative;
    min-width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 18px;
    z-index: 5;
    cursor: pointer;
    border: 3px solid transparent;
}
.product_box_right_nav_img:hover,
.product_box_right_nav_img.active{
    border: 3px solid var(--accent);
}
.product_box_right_img.active{
    opacity: 1;
}
@media screen and (max-width: 1200px) {
    .product_top_box{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
    .product_box{
        display: grid;
        grid-template-columns: 550px 1fr;
    }
}
@media screen and (max-width: 980px) {
    .product_box {
        display: flex;
        flex-direction: column-reverse;
    }
    .product_box_right{
        height: 600px;
    }
    .product_wrapper{
        gap: 30px;
    }
}
@media screen and (max-width: 870px) {
    .product_title,
    .product_title span {
        font-size: 38px;
        line-height: 46px;
    }
    .product{
        padding-top: 100px;
    }
}
@media screen and (max-width: 560px) {
    .product_box_right_nav{
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }
}
@media screen and (max-width: 520px) {
    .product_title, .product_title span {
        font-size: 32px;
        line-height: 40px;
    }
    .product_text {
        font-weight: 300;
        font-size: 16px;
        line-height: 22px;
    }
    .product_box_item {
        display: flex;
        gap: 15px;
        padding: 17px;
    }
    .product_box_item img {
        width: 38px;
        height: 38px;
    }
    .product{
        padding-top: 70px;
    }
    .product_box_right {
        height: 466px;
    }
}
@media screen and (max-width: 400px) {
    .product_title, .product_title span {
        font-size: 26px;
        line-height: 34px;
    }
    .product_subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    .product_box_right{
        height: 450px;
    }
}
@media screen and (max-width: 450px) {
    .product_title, .product_title span {
        font-size: 26px;
        line-height: 34px;
    }
    .product_subtitle {
        font-size: 18px;
    }
}

/* partners */
.partners{
    padding-top: 150px;
    padding-bottom: 150px;
}
.partners img{
    max-height: 110px;
    width: 100%;
    object-fit: contain;
}
@media screen and (max-width: 520px) {
    .partners{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* industries */
.industries{
    background: url(../images/new/home/ind.jpg) no-repeat center center / cover;
    padding-top: 56px;
    padding-bottom: 82px;
}
.industries_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.industries_subtitle{
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
}
.industries_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 14px;
    text-align: center;
    max-width: 735px;
}
.industries_text{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 620px;
}
.industries_box{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    width: 100%;
}
.industries_box_item{
    background-color: #fff;
    border-radius: 24px;
    padding: 24px;
}
.industries_box_item img{
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 24px;
}
.industries_item_title{
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid #EBEBEB;
}
.industries_item_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .industries_box{
        gap: 25px;
        margin-top: 40px;
    }
}
@media screen and (max-width: 870px) {
    .industries_title{
        font-size: 38px;
        line-height: 46px;
    }
    .industries_box{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 520px) {
    .industries_title{
        font-size: 32px;
        line-height: 40px;
    }
    .industries_box{
        grid-template-columns: 1fr;
    }
    .industries_box_item img{
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 450px) {
    .industries_title{
        font-size: 26px;
        line-height: 34px;
    }
}

/* testimonials */
.testimonials{
    padding-top: 120px;
    padding-bottom: 120px;
}
.testimonials_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials_subtitle{
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
}
.testimonials_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 14px;
    text-align: center;
    max-width: 835px;
}
.testimonials_text{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 620px;
}
.testimonials_box{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.testimonials_item{
    border: 1px solid #b1b1b18f;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.testimonials_item_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.testimonials_item_author{
    display: flex;
    flex-direction: column;
    gap: 5px
}
.testimonials_item_author_name{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
}
.testimonials_item_author_position{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.testimonials_item_stars{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.testimonials_item_stars img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.testimonials_item_text{
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .testimonials{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .testimonials_box{
        gap: 35px;
        margin-top: 50px;
    }
    .testimonials_item_top{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
    }
    .testimonials_title{
        font-size: 42px;
        line-height: 52px;
    }
}
@media screen and (max-width: 870px) {
    .testimonials_title{
        font-size: 38px;
        line-height: 46px;
    }
    .testimonials_item_text {
        font-size: 16px;
        line-height: 25px;
    }
    .testimonials_item{
        padding: 30px;
        gap: 30px;
    }
    .testimonials_box{
        gap: 25px;
    }

}
/* @media screen and (max-width: 750px) { */
@media screen and (max-width: 730px) {
    .testimonials_title {
      font-size: 32px;
      line-height: 40px;
    }
    .testimonials_item_author_name {
        font-size: 20px;
        line-height: 29px;
        font-weight: 500;
        color: var(--text-black);
    }
    .testimonials_item{
        gap: 10px;
    }
}
@media screen and (max-width: 670px) {
    .testimonials_title{
        font-size: 32px;
        line-height: 40px;
    }
    .testimonials_box{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 450px) {
    .testimonials_title{
        font-size: 26px;
        line-height: 34px;
    }
    .testimonials_box{
        gap: 20px;
    }
}

/* global */
.global{
    padding-bottom: 100px;
}
.global_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.global_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    text-align: center;
    margin-bottom: 14px;
}
.global_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 835px;
    margin-bottom: 14px;
}
.global_text{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 620px;
}
.global_box{
    width: 100%;
    background: url(../images/new/home/map.svg) no-repeat top center / contain;
    /* padding-top: 38px; */
    padding-bottom: 80px;
    padding-left: 40px;
    padding-right: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}
.global_item{
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 24px;
    min-height: 325px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.global_item_top{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 27px;
}
.global_item_top img{
    width: 30px;
    height: 30px;
    object-fit: contain;
}
.global_item_top p{
    font-size: 18px;
    font-weight: 500;
}
.global_item_row p{
    font-size: 14px;
}
.global_item_row{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.global_item_row_link{
    display: flex;
    align-items: center;
    gap: 15px;
}
@media screen and (max-width: 1200px) {
    .global_box{
        gap: 25px;
        margin-top: 25px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .global_item_row:has(.global_item_row_link){
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }
    .global_item_row_link:last-child{
        margin-bottom: 0px;
        margin-left: 35px;
    }
    .global_title{
        font-size: 42px;
        line-height: 52px;
    }
}
@media screen and (max-width: 1050px) {
    .global_box{
        padding-left: 0px;
        gap: 20px;
        padding-right: 0px;
    }
}
@media screen and (max-width: 950px) {
    .global_box{
        grid-template-columns: 1fr 1fr;
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 870px) {
    .global_title{
        font-size: 38px;
        line-height: 46px;
    }
    .global_text {
        font-size: 16px;
        line-height: 25px;
    }
}
@media screen and (max-width: 730px) {
    .global_title{
        font-size: 32px;
        line-height: 40px;
    }
    .global_text {
        font-size: 16px;
        line-height: 25px;
    }
    .global_box{
        grid-template-columns: 1fr;
        padding-left: 20px;
        padding-right: 20px;
    }
    .global_item{
        min-height: 280px;
    }
}
@media screen and (max-width: 670px) {
    .global_title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media screen and (max-width: 500px) {
    .global_box{
        padding-left: 5px;
        padding-right: 5px;
    }
    .global{
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 450px) {
    .global_title {
        font-size: 26px;
        line-height: 34px;
    }
}

/* contact */
.contact{
    /* padding-top: 150px; */
    padding-bottom: 150px;
    background: url(../images/new/home/footer.png) no-repeat bottom center / cover;
}
.contact_wrapper{
    display: grid;
    grid-template-columns: 1fr 595px;
    gap: 40px;
}
.contact_left{
    display: flex;
    flex-direction: column;
}
.contact_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
}
.contact_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 500px;
}
.contact_text{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    max-width: 500px;
    color: var(--text-black);
}
.contact_form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff79;
    padding: 23px 65px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.147)996;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.contact_form_item{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact_form_title{
    font-size: 32px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
}
.contact_form_item label{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.contact_form_item input,
.contact_form_item textarea{
    background-color: #ffffff79;
    border: 1px solid #d9d9d9a5;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    resize: none;
}
.contact_form_item textarea{
    height: 150px;
}
.contact_form_item input::placeholder,
.contact_form_item textarea::placeholder{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #D9D9D9;
}
.contact_form_button{
    background: var(--accent);
    border-radius: 50px;
    padding: 10px 50px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    max-width: 250px;
    align-self: center;
}
@media screen and (max-width: 1200px) {
    .contact{
        padding-bottom: 100px;
    }
    .contact_wrapper{
        grid-template-columns: 1fr 500px;
    }
    .contact_form{
        padding: 23px 40px;
    }
    .contact_title{
        font-size: 42px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1050px) {
    .contact_wrapper{
        grid-template-columns: 1fr 450px;
    }
}
@media screen and (max-width: 970px) {
    .contact_wrapper{
        display: flex;
        flex-direction: column;
        max-width: 695px;
        margin: 0 auto;
        align-items: center;
    }
    .contact_right{
        width: 100%;
    }
    .contact_left{
        align-items: center;
    }
    .contact_subtitle,
    .contact_title,
    .contact_text{
        text-align: center;
    }
}
@media screen and (max-width: 870px) {
    .contact_title {
        font-size: 38px;
        line-height: 46px;
    }
}
@media screen and (max-width: 670px) {
    .contact_title {
        font-size: 32px;
        line-height: 40px;
    }
    .contact_form_title{
        font-size: 26px;
        line-height: 34px;
        text-align: center;
    }
    .contact_form_item label{
        font-size: 16px;
        line-height: 24px;
    }
    .contact_form_item input,
    .contact_form_item textarea{
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width: 450px) {
    .contact_title {
        font-size: 26px;
        line-height: 34px;
    }
    .contact_text{
        font-size: 16px;
        line-height: 24px;
    }
    .contact_form_title{
        font-size: 22px;
        line-height: 30px;
    }
}

/* footer */
.footer{
    background: linear-gradient(0deg, #0B4996 0%, #0896F4 100%);
    padding: 60px 0px 45px 0px;
}
.footer_wrapper{
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 120px;
}
.footer_left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}
.footer_left_box{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_logo{
    width: 100%;
}
.footer_logo_img{
    display: block;
    width: 100%;
    max-width: 340px;
}
.footer_left_link{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    transition: color 0.3s ease;
    /* margin-bottom: 15px; */
}
.footer_right{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer_right_col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.footer_right_col h3{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
}
.footer_right_col ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_right_col ul a{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 24px;
}
.footer_copy{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer_copy img{
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.footer_copy p{
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
}
@media screen and (max-width: 1270px) {
    .footer_right{
        grid-template-columns: 1fr 1fr 224px;
        gap:20px;
    }
    .footer_wrapper{
        gap: 50px;
    }
}
@media screen and (max-width: 1050px) {
    .footer_wrapper{
        display: flex;
        flex-direction: column;
    }
    .footer_left{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        /* flex-wrap: wrap; */
    }
    .footer_left_box{
        flex-shrink: 0;
        gap: 10px;
    }
    .footer_logo{
        margin-bottom: 0px;
    }
}
@media screen and (max-width: 850px) {
    .footer_left{
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 40px;
    }
}
@media screen and (max-width: 640px) {
    .footer_right{
        grid-template-columns: 232px 1fr;

        gap: 0px;
        row-gap: 40px;
    }
    .footer_logo_img{
        max-width: 250px;
    }
}
@media screen and (max-width: 410px) {
    .footer_right{
        grid-template-columns: 1fr;
    }
}

/* contact page */
/* contact hero */
.contact_hero{
    padding-top: 250px;
    padding-bottom: 150px;
    background: url(../images/new/contact/hero.jpg) no-repeat center center / cover;
}
.contact_hero_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact_hero_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 20px; */
}
.contact_hero_subtitle{
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
}
.contact_hero_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
}
.contact_hero_text{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 500px;
}
.contact_hero_box{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact_hero_link{
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact_hero_link img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}
.contact_hero_link span{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.contact_hero_link:hover span{
    color: var(--accent);
}
@media screen and (max-width: 980px) {
    .contact_hero{
        padding-top: 180px;
        padding-bottom: 100px;
    }
    .contact_hero_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 648px;
        margin: 0 auto;
        gap: 40px;
    }
    .contact_hero_left{
        align-items: center;
    }
    .contact_hero_title{
        text-align: center;
    }
    .contact_hero_text{
        text-align: center;
    }
    .contact_hero_box{
        align-items: center;
    }
}
@media screen and (max-width: 600px) {
    .contact_hero_title {
        font-size: 34px;
        line-height: 47px;
    }
}
@media screen and (max-width: 500px) {
    .contact_hero{
        padding-top: 150px;
    }
    .contact_hero_box{
        align-items: flex-start;
    }
    .contact_hero_link span {
        font-size: 16px;
        line-height: 22px;
    }
}

/* logistics page */
/* industries */
.logistics_page .industries{
    background: url(../images/new/logistics/industries.png) no-repeat center center / cover;
    padding-top: 100px;
}
.logistics_page .industries_box{
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.logistics_page .industries_title{
    max-width: 100%;
}
.logistics_page .industries_text{
    max-width: 100%;
}
@media screen and (max-width: 1200px) {
    .logistics_page .industries_box{
        grid-template-columns: repeat(2, 1fr);
    }
    .logistics_page .industries_title{
        font-size: 42px;
        line-height: 52px;
    }
}
@media screen and (max-width: 870px) {
    .logistics_page .industries_title {
      font-size: 38px;
      line-height: 46px;
    }
}
@media screen and (max-width: 730px) {
    .logistics_page .industries_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .logistics_page .industries_title {
      font-size: 32px;
      line-height: 40px;
    }
    .industries{
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 570px) {
    .logistics_page .industries_box{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 450px) {
    .logistics_page .industries_title {
      font-size: 26px;
      line-height: 34px;
    }
}

/* expertise */
.expertise{
    padding-top: 150px;
    /* padding-bottom: 100px; */
}
.expertise_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.expertise_subtitle{
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 14px;
    text-align: center;
}
.expertise_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 14px;
    max-width: 825px;
    text-align: center;
}
.expertise_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    text-align: center;
    margin-bottom: 34px;
}
.expertise_line{
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: center;
    border-radius: 24px;
    /* padding: 0px 10px; */
    border: 1px solid #EBEBEB;
    flex-wrap: wrap;
    justify-content: center;
}
.expertise_line span{
    border-radius: 24px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    padding: 10px 20px;
    transition: all 0.3s ease;
}
.expertise_line span:hover{
    background: var(--accent);
    color: #fff;
}
.expertise_box{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.expertise_item{
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #EBEBEB;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.expertise_item:first-child{
    padding-top: 0px;
}
.expertise_item_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.expertise_item_left h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
}
.expertise_item_left p{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .expertise{
        padding-top: 100px;
    }
    .expertise_title{
        font-size: 42px;
        line-height: 52px;
    }
}
@media screen and (max-width: 870px) {
    .expertise_title {
      font-size: 38px;
      line-height: 46px;
    }
    .expertise_line span{
        padding: 5px 10px;
        font-size: 16px;
        line-height: 22px;
    }
}
@media screen and (max-width: 800px) {
    .expertise_item_left h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .expertise_item_left p {
        font-size: 14px;
        line-height: 22px;
    }
}
@media screen and (max-width: 730px) {
    .expertise_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 700px) {
    .expertise_item_right{
        height: 300px;
    }
    .expertise_item_right img{
        height: 100%;
        width: 100%;
        border-radius: 24px;
        object-fit: cover;
    }
    .expertise_box{
        margin-top: 30px;
    }
    .expertise_item{
        display: flex;
        flex-direction: column-reverse;
    }
}
@media screen and (max-width: 670px) {
    .expertise_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 450px) {
    .expertise_title {
      font-size: 26px;
      line-height: 34px;
    }
}

/* logistics hero */
.logistics_hero{
    padding-top: 180px;
    padding-bottom: 20px;
    background: url(../images/new/logistics/hero_bg.png) no-repeat center center / cover;
}
.logistics_hero_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.logistics_hero_right img{
    width: 100%;
    object-fit: contain;
}
.logistics_hero_left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.logistics_hero_subtitle{
    font-size: 18px;
    line-height: 24px;
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 24px;
}
.logistics_hero_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 34px;
}
.logistics_hero_text{
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 500px;
}
@media screen and (max-width: 1050px) {
    .logistics_hero{
        padding-top: 150px;
    }
    .logistics_hero_subtitle{
        font-size: 16px;
        line-height: 22px;
        color: var(--accent);
        font-weight: 400;
        margin-bottom: 14px;
    }
    .logistics_hero_title{
        font-size: 38px;
        line-height: 46px;
        font-weight: 400;
        color: var(--text-black);
        margin-bottom: 24px;
    }
    .logistics_hero_text{
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        color: var(--text-black);
        max-width: 450px;
    }
}
@media screen and (max-width: 810px) {
    .logistics_hero_wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 30px;
    }
    .logistics_hero_left{
        align-items: center;
    }
    .logistics_hero_title,
    .logistics_hero_text,
    .logistics_hero_subtitle{
        text-align: center;
    }
    .logistics_hero_title{
        max-width: 600px;
    }
    .logistics_hero_right{
        display: none;
    }
}
@media screen and (max-width: 670px) {
    .logistics_hero_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 510px) {
    .logistics_hero_right{
        display: flex;
    }
    .logistics_hero_wrapper{
        padding-bottom: 0;
    }
}
@media screen and (max-width: 440px) {
    .logistics_hero {
        padding-top: 120px;
      }
}
@media screen and (max-width: 410px) {
    .logistics_hero_title {
      font-size: 26px;
      line-height: 34px;
    }
}

/* catalog page */
/* bread */
.bread{
    padding-top: 180px;
    padding-bottom: 50px;
}
.bread_wrapper{
    display: flex;
    align-items: center;
    gap: 10px;
}
.bread_wrapper span,
.bread_wrapper a{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    transition: color 0.3s ease;
}
.bread_wrapper a:hover{
    color: var(--accent);
}
@media screen and (max-width: 1050px) {
    .bread_wrapper span, .bread_wrapper a {
        font-size: 16px;
    }
}


/* catalog */
.catalog{
    padding-bottom: 100px;
}
.catalog_wrapper{
    display: flex;
    flex-direction: column;
}
.catalog_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
}
.catalog_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 54px;
    max-width: 900px;
}
.catalog_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:25px;
}
.catalog_item{
    background: #fff;
    border-radius: 24px;
    border: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
}
.catalog_item_img{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}
.catalog_item_img img{
    /* width: 100%; */
    height: 340px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.catalog_item_img img:hover{
    transform: scale(1.05);
}
.catalog_item_info{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    justify-content: space-between;
    flex: 1;
}
.catalog_item_info_box{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.catalog_item_info h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
    text-align: center;
    transition: color 0.3s ease;
}
.catalog_item_info h3:hover{
    color: var(--accent);
}
.catalog_item_info p{
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
}
.catalog_item_link{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    background: var(--accent);
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--accent);
}
.catalog_item_info a:hover{
    background: #fff;
    color: var(--accent);
}
@media screen and (max-width: 1200px) {
    .catalog_title{
        font-size: 42px;
        line-height: 52px;
        max-width: 800px;
    }
    .catalog_box{
        gap: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .catalog_item_img img{
        height: 450px;
    }
    .catalog_box{
        gap: 20px;
    }
}
@media screen and (max-width: 810px) {
    .catalog_title{
        font-size: 38px;
        line-height: 46px;
    }
    .catalog_box{
        gap: 20px;
    }
    .catalog_item_info{
        padding: 15px;
    }
    .catalog_item_info p{
        font-size: 14px;
    }
    .catalog_item_img img {
        height: 350px;  
    }
    .catalog{
        padding-bottom: 100px;
    }
}
@media screen and (max-width: 730px) {
    .catalog_title {
      font-size: 32px;
      line-height: 40px;
      margin-bottom: 30px;
    }
    .bread {
        padding-top: 150px;
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 670px) {
    .catalog_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 620px) {
    .catalog_item_img img {
        height: 300px;
    }
    .catalog_item_info h3 {
        font-size: 18px;
        line-height: 24px;
        /* text-align: left; */
    }
    .catalog_item_info p{
        /* text-align: left; */
    }
    .catalog_box{
        display: flex;
        flex-direction: column;
    }
    .bread{
        padding-top: 140px;
    }
}
@media screen and (max-width: 600px) {
    .bread{
        padding-top: 120px;
    }
}
@media screen and (max-width: 450px) {
    .catalog_title {
      font-size: 26px;
      line-height: 34px;
    }
}

/* other prod */
.other_prod{
    /* padding-bottom: 150px; */
}
.other_prod_wrapper{
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}
.other_prod_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
}
.other_prod_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 44px;
    max-width: 900px;
}
.other_prod_nav{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.other_prod_item{
    display: flex;
    justify-content: center;
    align-items: center;
}
.other_prod_item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    /* max-width: 350px; */
}
.other_prod_item:hover img{
    transform: scale(1.05);
}
@media screen and (max-width: 1200px) {
    .other_prod_title{
        font-size: 42px;
        line-height: 52px;
        max-width: 700px;
    }
}
@media screen and (max-width: 810px) {
    .other_prod_title {
      font-size: 38px;
      line-height: 46px;
    }
    .other_prod{
        /* padding-bottom: 100px; */
    }
    .other_prod_nav{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 730px) {
    .other_prod_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 500px) {
    .other_prod_item{
    width: 100%;
    }
}
@media screen and (max-width: 450px) {
    .other_prod_title {
      font-size: 26px;
      line-height: 34px;
    }
    .other_prod_item,
    .other_prod_nav{
        width: 100%;
    }
    .other_prod_title{
        margin-bottom: 25px;
    }
}

/* all prod */
.all_prod_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
}
.all_prod_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 44px;
    max-width: 900px;
}
.all_prod_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.all_prod_item{
    display: none;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #EBEBEB;
    /* display: flex; */
    flex-direction: column;
    padding: 15px 15px;
    /* gap: 12px; */
}
.all_prod_item.active{
    display: flex;
}
.all_prod_item_img{
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 15px; */
}
.all_prod_item_img img{
    height: 400px;
    width: 100%;
    object-fit: cover;
    display: block;
}
.all_prod_item_info{
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.all_prod_item_info h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    transition: color 0.3s ease;
}
.all_prod_item_info p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
}
.all_prod_item_link{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #EBEBEB;
    margin-top: 15px;
}
.all_prod_item_link:hover{
    background: var(--accent);
    color: #fff;
}
.all_prod_pagination{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    /* padding-bottom: 100px; */
}
.all_prod_pagination button{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    background: #fff;
    border-radius: 50px;
    padding: 10px 20px;
    border: 1px solid #EBEBEB;
}
.all_prod_pagination button:hover{
    background: var(--accent);
    color: #fff;
}
@media screen and (max-width: 1200px) {
    .all_prod_title{
        font-size: 42px;
        line-height: 52px;
        max-width: 700px;
    }
    .all_prod_item_info h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .all_prod_item_info p {
        font-size: 14px;
        line-height: 22px;
    }
    .all_prod_item_img img {
        height: 320px;
    }
}
@media screen and (max-width: 930px) {
    .all_prod_box{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 810px) {
    .all_prod_title {
      font-size: 38px;
      line-height: 46px;
    }
    .all_prod_item_info h3 {
        font-size: 18px;
        line-height: 26px;
    }
    .all_prod_item_link {
        font-size: 14px;
        line-height: 22px;
        margin-top: 0;
    }
    .all_prod_item_img img {
        height: 268px;
    }
}
@media screen and (max-width: 730px) {
    .all_prod_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 600px) {
    .all_prod_box{
        grid-template-columns: 1fr;
    }
    .all_prod_item_img img {
        height: 368px;
      }
}
@media screen and (max-width: 450px) {
    .all_prod_title {
      font-size: 26px;
      line-height: 34px;
    }
    .all_prod_item_img img {
        height: auto;
        max-height: 350px;
        width: 100%;
        object-fit: contain;
    }
}

/* about page */
/* about */
.about_page .about_box_item h3{
    border-top: none;
    border-bottom: 1px solid #EBEBEB;
    padding-top: 0;
    margin-bottom: 12px;
}
/* approach */
.approach{
    padding-top: 100px;
    /* padding-bottom: 100px; */
}
.approach_wrapper{
    display: flex;
    flex-direction: column;
}
.approach_bottom{
    position: relative;
    height: 557px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;

    display: flex;
    align-items: flex-end;
    padding: 32px 68px;
    background: url(../images/new/about/approach.png) no-repeat center center / cover;
}
.approach_bottom_box{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.approach_bottom_box .about_box_item img{
    margin-bottom: 20px;
}
.approach_top{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 48px;
}
.approach_top_left{
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.approach_top_right{
    max-width: 525px;
}
.approach_top_box{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.approach_top_item{
    padding-bottom: 24px;
    border-bottom: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.approach_top_item:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.approach_top_item_title{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
}
.approach_top_item_text{
    font-size: 16px;
}
.approach_top_left_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 12px;
}
.approach_top_left_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
}
.approach_top_left_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .approach_top_left_title{
        font-size: 40px;
        line-height: 48px;
    }
    .approach_top_left{
        gap:0px;
    }
    .approach_top_item_title {
        font-size: 20px;
        line-height: 28px;
    }
    .approach_top_item{
        padding-bottom: 15px;
    }   
    .approach_top_box{
        gap: 15px;
    }
    .approach_bottom{
        padding: 32px;
    }
}
@media screen and (max-width: 1000px) {
    .approach_top{
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .approach_top_left,
    .approach_top_right{
        max-width: 100%;
    }
    .approach_bottom{
        height: auto;
    }
    .approach_bottom_box{
        grid-template-columns: 1fr 1fr;
    }
    .approach_top_item_title,
    .approach_top_item_text,
    .approach_top_left_subtitle,
    .approach_top_left_text,
    .approach_top_left_title{
        text-align: center;
    }
}
@media screen and (max-width: 870px) {
    .approach_top_left_title {
      font-size: 38px;
      line-height: 46px;
    }
}
@media screen and (max-width: 730px) {
    .approach_top_left_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .approach_top_left_title {
      font-size: 32px;
      line-height: 40px;
    }
    .approach_bottom_box{
        grid-template-columns: 1fr;
    }
    .approach_bottom_box .about_box_item img{
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 450px) {
    .approach_top_left_title {
      font-size: 26px;
      line-height: 34px;
    }
    .about_page .about_box_item h3,
    .approach_top_item_title{
        font-size: 18px;
        line-height: 26px;
    }
    .approach_bottom{
        padding: 24px;
    }
}

/* expertise about */
.about_expertise{
    padding-top: 100px;
    padding-bottom: 100px;
}
.about_expertise_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about_expertise_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
}
.about_expertise_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 825px;
    text-align: center;
}
.about_expertise_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    text-align: center;
    margin-bottom: 54px;
}
.about_expertise_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.about_expertise_item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
    border: 1px solid var(--accent);
    padding: 24px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
}
.about_expertise_item h3{
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--text-black);
    padding-bottom: 12px;
    border-bottom: 1px solid #EBEBEB;
}
.about_expertise_item p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .about_expertise_title{
        font-size: 40px;
        line-height: 48px;
    }
}
@media screen and (max-width: 870px) {
    .about_expertise_title {
      font-size: 38px;
      line-height: 46px;
    }
    .about_expertise_box{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 730px) {
    .about_expertise_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .about_expertise_title {
      font-size: 32px;
      line-height: 40px;
    }
    .about_expertise_text{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 515px) {
    .about_expertise_box{
        grid-template-columns: 1fr;
    }
    .about_expertise_item{
        min-height: 175px;
    }
}
@media screen and (max-width: 450px) {
    .about_expertise_title {
      font-size: 26px;
      line-height: 34px;
    }
}

/* benefits */
.benefits{
    background-color: #F8F8F8;
    padding-top: 100px;
    padding-bottom: 100px;
}
.benefits_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.benefits_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
}
.benefits_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 825px;
    text-align: center;
}
.benefits_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    text-align: center;
    margin-bottom: 54px;
}
.benefits_box{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.benefits_item{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 24px;
    border: 1px solid #EBEBEB;
    padding: 24px;
    transition: all 0.3s ease;
}
.benefits_item:hover,
.benefits_item.active{
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.benefits_item span{
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.benefits_item:hover span,
.benefits_item.active span{
    color: #fff;
}
.benefits_item h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 12px;
}
.benefits_item:hover h3,
.benefits_item.active h3{
    color: #fff;
}
.benefits_item p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.benefits_item:hover p,
.benefits_item.active p{
    color: #fff;
}
.benefits_item_1{
    grid-column: 1/3;
}
.benefits_item_2{
    grid-column: 3/5;
}
.benefits_item_3{
    grid-column: 5/7;
}
.benefits_item_4{
    grid-column: 1/4;
    padding-bottom: 70px;
}
.benefits_item_5{
    grid-column: 4/7;
    padding-bottom: 70px;
}
@media screen and (max-width: 1200px) {
    .benefits_title{
        font-size: 40px;
        line-height: 48px;
    }
}
@media screen and (max-width: 1070px) {
    .benefits_item_1{
        grid-column: 1/4;
    }
    .benefits_item_2{
        grid-column: 4/7;
    }
    .benefits_item_3{
        grid-column: 1/4;
    }
    .benefits_item_4{
        grid-column: 4/7;
    }
    .benefits_item_5{
        grid-column: 1/7;
    }
}
@media screen and (max-width: 870px) {
    .benefits_title {
      font-size: 38px;
      line-height: 46px;
    }
}
@media screen and (max-width: 730px) {
    .benefits_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .benefits_title {
      font-size: 32px;
      line-height: 40px;
    }
    .benefits_box{
        grid-template-columns: 1fr;
    }
    .benefits_item_1,
    .benefits_item_2,
    .benefits_item_3,
    .benefits_item_4,
    .benefits_item_5{
        grid-column: unset;
    }
    .benefits_item h3{
        font-size: 20px;
        line-height: 28px;
    }
    .benefits_item span{
        font-size: 32px;
    }
}
@media screen and (max-width: 450px) {
    .benefits_title {
      font-size: 26px;
      line-height: 34px;
    }
}
/* about hero */
.about_hero{
    padding-top: 480px;
    padding-bottom: 61px;
    background: url(../images/new/about/hero_bg.png) no-repeat center bottom / cover;
    /* max-height: 900px;
    height: 100dvh; */
}
.about_hero .container{
    height: 100%;
}
.about_hero_wrapper{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    position: relative;
}
.about_hero_content{
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: #ffffffa2;
    max-width: 880px;
    padding: 24px 24px 65px 24px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}
.about_hero_content span{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    background-color: #0b499659;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.about_hero_content h1{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 12px;
    text-align: center;
    max-width: 780px;
}
.about_hero_content p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
}
.about_hero_img{
    position: absolute;
    bottom: 0;
    left: 50%;
    object-fit: contain;
    z-index: 4;
    transform: translateX(-50%);
}
.about_hero_text{
    position: absolute;
    object-fit: contain;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 54px;
    background-color: #fff;
    border: 1px solid #EBEBEB;
    padding: 10px 15px;
}
.about_hero_text img{
    width: 32px;
    object-fit: contain;
}
.about_hero_text p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.about_hero_text_1{
    top: -150px;
    left: -150px;
}
.about_hero_text_2{
    top: -300px;
    left: 100px;
}
.about_hero_text_3{
    top: -300px;
    right: 0;
}
.about_hero_text_4{
    top: -150px;
    right: -50px;
}
@media screen and (max-width: 1600px) {
    .about_hero_text{
        font-size: 14px;
        gap: 6px;
        padding: 5px 10px;
    }
    .about_hero_text img{
        width: 24px;
    }
    .about_hero_text p{
        font-size: 14px;
    }
    .about_hero_text_1{
        left:0px;
    }
    .about_hero_text_3{
        right: 0px;
    }
}
@media screen and (max-width: 1200px) {
    .about_hero_content h1 {
        font-size: 40px;
        line-height: 48px;
    }
    .about_hero_content p {
        font-size: 14px;
        line-height: 22px;
    }
    .about_hero_content{
        max-width: 655px;
    }
    .about_hero{
        padding-bottom: 40px;
    }
    .about_hero_text{
        display: none;
    }
    .about_hero{
        overflow: hidden;
    }
    .about_hero_img{
        bottom:93px
    }
}
@media screen and (max-width: 920px) {
    .about_hero_img{
        bottom: 200px;
        width: 870px;
        max-width: unset;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media screen and (max-width: 690px) {
    .about_hero_content h1{
        font-size: 32px;
        line-height: 40px;
    }
    .about_hero_content{
        width: 100%;
        max-width: 520px;
        padding-bottom: 30px;
    }
    .about_hero {
        padding-top: 515px;
    }
}
@media screen and (max-width: 570px) {
    .about_hero_img{
        bottom: 250px;
        width: 650px;
    }
    .about_hero{
    }
    .about_hero_content h1{
        font-size: 28px;
        line-height: 36px;
    }
    .about_hero_content p{
        font-size: 14px;
        line-height: 22px;
    }
    .about_hero_content{
        padding-bottom: 20px;
        gap: 0;
    }
    .about_hero_text_1{
        left: 0px;
    }
}
@media screen and (max-width: 500px) {
    .about_hero {
        padding-top: 470px;
      }
}
@media screen and (max-width: 450px) {
    .about_hero {
        padding-top: 404px;
      }
}
@media screen and (max-width: 440px) {
    .about_hero_content h1{
        font-size: 24px;
        line-height: 32px;
    }
    .about_hero {
        padding-top: 435px;
      }
      
}
@media screen and (max-width: 410px) {
    .about_hero {
        padding-top: 375px;
      }
}
@media screen and (max-width: 370px) {
    .about_hero_img{
        bottom: 300px;
        width: 550px;
    }
}

/* catalog all page */
.catalog_all_page .catalog{
    padding-bottom: 0;
}
.catalog_all_page .catalog_title{
    margin-bottom: 25px;
}
.catalog_all_page .other_prod{
    /* padding-bottom: 60px; */
}
.catalog_all_page .bread{
    padding-bottom: 20px;

}
.catalog_all_page .catalog_text{
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}

/* product */
/* product info */
.product_info_wrapper{
    display: grid;
    grid-template-columns: 680px 1fr;
    gap: 80px;
}
.product_info_right{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}
.product_info_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 22px;
}
.product_info_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #908e8e;
    margin-bottom: 24px;
}   
.product_info_raiting{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
}
.product_info_raiting p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #908e8e;
}
.product_info_raiting_stars{
    display: flex;
    align-items: center;
    gap: 5px;
}
.product_info_raiting_stars img{
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.product_info_price{
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
}
.product_info_buttons{
    display: flex;
    align-items: center;
    gap: 20px;
}
.product_info_button{
    background: var(--accent);
    border-radius: 50px;
    padding: 10px 10px 10px 20px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product_info_button img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.product_info_button:hover img{
    border: 1px solid var(--accent);
}
.product_info_button span{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
}
.product_info_button:hover{
    background: #fff;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.product_info_button:hover span{
    color: var(--accent);
}
.product_info_link{
    height: 54px;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    border-radius: 50px;
    padding: 10px 40px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}
.product_info_link:hover{
    color: #fff;
    background: var(--accent);
}
@media screen and (max-width: 1240px) {
    .product_info_wrapper{
        gap: 40px;
    }
    .product_info_title {
        font-size: 35px;
        line-height: 43px;
    }
    .product_info_price {
        font-size: 20px;
        line-height: 28px;
    }
    .product_info_wrapper {
        grid-template-columns: 560px 1fr;
    }
}
@media screen and (max-width: 1050px) {
    .product_info_wrapper {
        grid-template-columns: 1.3fr 1fr;
    }
    .product_info_button span{
        font-size: 16px;
        line-height: 24px;
    }
    .product_info_link{
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media screen and (max-width: 810px) {
    .product_info_wrapper{
        display: flex;
        flex-direction: column;
        gap:30px;
    }
    .product_info_right{
        padding-top: 0;
    }
}
@media screen and (max-width: 510px) {
    .product_gallery__main .mainSwiper,
    .product_gallery__thumbs{
        height: 387px!important;
    }
    .product_info_title {
        font-size: 28px;
        line-height: 38px;
    }
}


/* category list */
.product_list,
.category_list{
    padding-bottom: 150px;
}
.product_list_wrapper,
.category_list_wrapper{
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.product_list_title,
.category_list_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
}
.product_list_box,
.category_list_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.category_list_item{
    padding: 20px;
    background: #F5F5F5;
    border: 1px solid #E0E0E0;
}
.category_list_item a{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.category_list_item img{
    width: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}
.category_list_item img:hover{
    transform: scale(1.05);
}
.category_list_item span{
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    text-align: center;
}
.product_list_item{
    padding: 20px;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
}
.product_list_item a{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    height: 100%;
}
.product_list_item img{
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}
.product_list_item:hover img{
    transform: scale(1.05);
}
.product_list_item span{
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 5px;
}
.product_list_item p{
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: #717171;
    text-align: center;
}
.btn_more{
    margin-top: 15px;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text-black);
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn_more:hover{
    background: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}
.product_list_item_info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.product_list_item_info_text{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}
@media screen and (max-width: 1200px) {
    .product_list_title,
    .category_list_title{
        font-size: 36px;
        line-height: 44px;
    }
    .product_list_box,
    .category_list_box{
        gap: 15px;
    }
    .product_list_item span,
    .category_list_item span{
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (max-width: 940px) {
    .product_list_box{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 850px) {
    .category_list_box{
        grid-template-columns: repeat(2, 1fr);
    }   
}
@media screen and (max-width: 570px) {
    .product_list_box,
    .category_list_box{
        grid-template-columns: repeat(1, 1fr);
    }
    .product_list,
    .category_list{
        padding-bottom: 80px;
    }
    .product_list_title,
    .category_list_title{
        font-size: 26px;
        line-height: 32px;
    }
    .category_list_item{
        padding:15px 10px 10px 10px;
    }
}
/* product view */
.product_view{
    margin-bottom: 100px;
}
.product_view_wrapper{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.product_view_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
}
.product_view_box{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}
.product_view_img img{
    width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}
.product_view_info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product_view_info ul li,
.product_view_info ul li span,
.product_view_info p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
.product_view_info ul{
    list-style: disc;
    padding-left: 20px;
}
.product_view_info ul li{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}

/* Таблицы в описании товара */
.product_view_info table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-black);
    background: #fff;
    border: 1px solid #e0e4e6;
    border-radius: 6px;
    overflow: hidden;
}
.product_view_info tbody tr:first-child td,
.product_view_info tbody tr:first-child th {
    font-weight: 700;
    background-color: #eaeeef !important;
    color: #2c3e50;
    padding: 10px 12px;
    border-bottom: 2px solid #d0d5d8;
}
.product_view_info tbody tr:not(:first-child) td {
    padding: 10px 12px;
    border-bottom: 1px solid #e8ebed;
}
.product_view_info tbody tr:last-child td {
    border-bottom: none;
}
.product_view_info tbody tr:not(:first-child):hover {
    background-color: #f8f9fa;
}
.product_view_info td {
    vertical-align: top;
}
.product_view_info td + td {
    border-left: 1px solid #e8ebed;
}
@media screen and (max-width: 800px) {
    .product_view_box{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 570px) {
    .product_view_title{
        font-size: 32px;
        line-height: 40px;
    }
    .product_view_wrapper{
        gap: 30px;
    }
}


/* additional products */
.additional_products{
    padding-top: 100px;
}
.additional_products_wrapper{
    display: flex;
    flex-direction: column;
}
.additional_products_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
}
.additional_products_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 825px;
}
.additional_products_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    margin-bottom: 60px;
}
.additional_products_box{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.additional_products_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.additional_products_item_img{
    height: 400px;
} 
.additional_products_item_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.additional_products_item_info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.additional_products_item_title{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 12px;
    text-align: center;
}
.additional_products_item_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 12px;
    text-align: center;
}
.additional_products_item_link{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    background-color: var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}
.additional_products_item_link:hover{
    background-color: #fff;
    color: var(--accent);
    border: 1px solid var(--accent);
}
@media screen and (max-width: 1200px) {
    .additional_products_title {
        font-size: 42px;
        line-height: 52px;
    }
    .additional_products_item_title {
        font-size: 18px;
        line-height: 26px;
    }
    .additional_products_item_text {
        font-size: 14px;
    }
}
@media screen and (max-width: 950px) {
    .additional_products_box{
        grid-template-columns: repeat(2, 1fr);
    }
    .additional_products_item_img {
        height: 350px;
    }
}
@media screen and (max-width: 870px) {
    .additional_products_title {
        font-size: 38px;
        line-height: 46px;
    }
}
@media screen and (max-width: 730px) {
    .additional_products_title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .additional_products_title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media screen and (max-width: 600px) {
    .additional_products_box{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .additional_products_item_img {
        height: 300px;
    }
}
@media screen and (max-width: 450px) {
    .additional_products_title {
        font-size: 26px;
        line-height: 34px;
    }
}

/* repair */
.repair{
    padding-top: 100px;
}
.repair_wrapper{
    display: flex;
    flex-direction: column;
}
.repair_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
}
.repair_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    max-width: 825px;
}
.repair_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    margin-bottom: 60px;
}
.repair_box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.repair_left img{
    width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}
.repair_right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.repair_item{
    padding-bottom: 20px;
    border-bottom: 1px solid #EBEBEB;
    display: grid;
    grid-template-columns: 50px 1fr;
}
.repair_item:last-child{
    padding-bottom: 0;
    border-bottom: none;
}
.repair_item_number{
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--text-black);
}
.repair_item_text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.repair_item_text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.repair_item_text_title{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-black);
}
.repair_item_text_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1200px) {
    .repair_title {
        font-size: 42px;
        line-height: 52px;
    }
}
@media screen and (max-width: 870px) {
    .repair_title {
        font-size: 38px;
        line-height: 46px;
    }
    .repair_box{
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }
}
@media screen and (max-width: 730px) {
    .repair_title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .repair_title {
        font-size: 32px;
        line-height: 40px;
    }
}
@media screen and (max-width: 450px) {
    .repair_title {
        font-size: 26px;
        line-height: 34px;
    }
    .repair_text{
        margin-bottom: 30px;
    }
    .repair_title{
        margin-bottom: 15px;
    }
    .repair_item_text_title {
        font-size: 18px;
        line-height: 26px;
    }   
}
/* accordion — Why Choose Us */
.choose_accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.choose_accordion_item {
    background: #fff;
    border: 1px solid #e0e4e6;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.choose_accordion_item.is-open {
    border-color: #d0d5d8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.choose_accordion_header {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 18px;
    border: none;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text-black);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}
.choose_accordion_header:hover {
    background-color: #f8f9fa;
}
.choose_accordion_icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px
}
.choose_accordion_icon[src=""],
.choose_accordion_icon:not([src]) {
    background-color: #e0e7ff;
}
.choose_accordion_title {
    flex: 1;
}
.choose_accordion_toggle {
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: var(--text-black);
}
.choose_accordion_content {
    display: none;
    padding: 0px 18px 18px 18px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    color: #5a5f63;
}
.choose_accordion_item.is-open .choose_accordion_content {
    display: block;
}
.choose_accordion_content p {
    margin: 0;
}
@media (max-width: 640px) {
    .choose_accordion_content {
        padding-left: 18px;
    }
}
/* choose us */
.choose_us{
    padding-top: 100px;
}
.choose_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.choose_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
}
.choose_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 24px;
    text-align: center;
    max-width: 825px;
}
.choose_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    text-align: center;
    max-width: 625px;
    margin-bottom: 60px;
    text-align: center;
}
.choose_box{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.choose_left img{
    width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}
@media screen and (max-width: 1200px) {
    .choose_title {
      font-size: 42px;
      line-height: 52px;
    }
    .choose_box{
        gap: 20px;
    }
}
@media screen and (max-width: 870px) {
    .choose_title {
      font-size: 38px;
      line-height: 46px;
    }
    .choose_box{
        display: flex;
        flex-direction: column-reverse;
        gap: 30px;
    }
    .choose_text{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 730px) {
    .choose_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 670px) {
    .choose_title {
      font-size: 32px;
      line-height: 40px;
    }
}
@media screen and (max-width: 450px) {
    .choose_title {
      font-size: 26px;
      line-height: 34px;
    }
}

/* .choose_right{
    display: flex;
    flex-direction: column;
    gap: 20px;
} */
/* product_benefits_wrapper */
.product_benefits{
    margin-top: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F5F5F5;
}
.product_benefits_wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 100px;
}
.product_benefits_left{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.product_benefits_subtitle{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: var(--accent);
}
.product_benefits_title{
    font-size: 48px;
    line-height: 56px;
    font-weight: 400;
    color: var(--text-black);
}
.product_benefits_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
    max-width: 625px;
    margin-bottom: 30px;
}
.product_benefits_video{
    position: relative;
    /* aspect-ratio: 16/9;   */
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}
.product_benefits_video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_benefits_video video,
.product_benefits_video_poster,
.product_benefits_video_iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: none;
}
.product_benefits_video_poster{
    background-size: cover;
    background-position: center;
}
.product_benefits_video_button{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    border-radius: 50%;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_benefits_video_button:hover{
    transform: translate(-50%, -50%) scale(1.1);
}
.product_benefits_video_button img{
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: -5px;
}
.product_benefits_right{
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.product_benefits_item{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #EBEBEB;
}
.product_benefits_item img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.product_benefits_item h3{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    color: var(--text-black);
    padding-top: 20px;
    border-top: 1px solid #EBEBEB;
}
.product_benefits_item p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-black);
}
@media screen and (max-width: 1310px) {
    .product_benefits_right{
        padding-left: 0;
    }
}
@media screen and (max-width: 1200px) {
    .product_benefits_title {
      font-size: 42px;
      line-height: 52px;
    }
}
@media screen and (max-width: 1050px) {
    .product_benefits_wrapper{
        gap: 40px;
    }
}
@media screen and (max-width: 950px) {
    .product_benefits_wrapper{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}
@media screen and (max-width: 870px) {
    .product_benefits_title {
      font-size: 38px;
      line-height: 46px;
    }
}
@media screen and (max-width: 730px) {
    .product_benefits_title {
      font-size: 32px;
      line-height: 40px;
    }
    .product_benefits{
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 670px) {
    .product_benefits_title {
      font-size: 32px;
      line-height: 40px;
    }
    .product_benefits_right{
        gap: 20px;
    }
    .product_benefits_video{
        height: 400px;
    }
}
@media screen and (max-width: 450px) {
    .product_benefits_title {
      font-size: 26px;
      line-height: 34px;
    }
}
