#side_header {
    width: 100%;
    height: 547px;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(0deg, var(--color-primary) 85%, var(--color-light) 20%);
}

#side_header .column_image {
    height: 414px;
    min-width: 390px;
    max-width: 425px;
    text-align: center;
    margin-top: -100px;
}

#side_header .column_image .container_image {
    height: 100%;
    width: 100%;
    padding: 28px;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    box-sizing: border-box;
    background-color: var(--color-light);
}

#side_header .column_image .container_image img {
    margin-top: 28px;
    margin-left: -28px;
}

#side_header .carrusel_section {
    flex-direction: column;
}

#side_header .carrusel_section button {
    padding: 16px;
    border: none;
    background-color: transparent;
}

#side_header .carrusel_section svg {
    color: var(--color-background);
}

#side_header .carrusel {
    position: relative;
    display: flex;
    height: 170px;
    max-width: 425px;
    scroll-behavior: smooth;
    overflow: hidden;
    flex-wrap: wrap;
    scroll-snap-type: x mandatory;
}

#side_header .carrusel_content {
    position: relative;
    display: block;
    height: 148px;
    align-items: center;
    box-sizing: border-box;
    padding-inline: 16px;
    margin-block: 10px;
    scroll-snap-align: center;
}

#side_header .separator {
    margin-top: 12px;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    #side_header {
        height: 444px;
        flex-direction: row-reverse;
        background: none;
        background-color: var(--color-primary);
    }

    #side_header .column_image {
        height: 100%;
        margin-top: 0px;
    }

    #side_header .column_image .container_image {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 50%;
        border-bottom-left-radius: 50%;
        background-color: var(--color-background);
    }

    #side_header .column_image .container_image img {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
    }

    #side_header .carrusel {
        height: 320px;
        max-width: 509px;
    }

    #side_header .carrusel_content {
        height: 300px;
    }
}