@import"https://fonts.googleapis.com/css?family=Roboto&display=swap";

body {
    width: 1280px;
    margin: 0 auto;
    font-family: Roboto, sans-serif
}

@media screen and (max-width:1200px) {
    body {
        width: 100%
    }
}

header {
    box-sizing: border-box;
    min-height: 86px;
    padding: 20px 60px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #b2f042
}

@media screen and (max-width:1200px) {
    header {
        padding: 20px 30px;
        min-height: auto
    }
}

@media screen and (max-width:767px) {
    header {
        padding: 20px;
        min-height: 67px
    }
}

footer {
    padding: 71px 60px;
    background: #0b112a
}

@media screen and (max-width:1200px) {
    footer {
        padding: 55px 30px
    }
}

@media screen and (max-width:767px) {
    footer {
        padding: 35px 20px 56px
    }
}

.container {
    padding: 60px
}

@media screen and (max-width:1200px) {
    .container {
        padding: 60px 30px
    }
}

@media screen and (max-width:767px) {
    .container {
        padding: 20px
    }
}

.container div {
    font-size: 18px
}

@media screen and (max-width:767px) {
    .container div {
        font-size: 16px
    }
}

.container ul li {
    font-size: 18px
}

@media screen and (max-width:767px) {
    .container ul li {
        font-size: 16px
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    margin: 0
}

h1 {
    font-size: 60px;
    line-height: 75px
}

@media screen and (max-width:1200px) {
    h1 {
        font-size: 46px
    }
}

@media screen and (max-width:767px) {
    h1 {
        font-size: 32px
    }
}

@media screen and (max-width:576px) {
    h1 {
        font-size: 30px
    }
}

h2 {
    font-size: 40px;
    line-height: 50px
}

@media screen and (max-width:1200px) {
    h2 {
        font-size: 36px;
        line-height: 36px
    }
}

@media screen and (max-width:767px) {
    h2 {
        font-size: 24px;
        line-height: 30px
    }
}

h3 {
    font-size: 24px;
    line-height: 30px
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

a {
    text-decoration: none
}

.slick-list {
    flex-direction: row;
    width: 100%;
    overflow: hidden
}

.slick-track {
    display: flex;
}

.display,
.hide {
    display: none
}

.newsSliderBlock {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.newsSliderBlock__item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 10px;
}
.newsSliderBlock__item img {
    width: 100%;
    height: auto;
}
.newsSliderBlock__item__info {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}
.slick-prev, .slick-next {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.slick-prev:hover, .slick-next:hover {
    background: rgba(0, 0, 0, 0.8);
}