.spacer {
    height: 100dvh;
}

header.hero {
    scroll-snap-align: center;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1;
    height: 100dvh;
    background-image: url('/static/img/mearsk_ship.webp');
    background-size: cover;
    background-position: left;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 200px 10px;
    gap: 20px;
}
header.hero p {
    color: #555555;
    text-align: center;
    max-width: 700px;
}
/* sections */
section {
    position: relative;
    z-index: 2;
    padding: 100px 50px;
    background: #FBFDFF;
    display: flex;
    scroll-snap-align: center;
}

section.companies {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 20px 20px 0 0;
}
section.companies .company_container {
    width: 100%;
    display: flex;
    margin-top: 50px;
    flex-wrap: wrap;
    border-right: 1px solid #EEEEEE;
}
section.companies .company_container .company {
    height: 240px;
    width: 100%;
    border: 1px solid #EEEEEE;
    flex-direction: column;
    gap: 20px;
    border-right: none;
    background: white;
    position: relative;
    flex: 1 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6f6f6f;
    text-decoration: none;
}
section.companies .company_container .company img,
section.companies .company_container .company p {
    text-align: center;
    filter: saturate(0);
    opacity: 0.6;
    transition: filter 200ms ease-in-out, opacity 200ms ease-in-out;
}

section.companies .company_container .company:hover img,
section.companies .company_container .company:hover p {
    filter: saturate(1);
    opacity: 1;
}


section.companies .company_container .company span {
    position: absolute;
    bottom: 5px;
    left: 5px;
    border: 1px solid #EEEEEE;
    padding: 5px 10px;
    border-radius: 5px;
    color: #6f6f6f;
    font-size: 9px;
}

/*// next section //*/
section.about {
    min-height: calc(100dvh - 200px);
    flex-shrink: 0;
    width: 100vw;
    flex-direction: column;
    gap: 10px;
    /*justify-content: center;*/
    transition: transform 300ms ease-in-out;
    background: white;
    padding-bottom: 100px;
}

.forward_btn {
    transition: transform 200ms;
    cursor: pointer;
    height: 50px;
    object-fit: contain;
    z-index: 2;
    position: absolute;
    bottom: 100px;
    right: 50px;
}

section.current_progress {
    flex-wrap: wrap;
    gap: 20px;
    background: white;
    justify-content: space-between;
}

section.get_involved {
    flex-wrap: wrap-reverse;
    gap: 20px;
    justify-content: space-between;
    min-height: 100dvh;
}

section.get_involved .text_content {
    flex: 1 0 200px;
    min-height: calc(100dvh - 300px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 550px) {
    header.hero {
        padding: 75px 10px;
    }
    section {
        padding: 50px 10px;
    }
    .forward_btn {
        bottom: 20px;
        right: 10px;
    }
}