@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,500;1,400;1,500&family=Poppins:wght@400;500;600&display=swap');

* {box-sizing: border-box;}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

body {
    border-top: 8px solid #8ac745;
    font-family: "Noto Sans", sans-serif;
    font-size: 21px;
    line-height: 1.43;
    background: #e2e8eb;
    color: #404040;
}

a {
    color:inherit;
}

.intro {
    background: url('resources/images/header-bg.jpg');
    background-size: cover;
    background-position: top center;
    display:flex;
    flex-direction: column;
    align-items: center;

    padding-top: 60px;
    padding-bottom: 370px;
    text-align:center;
}

.intro img {
    margin-top: 60px;
}
.intro h1 {
    font-size: 113px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-shadow: 2px 2px rgba(2,43,58,0.50);
    color: white;
    line-height: 1.2;
}

.container {
    padding-left: 140px;
    padding-right: 140px;

    max-width: 1930px;
    margin-left: auto;
    margin-right: auto;
}


.body {
    background: white;
    border-radius: 20px;

    padding-left: 140px;
    padding-right: 140px;
    padding-top: 60px;
    margin-top: -330px;
}
.body:after {
    content: "";
    display:block;
    height: 1px;
}
.body .intro-text {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 52px;
    color: #18435a;
    text-align:center;
    margin-bottom: 50px;
}


.button {
    background: #ca4427;
    line-height:36px;
    display:inline-block;
    color: white;
    font-family: "poppins", sans-serif;
    font-size: 31px;
    font-weight: 900;
    padding: 22px 60px;
    text-align:center;
    border-radius: 40px;
    text-decoration:none;
    transition: background 0.2s;
    white-space:nowrap;
}
.button:hover {
    background: #801f0b;
}
.button i {
    vertical-align:center;
    font-size: 0.8em;
}

.game-cards {
    display:flex;
    margin-left: -15px;
    margin-right: -15px;
}

.game-card {
    margin-left:15px;
    margin-right: 15px;
}
.game-card a {
    text-decoration: none;
    display:block;
}

.game-card__thumbnail {
    border-radius: 20px;
    overflow:hidden;
}
.game-card__thumbnail img {
    display:block;
    width:100%;
    height:auto;
}

.game-card__text {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:0 68px;
    text-align:center;
}

.game-card .button {
    order:-1;
    width: 190px;
    padding-left:0;
    padding-right:0;
    transition: width 0.2s, background 0.2s;
    margin-top: -40px;
    margin-bottom: 30px;
    pointer-events: none;
}
.game-card>a:hover .button {
    width: 100%;
    background: #801f0b;
}

.game-card__title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: #18435a;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 -58px;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.game-card>a:hover .game-card__title {
    color: #801f0b;
}

.game-card__subtitle {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 32px;
    color: #18435a;
    margin-bottom: 16px;
}

.game-card__guide {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 28px;
    text-decoration: none;
    color: #ca4427;
    margin-top: 22px;
    padding:0 68px;
    margin-bottom: 70px;
    text-align:center;
}
.game-card__guide:hover {
    color: #801f0b;
}
.game-card__guide:hover .game-card__guide-text {
    text-decoration: underline;
}

.game-card__guide i {
    font-size: 0.7em;
    vertical-align: center;
}


.assistance {
    position:relative;
    z-index:1;
    border-radius: 20px;
    margin-top: 40px;
    background: blue;
    background: url('resources/images/CTA-bg.jpg');
    background-position: top right;
    color: white;
    text-align:center;
    padding: 70px 140px;
    background-repeat: no-repeat;
    background-size: cover;
}

.assistance h2 {
    font-size: 67px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform:uppercase;
}

.assistance p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin-bottom: 40px;
}


footer {
    background: #252525;
    color: white;
    padding-top: 250px;
    margin-top: -140px;
}


.footer {
    display:flex;
    flex-wrap:nowrap;
    flex:1;
    padding-bottom: 80px;
}
.footer-logo {
    display:block;
    margin-left:auto;
    margin-bottom: 75px;
}
.footer__left {
    width:53.7%;
}


.footer__info {
    display:flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    margin-top: 100px;
    margin-right: 60px;
}
.footer__info a {
    font-family: "Noto Sans", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-decoration:none;
    transition: color 0.2s;
    margin-right: 40px;
    margin-bottom: 30px;
    display:block;
}
.footer__info a:hover {
    color: #8ac745;
}
.footer__info a:hover span {
    text-decoration: underline;
}


.footer__copyright {
    font-size: 16px;
    text-align:right;
}
.footer__right {
    margin-left:auto;
}
.footer__socialmedia {
    margin-left:auto;
    display:flex;
    justify-content: space-between;

}
.footer__socialmedia a {
    width:75px;
    height:75px;
    display:flex;
    justify-content: center;
    align-items:center;
    color: white;
    background: #171717;
    transition: 0.2s background;
    text-decoration: none;
    border-radius: 100%;
}
.footer__socialmedia a:hover {
    background: #8ac745;
}
footer h2 {
    font-size: 36px;
    font-weight:500;
    line-height:44px;
    margin-bottom:20px;
    /*max-width: 600px;*/
}

.footer-mobile {
    display:none;
}


@media screen and (max-width: 1920px) {

    body {
        font-size: 18px;
    }

    .intro {
        padding-top: 0;
        padding-bottom: 300px;
    }

    .intro h1 {
        font-size: 72px;
        line-height: 1.2;
    }

    .intro img {
        width: 332px;
    }

    .container {
        padding-left: 65px;
        padding-right: 65px;
    }


    .body {
        padding-left: 65px;
        padding-right: 65px;
        padding-top: 60px;
        margin-top: -260px;
        border-radius: 10px;
    }
    .body .intro-text {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .button {
        font-size: 24px;
        padding: 13px 60px;
    }
    /*.button {*/
    /*    background: #ca4427;*/
    /*    line-height:36px;*/
    /*    display:inline-block;*/
    /*    color: white;*/
    /*    font-family: "poppins", sans-serif;*/
    /*    font-size: 31px;*/
    /*    font-weight: 900;*/
    /*    padding: 22px 60px;*/
    /*    text-align:center;*/
    /*    border-radius: 40px;*/
    /*    text-decoration:none;*/
    /*    transition: background 0.2s;*/
    /*}*/

    .game-card__thumbnail {
        border-radius: 10px;
    }
    .game-card__title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .game-card__subtitle {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .game-card__guide {
        font-size: 21px;
    }


    .assistance {
        border-radius: 10px;
    }
    .assistance h2 {
        font-size: 54px;
        margin-bottom: 10px;
    }

    footer {
        padding-top: 200px;
    }

    .footer__info {
        flex-wrap: wrap;
        /*justify-content: flex-start;*/
        margin-top: 60px;
    }
    .footer__info a {
        margin-right: 40px;
        font-size: 18px;
    }
    .footer-logo {
        width:320px;
    }
    .footer__socialmedia a {
        width: 60px;
        height: 60px;
    }
    .footer__copyright {
        text-align:right;
        font-size: 12px;
    }
    footer h2 {
        font-size: 24px;
        line-height:40px;
        margin-bottom: 20px;
        max-width:500px;
    }

}


@media screen and (max-width: 1000px) {

    body {
        font-size: 18px;
    }

    .intro {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 150px;
    }

    .intro img {
        margin-top: 0;
        width: 262px;
    }
    .intro h1 {
        font-size: 60px;
    }

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }


    .body {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;
        margin-top: -110px;
    }
    .body .intro-text {
        font-size: 34px;
        margin-bottom: 30px;
    }


    .button {
        line-height:24px;
        font-size: 20px;
        padding: 10px 40px;
    }

    .game-cards {
        display:block;
        margin:0;
    }

    .game-card {
        margin:0 auto;
        max-width: 500px;
    }

    .game-card__text {
        padding:0 30px;
    }

    .game-card .button {
        margin-top: -23px;
        margin-bottom: 30px;
    }
    .game-card .button:hover {
        width:190px;
    }

    .game-card__title {
        font-size: 40px;
    }
    .game-card__subtitle {
        font-size: 25px;
        margin-bottom: 16px;
    }

    .game-card__guide {
        font-size: 25px;
        padding:0 30px;
        margin-bottom: 40px;
    }
    .assistance {
        padding: 30px 30px;
        margin-top: 30px;
    }

    .assistance h2 {
        font-size: 40px;
        margin-bottom: 13px;
    }

    .assistance p {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        margin-bottom: 30px;
    }

    .footer {
        display:none;
    }
    .footer-mobile {
        display:flex;
        flex-direction: column;
        align-items: center;
        padding: 0 30px 80px 0;
    }

    footer h2 {
        font-size: 28px;
        line-height: 1.2;
        max-width:none;
    }

    footer {
        padding-top: 150px;
        margin-top: -120px;
    }

    .footer-logo {
        margin-left:auto;
        margin-right:auto;
        margin-bottom: 40px;
        max-width:90%;
        width: 225px;
    }
    .footer-mobile__text {
        padding: 0 30px;
        margin-bottom: 40px;
        text-align:center;
    }
    .footer-mobile__info {
        padding: 0 30px;
        display:flex;
        flex-wrap:wrap;
        width:100%;
        justify-content: center;
        margin-bottom: 40px;
    }
    .footer-mobile__info a {
        margin: 0 15px;
    }

    .footer__socialmedia {
        display:flex;
        margin: 0 auto;
    }
    .footer__socialmedia a {
        margin: 0 10px;
        margin-bottom: 40px;
    }
    .footer__copyright {
        width:auto;
        margin: 0;
    }
}


@media screen and (max-width: 600px) {

    body {
        font-size: 16px;
    }

    .intro h1 {
        font-size: 48px;
    }

    .body .intro-text {
        font-size: 24px;
        margin-bottom: 20px;
    }


    .button {
        font-size: 18px;
    }

    .game-card__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .game-card__subtitle {
        font-size: 21px;
        margin-bottom: 11px;
    }

    .game-card__guide {
        font-size: 21px;
    }

    .assistance h2 {
        font-size: 36px;
        line-height: 38px;
        margin-bottom: 13px;
    }

    .footer-mobile {
    }

    footer h2 {
        font-size: 20px;
        line-height: 1.2;
    }

    .footer-logo {
        margin-left:auto;
        margin-right:auto;
        margin-bottom: 40px;
        max-width:90%;
        width: 225px;
    }
    .footer-mobile__text {
        padding: 0 30px;
        margin-bottom: 40px;
        text-align:center;
    }
    .footer-mobile__info {
        padding: 0 30px;
        display:flex;
        width:100%;
        justify-content: center;
        margin-bottom: 40px;
    }
    .footer-mobile__info a {
        margin: 0 15px;
        margin-bottom: 20px;
    }

    .footer__socialmedia {
        display:flex;
        margin: 0 auto;
    }
    .footer__socialmedia a {
        margin: 0 10px;
        margin-bottom: 40px;
    }
    .footer__copyright {
        width:auto;
        margin: 0;
    }
}