.hero {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero header {
    display: flex;
    width: 800px;
    max-width: 100%;
}

.hero .logo-section {
    margin-bottom: 1.5rem;
    margin-right: 60px;
}

.hero .text-section {
    padding-top: 0.5rem;
}

.hero .hero-image {
    position: relative;
}

.hero .hero-image::before {
    content: ' ';
    display: block;
    height: 140px;
    background-color: #FFF;
    position: absolute;
    top: -1px;
    left: -1px;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    width: 100%;
}

.hero .eyecatcher {
    border-radius: 100%;
    background-color: var(--color-accent);
    position: absolute;
    right: 15px;
    width: 227px;
    height: 227px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    top: -100px;
    transition: 300ms ease-in-out;
}

.hero .eyecatcher:hover,
.hero .eyecatcher:focus {
    background-color: var(--color-secondary);
    color: var(--color-font2);
}

.hero .eyecatcher .text {
    font-size: 26px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0;
    text-transform: uppercase;
}

@media(max-width: 767px) {
    .hero {
        min-height: 0;
    }

    .hero header {
        display: block;
    }

    .hero .logo-section {
        margin: 0;
    }

    .hero .eyecatcher {
        display: none;
    }

    .hero .hero-image::before {
        height: 40px;
    }

    .hero .text-section {
        margin-bottom: 30px;
    }
}