/* fonts */
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat-Regular'),
         url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat-Medium'),
         url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat-SemiBold'),
         url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat-Bold'),
         url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat-Black'),
         url('../fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter-SemiBold'),
         url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: local('Onest-Regular'),
         url('../fonts/Onest-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: local('Onest-Medium'),
         url('../fonts/Onest-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: local('Onest-Bold'),
         url('../fonts/Onest-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: local('Onest-ExtraBold'),
         url('../fonts/Onest-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham Pro';
    src: local('GothamPro-Black'),
         url('../fonts/GothamPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
/*  */


/* reset */
html {
    box-sizing: border-box;
}

/* html,body{
    height: 100%;
    display: flex;
    flex-direction: column;
} */

main{
    flex: 1;
}

body{
    position: relative;
}

*,
*::after,
*::before {
    box-sizing: inherit;
    user-select: none;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

ul[class] {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;

    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-tap-highlight-color: transparent;
}

.section-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;

    color: #1B1E25;

    position: relative;
    padding-bottom: 9px;

    display: inline-block;
    margin-bottom: 40px;
}

.section-title::before{
    content: '';
    position: absolute;

    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;

    background: #C33E35;
}

/*  */


/* page styles */
.wrapper{
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 10px;
}

.header{
    background: #fff;
    padding: 8px 0;
}

.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.header__logo{
    display: block;
    
    max-width: 290px;
    width: 100%;

    line-height: 0;
}

.header__logo svg{
    width: 100%;
    height: 100%;
}

.header__socials{
    display: flex;
    align-items: center;
    gap: 20px;
}

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

    width: 40px;
    height: 40px;
}

.header__social svg{
    width: 100%;
    height: 100%;
}

.header__social svg path{
    transition: stroke .4s ease;
}

.header__social:hover svg path{
    stroke: #F40000;
    transition: stroke .4s ease;
}

.header__contacts-wrapper{
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__contacts{
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__contact{
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;

    flex-shrink: 0;
}

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

.header__contact-icon svg path{
    transition: stroke .4s ease;
}

.header__contact-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    
    color: #101010;
    transition: color .4s ease;
    
}

.header__contact:hover .header__contact-text{
    color: #F40000;
    transition: color .4s ease;
}

.header__contact:hover .header__contact-icon svg path{
    stroke: #F40000;
    transition: stroke .4s ease;
}


.header__callback{
    display: block;
    
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    outline: none;
    

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-decoration-line: underline;
    
    color: #C50000;

    flex-shrink: 0;
    transition: color .4s ease;
}

.header__callback:hover{
    color: #F40000;
    transition: color .4s ease;
}

.header__buttons{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    
    max-width: 412px;
    width: 100%;
}

.header__button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    width: 100%;
    height: 40px;
    
    padding: 0 10px;
    
    background: #fff;
    margin: 0;
    outline: none;
    
    border: 1px solid #C50000;
    transition: background .4s ease;
    cursor: pointer;
}

.header__button:hover{
    background: #C50000;
    transition: background .4s ease;
}

.header__button-icon svg path{
    transition: stroke .4s ease;
}

.header__button:hover .header__button-icon svg path{
    stroke: #fff;
    transition: stroke .4s ease;
}

.header__button:hover .header__button-text{
    color: #fff;
    transition: all .4s ease;
}

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

.header__button-text{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    color: #C50000;
    transition: all .4s ease;
}

.topline{
    background: #C50000;

    top: -100px;
    transition: all .4s ease;
}

.topline.-js-fixed{
    position: fixed;
    
    top: 0;
    left: 0;
    
    z-index: 1100;
    
    width: 100%;
    transition: all .4s ease;
}

.topline__inner{
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 25px;

    position: relative;
}

.topline__call-btn{
    display: none;
    align-items: center;
    justify-content: center;
}

.topline__logo{
    max-width: 220px;
    width: 100%;

    line-height: 0;

    display: none;
}

.topline__logo svg{
    width: 100%;
    height: 100%;
}


.topline__cataloge-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;

    position: relative;
    z-index: 1002;

    max-width: 215px;
    width: 100%;
    height: 60px;
    transition: background .4s ease;
}

.topline__cataloge-button:hover{
    background: #F40000;
    transition: background .4s ease;
}

.topline__cataloge-button.-js-visible{
    background: #F40000;
    transition: background .4s ease;
}

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

.topline__cataloge-button-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    color: #FFFFFF;
}

.topline__nav{
    margin-left: 108px;
}

.topline__nav-list{
    display: flex;
    align-items: center;
    margin: 0;
}

.topline__nav-item{
    list-style: none;
    margin: 0;
    padding: 0;

    
}

.topline__nav-sub{
    position: absolute;
    z-index: 110;

    max-width: 370px;
    width: 100%;

    border-radius: 0 0 3px 3px;
    border: 1px solid #DADEDF;

    max-height: 240px;
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}

.topline__nav-item:hover .topline__nav-sub{
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease;
}

.topline__nav-sub::-webkit-scrollbar {
    width: 5px;               
}

.topline__nav-sub::-webkit-scrollbar-track {
    background: #fff;        
}
  
.topline__nav-sub::-webkit-scrollbar-thumb {
    background-color: rgba(17, 20, 23, 0.6);    
    border-radius: 900px;       
}

.topline__nav-sub-item:last-child .topline__nav-sub-link{
    border-radius: 0 0 3px 3px;
    border-bottom: none;
}

.topline__nav-sub-link{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #111417;

    height: 60px;
    width: 100%;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    background: #fff;
    transition: all .5s;

    border-bottom: 1px solid #DADEDF;
}

.topline__nav-sub-link:hover{
    background: #F40000;
    color: #fff;
    transition: all .5s;
}


.topline__nav-link{
    display: flex;
    align-items: center;
    gap: 8px;
    
    text-decoration: none;

    transition: background .4s ease;

    height: 60px;
    padding: 0 30px;
}

.topline__nav-link:hover{
    background: #F40000;
    transition: background .4s ease;
}

.topline__nav-link-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    color: #FFFFFF;
}

.topline__nav-link-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.topline__search{
    margin-left: auto;
}

.topline__search-button{
    display: flex;
    align-items: center;
    gap: 7px;
    
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;

    height: 60px;
    padding: 0 15px;
    transition: background .4s ease;
}

.topline__search-button:hover{
    background: #F40000;
    transition: background .4s ease;
}

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

.topline__search-button-text{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    color: #FFFFFF;
}

.topline__burger-button{
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;

    display: none;
    align-items: center;
    justify-content: center;
}


.topline-warning{
    padding: 10px 0;
    background: #7C7C7C;
}

.topline-warning__inner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;

    position: relative;
}

.topline-warning__close-button{
    display: none;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;

    position: absolute;
    top: -4px;
    right: -4px;
}

.topline-warning__text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    color: #FFFFFF;
    margin: 0;
    
}

.topline-warning__button{
    max-width: 260px;
    width: 100%;
    height: 40px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 0 10px;
    

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    
    background: #C50000;
    border: 1px solid #FFFFFF;
    transition: all .4s ease;

}

.topline-warning__button:hover{
    background: #fff;
    color: #C50000;
    transition: all .4s ease;
}


.hero{
    padding: 40px 0;
    background: #F8F9FB;
    border-bottom: 1px solid #fff;
}

.hero__banners{
    display: grid;
    grid-template-columns: 1fr 450px;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 20px 30px;
    min-height: 490px;
}

.hero__slider{
    grid-row: span 2;
    width: 100%;
    
    background-image: url('../images/hero/slider-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.hero__slider.hero__banner{
    padding: 0;
}


.hero__slide-inner{
    padding: 40px 20px;
    height: 100%;
    box-sizing: border-box;
}


.hero__slide-title{
    font-family: 'Gotham Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    color: #101010;
    text-align: left;
    
    position: relative;
    padding-top: 20px;
    
    margin-bottom: 20px;
    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    
}

.hero__slide-title br{
    display: none;
}

.hero__slide-title span{
    padding: 6px 20px;
    background: #fff;
    
    display: inline-block;
    margin-bottom: 4px;
}

.hero__slide-title span:last-child{
    margin-bottom: 0;
}

.hero__slide-title::before{
    content: '';
    position: absolute;
    
    left: 0;
    top: 0;
    
    width: 48px;
    height: 4px;
    
    background: #C50000;
    
}

.hero__slide-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #101010;
    margin-bottom: 96px;
    
    padding: 6px 20px;
    background: #fff;
    
    display: inline-block;
}


.hero__slide-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    max-width: 270px;
    width: 100%;
    height: 60px;

    background: #FFFFFF;
    border-radius: 360px;
    
    text-decoration: none;
    transition: background .4s ease;
}

.hero__slide-button:hover{
    background: #c50000;
    transition: background .4s ease;
}

.hero__slide-button:hover .hero__slide-button-text{
    color: #fff;
    transition: color .4s ease;
}

.hero__slide-button:hover .hero__slide-button-icon svg path{
    fill: #fff;
    transition: fill .4s ease;
}

.hero__slide-button-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    color: #C50000;
    text-transform: uppercase;
    transition: color .4s ease;
}

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

.hero__slide-button-icon svg path{
   transition: fill .4s; 
}

.hero__banner{
    padding: 40px 20px 25px;
    
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;

    display: flex;
    flex-direction: column;
}

.hero__banner--equipment{
    background-image: url('../images/hero/equipment-bg.png');
}

.hero__banner--furniture{
    background-image: url('../images/hero/furniture-bg.png');
}

.hero__banner-title{
    
    font-family: 'Gotham Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
    color: #101010;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__banner-title span{
    padding: 6px 20px;
    background: #fff;
    display: inline-block;
    margin-bottom: 4px;
}

.hero__banner-title span:last-child{
    margin-bottom: 0;
}

.hero__banner-title br{
    display: none;
}

.hero__banner-link{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-decoration: none;

    margin-top: auto;
    
    height: 48px;
    max-width: 240px;
    width: 100%;
    
    background: #fff;
    border-radius: 50px;
    transition: background .4s ease;
}

.hero__banner-link:hover{
    background: #C50000;
    transition: background .4s ease;
}

.hero__banner-link:hover .hero__banner-link-text{
    color: #fff;
    transition: color .4s ease;
}

.hero__banner-link:hover .hero__banner-link-icon svg path{
    fill: #fff;
    transition: fill .4s ease;
}

.hero__banner-link-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #101010;
    
    transition: color .4s ease;
}

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

.hero__banner-link-icon svg path{
    transition: fill .4s ease;
}

.hero__slider-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;

    bottom: 45px !important;
    left: 40px !important;
}

.hero__slider-pagination span{
    width: 30px;
    height: 4px;

    border-radius: 0;

    background: #A5AEB1;
    opacity: 1;

    margin: 0 !important;
}

.hero__slider-pagination span.swiper-pagination-bullet-active{
    background: #C50000;
}

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

    cursor: pointer;

    position: absolute;
    z-index: 2;
    bottom: 34px;

}


.hero__slider-button:hover svg path{
    stroke: #F80000;
    transition: stroke .4s ease;
}

.hero__slider-button svg{
    width: 100%;
    height: 100%;
}

.hero__slider-button svg path {
    stroke: #fff;
    transition: stroke .4s ease;
}

.hero__slider-button--next{
    right: 45px;
}

.hero__slider-button--prev{
    right: 115px;
    bottom: 32px;
}

.advantages{
    margin-bottom: 120px;
    padding: 60px 0;
    background: #F8F9FB;
}

.advantages__triggers{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
}

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

.advantages__trigger-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 27px;
}

.advantages__trigger-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #101010;
    text-align: center;
    margin-bottom: 10px;
}

.advantages__trigger-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: #535657;
}


.index-cataloge{
    margin-bottom: 120px;
}

.index-cataloge__items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 30px;
}

.index-cataloge__item{
    display: block;
    position: relative;

    height: 330px;
    padding: 10px;
}

.index-cataloge__item-image{
    width: 100%;
    height: 100%;

    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}

.index-cataloge__item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-cataloge__item-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #101010;

    padding: 12px 16px;
    background: #FFFFFF;

    position: relative;
    z-index: 3;

    display: inline-block;
}

.index-cataloge__item-decor{
    position: absolute;
    z-index: 2;

    width: 100%;
    height: 100%;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(0, 0, 0, 0.3);

    opacity: 0;
    transition: all .4s ease;
}

.index-cataloge__item:hover .index-cataloge__item-decor{
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.index-cataloge__item-decor-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-cataloge__item-decor-text{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    color: #FFFFFF;
}


.cards{
    padding: 80px 0;
    margin-bottom: 120px;
}

.cards.grey-bg{
    background: #F8F9FB;
}

.cards__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-bottom: 40px;
}

.cards__title{
    margin-bottom: 0;
}

.cards__title::before{
    width: 44px;
}

.cards__link{
    display: flex;
    align-items: center;
    gap: 7px;

    border-radius: 3px ;
    border: 1px solid #0B3B47;
    background: #fff;

    padding: 10px 20px;
    transition: all .4s ease;
}

.cards__link:hover{
    border-color: #C50000;
    transition: all .4s ease;
}

.cards__link:hover .cards__link-icon svg path{
    fill: #C50000;
    transition: fill .4s ease;
}

.cards__link:hover .cards__link-text{
    color: #C50000;
    transition: color .4s ease;
}

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

.cards__link-icon svg path{
    transition: fill .4s ease;
}

.cards__link-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #0B3B47;
    transition: color .4s ease;
}

.cards__items{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 30px;

    overflow-x: auto;
}

.cards__items::-webkit-scrollbar {
    display: none;
}

.cards__item{
    position: relative;
    
    border: 1px solid #F3F6F6;

    display: flex;
    flex-direction: column;
    background: #fff;

    border-radius: 3px 3px 0 0;
    
    min-height: 490px;
}

.cards__item-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    position: absolute;

    top: 20px;
    left: 0;

    padding: 0 20px;

    width: 90%;
}

.cards__item-labels{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.cards__item-label{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 800;
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;

    color: #FFFFFF;

    padding: 5px 10px;
    border-radius: 3px;
}

.cards__item-label--hit{
    background: #FF6565;
}

.cards__item-manage{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.cards__item-manage-button{
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    cursor: pointer;
    background: transparent;
}

.cards__item-manage-button:hover svg path{
    stroke: #F40000;
    opacity: 1;
    transition: all .4s ease;
}

.cards__item-manage-button:hover svg line{
    stroke: #F40000;
    transition: stroke .4s ease;
}

.cards__item-manage-button:hover svg g {
    opacity: 1;
    transition: opacity .4s ease;
}


.cards__item-manage-button svg path{
    transition: all .4s ease;
}

.cards__item-manage-button svg line{
    transition: stroke .4s ease;
}

.cards__item-manage-button svg g {
    transition: opacity .4s ease;
}

.cards__item-image{
    width: 100%;
    height: 275px;
}

.cards__item-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px 3px 0 0;
}

.cards__item-content{
    
    padding: 15px 20px 0;
}

.cards__item-title{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #111417;
    margin-bottom: 20px;
}

.cards__item-current-price{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    color: #0B3B47;

    margin-bottom: 8px;
}

.cards__item-previous-price{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-decoration-line: line-through;
    color: #ACACAC;
}

.cards__item-link{
    width: 100%;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;


    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 140%;
    text-transform: uppercase;

    color: #FFFFFF;

    background: #DB2B1F;

    margin-top: auto;
    transition: background .4s ease;
}

.cards__item-link:hover{
    background: #F80000;
    transition: background .4s ease;
}

.cards__item-manage-button--fav.-js-selected svg path{
    opacity: 1;
    fill: #DB2B1F;
    stroke: #DB2B1F;
}

.cards__content{
    position: relative;
}

.cards__slider-button{
    position: absolute;
    
    top: 50%;
    transform: translateY(-50%);
    
    z-index: 2;
    
    cursor: pointer;
    
    width: 50px;
    height: 50px;
    background: #000;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 12px;
    transition: background .4s ease;
}

.cards__slider-button.swiper-button-lock{
    opacity: .7;
    transition: all .4s ease;
    cursor: default;
}

.cards__slider-button.swiper-button-lock:hover{
    opacity: .7;
    background: #000;
    transition: all .4s ease;
}

.cards__slider-button:hover{
    background: #2F2F2F;
    transition: background .4s ease;
}

.cards__slider-button--prev{
    left: -70px;
}

.cards__slider-button--next{
    right: -70px;
}

.cards__slider-button svg{
    width: 100%;
    height: 100%;
}



.bottomline{
    padding: 15px 0;
    background: #7C7C7C;
}

.bottomline__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bottomline__aside{
    display: flex;
    align-items: center;
    gap: 40px;
}

.bottomline__logo{
    width: 46px;
    height: 42px;
}

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

.bottomline__aside-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #FFFFFF;
}

.bottomline__socials{
    display: flex;
    align-items: center;
    gap: 10px;
}

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

    width: 40px;
    height: 40px;
}

.bottomline__social svg{
    width: 100%;
    height: 100%;
}

.bottomline__social svg path{
    stroke: #fff;
    transition: stroke .4s ease;
}

.bottomline__social:hover svg path{
    stroke: #F40000;
    transition: stroke .4s ease;
}


.footer{
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.footer__blocks{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}

.footer__block-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);

    margin-bottom: 10px;
}

.footer__nav-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer__nav-link{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    transition: color .4s ease;
}

.footer__nav-link:hover{
    color: #C50000;
    transition: color .4s ease;
}

.footer__contacts{
    margin-bottom: 40px;
}

.footer__contacts address{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    margin-bottom: 10px;
}

.footer__contacts a{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    text-decoration-line: underline;
    color: #F2BA4B;
    transition: color .4s ease;
}

.footer__contacts a:hover{
    color: #F40000;
    transition: color .4s ease;
}

.footer__phones{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 50px;
}

.footer__phone{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000000;
    transition: color .4s ease;
}

.footer__phone:hover{
    color: #F40000;
    transition: color .4s ease;
}

.footer__callback-button{
    background: #C50000;
    width: 100%;
    height: 40px;
    padding: 0 10px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;

    border: none;
    margin: 0;
    outline: none;
    cursor: pointer;
    transition: background .4s ease;
}

.footer__callback-button:hover{
    background: #F80000;
    transition: background .4s ease;
}


.footer-sub{
    padding: 20px 0;
}

.footer-sub__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-sub__label{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    color: #9A9FA0;

    flex-shrink: 0;
}




.overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.3);

    z-index: 1000;

    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}

.overlay.-js-visible{
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease;
}

.cataloge-modal{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    
    z-index: 1001;

    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;

    max-width: 1420px;
    width: 100%;

    padding: 0 10px;

}

.cataloge-modal.-js-fixed{
    top: 60px;
}

.cataloge-modal.-js-visible{
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease;
}

.cataloge-modal__inner{
    

    background: #fff;
    padding: 40px 10px 40px 40px;
}

.cataloge-modal__blocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 20px;
    overflow-y: auto;
}

.cataloge-modal__blocks::-webkit-scrollbar {
    width: 6px; 
}
  
.cataloge-modal__blocks::-webkit-scrollbar-track {
    background: rgba(197, 0, 0, 0.1); 
    border-radius: 360px;       
}
  
.cataloge-modal__blocks::-webkit-scrollbar-thumb {
    background-color: #C50000;    
    border-radius: 360px;      
}

.cataloge-modal__block{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cataloge-modal__block-image{

    width: 100px;
    height: 100px;
    border-radius: 50%;

    background: #C50000;

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

.cataloge-modal__block-image img{
    width: 40%;
    height: 50%;
    object-fit: contain;
}

.cataloge-modal__block-title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;

    color: #1B1E25;

    margin-bottom: 16px;
}

.cataloge-modal__nav-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cataloge-modal__nav-link{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;

    color: #101010;
    transition: color .4s ease;
}

.cataloge-modal__nav-link:hover{
    color: #C50000;
    transition: color .4s ease;
}

.burger-menu{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1101;

    width: 100%;
    height: 100vh;

    background: #fff;
    padding: 60px 10px 30px;

    transform: translateX(-100%);
    transition: transform .4s ease;
}

.burger-menu.-js-visible {
    transform: translateX(0);
    transition: transform .4s ease;
}

.burger-menu__inner{
    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 600px;
    overflow-y: auto;
}

.burger-menu__inner::-webkit-scrollbar {
    display: none;
}

.burger-menu__close-button{
    position: absolute;
    top: 5px;
    right: 5px;

    width: 40px;
    height: 40px;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

.burger-menu__nav-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-bottom: 16px;
    padding-bottom: 16px;

    border-bottom: 1px solid #F4F5F5;
}

.burger-menu__nav-item:first-child{
    padding-top: 16px;
}

.burger-menu__nav-item:last-child{
    margin-bottom: 0;
}

.burger-menu__nav-item:nth-child(1) .burger-menu__nav-link,
.burger-menu__nav-item:nth-child(2) .burger-menu__nav-link{
    font-weight: 700;
}

.burger-menu__nav-link{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #222222;
}

.burger-menu__nav{
    margin-bottom: 25px;
    width: 100%;
}

.burger-menu__buttons{
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    width: 100%;
}

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

    gap: 12px;
    
    border: 1px solid #C50000;
    padding: 0 10px;
    margin: 0;
    background: #fff;
    outline: none;

    max-width: 240px;
    width: 100%;
    height: 40px;
}

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

.burger-menu__button-text{
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 1;
    color: #C50000;
}

.burger-menu__phones{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    margin-bottom: 16px;
}

.burger-menu__phone{
    display: flex;
    align-items: center;
    gap: 7px;
}

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

.burger-menu__phone-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    color: #0C2227;
}

.burger-menu__callback-button{
    display: block;
    
    padding: 0;
    margin: 0 0 16px 0;
    outline: none;
    border: none;
    outline: none;
    background: transparent;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 139%;
    text-decoration-line: underline;
    color: #C50000;
}

.burger-menu__socials{
    display: flex;
    align-items: center;
    gap: 22px;
}

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

.burger-menu__nav-arrow{
    display: none;
    align-items: center;
    justify-content: center;

    transition: transform .4s ease;
}

.burger-menu__nav ul li.-js-hide-content > .burger-menu__nav-arrow{
    transform: rotate(180deg);
    transition: transform .5s ease;
}

.burger-menu__nav ul li.-js-show-arrow > .burger-menu__nav-arrow {
    display: flex;
}

.burger-menu__sub-item.-js-item-level-2 > .burger-menu__sub-link{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #1B1E25;
}

.burger-menu__sub-item{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
}

.burger-menu__sub-list{
    width: 100%;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all .5s ease;
}

.burger-menu__sub-list.-js-visible{
    margin-top: 24px;
    margin-left: 20px;
    overflow: visible;
    opacity: 1;
    transition: all .5s ease;
}

.burger-menu__sub-item:not(:last-child){
    margin-bottom: 16px;
}

.burger-menu__sub-link{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #222222;

}


.search-panel{
    background: #C50000;
    padding: 3px 0;
    
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1003;

    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease;
}

.search-panel.-js-visible{
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease;
}

.search-panel__form-inner{
    position: relative;
}

.search-panel__submit{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #C50000;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    outline: none;
    transition: background .4s ease;
}

.search-panel__submit:hover{
    background: #F40000;
    transition: background .4s ease;
}

.search-panel__close-button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #000;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    outline: none;
    transition: background .4s ease;
}

.search-panel__close-button:hover{
    background: #2F2F2F;
    transition: background .4s ease;
}

.search-panel__input{
    width: 100%;
}

.search-panel__input input{
    width: 100%;
    height: 54px;

    outline: none;
    padding: 0 80px;
    border: none;
    margin: 0;

    font-family: 'Gotham Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;

    color: #000;

}

.search-panel__input input::placeholder{
    font-family: 'Gotham Pro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;

    color: rgba(206, 206, 206, 1);
}




.modal{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 1005;

    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}

.modal.visible{
    opacity: 1;
    visibility: visible;
    transition: opacity .2s ease;
}

.modal__overlay{
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.3);

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

.modal__inner{
    max-width: 580px;
    width: 100%;

    background: #fff;

    padding: 50px;
    position: relative;

    margin: 0 10px;
}

.modal__close-button{
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;
    background: #000;

    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background .4s ease;
}

.modal__close-button:hover{
    background: #2F2F2F;
    transition: background .4s ease;
}

.modal__title{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #1B1E25;
    
    margin-bottom: 30px;
}

.modal__fields{
    margin-bottom: 30px;
}

.modal__field:not(:last-child){
    margin-bottom: 20px;
}

.modal__field-label{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #101010;

    margin-bottom: 10px;
}

.modal__field-label span{
    color: #C50000;
}

.modal__input input{
    width: 100%;
    height: 48px;

    border: 1px solid #DEE9EB;
    outline: none;
    padding: 0 20px;
    margin: 0;
    background: #fff;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #1B1E25;
}

.modal__checkbox input{
    display: none;
}

.modal__checkbox input:checked + label .modal__checkbox-icon::before{
    display: block;
}

.modal__checkbox{
    margin-bottom: 20px;
}

.modal__checkbox label{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    cursor: pointer;
}

.modal__checkbox-icon{
    display: block;

    width: 16px;
    height: 16px;

    border: 1px solid #C50000;

    position: relative;
}

.modal__checkbox-icon::before{
    content: '';
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 10px;
    height: 10px;

    background: #C50000;

    display: none;
}

.modal__checkbox-text{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #535657;
}

.modal__checkbox-text a{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #C50000;
}

.modal__buttons{
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal__button{
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    color: #FFFFFF;

    height: 40px;
    width: 100%;

    border: none;
    padding: 0 10px;
    outline: none;
    background: transparent;
    cursor: pointer;
    transition: all .4s ease;
}

.modal__button--submit{
    background: #C50000;
    max-width: 200px;
}

.modal__button--submit:hover{
    background: #F40000;
    transition: all .4s ease;
}

.modal__button--reset{
    max-width: 160px;

    color: #C50000;
    border: 1px solid #C50000;
}

.modal__button--reset:hover{
    color: #fff;
    background: #C50000;
    border-color: #C50000;
    transition: all .4s ease;
}
/*  */


/* media requests */
@media(max-width: 1600px) {
    .cards__slider-button--next{
        right: -15px;
    }
    
    .cards__slider-button--prev{
        left: -15px;
    }
}


@media(max-width: 1440px) {
    
    .cards__slider-button--next{
        right: 0px;
    }
    
    .cards__slider-button--prev{
        left: 0px;
    }

    .header__inner{
        gap: 20px;
    }

    .header__logo{
        max-width: 190px;
    }

    .header__button{
        gap: 3px;
    }

    .header__buttons{
        max-width: 340px;
        grid-gap: 5px;
    }

    .header__social{
        width: 30px;
        height: 30px;
    }

    .topline__cataloge-button{
        max-width: 140px;
    }

    .topline__nav{
        margin: 0;
    }

    .topline__inner{
        padding: 0;
    }

    .topline__search{
        margin: 0;
    }

    .topline__inner{
        justify-content: space-between;
    }

    .index-cataloge__items{
        grid-gap: 15px;
    }

    .index-cataloge__item-title{
        font-size: 16px;
    }


    .cataloge-modal__block-image{
        width: 60px;
        height: 60px;
    }


} 

@media(max-width: 1200px) {
    
    
    .hero__banner-title span{
        padding: 6px 10px;
    }
    
    .hero__slide-title span{
        padding: 6px 10px;
    }
    
    .header__contacts{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header__contacts-wrapper{
        gap: 40px;
    }

    .footer-sub__label:nth-child(1) {
        max-width: 440px;
    }

    .hero__banner{
        padding: 20px 20px 40px;
    }

    .hero__slide-inner{
        padding: 20px;
    }

    .hero__slider-pagination{
        left: 20px !important;
    }

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

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

    .hero__slide-text{
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero__slide-button{
        height: 50px;
        max-width: 250px;
    }

    .hero__banners{
        grid-gap: 15px;
        min-height: 440px;
    }

    .advantages__triggers{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        grid-gap: 0;
        gap: 50px 20px;
    }

    .advantages__trigger{
        max-width: 320px;
    }

    .index-cataloge__items{
        display: flex;
        align-items: center;
        overflow-x: auto;
    }

    .index-cataloge__item{
        height: 280px;
        min-width: 300px;
    }

    .cards{
        padding: 60px 0;
        margin-bottom: 80px;
    }

    .cards__items{
        grid-gap: 15px;
    }
}

@media(max-width: 1024px) {
    
    .cards__item{
        min-height: 440px;
    }
    
    .cards__slider-button{
        width: 40px;
        height: 40px;
    }

    .search-panel{
        position: static;
        opacity: 1;
        visibility: visible;

        background: transparent;
        padding: 0;
    }

    .search-panel__input input{
        border: 1px solid #DEE9EB;
        border-radius: 3px;

        font-size: 12px;

        height: 44px;
        padding: 0 54px;
    }

    .search-panel__close-button{
        display: none;
    }

    .search-panel__submit {
        width: 40px;
        height: 40px;
    }

    .search-panel__input input::placeholder{
        font-size: 12px;
    }

    .topline{
        border-bottom: 1px solid #F4F5F5;
    }

    .topline__inner{
        flex-wrap: wrap;
        gap: 15px 30px;
    }


    .header{
        display: none;
    }

    .topline{
        background: #fff;
    }

    .topline__nav{
        display: none;
    }

    .topline__search{
        display: none;
    }

    .topline__logo{
        display: block;
    }

    .topline__call-btn{
        display: flex;
    }

    .topline-warning__button{
        max-width: 100%;
    }

    .topline__burger-button{
        display: flex;
    }

    .topline__inner{
        justify-content: space-between;
        padding: 15px 0;
    }

    .hero{
        padding-top: 20px;
    }

    .hero__banner-title{
        font-size: 22px;
    }

    .hero__slide-title{
        font-size: 22px;
    }

    .hero__banners{
        min-height: fit-content;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }

    .hero__slider-button{
        display: none;
    }

    .hero__slider{
        grid-row: span 1;
        grid-column: span 2;
    }

    .hero__banner{
        min-height: 240px;
    }

    .hero__slider.hero__banner{
        min-height: 360px;
    }

    .advantages{
        padding: 40px 0;
    }

    .advantages__trigger-icon{
        margin-bottom: 20px;
    }


    .index-cataloge__item-decor{
        display: none;
    }

    .index-cataloge__item-title{
        font-size: 14px;
    }

    .index-cataloge__item{
        height: 240px;
    }


    .advantages {
        margin-bottom: 80px;
    }

    .index-cataloge{
        margin-bottom: 80px;
    }

    .cards{
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .cards__item-image{
        height: 240px;
    }


    .cataloge-modal__inner{
        padding: 20px 10px 20px 20px;
    }

    .cataloge-modal__blocks{
        max-height: 320px;
    }

    .topline__cataloge-button{
        display: none;
    }

    .topline-warning{
        position: fixed;
        z-index: 10;

        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;

        width: 97%;
        padding: 12px;
    }

    .topline-warning__inner{
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .topline-warning .wrapper{
        max-width: 100%;
        padding: 0;
    }

    .topline-warning__close-button{
        display: flex;
    }
}

@media(max-width: 768px) {
    
    .hero__banner-link{
        height: auto;
        max-width: fit-content;
        background: transparent;
        
        justify-content: flex-start;
    }
    
    

    .cards__item{
        min-height: 380px;
    }

    .burger-menu__button{
        max-width: 200px;
    }

    .cards{
        padding: 40px 0;
        margin-bottom: 20px;
    }

    .advantages {
        margin-bottom: 60px;
    }

    .index-cataloge{
        margin-bottom: 60px;
    }

    .topline-warning__inner{
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .topline-warning__text{
        text-align: center;
        font-size: 13px;
    }
    

    .bottomline__aside{
        gap: 20px;
    }


    .footer__blocks{
        grid-template-columns: repeat(3, 1fr);
    }

    .footer__block:last-child{
        grid-column: span 3;
    }

    .footer__contacts{
        margin-bottom: 20px;
    }

    .footer__phones{
        margin-bottom: 30px;
    }

    .footer-sub__inner{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-sub__label:nth-child(1){
        max-width: 100%;
    }

    .footer-sub__label{
        text-align: center;
    }

    .bottomline__social{
        width: 30px;
        height: 30px;
    }

    .hero__banner-title{
        font-size: 20px;
    }

    .hero__banner{
        min-height: 200px;
    }

    .hero__banner{
        padding-bottom: 30px;
    }

    .hero__banner-link-text{
        display: none;
    }

    .hero__banner-link-icon{
        width: 30px;
        height: 30px;

        border-radius: 50%;
        background: #fff;
    }

    .hero__banner-link-icon svg{
        width: 15px;
        height: 10px;
    }

    .advantages__trigger-title{
        font-size: 16px;
    }

    .advantages__trigger-text{
        font-size: 12px;
    }

    .advantages__trigger{
        max-width: 260px;
    }

    .index-cataloge__item{
        height: 200px;
    }

    .index-cataloge__item-title{
        padding: 10px;
        font-size: 12px;
    }

    .section-title{
        font-size: 24px;
    }
    


    .cards__item-image{
        height: 200px;
    }

    .cards__item-current-price{
        font-size: 20px;
        margin-bottom: 4px;
    }

    .cards__item-content{
        padding: 15px 15px 0;
    }

    .cards__item-title{
        margin-bottom: 15px;
        font-size: 16px;
    }


    .cataloge-modal__blocks{
        grid-template-columns: repeat(2, 1fr);
    }

    .cataloge-modal__block{
        gap: 15px;
    }

    .cataloge-modal__block-title{
        margin-bottom: 10px;
    }

    .cataloge-modal__block-title{
        font-size: 16px;
    }

    .modal__inner{
        padding: 30px;
    }

    .modal__close-button{
        width: 30px;
        height: 30px;
    }

    .modal__checkbox-text,
    .modal__checkbox-text a{
        font-size: 13px;
    }

    .modal__title{
        font-size: 26px;
    }
}

@media(max-width: 576px) {
    .hero__banners{
        grid-template-columns: 1fr;
    }

    .hero__slider{
        grid-column: span 1;
    }

    .hero__slide-text{
        font-size: 14px;
    }

    .hero__slide-title{
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hero__slide-button{
        height: 40px;
        max-width: 200px;
    }

    .hero__slide-button-icon{
        display: none;
    }

    .hero__slider.hero__banner{
        min-height: 300px;
    }
    
    .hero__slider-pagination{
        bottom: 30px !important;
        gap: 8px;
        justify-content: flex-end;
        left: auto !important;
        right: 20px !important;
    }

    .hero__slider-pagination span{
        width: 20px;
    }


    .advantages__triggers{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        grid-gap: 30px;
    }

    .advantages__trigger:last-child{
        grid-column: span 2;
        max-width: 100%;
    }
}

@media(max-width: 475px) {
    .footer__blocks{
        grid-template-columns: 1fr;
    }

    .footer__block:last-child{
        grid-column: span 1;
    }

    .bottomline__aside{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }


    .hero__slide-title br{
        display: none;
    }

    .hero__slide-text{
        margin-bottom: 25px;
    }

    .advantages__triggers{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        grid-gap: 30px;
    }

    .advantages__trigger:last-child{
        grid-column: span 1;
        max-width: 100%;
    }

    .advantages__trigger{
        max-width: 100%;
    }

    .index-cataloge__item{
        height: 180px;
    }
    
    .cards__top{
        flex-direction: column;
        align-items: flex-start;
    }

    .cards__link{
        justify-content: center;
        width: 100%;
    }

    .cataloge-modal__blocks{
        grid-template-columns: 1fr;
    }


    .modal__buttons{
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .modal__button--reset{
        max-width: 100%;
    }

    .modal__button--submit{
        max-width: 100%;
    }

    .modal__inner{
        padding: 30px 15px;
    }
    
    .hero__slide-inner{
        padding: 20px 10px;
    }
    
    .hero__banner{
        padding: 20px 10px 30px;
    }
    
    .hero__slide-title span,
    .hero__banner-title span{
        padding: 4px 6px;
    }
}

@media(max-width: 425px) {
    .topline-warning__text{
        max-width: 200px;
    }
}
/*  */




.breadcrumbs{
    margin: 15px 0 40px;
}

.breadcrumbs__list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 13px;
}

.breadcrumbs__item{
    position: relative;
    padding-right: 20px;
}

.breadcrumbs__item::before{
    content: '/';
    position: absolute;
    
    top: 50%;
    transform: translateY(-50%);
    right: 0;

    
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #D1D8DA;

}

.breadcrumbs__item:last-child::before{
    display: none;
}

.breadcrumbs__item:last-child .breadcrumbs__link{
    color: rgba(43, 47, 48, 0.6);
}

.breadcrumbs__link{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #2B2F30;
    transition: color .4s ease;
}

.breadcrumbs__link:hover{
    color: rgba(43, 47, 48, 0.6);
    transition: color .4s ease;
}


.article{
    margin-bottom: 80px;
}

.article__title{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 62px;
    line-height: 1.2;
    color: #111417;
    
    margin-bottom: 15px;
}

.article__date{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #101010;
}

.article__top{
    margin-bottom: 35px;
}

.article__box{
    padding: 25px;
    background: rgba(219, 43, 31, 0.03);
}

.article__box p{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: #101010;
}

.article__content-block:not(:last-child){
    margin-bottom: 35px;
}

.article__image{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.article__image-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #101010;
}

.article__image-wrap{
    width: 100%;
    height: 565px;
    overflow: hidden;
    position: relative;
}

.article__image-wrap--resized{
    max-width: 1160px;
}

.article__image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: transform .4s ease;
}

.article__image-wrap:hover img{
    transform: scale(1.1);
    transition: transform .4s ease;
}

.article__content-block h3{
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: #1B1E25;
    margin-bottom: 20px;
}

.article__text{
    margin-bottom: 20px;
}

.article__text p{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #101010;
}

.article__text p:not(:last-child) {
    margin-bottom: 15px;
}

.article__wrapper{
    display: flex;
    align-items: flex-start;
    gap: 35px;
}

.article__wrapper .article__image-wrap{
    height: 400px;
}

.article__wrapper .article__image-wrap{
    border: 1px solid #F4F5F5;
}

.article__aside-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #101010;
    
    margin-bottom: 20px;
}

.article__aside-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.article__aside-item:not(:last-child) {
    margin-bottom: 25px;
}

.article__aside-item-num{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    line-height: 1;
    color: #FFFFFF;
    
    width: 52px;
    height: 52px;
    background: #C50000;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    flex-shrink: 0;
}

.article__aside-item-text{
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #101010;
}

.article__aside-item-text span{
    font-weight: 700;
}

.article__content-block h2{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 140%;
    text-transform: uppercase;
    color: #101010;
    
    margin-bottom: 20px;
}

.article__item h3{
    margin-bottom: 12px;
}

.article__item p{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: #101010;
}

.article__item blockquote{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #101010;
    
    padding: 14px 14px 14px 61px;
    background: #fff;
    
    border: 9px solid #FEF8F8;
    
    max-width: 1040px;
    width: 100%;
    margin-bottom: 20px;
    
    position: relative;
}

.article__item blockquote::before{
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    
    background-image: url('../images/article/blockquote-icon.svg');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    
    width: 24px;
    height: 21px;
}

.article__item:not(:last-child) {
    margin-bottom: 20px;
}

.article__item:last-child{
    margin-top: 35px;
}

.article__item:last-child h3{
    margin-bottom: 20px;
}


.another-publications{
    margin-bottom: 120px;
}

.another-publications__title.section-title::before{
    width: 44px;
}

.another-publications__slider{
    position: relative;
}

.another-publications__button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    background: #FFFFFF;
    box-shadow: 0px 15px 16px rgba(68, 66, 60, 0.05);
    
    width: 70px;
    height: 70px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: background .4s ease;
}

.another-publications__button:hover{
    background: #373431;
    transition: background .4s ease;
}

.another-publications__button:hover svg path{
    fill: #fff;
    transition: fill .4s ease;
}

.another-publications__button svg path{
    transition: fill .4s ease;
}

.another-publications__button--prev{
    left: -120px;
}

.another-publications__button--next{
    right: -120px;
}

.another-publications__slide-link{
    display: block;
}

.another-publications__slide-link:hover .another-publications__slide-title{
    text-decoration: underline;
    transition: all .4s ease;
}

.another-publications__slide-image{
    width: 100%;
    height: 175px;
    margin-bottom: 17px;
}

.another-publications__slide-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.another-publications__slide-date{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: #061E24;
    margin-bottom: 11px;
}

.another-publications__slide-title{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #2C333D;
    
    margin-bottom: 11px;
    
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Указываем, сколько строк нужно отображать */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    transition: all .4s ease;
}

.another-publications__slide-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    color: #393939;
}


@media(max-width: 1600px) {
    
    .another-publications__button--next{
        right: -90px;
    }
    
    .another-publications__button--prev{
        left: -90px;
    }
}

@media(max-width: 1440px) {
    
    .article__title{
        font-size: 48px;
        max-width: 860px;
    }
    
    .article__content-block h2{
        font-size: 28px;
    }
    
    .article__content-block h3{
        font-size: 20px;
    }
    
    .another-publications__button--next{
        right: 5px;
    }
    
    .another-publications__button--prev{
        left: 5px;
    }
    
    .another-publications__button{
        width: 50px;
        height: 50px;
    }
    
}

@media(max-width: 1200px) {
    .article__title{
        font-size: 40px;
    }
}

@media(max-width: 1024px) {
    
    .article__title{
        font-size: 36px;
        max-width: 800px;
    }
    
    .article__image-wrap{
        height: 500px;
    }
    
    .article__wrapper{
        flex-direction: column;
    }
    
    .article__aside{
        order: -1;
    }
    
    .article__wrapper .article__image-wrap{
        height: 500px;
    }
    
    .article__box p{
        font-size: 14px;
    }
    
    .article__text p{
        font-size: 14px;
    }
    
    .article__content-block h3{
        margin-bottom: 15px;
    }
    
    .article__aside-item-text{
        font-size: 14px;
    }
    
    .article__content-block h2{
        font-size: 26px;
    }
    
    .article__item p{
        font-size: 14px;
    }
    
    .article__item blockquote{
        max-width: 100%;
        font-size: 14px;
    }
    
    .another-publications__slide-title{
        font-size: 18px;
    }
    
    .another-publications{
        margin-bottom: 80px;
    }
    
    .article__wrapper .article__image-wrap{
        height: 400px;
    }
    
    .article__image-wrap{
        height: 400px;
    }
    
    .article__aside-item-num{
        width: 42px;
        height: 42px;
    }
    
    .article__wrapper .article__image-wrap img{
        object-fit: contain;
    }
}

@media(max-width: 768px) {
    .article__wrapper .article__image-wrap{
        height: 320px;
    }
    
    .article__image-wrap{
        height: 320px;
    }
    
    .article__title{
        font-size: 32px;
        max-width: 100%;
    }
}

@media(max-width: 475px) {
    .article__title{
        font-size: 28px;
    }
    
    .article__content-block h2{
        font-size: 24px;
    }
    
    .article__content-block h3{
        font-size: 18px;
    }
    
    .article__wrapper .article__image-wrap{
        height: 280px;
    }
    
    .article__image-wrap{
        height: 280px;
    }
}


.cataloge{
    margin-bottom: 120px;
}

.cataloge__title{
    font-family: 'RF Dewi', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 62px;
    line-height: 1.2;
    color: #111417;
    text-align: left;
    margin-bottom: 25px;
}

.cataloge__wrapper{
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.cataloge__aside{
    max-width: 330px;
    width: 100%;
}

.cataloge__items{
    flex: 1;
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    
}

.cataloge__nav-list{
    padding: 10px 0;
    background: #FBFBFB;
    border-radius: 3px;
}

.cataloge__nav-link{
    display: flex;
    align-items: center;
    gap: 16px;
    
    width: 100%;
    height: 84px;
    padding: 0 30px;
    transition: background .4s ease;
}

.cataloge__nav-link:hover {
    background: rgba(197, 0, 0, 0.1);
    transition: background .4s ease;
}

.cataloge__nav-link:hover .cataloge__nav-icon{
    background: #C50000;
    transition: background .4s ease;
}

.cataloge__nav-link:hover .cataloge__nav-icon svg path{
    stroke: #fff;
    transition: stroke .4s ease;
}

.cataloge__nav-link:hover .cataloge__nav-text{
    color: #C50000;
    transition: color .4s ease;
}



.cataloge__nav-link.-js-active {
    background: rgba(197, 0, 0, 0.1);
    transition: background .4s ease;
}

.cataloge__nav-link.-js-active .cataloge__nav-icon{
    background: #C50000;
    transition: background .4s ease;
}

.cataloge__nav-link.-js-active .cataloge__nav-icon svg path{
    stroke: #fff;
    transition: stroke .4s ease;
}

.cataloge__nav-link.-js-active .cataloge__nav-text{
    color: #C50000;
    transition: color .4s ease;
}



.cataloge__nav-icon{
    width: 48px;
    height: 48px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    
    background: #E5E6E6;
    transition: background .4s ease;
}
.cataloge__nav-icon img{
    height: 50%;
}

.cataloge__nav-icon svg path{
    transition: stroke .4s ease;
}

.cataloge__nav-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #21272C;
    transition: color .4s ease;
}



.cataloge__item{
    display: flex;
    flex-direction: column;
    
    padding: 35px 25px 40px;
    border: 1px solid #D7DADA;
    
    min-height: 450px;
    transition: all .4s ease;
}

.cataloge__item-title{
    font-family: 'RF Dewi', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    color: #111417;
    margin-bottom: 20px;
}

.cataloge__item-image{
    width: 100%;
    height: 242px;
    margin-top: auto;
    margin-bottom: 32px;
}

.cataloge__item-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cataloge__item-label{
    display: flex;
    align-items: center;
    max-width: 130px;
}

.cataloge__item-label-text{
    font-family: 'RF Dewi', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    color: #C50000;

    display: inline-block;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: width 0.5s, margin .2s;
    
    
}

.cataloge__item:hover .cataloge__item-label-text{
    width: 100%;
    margin-right: 10px;
}

.cataloge__item:hover .cataloge__item-label-arrow svg path{
    fill: #C50000;
    transition: fill .4s ease;
}

.cataloge__item:hover{
    border-color: #c50000;
    transition: all .4s ease;
}

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

.cataloge__item-label-arrow svg path{
    transition: fill .4s ease;
}


.cataloge__item-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 30px;
}

.cataloge__item-status{
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.cataloge__item-status-text{
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    
}

.cataloge__item-status--in-stock .cataloge__item-status-text{
    color: #1B9665;
}

.cataloge__item-status--in-order .cataloge__item-status-text{
    color: #DE7B20;
}

@media(max-width: 1440px) {
    .cataloge__title{
        font-size: 48px;
    }
    
    .cataloge__wrapper{
        gap: 20px;
    }
    
    .cataloge__items{
        grid-gap: 20px;
    }
    
    .cataloge__item{
        padding: 25px 25px 30px;
        min-height: 410px;
    }
    
    .cataloge__aside{
        max-width: 300px;
    }
}

@media(max-width: 1200px) {
    .cataloge__title{
        font-size: 40px;
    }
    
    .cataloge__aside{
        max-width: 280px;
    }
    
    .cataloge__item-bottom{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cataloge__item-status{
        order: -1;
    }
}

@media(max-width: 1024px) {
    .cataloge__title{
        font-size: 36px;
    }
    
    .cataloge__wrapper{
        flex-direction: column;
    }
    
    .cataloge__nav-list{
        background: transparent;
        
        display: flex;
        align-items: center;
        overflow-x: auto;
        padding: 0;
    }
    
    .cataloge__nav-list::-webkit-scrollbar {
        display: none;
    }
    
    .cataloge__aside{
        max-width: 100%;
    }
    
    .cataloge__nav-item{
        min-width: fit-content;
    }
    
    .cataloge__item-image{
        height: 220px;
    }
    
    .cataloge__item{
        min-height: 380px;
    }
    
    .cataloge__nav-link{
        padding: 0 20px;
        height: 64px;
        gap: 12px;
    }
    
    .cataloge__nav-text{
        font-size: 15px;
    }
    
    .cataloge{
        margin-bottom: 80px;
    }
    
    
    .cataloge__item-label-text{
        width: auto;
        margin-right: 10px;
        color: #111417;
    }
    
    .cataloge__item-label{
        max-width: 100%;
        width: 100%;
        justify-content: space-between;
    }

}

@media(max-width: 768px) {
    .cataloge__title{
        font-size: 32px;
    }
    
    .cataloge__items{
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 15px;
        width: 100%;
    }
}

@media(max-width: 475px) {
    .cataloge__title{
        font-size: 28px;
    }
    
    .cataloge__items{
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
        width: 100%;
    }
    
    .cataloge__item{
        min-height: fit-content;
    }
    
    .cataloge__item-title{
        margin-bottom: 20px;
    }
}

.cards__item {
    min-height: 430px;
}

.cards__item-title,
.cards__item-current-price {
    margin-bottom: 3px;
}


.cataloge-modal__block-title a {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #1B1E25;
    transition: color .4s ease;
}

.cataloge-modal__block-title a:hover {
    color: #C50000;
}

.cataloge-modal__block-image {
    transition: .4s ease;
    border: 1px solid #C50000; 
}

.cataloge-modal__block-image:hover {
    background-color: transparent;
}

.topline__cataloge-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.cataloge__item-availability{
    font-family: 'Onest';
    font-size: 14px;
    font-weight: 500;
    line-height: 17.85px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cataloge__item-availability_green{
    color: #1B9665;
}
.cataloge__item-availability_orange{
    color: #DE7B20;
}

/* Контакты */

.contacts-page {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    font-size: 16px;

}

.contacts-page .section-contact {
    display: grid;
    grid-template-columns: 328px 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

#map {
    height: 509px;
}

.contacts-page h1 {
    font-family: "RF Dewi", sans-serif;
    font-weight: 700;
    font-size: 62px;
    line-height: 108%;
    color: #111417;
    text-align: start;
    margin: 40px 0;
}

.contact-one .name {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 17px;
    line-height: 100%;
    color: #000;
    text-transform: none;
}

.contact-one .data {
    font-weight: 400;
    line-height: 137%;
    color: #1e1e1e;
    font-size: 16px;
}

.list-contact {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.list-contact >li {
    border: none;
    padding: 0;
}

.contact-one {
    margin: 0;
}

.contact-one .phone a {
    margin-bottom: 6px;
    line-height: 137%;
    color: #1e1e1e;
    font-size: 16px;
    transition: .4s ease;
}

.contact-one span {
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #404748;
}

.contact-one .link {
    font-size: 17px;
    line-height: 141%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #c50000;
    transition: .4s ease;
}

.contact-one .link:hover {
    color: #1e1e1e;
}

.contact-one .box-icon {
    width: 52px;
    height: 52px;
    background: #c50000;
    border-radius: 0;
}

.contact-one .phone {
    font-weight: 400;
    font-size: 16px;
    line-height: 137%;
    color: #1e1e1e;
}

.contact-one .phone:not(:last-of-type) {
    margin-bottom: 6px;
}

.icon-location:before {
    display: block;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='19' viewBox='0 0 10 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.00156 1.6501C3.16522 1.6501 1.65156 3.17698 1.65156 5.09163C1.65156 7.00628 3.16522 8.53317 5.00156 8.53317C6.83793 8.53317 8.35156 7.00628 8.35156 5.09163C8.35156 3.17698 6.83793 1.6501 5.00156 1.6501ZM0.351562 5.09163C0.351562 2.48689 2.41969 0.350098 5.00156 0.350098C7.58348 0.350098 9.65156 2.48689 9.65156 5.09163C9.65156 7.47367 7.92199 9.46436 5.65156 9.78735L5.65157 18.0001C5.65157 18.3591 5.36055 18.6501 5.00157 18.6501C4.64258 18.6501 4.35157 18.3591 4.35157 18.0001L4.35156 9.78735C2.08116 9.46436 0.351562 7.47367 0.351562 5.09163Z' fill='white' /%3E%3C/svg%3E");
    width: 9.3px;
    height: 18.3px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-phone:before {
    display: block;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.52941 1H5.58824L7.11765 4.82353L5.20588 5.97059C6.02485 7.63117 7.36883 8.97515 9.02941 9.79412L10.1765 7.88235L14 9.41176V12.4706C14 12.8762 13.8389 13.2652 13.552 13.552C13.2652 13.8389 12.8762 14 12.4706 14C9.48767 13.8187 6.67424 12.552 4.5611 10.4389C2.44797 8.32577 1.18127 5.51233 1 2.52941C1 2.12379 1.16113 1.73477 1.44795 1.44795C1.73477 1.16113 2.12379 1 2.52941 1Z' stroke='white' stroke-width='1.3' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    width: 13px;
    height: 13px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-mail:before {
    display: block;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.71429C1 2.25963 1.17559 1.82359 1.48816 1.5021C1.80072 1.18061 2.22464 1 2.66667 1H14.3333C14.7754 1 15.1993 1.18061 15.5118 1.5021C15.8244 1.82359 16 2.25963 16 2.71429M1 2.71429V11.2857C1 11.7404 1.17559 12.1764 1.48816 12.4979C1.80072 12.8194 2.22464 13 2.66667 13H14.3333C14.7754 13 15.1993 12.8194 15.5118 12.4979C15.8244 12.1764 16 11.7404 16 11.2857V2.71429M1 2.71429L8.5 7.85714L16 2.71429' stroke='white' stroke-width='1.3' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
    width: 15px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon-time:before {
    display: block;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_532_976)'%3E%3Cpath d='M2.5 10C2.5 10.9849 2.69399 11.9602 3.0709 12.8701C3.44781 13.7801 4.00026 14.6069 4.6967 15.3033C5.39314 15.9997 6.21993 16.5522 7.12987 16.9291C8.03982 17.306 9.01509 17.5 10 17.5C10.9849 17.5 11.9602 17.306 12.8701 16.9291C13.7801 16.5522 14.6069 15.9997 15.3033 15.3033C15.9997 14.6069 16.5522 13.7801 16.9291 12.8701C17.306 11.9602 17.5 10.9849 17.5 10C17.5 8.01088 16.7098 6.10322 15.3033 4.6967C13.8968 3.29018 11.9891 2.5 10 2.5C8.01088 2.5 6.10322 3.29018 4.6967 4.6967C3.29018 6.10322 2.5 8.01088 2.5 10Z' stroke='white' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round' /%3E%3Cpath d='M10 5.83331V9.99998L12.5 12.5' stroke='white' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_532_976'%3E%3Crect width='20' height='20' fill='white' /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-callback {
    background: transparent;
    border-top: 1px solid #eaeaea;
}

.from-callback {
    margin: 0 auto;
    padding: 80px 0;
    max-width: 750px;
}

.from-callback h2 {
    margin-bottom: 3px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 126%;
    color: #1d1d27;
}

.from-callback span {
    display: block;
    margin-bottom: 41px;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 19px;
    line-height: 232%;
    color: #434343;
    text-align: center;
}

.input-container {
  height: 57px;
  position: relative;
  width: 100%;
}

.input {
    border: none;
    border-bottom: 1px solid #000;
    padding: 15px 10px;
    width: 100%;
    height: 57px;
    border-radius: 0;
}


.placeholder {
    position: absolute;
    top: 15px;
    left: 10px;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 169%;
    color: #2b2b2b;
    pointer-events: none;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
}

.input:not(:placeholder-shown) {
  transform: translateY(8px);
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) scale(0.75);
}

.from-callback textarea:hover, textarea:focus {
    z-index: 0;
    border-color: #000;
}

.form-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.input-container.textarea {
    grid-column: span 2;
}

.input-container textarea {
    width: 100%;
}

.form-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.form-button .btn {
    padding: 25px 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    background: #c50000;
    border-radius: 0;
    border: none;
}

.form-button p {
    font-family: "Pragmatica", sans-serif;
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #6b6e72;    
}

.form-button p a {
    color: #6b6e72;   
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.btn.glare-button {
    position: relative;
    overflow: hidden; 
}

.glare-button:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%, 
    rgba(255, 255, 255, 0.8), 
    rgba(255, 255, 255, 0) 70% 
  );
  top: 0;
  left: -100px;
  animation: shine 4s infinite linear; 
}

.contact-one .phone a:hover {
    color: #c50000;
}

@keyframes shine {
  0% {
    left: -100px; 
  }
  20% {
    left: 100%; 
  }
  100% {
    left: 100%; 
  }
}


@media (max-width: 768px) {
    .contacts-page h1 {
        font-size: 42px;
    }
    
    .contacts-page .section-contact {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
    
    .list-contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .from-callback {
        padding: 50px 10px;
    }
    
    .from-callback h2 {
        font-size: 25px;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .from-callback span {
        font-size: 13px;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .input-container.textarea {
        grid-column: span 1;
    }
}

@media (max-width: 470px) {
    .list-contact {
        grid-template-columns: 1fr;
    }
}

.sitebar-box .menu-category {
    padding: 10px 0;
    background: #FBFBFB;
    border-radius: 3px;
}

.sitebar-box .menu-name {
    color: #21272C;
    font-family: 'Onest', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.sitebar-box .menu-category >li >a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 84px;
    padding: 0 30px;
}

.sitebar-box .menu-category >li >a .box-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E5E6E6;
    transition: .4s ease;
    margin: 0;
}

.menu-category >li >a .box-icon img {
    width: 50% !important;
}

.column-sitebar {
    width: 330px;
    padding: 0;
    flex-shrink: 0;
}

.services .column-content {
    width: auto;
}

.services  .column.column-reverse {
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.sitebar-box .menu-category >li >a:hover, .sitebar-box .menu-category >li >a.active {
    background: rgba(197, 0, 0, 0.1);
}

.menu-category >li >a .box-icon {
    flex: 0 0 48px;
    transition: .4s ease;
}

.sitebar-box .menu-category >li >a:hover .box-icon {
    background: #C50000;
}

.sitebar-box .menu-category.open {
    opacity: 1;
    height: fit-content;
}
.cataloge__nav-item {
    padding: unset;
}


.contact-one .link, 
.footer__contacts a {
    color: #f58356;
}

