*,
*::after,
*::before {
    box-sizing: border-box;
}

:root {
    --radius: 6px;
    --fontPoppins: "Poppins", Arial, sans-serif;
    --fontRubik: "Rubik", Arial, sans-serif;
    --yellow: #ffcd01;
    --bg: #242423;
}


/* General */

body {
    font-family: var(--fontRubik);
    background-color: #000;
    background-image: url('../img/yellow-bg.png'), url('../img/particles.png');
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1666px;
    margin-left: auto;
    margin-right: auto;
    border-left: 12px solid #333533;
    border-right: 12px solid #333533;
}

.container.bg {
    background-color: var(--bg)
}

.container-inside {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

img {
    max-width: 100%
}

ul,
li {
    list-style-type: none;
    padding: 0;
    margin: 0
}

a {
    text-decoration: none;
    color: inherit
}

.color {
    color: var(--yellow)
}

.button {
    padding: .75em 3em;
    border: 2px solid var(--yellow);
    color: #fff;
    border-radius: var(--radius);
    margin-top: 2em;
    display: inline-block;
}

p {
    color: #e8eddf;
    font-weight: 300;
}

h1,
h2,
h3 {
    line-height: 1.2;
}


/* Header */

header {
    font-family: var(--fontRubik);
}

header .container {
    padding: 4em 0;
    background-image: url('../img/header-bg.png');
    background-size: cover;
    min-height: 925px;
}

header .container-inside {
    display: grid;
    grid-template-columns: auto auto;
    gap: 100px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

header ul {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2em
}

header ul li a {
    padding: .75em 3em;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
}

header .register {
    background: #fff;
    color: #000
}

.login {
    border: 2px solid var(--yellow);
    color: #fff
}

header .info {
    margin-top: 4em;
    max-width: 500px;
}

.info h1 {
    font-family: var(--fontPoppins);
    font-size: 2.75em;
    text-transform: uppercase;
    margin: 0
}


/* second */

.second .container {
    background-color: var(--bg)
}

.second .container {
    height: 682px;
    background-image: url('../img/second-bg.png');
}

.second .container-inside {
    position: relative;
    padding: 6em 0
}

.second .right {
    position: absolute;
    right: 0;
    max-width: 480px;
    text-align: right;
}

.second h2 {
    font-size: 2.5em;
    font-family: var(--fontPoppins);
}


/* third */

.third .container {
    background-color: var(--bg);
    height: 2194px;
    background-image: url('../img/third-bg.png');
    position: relative;
}

.third .container-inside {
    padding: 6em 0
}

.third h2 {
    font-size: 2.5em;
    font-family: var(--fontPoppins);
    text-transform: uppercase;
}

.third .info {
    max-width: 360px;
    position: absolute;
}

.third .info:nth-child(1) {
    left: 55.5%;
    top: 10%
}

.third .info:nth-child(2) {
    left: 70%;
    top: 30%
}

.third .info:nth-child(3) {
    left: 50%;
    top: 57.5%
}

.third .info:nth-child(4) {
    right: 50%;
    top: 76.5%;
    text-align: right;
}

.third img {
    display: none;
}


/* four */

.four .container {
    background-color: var(--bg);
    height: 1147px;
    background-image: url('../img/four-bg.png');
}

.four .content {
    padding-top: 8em;
    text-align: center;
}

.four .content p {
    max-width: 60%;
    margin: 1em auto;
}

.four h2 {
    margin: 0;
    font-size: 2.5em;
    font-family: var(--fontPoppins);
    text-transform: uppercase;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18em;
    row-gap: 4em;
    margin-top: 6em
}

.single-bonus {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2em;
    align-items: flex-end;
}

.single-bonus .title {
    font-weight: 400;
    font-size: 1.25em
}

.single-bonus p {
    color: #525252;
}

.single-bonus .detay {
    display: inline-block;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 1em
}

.single-bonus .image {
    width: 265px;
}

.four .center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.four .button {
    margin-top: 4em;
    display: inline-block;
    text-transform: uppercase;
}


/* footer*/

footer {
    background: url('../img/footer.png');
    height: 1177px;
}

footer .container {
    border-left-color: transparent;
    border-right-color: transparent;
    position: relative;
    padding: 6em 0;
    background: linear-gradient(to bottom, #191918, transparent)
}

footer .container::before {
    content: "";
    position: absolute;
    left: -12px;
    top: 0;
    width: 12px;
    height: 100%;
    background: linear-gradient(to bottom, #333533 10%, transparent 100%);
}

footer .container::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 0;
    width: 12px;
    height: 100%;
    background: linear-gradient(to bottom, #333533 10%, transparent 100%);
}

.container.bg {
    background-color: var(--bg)
}

footer h2 {
    margin: 0;
    font-size: 2.5em;
    font-family: var(--fontPoppins);
    text-transform: uppercase;
    font-weight: 400;
}

footer .content {
    text-align: center;
}

footer .content p {
    max-width: 90%;
    margin: 1em auto
}

footer hr {
    border: none;
    background: 0;
    border-top: 1px dashed #555;
    margin: 3em 0
}

.providers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.providers img {
    margin: .75em
}

footer .logo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1em;
    align-items: center;
    margin-top: 1em
}

.mobile-login {
    display: none;
}

.mobile-login .button {
    width: 100%;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    margin-top: 1em
}

.promo-grid img {
    border-radius: var(--radius);
}