/* Omoss hero */

.omoss_hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-top: 200px;
    margin-bottom: 70px;
}

.omoss_hero img {
    width: 300px;
    height: auto;
    margin-bottom: 50px;
}

.omoss_hero_text {
    width: 70%;
    text-align: center;
}

.omoss_hero_text h1 {
    font-family: "Zalando Sans SemiExpanded";
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 30px;
}

.omoss_hero_text h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: rgba(0, 0, 0, 0.6)
}



/* Omoss info block */

.omoss_info, .omoss_info_right {
    width: 100%;
}

.omoss_info_cards, .omoss_info_cards_right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.omoss_info_text, .omoss_info_text_right {
    width: 100%;
    height: 100%;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.omoss_info_text h1, .omoss_info_text_right h1 {
    font-size: 30px;
    font-family: "Zalando Sans SemiExpanded";
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
}

.omoss_info_text p, .omoss_info_text_right p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.omoss_info_image, .omoss_info_image_right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.omoss_info_cards img, .omoss_info_cards_right img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.omoss_info_text_right {
    grid-column: 2;
    grid-row: 1;
}

.omoss_info_image_right {
    grid-column: 1;
    grid-row: 1;
}


/* End block */

.omoss_end {
    display: flex;
    align-items: center;
    justify-content: center;
}

.omoss_end_text {
    width: 70%;
    text-align: center;
}

.omoss_end_text h1 {
    font-family: "Zalando Sans SemiExpanded";
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 30px;
}

.omoss_end_text h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    color: rgba(0, 0, 0, 0.6)
}




@media (max-width: 1000px) {
    /* Omoss hero */

    .omoss_hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        margin-top: 100px;
        margin-bottom: 70px;
    }

    .omoss_hero img {
        width: 50%;
        height: auto;
        margin-bottom: 50px;
    }

    .omoss_hero_text {
        width: 90%;
        text-align: center;
    }

    .omoss_hero_text h1 {
        font-family: "Zalando Sans SemiExpanded";
        font-size: 25px;
        font-weight: 700;
        margin: 0;
        margin-bottom: 30px;
    }

    .omoss_hero_text h2 {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
        color: rgba(0, 0, 0, 0.6)
    }



    /* Omoss info block */

    .omoss_info, .omoss_info_right {
        width: 90%;
    }

    .omoss_info_cards, .omoss_info_cards_right {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .omoss_info_text_right,
    .omoss_info_image_right {
        grid-column: auto;
        grid-row: auto;
    }

    .omoss_info_image_right { grid-row: 1; }
    .omoss_info_text_right  { grid-row: 2; }

    .omoss_info_image { grid-row: 1; }
    .omoss_info_text  { grid-row: 2; }
    

    .omoss_info_text h1, .omoss_info_text_right h1 {
        font-size: 25px;
    }


    /* End block */

    .omoss_end {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .omoss_end_text {
        width: 90%;
        text-align: center;
    }

    .omoss_end_text h1 {
        font-family: "Zalando Sans SemiExpanded";
        font-size: 35px;
        font-weight: 700;
        margin: 0;
        margin-bottom: 30px;
    }

    .omoss_end_text h2 {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        margin: 0;
        color: rgba(0, 0, 0, 0.6)
    }
}