@import url(./static/styles/header.css);
@import url(./static/styles/about.css);
@import url(./static/styles/regulations.css);
@import url(./static/styles/contacts.css);
@import url(./static/styles/scroll.css);
@import url(./static/styles/partners.css);
@import url(./static/styles/cookies.css);

@font-face {
    font-display: swap;
    font-family: "Gilroy";
    src: url('./static/assets/fonts/Gilroy-Regular.eot');
    src: url('./static/assets/fonts/Gilroy-Regular.woff') format("woff"),
        url('./static/assets/fonts/Gilroy-Regular.woff2') format("woff2");
    font-weight: 400
}

* {
    margin: 0;
}

h2 {
    font-size: 24px;
}

a:hover {
    background-color: #f4f4f4;
    color: #000;
    border: 5px solid #f4f4f4;
    border-radius: 5px;
    opacity: .9;
}

body {
    font-family: "Gilroy", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    margin: 0;
    height: 100%;
}

section {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.page {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section__title {
    margin-bottom: 20px;
}

@media (min-width: 700px) {
    section {
        padding-left: 50px;
        padding-right: 50px;
        padding-top: 50px;
        padding-bottom: 100px;
    }
}