@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    border: 0 solid #d6dae5;
    border-top-width: 0px;
    border-top-style: solid;
    border-top-color: rgb(214, 218, 229);
    border-right-width: 0px;
    border-right-style: solid;
    border-right-color: rgb(214, 218, 229);
    border-bottom-width: 0px;
    border-bottom-style: solid;
    border-bottom-color: rgb(214, 218, 229);
    border-left-width: 0px;
    border-left-style: solid;
    border-left-color: rgb(214, 218, 229);
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    box-sizing: inherit;
}

body, html {
    margin: 0;
    box-sizing: inherit;
    background-color: #fcfcfc;
    font-family: Arial, Helvetica, sans-serif;
    color: #464951;
    scroll-behavior: smooth;
    line-height: 1.5;
    border: 0 solid #d6dae5;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

.header {
    border-bottom-width: 1px;
    border: none;
}

/* .header {
    /* position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    /* padding: 1rem 1.5rem;
    width: 100%;
    /* margin: 0 auto;
} */

@media screen and (min-width: 770px) {
    .header {
        background-color: #eafaf1;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
    }
}

/* Updated from "header__left-column" */
.header__container {
    display: grid;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* JK: Alter this for responsive heading */
@media screen and (min-width: 770px) {
    .header__container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* @media screen and (min-width: 1200px) {
    .header__left-column {
        gap: 7rem;
        justify-content: start;
        padding-right: 10rem;
    }
} */

.nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

/* ASK HARRY - Trying to make the active nav link black*/
.nav a:active-item {
    color: black;
}

.header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo__image {
    /* width: auto;
    height: auto; */
    color: #dadbdc;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    font-weight: 800;
    text-decoration: underline;
    margin-right: 2.5rem;
}


/* Updated from "header__right-column" */
.nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    position: relative;
}

/* .header__right-column {
    display: flex;
    position: relative;
    align-items: center;
    padding-top: 0.5rem;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: bolder;
} */

nav__list i {
    color: #fff;
    font-size: 1.25rem;
}

.nav__list i:hover {
    cursor: pointer;
}

.nav__list-link {
    display: flex;
    flex-wrap: wrap;
    margin-right: 2.5rem;
}

.nav__link {
    color: #00ad6a;
    font-weight: 800;
    text-decoration: none;
    background-color: transparent;
}

.nav__link:hover {
    color: #000;
}

.button__signUp {
    font-size: 1rem;
    padding: 0.25rem 1rem;
    line-height: 1.5;
    height: auto;
    color: #00ad6a;
    border-color: #00ad6a;
    background-color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 800;
    text-decoration: none;
    border-width: 2px;
    text-align: center;
    cursor: pointer;
    margin-right: 2.5rem;
}

.button__signUp::before {
    display: none;
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background-color: transparent;
    transform: translate3d(-5px, 5px, -1px);
    transform-style: preserve-3d;
}

/* .button__signUp {
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    position: relative;
    display: inline-block;
    height: auto;
    padding: 0.25rem 1rem;
    color: #00ad6a;
    border-color: #00ad6a;
    background-color: transparent;
    border-width: 2px;
    cursor: pointer;
    transform: translate3d(-5px, 5px, -1px);
    transform-style: preserve-3d;
} */

.button__signUp:hover {
    color: #00ad6a;
    box-shadow: -5px 5px #00ad6a;
    transform: translate3d(5px, -5px, 0);
}

.button__signUp:hover::before {
    color: #00ad6a;
    box-shadow: -5px 5px #dadbdc;
    transform: translate3d(5px, -5px, 0);
}

/* HERO */

#content {
    display: block;
}

.hero__main {
    border-bottom-width: 1px;
    background-color: #eafaf1;
    margin: 0 auto;
}

.hero__text {
    padding-bottom: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    text-align: left;
}

@media screen and (min-width: 1000px) {
    .hero__text {
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

.hero__text-center {
    box-sizing: border-box;
    width: 100%;
    max-width: 600px;
    margin: 0;
}

@media screen and (min-width: 1000px) {
    .hero__text-center {
        text-align: center;
        margin: 0 auto;
        justify-content: center;
        align-items: center;
    }
}

/* .hero__text {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;    
} */

.hero__text-top {
    letter-spacing: -2px;
    font-weight: 750;
    color: #080c16;
    font-size: 3.75rem;
    text-align: left;
    margin: 0;
    margin-bottom: 1rem;
    line-height: 1;
}

.hero__top-break {
    display: inline-block;
}

@media screen and (min-width: 1000px) {
    .hero__text-top {
        font-size: 3.75rem;
        margin-bottom: 3rem;
        text-align: center;
    }
}

/* .hero__text-top {
    display: flex;
    flex-wrap: wrap;
    padding: 0  2rem 5rem 2rem;
    text-align: center;
    justify-content: center;
    line-height: 0;
    width: 100%;
    font-size: 3.25rem;
    font-weight: bolder;
    margin: 0;
} */

.hero__text-bottom {
    color: #080c16;
    font-size: 1.125rem;
    margin: 0;
    margin-bottom: 0;
}

/* .hero__text-bottom {
    display: flex;
    flex-wrap: wrap;
    padding: 0  2rem 5rem 2rem;
    text-align: center;
    justify-content: center;
    line-height: 0;
    width: 100%;
    font-size: inherit;
    flex-wrap: wrap;
    margin-bottom: 0;
} */

.hero__container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pricing__blocks {
    margin-left: -1rem;
    margin-right: -1rem;
    align-items: center;
}

@media screen and (min-width: 1000px) {
    .pricing__blocks {
        display: flex;
        /* align-items: center; */
    } 
}

.left__block {
    margin-bottom: 2rem;
}

@media screen and (min-width: 1000px) {
    .left__block {
        width: 33.33333%;
        display: flex;
        align-items: center;
        padding: 2rem;
    } 
}

.left__container {
    width: 100%;
    max-width: 1200px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin: 0 auto;
}

.left__block-headingtext {
    display: block;
    color: #00ab6a;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.5;
}

.left__block-list {
    display: block;
    font-size: 1rem;
    margin: 0;
    margin-bottom: 1rem;
    margin-left: 2rem;
    padding: 0;
}

@media screen and (min-width: 1000px) {
    .left__block-list {
        margin-left: 1rem;
    }
}

.left__block-endtext {
    font-size: 1rem;
    margin: 0;
}

.left__block-link{
    color: #080c16;
    font-weight: 400;
    text-decoration: underline;
    background-color: transparent;
}

@media screen and (min-width: 1000px) {
    .middle__block, .right__block {
        display: flex;
        width: 33.33333%;
    }
}

.right__animation {
    border: 0 solid #d6dae5;
    border-width: 1px;
}

.middle__animation {
    border-color: #00ad6a;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    color: #464951;
    display: flex;
    flex-direction: column;
    border-width: 1px;
    background-color: #fff;
    font-weight: 400;
}

@media screen and (max-width: 999px) {
    .middle__animation {
        margin-bottom: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media screen and (min-width: 1000px) {
    .middle__animation {
        text-align: center;
    }
}

.right__animation {
    border-color: #00ad6a;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    color: #464951;
    display: flex;
    flex-direction: column;
    border-width: 1px;
    background-color: #fff;
    font-weight: 400;
}

@media screen and (max-width: 999px) {
    .right__animation {
        margin-bottom: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media screen and (min-width: 1000px) {
    .right__animation {
        text-align: center;
    }
}

/* .middle__animation {
    color: #464951;
    text-align: center;
    border: 1px solid #00ab6a;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    flex-direction: column;
    display: flex;
    border-width: 1px;
    background-color: #fff
} */

.middle__container {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 3rem 2rem 1.5rem 2rem;
}

@media screen and (min-width: 1000px) {
    .middle__container {
        padding: 3rem 2rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

/* .middle__container {
    color: #464951;
    position: relative;
    overflow: hidden;
    height: 100%;
    font-weight: 400;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 1.5rem 2rem
} */

.middle__recommended {
    background-color: #00ab6a;
    color: #fff;
    position: absolute;
    font-size: 0.875rem;
    text-align: center;
    padding: 1.25rem 2rem 1.5rem 2rem;
    line-height: 1.3;
    border-bottom: 1px solid #d6dae5;
    top: 0;
    right: 0;
    width: 100%;
}

/* @media screen and (min-width: 1000px) {
    .middle__recommended {
        right: 0;
        top: 0;
        position: absolute;
        padding: 0.25rem 0;
    }
} */

/* .middle__recommended {
    display: inline-block;
    border: none;
    border-radius: 8px 8px 0 0;
    width: 100%;
    letter-spacing: 1px;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-weight: 700;
    background-color: #00ab6a;
    color: white;
    text-decoration: none;
    box-sizing: inherit;
} */

@media screen and (max-width: 999px) {
    .middle__upper, .right__upper {
        padding: 1rem;
        justify-content: space-between;
        align-items: center;
        display: flex;
    }    
}

@media screen and (min-width: 1000px) {
    .middle__upper, .right__upper {
        text-align: center;
    }    
}

.middle__block-headingtext {
    letter-spacing: -1.5px;
    font-size: 2.25rem;
    color: #00ad6a;
    line-height: 1;
    font-weight: 800;
    /* padding-top: 2rem; */
}

@media screen and (min-width: 320px) {
    .middle__block-headingtext {
        display: inline-block;
    }    
}

@media screen and (min-width: 1000px) {
    .middle__block-headingtext {
        display: block;
        font-size: 3rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }    
}

.middle__block-cost {
    display: inline-block;
    letter-spacing: -0.5px;
    color: #83858a;
    margin: 0.5rem 0;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}

@media screen and (min-width: 320px) {
    .middle__block-cost {
        display: inline-block;
        font-size: 1.25rem;
    }    
}

@media screen and (min-width: 480px) {
    .middle__block-cost {
        font-size: 1.5rem;
        padding-left: 0.5rem;
    }    
}

@media screen and (min-width: 1000px) {
    .middle__block-cost {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }    
}

/* .middle__block-cost {
    display: inline-block;
    letter-spacing: -0.5px;
    color: #83858a;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: 0 solid #d6dae5;
    box-sizing: inherit;
    font-weight: 400;
} */

.signUp__button {
    margin-top: auto;
    display: none;
    font-weight: 400;
}

@media screen and (min-width: 1000px) {
    .signUp__button {
        display: block;
    }    
}

/* .signUp__button {
    display: inline-block;
    color: #464951;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.5rem 2rem 0.75rem 2rem;
    background-color: #1fe374;
    border: 0 solid #d6dae5;
    box-sizing: inherit;
    transform: scale(1);
    transition: all 0.05s ease-in-out;
} */

.signUp__button-hidden {
    padding: 1rem;
    display: block;
    font-weight: 400;
}

@media screen and (max-width: 1000px) {
    .signUp__button-hidden {
        display: none;
    }    
}

.signUp__animation {
    transform: scale(1);
    transition: all 0.05s ease-in-out;
    font-size: 1.25rem;
    padding: 0.5rem 2rem 0.75rem 2rem;
    margin-bottom: 2rem;
    display: inline-block;
    background-color: #1fe374
}

.signUp__animation:hover {
    transform: scale(1.1);
    transform: scale(1.1);
}

.signUp__animation-hidden {
    width: 100%;
    font-size: 1.25rem;
    text-align: center;
    padding: 0.5rem 2rem 0.75rem 2rem;
    font-weight: 800;
    background-color: #1fe374
}

.signUp__animation-hidden:hover {
    transform: scale(1.1);
    transform: scale(1.1);
}

.middle__plus-text, .right__plus-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.15;
}

@media screen and (max-width: 999px) {
    .middle__plus-text {
        margin-top: 2rem;
    }    
}

@media screen and (min-width: 1000px) {
    .middle__plus-text {
        text-align: center;
    }    
}

/* Note: Going forward, make sure to make classes consistent to reduce the amount of code */
.middle__block-list {
    list-style: none;
    text-align: left;
    letter-spacing: -0.5px;
    padding: 0;
}

@media screen and (max-width: 999px) {
    .middle__block-list {
        padding: 0 2rem 1rem 2rem;
    }    
}

@media screen and (min-width: 1000px) {
    .middle__block-list {
        margin-top: 0;
        margin-bottom: 1rem;
    }    
}

.middle__block-list li {
    position: relative;
    /* padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-align: left;
    font-weight: 400; */
}

.middle__block-list li:before {
    content: url(./images/icon-check-bullet.svg);
    /* position: relative; */
    left: -14px;
    top: 14px;
    width: 12px;
    height: 12px;
    color: purple;
    font-size: 1.2em;
}

.pricing__list {
    position: absolute;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    /* padding-right: 0; */
}

.right__container {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 3rem 2rem 1.5rem 2rem;
    /* border: 1px solid #d6dae5; */
}

@media screen and (max-width: 1000px) {
    .right__container {
        padding: 3rem 2rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}

.right__info {
    background-color: #f2f3f3;
    color: #464951;
    position: absolute;
    font-size: 0.875rem;
    text-align: center;
    padding: 1.25rem 2rem 1.5rem 2rem;
    line-height: 1.3;
    border-bottom: 1px solid #d6dae5;
    top: 0;
    right: 0;
    width: 100%;
}

.right__block-headingtext {
    letter-spacing: -1.5px;
    font-size: 2.25rem;
    color: #00ad6a;
    line-height: 1;
    font-weight: 800;
    padding-top: 2rem;
}

@media screen and (min-width: 320px) {
    .right__block-headingtext {
        display: inline-block;
    }    
}

@media screen and (max-width: 1000px) {
    .right__block-headingtext {
        display: block;
        font-size: 3rem;
        padding: 0 1rem;
        margin-top: 0;
    }    
}

/* letter-spacing: -1.5px;
    font-size: 2.25rem;
    color: #00ad6a;
    line-height: 1;
    font-weight: 800; */

.right__block-cost {
    font-size: 1.5rem;
    color: #83858a;
    text-align: center;
    font-weight: 400;
    letter-spacing: -0.5px;
    padding-left: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.right__block-list {
    list-style: none;
    text-align: left;
    letter-spacing: -0.5px;
    padding: 0;
}

@media screen and (max-width: 999px) {
    .right__block-list {
        padding: 0 2rem 1rem 2rem;
    }    
}

@media screen and (min-width: 1000px) {
    .right__block-list {
        margin-top: 0;
        margin-bottom: 1rem;
    }    
}

.right__block-list li {
    position: relative;
    /* padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-align: left;
    font-weight: 400; */
}

.right__block-list li:before {
    content: url(./images/icon-check-bullet.svg);
    /* position: relative; */
    left: -14px;
    top: 14px;
    width: 12px;
    height: 12px;
    color: purple;
    font-size: 1.2em;
}

.subvert__container {
    justify-content: center;
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

@media screen and (min-width: 1000px) {
    .subvert__container {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.center__text {
    color: #464951;
    text-align: center;
    max-width: 800px;
}

.subvert__icon {
    display: block;
    text-align: center;
    color: #464951;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

.hero__slogan {
    color: #080c16;
    font-size: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
}

.subvert__slogan {
    color: #00ab6a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

/* FAQ */
.container__faq {
    box-sizing: border-box;
    padding: 3rem 1.5rem 2rem 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (min-width: 1000px) {
    .container__faq {
        padding-top: 6rem;
        padding-bottom: 5rem;
    }
}

.faq__text {
    margin: 0;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 1.15;
    letter-spacing: -2px;
    font-weight: 800;
    color: #080c16;
}  

@media screen and (min-width: 1000px) {
    .faq__text {
        font-size: 3rem;
    }
}

.faq__block-set {
    margin-left: -1rem;
    margin-right: -1rem;
    flex-wrap: wrap;
    display: flex;
}

.faq__block {
    padding: 1.5rem 1rem;
}

@media screen and (min-width: 999px) {
    .faq__block {
        width: 50%;
    }
}

.faq__question {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;  
}

.faq__answer {
    margin: 0;
    font-size: 1.125rem;
}

/* ASK HARRY: Does something like this break the program? */
/* faq__one .Fa */

/* FOOTER */

.footer {
    box-sizing: border-box;
    background-color: #080c16;
}

.footer__container {
    color: #464951;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem 0 1.5rem;
    margin: 0 auto 0 auto;
}

.footer__container-center {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .footer__container-center {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* .footer__container-center {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
    color: #464951;
    padding-top: 6rem;
    padding-bottom: 6rem;
    border: 0 solid #d6dae5;
    box-sizing: inherit;
} */

.footer__left-column {
    margin-left: -1rem;
    margin-right: -1rem;
}

@media screen and (min-width: 1000px) {
    .footer__left-column {
        display: flex;
    }
}

.footer__left-center {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
    .footer__left-center {
        margin-bottom: 3rem;
    }
}

@media screen and (min-width: 1000px) {
    .footer__left-center {
        margin-bottom: 0;
        width: 50%;
        text-align: left;
    }
}

.button__container {
    margin: 0 auto;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

@media screen and (min-width: 1000px) {
    .button__container {
        margin-bottom: 3rem;
        text-align: left;
    }
}

.footer__pulse-logo {
    display: inline-block;
    color: #00ad6a;
    font-weight: 800;
    text-decoration: underline;
    background-color: transparent;
    font-size: 1.125rem;
}

@media screen and (min-width: 1000px) {
    .footer__pulse-logo {
        text-align: left;
    }
}

.footer__logo__image {
    display: block;
    width: 8rem;
    max-width: 100%;
    height: auto;
    border-style: solid;
    text-align: 1.125rem;
    font-size: 1.125rem;
}

@media screen and (min-width: 768px) {
    .footer__logo__image {
        width: 10rem;
    }
}

.button__signUp-footer::before {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    content: "";
    position: absolute;
    background-color: transparent;
    transform: translate3d(-5px, 5px, -1px);
    transform-style: preserve-3d;
}

.button__signUp-footer {
    display: block;
    font-size: 1rem;
    border-width: 0;
    background-image: linear-gradient(90deg, #00ab6a, #23ea76);
    position: relative;
    padding: 1rem 2rem;
    font-weight: 800;
    text-decoration: 0;
    color: #062c27;
    border-color: #fff;
    background-color: transparent;
    text-align: center;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .button__signUp-footer {
        display: inline-block;
    }
}

/* .button__signUp-footer {
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    position: relative;
    display: inline-block;
    height: auto;
    padding: 1rem 2rem;
    color: #080c16;
    background-color: #00ad6a;
    border: none;
    cursor: pointer;
    background: linear-gradient (90deg, #00ab6a, #23ea76) ;
    transform: translate3d(-5px, 5px, -1px);
    transform-style: preserve-3d;
} */

/* JK: When in doubt, remember to look at the pseudo elements */
.button__signUp-footer:hover {
    box-shadow: -5px 5px #464951;
    transform: translate3d(5px, -5px, 0);
}

.footer__right-column {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-size: 1.125rem;
}

@media screen and (min-width: 1000px) {
    .footer__right-column {
        width: 50%;
   }
}

@media screen and (max-width: 999px) {
    .footer__right-column {
        justify-content: space-around;
        align-items: flex-start;
        width: 100%;
    }
}

.footer__right-first, .footer__right-second, .footer__right-third {
    padding: 1rem;
    list-style: none;
    margin: 0;
    font-weight: 800;
}

@media screen and (min-width: 768px) {
    .footer__right-first, .footer__right-second, .footer__right-third {
        width: 33.33333%;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.footer__heading {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 800;
    list-style: none;
    font-size: 1.125rem;
}

@media screen and (min-width: 1000px) {
    .footer__heading {
        margin-bottom: 1rem;
    }
}

.footer__link {
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 1000px) {
    .footer__link {
        margin-bottom: 1rem;
    }
}

.footer__link-link {
    text-decoration: none;
    color: #1fe374;
    font-weight: 400;
    background-color: transparent;
}

/* LEGAL */
.legal {
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 6rem;
    line-height: 1.5rem;
}

@media screen and (min-width: 768px) {
    .legal {
        align-items: center;
        padding-bottom: 0.75rem;
    }
}

.legal__container {
    font-size: 0.75rem;
    color: #83858a;
    font-weight: 400;
}

.legal__textbox {
    display: block;
    align-items: center;
}

.legal__textbox a {
    color: #83858a;
}