@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;800;900&display=swap);

body {
  font-family: 'Montserrat', sans-serif;
}

/* ### index ### */

.mainSection{
    background: url('../img/main/bg.jpg') no-repeat center / cover;
}

.mainDarkMask{
    display: flex;
    justify-content: center;
    background: linear-gradient(90deg, #000000ee, #00000000);
    width: 100%;
    height: 100%;
    padding: 220px 0 180px;
}

.mainContent{
    width: 680px;
}

.mainSpan{
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
}

.mainContent h1{
    color: #fff;
    font-size: 52px;
    margin-top: 10px;
}

.mainContent p{
    color: #fff;
    font-weight: unset;
    font-size: 18px;
    margin-top: 10px;
}

.mainContent a{
    margin-top: 25px;
}

@media(min-width: 320px) and (max-width: 720px){
    .mainDarkMask{
        padding: 100px 0;
    }

    .mainContent{
        width: 100%;
    }

    .mainContent h1{
        font-size: 36px;
    }

    .mainContent p{
        font-size: 14px;
    }
}

/* partners */

.partners{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.partnerItem{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.partnerItemImg{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.partnerItem img{
    width: 100%;
    object-fit: contain;
    height: auto;
}

.partnerItemText{
    margin-top: 10px;
}

.partnerItemText p{
    color: #333;
    font-weight: bold;
}


@media(min-width: 320px) and (max-width: 720px){
    .partners{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .partnerItem{
        margin-top: 10px;
    }

    .partnerItemText p{
        font-size: 14px;
    }

}


/* homeCategories */

.homeCategoriesContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.homeCategoryItem{
    margin-top: 45px;
    transition: .4s;
}

.homeCategoryItemImg{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    border-radius: 5px;
    background: #E9ECF4;
    transition: .4s;
}

.homeCategoryItemImg img{
    width: 90%;
    height: 90%;
    transition: .4s;
    object-fit: cover;
}

.homeCategoryItemTitle p{
    margin-top: 10px;
    font-weight: 500;
    color: #333;
    transition: .4s;
}

.homeCategoryItem:hover .homeCategoryItemTitle p{
    color: #3F57B9;
}


.homeCategoryItem:hover .homeCategoryItemImg img{
    transform: scale(1.1, 1.1);
}

@media(min-width: 320px) and (max-width: 480px){

      .homeCategoriesContainer{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .homeCategoryItem{
        margin-top: 20px;
        width: 100%;
        overflow: hidden;
    }
}

@media(min-width: 480px) and (max-width: 720px){

    .homeCategoriesContainer{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .homeCategoryItem{
        margin-top: 20px;
        width: 100%;
        overflow: hidden;
    }

    .homeCategoryItemImg{
        height: 180px;
    }
}

@media(min-width: 720px) and (max-width: 920px){

    .homeCategoriesContainer{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .homeCategoryItem{
        margin-top: 20px;
        width: 100%;
        overflow: hidden;
    }

    .homeCategoryItemImg{
        height: 200px;
    }
}

@media(min-width: 920px) and (max-width: 1320px){
    .homeCategoriesContainer{
        gap: 20px;
    }

    .homeCategoryItem{
        margin-top: 20px;
        width: 100%;
        overflow: hidden;
    }

    .homeCategoryItemImg{
        height: 190px;
    }
}


/* products */

.productsContainer4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.productsContainer3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.productItem{
    width: 100%;
    margin-top: 30px;

    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column; /* Элементы располагаются вертикально */
    height: 100%; /* Занимает всю высоту родительского контейнера */
}

.productItemTop{
    position: relative;
    flex: 0 0 auto; /* Верхняя часть не растягивается */
}

.productItemBottom {
    flex: 1; /* Занимает всё оставшееся пространство */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Распределяет содержимое по высоте */
}

.productItemPrice{
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -13px;
    width: 100%;
}

.productItemPrice span{
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
    margin: 0 3px;
    border-radius: 5px;
}

/* .productItemImg img{
    width: 100%;
    height: 190px;
    border-radius: 10px;
    object-fit: cover;
} */

.productItemImg {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: #fafafafa;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.productItemImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productItemText{
    margin-top: 25px;
}

.productItemText a{
    font-size: 16px;
    transition: .4s;
    font-weight: bold;
}

.productItemText ul{
    margin-top: 10px;
}

.productItemText li{
    color: #666;
    margin-top: 8px;
    font-size: 13px;
    list-style: none;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* 
.productItemText li:before {
    content: "•";
    margin-right: 5px;
    font-weight: bold;
} */

.productItemStrong{
    font-weight: bold;
}

.dots{
    flex-grow: 1;
    border-bottom: 1px dotted #666;
    margin: 0 5px;
}

.productItemBtnContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btnProduct{
    margin-top: 10px;
    width: calc(100% - 58px) !important;
}

.productItemText a:hover{
    text-decoration: none;
}

@media(min-width: 320px) and (max-width: 720px){
    .productsContainer4{
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .productsContainer3{
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .productItem{
        width: 100%;
    }
}

@media(min-width: 720px) and (max-width: 1000px){
    .productsContainer4{
        grid-template-columns: 1fr 1fr;
    }

    .productsContainer3{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .productItem{
        width: 100%;
    }
}

@media(min-width: 1000px) and (max-width: 1320px){
    .productsContainer4{
        grid-template-columns: 1fr 1fr 1fr;
    }

    .productsContainer3{
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

    .productItem{
        width: 100%;
    }


}


/* about */

.aboutContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.aboutText{
    margin-right: 40px;
    font-size: 14px;
    color: #666;
    flex: 1;
}

.aboutText h2 {
    margin-top: 10px !important; 
    font-size: 26px !important; 
    margin-bottom: 10px !important;
}

.aboutText h3 {
    margin-top: 10px !important; 
    font-size: 20px !important;
    margin-bottom: 10px !important;
}

.aboutText p {
    margin-bottom: 10px !important; 
}

.aboutText ul, .aboutText ol {
    padding-left: 20px !important;
    margin-top: 10px !important; 
    margin-bottom: 10px !important; 
}

.aboutText ul {
    list-style: disc !important; 
}

.aboutText ul, .aboutText ul li {
    list-style: disc !important; 
}


.aboutText ul li .aboutText ol li {
    margin-bottom: 5px !important; 
}

.aboutImg{
    width: 460px;
}

.aboutImg img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.aboutImg iframe{
    width: 460px;
    height: 260px;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cloudeContent{
    width: 100%;
}

.cloudeHeader{
    width: 100%;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
}

.cloudeHeader h3{
    color: #fff;
    text-align: center;
    font-weight: 500;
}

.cloudeContainer{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #ECF0F1;
    padding: 15px;
    border-radius: 0 0 10px 10px;
}

.cloudTag{
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
    gap: 5px;
    transition: .4s;
}

.cloudTag img{
    width: 16px;
    margin: 0;
    border-radius: 0;
}

.cloudTag:hover{
    color: #3F57B9;
}

@media(min-width: 320px) and (max-width: 820px){
    .aboutContainer{
        justify-content: center;
        flex-wrap: wrap-reverse;
    }

    .aboutText{
        margin-right: 0;
        margin-top: 20px;
    }

    .aboutImg{
        width: 100%;
    }

    .aboutImg iframe{
        width: 100%;
        height: 260px;
    }
}

@media(min-width: 820px) and (max-width: 980px){

    .aboutText{
        margin-right: 20px;
    }

    .aboutImg{
        width: 50vw;
    }
}

/* advantages */

.advantagesContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-radius: 10px;
    margin-top: 30px;
    padding: 40px;
}

.advantageItem{
    width: 160px;
}

.advantageItem span{
    font-size: 48px;
    font-weight: 600;
}

.advantageItem p{
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}

@media(min-width: 320px) and (max-width: 550px){
    .advantagesContainer{
        grid-template-columns: 1fr;
        padding: 0 30px 40px;
    }

    .advantageItem{
        display: grid;
        justify-items: center;
        width: 100%;
        margin-top: 40px;
    }
}

@media(min-width: 550px) and (max-width: 920px){
    .advantagesContainer{
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        padding: 0 30px 40px;
    }

    .advantageItem{
        margin-top: 40px;

        display: grid;
        justify-items: center;
        text-align: center;
        margin-top: 40px;
    }
    
    .advantageItem p{
        margin-top: 10px;
    }
}

@media(min-width: 920px) and (max-width: 1200px){
    .advantagesContainer{
        padding: 20px 40px;
    }
}

/* recent Shipments */

.recentShipmentsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
}

.recentShipments{
    width: 360px;
    margin-top: 35px;
}

.recentShipmentsImg{
    overflow: hidden;
    border-radius: 10px;
}

.recentShipmentsImg img{
    width: 360px;
    height: 200px;
    transition: .4s;
    object-fit: cover;
}

.recentShipmentsText h2{
    margin-top: 15px;
    transition: .4s;
}

.recentShipmentsText span, .recentShipmentsText p{
    color: #999;
    font-weight: 500;
    margin-top: 5px;
}

.recentShipmentsText span{
    display: block;
}

.recentShipments:hover .recentShipmentsText h2{
    color: #333;
}

.recentShipments:hover .recentShipmentsImg img{
    transform: scale(1.1, 1.1);
}

@media(min-width: 320px) and (max-width: 380px){
    .recentShipmentsContainer{
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .recentShipments{
        width: 300px;
    }

    .recentShipmentsImg img{
        width: 300px;
        height: 180px;
    }
}

@media(min-width: 380px) and (max-width: 820px){
    .recentShipmentsContainer{
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media(min-width: 820px) and (max-width: 1200px){
    .recentShipmentsContainer{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* cities */

.citiesContent{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.citiesBg{
    background: url('../img/components/cities.jpg') no-repeat center / cover;
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(1.1, 1.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.darkMask{
    background: #00000091;
    width: 100%;
    height: 100%;

    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;

}

.cityContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 45px;
}

.cityTitle{
    color: #fff;
    width: 380px;
}

.cityTitle h2{
    font-size: 26px;
}

.cityTitle p{
    font-size: 14px;
    font-weight: 400;
    margin-top: 15px;
} 

.cityTitle a{
    margin-top: 15px;
}

.cityItemContent{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 60px;
    gap: 15px 45px;
}

.cityItem{
    display: flex;
    align-items: center;
}

.cityItemIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: #4748599a;
}

.cityItemTitle{
    color: #fff;
    margin-left: 10px;
    font-size: 14px;
    width: calc(100% - 30px);
}


@media(min-width: 320px) and (max-width: 550px){
    
    .cityContainer{
        justify-content: center;
        flex-wrap: wrap;
        padding: 60px 45px;
    }
    
    .cityTitle{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    
    
    .cityItemContent{
        grid-template-columns: repeat(2, 1fr);
        margin: 40px 60px 0;
    }
}

@media(min-width: 550px) and (max-width: 780px){
    
    .cityContainer{
        justify-content: center;
        flex-wrap: wrap;
        padding: 60px 45px;
    }
    
    .cityTitle{
        color: #fff;
        width: 100%;
        text-align: center;
    }
    
    
    .cityItemContent{
        grid-template-columns: repeat(3, 1fr);
        margin: 40px 60px 0;
    }
}

@media(min-width: 780px) and (max-width: 920px){
    .cityItemContent{
        grid-template-columns: repeat(2, 1fr);
        margin: 0 20px;
    }
}

@media(min-width: 920px) and (max-width: 1200px){

    .cityItemContent{
        grid-template-columns: repeat(3, 1fr);
    }
}

/* supervises */

.supervisesContent{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.supervisesBg{
    background: url('../img/components/supervises.jpg') no-repeat center / cover;
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(1.1, 1.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.superviseContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
}

.superviseText{
    width: 60%;
}

.superviseText h2{
    color: #fff;
    font-size: 26px;
}

.superviseItems{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.superviseItem{
    display: flex;
    justify-content: space-between;
}

.superviseItemIcon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    background: #47485960;
}

.superviseItemText{
    width: calc(100% - 45px);
    color: #fff;
}

.superviseItemText h2{
    font-size: 16px;
}

.superviseItemText p{
    font-size: 14px;
    font-weight: unset;
    margin-top: 5px;
}

.superviseAbout{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 25px;
}

.superviseAbout h2{
    color: #333;
    font-size: 16px;
}

.superviseAbout p{
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}

.superviseRightContent{
    display: grid;
    justify-items: center;
    width: 38%;
}

.superviseRightContent p{
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    width: 260px;
    margin-top: 45px;
}

.superviseSliderContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
}

.swiperContainer {
    width: 320px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-pagination{
    top: auto !important;
    bottom: -30px !important;
}


@media(min-width: 320px) and (max-width: 960px){
    
    
    .superviseContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 20px;
    }
    
    .superviseText{
        width: 100%;
    }
    
    .superviseText h2{
        font-size: 24px;
    }
    
    .superviseItems{
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .superviseItem{
        display: flex;
        justify-content: space-between;
    } 
    
    .superviseItemText h2{
        font-size: 16px;
    }
    
    .superviseAbout h2{
        font-size: 16px;
    }
    
    .superviseRightContent{
        width: 100%;
    }
    
    .superviseSliderContainer{
        margin-top: 25px;
        width: 100%;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
}


@media(min-width: 960px) and (max-width: 1300px){
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
}

/* reviews */

.reviewsContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.reviewsContent{
    column-count: 2;
    column-gap: 0;
    gap: 20px;
    width: calc(100% - 520px);
}

.reviewsContent3{
    column-count: 3;
    column-gap: 0;
    gap: 20px;
    width: 100%;
}

.reviewItem{
    padding: 20px;
    margin-bottom: 15px !important; 
    display: inline-block;
    /* display: flex;
    justify-content: space-between; */
    width: calc(100% - 40px);
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    margin: 0 auto;
}

.reviewItemLeft{
    float: left;
}

.reviewItemAva{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewItemAva img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewItemAva span{
    color: #fff;
}

.reviewItemRight{
    width: calc(100% - 55px);
    float: right;
}

.reviewItemRight h3{
    color: #333;
    font-size: 16px;
}

.reviewItemInfo{
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.reviewItemStars{
    display: flex;
}

.reviewItemStars svg{
    width: 15px;
}

.reviewItemStars img{
    width: 16px;
}

.reviewItemInfo span{
    color: #666;
    font-size: 14px;
    margin-left: 10px;
}

.reviewItemRight p{
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}

/* reviewsAbout */

.reviewsAbout{
    width: 460px;
}

.reviewsAboutTitle{
    width: 100%;
    color: #333;
    font-weight: unset;
    font-size: 24px;
}

.reviewsAboutTitle span{
    display: flex;
    font-weight: bold;
    width: 100%;
}

.reviewsAboutContentBg{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 20px;
    padding: 25px;
    margin-top: 25px;
}

.reviewsAboutContainer{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.reviewsEvaluation p{
    font-size: 52px;
    font-weight: 500;
}

.reviewsEvaluationStars{
    display: flex;
}

.reviewsCustomerEvaluation{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.reviewsCustomerEvaluation p{
    text-align: right;
    width: 100%;
    font-size: 20px;
    color: #333;
}

.reviewsCustomerEvaluationContainer{
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.customerEvaluationPlatformItem img{
    height: 54px;
}

.reviewsAboutContainer{
    margin-top: 20px;
}

.reviewsAboutContainer a{
    text-decoration: underline;
    color: #11AA11;
    transition: .4s;
}

.reviewsAboutContainer a:hover{
    text-decoration: none;
}

.reviewsBtn{
    margin-top: 30px;
}

@media(min-width: 320px) and (max-width: 550px){
    
    .reviewsContainer{
        flex-wrap: wrap-reverse;
    }

    .reviewsContent, .reviewsContent3{
        column-count: 1;
        width: 100%;
        margin-top: 20px;
    }

    .reviewItem{
        margin-bottom: 15px !important; 
    }

    /* reviewsAbout */

    .reviewsAbout{
        width: 100%;
    }

   

    .reviewsAboutContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .reviewsAboutContainer a{
        text-align: center;
        width: 100%;
    }

    .reviewsEvaluation p{
        text-align: center;
        font-size: 52px;
        font-weight: 500;
    }

    .reviewsEvaluationStars{
        display: flex;
    }

    .reviewsCustomerEvaluation{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .reviewsCustomerEvaluation p{
        text-align: center;
    }

    .reviewsCustomerEvaluationContainer{
        justify-content: center;
    }

    .reviewsBtn{
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
}

@media(min-width: 550px) and (max-width: 1200px){
    
    .reviewsContainer{
        flex-wrap: wrap-reverse;
    }

    .reviewsContent, .reviewsContent3{
        column-count: 2;
        width: 100%;
        margin-top: 20px;
    }

    .reviewItem{
        margin-bottom: 15px !important; 
    }

    /* reviewsAbout */

    .reviewsAbout{
        width: 100%;
    }

    .reviewsAboutContainer{
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .reviewsEvaluation p{
        text-align: center;
    }

    .reviewsEvaluationStars{
        display: flex;
    }
}


/* vacancy */

.vacancyContainer{
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.vacancyItem{
    display: inline-block;
    padding: 16px 32px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin: 10px 0 0 10px;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    transition: .4s;
}

.vacancyItem:hover{
    background: #f2f2f2;
}

@media(min-width: 320px) and (max-width: 550px){
    .vacancyItem{
        padding: 10px 15px;
    }
}


/* ### pages - components ### */

.pageContainer{
    display: flex;
    justify-content: space-between;
}

.leftContent{
    width: 280px;
}

.menuCategoryBorder{
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border: 1px solid #f2f2f2;
    background: #fff;
}

.menuCategory li{
    border-bottom: 1px solid #f2f2f2;
    position: relative; 
}

.menuCategory li:last-child{
    border-bottom: 0;
}

.menuCategory li a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
    transition: .4s;
}

.submenu{
    display: none;
    position: absolute;
    top: -1px;
    left: 280px; 
    background: #fff;
    min-width: auto;
    white-space: nowrap;
    border: 1px solid #f2f2f2;
    z-index: 99;
}

.menuCategory li:hover .submenu{
    display: block;
}

.submenu a{
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.submenu a:hover{
    color: #FF9900;
}

.rightContent{
    width: calc(100% - 310px);
}

.fullContent{
    width: 100%;
}

.pageTitle h1{
    font-size: 28px;
}

.breadCrumbs{
    display: flex;
    margin-top: 5px;
}

.breadCrumbs a, .breadCrumbs p{
    font-size: 14px;
    color: #3F57B9 ;
}

.breadCrumbs span{
    display: inline-block;
    margin: 0 5px;
    font-size: 14px;
}

.breadCrumbs p{
    color: #999;
}

/* catalogTabsContainer */

.catalogTabsContainer{
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

.catalogTab{
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    margin-right: 10px;
}

.catalogTabNotActive{
    background: #f2f2f2;
}

.catalogTab img{
    height: 25px;
}

.catalogTab p{
    margin-left: 10px;
    color: #333;
    font-size: 14px;
}

.catalogTabNotActive img{
    filter: grayscale(100);
}

.catalogTabNotActive p{
    color: #999;
}

/* filter */

.catalogFilterContainer{
    display: inline-block;
    margin: 0 auto;
    margin-top: 15px;
    width: 100%;
}

.catalogFilterContent{
    display: flex;
    flex-wrap: wrap;
    float: left;
}

.catalogFilterItem{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    color: #333;
    border-radius: 10px;
    background: #f2f2f2;
    margin-right: 10px;
    transition: .4s;
    font-size: 14px;
}

.catalogFilterContent .mainBg{
    color: #fff;
}

.catalogFilterItem:hover{
    color: #fff;
}

.catalogFilterContainer .btn{
    float: right;
}


@media(min-width: 320px) and (max-width: 1328px){
        
    .pageContainer{
        justify-content: center;
    }

    .leftContent{
        display: none;
    }

    .rightContent{
        width: 100%;
    }

    .pageTitle h1{
        font-size: 24px;
    }

    .breadCrumbs{
        display: flex;
        margin-top: 5px;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
    }

    .breadCrumbs::-webkit-scrollbar { width: 0px; height: 0px;}

    .catalogTabsContainer{
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        width: 100%;
        white-space: nowrap;
    }

    .catalogTabsContainer::-webkit-scrollbar { width: 0px; height: 0px;}

    /* filter */

    
    .catalogFilterContent{
        float: left;
        width: 100%;
    }
    
    .catalogFilterItem{
        margin-top: 10px;
    }
    
    .catalogFilterContent .mainBg{
        color: #fff;
    }
    
    .catalogFilterItem:hover{
        color: #fff;
    }
    
    .catalogFilterContainer .btn{
        float: left;
        margin-top: 15px;
    }
    

}












/* ### page: product ### */

.productPageContent{
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.productPageImg{
    width: 470px;
}

.productPageImg img{
    width: 100%;
    border-radius: 10px;
}

.productPageInfo{
    width: calc(100% - 500px);
}

.partnerItemProduct{
    display: flex;
    margin-top: 15px;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #f2f2f2;
    padding: 10px;
    border-radius: 10px;
}

.partnerItemProductContent{
    display: flex;
    align-items: center;
    /* width: 100%; */
    height: 65px;
    border-radius: 20px;
}

.partnerItemProductContent img{
    height: 100%;
    /* object-fit: contain; */
}

.partnerItemProductContent p{
    color: #333;
    font-weight: bold;
    margin-left: 20px;
}

.productPageInfo h2{
    font-size: 28px;
    color: #333;
}


.productPageInfoPrice{
    display: flex;
    width: 100%;
    margin-bottom: 15px;
}

.productPageInfoPrice span{
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    margin: 0 3px;
    border-radius: 5px;
}

.productPageSpecifications p{
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.productPageSpecifications .dataTable{
    margin-top: 13px;
}

.productPageIcons{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.productPageIcon{
    width: calc(25% - 34px);
    background: #F2F2F2;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.productPageIcon img{
    width: 30px;
}

.productPageIcon p{
    width: 100%;
    color: #333;
    margin-top: 5px;
}

.productPageInfoBtnContainer{
    display: flex;
    margin-top: 20px;
}


@media(min-width: 320px) and (max-width: 920px){

    .productPageContent{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .productPageImg{
        width: 100%;
    }
    
    .productPageInfo{
        width: 100%;
        margin-top: 15px;
    }
    
    .productPageInfo h2{
        font-size: 22px;
        color: #333;
    }
    
    .productPageInfoPrice{
        margin-top: 10px;
    }
    
    .productPageIcons{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .productPageIcon{
        width: calc(50% - 40px);
        padding: 15px;
        margin-top: 20px;
    }
    
    .productPageIcon img{
        width: 30px;
    }
    
    .productPageIcon p{
        width: 100%;
        color: #333;
        margin-top: 5px;
    }
    
    .productPageInfoBtnContainer{
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media(min-width: 920px) and (max-width: 1328px){
    .productPageIcons{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .productPageIcon{
        width: calc(50% - 40px);
        padding: 15px;
        margin-top: 20px;
    }
}

.productTabs{
    display: flex;
    width: calc(100% - 14px);
    background: #FAFAFA;
    border-radius: 10px;
    padding: 7px;
    margin-top: 25px;
}

.tablinks{
    color: #333;
    margin-right: 8px;
    font-size: 14px;
    padding: 7px 14px;
}

.productTabs .secondBg{
    color: #fff;
}

.tabcontent {
    display: none;
    padding: 15px 0;
    border-top: none;
    color: #666;
    text-align: justify;
}

.descriptionStyle {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    margin: 20px auto;
    padding: 20px;
}

.descriptionStyle h2{
    font-size: 26px;
}

.descriptionStyle h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333; /* Темный цвет для заголовков */
}

.descriptionStyle p {
    margin-bottom: 20px;
    font-size: 17px;
    color: #555; /* Более светлый цвет для текста */
}

.descriptionStyle ul, .descriptionStyle ol {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.descriptionStyle ul {
    list-style-type: decimal;
}


.descriptionStyle ul li, .descriptionStyle ol li {
    margin-bottom: 12px;
    position: relative;
}

.descriptionStyle ul li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #FF5722;
    border-radius: 21px;
}


.dataTable {
    width: 100%;
    border-collapse: collapse;
}

.dataTable tr{
    display: flex;
    justify-content: space-between;
}

.dataTable tr:nth-child(even) {
    background: #f9f9f9;
}

.dataTable tr:nth-child(odd) {
    background: #fff;
}

.dataTable td {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
}

.tablinks {
    white-space: nowrap;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tr{
    display: flex;
    justify-content: space-between;
}

table tr:nth-child(even) {
    background: #f9f9f9;
}

table tr:nth-child(odd) {
    background: #fff;
}

table td {
    padding: 10px 15px;
    font-size: 14px;
    color: #333;
}

@media(min-width: 320px) and (max-width: 720px){
    .productTabs{
        overflow-x: scroll;
    }

    .productTabs::-webkit-scrollbar { width: 4px; height: 4px;}

    
    .tabcontent iframe{
        width: 100%;
        height: 260px;
    }
}

/* component in page */

.questionsContent{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.questionsBg{
    background: url('../img/components/questions-bg.jpg') no-repeat center / cover;
    filter: blur(2px);
    width: 100%;
    height: 100%;
    transform: scale(1.1, 1.1);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
}

.questionsContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}

.questionsText{
    color: #fff;
    width: 360px;
}

.questionsText p{
    font-size: 16px;
}

.questionsText h2{
    font-size: 32px;
    margin-top: 10px;
}


.questionsFormContent h2{
    color: #fff;
    font-size: 20px;
    font-weight: unset;
}

.questionsForm{
    margin-top: 20px;
}

.questionsFormInput{
    height: 50px;
    background: #fff;
    border-radius: 10px;
    padding: 0 14px;
    width: 320px;
}

.questionsFormSubmit{
    height: 50px;
    border-radius: 10px;
    padding: 0 32px;
    margin-left: 5px;
    transition: .4s;
}

.questionsFormSubmit:hover{
    color: #fff;
    border: 1px solid #fff;
}

.questionsFormContent p{
    color: #fff;
    font-size: 14px;
    font-weight: unset;
    margin-top: 20px;
}

.questionsFormContent p a{
    color: #fff;
    text-decoration: underline;
}

.questionsFormContent p a:hover{
    text-decoration: none;
}

@media(min-width: 320px) and (max-width: 1200px){

    .questionsContainer{
        justify-content: center;
        flex-wrap: wrap;
        padding: 60px 25px;
    }

    .questionsText{
        width: 100%;
    }

    .questionsText p{
        font-size: 16px;
    }

    .questionsText h2{
        font-size: 26px;
    }

    .questionsFormContent{
        width: 100%;
    }

    .questionsFormContent h2{
        font-size: 16px;
        margin-top: 20px;
    }

    .questionsForm{
        margin-top: 20px;
    }

    .questionsFormInput{
        padding: 0 14px;
        width: calc(100% - 28px);
    }

    .questionsFormSubmit{
        margin-left: 0;
        padding: 0;
        width: 100%;
        margin-top: 10px;
    }

    .questionsFormContent p{
        margin-top: 15px;
    }
}

@media(min-width: 1201px) and (max-width: 1320px){
    .questionsFormInput{
        width: 280px;
    }

}

/* FAQ */

.faqBg{
    background: #F2F2F2;
    padding: 60px 0;
}

.faqContainer{
    width: 100%;
    margin-top: 15px;
}

.faqItem {
    margin-top: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.faqItemProduct{
    padding: 15px;
    background: #fafafa;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.questionProduct{
}

.question p{
    font-weight: bold;
    font-size: 20px;
    user-select: none;
}

.questionProduct p{
    font-weight: bold;
    font-size: 16px;
    user-select: none;
}

.answer{
    display: none;
    margin-top: 30px;
    color: #333;
    font-size: 16px;
}

.question:hover{
    color: #333;
}

.toggleIcon{
    font-weight: bold;
    font-size: 22px;
    transition: transform 0.3s ease;
    user-select: none;
    margin-left: 10px;
}

.answer.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media(min-width: 320px) and (max-width: 550px){
    .faqBg{
        padding: 40px 0;
    }
   
    .faqItem {
        padding: 20px;
    }
    
    .question p{
        font-size: 16px;
    }
    
    .toggleIcon{
        font-size: 18px;
        transition: transform 0.3s ease;
        user-select: none;
    }
}








/* horizontal product item */

.productsHorizontalContainer{
    width: 100%;
}

.productItemHorizontal{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.productItemHorizontalLeft{
    display: flex;
}


.productItemHorizontalImgContent{
    width: 270px;
}

.productItemHorizontalImg {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fafafafa;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.productItemHorizontalImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btnProductHorizontal{
    width: calc(100% - 58px);
    margin-top: 10px;
}

.productItemHorizontalText{
    margin-left: 20px;
    width: 350px;
}

.productItemHorizontalText h2{
    font-size: 16px;
    color: #3F57B9;
}

.productItemHorizontalText ul{
    margin-top: 15px;
}

.productItemHorizontalText li{
    color: #666;
    margin-top: 5px;
    font-size: 13px;
    list-style: none;
}

.productItemHorizontalText li:before {
    content: "•";
    margin-right: 5px;
    font-weight: bold;
}

.productItemHorizontalRight{
    width: 260px;
}

.productItemHorizontalPrice{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.productItemHorizontalPrice span{
    display: inline-block;
    background: #3F57B9;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
    margin: 0 3px;
    border-radius: 5px;
}

.productItemHorizontalBtnContainer{
    display: flex;
    align-items: center;

    margin-top: 10px;
}

.productItemHorizontalBtnContainer .withoutFillingButton{
    margin-left: 15px;
}

@media(min-width: 320px) and (max-width: 580px){
        
    .productItemHorizontal{
        justify-content: center;
        flex-wrap: wrap;
    }

    .productItemHorizontalLeft{
        display: flex;
        flex-wrap: wrap;
    }

    .productItemHorizontalImgContent{
        width: 100%;
    }

    .productItemHorizontalText{
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }

    .productItemHorizontalText ul{
        margin-top: 10px;
    }

    .productItemHorizontalRight{
        width: 100%;
    }

    .productItemHorizontalPrice{
        display: flex;
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media(min-width: 580px) and (max-width: 920px){
        
    .productItemHorizontal{
        flex-wrap: wrap;
    }

    .productItemHorizontalRight{
        margin-top: 20px;
    }
}

/* contacts */

.contactsContainer{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.contactBlock h2{
    color: #333;
    font-size: 16px;
    margin-top: 25px;
}

.contactItem{
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contactItemIcon img{
    width: 24px;
}

.contactItemText{
    margin-left: 10px;
}

.contactItemText p{
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.contactSocialContainer{
    display: flex;
    margin-top: 10px;
}

.contactSocial{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: .4s;
}

.contactSocial img{
    width: 18px;
}

.contactBlock span{
    display: inline-block;
    font-size: 14px;
    width: 100%;
}

.mapContainer{
    margin-top: 45px;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    filter: grayscale(1);
    transition: .4s;
}

.mapContainer:hover{
    filter: grayscale(0);
}

@media(min-width: 320px) and (max-width: 780px){
    .contactsContainer{
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(1, 1fr);
        margin-top: 10px;
        gap: 10px;
    }

    .contactBlock h2{
        font-size: 18px;
        text-align: center;
    }

    .contactItem{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }

    .contactBlock span{
        text-align: center;
        width: 100%;
    }

    .mapContainer{
        height: 300px;
    }

}

/* footer */

footer{
    margin-top: 45px;
}

.footerTop{
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.footerLogo h2{
    font-weight: unset;
    font-size: 48px;
}

.footerTopContainer{
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
}

.footerItem{
    color: #fff;
}

.footerItem a{
    display: inline-block;
    color: #fff;
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
}

.footerSocialContainer{
    display: flex;
    width: 100%;
    margin-top: 20px;
}

.footerSocial{
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 32px !important;
    height: 32px !important;
    margin-right: 10px;
    transition: .4s;
}

.footerSocial img{
    width: 16px;
}

.footerSocial:hover{
    transform: scale(1.1, 1.1);
}

/* footerBottom */

.footerBottom{
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footerBottomContainer{
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.footerBottomContainer p{
    font-size: 14px;
}

.footerBotomLeft{
    display: flex;
}

.footerBotomLeft a{
    margin-left: 30px;
    font-size: 14px;
}

.footerBottomContainer a{
    color: #fff;
    text-decoration: underline;
}


@media(min-width: 320px) and (max-width: 550px){
    .footerTopContainer{
        gap: 40px;
        grid-template-columns: repeat(1, 1fr);
    }

    .footerSocialContainer{
        justify-content: center;
    }

    .footerItem{
        text-align: center;
        width: 100%;
    }

    .footerBottom{
        flex-wrap: wrap;
    }

    .footerBottomContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: #fff;
    }

    .footerBottomContainer p{
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footerBotomLeft{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .footerBotomLeft a{
        display: inline-block;
        text-align: center;
        margin-left: 30px;
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }

    .footerBotomRight{
        width: 100%;
    }

    .footerBottomContainer a{
        display: inline-block;
        color: #fff;
        text-decoration: underline;
    }
}


@media(min-width: 550px) and (max-width: 720px){
    .footerTopContainer{
        gap: 40px;
        grid-template-columns: repeat(2, 1fr);
    }

    .footerSocialContainer{
        justify-content: center;
    }

    .footerItem{
        text-align: center;
        width: 100%;
    }

    .footerBottom{
        flex-wrap: wrap;
    }

    .footerBottomContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: #fff;
    }

    .footerBottomContainer p{
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footerBotomLeft{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .footerBotomLeft a{
        display: inline-block;
        text-align: center;
        margin-left: 30px;
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }

    .footerBotomRight{
        width: 100%;
    }

    .footerBottomContainer a{
        display: inline-block;
        color: #fff;
        text-decoration: underline;
    }
}




@media(min-width: 720px) and (max-width: 1290px){
    .footerTopContainer{
        gap: 40px;
        grid-template-columns: repeat(3, 1fr);
    }

    .footerSocialContainer{
        justify-content: center;
    }

    .footerItem{
        text-align: center;
        width: 100%;
    }

    .footerBottom{
        flex-wrap: wrap;
    }

    .footerBottomContainer{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        color: #fff;
    }

    .footerBottomContainer p{
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .footerBotomLeft{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .footerBotomLeft a{
        display: inline-block;
        text-align: center;
        margin-left: 30px;
        margin-top: 10px;
        width: 100%;
        font-size: 14px;
    }

    .footerBotomRight{
        width: 100%;
    }

    .footerBottomContainer a{
        display: inline-block;
        color: #fff;
        text-decoration: underline;
    }
}

/* cities */

.citiesContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
}

.cityPageItem{
    padding: 15px;
    background: #E9ECF4;
    border-radius: 10px;
    color: #333;
    transition: .4s;
}

.cityPageItem:hover{
    color: #fff;
}

@media(min-width: 320px) and (max-width: 550px){
    .citiesContainer{
        grid-template-columns: 1fr;
    }
}

@media(min-width: 550px) and (max-width: 720px){
    .citiesContainer{
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width: 720px) and (max-width: 920px){
    .citiesContainer{
        grid-template-columns: 1fr 1fr 1fr; 
    }
}

.page404{
    text-align: center;
    margin: 120px 0;
}

.page404 h1{
    font-size: 62px;
}

.page404 p{
    font-size: 20px;
    margin-top: 5px;
    color: #999;
}

.page404 .btn{
    margin-top: 20px;
}


/* questionsProduct */

.questionsProductText{
    width: 100%;
}

.questionsProductContainer{
    flex-wrap: wrap;
}

.questionsBgProduct{
    background: url('../img/components/questions-bg-product.jpg') no-repeat center / cover;
}

/* wapp */

#whatsapp_widget {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: fixed;
    right: 18px;
    bottom: 40px;
    width: 52px;
    height: 62px;
    background: #FF5722;
    border-radius: 16px;
    box-shadow: 0px 6px 25px #00000040;
    animation: 3s radial-pulse 1s infinite;
    transition: .3s;
}

#whatsapp_widget svg {
    margin: 2px 15px 0 10px;
    transition: height 0.4s;
    fill: #ECF0F1;
    height: 45%;
}

#whatsapp_widget:hover{
    background: #f5420c;
}

#whatsapp_widget:hover svg {
    height: 45%;
}

#whatsapp_widget > span {
    color: #ECF0F1;
    margin-right: 10px;
    font-size: 18.666666666667px;
}

#whatsapp_widget {
    width: unset;
    padding: 0 0 0 20px;
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 #ff562279;
    }
    50% {
        box-shadow: 0 0 0 20px #00000000;
    }
    100% {
        box-shadow: 0 0 0 20px #00000000;
    }
}

/* Стили для мобильных устройств */
@media screen and (max-width: 768px) {
    #whatsapp_widget {
        right: 0;
        left: 0;
        bottom: 52px;
        margin: 0 auto;
        width: 188px;
        height: 60px;
        justify-content: center; /* Центрируем содержимое */
        padding: 0 10px; /* Добавляем отступы внутри кнопки */
    }

    #whatsapp_widget svg {
        margin-right: 8px; /* Уменьшаем отступ между иконкой и текстом */
        height: 50%;
    }

    #whatsapp_widget > span {
        display: inline; /* Отображаем текст */
        font-size: 16px; /* Уменьшаем размер шрифта для мобильных устройств */
    }
}

.labelCheckbox{
    display: flex !important;
    align-items: center;
    text-align: left;
    margin-top: 15px;
    width: 100%;
}

.labelCheckbox input{
    width: auto !important;
    margin: 0 !important;
}

.labelCheckbox p{
    margin-left: 10px;
    font-size: 14px !important;
    font-weight: unset !important;
    color: #666;
    margin-top: 0 !important;
}

.labelCheckbox p a{
    color: #D9B165
}