:root {
    --primary: #a9a9a9;
    --checkmarkColor: #143882;
    --size: 1.25rem;
    --checkmarkFat: 0.15rem;
}

html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    max-width: 100%;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    overflow-x: hidden;
}

main {
    background-color: #ffffff;
    border-bottom: 2px solid #ececec;
    border-top: 2px solid #2c99dd;
    min-height: 500px;
}

.logo_img {
    width: 100%;
    max-width: 170px;
    display: block;
}

.newbutton {
    font-size: 2rem;
    color: #00b0ed;
}

header {
    background-color: #ffffff;
    padding: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.wrapper {
    margin: auto;
    max-width: 800px;
    width: 100%;
    min-height: 30rem;
    overflow-x: hidden;
}

footer {
    background: transparent !important;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding-inline-start: 0;
}

.footdisc {
    color: #666666;
    font-family: arial, sans-serif;
    padding: 2rem;
}

.seen-on-box {
    height: 60px;
    display: block;
    margin: auto;
}

.seen-on-div {
    background-color: lightgray;
}

.headlines {
    text-align: center;
    font-weight: 700;
    margin-top: 2.5rem;
    padding: 0 1rem;
    font-family: Nunito, sans-serif;
}

.no-headlines {
    display: none;
}

.headlines h1 {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
}

.headlines p {
    font-size: 1.2rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 300;
    color: gray;
    font-size: 1.1rem;
}

.circle {
    position: relative;
    background: var(--primary);
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
}

.checkmark {
    position: absolute;
    transform: rotate(45deg) translate(-50%, -50%);
    left: 30%;
    top: 50%;
    height: calc(var(--size) / 3);
    width: calc(var(--size) / 6);
    border-bottom: var(--checkmarkFat) solid var(--checkmarkColor);
    border-right: var(--checkmarkFat) solid var(--checkmarkColor);
}

/* BEGIN MOBILE STYLES */
@media screen and (max-width: 767px) {
    .seen-on-box {
        height: 40px;
    }

    .logo_img {
        width: 100%;
        max-width: 130px;
    }

    footer {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .footer-menu {
        gap: 0.5rem;
    }

    .bullets {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}