* {
    margin: 0;
    padding: 0;
}

body {
    min-width: 320px;
    background: #000;
    color: #aca9a9;
    font-family: -apple-system, blinkmacsystemfont, roboto, "Helvetica Neue", helvetica, arial, "sans-serif";
}

.header {
    background-color: rgba(3, 23, 23, 0.9);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    margin: 0 auto;
    padding: 15px 0;
    width: calc(100% - 20px);
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-buttons {
    display: flex;
}

.main-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #ff2400;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.main-buttons a:nth-child(1) {
    background: #ff2400;
    margin-right: 10px;
}

.main-buttons a:hover {
    background: #ff2400;
}

.bonuses {
    position: relative;
    width: calc(100% - 20px);
    max-width: 1280px;
    height: 240px;
    margin: 30px auto;
    padding: 40px 20px;
    background: url("../img/bg2.webp") center right repeat;
    background-size: cover;
    border-radius: 3px;
    box-sizing: border-box;
}

.bonuses::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(110deg, rgba(0, 207, 166, 0.2), rgba(0, 207, 166, 0.8));
    border-radius: 3px;
    content: "";
}

.bonuses__content {
    position: relative;
    z-index: 3;
}

.bonuses__title {
    margin-bottom: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 28px;
}

.bonuses__text {
    font-size: 18px;
}

.bonuses__text svg {
    line-height: 1;
    vertical-align: top;
}

.bonuses__copy {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 5px;
    color: #ff2400;
    vertical-align: middle;
    cursor: pointer;
}

.bonuses__button {
    margin-top: 40px;
}

.bonuses__button .button {
    display: inline-block;
    min-width: 250px;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #ff2400;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    background: #ff2400;
}

.bonuses__button .button:hover {
    background: #ff2400;
}

.bonuses__image {
    position: absolute;
    top: -20px;
    right: 10%;
    bottom: 0;
    z-index: 2;
}

.bonuses__image img {
    display: block;
    width: auto;
    height: 100%;
}

.text {
    margin: 30px auto;
    width: calc(100% - 20px);
    max-width: 1280px;
}

.text p {
    margin-bottom: 20px;
}

.text table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.text td {
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0;
}

.text h1,
.text h2,
.text h3 {
    margin-bottom: 20px;
    color: #fff;
}

.text h1 {
    font-size: 32px;
}
.text p {
    line-height: 30px;
    margin-bottom: 20px;
}

.text ul,
.text ol {
    list-style-position: inside;
    margin-bottom: 20px;
    line-height: 40px;
}

.text blockquote {
    font-style: italic;
    margin-bottom: 20px;
    border: 1px dashed #ff2400;
    padding: 20px;
    text-align: center;
}

.text a {
    color: #ff2400;
    text-decoration: none;
}

.text a:hover {
    text-decoration: underline;
}

.text figure {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: #ff2400;
    font-size: 14px;
    margin-bottom: 20px;
}

.text img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

footer {
    display: flex;
    flex-direction: column;
    background: #031717;
}

footer .container {
    margin: 0 auto;
    padding: 15px 0;
    width: calc(100% - 20px);
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    text-align: center;
    max-width: 1000px;
    margin: 10px auto;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.33);
}

@media (max-width: 768px) {
    .text table {
        font-size: 14px;
    }

    .text {
        padding: 0;
        border-radius: 0;
        background: none;
    }

    .advantages {
        flex-direction: column;
    }

    .advantage {
        width: calc(100% - 20px);
        margin-bottom: 10px;
    }

    .header .container,
    .footer .container {
        flex-direction: column;
    }

    .header .container img,
    .footer .container img {
        margin-top: 15px;
    }
}

@media only screen and (min-width: 768px) {
    .bonuses {
        height: 320px;
        padding: 40px 40px 25px;
    }

    .bonuses__title {
        margin-bottom: 20px;
        font-size: 44px;
    }

    .bonuses__button {
        margin-top: 60px;
    }
}