@import url('https://fonts.googleapis.com/css2?family=Merienda+One&family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html{
    line-height: 16px;
    font-size: 16px;
    overflow-x: hidden;
    scroll-padding-top: 50px;
    scroll-behavior: smooth;
}

body{
    overflow: hidden;
    color: #555;
}

img{
    width: 100%;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

strong{
    font-weight: 500;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

:root{
    --primary-color: #0932e1;
    --primary-color-2: #0973e6;
    --text-color: #07194f;
    --text-color-2: #777;
}


ul,ol{
    list-style: none;
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
    color: var(--text-color);
}

.backlinks{
    font-weight: 600;
    color: #fff;
}

.section{
    padding: 60px 0;
    position: relative;
}

.clearfix{
    height: 60px;
}



/* ===== Loading ===== */
.loading{
    background: #fff url(../imgs/loading-demo.gif) no-repeat center center;
    background-size: 4%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/*====== Reveal ======*/
.reveal{
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: all ease 1s;
}
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}

.services__service .reveal:nth-child(3n-2){
    transition: all ease 0.5s;
}
.services__service .reveal:nth-child(3n-1){
    transition: all ease 1s;
}
.services__service .reveal:nth-child(3n+0){
    transition: all ease 1.5s;
}


.data__content .reveal:nth-child(1){
    transition: all ease 0.5s;
}
.data__content .reveal:nth-child(2){
    transition: all ease 1s;
}
.data__content .reveal:nth-child(3){
    transition: all ease 1.5s;
}
.data__content .reveal:nth-child(4){
    transition: all ease 2s;
}

.reveal-2{
    position: relative;
    transform: translateX(30px);
    opacity: 0;
}
.reveal-2.active{
    transform: translateX(0);
    opacity: 1;
}


.partners__data .reveal-2:nth-child(6n-5){
    transition: all ease 0.3s;
}
.partners__data .reveal-2:nth-child(6n-4){
    transition: all ease 0.6s;
}
.partners__data .reveal-2:nth-child(6n-3){
    transition: all ease 0.9s;
}
.partners__data .reveal-2:nth-child(6n-2){
    transition: all ease 1.2s;
}
.partners__data .reveal-2:nth-child(6n-1){
    transition: all ease 1.5s;
}
.partners__data .reveal-2:nth-child(6n+0){
    transition: all ease 1.8s;
}

.reveal-3{
    position: relative;
    transform: translate(-20px,50px);
    opacity: 0;
}
.reveal-3.active{
    transform: translate(0,0);
    opacity: 1;
}

.gallery__list .reveal-3:nth-child(3n-2){
    transition: all ease 0.6s;
}
.gallery__list .reveal-3:nth-child(3n-1){
    transition: all ease 1.2s;
}
.gallery__list .reveal-3:nth-child(3n){
    transition: all ease 1.8s;
}

/* ===== ScrollUp ===== */
.scrollUp{
    position: fixed;
    bottom: -20%;
    right: 2.5rem;
    width: 40px;
    height: 46px;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    color: #555;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 99;
}
.scrollUp:hover{
    color: #000;
    transform: translateY(-5px);
}
.scrollUp.active{
    bottom: 3rem;
}

/*====== Cursor animation =======*/

.cursor{
    position: fixed;
    z-index: 99;
}

.cursor .click-animation{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cursor .click-animation .shape{
    position: absolute;
    opacity: 0;
}

.cursor .click-animation .shape.circle.big{
    width: 20px;
    height: 20px;
    border: 1px solid rgba(8, 21, 197, 0.25);
    border-radius: 50%;
}

.cursor .click-animation .shape.circle.small{
    width: 10px;
    height: 10px;
    border: 0.5px solid rgba(27, 62, 216, 0.25);
    border-radius: 50%;
}

.cursor.active .click-animation .shape.circle{
    animation: click-animation-circle 3s ease-out infinite;
}

@keyframes click-animation-circle {
    0%{opacity: 0;}
    5%{opacity: 1;}
    30%{opacity: 0; transform: scale(3);}
}

.cursor .click-animation .shape.triangle.yellow{
    border-style: solid;
    border-width: 0 3px 6px 3px;
    border-color: transparent transparent #00ade2 transparent;
}

.cursor.active .click-animation .shape.triangle.yellow{
    animation: click-animation-triangle-yellow 3s ease-out infinite;
}

@keyframes click-animation-triangle-yellow {
    0%{opacity: 0;}
    5%{opacity: 1;}
    40%{opacity: 0; transform: scale(2.5) translate(50px, -50px) rotate(360deg);}
}

.cursor .click-animation .shape.triangle.green{
    border-style: solid;
    border-width: 0 2px 4px 2px;
    border-color: transparent transparent #0932e1 transparent;
}
.cursor.active .click-animation .shape.triangle.green{
    animation: click-animation-triangle-green 3s ease-out infinite;
}

@keyframes click-animation-triangle-green {
    0%{opacity: 0;}
    5%{opacity: 1;}
    40%{opacity: 0; transform: scale(2.5) translate(20px, 50px) rotate(360deg);}
}

.cursor .click-animation .shape.disc{
    width: 4.5px;
    height: 4.5px;
    background: #9c1006;
    border-radius: 50%;
}
.cursor.active .click-animation .shape.disc{
    animation: click-animation-disc 3s ease-out infinite;
}
@keyframes click-animation-disc {
    0%{opacity: 0;}
    5%{opacity: 1;}
    40%{opacity: 0; transform: scale(2) translate(-70px, -30px);}
}


/* Base tvc */

.wrapper-title-tvc{
    margin-top: 50px;
    text-align: center;
}

.wrapper-title-tvc p{
    position: relative;
    display: inline-block;
    padding: 10px 0;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 700;
    color: #181c47;
}
.wrapper-title-tvc p::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: #000;
}

.offers{
    background: #1c4d6e;
}

.offers-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    padding: 10px 0;
}

.offers-content p{
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 500;
    animation: colorRange 3s linear infinite;
}

.offers-content img{
    width: 60px;
    transform: translateY(-4px);
}

@keyframes colorRange {
    0%{color: #ffffff;}
    50%{color: #fffd9f;}
    100%{color: #beffb8;}
}

.gift-box{
    display: inline-block;
    padding: 6px 40px;
    background: #fff;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    cursor: pointer;
}


.modal-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
}

.close-modal{
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 24px;
    display: inline-block;
    transition: .3s;
    cursor: pointer;
}
.close-modal:hover{
    transform: rotate(180deg);
}

.box-video{
    width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.box-video video{
    width: 100%;
}


/* Base brand */


.wrapper-title{
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.line-title{
    height: 9px;
    width: 150px;
    background-image: url(../brand/imgs/line-span.svg);
    background-repeat: no-repeat;
    background-size: 150px 9px;
    display: inline-block;
    margin-top: 16px;
}

.back-link{
    color: #07194f;
    font-weight: 600;
}