:root {
    --primary-color: #3ed4fe;
    --secondary-color: #ffdc7f;
    --sub-a-color: #2a8aa7;
    --sub-b-color: #b1cdd9;

    --bg-website-color: #0b1c25;
    --bg-primary-color: #102c39;
    --bg-secondary-color: #194255;
}

@font-face {
    font-family: "Inter";
    src: url('inter.woff2') format('woff2');
}
@font-face {
    font-family: "Inter";
    src: url('inter-bold.woff2') format('woff2');
    font-weight: bold;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bg-website-color);
    color: var(--sub-b-color);
    font-size: 16px;
    font-family: Inter;
    margin: 0;
    padding: 60px 0 0;
    line-height: 1.5;
}

a {
    color: var(--sub-b-color);
}

img {
    width: 100%;
}

section {
    padding: 0 1em;
    margin: 0 0 2em;
}

section.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: fixed;
    z-index: 1;
    background: var(--bg-website-color);
    width: 100%;
    inset: 0;
    height: 60px;
}

section.navigation .logo {
    width: 160px;
    line-height: 0;
}

section.navigation .burger-menu {
    width: 50px;
    line-height: 0;
}

section.slider {
    padding: 0;
    position: relative;
    line-height: 0;
}

section.slider img.background {
    height: 300px;
    object-fit: cover;
    object-position: bottom;
}

section.slider img.agent {
    width: auto;
    height: 270px;
    position: absolute;
    bottom: -45%;
    left: 60%;
    translate: -50% -50%;
}

section.slider .slider-button {
    background: var(--primary-color);
    color: black;
    border: none;
    position: absolute;
    translate: -50% -50%;
    font-weight: bold;
    font-family: 'Inter';
    padding: 0.5em 0.8em;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease-out all;
    top: 50%;
    left: 25%;
    font-size: 4vw;
}

section.slider .slider-button:hover {
    background: var(--secondary-color);
}

section.main .content-block {
    background: linear-gradient(180deg, var(--sub-a-color), var(--bg-primary-color));
    font-size: 1.2em;
    padding: 1em;
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.main .content-block .highlight {
    color: var(--sub-b-color);
}

section.main h1 {
    font-size: 1.8em;
    text-transform: uppercase;
    text-align: center;
    color: var(--secondary-color);
    margin: 1em 0 0.8em;
}

section.main .text-content h2 {
    font-size: 1.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 2em 0 0;
}

section.main .text-content h3 {
    font-size: 1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 2em 0 0;
}

section.main .text-content p {
    text-align: justify;
    font-size: 14px;
    margin: 0.8em 0;
}

section.footer {
    background: radial-gradient(var(--bg-primary-color) 10%, transparent 67%);
    font-size: 14px;
    text-align: center;
    margin: 10em 0 5em;
}

/*section.footer:before {*/
/*    content: '';*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: hidden;*/
/*    position: absolute;*/
/*    background: radial-gradient(#153f4e 10%, transparent 67%);*/
/*    left: 50%;*/
/*    top: 50%;*/
/*    translate: -50% -50%;*/
/*    z-index: -1;*/
/*}*/

section.footer .logo {
    width: 300px;
    margin: auto;
}

section.footer .footer-links {
    display: flex;
    gap: 2em;
    justify-content: center;
    margin: 2em 0;
}

section.footer .footer-header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0 1em 0;
}

section.footer .footer-header-row .heading {
    font-size: 1.8em;
    margin: 0.6em 0;
    text-align: center;
}

section.footer .footer-header-row .ggl-logo {
    width: 200px;
    text-align: center;
}

section.footer .footer-header-row .ggl-logo .slogan {
    font-weight: bold;
    padding: 0.5em;
    display: inline-block;
    color: white;
    font-size: 18px;
}

section.footer .date {
    font-size: 0.9em;
    font-weight: bold;
}

section.footer p {
    margin: 1.5em 0;
}

section.footer span.age {
    color: white;
    background: var(--sub-a-color);
    width: 40px;
    aspect-ratio: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 0.5em 0 0;
    text-shadow: 1px 1px black;
}

/* DESKTOP */
@media screen and (min-width: 992px) {
    body {
        padding: 80px 0 0;
    }

    section {
        padding: 0 6.5em;
        margin: 0 0 5em;
    }

    section.slider img.background {
        height: calc(100vh - 80px);
    }

    section.slider img.agent {
        height: 90%;
        left: 55%;
    }

    section.main .content-block {
        font-size: 2.5em;
        padding: 1em;
    }

    section.main .content-block p {
        width: 50%;
    }

    section.main .text-content p {
        text-align: left;
        font-size: 16px;
    }

    section.main h1 {
        font-size: 3.6em;
    }

    section.main .text-content h2 {
        font-size: 2em;
        margin: 1.5em 0 0;
    }

    section.main .text-content h3 {
        font-size: 1.6em;
        margin: 1.5em 0 0;
    }

    section.navigation {
        height: 80px;
    }

    section.navigation .logo {
        width: 200px;
    }

    section.navigation .burger-menu {
        width: 60px;
    }

    section.footer .logo {
        margin: 0;
    }

    section.footer {
        font-size: 16px;
        text-align: left;
    }

    section.footer .footer-header-row {
        justify-content: right;
        flex-wrap: nowrap;
        height: 0;
    }

    section.footer .footer-header-row .heading {
        font-size: 2em;
        margin: 1em 0;
        text-align: left;
    }

    section.footer .footer-links {
        justify-content: right;
    }
}
