/* -------------------- MAIN -------------------- */
/* ---------- SETUP ---------- */
/* ----- FONTS ----- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
/* ----- VARIABLES ----- */
:root {
    /* COLORS */
    --darkGrey: #2F2D38;
    --darkGrey10: rgba(47, 45, 56, 0.1);
    --lightGrey: #F2F2F2;
    --mainBlue: #218AFA;
    --shadow: 0px 0px 15px rgba(47, 45, 56, 0.25);
    /* VALUES */ 
    --loaderTransitionIn: all 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    --loaderTransitionOut: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}
/* ---------- CSS ---------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Archivo, sans-serif;
}
::-webkit-scrollbar {
    display: none;
}
html {
    background-color: var(--lightGrey);
}
html, body {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    min-width: 300px;
    height: 100svh;
    display: flex;
    flex-direction: column;
    position: relative;
}
/* ---------- HERO SECTION ---------- */
/* ----- HERO CONTAINER ----- */
#heroContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}
/* CONTAINER - TRACKER CONTAINER */
#trackerWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
/* TITLE */
#heroTitle {
    color:var(--darkGrey);
    font-weight: 900;
    width: fit-content;
    font-size: 120px;
}
#heroTitle .line2 {
    font-size: .78em;
}
#heroTitle .matteContainer:has(.line2) {
  transform: translate(.05em,-0.15em);
}
/* LOGO RIVE */
#heroTracker{
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: drop-shadow(var(--shadow));
}

footer {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 0;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%);
}
footer a img {
    width: 50px;
    transition: transform 0.2s ease-in-out;
}
footer a:hover img {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}
/* -------------------- RESPONSIVE -------------------- */
/* ---------- MORE 1700px ---------- */
@media (min-width: 1700px) {
    #heroTitle {
        font-size: 140px;
    }
    #heroTracker{
        height: 170px;
    }
    footer {
        gap: 60px;
        padding: 55px 0;
    }
    footer a img {
        width: 60px;
    }
}
/* ---------- MORE 1570px ---------- */
@media (min-width: 1570px) and (max-width: 1700px) {
    #heroTitle {
        font-size: 130px;
    }
    #heroTracker{
        height: 160px;
    }
    footer {
        gap: 55px;
    }
    footer a img {
        width: 55px;
    }
}
/* ---------- LESS 1280px ---------- */
@media (max-width: 1280px) {
    #heroTitle {
        font-size: 110px;
    }
    #heroTracker{
        height: 140px;
    }
}

/* ---------- LESS 1135px ---------- */
@media (max-width: 1135px) {
    #heroTitle {
        font-size: 105px;
    }
    #heroTracker{
        height: 135px;
    }
    footer {
        gap: 45px;
    }
    footer a img {
        width: 45px;
    }
}

/* ---------- LESS 750px ---------- */
@media (max-width: 750px) {
    #heroTitle {
        font-size: 100px;
    }
    #heroTracker{
        height: 130px;
    }
    footer {
        gap: 40px;
    }
    footer a img {
        width: 40px;
    }
}

/* ---------- LESS 660px ---------- */
@media (max-width: 660px) {
    #heroTitle {
        font-size: 90px;
    }
    #heroTracker{
        height: 120px;
    }
}

/* ---------- LESS 550px ---------- */
@media (max-width: 550px) {
    #heroTitle {
        font-size: 80px;
    }
    #heroTracker{
        height: 110px;
    }
    footer {
        gap: 35px;
    }
    footer a img {
        width: 35px;
    }
}

/* ---------- LESS 480px ---------- */
@media (max-width: 480px) {
    #heroTitle {
        font-size: 75px;
    }
    #heroTracker{
        height: 105px;
    }
    footer {
        gap: 30px;
    }
    footer a img {
        width: 30px;
    }
}

/* ---------- LESS 405px ---------- */
@media (max-width: 405px) {
    #heroTitle {
        font-size: 65px;
    }
    #heroTracker{
        height: 95px;
    }
}

/* ---------- LESS 335px ---------- */
@media (max-width: 335px) {
    #heroTitle {
        font-size: 55px;
    }
    #heroTracker{
        height: 85px;
    }
    footer {
        gap: 25px;
    }
}