.corptheme_front-page__banner {
    display: flex;
    position: relative;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .3);
}

.corptheme_front-page__banner img {
    margin: auto;
    object-fit: cover;
    height: 75vh;
    width: 100%;
    user-select: none;
}

.corptheme_front-page__banner__slogan-container {
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
}

.corptheme_front-page__banner__slogan-container__slogan {
    margin: auto;
    margin-left: 10vw;
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, .3), 0px 0px 32px rgba(0, 0, 0, .7);
    font-size: min(3.5vw, 3rem);
    font-weight: bold;
}

.corptheme_front-page__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
}

.corptheme_front-page__block h2 {
    text-align: center;
    margin: 1rem 10vw;
}

.corptheme_front-page__emblem-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.corptheme_front-page__emblem-container__emblem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
}

.corptheme_front-page__emblem-container__emblem p {
    margin: 0;
}

.corptheme_front-page__emblem-container__emblem img {
    user-select: none;
    height: 120px;
    width: 120px;
}

.corptheme_front-page__services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.corptheme_front-page__services div {
    display: flex;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
    line-height: 32px;
    /* background-color: #eee; */
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, .16), 4px 4px 8px rgba(0, 0, 0, .16);
    color: #323232;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, .16);
}

.corptheme_front-page__products_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 8vw;
}

.corptheme_front-page__products_container__product {
    width: 320px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, .16);
    overflow: hidden;
}

.corptheme_front-page__products_container__product img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    background-color: white;
    transition: transform .3s cubic-bezier(0, .8, .2, 1);
}

.corptheme_front-page__products_container__product img:hover {
    transform: scale(1.2);
}

.corptheme_front-page__products_container__product div {
    font-size: large;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0px 0px 48px rgba(0, 0, 0, .16);
    text-shadow: 0px 0px 4px white;
    position: relative;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, .3);
    flex-grow: 1;
}

@media only screen and (max-width: 1080px) {
    .corptheme_front-page__banner__slogan-container__slogan {
        margin-left: 24px;
        margin-bottom: 24px;
        font-size: 5vw;
    }
}

@media only screen and (max-width: 960px) {
    .corptheme_front-page__products_container {
        padding: 1rem 4vw;
    }

    .corptheme_front-page__products_container__product {
        width: 280px;
    }

    .corptheme_front-page__products_container__product img {
        width: 280px;
        height: 280px;
    }

    .corptheme_front-page__products_container__product div {
        font-size: medium;
    }
}

@media only screen and (max-width: 720px) {
    .corptheme_front-page__products_container {
        gap: 12px;
        padding: 1rem 0;
    }
    .corptheme_front-page__products_container__product {
        width: calc(calc(100vw - 60px) / 2);
    }

    .corptheme_front-page__products_container__product img {
        width: calc(calc(100vw - 60px) / 2);
        height: calc(calc(100vw - 60px) / 2);
    }
}

@media only screen and (max-width: 640px) {
    .corptheme_front-page__banner img {
        height: 50vh;
    }
}
