* {
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 14px;
}

/* container */

.container {
    width: 1280px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .container {
        width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

@media (max-width: 575px) {
    .container {
        width: 94%;
    }
}

html {
    width: 100%;
    height: 100%;
}

body {
    background: #13212d;
}

/* header */

.header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.header_auth a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #dafe31;
    border-radius: 20px 0 20px 0;
    color: #000;
    text-decoration: none;
    border: 2px solid transparent;
    padding: 0 30px;
    font-weight: 700;
    height: 40px;
    font-size: 14px;
    margin-left: 10px;
    text-transform: uppercase;
}

.header_auth a:last-child {
    background: transparent;
    border-color: #735cfc;
    color: #fff;
}

@media (max-width: 370px) {
    .header_auth a:last-child {
        display: none;
    }
}

/* promo */

/* main table */

/* content */

.content section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 16px;
    background: #151a22;
}

.content h2 {
    font-size: 28px;
    line-height: 1.3;
    color: #64b8fb;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 24px;
}

.content img {
    width: 100%;
    min-width: 100%;
    height: auto;
}

.content p {
    line-height: 1.4;
    margin-bottom: 15px;
}

.content ul li::marker,
.content ol li::marker {
    color: #ffb129;
}

main h1 {
    margin: 30px 0;
    text-align: center;
    color: #dafe31;
    font-size: 20px;
}

.header_wrapper span {
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

@media (max-width: 500px) {
    .header_auth a:last-child {
        display: none;
    }
}

@media (max-width: 375px) {
    .banner_wrapper .bottom-part img {
        width: 250px;
        height: 250px;
    }
    .banner_wrapper .bottom-part p {
        font-size: 12px;
    }
}

/* footer */

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

footer small {
    margin: 0;
    padding: 0 0 20px;
}

.banner_wrapper {
    width: 400px;
    margin: 40px auto;
}

.banner_wrapper .bottom-part {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-top: #e2e6e7;
    background: #151a22;
    min-height: 200px;
    border-radius: 15px;
}

.banner_wrapper .bottom-part img {
    margin-top: 25px;
}

.bottom-part .link {
    display: inline-block;
    padding: 14px 20px;
    border-radius: 6px;
    background: #ff7b02;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 15px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.banner_wrapper .bottom-part p {
    margin: 30px 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

@media (max-width: 450px) {
    .banner_wrapper {
        width: calc(100% - 30px);
        margin: 40px 15px;
    }
    .banner_wrapper .bottom-part {
        text-align: center;
        padding: 0 15px;
    }
    .banner_wrapper .bottom-part p {
        line-height: 1.3;
    }
}

.zerkalo-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    height: 50px;
}

.collapse-nav {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: #151a22;
}

.collapse-nav>li {
    margin: 0 1rem;
    overflow: hidden;
}

.collapse-nav>li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.menu-button-container {
    display: flex;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu-toggle {
    display: none;
}

.menu-button, .menu-button::before, .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (min-width: 100px) {
    .menu-button-container {
        display: flex;
    }

    .collapse-nav {
        z-index: 9999;
        position: absolute;
        top: 0;
        margin-top: 60px;
        left: 0;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    #menu-toggle~.collapse-nav li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.collapse-nav li {
        display: flex;
        align-items: center;
        border: 1px solid #222;
        height: 2em;
        padding: 0.5em;
        transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    #menu-toggle:checked~.collapse-nav li:last-child {
        border: 0;
    }

    .collapse-nav>li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: white;
    }
}

@media (max-width: 500px) {
    .header_auth a {
        padding: 0 20px;
        height: 36px;
    }
}

@media (max-width: 375px) {
    .header_auth a:last-child {
        display: none;
    }
}