@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
*{
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: hidden;
}

.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.top-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo__text{
    font-weight: 500;
    font-size: 53px;
    color: #810002;
}
.logo__text__special{
    color: #555555;
    width: 400px;
}
.logo{
    height: 80px;
}
.logo img{
    position: relative;
    left: 165px;
    bottom: 61px;
}
.search__place{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 582px;
    height: 42px;
    border: 3px solid #8F090B;
    border-radius: 8px;
}
.header__search{
    width: 520px;
    height: 42px;
    padding-left: 26px;
    outline: none;
    border: none;
    border-radius: 8px;
    font-size: 18px;
}
.search__btn{
    background-color: #8F090B;
    border: none;
    width: 55px;
    height: 46px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}   

.header__catalog{
    background-color: #F7F8FA;
}
.catalog__wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 67px;
    margin-bottom: 54px !important;
}
.catalog__list{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    /* justify-content: space-between; */
}
.catalog__list__item a{
    color: #555555; 
    font-size: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.5s;
}
.catalog__list__item a:hover{
    color: #810002;
}
.catalog-btn{
    width: 300px;
    height: 50px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    background-color: #8F090B;
    color: #F7F8FA;
    font-size: 25px;
    font-weight: 500;
    transition: 0.5s;
}
.catalog-btn:hover{
    background-color: #F7F8FA;
    color: #8F090B;
    border: 3px solid #8F090B;
}
.header__auth{
    border: none;
    background-color: #8F090B;
    color: white;
    width: 10%;
    height: 45px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    transition: 0.5s;
}
.header__auth:hover{
    background-color: #F7F8FA;
    color: #8F090B;
    border: 3px solid #8F090B;
}

@media(max-width:1060px){
    .header__auth{
        font-size: 14px;
        width: 15%;
    }
    .logo{
        display: flex;
        align-items: center;
    }
    .logo__text{
        font-size: 40px;
    }
    .search__form{
        width: 350px;
    }
    .search__place{
        width: 350px;
    }
    .header__search{
        width: 330px;
    }
    .slider__wrap{
        width: 100% !important;
    }
    .modal__catalog{
        width: 60% !important;
    }
    .about__company{
        .sverl{
            display: none;
        }
        .company__text{
            width: 100% !important;   
        }
    }
}
@media(max-width:708px){
    .logo__text{
        font-size: 30px;
    }
    .search__form{
        width: 250px;
    }
    .search__place{
        width: 250px;
    }
    .header__search{
        width: 170px;
    }
    .slider__wrap{
        width: 100% !important;
    }
    .modal__catalog{
        width: 60% !important;
    }
    .about__company{
        .sverl{
            display: none;
        }
        .company__text{
            width: 100% !important;   
        }
    }
    .catalog-btn{
        width: 200px;
        font-size: 20px;
    }
    .catalog__list__item a{
        font-size: 20px;
    }
}
@media(max-width:500px){
    .logo__text{
        font-size: 18px;
    }
    .search__form{
        width: 130px;
    }
    .search__place{
        width: 130px;
    }
    .header__search{
        width: 60px;
    }
    .slider__wrap{
        width: 100% !important;
    }
    .modal__catalog{
        width: 82% !important;
    }
    .header__auth{
        width: 25%;
    }
    .catalog-btn{
        width: 200px;
        font-size: 20px;
    }
    .catalog__list__item a{
        font-size: 20px;
    }
}
@media(max-width:425px){
    .logo__text{
        font-size: 18px;
    }
    .search__form{
        width: 130px;
    }
    .search__place{
        width: 130px;
    }
    .header__search{
        width: 60px;
    }
    .slider__wrap{
        width: 100% !important;
    }
    .modal__catalog{
        width: 82% !important;
    }
    .header__auth{
        width: 25%;
    }
    .catalog-btn{
        width: 120px;
        font-size: 16px;
    }
    .catalog__list__item a{
        font-size: 16px;
    }
}