@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/rimouski');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /*font-family: "Roboto", sans-serif;*/
}

:root {
    --theme-color-grey: #00000033;
    --theme-color-red: #F1303A;
    --theme-color-blue: #34437A;
    --body-text-color: #667085;
    --header-color: #262626;

    --swiper-navigation-size: 16px;
    --swiper-theme-color: #5B5B5B;
    /* --swiper-scrollbar-top: 0; */
    /* --swiper-scrollbar-bottom: -30px;
    --swiper-scrollbar-left: 50px;
    --swiper-scrollbar-right: 50px; */
}

ul {
    list-style: none;
    padding: 0
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F7F7F8;
    color: var(--body-text-color);
     font-family: 'Rimouski', sans-serif;
}

body>*:not(aside) {
    padding-left: 70px;
    padding-right: 70px;
}

@media (min-width: 576px) and (max-width: 768px) {
    body>*:not(aside) {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 576px) {
    body>*:not(aside) {
        padding-left: 20px;
        padding-right: 20px;
    }
}