/*-------------------------*/
/* BULLETS & IMAGE SECTION */
/*-------------------------*/

/*--- General ---*/
.bullets-section {
    background-color: var(--lightBG);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.bullets-container {
    display: flex;
    width: 100%;
}

.bullets-picture {
    background-color: var(--primaryTheme);
    border-radius: 1rem;
    border: 0.5em solid var(--primaryTheme);
    display: flex;
}

.bullets-picture-image {
    object-fit: cover;
    border-radius: 0.75rem;
}

.bullets-content {
    display: flex;
}

.bullets-headline {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.75rem;
}

.bullets-subheadline {
    margin-top: 0.5rem;
    font-size: 0.825em;
    font-weight: bold;
}

.bullets-content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bullets-point-container {
    display: flex;
    gap: 0.5rem;
}

.bullets-point {
    font-size: 0.825rem;
}

.bullets-button {
    text-transform: uppercase;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .bullets-section {
        padding: 1.5rem;
    }

    .bullets-container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 1rem;
        max-width: 400px;
    }

    .bullets-picture {
        display: flex;
        background-color: var(--primaryTheme);
        border-radius: 1rem;
        border: 0.5em solid var(--primaryTheme);
    }

    .bullets-picture-image {
        height: 100%;
        width: 100%;
    }

    .bullets-content {
        flex-direction: column;
        padding: 0 1.5rem;
    }

    .bullets-button {
        margin-top: 2rem !important;
        width: 80%;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .bullets-section {
        padding: 5rem 2rem;
    }

    .bullets-container {
        max-width: 900px;
    }

    .bullets-content {
        display: flex;
        width: 50%;
    }

    .bullets-picture {
        margin-right: 0.5rem;
    }

    .bullets-picture-image {
        max-width: 450px;
        height: auto;
    }

    .bullets-content {
        margin-left: 0.5rem;
        padding-left: 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 500px;
    }

    .bullets-button {
        margin-top: 4rem !important;
        width: 500px;
    }
    
}

/*--------------------------*/
/* STATEMENT BANNER SECTION */
/*--------------------------*/

/*--- General ---*/
.banner-section {
    width: 100%;
}

.banner-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.banner-statement {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .banner-section {
        padding: 0 1rem;
    }

    .banner-statement {
        font-size: 0.5em;
    }
    
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    
    .banner-statement {
        font-size: 0.825em;
    }
}

/*------------------*/
/* ABOUT ME SECTION */
/*------------------*/

/*--- General ---*/
.about-section {
    display: flex;
    justify-content: center;
}

.about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
}

.about-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.about-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-picture {
    display: flex;
    height: 100%;
    margin: 1rem;
    background-color: var(--primaryTheme);
    border-radius: 1rem;
    border: 0.5em solid var(--primaryTheme);
}

.about-picture-image {
    width: auto;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.about-headline {
    margin: 0 0 0.3em;
}

.about-subheadline {
    margin: 0 0 0.1em;
    line-height: 1em;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .about-section {
        padding: 2rem 0;
        margin: 0;
    }

    .about-container {
        max-width: 90%;
    }

    .about-top {
        flex-direction: column-reverse;
    }

    .about-content {
        text-align: center;
        align-items: center;
    }

    .about-button {
        width: 80%;
    }

    .about-picture-image {
        max-width: 300px;
    }
    
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .about-section {
        padding: 5rem 2rem;
    }

    .about-button {
        margin-top: 2rem !important;
        width: 500px;
    }

    .about-picture-image {
        max-width: 400px;
    }
}

/*-------------------*/
/* SIX CARDS SECTION */
/*-------------------*/

/*--- General ---*/
.six-card-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.six-card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.six-card-headline {
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.six-card-description {
    margin-top: 1em;
    text-align: center;
}

.six-card-card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin: 1rem 0 3rem;
}

.six-card-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    background-color: var(--lightBG);
    border-radius: 1em;
    padding: 20px;
    box-shadow: 0 0 0.5rem 0.1rem var(--secondaryTheme);
}

.six-card-card * {
    margin: 5px 0;
    color: var(--darkText);
}

.six-card-button {
    margin-top: 3rem;
    text-align: center;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .six-card-section {
        padding: 2rem;
    }

    .six-card-container {
        text-align: center;
    }

    .six-card-card-container {
        flex-direction: column;
        align-content: center;
    }

    .six-card-headline {
        font-size: 2.75rem;
        line-height: 2.75rem;
    }

    .six-card-description {
        max-width: 250px;
    }

    .six-card-button {
        width: 80%;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {

    .six-card-section {
        padding: 5rem 2rem;
    }

    .six-card-container {
        max-width: 1000px;
    }

    .six-card-description {
        max-width: 500px;
    }

    .six-card-card-container {
        flex-direction: row;
    }

    .six-card-card {
        width: 300px;
    }

    .six-card-button {
        width: 500px;
    }
}

/*----------------*/
/* 3 STEP SECTION */
/*----------------*/

/*--- General ---*/
.steps-section {
    background-color: var(--lightBG);
    display: flex;
    align-items: center;
    width: 100%;
    padding: 3rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.steps-headline {
    text-align: center;
    margin-bottom: 0;
}

.steps-step-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.steps-step {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 0.5rem 0.1rem var(--secondaryTheme);
    max-width: 300px;
}

.steps-step * {
    margin: 0.5em 0;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .steps-step-container {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        max-width: 90%;
    }

    .steps-button {
        width: 80%;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .steps-section {
        padding: 5rem;
    }

    .steps-step-container {
        display: flex;
        flex-direction: row;
        max-width: 1000px;
    }

    .steps-button {
        width: 500px;
    }
}

/*-----------------*/
/* CONTACT SECTION */
/*-----------------*/

/*--- General ---*/
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.contact-headline {
    text-align: center;
    margin: 0;
    width: 100%;
}

.contact-button {
    margin-top: 2rem !important;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .contact-container {
        padding: 4rem 2rem 3rem;
    }

    .contact-headline {
        padding: 0 2rem;
    }

    .contact-button {
        width: 80% !important;
    }

}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .contact-container {
        max-width: 600px;
        padding: 4rem 0 3rem;
    }
    
    .contact-button {
        width: 500px;
    }
}

/*-------------*/
/* FAQ SECTION */
/*-------------*/

/*--- General ---*/
.faq-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-headline {
    text-align: center;
    margin: 0;
    padding: 0 2rem 4rem 2rem;
}

.faq-question-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
}

.faq-question {
    background-color: var(--lightBG);
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    box-shadow: 0 0 0.5rem 0.1rem var(--secondaryTheme);
}

.faq-question-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.faq-question-question {
    margin: 0;
}

.faq-question-answer {
    text-align: left;
}

.faq-question-answer-expanded {
    display: block;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question-container {
        width: 80%;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .faq-section {
        padding: 5rem;
    }

    .faq-question-container {
        width: 100%;
    }
}

/*----------------*/
/* ?????? SECTION */
/*----------------*/

/*--- General ---*/

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {

}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {

}