@font-face {
    font-family: "Heavitas";
    src:
        url("../fonts/heavitas-webfont.woff2") format("woff2"),
        url("../fonts/heavitas-webfont.woff") format("woff"),
        url("../fonts/Heavitas.ttf") format("ttf");
    font-display: swap;
}

:root {
    --white: #fff;
    --rc-blue-bright: rgba(19, 106, 236, 1);
    --rc-blue-bright-hover: rgba(16, 88, 195, 1);
    --rc-blue-dark: rgba(16, 33, 58, 1);
    --rc-blue-light: rgba(76, 150, 248, 1);
    --rc-gold: rgba(253, 193, 3, 1);
    --rc-gold-hover: hsl(40, 98%, 50%);
}

html {
    height: auto !important;
}

body {
    background-image: linear-gradient(180deg, var(--rc-blue-dark) 0%, rgba(48, 127, 229, 1) 100%);
    background-position: 0 0;
    background-repeat: no-repeat;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    top: 0 !important;
}

body::after {
    background-image: linear-gradient(0deg, rgba(17, 36, 63, 1) 0%, rgba(49, 65, 89, 0.59) 65%, rgba(96, 108, 126, 0) 100%);
    background-position: bottom left;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 1627px;
    left: 0;
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

/* Components */
.btn-outline {
    border: 2px solid var(--rc-gold);
    border-radius: 0;
    color: var(--rc-gold);
    font-size: 14px;
    font-weight: 700;
    transition: all ease-in-out .4s;
}

@media screen and (min-width: 768px) {
    .btn-outline {
        font-size: 16px;
    }
}

.btn-outline:hover,
.btn-outline:focus {
    background-color: var(--rc-gold);
    border-color: var(--rc-gold);
    color: var(--rc-blue-dark);
}

/* HEADER */
.header {
    border-bottom: 2px solid var(--rc-gold);
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .header {
        margin-bottom: 32px;
    }
}

.header::before {
    background-color: rgba(15, 60, 121, 1);
    content: "";
    display: block;
    height: 100%;
    left: 0;
    mix-blend-mode: multiply;
    opacity: .3;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.header_publishers {
    margin-bottom: 0;
}

.header-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    .header-content {
        flex-direction: row;
    }
}

.header-title {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    font-weight: 700;
}

/* LOGO */
.logo {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 260px;
}

@media screen and (min-width: 375px) {
    .logo {
        width: auto;
    }
}

@media screen and (min-width: 768px) {
    .logo {
        justify-content: start;
    }
}

/* NAV */
.nav {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media screen and (min-width: 768px) {
    .nav {
        justify-content: center;
        flex-direction: row;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.nav-container {
    flex-grow: 0;
}

.nav-link {
    color: hsl(220 10% 59%);
    font-size: 18px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--white);
}

.nav-link_active {
    color: var(--white);
}

/* HERO */
.hero {
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 160px;
    }
}

@media screen and (min-width: 768px) {
    .hero_about:before {
        background-image: url(../img/bg-games-display.webp);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: contain;
        content: "";
        display: block;
        height: 100%;
        left: 0;
        mix-blend-mode: luminosity;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }
}

.hero_about {
    padding-top: 0;
}

.hero_earn {
    padding-bottom: 0;
    padding-top: 40px;
}

@media screen and (min-width: 768px) {
    .hero_earn {
        padding-top: 0;
    }
}

@media screen and (min-width: 992px) {
    .hero_earn {
        padding-top: 80px;
    }
}

.hero_publishers {
    background-color: var(--rc-gold);
    color: var(--rc-blue-dark);
    padding-top: 24px;
    padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .hero_publishers {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-content_about {
    height: auto;
    padding-top: 40px;
}

.hero-title {
    font-family: Heavitas, Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-title {
        font-size: 72px;
        margin-bottom: 32px;
    }

    .hero-title_earn {
        font-size: 64px;
        margin-bottom: 32px;
    }
}

.hero-title_publishers {
    margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
    .hero-title_publishers {
        margin-bottom: 24px;
    }
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .hero-subtitle {
        font-size: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-subtitle {
        font-size: 48px;
    }
}

.hero-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .hero-text {
        font-size: 24px;
        line-height: 2;
        margin-bottom: 48px;
    }
}

.hero-text_about {
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .hero-text_about {
        margin-bottom: 24px;
    }
}

.hero-text_publishers {
    margin-bottom: 24px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.hero-btn {
    /* animation: glowing 5s infinite; */
    background-color: var(--rc-gold);
    border-radius: 24px;
    color: var(--rc-blue-dark);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 8px 16px;
    text-decoration: none;
    width: 50%;
    max-width: 440px;
}

.hero-btn:hover,
.hero-btn:focus {
    background-color: var(--rc-gold-hover);
    color: var(--rc-blue-dark);
}

@media screen and (min-width: 768px) {
    .hero-btn {
        border-radius: 44px;
        font-size: 24px;
        padding: 16px 24px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-btn {
        font-size: 28px;
        padding: 16px 64px;
    }
}

.hero-btn_publishers {
    background-color: var(--rc-blue-bright);
    border-radius: 0;
    color: var(--white);
    display: inline;
    margin-bottom: 12px;
    max-width: unset;
    padding: 16px;
    width: auto;
}

.hero-btn_publishers:hover,
.hero-btn_publishers:focus {
    background-color: var(--rc-blue-bright-hover);
    color: var(--white);
}

@media screen and (min-width: 768px) {
    .hero-btn_publishers {
        margin-bottom: 24px;
        padding: 32px;
    }
}

.hero-btntext {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

@media screen and (min-width: 768px) {
    .hero-btntext {
        font-size: 26px;
    }
}

@media screen and (min-width: 1200px) {
    .hero-btntext {
        font-size: 32px;
    }
}

.hero-media {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
}

/* Founder */
.founder {
    margin-bottom: 40px;
}

@media screen and (min-width: 1200px) {
    .founder {
        margin-bottom: 160px;
    }
}

.founder-title {
    font-family: Heavitas, Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 768px) {
    .founder-title {
        font-size: 48px;
    }
}

@media screen and (min-width: 1200px) {
    .founder-title {
        font-size: 72px;
        margin-bottom: 32px;
    }

    .founder-title_earn {
        font-size: 64px;
        margin-bottom: 32px;
    }
}

.founder-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .founder-text {
        font-size: 24px;
        line-height: 2;
        margin-bottom: 48px;
    }
}

/* Video */
.video {
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (min-width: 1200px) {
    .video {
        margin-bottom: 160px;
    }
}

.video_bg {
    margin-bottom: 0;
    padding-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .video_bg {
        background-image: url(../img/bg-video.webp);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center 120px;
        margin-bottom: 0;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (min-width: 1400px) {
    .video_bg {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}

@media screen and (min-width: 768px) {
    .video_earn {
        background-image: url(../img/bg-earn.webp);
    }
}

@media screen and (min-width: 768px) {
    .video_sell {
        background-image: url(../img/bg-sell.webp);
    }
}

.video_publishers {
    background-position: center center;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .video_publishers {
        padding-top: 200px;
        padding-bottom: 200px;
    }
}

@media screen and (min-width: 1400px) {
    .video_publishers {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.video-title {
    color: var(--white);
    font-family: Heavitas, Arial, Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .video-title {
        margin-bottom: 48px;
    }
}

@media screen and (min-width: 1200px) {
    .video-title {
        font-size: 64px;
    }
}

.video-media {
    border: 5px solid var(--rc-blue-light);
    max-width: 1042px;
    width: 100%;
}

.video-swap {
    max-width: 100%;
    height: auto;
}

.img-replacements {
    margin-bottom: 24px;
}

.hero-video_publishers {
    align-items: center;
    max-width: 300px;
}

@media screen and (min-width: 992px) {
    .hero-video_publishers {
        max-width: 100%;
    }
}

/* About */
.about {
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (min-width: 1200px) {
    .about {
        margin-bottom: 160px;
    }
}

.about-media {
    margin-bottom: 24px;
}

@media screen and (min-width: 1200px) {
    .about-media {
        margin-bottom: 32px;
    }
}

.about-title {
    color: var(--rc-gold);
    font-family: Heavitas, Arial, Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1;
}

@media screen and (min-width: 1200px) {
    .about-title {
        font-size: 65px;
    }
}

.about-title_alt {
    color: var(--white);
    margin-bottom: 64px;
}

.about-title_small {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

@media screen and (min-width: 1200px) {
    .about-title_small {
        font-size: 40px;
        margin-bottom: 48px;
    }
}

.about-text {
    font-size: 18px;
}

@media screen and (min-width: 1200px) {
    .about-text {
        font-size: 24px;
    }
}

/* Text */
.text {
    margin-bottom: 40px;
}

@media screen and (min-width: 1200px) {
    .text {
        margin-bottom: 160px;
    }
}

.text-title {
    font-family: Heavitas, Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 768px) {
    .text-title {
        font-size: 48px;
    }
}

@media screen and (min-width: 1200px) {
    .text-title {
        font-size: 72px;
        margin-bottom: 32px;
    }
}

.text-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .text-text {
        font-size: 24px;
        line-height: 2;
        margin-bottom: 48px;
    }
}

/* Content */
.content {
    margin-bottom: 40px;
}

@media screen and (min-width: 1200px) {
    .content {
        margin-bottom: 160px;
    }
}

.content_publishers {
    background-color: var(--white);
    color: var(--rc-blue-dark);
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content_group {
    margin-bottom: 0;
    padding-top: 60px;
}

.content_sm {
    margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
    .content_sm {
        margin-bottom: 104px;
    }
}

.content-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.content-title {
    font-family: Heavitas, Arial, Helvetica, sans-serif;
    font-size: 32px;
    margin-bottom: 24px;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 768px) {
    .content-title {
        font-size: 48px;
    }
}

@media screen and (min-width: 1200px) {
    .content-title {
        font-size: 72px;
        margin-bottom: 32px;
    }
}

.content-title_alt {
    color: var(--rc-gold);
}

.content-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .content-text {
        font-size: 24px;
        line-height: 2;
        margin-bottom: 48px;
    }
}

.content-media {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
}

.content-link_alt {
    color: var(--rc-gold);
}

.content-link_alt:hover,
.content-link_alt:focus {
    color: var(--rc-gold-hover);
}

/* Publishers */
.publishers {
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (min-width: 1200px) {
    .publishers {
        margin-bottom: 144px;
    }
}

.publishers-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
    .publishers-title {
        margin-bottom: 64px;
    }
}

@media screen and (min-width: 1200px) {
    .publishers-title {
        font-size: 42px;
    }
}

.publishers-logo {
    margin-bottom: 24px;
}

/* Partner */
.partner {
    margin-bottom: 80px;
}

@media screen and (min-width: 1200px) {
    .partner {
        margin-bottom: 128px;
    }
}

.partner-img {
    margin-bottom: 32px;
}

.partner-link {
    color: var(--rc-gold);
}

.partner-text {
    font-size: 18px;
}

@media screen and (min-width: 1200px) {
    .partner-text {
        font-size: 30px;
    }
}

/* Press */
@media screen and (min-width: 768px) {
    .press {
        margin-bottom: 160px;
    }
}

.press-container {
    background-color: #08407a;
    padding: 32px;
}

.press-media {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 60px;
    margin-bottom: 24px;
}

.press-img {
    max-height: 60px;
    width: auto;
}

.press-title {
    color: var(--rc-gold);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.press-link {
    color: var(--rc-gold);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.press-link:hover,
.press-link:focus {
    color: var(--rc-gold-hover);
}

/* Footer */
.footer {
    background-color: var(--rc-gold);
    color: var(--rc-blue-dark);
    padding: 32px 0;
    text-align: center;
}

.footer-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 48px;
    overflow-wrap: anywhere;
}

@media screen and (min-width: 1200px) {
    .footer-title {
        font-size: 72px;
    }
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-evenly;
    list-style-type: none;
    margin-bottom: 64px;
    padding: 0;
}

.footer-img {
    height: 48px;
    width: 48px;
}

@media screen and (min-width: 1200px) {
    .footer-img {
        height: 64px;
        width: 64px;
    }
}

.footer-copy {
    margin-bottom: 0;
}

@keyframes glowing {
    0% { box-shadow: 0 0 -10px #f8d942; }
    40% { box-shadow: 0 0 20px #f8d942; }
    60% { box-shadow: 0 0 20px #f8d942; }
    100% { box-shadow: 0 0 -10px #f8d942; }
}

/* Google translate */
body > .skiptranslate {
    display: none;
    height: 0;
}

.language {
    display: flex;
    height: 39px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: -30px;
    width: 149px;
}

@media screen and (min-width: 992px) {
    .language {
        position: static;
    }
}

/* @media screen and (min-width: 768px) {
    .language {
        justify-content: start;
    }
} */

@media screen and (min-width: 768px) {
    .language {
        justify-content: end;
    }
}

.language .goog-te-combo {
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: 6px 8px;
}

.language .goog-logo-link {
    display: none;
}

#goog-gt-tt {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* EARN */
.earn-img {
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    max-width: 280px;
}

@media screen and (min-width: 576px) {
    .earn-img {
        max-width: 100%;
    }
}

@media screen and (min-width: 992px) {
    .earn-img {
        margin-bottom: 0;
    }
}

.earn-img_hero {
    max-width: 200px;
}

@media screen and (min-width: 992px) {
    .earn-img_hero {
        max-width: 100%;
    }
}

.sell-img {
    margin-right: auto;
    margin-bottom: 24px;
    margin-left: auto;
    max-width: 200px;
}

@media screen and (min-width: 992px) {
    .sell-img {
        margin-bottom: 0;
        max-width: 100%;
    }
}