.hero-mobile {
    margin: 80px 0 0 0;
    background-color: var(--white-3);
    width: 100%;
    position: relative;

    @media (min-width: 768px) {
        display: none;
    }
}

.hero__header-mobile {
    font-size: 29px;
    line-height: 29px;
    color: var(--turquoise);
    font-family: 'Playfair Display', serif;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 20px 28px 0;

    @media (min-width: 720px) {
        text-align: center;
    }
}

.hero__deco-block-mobile {
    height: calc(76px + 4vw);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-3);
    z-index: 1;

    @media (max-width: 356px) {
        text-align: center;
        height: 160px
    }

    @media (min-width: 714px) {
        height: 80px
    }

    @media (min-width: 768px) {
        display: none;
    }
}

.hero__container-mobile {
    width: 100%;
    min-height: calc(100vh - 138px);
    padding: 0 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__dark-bag-half-mobile {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: var(--turquoise);
}

.hero__logo-container-mobile {
    width: 100%;
    max-width: 520px;
    height: 457px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2F4449;
}

.hero__logo-container-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 56%;
    object-fit: cover;
}

.hero__logo-mobile {
    z-index: 2;
    @media (min-width: 768px) {
        display: none;
    }
}
