* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-brand-color: #bd5353;
    --main-transparent-brand-color: #bd535361;

    --background-color-1: #f0f0f0;
    --background-color-2: #e6e3e3;

    --button-color-1: #d9d7d757;
}


.main-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.highlighted {
    background-color: var(--main-brand-color);
}

.section {
    width: 100%;
    padding-top: 2em;
    padding-bottom: 5em;
    background-color: var(--background-color-2);
}

.section-upper-line {
    width: 40vw;
    margin: 0 auto;
    border-top: 2px solid var(--main-transparent-brand-color);
}

.section-title {
    display: flex;
    width: 100vw;
    justify-content: center;
    text-align: center;
    font-size: 2vw;
    font-weight: 500;
    margin-bottom: 4em;
}



.flex-sections {
    display: flex;
    width: 90vw;
    margin: 0 auto;
    justify-content: center;
    gap: 10%;
}

.block-sections {
    display: block;
    width: 40%;
}



.sections-image {
    width: 50vw;
    height: auto;
    max-width: 20em;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border-radius: 0.5em;
}

.sections-title {
    width: 100%;
    font-size: 2vw;
    margin-top: 3em;
    margin-bottom: 1.5em;
}

.sections-text {
    width: 40vw;
    margin-top: 5%;
    font-size: 1.3vw;
}


@media (max-width: 900px) {

}


@media (max-width: 600px) {

    .section-title {
        width: 80vw;
        margin: 0 auto;
        font-size: 6vw;
        margin-bottom: 3em;
        margin-top: 1em;
    }


    .flex-sections {
        display: flex;
        flex-direction: column;
    }

    .sections-text {
        font-size: 1em;
        margin-bottom: 1em;
        width: 60vw;
    }

    .sections-image {
        width: 80vw;
    }

    .sections-title {
        font-size: 1.3em;
    }

    .section-title {
        margin-bottom: 0em;
    }

}
