html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    box-sizing: border-box;
}

/*@font-face {
    font-family: 'Jost-Regular';
    src: url(./assets/fonts/Jost-Regular.ttf);
}*/

body {
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Segoe UI, Tahoma, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Open Sans, sans-serif;
    line-height: 27px;
    color: #fff;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
}

ul ul, ol ul {
    list-style-type: circle;
    list-style-position: inside;
    margin-left: 15px;
}

ol ol, ul ol {
    list-style-type: lower-latin;
    list-style-position: inside;
    margin-left: 15px;
}

a {
    text-decoration: none;
}

h1 {
    display: block;
    margin: 0 0 2rem;
    font-size: 2.4em;
    font-weight: bold;
    line-height: 45px;
}

h2 {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
}

h3 {
    display: block;
    font-size: 1.17em;
    font-weight: bold;
}

h4 {
    display: block;
    font-weight: bold;
}

p {
    margin: 0 0 1rem;

    font-size: 15px;
}

button {
    cursor: pointer;
}

.container {
    display: block;
    max-width: 1340px;
    padding: 0 16px;
    margin: 0 auto;
}

.flex {
    display: flex;
    /*justify-content: space-between;
    align-items: center;*/
}

.gap {
    gap: 20px;
}

.btn {
    padding: 0 11px;
    height: 35px;

    font-size: 11px;
    font-weight: 700;

    background-color: transparent;
    border: 1px solid #FFDF1B;
    border-radius: 18px;

    transition: 0.3s all ease-in;
}

.btn-main {
    color: #ffdf1b;

    background-color: transparent;
    border-color: #FFDF1B;

    &:hover {
        color: #fff;
        border-color: #fff;
    }
}

.btn-sec {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);

    &:hover {
        color: #fff;
        border-color: #fff;
    }
}

@media (min-width: 767px) {
    p {
        font-size: 19px;
        line-height: 1.5;
    }
}

@media (min-width: 860px) {
    /*.container {
        padding: 10px 15px;
    }*/
}

/* HEADER */

.header {
    position: fixed;
    width: 100%;
    /*--hm-background-desktop: linear-gradient(90deg, var(--color-grey28), #005440 var(--hm-left-right-void), #005440 calc(100vw - var(--hm-left-right-void)), var(--color-grey28));*/
    padding: 0;

    background-image: linear-gradient(90deg, #282828, #005440 calc((100% - 1450px) / 2), #005440 calc(100vw - calc((100% - 1450px) / 2)), #282828);
    z-index: 100;
}

.header__link {
    display: block;
}

.header__logo {

}

.header__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0 55px;

    list-style: none;
}

.header__menu a {
    display: block;
    padding: 21px 0 22px;

    color: #fff;
    font-size: 13px;
    font-weight: 700;

    &:hover {
        color: #28ffbb;
    }
}

.header__menu li:first-of-type a {
    position: relative;
}

.header__menu li:first-of-type a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    height: 2px;
    width: 100%;
    background-color: #28ffbb;
}

.header__nav {
    list-style: none;
}

.header__nav li button {
    color: #fff;
    font-size: 1rem;

    background-color: transparent;
    border: none;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu div {
    width: 30px;
    height: 4px;
    background-color: #ffe418;
    margin: 3px 0;
    border-radius: 5px;
}

@media (max-width: 860px) {
    .nav {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #1A2C38;
        flex-direction: column;
        justify-content: start;
        padding: 16px 16px;
        transition: right 0.3s ease;
        border-left: 2px solid #203747;
        align-items: start;
    }

    .nav.active {
        right: 0;
    }

    .nav li {
        text-align: center;
        justify-content: start;
    }

    .header__menu {
        display: block;
        width: 100%;
    }

    .header__menu li a {
        padding: 10px 0;
        text-align: center;
    }

    .header__menu li:first-of-type a {
        position: static;
    }

    .mobile-menu {
        display: flex;
    }

    .header__btn .btn-main {
        display: none;
    }
}

.main {
    padding: 70px 0 0;
    background-color: #282828;
}

.bonuses {

}

.bonuses button p,
.bonuses button span {
    pointer-events: none;
}

.bonuses__list {
    display: flex;
    padding: 30px 0 8px;
    gap: 8px;

    list-style: none;
    overflow-x: scroll;
}

.bonus__btn {
    position: relative;

    display: flex;
    padding: 10px 10px 7px;
    flex-direction: column;
    width: 340px;
    height: 200px;

    text-align: left;

    background-position: 100% 0;
    background-size: auto 200px;
    background-repeat: no-repeat;

    border: 1px solid #28ffbb;
    border-radius: 4px;

    transition: 0.2s all ease-out;

    &:hover {
        filter: brightness(1.2);
    }
}

.bonus__header {
    display: block;
    margin: 0 10px 7px 0;

    color: #28ffbb;
    font-size: 14px;
    font-weight: bold;
    line-height: 16px;
    text-shadow: 0 0 5px rgba(21,60,52,.7);
}
.bonus__title {
    display: block;
    max-width: 202px;

    word-wrap: break-word;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;

    color: #fff;
    font-size: 26px;
    font-weight: bold;
    font-style: oblique;
    line-height: 26px;
    text-shadow: 0 0 5px rgba(21,60,52,.7);

    overflow: hidden;
}
.bonus__text {
    position: absolute;
    bottom: 0;

    margin: 0 10px 7px 0;
    max-height: 39px;

    word-wrap: break-word;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;

    color: #fff;
    font-size: 10px;
    font-style: oblique;
    line-height: 13px;

    opacity: .6;
    vertical-align: bottom;
    overflow: hidden;
}

.sports {

}

.sports span,
.sports img {
    pointer-events: none;
}

.sports__list {
    display: flex;
    gap: 16px;
    padding: 30px 0 5px;

    list-style: none;
    overflow-x: scroll;
}

.sport__btn {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: transparent;
    border: none;
}

.sport__img {
    margin: 0 0 5px;
    width: 25px;
    height: 25px;
}

.sport__header {
    color: #fff;
    font-size: 11px;
    line-height: 17px;
    font-weight: 700;
    text-align: center;
}

.content {
    padding: 50px 0 30px;
    background-color: hsla(0, 0%, 100%, .07);
}

.content__header {
    margin: 0 0 20px;

    color: #28ffbb;
    font-size: 23px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
}

.content__image img {
    display: block;
    margin: 0 0 16px;
    width: 100%;
    object-fit: cover;
}

.content__text p,
.content__text a {
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
}

.content__text a {
    color: #28ffbb;
}

.content__text a:hover {
    color: #ffdf1b;
}



.bonuses,
.sports {
    scrollbar-width: thin;
    scrollbar-color: #28ffbb #282828;
}

.bonuses::-webkit-scrollbar,
.sports::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.bonuses::-webkit-scrollbar-track,
.sports::-webkit-scrollbar-track {
    background: #282828;
    border-radius: 4px;
}

.bonuses::-webkit-scrollbar-thumb,
.sports::-webkit-scrollbar-thumb {
    background-color: #28ffbb;
    border-radius: 4px;
    border: 1px solid #282828;
}

.bonuses::-webkit-scrollbar-thumb:hover,
.sports::-webkit-scrollbar-thumb:hover {
    background-color: #ffdf1b;
}


.footer {
    padding-top: 20px;
    background-color: #282828;
}

.footer__top {
    display: flex;
    margin: 0 0 2rem;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.footer__socials {
    display: flex;
    width: 176px;
    flex-wrap: wrap;
    justify-content: end;
    gap: 8px;
    /*gap: 1rem;*/

    list-style: none;
}

.footer__socials li {
    display: flex;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.footer .social__btn {
    background-color: transparent;
    border: none;
}

.footer .social__btn svg {
    display: block;
    width: 16px;
    height: 16px;

    fill: #fff;
}

.footer__menu {
    display: flex;
    margin: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__menu-column {
    width: 100%;

    text-align: center;
}

.footer__menu-column ul {
    list-style: none;
}

.footer__menu-column button {
    padding: 0;

    color: #999999;
    background-color: transparent;
    border: none;

    &:hover {
        color: #ffdf1b;
    }
}

.footer__payments {
    display: flex;
    margin: 0 0 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    gap: 1rem;
    gap: 2rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
}

.footer__nav {
    list-style: none;
}

.footer__bottom .footer__nav {
    display: flex;
    gap: 1rem;
}

.footer__nav li {

}

.footer__nav button {
    padding: 0;

    color: #999999;
    background-color: transparent;
    border: none;

    &:hover {
        color: #ffdf1b;
    }
}

.footer__text {
    text-align: center;
}

@media (min-width: 500px) {
    .footer__menu-column {
        width: calc(33% - 1rem * 2 / 3);
    }

    .footer__socials {
        width: 100%;
        justify-content: end;
    }
}

@media (min-width: 767px) {
    /*.footer__menu-column {
        width: calc(25% - 1rem * 3 / 4);
    }*/
}



