:root {
    --text-800: clamp(4rem, 3.9rem + .5vw, 4.5rem);
    --text-700: clamp(2.625rem, 2.55rem + .375vw, 3rem);
    --text-650: clamp(2.25rem, 2.2rem + .25vw, 2.5rem);
    --text-600: clamp(1.75rem, 1.7rem + .25vw, 2rem);
    --text-500: clamp(1.3125rem, 1.275rem + .1875vw, 1.5rem);
    --text-450: clamp(1.125rem, 1.0875rem + .1875vw, 1.3125rem);
    --text-400: clamp(1rem, .975rem + .125vw, 1.125rem);
    --text-300: clamp(.875rem, .85rem + .125vw, 1rem);
    --text-200: clamp(.75rem, .725rem + .125vw, .875rem);
    --primary-color: #0095ff;
}

/* Universal Box Sizing with Inheritance */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Local Font Setup */

@font-face {
    font-family: "IBM Plex Sans";
    font-weight: 400;
    src: url(../fonts/IBMPlexSans-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-weight: 400;
    font-style: italic;
    src: url(../fonts/IBMPlexSans-Italic.ttf) format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-weight: 600;
    src: url(../fonts/IBMPlexSans-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "IBM Plex Sans";
    font-weight: 700;
    src: url(../fonts/IBMPlexSans-Bold.ttf) format("truetype");
}

body {
    background-image: url(../img/backdrop.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    line-height: 1.5;
    background-color: #f0f0f2;
    font-size: var(--text-400);
    font-family: "IBM Plex Sans", Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    ;
}

html {
    height: 100%
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: fit-content;
    display: block;
}

header {
    padding-inline: 1rem;
    padding-block-start: clamp(1rem, -0.8rem + 9vw, 10rem);
}

main {
    padding-inline: 1rem;
}

footer {
    padding-inline: 1rem;
    padding-block: 4rem 1rem;
    font-size: var(--text-300);
}

a {
    font-weight: 600;
    color: inherit;
    transition: color 150ms;
}

a:hover {
    font-weight: 600;
    color: var(--primary-color);

}

.title {
    line-height: 1.2;
    font-size: var(--text-700);
    font-weight: 700;
    margin-block-end: 1rem;
    color: #2e54a1;

}

.list-items {
    font-weight: 600;
    margin-block-end: 2rem;
    color: #2e54a1;
}

.list-items li::marker {
    color: var(--primary-color);
}

.logo__vo--header {
    width: 128px;
}

.logo__vo--footer {
    width: 48px;
    min-width: 48px;
}

.footer__contact {
    display: flex;
    gap: 1rem;

}

.footer__logo {
    display: flex;
    align-items: center;
}

.hero-columns {
    display: flex;
    gap: 2rem;
}

.hero__right {
    display: flex;
    align-items: center;
}

.hero__right img {
    /* min-width: 450px */
}


.container {
    max-width: 78rem;
    width: 100%;
    margin: 0 auto;
}

.card {
    background-color: #f1f1f490;
    border-radius: 1rem;
    padding: .5rem 1.5rem;
    margin-bottom: 1rem;
    max-width: 54ch;
    border: 1px solid white;
    box-shadow: 0 1px 1px #00000013, 0 2px 2px #00000013, 0 4px 4px #00000013, 0 8px 8px #00000013, 0 16px 16px #00000013;
}

@media only screen and (max-width: 950px) {
    html {
        height: initial;
    }

    .hero-columns {
        flex-wrap: wrap;
    }

    .container {
        max-width: 40rem;
    }
}