.top-section {
    display: flex;
    width: 100vw;
    height: fit-content;
    display: flex;
    background-color: var( --background-color-2);
    padding-bottom: 2em;
}

.top-section-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50vw;
    background-color: var( --background-color-2);
    height: 100%;
    padding-left: 7vw

}

.top-section-title {
    font-size: 3em;
    margin-top: 3em;
    color: var(--text-color-2);
    font-weight: 300;
    width: 70%;
}

.top-section-title-em {
    font-size: 1.3em;
    margin-top: 1em;
    color: var(--main-brand-color);
}

.top-section-description {
    font-size: 1.3em;
    margin-top: 1em;
    color: var(--text-color-2);
    font-weight: 300;
    width: 70%;
}

.top-section-button {
    margin-top: 4em;
    font-size: 1.5em;
    color: var(--text-color-2);
    background-color: var( --button-color-1);
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    padding-left: 0.6em;
    padding-right: 0.6em;
    cursor: pointer;
    border: 2px solid var(--background-color-1);
    color: var(--text-color-2);
    background-color: var(--background-color-2);
    font-weight: 200;
}



.top-section-image {
    width: 40%;
    height: fit-content;
}


@media (max-width: 700px) {
    .top-section-image {
        display: none;
    }

    .top-section-title {
        width: 100%;
        font-size: 1.8em;
    }

    .top-section-title-em {
        font-size: 1.3em;
    }

    .top-section-description {
        font-size: 0.9em;
    }

    .top-section-side {
        width: 70%;
    }
}