@font-face {
    font-family: 'CodeNext';
    src:
        url('./assets/fonts/CodeNext-Regular.woff') format('woff'),
        url('./assets/fonts/CodeNext-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-family: "CodeNext";
    font-size: 16px;
    font-weight: 500;
    background-color: #000000;
    margin: 0;
    color: rgb(200, 200, 200) !important;
}

/* Font  */
h1,
h2,
h3,
h4 {
    margin-block-start: 10px;
    margin-block-end: 5px;
}

p {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

li a {
    text-decoration: underline;
}

h1 {
    font-size: 2.3em;
    font-weight: 400;
}

h2 {
    font-size: 2.3em;
    font-weight: 400;
}

h3 {
    font-size: 1.8em;
    font-weight: 400;
}

sup {
    font-size: 1rem;
    text-decoration: underline;
}

h4 {
    font-size: 1.2em;
    font-weight: 400;
}

.strong {
    font-weight: bold;
}

.blue {
    color: #2ca9f2;
}

.gold {
    color: #f8c761;
}

.small {
    font-size: 0.8em;
}

.large {
    font-size: 1.2em;
}

.center {
    text-align: center;
}

#footer .center {
    margin-block-start: 0.5em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.inner-para {
    line-height: 2.5em;
    margin: 20px 0;
}

@media screen and (max-width: 680px) {
    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.6em;
    }

    h4 {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 460px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.5em;
        margin: 0;
    }

    h3 {
        font-size: 1.2em;
    }

    h4 {
        font-size: 1.1em;
    }
}

/*
-------
-------
ALL ANIMATIONS
-------
-------
*/
/* START ANIMATION DELAY TIMES  */
.dly800 {
    -moz-transition: all 0.8s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -o-transition: all 0.8s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -webkit-transition: all 0.8s cubic-bezier(0.42, 0, 0.58, 1) !important;
    transition: all 0.8s cubic-bezier(0.42, 0, 0.58, 1) !;
}

.dly1000 {
    -moz-transition: all 1s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -o-transition: all 1s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -webkit-transition: all 1s cubic-bezier(0.42, 0, 0.58, 1) !important;
    transition: all 1s cubic-bezier(0.42, 0, 0.58, 1) !;
}

.dly1200 {
    -moz-transition: all 1.2s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -o-transition: all 1.2s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -webkit-transition: all 1.2s cubic-bezier(0.42, 0, 0.58, 1) !important;
    transition: all 1.2s cubic-bezier(0.42, 0, 0.58, 1) !important;
}

.dly1500 {
    -moz-transition: all 1.5s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -o-transition: all 1.5s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -webkit-transition: all 1.5s cubic-bezier(0.42, 0, 0.58, 1) !important;
    transition: all 1.5s cubic-bezier(0.42, 0, 0.58, 1) !;
}

.dly3000 {
    -moz-transition: all 3s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -o-transition: all 3s cubic-bezier(0.42, 0, 0.58, 1) !important;
    -webkit-transition: all 3s cubic-bezier(0.42, 0, 0.58, 1) !important;
    transition: all 3s cubic-bezier(0.42, 0, 0.58, 1) !;
}

/* END ANIMATION DELAY TIMES */
/* START ANIMATION STYLES */
.animation-element {
    opacity: 0;
    position: relative;
}

.animation-element.slide-left {
    opacity: 0;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    -moz-transform: translate3d(-50px, 0px, 0px);
    -webkit-transform: translate3d(-50px, 0px, 0px);
    -o-transform: translate(-50px, 0px);
    -ms-transform: translate(-50px, 0px);
    transform: translate3d(-50px, 0px, 0px);
}

.animation-element.slide-far-left {
    opacity: 0;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    -moz-transform: translate3d(-150px, 0px, 0px);
    -webkit-transform: translate3d(-150px, 0px, 0px);
    -o-transform: translate(-150px, 0px);
    -ms-transform: translate(-150px, 0px);
    transform: translate3d(-150px, 0px, 0px);
    visibility: hidden;
}

.animation-element.slide-far-right {
    opacity: 0;
    -moz-transition: all 400ms linear;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    -moz-transform: translate3d(150px, 0px, 0px);
    -webkit-transform: translate3d(150px, 0px, 0px);
    -o-transform: translate(150px, 0px);
    -ms-transform: translate(150px, 0px);
    transform: translate3d(150px, 0px, 0px);
    visibility: hidden;
}

.animation-element.slide-up {
    opacity: 0;
    -moz-transition: all 600ms linear;
    -webkit-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    transition: all 600ms linear;
    -moz-transform: translate3d(0px 50px, 0px);
    -webkit-transform: translate3d(0px 50px, 0px);
    -o-transform: translate(0px 50px);
    -ms-transform: translate(0px 50px);
    transform: translate3d(0px 50px, 0px);
    visibility: hidden;
}

/* In view  */
.animation-element.slide-left.in-view,
.animation-element.slide-far-right.in-view,
.animation-element.slide-up.in-view,
.animation-element.slide-far-left.in-view {
    opacity: 1;
    visibility: visible;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

/* END ANIMATIONS  */

/*
-------
PAGE SECTIONS
------- */
.page-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    padding: 20px 0 !important;
}

.visa-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.height-full {
    height: 100vh;
}

.height-90 {
    height: 90vh;
}

.height-70 {
    height: 70vh;
    min-height: 450px;
}

.height-med {
    height: 55vh;
    min-height: 400px;
}

.height-sm {
    height: 20vh;
}

.toggle-hide {
    display: none;
}

.page-section-wrapper {
    max-width: 100vw;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.page-section-wrapper>div:first-child {
    width: 100%;
}

#section01 .page-section-wrapper>div:first-child {
    padding: 10%;
}

#section07 .page-section-wrapper>div:first-child {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-inner-content {
    padding: 1% 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0 15rem;
}

div.visa-logo {
    width: 10%;
}



/*
-------
LOGO
------- */
.logo-lg {
    max-width: 500px;
    display: flex;
    flex-grow: 1;
    min-width: 250px;
}

.logo-med {
    max-width: 250px;
    display: flex;
    flex-grow: 1;
    min-width: 100px;
}

.logo-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    min-width: 150px;
}

.partner-list {
    margin: 25px 0;
    height: 75px;
}

.partner-list img {
    height: 100%;
}

/*
-------
BUTTONS
------- */
button {
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.07em;

    padding: 1.6em 2.8em !important;
}

button:hover {
    opacity: 0.9;
}

.metabet-parlay-calculator-games li button {
    padding: 1px 6px !important;
}

.gold-btn {
    color: #000;
    background-color: #f8c761;
    border-color: #f8c761;
    -webkit-transition: 0.1s opacity linear;
    -moz-transition: 0.1s opacity linear;
    -o-transition: 0.1s opacity linear;
    transition: 0.1s opacity linear;
    -webkit-backface-visibility: hidden;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    padding: 10px 15px !important;
    cursor: pointer;
    font-weight: 500;
    border: 1px solid #000;
}

/*
-------
PAGE SECTION COLORS
------- */
.dark-bgnd {
    background-color: #000000 !important;
}

.gold-bgnd {
    color: #000000;
    background: #f8c761;
}

.white-bgnd {
    background-color: #ffffff;
    color: #000000;
    margin-top: -2px !important;
}

.grey-bgnd {
    color: #000000;
    margin-top: -3px;
    background: rgb(255, 255, 255);
    background: linear-gradient(204deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(251, 251, 250, 1) 20%,
            rgba(250, 249, 248, 1) 33%,
            rgba(244, 243, 240, 1) 50%,
            rgba(255, 255, 255, 1) 65%,
            rgba(241, 241, 241, 1) 82%,
            rgba(255, 255, 255, 1) 100%);
}

/*
-------
VIDEO WRAPPER
------- */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*
-------
SECTIONS
------- */

#banner {
    display: flex;
    padding: 2em;
    background-image: url("./assets/line-up.png");
    background-position: bottom 50% left 0px;
    position: relative;
}

.header-title {
    font-size: 64px;
    font-weight: bold;
}

.text-white {
    color: white;
}

ul#game-tools-list {
    list-style-type: none;
    /* Remove default bullets */
}

ul#game-tools-list li {
    position: relative;
    /* Set relative positioning */
    margin-bottom: 10px;
    /* Space between list items */
}

ul#game-tools-list li::before {
    content: "\f058";
    /* FontAwesome check circle icon */
    font-family: "Font Awesome 6 Free";
    /* Specify FontAwesome font family */
    font-weight: 900;
    /* Ensure the icon uses the solid style */
    color: #f8c761;
    /* Set the icon color */
    position: absolute;
    /* Position the icon absolutely */
    left: -30px;
    /* Adjust based on padding and icon width */
    top: 10px
}

ul#game-tools-list li {
    padding-left: 20px;
    /* Padding to align text with icon */
}

#edge-card {
    width: 100%;
    height: auto;
    box-shadow: 8px 8px 10px rgb(248, 199, 97);
    border-radius: 1rem;
}

#section01 {
    background-image: url("/assets/intro-banner.png");
    background-position: center;
    position: relative;
}

#section02 .section-inner-content {
    display: flex;
    position: relative;
    width: 100%;
    padding: 1% 10%;
}

.row {
    flex-direction: row !important;
}

#section02 .img-wrapper {
    max-width: 400px;
    height: auto;
}

#section02 .header-img-wrapper {
    max-width: 80%;
    height: auto;
}

#section02 h3 {
    margin: 2rem 0;
}

#section07 .section-inner-content {
    align-items: center;
}

#section07 .section-inner-content>* {
    margin: 20px 0;
}

#section07 {
    background-image: url("/assets/line-up.png");
    background-position: center;
}

p.help-text {
    position: absolute;
    color: white;
    bottom: 20px;
    right: 40px;
}

.ch-col2 {
    max-width: 100%;
}

.ch-col2 img.logo-img {
    padding-top: 10px;
}

.col-ch p.strong {
    margin-bottom: 5px;
}

#calc .section-inner-content {
    padding: 3%;
}

.col-ch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.col-ch div.desc-text-wrapper {
    padding-left: 15px;
}

#footer .text-wrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

#footer .page-section-wrapper {
    padding: 0 !important;
}

#footer .phone-section {
    width: 100%;
    text-align: center;
}

.mobile-float {
    position: fixed;
    border: 1px solid;
    display: block;
    right: 30px;
    top: 30px;
    color: transparent;
    z-index: 1000;
}

a.top-sign-up,
a.top-sign-in {
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 1000;
    padding: 10px 15px !important;
    color: #000;
    background-color: #f8c761;
    border: 1px solid #000;
    display: inline-block;
}

a.register-btn {
    padding: 10px 15px !important;
    color: #2ca9f2;
    background-color: #f8c761;
    border: 1px solid #000;
    font-weight: 900;
    border-radius: .5rem;
    margin-top: 1rem;
    display: block;
}

a.signup-btn {
    padding: 10px 15px !important;
    color: #2ca9f2;
    background-color: #f8c761;
    border: 1px solid #000;
    font-size: 36px;
    border-radius: .5rem;
    margin-top: 1rem;
    display: block;
}

a.top-sign-up {
    left: 30px;
    right: auto;
}

.metabet-parlay-calculator {
    border: 1px solid #999;
    border-top: none;
}

.bet-responsibly {
    display: flex;
    align-items: center;
    padding-bottom: 40px;
}

.bet-responsibly .logo-med {
    padding-right: 40px;
}

#footer .section-inner-content {
    margin: 0;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1024px) {
    #section05 .prtnr-gallery-grid-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        /* flex-direction: column;
        justify-content: center;*/
        align-items: center;
        width: 100%;
    }
}

@media screen and (max-width: 980px) {
    #section03A {
        width: 100%;
    }

    .visa-section {
        flex-direction: column;

    }

    .visa-section .first-item {
        order: 2;
    }

    .visa-section .second-item {
        order: 1;
    }

    #section03B .section-inner-content {
        padding: 5% 10%;
        height: 100% !important;
    }

    #section03 .section-inner-content .text-wrapper {
        border-bottom: none;
        text-align: center;
    }

    #section03 {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }

    #section03 h3,
    #section03 .section-inner-content .text-wrapper {
        margin: 0px;
    }

    #section03B {
        max-width: 100%;
        width: 80%;
    }

    #section05 {
        margin: 30px auto;
    }

    #section05 .prtnr-gallery-grid-wrapper .img-wrapper,
    #section05 .prtnr-gallery-grid-wrapper img {
        max-width: 250px !important;
        margin: 20px;
    }

    #section05 .top-text-wrapper {
        margin-bottom: 0px;
    }

    #section06 .top-text-wrapper>h3 {
        margin: 20px 0;
    }

    #section06 .img-wrapper {
        max-width: 400px;
    }

    #section06 .img-wrapper img {
        max-width: 400px;
    }

    .ch-col2 {
        grid-template-columns: 1fr;
        align-items: start;
    }

    #footer .section-inner-content {
        padding: 10% 0;
        margin: 0 !important;
    }
}

@media screen and (max-width: 680px) {
    #section01 {
        height: 100vh;
        padding-top: 25% !important; 
    }

    .visa-section {
        flex-direction: column;

    }

    #section02 .img-wrapper {
        max-width: 100%;
        height: auto;
    }

    .visa-section .first-item {
        order: 2;
    }

    .visa-section .second-item {
        order: 1;
    }


    .section-inner-content .first-item {
        order: 2;
    }

    .section-inner-content .second-item {
        order: 1;
    }

    #banner {
        flex-direction: column;
        align-items: center;
    }

    .header-title {
        text-align: center;
    }

    p.help-text {
        position: static;
        margin-top: 1em;
    }

    div.visa-logo {
        text-align: center;
        width: 12%;
        margin: 0 auto;
    }

    .mobile-float {
        display: block;
        right: 18px;
        top: 18px;
        padding: 10px 15px !important;
    }

    button {
        padding: 1.2em 2em !important;
    }

    .gold-btn {
        /* font-size: 18px; */
    }

    .change-img-text {
        display: flex;
        flex-direction: column;
    }

    #section06 .img-wrapper {
        max-width: 300px;
    }

    #section06 .img-wrapper img {
        max-width: 300px;
    }

    #section06 .section-inner-content {
        width: 100%;
        padding: 0 10% 30px 7%;
    }

    #section02 .section-inner-content {
        margin: 0 !important;
        flex-direction: column !important;
    }

    .col-ch {
        grid-template-columns: 1fr;
    }

    .col-ch div.desc-text-wrapper {
        padding-left: 0;
    }

    #section01 .section-inner-content {
        padding: 5% 2%;
    }

    .bet-responsibly {
        display: block;
    }

    #section07 .section-inner-content {
        margin: 0;
    }
}

@media screen and (max-width: 460px) {
    #section01 h3 {
        line-height: 1.4em;
    }

    .gold-btn {
        /* font-size: 14px; */
        font-weight: 500;
        /* padding: 15px 30px !important; */
    }

    .toggle-hide {
        display: block;
    }

    #section05 .section-inner-content {
        padding: 2% 10%;
    }

    #section02 h3 {
        margin: 0 10px 45px 10px;
        font-size: 1.5em;
        font-weight: 500;
    }

    #section02a h3 {
        margin: 0 10px 5px 0px;
        font-size: 1.1em;
        font-weight: 500;
    }

    #section03A h3 {
        font-weight: 500;
        max-width: 250px;
    }

    #section03 .img-wrapper {
        margin: 15px auto;
    }

    #section03B {
        width: 90%;
    }

    #section03B .section-inner-content {
        padding: 35px 20px !important;
    }

    #section03B .section-inner-content h4 {
        font-size: 1.5em;
        font-weight: 600;
        margin: 0;
    }

    #section03B .section-inner-content p {
        font-size: 1.2em;
        font-weight: 500;
    }

    #section05 .prtnr-gallery-grid-wrapper .img-wrapper,
    #section05 .prtnr-gallery-grid-wrapper img {
        max-width: 250px !important;
        margin: 15px;
    }

    #section05 h2 {
        margin-bottom: 60px;
        font-weight: 500;
    }

    #section06 h2 {
        font-weight: 500;
    }

    #section06 h4 {
        font-weight: 600;
        font-size: 1.5em;
    }

    #section06 p {
        font-weight: 500;
        font-size: 1.2em;
    }

    #section07 h2 {
        font-weight: 700;
        font-size: 1.5em;
    }

    .inner-para {
        margin: 36px 0;
    }

    #calc h2 {
        font-weight: 500;
    }

    #calc .section-inner-content {
        padding: 40px 5px;
    }

    #footer p,
    #footer a {
        font-size: 1.2em;
        font-weight: 500;
    }

    #footer .text-wrapper {
        grid-template-columns: none;
        padding: 0;
    }

    #footer.height-sm {
        height: auto;
    }
}