.hero-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;
    background-color: var(--white-3);
    width: 100%;
    position: relative;

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

.hero__container-mobile {
    margin: 0;
    width: calc(100% - 56px);
    max-width: 420px;
    height: 65vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2F4449;
}

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

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

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

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

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

.hero__contact-mobile {
    margin: 36px 0 0 0;
    padding: 16px 33px;
    background-color: var(--green);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    z-index: 2;
}