@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*,
body {
    margin: 0;
    box-sizing: border-box;
    font-family: var(--fontHeading);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--supplementColorFour);
    background-position: center center;
    background-repeat: no-repeat;
    background: url("../assets/img/Mobile\ -\ MainPage.jpg");
}

.privacy-body {
    background: none;
    background-color: var(--textPrimary);
}



:root {
    --mainColor: #0E2DFF;
    --mainColorDarker: #00E5FF;
    --supplementColorThree: #5D5D5D;
    /* light grey */
    --supplementColorFour: #FFFFFF;
    /* black */
    --supplementColorFive: #171616;
    /* black-50 */
    --contactInputcolor: #F6F6F6;
    --supplementColorSix: #F9BA3E;
    --heroBackgroundColor: #bfd8e3;
    --h-header: 50px;

    /* yellow */
    --headingColor: #464654;
    /* headingColor */
    --bulletColor: #D9D9D9;
    --footerPrimary: #FFFFFF;
    /* footerPrimary */
    --footerSecondary: #F9F9F9;
    /*footerSecondary */
    --headerPrimary: #FFFFFF;
    /* headerPrimary */
    --textPrimary: #FFFFFF;
    /* textPrimary */
    --textSecondary: #FFFFFF;
    /* textSecondary */
    --footerBG: #050121;
    /* footerBG */
    --headerBG: #FFFFFF;
    /* headerBG */
    --lightGrey: #FFFFFF;
    /* Footer Links Secondary */
    --errorColor: #d24545;
    /* Error Message Color */
    --successColor: #45d24c;
    /* Error Message Color */
    --errorColorMessage: #d24545;
    /* Error Message Color */

    /* Fonts */
    --fontHeading: "Montserrat", sans-serif;
    --fontHeadingAlt: "Poppins", sans-serif;
    --fontText: "Montserrat", sans-serif;
    --fontTextAlt: "Poppins", sans-serif;
}

.bg-chevron {
    fill: #fff;
  }

  .icon-chevron {
    fill: #0e2dff;
  }

/*  
======================== 
MARK: == General Styling
======================== 
*/

ul {
    padding: 0;
}

ul::-webkit-scrollbar { 
    display: none;  
}


li {
    list-style-type: none;
}

img {
    user-select: none;
}

.logo-icon {
    fill: url(#linear-gradient);
    width: 2rem;
  }

a {
    text-decoration: none;
    color: #000;
}

img {
    /* width: 100%; */
}

h2, h3 {
    font-weight: 900;
    text-transform: uppercase;
}



/*  
======================== 
MARK: == Header
======================== 
*/

main > a {

    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
    height: var(--topButton);
    width: var(--topButton);
    border-radius: 10rem;
    --topButton: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(rgba(0,0,0, .3) 0 0 5px);
}

body > a svg {
    fill: var(--mainColor);
    width: 20%;
    transform: rotate(-90deg);
}

header {
    position: sticky;
    top: 0;
    background-color: var(--textPrimary);
    z-index: 1;
    filter: drop-shadow(rgba(0,0,0,.5) 0 0 5px);
    z-index: 99;
}


header > p {
    color: var(--headingColor);
    font-style: thin;
    display: block;
    text-align: center;
    font-size: .8rem;
    padding: 1rem 0;
}

header nav {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: var(--supplementColorTwo);
    justify-content: space-between;
}

header nav > a {
    width: 7rem;
    min-width: 7rem;
    max-width: 7rem;
}

header nav a img {
    width: 100%;
}

header nav #hamburgerMenu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: var(--textPrimary);    
    gap: 1rem;
    translate: -100vh 0;
}

header nav #hamburgerMenu.active {
    translate: 0 0;
    transition: .5s;
}

header nav #hamburgerMenu > li {
    width: 100%;
    padding: 0 4rem;
    text-align: center;
}

header nav #hamburgerMenu > li a {
    font-weight: bold;
    color: var(--headingColor);
    display: block;
    border-bottom: solid var(--mainColor) 1px;
    padding: 0 0 1rem 0;
    width: 100%;
    transition: .5s;
}

header nav #hamburgerMenu > li a:hover {
    color: var(--mainColor);
}

header nav #hamburgerMenu > li:last-of-type a {
    border-bottom: none;
}

header nav .region-container {
    display: none;
    align-items: center;
    gap: .2rem;
    border-radius: .5rem;
    border: solid .125rem var(--mainColor);
    padding: .5rem;
}

header nav #hamburgerMenu #regionButton {
    background-color: var(--mainColor);
    width: fit-content;
    display: flex;
    font-weight: bold;
    aspect-ratio: auto;
    padding: .6rem;
    flex-direction: row;
    align-items: center;
    border-radius: .5rem;
    color: var(--textPrimary);
}

header nav #hamburgerMenu #regionButton svg {
    fill: var(--textPrimary);
    width: 1rem;
}

header nav #hamburgerMenu #closeMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 2rem;
    right: 2rem;    
}

header nav #hamburgerMenu #closeMenu span {
    position: absolute;
    background-color: #000;
    height: .2rem;
    border-radius: 1rem;
    width: 100%;
    transform-origin: center;
}

header nav #hamburgerMenu.active li.hide {
    display: none;
}

header nav #hamburgerMenu #closeMenu span:nth-of-type(1){
    rotate: 45deg;
}

header nav #hamburgerMenu #closeMenu span:nth-of-type(2){
    rotate: -45deg;
}

header nav #hamburgerMenu #regionButton svg:last-of-type{
    width: .5rem;
    transition: .2s;
}

header nav ul #regions-list {
    display: none;
}

header nav #hamburgerMenu #regions-list.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


header nav #hamburgerMenu #regionButton.show svg:last-of-type {
    rotate: 180deg;
}

header nav .region-container select {
    border: none;
    color: var(--mainColor);
    font-weight: 500;
}

header nav .region-container svg {
    fill: var(--mainColor);
    width: 1rem;
}

header nav .region-container img {
    width: 15%;
    object-position: center;
}

header nav button {
    aspect-ratio: 1/1;
    width: 2rem;
    gap: .3rem;
    align-items: end;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 0;

    border: none;
    background-color: transparent;
}

header nav > button span {
    display: block;
    height: .2rem;
    width: 100%;
    background-color: var(--mainColor);
    border-radius: 1rem;
}

header nav button span:last-of-type {
    width: 75%;
}

/*  
======================== 
MARK: == Main
======================== 
*/

.container {
    width: 100%;
    height: 100vh;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;

}

/*  
======================== 
MARK: == Hero
======================== 
*/

.hero.container {
    scroll-margin-top: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 85vh;
    padding: 1rem;
}

.hero.container .image-wrapper {
    width: 90%;
    height: 80vh;
    background-color: var(--heroBackgroundColor);
    padding: 1.5rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s .5s cubic-bezier(0.075, 0.82, 0.165, 1) backwards;
}

.image-wrapper  img {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 500px;
}

.hero.container .image-wrapper h1 {
    font-family: var(--fontHeading);
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 900;
    animation: fadeIn 1s var(--x) cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
    opacity: 1;
    color: var(--textPrimary);
    scale: 1;

    line-height: 2.5rem;
}

/*  
======================== 
MARK: == Hero (No Country)
======================== 
*/

.hero.container .image-wrapper .hero-text-container.no-country h1 {
    font-size: 2rem;
    line-height:normal;
    width: 70vw;
}

.country-container {
    background-color: var(--textPrimary);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    position: relative;
    z-index: 1;
    margin: 2rem 0;
    flex-direction: column;
    gap: .5rem;
}

.country-container h3 {
    font-size: 1rem;
    text-align: center;
    font-weight: 500;
    text-transform: capitalize;
}

.country-container select {
    display: block;
    padding: .5rem;
    margin: .5rem 0;
    border: 1px solid #00E5FF;
    border-radius: .5rem;
    font-size: 1.2rem;

    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;

}

.country-container select option {
}

.country-container button {
    padding: .8rem;
    border: none;
    background-color: var(--mainColor);
    color: var(--textPrimary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.3rem;
    border-radius: .5rem;
}

.country-container p {
    font-size: .7rem;
}

.hero.container .image-wrapper h1 span {
    color: var(--mainColor);
}

.hero.container .image-wrapper .hero-text-container > p {
    text-decoration: underline;
}

.hero.container .image-wrapper .hero-text-container > a {
    background-color: var(--mainColor);
    text-transform: uppercase;
    color: var(--textPrimary);
    display: block;
    padding: 1rem;
    text-align: center;
    scale: 1;

    text-decoration: none;
    margin:  1rem 0;
    width: 100%;
    font-weight: 900;
    font-size: 1.5rem;
    font-family: var(--fontHeading);
    border-radius: .5rem;

    animation: fadeIn 1s var(--x) cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
    opacity: 1;

}

.hero.container .image-wrapper p {
    display: block;
    text-align: center;
    color: var(--supplementColorThree);
    animation: fadeIn 1s var(--x) cubic-bezier(0.165, 0.84, 0.44, 1) backwards;
    opacity: 1;
    scale: 1;


}

.hero.container .image-wrapper p a {
    color: var(--supplementColorThree);
    text-transform: capitalize;
}

.hero.container > img {
    position: absolute;
    top: 2.5rem;
    right: 0;
    width: 30vw;
    animation: floating 10s infinite alternate-reverse backwards;
    transform: translateY(0);
}

/*  
======================== 
MARK: == Discover
======================== 
*/

.discover.container {
    scroll-padding-bottom: 20rem;
    height: 80vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.discover.container .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem;
}

.discover.container .text-wrapper h2 {

    font-size: 2.5rem;
    margin: 1rem 0;
}

.discover.container .text-wrapper p {
    font-weight: 300;
    line-height: 1rem;
}

.discover.container .desktop {
    display: none;
}

.discover.container > img:nth-of-type(1) {
    position: absolute;
    top: 1rem;
    left: 0;
}
.discover.container > img:nth-of-type(2) {
    position: absolute;
    bottom: 1rem;
    right: 0;
}

/*  
======================== 
MARK: == Games
======================== 
*/

.games.container {
    padding-top: 8rem;
}

.games.container .navigator {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.games.container .navigator svg {
    display: none;
    width: 1rem;
    max-width: 1rem;
    min-width: 1rem;
    fill: var(--mainColor);
}

.games.container .navigator #forward {
    transform: scale(-1);
}

.games.container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--supplementColorTwo);

}

.games.container ul {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.games.container ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;

    min-width: 100%;
    padding: 1rem;
    text-align: center;

    scroll-snap-align: center;
}

.hidden-li {
    opacity: 0;
}

.hidden-li.not-selected {
    opacity: 0;
}

.not-selected {
    opacity: .5;
    transition: .2s;
}

.games.container ul li img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    transform: translate(0,3rem);
    border-radius: 1rem;
    transition: .5s;
}


.games.container ul li h3 {
    font-size: 2rem;
    color: var(--supplementColorFour);

    text-shadow: rgba(0, 0, 0, .7) 0 0 5px;
}

.games.container ul li p {
    width: 80%;
    max-width: 80%;
    
}

.games.container ul li h3,
.games.container ul li p {
    opacity: 0;
    transition: .5s;

}

.games.container ul li img.float-up {
    transform: translate(0,0);
}
.games.container ul li p.fade-in, 
.games.container ul li h3.fade-in {
    opacity: 1;
    transition-delay: .5s;
}


.games.container ul li:first-of-type,
.games.container ul li:last-of-type{ 
    display: NONE;
}

/*  
======================== 
MARK: == Features
======================== 
*/

.features {
    scroll-margin-top: calc(var(--h-header) + 5em);
}

.features.container ul li:not(:first-of-type){
    scroll-margin-left: 2.5rem;
}



.features.container ul  {
    display: flex;
    gap: 1rem;
    overflow-x: scroll;
    padding: 1rem;
    height: 270px;
    min-height: 270px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.features.container ul::-webkit-scrollbar { 
    display: none;  
}

.features.container ul li {
    min-width: fit-content;
    width: fit-content;
    scroll-snap-align: start;
    scale: .8;
    transition: .2s;
}

.features.container ul li:first-of-type {
    scroll-margin-left: 1rem;
}

.features.container ul li:last-of-type {
    margin-right: 12rem;
    min-width: 60%;
}

.features.container ul li img {
    filter: grayscale(.7);
}

.features.container ul li.selected {
    scale: 1;
}

.features.container ul li.selected img {
    filter: grayscale(0);
}

.features.container .features-text {
    padding: 0 1rem;
    width: 70%;
}

.features.container .features-text p {
    margin: 0;
    transition: .5s;
}

.features.container .features-text h3 {

    font-size: 2rem;
}


.features.container > img {
    position: absolute;
    bottom: 0;
    min-width: 25rem;
    width: 26rem;
    max-width: 26rem;
    right: 0;
    pointer-events: none;
}

.features.container h2 {
    font-size: 2.5rem;

    font-weight: 900;
    text-align: center;
}

/*  
======================== 
MARK: == Join Now
======================== 
*/

.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url("../assets/img/Mobile\ -\ JoinNow.jpg");
    background-position: center center;
    background-size: cover;
    height: 70vh;
    margin: 12rem 0;
    padding: 1.5rem;
}

.cta h2 {
    font-size: 2.5rem;

    font-weight: 900;
    color: var(--textPrimary);
}

.cta p {
    margin: 1.5rem 0;
    color: var(--textPrimary);
}

.cta a {
    display: block;
}

.cta .cta-wrapper a:nth-of-type(1){
    background-color: var(--mainColorDarker);
    text-transform: uppercase;
    color: var(--textPrimary);
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    width: calc(100vw - 3rem);
    font-weight: 900;
    font-size: 1rem;
    font-family: var(--fontHeading);
    border-radius: .5rem;
}

.cta .cta-wrapper .learn-more {
    text-align: center;
    margin: .5rem 0;
    color: var(--textPrimary);
}


/*  
======================== 
MARK: == FAQ
======================== 
*/

.faq.container {
    background-color: var(--footerBG);
    color: white;
    padding: 1rem 1.5rem;
    height: fit-content;
    scroll-margin-top: 5rem;
}

.faq::after {
    display: block;
    content: "";
    height: 100px;
    width: 100%;
    background-color: var(--footerBG);
}

.faq.container .faq-wrapper {
    padding: 4rem 0;
}

.faq.container > h2 {
    text-align: center;
    font-weight: 900;
    font-size: 2.5rem;
    color: white; 
}

.faq.container details .content p a {
    color: var(--mainColorDarker);
    text-decoration: underline 1px solid;
}

.faq.container .faq-wrapper p {
    text-align: center;
    margin: 1rem 0;
}

.faq.container .faq-wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--textPrimary);
}

[lang="pl"] .faq.container .faq-wrapper h2 {
    font-size: 1.5rem;
}


.accordion {
    display: flex;
    flex-direction: column;
}

.faq.container .animated-details {
    width: 100%;
    border-top: rgba(217, 217, 217, .1) .1rem solid;
    overflow: hidden; 
    padding: 1.5rem 0;
    display: block
  }
  
.faq.container summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1.2rem;
    list-style: none;
    outline: none;
    justify-content: space-between;
    display: flex;
    align-items: center;
    color: white;
    user-select: none;

}

.faq.container details[open] .content ul {
    display: flex;
    flex-direction: column;
    gap: 1rem ;
}

.faq.container details[open] .content ul li span {
    font-weight: 700;
}

.faq.container details[open] .content ul li a {
    color: var(--mainColorDarker);
    text-decoration: underline;
}

.four-ways {
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.faq.container summary .custom-marker{
    background-color: rgba(217, 217, 217, .1);
    aspect-ratio: 1/1;
    display: flex;
    width: 1.5rem;
    min-width: 1.5rem;
    border-radius: 2rem;

    align-items: center;
    justify-content: center;
    transition: .5s;
    
}

.faq.container summary .custom-marker span {
    display: block;
    height: .1rem;
    position: absolute;
    width: .5rem;
    background-color: var(--textSecondary);
}
.faq.container summary .custom-marker span:nth-of-type(2) {
    transform-origin: center center;
    rotate: 90deg;
}

.faq.container summary::webkit-details-marker {
    display: none;
}

.faq.container .animated-details::marker {
    display: none;
}
  
.faq.container .animated-details .content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    color: var(--textPrimary);
  }
  
.faq.container details[open] .content {
    max-height: fit-content; 
    opacity: 1;
    padding: 1rem;    
  }


.faq.container details[open] summary .custom-marker {
    background-color: rgba(217, 217, 217, 0.212);
    rotate: 45deg;
}


 .review.container {
    scroll-margin-top: calc(var(--h-header) + 4.5em);
    height: 65vh;
    min-height: 65vh;
    transform: translateY(-7rem);
    width: 90%;
    min-width: 90%;
    max-width: 90%;
    margin: 0 auto;
    filter: drop-shadow(rgba(0,0,0, .2) 0 0 10px);
}

/*  
======================== 
MARK: == Review
======================== 
*/

.review {
    background-color: var(--textPrimary);
    color: var(--headingColor);
    border-radius: 2rem;
    /* padding: 1.5rem; */
}

.review.wrapper {
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 0;
    text-align: center;
    height: 25vh;
}

.review.wrapper h2 {
    font-size: 2.5rem;
}

.review.wrapper p {
    font-size: .7rem;
    margin: 1rem 0;
}

.review ul {
    display: flex;
    gap: .8rem;
    overflow-x: scroll;
    /* height: 35vh;
    min-height: 35vh; */
    padding: 4rem 0 2rem;
    scroll-snap-type: x mandatory;
    align-items: center;

}

/* .review ul li svg {
    width: 5rem;
    position: absolute;
    filter: drop-shadow(rgba(0,0,0, 1) 0 0 5px);
    border-radius: 10rem;
    top: 0;
} */

    .review ul li .svg-container {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1/1;
        width: 5rem;
        background-color: var(--textPrimary);
        filter: drop-shadow(rgba(0,0,0, .2) 0 0 10px);
        padding: 1rem;
        top: -2rem;
        border-radius: 10rem;
    }

    .review ul li .svg-container svg {
        width: 3rem;
    }


.review ul li {
    min-width: 90%;
    width: 100%;
    display: flex;
    height: 10rem;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: var(--textPrimary);
    filter: drop-shadow(rgba(0,0,0,.2) 0 0 5px);
    scroll-snap-align: start;
    padding: 1.5rem;
    border-radius: 1rem;
    scroll-margin-left: 1.4rem;
}

.review ul li:first-of-type{
    margin-left: 2rem;
}


.review ul li:last-of-type{
    margin-right: 2rem;
}

 .review ul li img {
    filter: drop-shadow(rgba(0,0,0,.2) 0 5px 5px);
    border-radius: 10rem;
    position: absolute;
    top: -3rem;
}

.review .navigator {
    display: flex;
}

.review .navigator > svg {
    display: none;
    width: 1rem;
    min-width: 1rem;
    max-width: 1rem;
    fill: var(--mainColor);
}

 .review ul li p {
    margin-top: auto;
    text-align: center;
    font-size: .7rem;
}

.bullets-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: .7rem;
}

.bullets-container span {
    display: block;
    aspect-ratio: 1/1;
    background-color: var(--bulletColor);
    width: .5rem;
    border-radius: 10rem;
}

.bullets-container span.active {
    background-color: var(--mainColor);
}

/*  
======================== 
MARK: == Contact 
======================== 
*/

label[for="contactEmail"],
label[for="contactPhone"]{
    margin-bottom: .5rem;
}
label[for="contactEmail"] a,
label[for="contactPhone"] a{
    text-decoration: underline;
    color: var(--mainColor);
}



.contact {
    scroll-margin-top: calc(var(--h-header) + 5.5em);
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact_intro,
.contact__details,
.contact form {
    width: 100%;
    max-width: 30rem;
}

.contact__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0;
}

.contact__heading {
    text-align: center;
    margin: 1rem 2rem;
}

.contact__text {
    max-width: 30rem;
    text-align: center;
}

.contact__details {
    display: flex;
    margin: 0 2rem;
    justify-content: space-between;
}

.contact__details-email,
.contact__details-phone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2rem 0;
}

.contact__details-email p,
.contact__details-email a,
.contact__details-phone p,
.contact__details-phone a {
    margin: 0 0 0.5rem 0;
    font-size: var(--sizeTextLarge);
    color: var(--headingColor);
}

.phone-link, 
.email-link {
    font-size: var(--sizeTextRegular);
    font-weight: var(--fontRegular);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.phone-link:hover, 
.email-link:hover {
    color: var(--mainColor);
}

.contact form {
    margin: 2rem 0 5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 0 3rem;
    background-color: var(--textPrimary);
    border: solid var(--mainColorDarker);
    border-radius: 1rem;
    max-width: 55rem;
}

.contact form fieldset {
    border: none;
    display: flex;
    flex-direction: column;
    margin: 0 0 1rem 0;
}

.contact form fieldset input, 
.contact form fieldset textarea,
.contact form fieldset select {
    background-color: var(--contactInputcolor);
    color: var(--headingColor);
    font-family: var(--fontText);
    width: 100%;
    border-radius: 4px;
    border: none;
    margin: 0.5rem 0 0 0;
    padding: 0.9rem 0.8rem;
}

.contact form fieldset select {
    color: var(--headingColor)!important;
}

.contact form fieldset select option {
    color: var(--headingColor);
    font-size: 0.9rem;
}

.contact form fieldset textarea {
    min-height: 14.3rem;
    resize: none;
}

.contact form fieldset textarea::-webkit-scrollbar {
    width: 6px;
}

.contact form fieldset textarea::-webkit-scrollbar-track {
    background-color: transparent;
}

.contact form fieldset textarea::-webkit-scrollbar-thumb {
    background: var(--supplementColorTwo);
    border-radius: 4px;
}

.contact form fieldset textarea::-webkit-scrollbar-button {
    display: none;
}

.contact form fieldset select {
    color: var(--supplementColorThree);
    cursor: pointer;
}

.contact form fieldset .phone-input__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.contact form fieldset .phone-input__container select {
    width: initial;
    padding: 0 0.5rem;
    margin: 0 0.25rem 0 0;
}

.contact form fieldset .phone-input__container #telInput {
    width: 100%;
}

.contact form fieldset label {
    font-family: var(--fontText);
    font-size: var(--sizeTextLarge);
    color: var(--headingColor);
    margin: 0 0 0.25rem 0;
}

.contact form fieldset .error {
    border-color: var(--errorColor);
    border-width: 3px;
    color: var(--errorColorMessage);
}

.contact form fieldset .success {
    border-color: var(--successColor);
    border-width: 3px;
}

.contact form input[type="submit"] {
    cursor: pointer;
    width: 100%;
    background-color: var(--mainColorDarker);
    color: var(--headerPrimary);
    font-size: var(--sizeTextLarge);
    font-family: var(--fontText);
    border: none;
    border-radius: .5rem;
    padding: 1rem;
}


/*  
======================== 
MARK: == Terms & Privacy 
======================== 
*/

.header {
    width: 100%;
    padding: 5rem 3rem;
}

.legal {
    color: var(--textPrimary);
    background-color: var(--mainColor);
    scroll-margin-top: 10rem;
}

.legal h1 {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 2rem;
}

.legal h2 {
    font-weight: 400;
    font-size: 1rem;
    text-transform: capitalize;
}

.headlines.header {
    padding: 5rem 2rem;
}

.breadcrump__back-btn {
    top: 2em;
    color: var(--textPrimary);
    text-decoration: underline;
}

.breadcrump__back-btn::before {
    content: "\27F5";

}

.headlines {
    background-color: var(--footerBG);
    color: var(--textPrimary);
    position: relative;
}

.headlines ul, 
.headlines ol {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem;
    border-left: .125rem solid var(--textPrimary);
    padding: 0 1rem;
    outline-offset: 15px;
}

.headlines ol {
    padding-left: 3rem;
    padding-right: 0;
}


.headlines h3 {
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.5rem;
}

.headlines ol li {
    list-style-type: decimal;
    
}


.headlines ol li a,
.headlines ul li a {
    color: var(--textPrimary);
    text-decoration: underline; 
    transition: .2s;
}


.headlines ol li a:hover,
.headlines ul li a:hover {
    font-weight: 800;
}

.privacy-container {
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
    flex-direction: column;
}

.privacy-container article {
    scroll-margin-top: 10rem;
}

.privacy-container article h3 {
    text-transform: uppercase;
    margin: 1rem 0;
    font-size: 1.5rem;
    color:var(--headingColor);
}

.privacy-container article p {
    margin: 1rem 0;
}

.privacy-container article ul {
    padding: 0 1.5rem;
}

.privacy-container article h4 {
    margin: 1rem 0;
}

.privacy-container article h4:last-of-type {
    margin-bottom: 0;
}

.privacy-container article ul li {
    list-style-type:disc;
}

.privacy-container article p:first-of-type {
    margin-top: 0;
}
.privacy-container article p:last-of-type {
    margin-bottom: 0;
}

.headlines h3 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#subject-14,
#subject-15 {
    text-transform: uppercase;
}

#subject-14 ul {
    padding: 0;
}

#subject-7 ul,
#subject-8 ul,
#subject-14 ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 2rem;
}

#subject-7 ul li,
#subject-8 ul li,
#subject-14 ul li {
    list-style-type: upper-latin;
}




/*  
======================== 
MARK: == Footer 
======================== 
*/

footer {
    bottom: 0;
    width: 100%;
}

.footer__content {
    grid-template-columns: max-content 1fr;
}

.footer__container {
    background-color: var(--footerBG);
    display: flex;
    justify-content: center;
}

.footer__content {
    padding: 2rem 0;
    margin: 0 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.footer__content a,
.footer__content p {
    color: var(--footerPrimary);
}

.footer-links {
    display: grid;
    /* grid-template-columns: 125px 125px; */
    gap: 1.25rem;
    order: 2;
}

.footer-links__item a {
    text-decoration: underline;
    text-underline-offset: 0.4rem;
    font-size: var(--sizeTextRegular);
    transition: .2s;
}

.footer-links__item a:hover {
    color: var(--mainColorDarker);
}

.footer-img {
    max-width: 14.25rem;
    margin: 0 auto;
    order: 1;
    /* position: relative;
    left: 1.60rem; */
}

.footer-rights {
    display: flex;
    justify-content: space-between;
    order: 3;
}

.footer-rights p {
    color: var(--footerSecondary);
    font-size: var(--sizeTextSmall);
}

.footer-links.secondary-links {
    font-size: var(--sizeTextSmall);
    color: var(--footerSecondary);
    grid-column: span 2;
 }

 .footer__content {
    gap: 3rem 4rem;
 }



/*  
======================== 
MARK: === Mediaqueries
======================== 
*/


@media (max-width: 500px) {
    .hero-text-container h1 {
        font-size: 1.5rem !important;
        line-height: normal !important;
    } 

    .hero.container .image-wrapper {
        height: 73vh;
    }

    .hero.container .image-wrapper .hero-text-container > a {
        font-size: 1rem !important;
    }

    .image-wrapper img {
        width: 430px;
    }
    
    .discover.container .text-wrapper h2,
    .games.container h2,
    .features.container h2,
    .cta h2,
    .review.wrapper h2 {
        font-size: 2rem !important;
    }

    .discover.container .text-wrapper p,
    .games.container ul li p,
    .features.container .features-text p,
    .faq.container .faq-wrapper p,
    .faq.container .animated-details .content p,
    [for="contactEmail"],
    .contact__text,
    [for="contactPhone"],
    .footer-links__item a  {
        font-size: .8rem !important;
    }

    .features.container .features-text h3 {
        font-size: 1.5rem !important;
        width: 80vw;
    }

    .features.container > img {
        --s: 18rem;
        width: var(--s) !important;
        max-width: var(--s) !important;
        min-width: var(--s) !important;
    }


    .faq.container .faq-wrapper {
        padding: 2rem 0 !important;
    }

    .faq.container summary {
        font-size: 1rem !important;
    }

    .review.container {
        min-height: 69vh !important;
    }

    .review ul li img {
        width: 5rem !important;
        top: -2rem !important;
    }

    .footer-img {
        width: 8rem !important;
    }


}

/* Alleen voor schermen kleiner dan 321px */
@media (max-width: 321px) {
    .image-wrapper img {
        width: 360px;
    }
}


@media (min-width: 1280px){
    .faq.container {
        padding: 5rem;
    }
}


@media (min-width: 800px){

/*  
======================== 
MARK: == Body
======================== 
*/
    body {
        background-image: url("../assets/img/Desktop\ -\ MainPage.jpg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;

    }

/*  
======================== 
MARK: == Header 
======================== 
*/    header nav {
        justify-content: space-between;
        padding: 1rem 6rem;
    }

    header nav > img {
        width: 100%;
        min-width: 100px;
        max-width: 100px;
    }
    
    header nav #hamburgerMenu {
        flex-direction: row;
        position: static;
        inset: unset;
        background-color: transparent;
        gap: 2rem;
        height: auto;
        translate: 0 0;
        padding: 0;
    }

    header nav #hamburgerMenu li {
        width: fit-content;
        padding: 0;
    }

    header nav #hamburgerMenu li a {
        border: none;
        padding: 0;
        width: fit-content;
    }

    header nav button {
        display: none;
    }

    header nav #hamburgerMenu button,
    header nav #hamburgerMenu #regionButton,
    header nav #hamburgerMenu #closeMenu {
        display: none;
    }

    header nav .region-container {
        display: flex;
    }
/*  
======================== 
MARK: == Main - Hero
======================== 
*/

    .hero.container {
        height: 78vh;
    }

    .hero.container > img {
        display: none;
    }

    .hero.container .image-wrapper {
        height: 60vh;
        overflow: visible;
        margin-top: 1rem;
        padding: 1rem 4rem;

    }

    .hero.container .image-wrapper img {
        width: 50vw;
        opacity: 1;
        right: 2rem;
    }


    .hero.container .hero-text-container {
        width: 50vw;
        margin: 2rem 0;
    }

    .hero.container .image-wrapper .hero-text-container.no-country h1 {
        font-size: 3vw;
        width: 40vw;
    }

    .hero .image-wrapper.no-country {
        height: 66vh;
    }

    .hero.container .hero-text-container h1 {
        font-size: 3vw;
        line-height:normal;
        width: 30vw;
        min-width: 30vw;
    }

    .hero.container .image-wrapper .hero-text-container > a,
    .hero.container .image-wrapper .hero-text-container > p {
        width: 20vw;
    }

    /*  
======================== 
MARK: == Discover
======================== 
*/

    .discover.container > img:nth-of-type(1),
    .discover.container > img:nth-of-type(2) {
        display: none;
    }

    .discover.container .desktop {
        display: block;
        position: absolute;
        width: 40vw;
    }

    .discover.container {
        /* overflow-y: hidden */
    }


    .discover.container .text-wrapper{
        width: 50vw;
        min-width: 45vw;
        max-width: 50vw;
    }

    .discover.container .desktop.one {
        left: -27rem;
        top: 0;
        min-width: 20vw;
    }
    .discover.container .desktop.two {
        right: -27rem;
        bottom: 0;
        min-width: 20vw;

    }

    /*  
======================== 
MARK: == Games
======================== 
*/

    .games.container {
        align-items: center;
    }


    .games.container .navigator {
        width: 70vw;
    }

    .games.container ul li {
        min-width: 33%;
    }

    .games.container ul li p {
        width: 300px;
    }

    .games.container .navigator svg {
        display: block;
    }

    .games.container ul li:first-of-type,
    .games.container ul li:last-of-type{ 
        display: block;
    }
    
    
    /*  
======================== 
MARK: == Features
======================== 
*/

    .features.container > img {
        width: 35rem;
        max-width: 35rem;
        right: -5rem;
    }

    .games.container,
    .features.container {
        width: 70vw;
        margin: 0 auto;
    }

    .features.container ul {
        height: auto;
    }

    .features.container ul li.selected {
        min-width: auto;
    }

    .features.container ul li:last-of-type {
        min-width: auto;
    }

    .features.container .features-text p,
    .features.container .features-text h3 {
        width: 300px;
    }

    .faq.container {
        padding: 5vw 25vw;
    }

    /*  
======================== 
MARK: == Accordion
======================== 
*/


    .accordion {
        display: flex;
        
    }

    /*  
======================== 
MARK: == Joi Now
======================== 
*/

    .cta {
        flex-direction: row;
        justify-content: space-around;
    }

    .cta .cta-wrapper:nth-of-type(1) {
        width: 25%;
    }

    .cta .cta-wrapper h2 {
        font-size: 3.5rem;
    }

    .cta .cta-wrapper a:nth-of-type(1) {
        width: 20rem;
    }

    
    /*  
======================== 
MARK: == Review
======================== 
*/

    
    .review.wrapper{
        height: auto;
    }

    .review.wrapper p {
        font-size: 1rem;
    }
    .review ul li p {
        font-size: .8rem;
    }

    .review ul li .svg-container {
        width: 5rem;
    }
    
    .review.container {
        transform: translateY(-7rem);
        width: 65%;
        min-width: 65%;
        max-width: 65%;
    }
    
    .review ul {
        width: 37%;
        min-width: 37%;
        max-width: 37%;
        margin: 0 0 auto;
    }

    .review .navigator {
        display: flex;
        justify-content: center;
        gap: 2rem;
    }

    .review .navigator > svg {
        display: block;
    }

    .review .navigator > svg:first-of-type {
        transform: scale(-1);
    }

    .bullets-container {
        padding: 1.5rem 0;
    }

    .review ul li {
        min-width: 93%;
    }


    /*  
======================== 
MARK: == Contact
======================== 
*/

    .contact {
        position: relative;
        margin: 0 10% 5rem;
    }
    
    .contact__heading,
    .contact__intro,
    .contact__details {
        margin: 0 2rem 0 0;
    }
    
    .contact form {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .contact form fieldset:nth-of-type(4) {
        grid-column: 2;
        grid-row: 2;
    }

    .contact form fieldset:last-of-type {
        grid-column: 2;
        grid-row: 3 / 5;
    }
    
    .contact form input[type="submit"] {
        grid-column: 2;
        grid-row: 7;
        text-transform: uppercase;
        font-weight: 900;
    }
    

    
    label[for="contactEmail"]{
        grid-row: 1;
        grid-column: 1;
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }
    label[for="contactPhone"]{
        grid-row: 1;
        grid-column: 2;
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    fieldset:nth-of-type(1){
        grid-row: 2;
        grid-column: 1;
    }
    
    fieldset:nth-of-type(2){
        grid-column: 1;
        grid-row: 3;
    }
    fieldset:nth-of-type(3){
        grid-column: 1;
        grid-row: 4;
    }
    
    
    form fieldset:last-of-type {
        grid-column: 2;
        grid-row: 1;
    }
    
    .numberBox {
        display: flex;
        gap: 1rem;
        grid-area: 1/3;
    }
    
    .numberBox #telSelect {
        width: fit-content;
    }

   
    /*  
======================== 
MARK: == Footer
======================== 
*/

    .footer__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .footer-img {
        margin: initial;
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }
    
    .footer-links.secondary-links,
    .footer-rights {
        grid-column: 1 / span 2;
    }
    
    .privacy-container {
        margin: 0 10vw;
    }

    .headlines.header {
        padding: 5vw 20vw;
    }

    .header {
        padding: 5rem 0;
    }

    .headlines h3 {
        margin: 2rem;
    }

    .legal h1 {
        font-size: 3rem;
        margin: 0 10vw;
        padding: 0;
    }
    .legal h2 {
        font-size: 1.5rem;
        margin: 0 10vw;
        padding: 0;
    }

    .country-container {
        max-width: 400px;
        padding: 1rem 4rem;
        margin: 1rem 0;
    }
}

@media (max-width: 1000px){
    .games.container .navigator {
        width: 90vw !important;
    }
}






@keyframes fadeIn {
    from {
        opacity: 0;
        scale: .8;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

@keyframes floating {
    from {
        transform: translateY(-1rem);
    }
    to {
        transform: translateY(1rem);
    }
}

@keyframes floatUp {
    from {
        transform: translate(0,3rem);
    }
    to {
        transform: translate(0,0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        translate: -2rem 0;
    }
    to {
        opacity: 1;
        translate: 0 0;
    }
}


@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none; 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@media (max-width: 660px){
    
}