/* ______________________________________________________________________________FONT___________________________________________________________________________*/
@font-face {
    font-family: "UbisoftSans";
    src: url("/font/UbisoftSans-Bold.eot");
    src: url("/font/UbisoftSans-Regular.woff2") format("woff2"), url("/font/UbisoftSans-Regular.woff") format("woff"), url("/font/UbisoftSans-Regular.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "UbisoftSans";
    font-weight: 500;
    src: url("/font/UbisoftSans-Bold.eot");
    src: url("/font/UbisoftSans-Bold.woff2") format("woff2"), url("/font/UbisoftSans-Regular.woff") format("woff"), url("/font/UbisoftSans-Bold.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}

/* ______________________________________________________________________________GENERAL PARAMETERS___________________________________________________________________________*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "UbisoftSans";
    line-height: 140%;
}

main {
    display: flex;
    flex-direction: column;
}

svg {
    width: 0;
    height: 0;
}

:root {
    --dark-blue: #1B1464;
    --red-ketchapp: #D40101;
    --white: #FFFFFF;
    --black: #1C1C1C;
    --grey: #E9ECEF;
    --blue-standard: #146EBE;
    --red-error: #DC3545;
    --green-success: #23933C;
}

/* TITLES AND TEXT  */
h1, h2, h3 {
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 18px;
    color: var(--red-ketchapp);
    font-weight: 500;
}

h3, h4 {
    font-size: 24px;
    margin: 2vh 0;
}

h4 {
    color: var(--dark-blue);
    font-weight: 500;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

    a:hover {
        cursor: pointer;
    }

p {
    font-size: 16px;
}

strong {
    font-weight: 700;
}

.bigScreen {
    display: none !important;
}

pre {
    text-wrap-mode: wrap;
}

/* TITLES AND TEXT */

/* BUTTON */
.button {
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: var(--dark-blue);
    border-radius: 200px;
    color: var(--white);
    text-decoration: none;
    transition: all .2s ease-in-out;
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    font-family: "UbisoftSans";
    border: var(--dark-blue) 2px solid;
}

    .button:hover {
        background-color: var(--white);
        border: var(--dark-blue) 2px solid;
        color: var(--dark-blue);
        cursor: pointer;
    }

.button-white {
    background-color: var(--white);
    color: var(--dark-blue);
    border: var(--white) 2px solid;
}

    .button-white:hover {
        background-color: var(--dark-blue);
        border: var(--white) 2px solid;
        color: var(--white);
    }

.button-white-blue {
    background-color: var(--white);
    border: var(--dark-blue) 2px solid;
    color: var(--dark-blue);
}

    .button-white-blue:hover {
        background-color: var(--dark-blue);
        color: var(--white);
        border: none;
    }

.button-white-border {
    background-color: var(--dark-blue);
    border: var(--white) 2px solid;
    color: var(--white);
}

    .button-white-border:hover {
        background-color: var(--white);
        color: var(--dark-blue);
    }

.sticky-button {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: max-content;
    display: none;
    z-index: 3000000;
}
/* BUTTON */

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

.error-page {
    text-align: center;
    margin: 100px 0 200px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

    .error-page a {
        width: max-content;
        text-align: center;
        margin-top: 16px;
    }

    .error-page h1 {
        font-size: 70px;
    }
/* ______________________________________________________________________________PRIVACY PAGE___________________________________________________________________________*/
.iconsGamesPrivacy {
    background-image: url(/images/games.webp);
    background-position: top center;
    background-repeat: repeat-x;
    height: 200px;
    width: 415vw;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.privacy-missing-id {
    background-color: var(--grey);
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    justify-content: center;
    padding-bottom: 230px;
    flex-direction: column;
    overflow: hidden;
}

.privacy {
    background-color: var(--grey);
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    padding-bottom: 230px;
    flex-direction: column;
    overflow: hidden;
}

    .privacy h2 {
        color: var(--dark-blue);
    }

.privacyCard-missing-id {
    width: max-content !important;
}

    .privacyCard-missing-id h2, .privacyCard-missing-id p {
        text-align: center
    }

.privacyCard {
    background-color: var(--white);
    max-width: 70vw;
    padding: 2vh 2vw;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

    .privacyCard b {
        font-weight: bold;
    }

    .privacyCard a {
        font-weight: bold;
        text-decoration: underline;
        color: var(--blue-standard);
    }

.status-personnal-data {
    text-transform: uppercase;
}

.email-form {
    max-width: 100%;
}

    .email-form label {
        margin-bottom: 10px;
        font-weight: 600;
        display: block;
    }

.email-row {
    display: flex;
    width: 100%;
    gap: 8px;
}

    .email-row input[type="email"] {
        flex: 1;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        transition: border-color 0.3s ease;
    }

        .email-row input[type="email"]:focus {
            border-color: var(--blue-standard);
            outline: none;
            box-shadow: 0 0 3px rgba(0, 123, 255, 0.3);
        }

.btn-send {
    padding: 10px 16px;
    background-color: var(--dark-blue);
    border: none;
    color: var(--white);
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    width: max-content;
}

    .btn-send:hover {
        background-color: #0056b3;
    }

.text-danger {
    color: var(--red-error);
}

.text-success {
    color: var(--green-success);
}

/* ______________________________________________________________________________GAMES PAGE___________________________________________________________________________*/
.oursGames {
    background-image: url(/images/OurGamesBg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 300px;
    flex-direction: column;
    overflow: hidden;
}

    .oursGames a {
        z-index: 2;
    }

    .oursGames h1 {
        color: var(--white);
        text-align: center;
        z-index: 2;
    }

    .oursGames ul {
        display: flex;
        align-items: flex-start;
        gap: 2vw;
        z-index: 2;
    }

    .oursGames article {
        width: 25vw;
    }

        .oursGames article p, .oursGames article h2 {
            text-align: center;
            color: var(--white);
        }

        .oursGames article h2 {
            text-align: center;
            margin-bottom: 1vh;
            margin-top: 5vh;
        }

.titleNumbers {
    color: var(--white);
    font-weight: 700;
}

.textNumbers {
    font-size: 14px;
    line-height: 120%;
}

@keyframes slide {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(160vw); /* The image width */
    }
}

.iconsGames {
    background-image: url(/images/games.webp);
    background-position: top center;
    background-repeat: repeat-x;
    animation: slide 100s linear infinite;
    height: 200px;
    width: 415vw;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.allGamesInfos {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    padding: 50px 0;
    justify-content: center;
    margin-bottom: 70px;
}

.articleGame {
    display: flex;
    flex-direction: column;
    max-width: 345px;
    filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.25));
    border-radius: 20px;
    background-color: var(--white);
    transition: 0.2s ease-in-out;
}

    .articleGame figure {
        padding: 21px;
        display: flex;
        gap: 14px;
        align-items: center;
    }

    .articleGame h3 {
        margin: 0;
        color: var(--black);
    }

.bigImg {
    border-radius: 20px 20px 0 0;
    height: 345px;
    width: 345px;
}

.smallIcon {
    border-radius: 8px;
    height: 80px;
    width: 80px;
}

.articleGame div {
    padding: 0 21px 21px 21px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.storeButton {
    background-color: var(--grey);
    padding: 10px;
    border-radius: 8px;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 1%;
    width: 47%;
    transition: 0.2s ease-in-out;
}

    .storeButton p {
        font-size: 16px;
    }

.articleGame:hover {
    transition: 0.2s ease-in-out;
    transform: scale(1.1)
}

.storeButton:hover {
    transition: 0.2s ease-in-out;
    transform: scale(0.9)
}

/* ______________________________________________________________________________COMMON COMPONENTS___________________________________________________________________________*/
header {
    position: sticky;
    top: 0;
    z-index: 600;
}

.navbar {
    background-color: var(--dark-blue);
    min-height: 10vh;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .navbar p, .link-white {
        color: var(--white);
    }

.logoHeader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logoHeaderBigscreen {
    height: 50px;
    padding-top: 10px;
    width: auto;
}

.current-page {
    font-weight: 700;
    text-decoration: underline;
}

.links-headers {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.joinUs a {
    margin-top: 3vh;
}

    .joinUs a img {
        transition: 0.2s ease-in-out;
    }

        .joinUs a img:hover {
            transition: 0.2s ease-in-out;
            transform: scale(1.2)
        }

.joinUs h3, .joinUs h3 a {
    text-align: center;
    text-transform: none;
    color: var(--black);
}

.list-social-networks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 3vh;
    flex-wrap: wrap;
}

footer {
    background-color: var(--black);
    padding: 5vh 10vw;
}

    footer p, footer a {
        color: var(--white);
    }

    footer a {
        text-decoration: underline;
    }

    footer ul {
        margin-top: 5vh;
        display: flex;
        flex-direction: column;
        gap: 2vh;
    }

/* ______________________________________________________________________________HOME PAGE___________________________________________________________________________*/

.herofullimage {
    background-image: url(/images/HeroFullImage.webp);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    display: flex;
    padding-top: 25vh;
    align-items: center;
    flex-direction: column;
}

    .herofullimage h1 {
        color: var(--white);
        text-align: center;
        margin-bottom: 2vh;
    }

.aboutUs {
    height: max-content;
    min-height: 450px;
    padding: 5vh 10vw 13vh 5vh;
    background: url(/images/RocketPhone.webp), linear-gradient(180deg, #F7F5F8 0%, #F7F5F8 58.85%, #EDEDED 82.81%, rgba(247, 245, 248, 0) 100%);
    background-position: left bottom;
    background-repeat: no-repeat;
}

.article-value {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secondText {
    margin-right: 25vw;
}

.addedValue {
    padding-top: 5vh;
    background-image: url(/images/planetBg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.articles-addedValue {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1vw;
    margin-bottom: 100px;
}

.padding-addedValue {
    padding: 0 10vw;
}

.lottie {
    width: 300px;
    height: 300px;
}

.ballz {
    background-image: url(/images/ballzBand.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    height: 80px;
}

.gamesRecord {
    padding: 10vw 5vh;
    padding-bottom: 22vh;
    background: url(/images/Waves.webp), linear-gradient(180deg, #F7F5F8 0%, #F7F5F8 58.85%, #EDEDED 82.81%, rgba(247, 245, 248, 0) 100%);
    background-position: bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

    .gamesRecord ul {
        display: flex;
        align-items: flex-start;
        margin-bottom: 5vh;
        justify-content: space-between;
    }

    .gamesRecord article {
        min-width: 25vw;
    }

        .gamesRecord article p, .gamesRecord article h4 {
            text-align: center;
        }

        .gamesRecord article h4 {
            text-align: center;
            margin-bottom: 1vh;
            margin-top: 5vh;
        }

.titleNumbers {
    color: var(--dark-blue);
    font-weight: 700;
}

.textNumbers {
    font-size: 14px;
    line-height: 120%;
}

.buttonsGames {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.joinUs {
    padding: 0 5vh 5vw 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 5vh;
}

@media only screen and (min-width:450px) {
    .aboutUs {
        padding: 5vh 10vw 20vh 5vh;
        background: url(/images/Rocket.webp), linear-gradient(180deg, #F7F5F8 0%, #F7F5F8 58.85%, #EDEDED 82.81%, rgba(247, 245, 248, 0) 100%);
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: 100vw auto;
    }

    .firstText {
        margin-right: 25vw;
    }

    .addedValue, .gamesRecord {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .addedValue article {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .gamesRecord ul {
            justify-content: center;
            gap: 40px;
        }

    .buttonsGames {
        flex-direction: row;
    }

    .articles-addedValue {
        margin-bottom: 50px;
    }
}

@media only screen and (min-width:896px) {
    .aboutUs {
        height: 500px;
        padding: 10vh 10vw 20vh 10vw;
        background-position: left bottom;
        background-size: contain;
        background-repeat: no-repeat;
    }

    footer ul {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    footer p, footer a {
        text-align: center;
    }

    .bigScreen {
        display: flex !important;
    }

    .smallScreen {
        display: none;
    }
}

@media only screen and (min-width:906px) {
    .addedValue article, .lottie {
        width: 25vw;
    }

    h1 {
        font-size: 250%;
    }

    h2, h3 {
        font-size: 110%;
    }

    h3, h4 {
        font-size: 150%;
    }

    .icon-contact {
        height: 60px;
        width: 60px;
    }

    .list-social-networks {
        gap: 70px;
    }

    .herofullimage {
        background-image: url(/images/BigHeroFullImage.webp);
        background-position: top center;
    }

    .oursGames article h2 {
        font-size: 250%;
    }

    .titleNumbers, .textNumbers {
        font-size: 25px;
        line-height: 150%;
    }

    .gamesRecord {
        padding: 10vh 10vw 30vh 10vw;
        padding-bottom: 22vh;
        background: url(/images/BigWaves.webp), linear-gradient(180deg, #F7F5F8 0%, #F7F5F8 58.85%, #EDEDED 82.81%, rgba(247, 245, 248, 0) 100%);
        background-position: bottom;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }

    .ballz {
        background-size: 600px auto;
        height: 120px;
    }
}

@media only screen and (min-width:1040px) {
    .aboutUs {
        height: 500px;
        padding: 10vh 50vw 20vh 20vw;
        background: url(/images/RocketFullWidth.webp), linear-gradient(180deg, #F7F5F8 0%, #F7F5F8 58.85%, #EDEDED 82.81%, rgba(247, 245, 248, 0) 100%);
        background-position: left bottom;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .iconsGames {
        height: 400px;
        background-image: url(/images/bigGames.webp);
    }

    .firstText, .secondText {
        margin-right: 0;
    }

    .addedValue {
        padding: 0;
    }

    .articles-addedValue {
        justify-content: space-between;
    }
}



@media only screen and (min-width:1240px) {
    .aboutUs {
        padding: 20vh 30vw 20vh 25vw;
        min-height: 850px;
        background-position: left bottom;
    }
}

@media only screen and (min-width:2100px) {
    .aboutUs {
        height: 700px;
        padding: 20vh 14vw 30vh 60vw;
        min-height: 850px;
        background-size: auto;
        background-position: left top;
    }
}

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

    .sticky-button {
        display: block;
    }
}
