@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:ital,wght@0,400..700;1,400..700&family=Bruno+Ace&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

html, button {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    color: black;
}

button {
    font-weight: 700
}

html,
body {
    margin: 0;
    padding: 0;
}

img:hover {
    cursor: pointer;
}

h1 {
    font-weight: 600;
    font-size: 2.25rem;
    color: var(--color-blue-800);
}

h2 {
    font-weight: 600;
    font-size: 2rem;
    color: var(--color-blue-800);
}

h3 {
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--color-blue-800);
}

h4 {
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-blue-800);
}

a {
    font-weight: 400;
    font-size: 1rem;
    align-self: center;
    color: var(--color-red-500);
}

p {
    font-weight: 400;
    font-size: 1rem;
}

strong {
    /* color: var(--color-red-500); */
    font-weight: 500;
}

bold {
    font-weight: 400;
}

input, textarea {
    background-color: rgba(147, 152, 179, 0.1);
    border-radius: 4px;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 1px;
    padding: 6px;
    font-size: 0.8rem;
    resize: none;
}

button {
    background-color: rgb(45, 60, 143);
    border-radius: 4px;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 1px;
    padding: 8px 24px;
    font-size: 0.85rem;
    font-weight: 400;
    color: white;
    cursor: pointer;
}

label {
    font-size: 0.8rem;
}

.glide {
    height: inherit;
}

.glide__track {
    height: inherit;
}

.glide__slides {
    height: inherit;
} 

img.glide__slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated {
    transition:
        opacity 0.5s ease,
        transform 0.3s ease,
        visibility 0.3s,
        max-height 0.6s ease;

    opacity: 1;
    max-height: 500px;
    transform: scale(1);
    visibility: visible;
}

.animated-hidden {
    opacity: 0;
    max-height: 0;
    transform: scale(0.95);
    visibility: hidden;
}

@media all and (max-width: 768px) {
    html,
    body {
        font-size: 18px;
    }
}