:root {
    --Light-Teal: #79CDD0;
    --Teal: #16B6B8;
    --Dark-Teal: #009698;
    --Gray: #557088;
    --Dark-Blue: #172E55;
}


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

    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
        "wdth"75;
    color: var(--Dark-Blue);
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

.container-small {
    max-width: 930px;
    padding: 0 20px;
    margin: 0 auto;
}



/*****************************

TYPE

******************************/

h1 {
    color: var(--Teal);
    font-size: 74px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    /* 67.568% */
    text-transform: uppercase;
}

h1 span {
    display: block;
    color: var(--Gray);
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    text-align: right;
}

h2 {
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 114.286% */
    letter-spacing: -0.7px;
    text-transform: uppercase;
    color: #fff;
}

h3 {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 112% */
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}


.btn {
    display: inline-block;
    border-radius: 12px;
    background-color: var(--Teal);
    color: #fff;
    text-decoration: none;
    padding: 10px 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 122.222% */
    text-transform: uppercase;
    outline: none;
    border: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    cursor: pointer;
}

button.btn {
    min-width: 280px;
    margin-top: 20px;

}


/*****************************

HEADER

******************************/

header {
    background-color: #fff;
    padding: 25px 0;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;

}

header .mobile {
    display: none;
}

header .flex {
    align-items: center;
    justify-content: space-between;
}

header .links a {
    color: var(--Dark-Teal);
    text-align: right;
    display: block;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media screen and (max-width:640px) {
    header .logo {
        width: 40%;
    }

    header {
        padding: 15px;
    }



    header .desktop {
        display: none;
    }

    header .mobile {
        display: block;
        width: 70px;
    }
}

/*****************************

UTILS

******************************/

.flex {
    display: flex;
}

.txt-r {
    text-align: right;
}

.txt-c {
    text-align: center;
}


/*****************************

SECTION

******************************/

.disclaimer {
    background-color: #E8F4F7;
    overflow: auto;
}

.hero {
    background-color: #E8F4F7;
    padding-top: 50px;
}

.hero .flex {
    justify-content: flex-end;
}

.hero .content {
    width: calc(100% * 4/8);

}

.hero .img {
    width: calc(100% * 3/8);
    background-image: url(images/aardvark-logo-icon.svg);
    background-color: #E8F4F7;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: multiply;


}

.hero p {
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;

}

.hero a {
    color: var(--Dark-Teal);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 122.222% */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;

}



@media screen and (max-width:1100px) {
    .hero .content {
        width: calc(100% * 5/8);
    }

}

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

    .hero {
        position: relative;
        overflow: hidden;
        padding-bottom: 60px;
        padding-top: 30px;

    }

    .hero .flex {
        justify-content: flex-start;
    }

    .hero .content {
        max-width: 500px;
        width: 85%;
        position: relative;
        z-index: 2;

    }

    .hero .content h1 {
        font-size: 52px;
    }

    .hero .content h1 span {
        font-size: 27px;
    }

    .hero .img {
        position: absolute;
        z-index: 1;
        right: 0;
        bottom: 0;
        height: 80%;
        width: auto;
        transform: translateX(30%);

    }

    .hero .txt-r {
        text-align: left;
    }
}




.spacer {
    height: 0;

    img {
        width: 100%;

    }
}


.beyond {
    background-color: var(--Light-Teal);


    padding: 100px 0 60px 0;


}

@media screen and (min-width:1550px) {

    .beyond {
        padding: 160px 0 60px 0;
    }
}

.beyond-table {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;


}

.beyond-table.first {
    border-bottom: var(--Dark-Blue) 1px solid;
}

.beyond-table .title {
    width: 175px;
}

.beyond-table .title span {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 112% */
    letter-spacing: -0.5px;
    text-transform: uppercase;

}

.beyond-table .content {
    flex: 1;
    padding-left: 30px;
}

.beyond-table .content p {
    margin: 0;
}

@media screen and (max-width:640px) {
    .beyond-table {
        display: block;
    }

    .beyond-table .content {
        flex: 1;
        padding-left: 0px;
        margin-top: 10px;
    }
}


.hunger-cta {
    padding: 30px;
    border-radius: 40px;
    background-color: #fff;
    margin-top: 40px;
}

.hunger-cta .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hunger-cta .content {
    width: 225px;
}

.hunger-cta .chart {
    flex: 1;
}

.hunger-cta .chart .flex {
    margin-top: 20px;
}

.hunger-cta .chart-title {
    color: var(--Gray);
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 114.286% */
    letter-spacing: -0.42px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.hunger-cta .list-title {
    display: block;

    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 122.222% */
    letter-spacing: -0.36px;
    text-transform: uppercase;
}

.hunger-cta ul {
    margin-top: 5px;
    padding-left: 20px;
}

.hunger-cta .list li {
    font-size: 16px;
}

.hunger-cta .list.hunger {
    width: 162px;
}

.hunger-cta .list.app {
    width: 144px;
}

.hunger-cta .img {
    flex: 1;
}

.hunger-cta .img img {
    display: block;
    max-width: calc(100% + 40px);
    margin: 0 -20px;
}


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

    .hunger-cta {
        max-width: 600px;
        margin: 0 auto;
        margin-top: 40px;

    }

    .hunger-cta h3 {
        margin-top: 0;
    }

    .hunger-cta .inner {
        display: block;
    }

    .hunger-cta .content {
        width: 100%;
        border-bottom: 1px solid var(--Dark-Blue);
        margin-bottom: 20px;
    }

}

@media screen and (max-width:640px) {
    .hunger-cta .chart .flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }


    .hunger-cta .list {
        order: 2;
        width: 40% !important;

    }

    .hunger-cta .img {
        order: 1;
        width: 100%;
        flex: auto;
    }

    .hunger-cta .img img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }


}




.exploring {
    background-color: var(--Teal);
    padding: 100px 0 60px 0;
}

@media screen and (min-width:1550px) {

    .exploring {
        padding: 160px 0 60px 0;
    }
}


.ard-101 {
    padding: 30px;
    border-radius: 40px;
    background-color: #fff;
    margin-top: 40px;
}

.ard-101 .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ard-101 .content {
    width: 240px;
}

.ard-101 .chart {
    flex: 1;
}



.ard-101 .chart-title {
    color: var(--Gray);
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 114.286% */
    letter-spacing: -0.42px;
    text-transform: uppercase;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.ard-101 .mobile {
    display: none;
}

@media screen and (max-width:800px) {
    .ard-101 .inner {
        flex-direction: column;
    }

    .ard-101 .content {
        width: 100%;
        border-bottom: 1px solid var(--Dark-Blue);
    }



}

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

    .ard-101 .desktop {
        display: none;
    }

    .ard-101 .mobile {
        display: block;
    }
}




.unearthing {
    background-color: var(--Gray);
    color: #fff;
    padding: 100px 0 60px 0;
}

@media screen and (min-width:1550px) {

    .unearthing {
        padding: 160px 0 60px 0;
    }
}


.poster {
    padding: 30px;
    border-radius: 40px;
    background-color: #fff;
    margin-top: 40px;
}

.poster .actions {
    text-align: center;
    margin-top: 10px;
}



.dig-deeper {
    background-color: var(--Dark-Blue);
    color: #fff;
    padding: 100px 0 60px 0;
}

@media screen and (min-width:1550px) {
    .dig-deeper {
        padding: 140px 0 60px 0;
    }
}


.cards {
    display: flex;
    gap: 30px;
}

.cards .card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    flex: 1;
    color: var(--Dark-Blue);
}

.cards .card .content {
    padding: 10px;
}

.cards .card .title {
    display: block;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 122.222% */
    letter-spacing: -0.36px;
    text-transform: uppercase;
}

.cards .card.grey .title {

    color: var(--Gray)
}

.cards .card.teal .title {

    color: var(--Teal)
}

.cards .card p {
    margin: 5px 0;
}


.cards .card.grey .bottom {

    background-color: var(--Gray);
    padding: 5px 10px;
    color: #fff;
}

.cards .card.teal .bottom {

    background-color: var(--Teal);
    padding: 5px 10px;
    color: #fff;
}


@media screen and (max-width:640px) {
    .cards {
        flex-direction: column;
    }
}

.form {
    padding-top: 10px;
    border-top: 1px solid var(--Gray);
    margin-top: 40px;

}

.form .form-wrap {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

@media screen and (max-width:640px) {
    .form .form-wrap {
        flex-direction: column;
    }
}

.form .form-wrap .lg-6 {
    flex: 1;
}

.form .wrapper {
    max-width: 600px;
}

.form input[type="text"],
.form input[type="email"] {
    display: block;
    width: 100%;
    padding: 11px 17px;
    border-radius: 12px;
    background: var(--White, #FFF);
    box-shadow: 0 4px 4px 0 rgba(84, 112, 135, 0.60) inset;
}


.form a {
    color: #fff;
}




.more-info {
    padding: 150px 0 60px 0;
    background-color: #061C41;
}

@media screen and (min-width:1550px) {
    .more-info {
        padding: 220px 0 60px 0;
    }
}

@media screen and (max-width:640px) {
    .more-info {
        padding: 80px 0 60px 0;

    }
}

.refs {
    background-color: #061C41;
    padding-bottom: 30px;
}

.refs p {
    margin: 0;
}

.more-info .box {
    padding: 30px 70px;
    text-align: center;
    border-radius: 20px;
    background: var(--Teal, #16B6B8);
}

.more-info .box span {
    display: block;
}

.more-info .box .title {
    color: var(--Dark-Blue);
    text-align: center;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 114.286% */
    letter-spacing: -0.7px;
    text-transform: uppercase;
}


.more-info .box .subtitle {
    color: #fff;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: -0.7px;
    text-transform: uppercase;
}

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


    .more-info .box .title {
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px;
        /* 113.333% */
        letter-spacing: -0.6px;
        text-transform: uppercase;
    }


    .more-info .box .subtitle {
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px;
        /* 113.333% */
        letter-spacing: -0.6px;
        text-transform: uppercase;
    }
}



footer {
    background-color: #fff;
    height: 100px;
    padding: 30px 0;
}

footer p {
    font-size: 12px;
    margin-top: 5px;

}

footer .flex {
    justify-content: space-between;
}

footer .copyright a {
    color: var(--Dark-Teal);
    font-size: 15px;
}


@media screen and (max-width:640px) {
    footer .flex {
        flex-direction: column;
        text-align: center;
    }

    footer .txt-r {
        text-align: center;
    }
}

.thank-you {
    padding: 250px 0;
    background-color: var(--Dark-Blue);
}

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

    .thank-you {
        padding: 80px 0;

    }
}

.thank-you-pill {
    padding: 40px 70px;
    border-radius: 40px;
    background-color: #fff;
}

@media screen and (max-width:640px) {
    .thank-you-pill {
        padding: 30px;
        text-align: center;

    }
}

.thank-you-pill .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}


@media screen and (max-width:640px) {
    .thank-you-pill .inner {
        flex-direction: column;
    }
}

.thank-you-pill .image {
    width: 150px;
}

.thank-you-pill .image img {
    display: block;
    width: 100%;
}

.thank-you-pill .content {
    flex: 1;


}

.thank-you-pill h1 {
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 114.286% */
    letter-spacing: -0.7px;
    text-transform: uppercase;
    color: var(--Dark-Blue);
    margin: 0;
}

.thank-you-pill p {
    margin-bottom: 0;
}