#hero {
    position: relative;
    margin-bottom: 8.875rem;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 10rem 5rem 10rem 0;
    width: 65%;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    background-color: #E3E9E4;
    border-radius: 0 4.5rem 4.5rem 0;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -7.5rem;
    width: 100%;
    height: 100%;
    background-color: #E3E9E473;
    backdrop-filter: blur(10px);
    border-radius: 0 4.5rem 4.5rem 0;
    z-index: -2;
}

.hero-text {
    padding-bottom: 5.3125rem;
    text-align: left;
}

.hero-text h1 {
    font-family: var(--headers-font);
    font-weight: var(--h1-weight);
    font-size: var(--h1-size);
    line-height: var(--h1-height);
    color: var(--h1-color);
    margin: 0 0 4.0625rem;
    transform: translateX(-5rem);
    opacity: 0;
    transition: transform .4s, opacity .4s;
    transition-delay: .3s;
}

.inView .hero-text h1 {
    transform: translateX(0);
    opacity: 1;
}

.hero-description {
    font-size: 2.5rem;
    line-height: 3rem;
    transform: translateX(-5rem);
    opacity: 0;
    transition: transform .3s, opacity .3s;
    transition-delay: .6s;
    padding: 0.75rem 0;
}

.inView .hero-description {
    transform: translateX(0);
    opacity: 1;
}

.hero-more {
    display: flex;
}

.hero-more a {
    font-weight: 500;
    font-size: 1.3125rem;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #FFFFFF;
    color: var(--button-color);
    padding: 1rem 1.5rem;
    border: var(--button-border);
    transition: opacity .7s;
    border-radius: var(--button-radius);
}

.inView .hero-more {
    transform: translateY(0);
    opacity: 1;
}

.hero-more a:hover {
    opacity: .7;
}

.hero-drop {
    position: absolute;
    top: calc(100% + 3rem);
    right: 5rem;
    width: 42px;
    height: 60px;
    z-index: 1;
}

.hero-drop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1440px) {
    .hero-content {
        width: 75%;
    }
}

@media (max-width: 1280px) {
    .hero-content {
        padding: 6rem 0 7.5rem;
    }

    .hero-text h1 {
        font-size: 5.25rem;
        line-height: 5.75rem;
    }
}

@media (max-width: 1080px) {
    .hero-text {
        padding-bottom: 4.5rem;
    }
}

@media (max-width: 820px) {
    .hero-content {
        width: 90%;
    }
}

@media (max-width: 620px) {
    .hero-text h1 {
        font-size: 4.25rem;
        line-height: 4.75rem;
    }

    .inView .hero-description {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}