* { 
    margin: 0; 
    padding: 0;
}
@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('woff2');
    font-display: swap;
}

/* ---------- general */

a { 
    text-decoration: none;
    outline: none; 
    transition: all 0.3s; 
    color: #FFF;
}
a:hover,
a:active {
    color: #FDE609;
}
.page { 
    width: 87vw; 
    max-width: 100%;
    margin: 0 auto;
}
.page-s { 
    width: 80vw; 
    max-width: 100%;
    margin: 0 auto; 
}
body {
    background: #0058d7;
    color: #FFF;
    font-size: 1vw;
    line-height: 120%;
    font-family: Poppins-Regular, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}
body.content-page {
    background: #000;
    color: #FFF;
}
.btn-wrap {
    margin-bottom: 4vw;
}
.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #FDE609;
    padding: 1.8vw 1.5vw;
    padding-right: 2vw;
    color: #000;
    font-family: Poppins-Bold, Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 160%;
    text-align: center;
    border: none;
    border-radius: 1vw;
    cursor: pointer;
    text-decoration: none !important; 
    margin: 1.6vw 0;
}

.btn:hover, .btn:active {
    color: #fff;
    background: #1E1E1E;
}
.btn .icon {
    height: 1.6vw;
    margin-right: 0.5vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn .icon img {
    height: 2vw;
}
.btn.btn-dark {
    background: none;
    color: #FFF;
    border: 1px solid #fff;
    font-size: 120%;
    padding: 1vw 0vw;
    padding-right: 1.8vw;
}
.btn.btn-light {
    background: #FFF;
    color: #2196F3;
    font-size: 120%;
    padding: 1vw 0vw;
    padding-right: 1.8vw;
}
.btn.btn-dark .icon img,
.btn.btn-light .icon img {
    margin-right: -0.5vw;
    height: 1.6vw;
}

h1, h2, h3, h4 {
    color: #FFF;
    font-family: Poppins-Bold, Helvetica, Arial, sans-serif;
    font-weight: 700;
}
h1 {
    font-size: 260%;
    margin-bottom: 1.2vw;
    font-weight: bold;
}
h2 {
    font-size: 267%;
    margin-bottom: 0.8vw;
}
h3 {
    font-size: 187.5%;
    margin-bottom: 0.8vw;
}
h4 {
    font-size: 100%;
    margin-bottom: 0.4vw;
    font-family: Poppins-Regular, Helvetica, Arial, sans-serif;
    font-weight: 600;    
}
h1, h2, h3, h4 {
    line-height: 120%;
}

.yellow {
    color: #FDE609;
}

/* ---------- content page */

.section.topmenu {
    position: relative;
    padding: 0vw 0;
    flex: 0 0 auto;
    z-index: 5;
}
body.content-page .content {
    padding-top: 0;
}
body.content-page h1 {
    font-size: 130%;
    margin-bottom: 0.5vw;
}
body.content-page h2 {
    margin-top: 3vw;
}
body.content-page p {
    padding: 0.5vw 0;
}
body.content-page .btn-wrap,
body.content-page ol, body.content-page ul{
    margin-top: 3vw;
    margin-left: 4vw;
    margin-bottom: 0;
}
body.content-page ol li,
body.content-page ul li{
    padding: 1vw 0;
    padding-left: 1vw;
}

/* ---------- flex */

.flex { 
    display: flex; 
    justify-content: space-between; 
}
.flex.column {
    flex-direction: column;
}
.flex.center {
    align-items: center;
    justify-content: center;
}

/* ---------- sections */

.sections {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 0vw;
}
.section {
    position: relative;
    padding: 4vw 0;
    flex: 0 0 auto;
    z-index: 5;
}
.section > h3{
    text-align: center;
    margin-bottom: 3vw;    
}
.section .p {
    margin-bottom: 1vw;
}
.section .image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section .image img {
    width: 20.91vw;
    height: auto;
    image-rendering: optimizeQuality;
}
.section .info {
    flex: 1 1 auto;
    align-items: flex-start;
    justify-content: center;
}
.section.left-side > .page.flex {
    flex-direction: row;
}
.section.right-side > .page.flex {
    flex-direction: row-reverse;
}
.section.central h2 {
    text-align: center;
}

/* ---------- nav */

nav {
    flex: 1 1 auto;
}
nav ul {
    height: 100%;
}
nav ul.flex {
    gap: 2.3vw;
    justify-content: flex-end;
    align-items: center;
}
nav li {
    list-style: none;
}
.mobile {
    display: none;
}
nav a {
    color: #9EB1CB;
    font-size: 110%;
}
nav a:hover {
    color: #fff;
}

/* ----------------------------------- MAIN BG */

.mainbg {
    flex: 1 1 auto;
    background: url('../media/bg.webp') center center no-repeat;
    background-size: cover;
    justify-content: center;
    overflow: hidden;
    max-width: 100vw;
    position: relative;
}
.mainbg .scroller-wrap {
    rotate: -20deg;
    position: absolute;
    z-index: 20;
    bottom: -4vw;
    left: 0vh;
}
.mainbg .scroller {
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: uppercase;
    padding-left: 0vw;
    width: 100vw;
    color: #1E1E1E;
    font-size: 144%;
    font-style: italic;
    font-weight: bold;
    z-index: 10;
}
.mainbg .scroller2 {
    position: absolute;
    top: 0;
    z-index: 5;
}
.mainbg .scroller span{
    white-space: nowrap;
    height: 3.6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5vw;
    background: #FDE609;
}
.mainbg .scroller .iicon {
    flex: 0 0 1.8vw;
}
.mainbg .scroller .iicon img {
    width: 100%;    
    height: 100%;
    object-fit: contain;
}

/* ----------------------------------- HERO */

.section.hero {
    flex: 0 0 auto;
}
.section.hero h1 {
    display: flex;
    flex-wrap: wrap;
    width: 30vw;
    column-gap: 1vw;
}
.section.hero .subheader {
    font-size: 60%;
    line-height: 170%;
    font-weight: normal;
}
.section.hero .lgheader {
    font-size: 220%;
    line-height: 100%;
    font-weight: normal;
}
.section.hero .headerimg {
    width: 25.625vw;
    height: auto;
    margin-bottom: -1vw;
}
.section.hero .amazing {
    flex: 1 1 90%;
}
.section.hero .diamond {
    position: relative;
}
.section.hero .image {
    position: relative;
    flex: 1 1 auto;
    height: 39.4vw;
    min-width: 45vw;
    margin-left: -12vw;
}
.section.hero .image .player{
    position: absolute;
    width: 106%;
    height: 106%;
    object-fit: contain;
    z-index: 5;
    bottom: -3%;
    right: -3%;
}
.section.hero .btn {
    animation: btn-bounce 3s infinite;
}
@keyframes btn-bounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.02);
    }
    70% {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}
.section.hero .info {
    flex: 0 0 40%;
    padding: 1vw 3.5vw;
}
.steps-text {
    flex: 1 1 auto;
    padding-bottom: 2vw;
    display: flex;
    text-align: left;
    align-items: flex-end;
    justify-content: center;
}
.steps {
    gap: 1vw;
}
.steps .arrow {
    align-items: center;
    justify-content: center;
}
.steps .arrow img{
    width: 1.2vw;
    height: 1.2vw;
}
.steps .step {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 85%;
    white-space: nowrap;
}
.icon {
    width: 3.5vw;
    height: 3.5vw;
    margin-right: 1.5vw;
}

/* ----------------------------------- FOOTER */

.section.footer {
    background: #000;
    padding: 3vw 0;
}
.section.footer > .flex{
    gap: 3vw;
}
.section.footer nav {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 80%;
}
.section.footer .smalltxt {
    flex: 1 1 40%;
    font-size: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

/* ----------------------------------- RESPONSIVE */

@media screen and (max-aspect-ratio: 7/4) and (min-aspect-ratio: 1/1) {

    body {
        font-size: 1.4vw
    }
    .btn-wrap {
        margin-top: 1.6vw;
    }
    .btn,
    .btn.btn-dark {
        padding: 2vw 2vw;
        padding-right: 3vw;
        border-radius: 1vw;
        margin: 2vw 0;
        font-size: 140%;
    }
    h1 {
        margin-bottom: 1vw;
    }
    h2 {
        margin-bottom: 1vw;
    }
    h3 {
        margin-bottom: 1vw;
    }
    h4 {
        margin-bottom: 0.5vw;
    }
    nav ul.flex {
        gap: 3.013vw;
    }
    .logo img {
        height: 4.5vw;
    }
    .section.hero .info {
        flex: 0 0 40vw;
    }
    .section.footer nav {
        flex: 1 1 30%;
        font-size: 90%;
    }
    .section.footer .smalltxt {
        flex: 1 1 40%;
        font-size: 70%;
    }
    .section.hero .headerimg {
        width: 30vw;
        margin-bottom: -2vw;
    }
    .section.hero .image .bubble2{
        right: 8vw;
    }
    .section.hero .image .bubble1{
        left: 8vw;
    }
}

@media screen and (max-aspect-ratio: 1/1) {

    body {
        font-size: 3.7383vw;
    }
    .page {
        width: 86vw;
    }
    .page-s {
        width: 86vw;
    }
    h1 {
        font-size: 200%;
        line-height: 120%;
        width: 100%;
        margin-bottom: 2vw;
    }
    .icon {
        width: 8vw;
        height: 8vw;
        margin-right: 3vw;
    }
    
    .steps {
        position: absolute;
        bottom: -110vw;
        margin: 0 auto;
        left: 0;
        z-index: 20;        
        display: block;
        width: 70vw;
        margin-left: 9vw;
        height: 30vw;
    }
    .steps .step {
        position: absolute;
        left: 8vw;
        height: 30vw;
        transition-duration: 0.5s;
        opacity: 0;
        transform: translateX(40%);
        font-size: 110%;
        line-height: 120%;
        text-align: left;
    }
    .steps .step.out {
        opacity: 0;
        transform: translateX(-20%);
    }
    .steps .step.in {
        opacity: 1;
        transform: translateX(0%);
    }
    .steps .icon {
        width: 18vw;
        height: 18vw;
        margin-right: 5vw;
    }
    .steps .arrow {
        display: none;
    }
    .section.hero .subheader {
        font-size: 40%;
        line-height: 120%;
        width: 100%;
    }
    .section.hero > .flex {
        flex-direction: column;
    }
    .section.hero .info {
        text-align: center;
        padding: 8vw 5vw;
        flex: 1 1 auto;
        position: relative;
    }
    .btn-wrap {
        width: 70vw;
        margin: 2vw auto;
        margin-bottom: 0;
    }
    .btn {
        font-size: 130%;
        border-radius: 4vw;
        padding: 6vw 4vw;
    }
    .btn .icon img {
        height: 6vw;
        margin-right: 3vw;
        margin-left: 1vw;
    }
    .logo img {
        height: 8vw;
    }
    .steps-text {
        width: 100%;
        text-align: center;
    }
    .mainbg {
        padding: 0;
        padding-bottom: 26vw;
    }
    .section.hero .image {
        margin: 0;
        margin-top: 2vw;
        padding: 0;
        height: 90vw;
    }
    .section.hero .image .player {
        width: 100vw;
        height: 102vw;
        object-fit: contain;
        z-index: 5;
        margin-right: -6vw;
    }
    .section.footer > .flex {
        flex-direction: column;
        gap: 6vw;
        padding-top: 6vw;
    }
    .section.footer > .flex nav ul {
        flex-wrap: wrap;
        gap: 9vw;
        align-items: flex-start;
        justify-content: flex-start;
        font-size: 120%;
    }
    .section.footer > .flex nav ul li {
        flex: 1 1 90%;
        text-align: center;
    }
    .section.footer .smalltxt {
        font-size: 70%;
        align-items: flex-start;
        justify-content: flex-start;
        margin-bottom: 8vw;
        margin-top: 5vw;
    }

    .mainbg .scroller-wrap {
        rotate: 25deg;
        bottom: auto;
        top: 0vw;
    }
    .mainbg .scroller span{
        height: 11vw;
        padding: 0 2vw;
    }
    .mainbg .scroller .iicon {
        flex: 0 0 5vw;
    }

    .btn.btn-dark,
    .btn.btn-light {
        font-size: 120%;
        padding: 5vw 0vw;
        padding-right: 1.8vw;
    }
    .btn.btn-light .icon img,
    .btn.btn-dark .icon img {
        margin-right: 2vw;
        height: 5vw;
    }
    
    .section.hero .headerimg {
        width: 76vw;
        height: auto;
        margin-bottom: -1vw;
    }
    .section.footer .icon {
        width: 16vw;
        height: 16vw;
        margin-right: 4vw;
    }
    body.content-page h2 {
        font-size: 150%;
        margin-top: 9vw;
        margin-bottom: 3vw;
    }
    body.content-page ul,
    body.content-page ol{
        margin-top: 3vw;
        margin-left: 4vw;
        margin-bottom: 0;
    }
    body.content-page ul li,
    body.content-page ol li{
        padding: 1vw 0;
        padding-left: 1vw;
    }
}