html, body {
    margin: 0;
    padding: 0;
    font-family: gira-sans, sans-serif;
    overflow-x: hidden;
    background-color: #f6f9fc;
    height: fit-content;
}

h2 {
    font-size: 54px;
    font-weight: 600;
}

h3 {
    font-size: 35px;
    font-weight: 500;
    align-self: center;
}

section {
    min-height: 100vh;
    padding-bottom: 50px;
}

.product {
    margin-top: 150px;
}

.title-stripe {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    color: white;
    background-color: #4215cc;
    opacity: 0;
}

.content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.point-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #4215cc;
    margin: 80px 0;
    border-radius: 25px;
    max-width: 1030px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
    padding: 25px 50px 70px 50px;
}

.multi-column {
    margin-top: 75px;
    display: flex;
    flex-direction: row;
    column-gap: 10%;
    align-items: flex-start;
}

.column {
    flex-shrink: 0;
}

.column.left {
    width: 45%;
}

.column.right {
    width: 40%;
}

.video {
    border-radius: 25px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.stat-video {
    width: 100%;
}

.bio-image {
    width: 350px;
    border-radius: 15px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.media {
    display: flex;
    height: fit-content;
    min-height: auto;
    padding-left: 50px;
    overflow: hidden;
}

.media-container {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.media-container::-webkit-scrollbar {
    display: none;
}

.bottom-media {
    flex-shrink: 0;
    height: 350px;
    border-radius: 15px;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

:focus-visible {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

/* Media queries */
@media only screen and (max-width: 920px) {
    .bottom-media {
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    .multi-column {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .column {
        padding-right: 50px;
    }

    .column.left {
        width: 100% !important;
    }
    
    .column.right {
        width: 100% !important;
    }

    .bio-container {
        margin-top: 0 !important;
    }

    .bio-col {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    .bio-col > img {
        margin-left: 0 !important;
    }
}