html {
    overflow: auto;
    position: static;
}
ul{
    margin: 0;
}
body {
    margin: 0;
    padding: 0;
    overflow: auto;
    position: static;
    font-size: 16px;
    color: #000;
    background: #fff;
    font-family: "Manrope", sans-serif;
}

span,
p {
    font-family: "Manrope", sans-serif;
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
}

ul {
    list-style: none;
}

h1 {
    font-weight: 800;
    font-size: 55px;
    color: #000;
    text-align: center;
    margin: 0;
}

h1 span {
    font-weight: 500;
    font-size: 48px;

}

sub {
    font-weight: 300;
    display: block;
    font-size: 20px;
    width: 100%;
    text-align: center;
    color: #000;
    margin-bottom: 15px;
}

h2 {
    font-weight: 800;
    font-size: 32px;
    margin: 0;
    text-transform: uppercase;
    color: #000;
}

h3 {
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    color: #000;
    margin: 0;
}

h4 {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
}

.btn {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14x;
    border: none;
    outline: none;
    color: white;
    width: fit-content;
    padding: 8px 24px;
    border-radius: 6px;
    background-color: #AC0824;
    transition: all 0.3s ease-in;
    display: inline-block;
}

.btn:hover {

    color: #fff;
    background-color: #640505;

}

.header {
    background-color: transparent;
    transition: background-color 0.3s ease;
position: relative;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #c3c9d5;

}
.bg{
    height: 50px;
    display: block;
    background: #f6f6f6;
}
.header__logo {
    position: relative;
    display: inline-block;
    width: 135px; /* Задайте ширину по необходимости */
   height: 25px; /* Задайте высоту по необходимости */
    overflow: hidden;
}

.logo-image, .logo-text {
    position: absolute;
    top: -100%; /* Начальная позиция — скрыто сверху */
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: slideDown 1s infinite;
}

.logo-image {
    animation-duration: 20s;
    animation-delay: 0s; /* Изображение появляется первым */
}

.logo-text {
    animation-duration: 20s;
    animation-delay: 10s; /* Текст появляется после изображения */
}

@keyframes slideDown {
    0%, 100% {
        transform: translateY(-100%); /* Скрыто сверху */
        opacity: 0;
    }
    25% {
        transform: translateY(0); /* Видимо в центре */
        opacity: 1;
    }
    50% {
        transform: translateY(100%); /* Скрыто снизу */
        opacity: 1;
    }
    75% {
        transform: translateY(100%); /* Скрыто снизу */
        opacity: 0;
    }
}
.header__container {
    max-width: 1210px;
    padding: 10px 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__content {
    display: flex;
    justify-content: space-between;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.header__list li a {
    font-size: 14px;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}


@media (max-width: 768px) {
    .header__list {
        display: none;
        width: -webkit-fill-available;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0px;
        background: rgb(255 241 245);
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }


    .header__list.active {
        display: flex;

    }

    .burger {
        display: flex;
        justify-content: center;
    }
}



.s1 {
    padding-top: 43px;
    background: #f6f6f6;
}

.s1__container {
    max-width: 900px;
    padding: 0 15px;
    margin: 0 auto;
}

.s1__wrap {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    max-width: 300px;
    width: 100%;
}

.s1__price {
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    display: flex;
    margin-bottom: 15px;
    gap: 20px;
}

.s1__new span:first-child {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.s1__new span:last-child {
    font-weight: 600;
    font-size: 24px;
    text-decoration: line-through;
}

.s1__new {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.s1__old {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.s1__old span:first-child {
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    color: #000;
}

.s1__old span:last-child {
    font-size: 24px;
    color: #ac0824;
    font-weight: 700;
}

form {
    display: flex;
    width: 100%;
    gap: 10px;
    flex-direction: column;
}

input {
    font-weight: 300;
    font-size: 12px;
    color: #000;
    padding: 10px 20px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 8px;

}

button {
    border-radius: 8px;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    outline: none;
    padding: 9px;
    border: none;
    background: #ac0824;
}

.s1__img {
    max-width: 850px;
    position: relative;
}

img {
    width: 100%;
    height: auto;
}

.pc {
    display: block;
}

.mob {
    display: none;
}

.dis {
    position: absolute;
    top: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    right: -5%;
    width: 123px;
    height: 123px;
    display: flex;
    border-radius: 50%;
    background-color: #AC0824;
justify-content: center;
}

.dis span:first-child {
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    color: #fff;
}

.dis span:last-child {
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width:768px) {
    .pc {
        display: none;
    }

    .mob {
        display: block;
    }
}

.sec2{
    margin-top: 56px;
}
.sec2__container{
        max-width: 1000px;
        padding: 0 15px;
        margin: 0 auto;
}
.sec2__items{
display: flex;
}
.sec2__item img{
max-width: 52px;
max-height: 52px;
height: 100%;
width: 100%;
padding-bottom: 18px;
}
.sec2__item p{
    border-top: 1px solid #c3c9d5;
    padding: 18px 10px 0;
    font-weight: 300;
font-size: 16px;
line-height: 137%;
text-align: center;
color: #000;

    }
.sec2__item{
    align-items: center;
display: flex;
flex-direction: column;
}
.sec3{
margin-top: 66px;
padding-bottom: 55px;
border-bottom: 1px solid #c3c9d5;
}
.sec3__container{
    max-width: 825px;
    margin: 0 auto;
    padding: 0 15px;
}
.sec3__header{
display: flex;
justify-content: space-around;
gap: 20px;
}
.sec3__header h2{
  max-width: 260px;
}
.sec3__header p{
    font-weight: 300;

color: #000;
max-width: 400px;
line-height: 25px;
}
.sec3__img{
    display: block;
    height: 100%;
    width: auto;
    margin-top: 35px;
}
.sec3__items{
    margin-top: 34px;
display: flex;
justify-content: space-evenly;
}
.sec3__item{
display: flex;
gap: 10px;
flex-direction: column;
align-items: center;
}
.sec4{
    margin-top: 84px;

    }
    .sec4__container{
        max-width: 845px;
        margin: 0 auto;
        padding: 0 15px;
    }
    .sec4__header{
    display: flex;
    justify-content: space-around;
    gap: 20px;
    }
    .sec4__header h2{
      max-width: 260px;
    }
    .sec4__header p{
        font-weight: 300;
    
    color: #000;
    max-width: 400px;
    line-height: 25px;
    }
    .sec4__img{
        display: block;
        height: 100%;
        width: auto;
        margin-top: 35px;
    }
    .head{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
    .sec5{
        margin-top: 88px;
        padding-bottom: 63px;
        border-bottom: 1px solid #c3c9d5;
    }
    .sec5__container{
max-width: 970px;
margin: 0 auto;
padding: 0 15px;

    }
    .sec5__wrap{
        display: flex;
        gap: 10px;
        margin-top: 37px;
        align-items: flex-end;
        justify-content: space-between;
    }
    .sec5__items{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .sec5__item{
        max-width: 416px;
        border: 1px solid #000;
        border-radius: 8px;
        margin-left: 35px;
        position: relative;
        padding: 25px 37px 25px 65px;
    }
    .sec5__item h4{
        font-weight: 800;
        font-size: 18px;
        line-height: 137%;
        text-transform: uppercase;
        color: #000;
    }
    .sec5__item p{
        font-weight: 300;
        font-size: 16px;
    }
    .sec5__item span {
        position: absolute;
        height: 73px;
        display: flex;
        border-radius: 100%;
        border: 1px solid #000;
        width: 73px;
        font-weight: 800;
        font-size: 30px;
        /* right: 0; */
        top: 50%;
        background-color: #fff;
        left: -37px;
        transform: translate(0, -50%);
        color: #000;
        align-items: center;
        justify-content: center;
    }
    .sec5__img{
        max-width: 275px;
    }
    .sec5__img{
      width: auto;
      height: 100%;
    }
    .sec6{
margin-top: 31px;
    }

  .sec6 h2{
    text-align: center;
    margin-bottom: 17px;
  }
  .sec6__items{
    display: flex;
  }
.sec6__item{
    max-height: 386px;
}
.sec6__item img{
  width: 100%;
  height: 100%;
}
.sec7{
   padding: 71px 0;
   background-size: cover;
}
.sec7 h2{
   text-align: center;
 }
.sec7__container{
    max-width: 1015px;
    padding: 0 15px;
    margin: 0 auto;
}
/* Стили контейнера табов */
.tabs {
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.sec7 .slick-initialized .slick-slide
{
    display: flex;
    align-items: center;
}
.tab-titles {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}
.slide__item{
    position: relative;
}
.tab-button {
    flex: 1;
cursor: pointer;
    font-weight: 800;
    display: block;
    width: -webkit-fill-available;
    display: flex;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    vertical-align: -webkit-baseline-middle;
    border-radius: 0;
    font-weight: 800;
    font-size: 16px;
    color: #000;
    outline: none;
    padding: 0;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
}

.tab-button:hover,
.tab-button.active {

   
}
.tab-button.active::before{
    position: absolute;
    content: '';
    bottom: -4px;
    height: 7px;
    background: #000;
    width: 100%;
}
/* Стили для контента табов */
.tab-content {
    padding: 28px 0 0 0;
 
    border-top: none;
}

.tab-item {
    display: none;
    max-width: 500px;
    margin: 0 auto;
}

.tab-item.active {
    display: block;
}
.slider{
    margin-top: 45px;
   
}
.slide__item{
    cursor: pointer;
    padding-bottom: 18px;
    height: 44px;
    border-bottom: 1px solid #c3c9d5;
}.spec-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;

    padding: 8px 0;
    overflow: hidden;
}

/* Стили для первого span с динамическими многоточиями */
.spec-list .label {
    position: relative;
    padding-right: 10px;
    white-space: nowrap;
    flex-grow: 1;
    overflow: hidden;
}

.spec-list .label::after {
    content: "................................................................................................................................................................................................";
    position: absolute;

    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    color: #999;
}

.spec-list .value {
    flex-shrink: 0;
    padding-left: 2px;
    max-width: 200px;
    white-space: nowrap;
   
}
.slick-slider {
  align-items: center;
    display: flex;
    gap: 20px;
}


button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
    height: 33px;
    background-color: transparent;
    width: 33px;
    border-radius: 100%;
    border: none;
    position: relative;
    color: transparent;

}

button.slick-prev.slick-arrow::before {
    background-image: url('../img/left.png');
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    cursor: pointer;
top: 0;
right: 0;
    background-position: center;
    border: none;
    border-radius: 100%;
    background-color: transparent;
    content: '';
 
    position: absolute;


}

button.slick-next.slick-arrow::before {
  
    background-position: center;
    background-color: transparent;
    cursor: pointer;
    border-radius: 100%;
    background-image: url('../img/right.png');
    background-repeat: no-repeat;
    height: 20px;
    content: '';
    top: 0;
    right: 0;
    position: absolute;
    width: 20px;
    border: none;

}
.sec8{
    margin-top: 56px;
}
.sec8__container{
    max-width: 1030px;
    padding: 0 15px;
    margin: 0 auto;
}
.sec8 h2{
       text-align: center;         
}
.slider2{
    position: relative;
    margin-top: 28px;
    padding-bottom: 35px;
}
.slick-slide.slider2__item{
display: flex;
border-radius: 8px;
padding: 25px 25px 40px;
flex-direction: column;
align-items: center;
background-color: #f6f6f6;
}
.slider2__item h4{
    font-weight: 800;
font-size: 18px;
color: #000;

}
.slider2__item img{
    height: 21px;
    margin-top: 10px;
    width: auto;
}
.slider2__item p{
    margin-top: 27px;
    font-weight: 300;
font-size: 16px;
line-height: 160%;
text-align: center;
color: #000;
}
ul.slick-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 12px;
    transform: translate(-50%,0);
}
ul.slick-dots button {
    height: 15px;
    background-color: transparent;
    width: 15px;
    border-radius: 100%;
    border: none;
    position: relative;
    color: transparent;

}

ul.slick-dots button::before {
    
    height: 15px;
    width: 15px;
    cursor: pointer;   
    border: none;
    border-radius: 100%;
    background-color: #e8e8e8;
    content: ''; 
    position: absolute;


}
ul.slick-dots .slick-active button::before{
    background-color: #ddd;
}
.sec9{
margin-top: 50px;
margin-bottom: 50px;
}
.sec9__container{
    max-width: 970px;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
    flex-direction: column;
    align-items: center;
}
.sec9__header{
    max-width: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.sec9__header h2{
    text-align: end;
}
.sec9__header img{
   max-height: 89px;
   height: 100%;
   max-width: 135px;
   width: auto;
}
.sec9__items{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    gap: 20px;
}
.sec9__item{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.sec9__item h4{
    font-weight: 800;
    font-size: 25px;
    line-height: 141%;
    color: #e9362b;
}
.sec9__item p{
    font-weight: 300;
    font-size: 16px;
    color: #000;
    line-height: 141%;
}
@media screen and (max-width:768px) {
    .s1 {
        padding-top: 30px;
        background: #f6f6f6;
    }
    h1 {
       
        font-size: 48px;
        
    }
    h1 span {
        font-weight: 500;
        font-size: 36px;
    }
    .s1__img {
        max-width: 850px;
        position: relative;
        margin-top: 55px;
    }
    .dis {
        position: absolute;
        top: -17%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        right: -3%;
        width: 83px;
        height: 83px;
        display: flex;
        border-radius: 50%;
        background-color: #AC0824;
        justify-content: center;
    }
    .dis span:first-child {
        font-weight: 800;
        font-size: 16px;
        text-align: center;
        color: #fff;
    }
    .sec2 {
        margin-top: 40px;
    }
    .sec2__items {
       
        flex-wrap: wrap;
    }
    .sec2__items {
        row-gap: 30px;
        justify-content: center;
    }
    .sec2__item {
       
        display: flex;
        max-width: 136px;
       
    }
    .sec2__item p {
        border-top: 1px solid transparent;
        padding: 0px 10px 0;
       
    }
    .sec3__header {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    .sec3__header h2 {
        max-width: 100%;
        font-size: 28px;
        text-align: center;
    }
    .sec3__header p {
       text-align: center;
    }
    .sec3__item p{
        font-weight: 300;
font-size: 14px;
text-align: center;
line-height: 18px;
    }
    .sec3__items {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
    }
    .sec3__item {
        display: flex;
        gap: 5px;
        flex-direction: column;
        align-items: center;
    }
    .sec3 {
        margin-top: 66px;
        padding-bottom:40px;
        border-bottom: 1px solid #c3c9d5;
    }
    .sec4 {
        margin-top: 44px;
    }
    .sec4__header h2 {
        max-width: 100%;
        text-align: center;
        font-size: 28px;
    }
    h4 {
        text-align: center;
    }
    .sec4__header {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        row-gap: 20px;
        column-gap: 20px;
        flex-direction: column;
    }
    .sec4__header p {
      text-align: center;
    }
    .sec5 {
        margin-top: 45px;
        padding-bottom: 44px;
        border-bottom: 1px solid #c3c9d5;
    }
    .sec5 h2 {
        max-width: 100%;
        text-align: center;
        font-size: 28px;
    }
    .sec5__wrap {
        display: flex;
        gap: 40px;
        margin-top: 37px;
        align-items: flex-end;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }
    .sec5__item {
        max-width: 416px;
        border: 1px solid #000;
        border-radius: 8px;
        margin-left: 35px;
        position: relative;
        padding: 25px 20px 25px 50px;
    }
    .sec6__items{
        flex-wrap: wrap;
    }
    .sec6__item {
        width: 50%;
        max-height: 189px;
    }
    h2{
        font-size: 28px;
    }
    .sec7 {
        padding: 44px 0;

        background: linear-gradient(180deg, #fff 0%, #e7e7e7 100%);
        background-image: none!important;
  
    }
   .sec9__header h2 {
        font-size: 21px;
    }
    .slick-slider {
        align-items: center;
        display: flex;
        gap: 0px;
    }
    .sec9__item h4 {
        font-weight: 800;
        font-size: 21px;
        line-height: 141%;
        color: #e9362b;
    }
    .sec9__items {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 25px;
        row-gap: 20px;
        column-gap: 5px;
        flex-wrap: wrap;
    }
    .sec9__item {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 49%;
    }
    button.slick-prev.slick-arrow, button.slick-next.slick-arrow {
        height: 20px;
        background-color: transparent;
        width: 20px;
        border-radius: 100%;
        border: none;
        position: relative;
        color: transparent;
    }
    .tab-button {
        flex: 1;
        cursor: pointer;
        font-weight: 800;
        display: block;
        width: -webkit-fill-available;
        display: flex;
        font-size: 16px;
        text-transform: uppercase;
        text-align: center;
        vertical-align: -webkit-baseline-middle;
        border-radius: 0;
        font-weight: 800;
        font-size: 14px;
        color: #000;
        outline: none;
        padding: 0;
        border: none;
        background: transparent;
        align-items: center;
        justify-content: center;
    }
}