.main-title {
    font-size: 50px;
    width: 90%;
    max-width: 1250px;
    margin: 100px auto 25px auto;
}

@media only screen and (max-width: 800px) {
    .main-title {
        font-size: 30px;
    }
}


/* Hero */

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    width: 90%;
    max-width: 1250px;
    min-height: 550px;
    margin: auto;
    margin-left: auto;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(50% - 25px);
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1em;
}

.hero-description {
    font-size: 25px;
    font-weight: 500;
    color: gray;
}

.hero-image {
    max-width: calc(50% - 25px);
    max-height: 550px;
    vertical-align: middle;
}

.store-badge {
    width: 90%;
    max-width: 250px;
}

@media only screen and (max-width: 1000px) {
    .hero-container {
        flex-direction: column;
        width: 90%;
        min-height: auto;
        gap: 25px;
        margin: auto;
    }

    .hero-text-container, .hero-image {
        width: 100%;
        height: auto;
        max-height: auto;
    }

    .hero-image {
        object-fit: contain;
        max-width: calc(100%);
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-description {
        font-size: 20px;
    }

    .store-badge {
        max-width: 200px;
    }
}

@media only screen and (max-width: 600px) {
    .hero-title {
        font-size: 40px;
    }
}


/* Features */

.features-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 90%;
    max-width: 1250px;
    margin: 100px auto 0 auto;
}

.feature-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.feature-text-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 45%;
}

.feature-container img {
    max-width: 35%;
    vertical-align: middle;
}

.feature-header {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--theme-color);
}

.feature-title {
    font-size: 40px;
    font-weight: 500;
}

.feature-description {
    font-size: 25px;
    font-weight: 300;
    color: gray;
}

@media only screen and (max-width: 1024px) {
    .features-container {
        gap: 50px;
    }

    .feature-container {
        flex-direction: column;
        gap: 25px;
    }

    .feature-container-reverse {
        flex-direction: column-reverse;
    }

    .feature-text-container {
        width: 100%;
    }

    .feature-container img {
        max-width: 40%;
    }

    .feature-header {
        font-size: 15px;
    }

    .feature-title {
        font-size: 30px;
    }

    .feature-description {
        font-size: 20px;
    }
}

@media only screen and (max-width: 512px) {
    .feature-container img {
        max-width: 75%;
    }
}


/* FAQ */

.faqs-container {
    display: grid;
    column-gap: 100px;
    grid-template-columns: calc(50% - 50px) calc(50% - 50px);
    width: 80%;
    max-width: 1250px;
    margin: auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-expand-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.faq-title {
    font-size: 25px;
    font-weight: 500;
}

.faq-icon {
    height: 40px;
    width: 40px;
}

.faq-description-container {
    display: none;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 300;
}

.faq-container hr {
    border: .75px solid gray;
}

@media only screen and (max-width: 800px) {
    .faqs-container {
        width: 90%;
        grid-template-columns: 100%;
    }

    .faq-title {
        font-size: 20px;
    }
}
