@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;500;700&display=swap');

* {
    font-family: 'Inter', sans-serif;

    --green: #339966;
    --orange: #FF9933;
    --black: #111B21;
    --blacker: #090f13;
    --grey: #C5C4C2;
    --white: #e6e4e2;

    --accent: #FFCF0F;
    --contrast: #00565F;
    --footer: #090f13;

    --fontbasesize: 16px;
}

body {
    position: relative;
}

#firstline {
    height: 20px;
    position: absolute;
}

.navbar {
    transition: all .4s ease-in-out;
}

@media (min-width: 990px) {
    .navbar.transparentize {
        background-color: transparent !important;
    }
}

#front-media {
    min-height: 420px;
    height: 50vh;

    opacity: 1;
    position: absolute;
    object-fit: cover;
    object-position: center center;
    filter: brightness(.4);
}

#front-container {
    min-height: 420px;
    height: 100vh;

    background-color: #00181B;
    background-size: cover;
}

#front-content {
    padding-top: clamp(150px, 10vh, 250px);
    padding-bottom: 50px;
}

textarea {
    resize: vertical;
    width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.separador {
    height: 2rem;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: clamp(1.5 * var(--fontbasesize), 3vw, 1.6 * var(--fontbasesize));
    font-weight: 700;
}

h1.super {
    font-size: clamp(2.2 * var(--fontbasesize), 3vw, 2.5 * var(--fontbasesize));
}

h2 {
    font-size: clamp(1.4 * var(--fontbasesize), 3vw, 1.5 * var(--fontbasesize));
}

h3 {
    font-size: clamp(1.3 * var(--fontbasesize), 3vw, 1.4 * var(--fontbasesize));
}

h4 {
    font-size: clamp(1.2 * var(--fontbasesize), 3vw, 1.3 * var(--fontbasesize));
}

h5 {
    font-size: clamp(1.1 * var(--fontbasesize), 3vw, 1.2 * var(--fontbasesize));
}

p {
    font-size: clamp(1 * var(--fontbasesize), 3vw, 1.1 * var(--fontbasesize));
}

li {
    font-size: clamp(0.85 * var(--fontbasesize), 3vw, 1 * var(--fontbasesize));
}

footer {
    padding: 50px 0;
    background-color: var(--footer);
    color: var(--white);
}

#nav-logo {
    transition: all .4s ease-in-out;
}

.glassmorph {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--black);
}

.neomorph {
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
    box-shadow: -5px -5px 9px rgba(255, 255, 255, 0.25), 5px 5px 9px rgba(94, 104, 121, 0.3);
}

.subtext {
    opacity: .6;
}

.contenedor-1600 {
    width: min(100% - 16px, 1600px);
    margin-inline: auto;
}

.contenedor-1200 {
    width: min(100% - 60px, 1200px);
    margin-inline: auto;
}

.mybtn {
    background-color: var(--accent);
    border: none;
    color: var(--contrast);
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    transition: all .2s;
}

.mybtn:hover {
    background-color: var(--contrast);
    color: var(--accent);

    transition: all .2s;
}

.sitemap {
    list-style: none;
    margin-top: 1rem;
}

.sitemap li {
    margin-bottom: .5rem;
}

.sitemap a {
    text-decoration: none;
    color: var(--white);
}

/* ANIMATIONS */

.anim-fade {
    animation: anim-fade .6s ease-in-out;
}

.anim-fadefromdown {
    animation: anim-fadefromdown .6s ease-in-out;
}

.anim-delay-1 {
    animation-delay: .2s;
    animation-fill-mode: both;
}

.anim-delay-2 {
    animation-delay: .4s;
    animation-fill-mode: both;
}

.anim-delay-3 {
    animation-delay: .6s;
    animation-fill-mode: both;
}

.anim-delay-4 {
    animation-delay: .8s;
    animation-fill-mode: both;
}

@keyframes anim-fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: initial;
    }
}

@keyframes anim-fadefromdown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: initial;
        transform: translateX(0);
    }
}