/* Основной контейнер */

.wrap {
  display: none !important;
}
.sot__company{
    border-radius: 20px !important;
}


.wrap {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    transition: .3s ease-in-out;
    position: relative;
}

.wrap img {
    width: 100%;
    height: 100%;
}

/* Стили точек (dots) */
.dot_img {
    display: block;
    position: absolute;
    background-color: white;
    width: 2%;
    height: 5.668%;
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
    transition: .5s ease;
    animation: animDot 20s ease infinite;
}

.dot_img:hover {
    transform: scale(1.3);
    transition: .5s ease-in-out;
}

.dot_img::after {
    content: "";
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 50%;
    border: 0px solid transparent;
    width: 0px;
    height: 0px;
    z-index: -1;
    animation: animClick 20s ease infinite;
}

/* Позиционирование отдельных точек */
.dot_img1 {
    top: 24%;
    left: 1%;
}

.dot_img2 {
    top: 70%;
    left: 16%;
}

.dot_img3 {
    top: 75%;
    left: 22%;
}

.dot_img4 {
    top: 54%;
    left: 35%;
}

.dot_img5 {
    top: 55%;
    left: 96.5%;
}

.dot_img6 {
    top: 35%;
    left: 42%;
}

.dot_img7 {
    top: 25%;
    left: 78%;
}

.dot_img8 {
    top: 65%;
    left: 47%;
}

.dot_img9 {
    top: 88%;
    left: 54%;
}

.dot_img10 {
    top: 16%;
    left: 49%;
}

.dot_img11 {
    top: 39%;
    left: 74%;
}

.dot_img12 {
    top: 18%;
    left: 6%;
}

.dot_img13 {
    top: 15%;
    left: 34%;
}

.dot_img14 {
    top: 33%;
    left: 21%;
}

.dot_img15 {
    top: 61%;
    left: 8%;
}


/* Анимации */
@keyframes animDot {
    0% {}

    94% {
        transform: scale(1);
    }

    94.5% {
        transform: scale(1.4);
    }

    95.5% {
        transform: scale(.7);
    }

    96% {
        transform: scale(1);
    }

    100% {}
}

@keyframes animClick {
    0% {}

    95% {
        border: 0px solid white;
        width: 100%;
        height: 100%;
    }

    97% {
        border: 6px solid white;
        width: 140%;
        height: 140%;
    }

    100% {
        border: 0px solid transparent;
        width: 200%;
        height: 200%;
    }
}


/* Стили модального окна */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transition: .3s ease-in-out;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    transition: .3s ease-in-out;
    animation: open .9s forwards;
}

.modal-image {
    position: relative;
    object-fit: cover;
    transition: .3s ease-in-out;
    display: block;
    animation: openimg 1s forwards;
}

/* Элементы управления модальным окном */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: black;
    cursor: pointer;
}

.arrow {
    position: absolute;
    font-size: 30px;
    color: #055CA7;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    z-index: 10;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

/* Модификаторы */
.no-arrows .arrow {
    display: none;
}

/* ==================== Общие стили ==================== */

.sot__company-link {
    position: relative;
}

/* ==================== Стили для sot__company ==================== */
.sot__company {
    display: flex;
    justify-content: space-between;
    background-color: #055CA7;
    border-radius: 0px 0px 70px 70px;
    width: 100%;
    height: 225px;
    position: relative;
    overflow: hidden;
}

.sot__company-info {
    flex: 1 1 95%;
    padding: 20px 0 20px 20px;
}

.sot__company-supTitle {
    font-weight: 600;
    font-size: 28px;
    color: #EFF1F7;
    margin: 0;
}

.sot__company-img {
    width: 490px;
    height: 225px;
    display: block;
    margin-right: 30px;
}

/* ==================== Стили для общих заголовков  ==================== */

.sot__company-title,
.sot__timeline-title{
    font-weight: 700;
    font-size: 30px;
    color: #EFF1F7;
    position: relative;
    margin: 0;
    display: inline;
    text-transform: uppercase;
}

.sot__timeline-title {
    font-size: 30px;
    color: #2A2E39;
}

/* ==================== Стили для контактов  ==================== */
.sot__contacts-title {
    color: #2A2E39;
    text-align: center;
}



.sot__company-link:hover {
    color: #EFF1F7;
    transition: .3s ease-in-out;
}

/* ==================== Стили для изображений   ==================== */

.company-img {
    width: 25%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
}

.assort-info-img,
.pack-info-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== Стили для sot__assort и sot__pack  ==================== */

.sot__assort-wrap {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}



.sot__assort-info {
    border: 6px solid #055CA7;
    padding: 20px;
    border-radius: 30px;


}

/* .sot__assort-info:nth-child(1) {

    flex: 0 1 30%;

}

.sot__assort-info:nth-child(2) {

    flex: 0 1 30%;

} */

.sot__assort-info:nth-child(3) {
    align-self: center;


}


.sot__assort-svg {
    margin-top: 10px;
    float: left;
    padding-right: 28px;
    text-align: left;
}

.sot__pack {
    flex-direction: row-reverse;
    border-radius: 91px 2px 2px 2px;
}





.sot__assort-supTitle,
.sot__advantage-supTitle,
.sot__timeline-supTitle,
.sot__timeline-supTitle-bottom,
.sot__cart-text,
.sot__contacts-name,
.contacts__email-title,
.contacts__tell-title,
.contacts__email,
.contacts__tell {
    font-weight: 600;
    font-size: 20px;
    color: #2A2E39;
    margin: 0;

}
.sot__timeline-supTitle-bottom,
.sot__timeline-supTitle{
    font-size: 24px;
  
   
}







/* ==================== Стили для sot__timeline ==================== */
.contacts__email,
.contacts__tell {
    margin-top: 20px;
    color: #055CA7;
}

.sot__timeline-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.sot__timeline-info-top {
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.sot__timeline-info-bottom {
    width: 100%;
    display: flex;
    justify-content: space-around;

}


.sot__timeline {
    background-color: #055CA7;
    width: 100%;
    height: 6px;
    display: flex;
    position: relative;
}

.sot__timeline-title {
    text-align: center;
}

.sot__timeline-supTitle,
.sot__timeline-supTitle-bottom {
    color: #2A2E39;
    width: 50%;
    position: relative;
    padding: 30px 30px 30px 0;
    text-align: left;
}

.sot__timeline-supTitle:first-child {
    padding-left: 0;
    text-align: left;

}

.sot__timeline-supTitle:last-child {
    padding-right: 0;
    text-align: right;
}

.sot__timeline-supTitle-bottom {
    width: 25%;
}

.sot__timeline-supTitle::after,
.sot__timeline-supTitle-bottom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 6px;
    height: 20px;
    background-color: #055CA7;

}


.sot__timeline-supTitle-bottom::after {
    bottom: inherit;
    top: 0;
}

.sot__timeline-supTitle:first-child:after {
    left: 0;
    transform: translate(0);
}

.sot__timeline-supTitle:last-child:after {
    left: inherit;
    right: 0;
    transform: translate(0);
}




.sot__video-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sot__timeline-video {
   
    width: 1200px;
    height: 500px;
    background-color: rgba(170, 181, 190, 0.15);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .3s ease-in-out;
}
.sot__timeline-video:last-child {
margin-top: 50px;
}
.video-iframe {
    width: 1200px;
    height: 500px;
}


/* ==================== Стили для sot__cart ==================== */
.sot__cart-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
  
    transition: .3s ease-in-out;

}

.sot__cart {
    display: flex;
    justify-content: center;
    margin-bottom: 150px;
    /* align-items: center; */
    min-width: 150px;
    min-height: 150px;
    background-color: white;
    border-radius: 30px;
    aspect-ratio: 1 / 1;
    /* Ключевое свойство */
    width: 100%;
    /* Чтобы контейнер занимал доступное пространство */
    max-width: 180px;
    /*Ограничение по размеру*/
    transition: .3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.sot__cart-svg {
    text-align: center;
    position: absolute;
    top: 37px;
}

.sot__cart-svg svg {
    width: 80%;
}
.sot__cart:hover{
   
    margin-bottom: 0;
    min-height: 250px;
    transition: .3s ease-in-out;
}
.sot__cart-text{
    margin-top: 130%;
    opacity: 0;
    font-size: 16px;
    padding: 10px;
    line-height: 100%;
    text-align: center;
    transition: .6s ease-in-out;
}
.sot__cart:hover .sot__cart-text{
   animation: animtext .8s ease-in-out forwards;
}
@keyframes animtext  {
    0%{
        display: block;
    }
    90%{
        display: block ;
        margin-top: 80%;
    }
    100%{  
        display: block ;
        margin-top: 80%;
        opacity: 1;
    }
}
.sot__cart:hover .sot__cart-svg .cart-svg-1{
   animation: svg-yes .6s ease-in-out;
}

@keyframes svg-yes {
    0%{
        transform: rotate3d(0, 1, 0, 0deg);
    }
    75%{
        transform: rotate3d(0, 1, 0, 380deg);
    }
    100%{  
        transform: rotate3d(0, 1, 0, 360deg);
    }
}
.sot__cart:hover .sot__cart-svg .cart-svg-2 path:nth-child(n+3){
    animation: svg-gaika .6s ease-in-out;
 }
 
 @keyframes svg-gaika {
    0%{
        transform: translateY(-10px);
    }
    25%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(-5px);
    }
    75%{
        transform: translateY(5px);
    }
    100%{  
        transform: translateY(0);
    }
}
.sot__cart:hover .sot__cart-svg .cart-svg-3 path:nth-child(n+7){
    animation: svg-polka .6s ease-in-out;
 }

 @keyframes svg-polka {
    0%{
        fill: white;
    }
    100%{  
        fill: #055CA7;
    }
}

.sot__cart:hover .sot__cart-svg .cart-svg-4{
    animation: svg-arrow .6s ease-in-out;
 }

 @keyframes svg-arrow {
    0%{
        transform: rotate(0deg);
    }
    75%{
        transform: rotate(380deg);
    }
    100%{  
        transform: rotate(360deg);
    }
}
.sot__cart:hover .sot__cart-svg .cart-svg-5{
    animation: svg-line .6s ease-in-out;
 }

 @keyframes svg-line {
    0%{
        transform: scale(1.3);
    }
    25%{
        transform: scale(.7);
    }
    50%{
        transform: scale(1.1);
    }
    75%{
        transform: scale(.9);
    }
    100%{  
        transform: scale(1);
    }
}
.sot__cart:hover .sot__cart-svg .cart-svg-6 path:nth-child(-n+2){
    animation: svg-maney .6s ease-in-out;
 }

 @keyframes svg-maney {
    0%{
        transform: translateY(-10px);
    }
    25%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(-5px);
    }
    75%{
        transform: translateY(5px);
    }
    100%{  
        transform: translateY(0);
    }
}

 .sot__cart:hover .sot__cart-svg .cart-svg-7 path:nth-child(n+2){
    animation: svg-option .6s ease-in-out;
 }
 @keyframes svg-option {
    0%{
        transform:translateX(-30px)  ;
    }
    25%{
        transform:translateX(30px) ;
    }
    50%{
        transform:translateX(-15px)  ;
    }
    75%{
        transform:translateX(15px) ;
    }
    100%{  
        transform:translateX(0px) ;
    }
}
/* ==================== Стили для sot__cart ==================== */



/* ==================== Стили для sot__contacts ==================== */

.sot__contacts-wrap {
    padding: 50px 0;
}

.sot__contacts-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sot__contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding: 10px 20px;
    background-color: rgba(170, 181, 190, 0.15);
}

.contacts__email-title,
.contacts__email,
.contacts__tell-title,
.contacts-email,
.contacts-tell,
.sot__contacts-name {
    max-width: 100%;
    min-width: 0;
}

.contacts-email,
.contacts-tell {
    padding-top: 5px;
}


/* Анимации модального окна */
@keyframes open {
    0% {
        padding: 0px;
        opacity: 0;
        max-width: 0%;
        max-height: 0%;
    }

    30% {
        opacity: 1;
        max-width: 80%;
        max-height: 0%;
    }

    100% {
        padding: 20px;
        max-width: 80%;
        max-height: 80%;
    }
}

@keyframes openimg {
    0% {
        max-width: 0%;
        max-height: 0%;
    }

    100% {
        max-width: 90%;
        max-height: 90%;
    }
}




@media (max-width: 1550px) {
    .sot__company-info {
        padding: 15px 0 15px 15px;
    }


    .sot__company-title {
        font-size: 28px;
    }

    .sot__company-supTitle {
        padding-top: 10px;
        font-weight: 600;
        font-size: 20px;
        color: #EFF1F7;

    }

    .sot__company-img {
        width: 530px;
        height: 225px;
        display: block;
        margin-right: 30px;


    }

    .company-img {
        height: 400px;

    }

    .sot__assort-wrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }




    .slider-container-2_leftpanel_off {
        margin-top: 50px !important;
    }

    .slide__leftpanel_off {
        min-width: 850px !important;
        height: 500px !important;


    }

    .sot__assort,
    .sot__pack {
        height: 160px;
        border-radius: 2px 2px 30px 30px;
    }

    .pack-img {
        height: 150px;
    }




    /* ==================== Стили для sot__cart ==================== */
    .sot__cart-wrap {
        flex-wrap: wrap;
        justify-content: center;

    }

    .sot__cart {
        min-width: 140px;
        min-height: 140px;
        border-radius: 15px;
        width: 100%;
        max-width: 140px;
    }
    .sot__cart-svg {
        top: 21px;
    }
    .sot__cart-svg svg {
        width: 60%;
    }

    /* ==================== Стили для sot__cart ==================== */


}



@media (max-width: 1330px) {
    .sot__company-info {
        width: 80%;
    }


    .sot__company-title {
        font-size: 26px;
    }

    .sot__company-supTitle {
        font-size: 18px;
        line-height: 150%;

    }

    .sot__company-img {
        width: 430px;
        height: 225px;
        display: block;
        margin-right: 30px;


    }

    .company-img {
        height: 300px;
        left: 85%;
        top: 50%;
        transform: translatex(-50%) translatey(-50%);
    }

    .sot__timeline-video {
        margin-top: 50px;
        max-width: 1200px;
        width: 100%;
        height: 500px;
    }

    .video-iframe {
        width: 1200px;
        height: 500px;
    }
}






@media (max-width: 1024px) {

    .sot__company-info {
        width: 50%;
        padding: 15px 0 15px 15px;
    }


    .sot__company-title {
        font-size: 24px;
        line-height: 140%;
    }

    .sot__company-supTitle {
        padding-top: 10px;
        font-weight: 600;
        font-size: 18px;
        color: #EFF1F7;
        line-height: 140%;

    }

    .sot__company-img {
        width: 430px;
        height: 225px;
        display: block;
        margin-right: 20px;


    }

    .company-img {
        height: 400px;
    }

    .sot__assort-wrap {
        flex-direction: column;
        align-items: center;
    }





    .sot__assort-info {
        margin-right: 0;
    }

    #slider-container-1 {
        margin-top: 50px;
    }

    #slider-container-2 {
        margin-top: 50px;
    }






    .sot__contacts {
        margin-top: 0;
        align-items: center;
        flex-direction: column;
    }

    .sot__contacts-email,
    .sot__contacts-tell {
        text-align: center;
    }

    .sot__timeline-video {
        margin-top: 50px;
        max-width: 700px;
        width: 100%;
        height: 400px;
    }

    .video-iframe {
        width: 700px;
        height: 400px;
    }


    .sot__timeline-video {
        margin-top: 50px;
        max-width: 700px;
        width: 100%;
        height: 400px;
    }

    .video-iframe {
        width: 700px;
        height: 400px;
    }
}



@media (max-width: 1023px) {
    .sot__company-info {
        padding: 15px 0 15px 15px;
    }


    .sot__company-title {
        font-size: 20px;
        line-height: 130%;
    }

    .sot__company-supTitle {
        padding-top: 10px;
        font-weight: 600;
        font-size: 16px;
        color: #EFF1F7;
        line-height: 130%;

    }

    .sot__company-img {
        width: 250px;
        height: 225px;
        display: block;
        margin-right: 10px;


    }

    .company-img {
        height: 300px;
        left: 80%;
        top: 50%;
        transform: translatex(-50%) translatey(-50%);
    }

    .sot__assort-wrap {
        flex-direction: column;
        align-items: center;
    }





    .sot__assort-info {
        margin-right: 0;
    }

    #slider-container-1 {
        margin-top: 50px;
    }

    #slider-container-2 {
        margin-top: 50px;
    }







    .sot__contacts {
        margin-top: 0;
        align-items: center;
        flex-direction: column;
    }

    .sot__contacts-email,
    .sot__contacts-tell {
        text-align: center;
    }

    .sot__timeline-video {
        margin-top: 50px;
        max-width: 700px;
        width: 100%;
        height: 400px;
    }

    .video-iframe {
        width: 700px;
        height: 400px;
    }

   
}




@media (max-width: 767px) {
    @keyframes open {
        0% {
            padding: 0px;
            opacity: 0;
            max-width: 0%;
            max-height: 0%;
        }

        30% {
            opacity: 1;
            max-width: 90%;
            max-height: 0%;
        }

        100% {
            padding: 10px;
            max-width: 90%;
            max-height: 90%;
            width: 100%;
        }
    }

    @keyframes animClick {
        0% {}

        95% {
            border: 0px solid blue;
            width: 100%;
            height: 100%;
        }

        97% {
            border: 3px solid white;
            width: 140%;
            height: 140%;
        }

        100% {
            border: 0px solid transparent;
            width: 200%;
            height: 200%;
        }
    }

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

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

    .sot__company {
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: #055CA7;
        border-radius: 2px 2px 50px 50px;
        width: 100%;
        height: 300px;

    }

    .sot__wrap {
        margin-right: 0px;
    }

    .sot__company-info {
        width: 90%;
    }

    .sot__company-supTitle {
        padding-top: 10px;
        font-weight: 600;
        font-size: 18px;
        color: #EFF1F7;
        line-height: 110%;

    }



    /* ==================== Стили для общих заголовков  ==================== */
    .sot__company-title,
    .sot__assort-title,
    .sot__pack-title,
    .sot__advantage-title,
    .sot__timeline-title{
        font-size: 20px;
        line-height: 110%;
    }

    /* ==================== Стили для изображений   ==================== */



    .sot__company-img {
        width: 100%;
        height: 225px;
        display: block;
        margin-right: 0px;


    }

    .company-img {
        width: 70%;
        height: 230px;
        left: 50%;
        top: 100%;
        transform: translatex(-50%) translatey(-50%);
    }




    /* ==================== Стили для sot__cart ==================== */
    .sot__cart-wrap {
        flex-wrap: wrap;
        justify-content: center;

    }

    .sot__cart {
        min-width: 160px;
        min-height: 160px;
        margin-bottom: 0;
        border-radius: 15px;
        width: 100%;
        max-width: 160px;
    }
    .sot__cart-svg svg {
        width: 50%;
    }

    /* ==================== Стили для sot__cart ==================== */







    /* ==================== Стили для sot__assort и sot__pack  ==================== */
    .sot__assort-wrap {
        padding-top: 20px;
        justify-content: center;
        flex-direction: column;

    }

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


    .sot__assort-info {
        border: 3px solid #055CA7;
        padding: 10px;
        border-radius: 30px;


    }

    .sot__assort-svg {
        padding-right: 0px;
        width: 20%;
    }

    .sot__assort-svg svg {
        width: 40px;
    }


    .sot__assort,
    .sot__pack {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 130px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        border-radius: 5px;
    }



    .sot__assort-supTitle,
    .sot__advantage-supTitle,
    .sot__contacts-name,
    .contacts__email-title,
    .contacts__tell-title,
    .contacts__email,
    .contacts__tell {
        padding-top: 50px;
        font-size: 18px;
        padding-top: 10px;
        line-height: 110%;

    }
  

    .sot__assort-supTitle {
        word-break: break-word;
    }

    .contacts__email,
    .contacts__tell {
        margin-top: 20px;
    }




    /* ==================== Стили для sot__timeline ==================== */
    .contacts__email,
    .contacts__tell {
        margin-top: 12px;
        color: #055CA7;
    }

    .sot__timeline-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .sot__timeline-wrap::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -7px;
        transform: translate(-50%, -50%);
        width: 6px;
        height: calc(100% - 86px);
        background-color: #055CA7;

    }

    .sot__timeline-info-top,
    .sot__timeline-info-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center
    }


    .sot__timeline {
        display: none;

    }

    .sot__timeline-title {
        text-align: center;
    }

    .sot__timeline-supTitle,
    .sot__timeline-supTitle-bottom {
        color: #2A2E39;
        font-size: 20px;
        width: 100%;
        position: relative;
        padding: 20px 0 20px 20px;
        text-align: left;
    }

    .sot__timeline-supTitle:first-child {
        padding-left: 20px;
        text-align: left;

    }

    .sot__timeline-supTitle:last-child {
        /* padding-right: 20px; */
        text-align: left;
    }

    .sot__timeline-supTitle::after,
    .sot__timeline-supTitle-bottom::after {
        content: "";
        position: absolute;
        bottom: 50%;
        left: 0%;
        transform: translateX(-50%) rotate(90deg);
        width: 6px;
        height: 20px;
        background-color: #055CA7;

    }


    .sot__timeline-supTitle-bottom::after {
        bottom: inherit;
        top: inherit;
    }

    .sot__timeline-supTitle:first-child:after {
        left: 0;
        transform: translateX(-50%) rotate(90deg);
    }

    .sot__timeline-supTitle:last-child:after {
        left: 0;
        right: inherit;
        transform: translateX(-50%) rotate(90deg);
    }


    .sot__timeline-video {
        margin-top: 20px;
        max-width: 360px;
        width: 100%;
        height: 300px;
        border-radius: 10px;
    }

    .video-iframe {
        width: 360px;
        height: 300px;
    }





    /* ==================== Стили для sot__contacts ==================== */

    .sot__contacts-email, .sot__contacts-tell {
        text-align: left;
    }
    .sot__contacts-wrap {
        padding: 20px 0;
    }


    .sot__contacts {
        margin-top: 0;
        padding: 5px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sot__contacts-title {
        padding: 0;
    }

    .contacts-email,
    .contacts-tell {
        padding-top: 5px;
    }



}

@media (max-width: 426px) {
    .sot__timeline-wrap::after {
        top: 54%;
        height: calc(100% - 236px);


    }
    .sot__timeline-title {
        text-align: center;
        font-size: 25px;
        margin-bottom: 25px;
    }
    .company-img {
        width: 50%;
       
    }

}


@media (max-width: 320px) {
    .sot__company {
        height: 350px;

    }

    .sot__assort,
    .sot__pack {
        height: 160px;
    }

    .slider-container_leftpanel_off,
    .slider-container-2_leftpanel_off {
        width: 300px !important;
        max-width: 300px !important;
    }

    .slide__leftpanel_off {
        min-width: 300px !important;
    }


    .slider-container {
        max-width: 300px;
    }


    .sot__assort-info-img {
        width: 300px;
    }

  
    .sot__cart {
        min-width: 130px;
        min-height: 130px;
        margin-bottom: 0;
        border-radius: 15px;
        width: 100%;
        max-width: 130px;
    }

    .sot__cart-text {
        font-size: 13px;
    }

        .sot__cart-svg {
            top: 17px;
        }
    

    /* ==================== Стили для sot__timeline==================== */
    .sot__timeline-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
       
    }
    .sot__timeline-wrap::after {
        top: 54%;
        height: calc(100% - 233px);


    }








    .key-img {
        width: 190%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .sot__timeline-video {
        margin-top: 20px;
        max-width: 280px;
        width: 100%;
        height: 300px;
        border-radius: 10px;
    }

    .video-iframe {
        width: 280px;
        height: 300px;
    }

    /* ==================== Стили для sot__contacts ==================== */

    .sot__contacts-wrap {
        padding: 20px 0;
    }


    .sot__contacts {
        margin-top: 0;
        padding: 5px 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .sot__contacts-title {
        padding: 0;
    }

    .contacts-email,
    .contacts-tell {
        padding-top: 5px;
    }
    
}