html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    padding: 0;
    border: none;
}

ul {
    list-style: none;
}

body {
    background-color: #031330;
    font-family: "Montserrat", sans-serif;
    color: #FFFFFF;
}

.desktop {
    display: none !important;
}

/* ANCHOR IN CONTENT - EFFECT & TRANSITIONS */

.text-anchor {
    color: #3176BC;
    font-weight: 700;
}

.text-anchor:hover {
    color: #46ba6f;
    font-weight: 700;
    transition: 0.2s ease-in-out;
}

/* HOVER EFFECT & TRANSITIONS */

.desktop a:hover {
    color: #46ba6f;
    transition: 0.2s ease-in-out;
}

.register:hover {
    box-shadow: #46ba6f 0 0 30px 0.1px;
    transition: 0.2s ease-in-out;
}

.login:hover {
    background-color: #3176BC;
    box-shadow: #3176BC 0 0 30px 0.1px;
    transition: 0.2s ease-in-out;
}

.hero-cta {
    box-shadow: rgba(0, 0, 0, 0.247) 0 0 30px 0.1px;
}

.hero-cta:hover {
    box-shadow: #46ba6f 0 0 30px 0.1px;
    transition: 0.2s ease-in-out;
}

.why-cta {
    box-shadow: rgba(0, 0, 0, 0.247) 0 0 30px 0.1px;
}

.why-cta:hover {
    box-shadow: #3176BC 0 0 30px 0.1px;
    transition: 0.2s ease-in-out;
}

.how-cta {
    box-shadow: rgba(0, 0, 0, 0.247) 0 0 30px 0.1px;
}

.how-cta:hover {
    box-shadow: #46ba6f 0 0 30px 0.1px;
    transition: 0.2s ease-in-out;
}


/* TABLET > LAPTOP > DESKTOP */

@media screen and (min-width: 640px) {
    .desktop {
        display: flex !important;
    }

    .mobile {
        display: none !important;
    }
}

header {
    position: relative;
    height: 12.791vw;
    display: flex;
}

.logo {
    width: 34.884vw;
    position: absolute;
    top: 3.256vw;
    left: 2.558vw;
}

nav {
    position: absolute;
    left: 2.326vw;
    top: 7.209vw;
    display: flex;
    gap: 1.628vw;
}

nav a {
    font-weight: 700;
    font-size: 2.326vw;
}

.menu {
    position: absolute;
    right: 2.791vw;
    top: 3.488vw;
    display: flex;
    gap: 2.326vw;
}

.menu a {
    display: block;
    padding: 1.395vw 3.256vw;
    border-radius: 0.698vw;
    font-weight: 600;
    font-size: 2.558vw;
}

.register {
    border: 0.233vw solid #46ba6f;
    background-color: #46ba6f;
}

.login {
    border: 0.233vw solid #ffffff;
}

.hero {
    position: relative;
    padding: 8vw 8vw;
    background-size: cover;
    background-image: url(../images/hero-slots.png);
    color: white;
    /* optional, ensures text is visible */
    z-index: 0;
    /* makes sure overlay sits under content */
    display: flex;
    flex-direction: column;
    min-height: 95vh;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* top, right, bottom, left = 0 */
    background: linear-gradient(rgba(3, 19, 48, 0.9),
            /* top colour stop */
            rgba(50, 118, 188, 0.9)
            /* bottom colour stop */
        );
    z-index: -1;
    /* keep overlay behind hero content */
}

.hero-wrapper {
    width: 100%;
    text-align: center;
}

.hero-wrapper-2 {
    width: 100%;
    margin-top: 60px;
}

.hero-wrapper-2 img {
    width: 100%;
    border-radius: 20px;
}

.hero-logo {
    margin: 0 auto;
    width: 40vw;
    padding-bottom: 15px;
}

h1 {
    margin: 0 auto;
    margin-top: 2.326vw;
    font-size: 6.279vw;
    text-transform: uppercase;
    width: 100%;
    padding-bottom: 15px;
    line-height: 1.3;
}

.hero-description {
    margin: 0 auto;
    margin-top: 2.558vw;
    width: 100%;
    padding-bottom: 15px;
}

.hero-description p {
    font-size: 3.256vw;
    font-weight: 500;
    line-height: 1.25;
}

@media screen and (max-width: 640px) {
    .hero-description p {
        font-size: 4.256vw;
        line-height: 1.25;
        margin: 0 auto;
    }

    .hero {
        background-image: url(../images/hero-slots.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

}

.hero-cta {
    display: inline-block;
    padding: 3vw 5vw;
    font-weight: 600;
    font-size: 5vw;
    border-radius: 1vw;
    margin-top: 8vw;
    background-color: #46ba6f;
}


.type {
    margin: 0 auto;
    margin-top: 4.651vw;
    width: 77.907vw;
    margin-bottom: 8vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.type img {
    border-radius: 20px;
}

.why {
    position: relative;
    text-align: center;
    border: solid;
    padding: 5vh 2vh;
    background-color: rgb(243, 243, 243);
}

.why h2 {
    text-transform: uppercase;
    font-size: 5.581vw;
    margin-bottom: 8vw;
    line-height: 1.3;
}

.why p {
    margin: 0 auto;
    font-size: 2.791vw;
    line-height: 1.25;
    width: 90%;
}

@media screen and (max-width: 640px) {
    .why p {
        font-size: 3.8vw;
    }
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #031330;
}

@media screen and (max-width: 640px) {
    .left {
        padding-top: 1.25em;
        padding-bottom: 1.25em;

    }
}

.left-1 {}

.why-cta {
    margin: 0 auto;
    margin-top: 8vw;
    display: inline-block;
    padding: 3vw 5vw;
    font-weight: 600;
    font-size: 5vw;
    border-radius: 0.93vw;
    background-color: #3176BC;
    color: white;
    display: inline-flex;
    width: auto;
    justify-content: center;
}

.right {
    margin: 0 auto;
    margin-top: 4.651vw;
    display: flex;
    flex-direction: column;
    gap: 4.651vw;
    color: #031330;
}

.right-div {
    position: relative;
    background-image: url(../images/star.webp);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    border: 0.233vw solid #61707e;
    border-radius: 3.256vw;
    width: 77.907vw;
    height: 30.233vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0.233vw 0.233vw 1.86vw #ababab;
}

.number {
    position: absolute;
    top: 11.395vw;
    left: 12.558vw;
    font-weight: 700;
    font-size: 8.14vw;
    color: white;
}

.right-div h3 {
    margin: 0;
    width: 40.698vw;
    font-size: 3.721vw;
    text-align: left;
    margin-bottom: 0.698vw;
}

.right-div p {
    margin: 0;
    width: 40.698vw;
    text-align: left;
}

.right-1 {}

.right-2 {}

.right-3 {}

.how {
    padding: 10vw 8vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
}

.how h2 {
    text-transform: uppercase;
    font-size: 5.581vw;
    margin-bottom: 8vw;
    line-height: 1.3;
}

.how-description {
    margin-bottom: 8vw;
    text-align: left;
}

.how-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 3.256vw;
    justify-content: space-between;
}

.how-box {
    border-radius: 2.791vw;
    border: 0.233vw solid white;
    padding: 3.256vw 3.721vw;
}

.how-box h3 {
    font-size: 3.8vw;
    margin-bottom: 1.5vw;
}

.how p {
    font-size: 3.8vw;
    line-height: 1.25;
}

.how-box p {
    font-size: 3vw;
}

.how-cta {
    margin: 0 auto;
    margin-top: 8vw;
    display: inline-block;
    padding: 3vw 5vw;
    font-weight: 600;
    font-size: 5vw;
    border-radius: 0.93vw;
    background-color: #46ba6f;
    color: white;
    display: inline-flex;
    width: auto;
    justify-content: center;
}

.geo {
    text-align: left;
    padding: 8vw 8vw;
    background-color: white;
    color: #031330;
}

.geo h2 {
    text-transform: uppercase;
    font-size: 5.581vw;
    padding-bottom: 5vw;
    line-height: 1.3;
}

.geo h3 {
    margin-top: 3vw;
    font-size: 2vw;
    margin-bottom: 2vw;
}

@media screen and (max-width: 640px) {
    .geo h3 {
        font-size: 4vw;
    }
}

.geo p {
    margin: 0 auto;
    font-size: 2.791vw;
    line-height: 1.25;
    width: 100%;
}

@media screen and (max-width: 640px) {
    .geo p {
        font-size: 3.8vw;
    }
}

.footer-logo {
    margin: 0 auto;
    width: 75vw;
    padding-bottom: 8vw;
}

.faq {
    text-align: left;
    padding: 8vw 8vw;
    background-color: rgb(241, 241, 241);
    color: #031330;
}

.faq h2 {
    text-transform: uppercase;
    font-size: 5.581vw;
    line-height: 1.3;
    padding-bottom: 2vw;
}

.faq h3 {
    margin-top: 3vw;
    font-size: 2vw;
    line-height: 1.3;
    margin-bottom: 2vw;
}

@media screen and (max-width: 640px) {
    .faq h3 {
        font-size: 4vw;
    }
}

.faq p {
    margin: 0 auto;
    font-size: 2.791vw;
    line-height: 1.25;
    width: 100%;
}

@media screen and (max-width: 640px) {
    .faq p {
        font-size: 3.8vw;
    }
}

footer {
    border-top: 0.233vw solid rgb(255, 255, 255, 0.4);
    padding: 6.977vw 0;
    position: relative;
    background-color: #06192c;
    display: flex;
    flex-direction: column;
    gap: 3.488vw;
}

footer p {
    margin: 0 auto;
    font-size: 2.791vw;
    line-height: 1.25;
    width: 90%;
    opacity: 40%;
    text-align: center;
}

.logos {
    margin: 0 auto;
    width: 79.767vw;
}

/* TABLET & DESKTOP */


@media screen and (min-width: 640px) {

    header {
        position: relative;
        height: 7.76vw;
        display: flex;
        max-width: 99.219vw;
        width: 100%;
        margin: 0 auto;
    }

    .logo {
        width: 13.021vw;
        position: absolute;
        top: 1.563vw;
        left: 2.604vw;
    }

    nav {
        position: absolute;
        left: 2.604vw;
        top: 5vw;
        display: flex;
        gap: 0.521vw;
    }

    nav a {
        font-weight: 600;
        font-size: 0.9vw;
    }

    .menu {
        position: absolute;
        right: 2.604vw;
        top: 2.865vw;
        display: flex;
        gap: 1.042vw;
    }

    .menu a {
        display: block;
        padding: 0.521vw 0.938vw;
        border-radius: 0.156vw;
        font-weight: 600;
        font-size: 0.729vw;
    }

    .register {
        border: 0.052vw solid #46ba6f;
        background-color: #46ba6f;
    }

    .login {
        border: 0.052vw solid #ffffff;

    }

    .hero {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .hero-wrapper {
        width: 80%;
        text-align: left;
        position: relative;
        padding-right: 100px;
    }

    .hero-wrapper-2 {
        width: 40%;
    }

    .hero-wrapper-2 img {
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    .hero-logo {
        margin: 0 auto;
        width: 25%;
        padding-bottom: 10px;
    }

    h1 {
        padding-bottom: 10px;
        font-size: 4.427vw;
        text-transform: uppercase;
        width: auto;
    }

    .hero-description {
        padding-bottom: 10px;
        width: 100%;
    }

    .hero-description p {
        font-size: 1.5vw;
        font-weight: 500;
        line-height: 1.25;
    }

    .hero-cta {
        display: inline-block;
        padding: 1.5vw 2.5vw;
        font-weight: 600;
        font-size: 2vw;
        border-radius: 0.3vw;
        margin-top: 3vw;
        background-color: #46ba6f;
    }

    .type {
        margin: 0 auto;
        width: 40.938vw;
        margin-bottom: 2vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .type img {
        width: 50%;
        border-radius: 10px;
    }

    .why {
        margin: 0 auto;
        position: relative;
        display: flex;
        width: 100%;
        padding: 8vw 8vw;
        justify-content: space-between;
        background-color: rgb(243, 243, 243);
    }

    .why h2 {
        text-transform: uppercase;
        font-size: 2.5vw;
        margin-bottom: 1.979vw;
        text-align: left;
        color: #06192c;
    }

    .why p {
        margin: 0;
        font-size: 1.2vw;
        line-height: 1.3;
        text-align: left;
        color: #06192c;
    }

    .left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 50vw;
    }

    .left-1 {}

    .why-cta {
        margin: 0;
        margin-top: 2.344vw;
        display: inline-block;
        width: 17vw;
        padding: 1.5vw 2.5vw;
        font-weight: 600;
        font-size: 2vw;
        border-radius: 0.3vw;
        background-color: #3176BC;
    }

    .right {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.302vw;
    }

    .right-div {
        position: relative;
        background-image: url(../images/star.webp);
        background-repeat: no-repeat;
        background-size: contain;
        margin: 0 auto;
        margin-top: 0vw;
        border: 0.052vw solid #61707e;
        border-radius: 0.729vw;
        width: 23.438vw;
        height: 9.635vw;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        box-shadow: 0.052vw 0.052vw 0.417vw #ababab;
    }

    .number {
        position: absolute;
        top: 3.385vw;
        left: 3.75vw;
        font-weight: 700;
        font-size: 2.969vw;
        color: white;
    }

    .right-div h3 {
        margin: 0;
        width: 12.083vw;
        font-size: 0.99vw;
        text-align: left;
        margin-bottom: 0.365vw;
    }

    .right-div p {
        margin: 0;
        width: 12.083vw;
        font-size: 1vw;
        text-align: left;
        padding-right: 0.625vw;
        line-height: 1.3;
    }

    .right-1 {}

    .right-2 {}

    .right-3 {}

    .how {
        position: relative;
        padding: 8vw 8vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #000;
    }

    .how h2 {
        text-transform: uppercase;
        font-size: 2.5vw;
        margin-bottom: 1.979vw;
        width: 80vw;
        justify-content: center;
        text-align: center;
    }

    .how-description {
        width: 60vw;
        margin-bottom: 1.979vw;
        text-align: center;
    }

    .how-list {
        width: 60vw;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: unset;
        row-gap: 1.302vw;
        justify-content: space-between;
    }

    .how-box {
        border-radius: 0.625vw;
        border: 0.052vw solid white;
        padding: 1.146vw 1.25vw;
        width: 49%;
    }

    .how-box h3 {
        font-size: 1.7vw;
        margin-bottom: 0.417vw;
    }

    .how p {
        font-size: 1.2vw;
        line-height: 1.3;
    }

    .how-cta {
        margin: 0;
        margin-top: 2.344vw;
        display: inline-block;
        padding: 1.5vw 2.5vw;
        font-weight: 600;
        font-size: 2vw;
        border-radius: 0.3vw;
        background-color: #46ba6f;
    }

    .geo {
        text-align: center;
        background-color: white;
        color: #031330;
        padding: 8vw 20vw;
    }

    .geo h2 {
        margin: 0 auto;
        text-transform: uppercase;
        font-size: 2.5vw;
        padding: 2vw 0;
        width: 100%;
    }

    .geo p {
        margin: 0 auto;
        font-size: 1.3vw;
        line-height: 1.3;
        width: 100%;
    }

    .faq {
        text-align: center;
        background-color: rgb(241, 241, 241);
        color: #031330;
        padding: 8vw 20vw;
    }

    .faq h2 {
        margin: 0 auto;
        text-transform: uppercase;
        font-size: 2.5vw;
        line-height: 1.3;
        padding: 2vw 0;
        width: 100%;
    }

    .faq p {
        margin: 0 auto;
        font-size: 1.2vw;
        line-height: 1.3;
        width: 100%;
    }

    footer {
        border-top: 0.052vw solid rgb(255, 255, 255, 0.4);
        padding: 2.604vw 0;
        position: relative;
        background-color: #06192c;
        display: flex;
        flex-direction: column;
        gap: 1.042vw;
    }

    footer p {
        margin: 0 auto;
        font-size: 0.677vw;
        line-height: 1.25;
        width: 90%;
        opacity: 40%;
        text-align: center;
        max-width: 61.042vw;
    }

    .footer-logo {
        margin: 0 auto;
        width: 30vw;
        padding-bottom: 5vw;
    }

    .logos {
        margin: 0 auto;
        width: 17.865vw;
    }

}


@media screen and (min-width: 1920px) {

    header {
        position: relative;
        height: 149px;
        display: flex;
        max-width: 1905px;
        width: 100%;
        margin: 0 auto;
    }

    .logo {
        width: 250px;
        position: absolute;
        top: 30px;
        left: 50px;
    }

    nav {
        position: absolute;
        left: 50px;
        top: 96px;
        display: flex;
        gap: 10px;
    }

    nav a {
        font-weight: 700;
        font-size: 14px;
    }

    .menu {
        position: absolute;
        right: 50px;
        top: 55px;
        display: flex;
        gap: 20px;
    }

    .menu a {
        display: block;
        padding: 10px 18px;
        border-radius: 3px;
        font-weight: 600;
        font-size: 14px;
    }

    .register {
        border: 1px solid #46ba6f;
        background-color: #46ba6f;
    }

    .login {
        border: 1px solid #ffffff;

    }

    .hero {
        position: relative;
        height: auto;
        padding: 8vw 8vw;
    }

    .hero-wrapper {
        margin: 0 auto;
        width: 100%;
        text-align: left;
        position: relative;
        padding-right: 200px;
    }

    .hero-logo {
        width: 25%;
        margin-bottom: 15px;
        padding-bottom: 50px;
    }

    h1 {
        margin-bottom: 15px;
        font-size: 85px;
        text-transform: uppercase;
        width: auto;
    }

    .hero-description {
        margin-bottom: 15px;
        width: 100%;
    }

    .hero-description p {
        font-size: 30px;
        font-weight: 500;
        line-height: 1.25;
    }

    .hero-cta {
        display: inline-block;
        padding: 1.5vw 2.5vw;
        font-weight: 600;
        font-size: 2vw;
        border-radius: 6px;
        margin-top: 45px;
        background-color: #46ba6f;
        box-shadow: rgba(0, 0, 0, 0.247) 0 0 30px 0.1px;
    }

    .type {
        margin: 0 auto;
        margin-bottom: 2vw;
        width: 786px;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .why {
        margin: 0 auto;
        position: relative;
        display: flex;
        width: 100%;
        padding: 8vw 8vw;
        justify-content: space-between;
        background-color: rgb(243, 243, 243);
    }

    .why h2 {
        text-transform: uppercase;
        font-size: 2.5vw;
        margin-bottom: 38px;
        text-align: left;
    }

    .why p {
        margin: 0;
        font-size: 22px;
        line-height: 1.4;
        text-align: left;
    }

    .left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 50vw;
    }

    .left-1 {}

    .why-cta {
        display: inline-block;
        padding: 1.5vw 2.5vw;
        font-weight: 600;
        font-size: 2.5vw;
        border-radius: 0.3vw;
        background-color: #3176BC;
        margin-top: 4vw;
    }

    .right {
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .right-div {
        position: relative;
        background-image: url(../images/star.webp);
        background-repeat: no-repeat;
        background-size: contain;
        margin: 0 auto;
        margin-top: 0px;
        border: 1px solid #61707e;
        border-radius: 14px;
        width: 450px;
        height: 185px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        box-shadow: 1px 1px 8px #ababab;
    }

    .number {
        position: absolute;
        top: 65px;
        left: 72px;
        font-weight: 700;
        font-size: 57px;
        color: white;
    }

    .right-div h3 {
        margin: 0;
        width: 232px;
        font-size: 19px;
        text-align: left;
        margin-bottom: 7px;
    }

    .right-div p {
        margin: 0;
        width: 232px;
        font-size: 16px;
        text-align: left;
        padding-right: 12px;
        line-height: 1.3;
    }

    .right-1 {}

    .right-2 {}

    .right-3 {}

    .how {
        position: relative;
        padding: 8vw 8vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #000;
    }

    .how h2 {
        text-transform: uppercase;
        font-size: 2.5vw;
        margin-bottom: 38px;
    }

    .how-list {
        width: 1100px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: unset;
        row-gap: 25px;
        justify-content: space-between;
    }

    .how-box {
        border-radius: 12px;
        border: 1px solid white;
        padding: 22px 24px;
        width: 49%;
    }

    .how-box h3 {
        font-size: 1.146vw;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .how p {
        font-size: 22px;
        line-height: 1.4;
    }

    .how-cta {
        display: inline-block;
        padding: 1.5vw 2.5vw;
        font-weight: 600;
        font-size: 2.5vw;
        border-radius: 0.3vw;
        background-color: #46ba6f;
        margin-top: 2vw;
    }

    .geo {
        text-align: center;
        padding: 8vw 20vw;
        background-color: white;
        color: #031330;
    }

    .footer-logo {
        margin: 0 auto;
        width: 470px;
        padding-bottom: 5vw;
    }

    .geo h2 {
        margin: 0 auto;
        text-transform: uppercase;
        font-size: 2.5vw;
        padding-bottom: 2vw;
        width: 100%;
    }

    .geo p {
        margin: 0 auto;
        font-size: 22px;
        line-height: 1.3;
        width: 100%;
    }

    .faq {
        text-align: center;
        padding: 8vw 20vw;
        background-color: rgb(241, 241, 241);
        color: #031330;
    }

    .faq h2 {
        margin: 0 auto;
        text-transform: uppercase;
        font-size: 2.5vw;
        padding-bottom: 2vw;
        width: 100%;
    }

    .faq p {
        margin: 0 auto;
        font-size: 22px;
        line-height: 1.3;
        width: 100%;
    }

    footer {
        border-top: 1px solid rgb(255, 255, 255, 0.4);
        padding: 50px 0;
        position: relative;
        background-color: #06192c;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    footer p {
        margin: 0 auto;
        font-size: 13px;
        line-height: 1.25;
        width: 90%;
        opacity: 40%;
        text-align: center;
        max-width: 1172px;
    }

    .logos {
        margin: 0 auto;
        width: 343px;
    }

}


@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light.ttf') format('truetype')
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.ttf') format('truetype')
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype')
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.ttf') format('truetype')
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'), url('../fonts/Montserrat-ExtraBold.ttf') format('truetype')
}

@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Montserrat-Black.woff2') format('woff2'), url('../fonts/Montserrat-Black.ttf') format('truetype')
}


/* === Responsive Styles === */
@media screen and (max-width: 1024px) {

    .container,
    .section,
    .wrapper {
        padding: 20px;
    }

    h1,
    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .hero {
        background-size: cover;
        background-image: url(../images/hero-slots.png);
        background-position: center;
        /* centers the image */
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero {
        height: 60vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .flex,
    .row {
        flex-direction: column !important;
        align-items: center !important;
    }

    .column,
    .half {
        width: 100% !important;
        margin-bottom: 20px;
    }

    nav ul {
        flex-direction: column;
    }

    .container,
    .section {
        padding: 15px;
    }
}