@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800;900&display=swap");

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    min-height: 100vh;
}

body {
    display: grid;
    place-items: center;
    font-family: "poppins";
    font-size: 1.1rem;
    line-height: 1.2;
    background-color: #0B2C3C;
    /* background-color: #212121; */
    color: #ddd;
    padding-left: 20%;
    padding-right: 20%;
}

@media screen and (max-width: 578px) {
    body {
        padding-left: 6%;
        padding-right: 6%;
    }

    body::-webkit-scrollbar {
        display: none;
        /* Hides the scrollbar */
    }
}

ul {
    list-style: none;
}

.main {
    max-width: 75rem;
    padding: 3em 1.5em;
}

.h1_heading {
    font-weight: 600;
    font-size: 2.25em;
    margin-bottom: 1em;
    text-align: center;
    color: #eceff1;
}

.h2_heading {
    font-weight: 100;
    font-size: 2.25em;
    margin-bottom: 0.75em;
    text-align: center;
    color: #eceff1;
}

.cards {
    position: relative;
}

/* .main__cards {
display: flex;
justify-content: center;
} */

.cards__inner {
    /* display: flex; */
    /* flex-wrap: wrap; */
    display: block;
    flex-wrap: nowrap;
    gap: 2.5em;
    /* max-width: 60% */
}

.card {
    --flow-space: 0.5em;
    --hsl: var(--hue), var(--saturation), var(--lightness);
    flex: 1 1 14rem;
    padding: 1.5em 2em;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    align-items: start;
    gap: 1.25em;
    color: #eceff1;
    /* color: #eceff1; */
    background-color: #09223066;
    /* background-color: #2b2b2b; */
    border: 1px solid #eceff133;
    border-radius: 15px;
    margin-bottom: 4rem;
}

.card:nth-child(1) {
    --hue: 89;
    --saturation: 84%;
    --lightness: 49%;
}

.card:nth-child(2) {
    --hue: 41;
    --saturation: 94%;
    --lightness: 53%;
}

.beg-color {
    color: #80E614;
}

.int-color {
    color: #f8b016;
}

.adv-color {
    color: #f81647;
}

.card:nth-child(3) {
    --hue: 347;
    --saturation: 94%;
    --lightness: 53%;
}

.card__bullets {
    line-height: 1.4;
}

.card_explain {
    line-height: 1.4;
}

.card__bullets li::before {
    display: inline-block;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' title='check' fill='%23dddddd'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' /%3E%3C/svg%3E");
    transform: translatey(0.25ch);
    margin-right: 1ch;
}

.card__heading {
    font-size: 1.05em;
    font-weight: 600;
}

.card__subheading {
    font-size: 1.75em;
    font-weight: 700;
}

.flow>*+* {
    margin-top: var(--flow-space, 1.25em);
}

.cta__frame {
    /* padding-left: 4rem;
    padding-right: 4rem; */
}

.cta {
    display: block;
    align-self: end;
    margin: 1em 0 0.5em 0;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #071f2b;
    padding: 0.7em;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    user-select: none;
    opacity: var(--opacity, 0);
    -webkit-mask: radial-gradient(25rem 25rem at var(--x) var(--y),
            #000 1%,
            transparent 50%);
    mask: radial-gradient(25rem 25rem at var(--x) var(--y),
            #000 1%,
            transparent 50%);
    transition: 400ms mask ease;
    will-change: mask;
}

.overlay .card {
    background-color: hsla(var(--hsl), 0.15);
    border-color: hsla(var(--hsl), 1);
    box-shadow: 0 0 0 1px inset hsl(var(--hsl));
}

.overlay .cta {
    display: block;
    grid-row: -1;
    width: 100%;
    background-color: hsl(var(--hsl));
    box-shadow: 0 0 0 1px hsl(var(--hsl));
}

:not(.overlay)>.card {
    transition: 400ms background ease;
    will-change: background;
}

:not(.overlay)>.card:hover {
    --lightness: 95%;
    background: #103c5266
        /* background: hsla(var(--hsl), 0.1); */
}

.cursor__default {
    cursor: default
}

.email__input__error {
    border: #f81647 2px solid !important;
    background-color: #fcabbc;
}


.error {
    color: red;
    font-weight: 500;
    padding-top: 12px;
}

.hidden {
    display: none;
}

#sent-text {
    display: none;
}

#waiting2 {

    animation: spinMulti 2s ease-in-out infinite;
}

@keyframes spinMulti {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(720deg);
        /* 360 × 5.5 spins */
    }
}

#send-email-waiting {
    display: none;
}

.footer {
    /* display: flex;
    justify-content: center; */
    width: 100%;
}

.footer p {
    font-size: smaller;
    width: 100%;
    justify-content: center;
    display: flex;
    margin-bottom: 0.2em;
}

.footer p a {
    color: dodgerblue;
}

.logo-section {
    /* display: flex; */
    justify-content: start;
    width: 100%;
    max-width: 75rem;
    padding: 2em 1.5em 0em 1.5em;
}

.brand-tagline {
    font-weight: 300;
    line-height: 1.3;
}

.only-phone {
    display: none;
}

.only-desktop {
    display: block;
}

@media screen and (max-width: 578px) {

    .brand-tagline {
        font-weight: 200;
        line-height: 1.3;
        font-size: 0.8rem;
    }

    .page-logo {
        width: 120px;
    }

    .only-phone {
        display: block;
    }

    .only-desktop {
        display: none;
    }
}