/* @media */

/* phone */
@media only screen and (max-width: 767px) {

    /* Headers */

    h1 {
        color: var(--text-black-dark);
    }

    p {
        color: var(--text-black-dark);
        margin: 10px 0px;
    }

    h3 {
        margin: 5px 0;
    }

    /* Mobile CTA Bottom */
    #mobile-cta-section {
        display: sticky;
        bottom: 0;
    }


    /* Hero Section */

    .hero-section {
        background-color: var(--light-blue);
        padding-top: 42px;
    }

    .hero-text-section {
        margin-bottom: 18px;
        width: 100%;
    }

    .hero-text-section h1 {
        letter-spacing: 0.1rem;
        max-width: 350px;
    }

    .hero-text-section p {
        letter-spacing: 0.05rem;
        line-height: 24px;
        margin-bottom: 18px;
        max-width: 350px;
    }

    #mobile-hero {
        background-image: url('/assets/images/homepage-astronaut-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        height: 360px;
    }


    /* Benefits Section */

    .icon-img {
        max-width: 120px;
        padding-top: 42px;
    }



}


/* tablet */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    /* Your CSS styles for tablets here */
}


/* desktop */
@media only screen and (min-width: 1025px) {


    /* Hero Section */
    .hero-text-section {
        max-width: 475px;
    }

    /* .hero-text-section h1 {
        font-weight: 400;
        color: var(--text-black-dark);
        letter-spacing: 0.1rem;
        line-height: 4.2rem;
    }

    .hero-text-section p {
        color: var(--text-black-dark);
        letter-spacing: 0.05rem;
    } */

    .hero-section {
        background-image: url('/assets/images/homepage-astronaut.png');
        background-repeat: no-repeat;
        background-position-y: 15px;
        background-size: cover;
        height: 680px;
        background-color: var(--light-blue)
    }

    #mobile-hero {
        display: none;
    }


    /* Benefits Section CSS */
    #benefits-section {
        background-color: #ffffff;
    }

    #benefits-section-text {
        max-width: 65%;
    }

    #icon-tile-wrapper {
        display: flex;
        overflow: scroll;
        padding-top: 24px
    }

    .icon-tile {
        min-width: 35%;
        background-color: #ffffff;
        border: 1px #8A8B8C solid;
        border-radius: 35px;
        padding: 15px 15px;
        margin-right: 30px;
    }


}
