.hero {
    position: relative;
    width: 100%;
    height: 490px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    overflow: hidden;

    background-color: var(--bg);
    color: var(--txt);
    margin-top: var(--nav-h);
}

.hero-sml {
    margin-top: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 80%;
}

.hero-cover {
    padding: 0 100px;
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(80deg, var(--bg) 45%, transparent 75%);
}

.hero-content {
    width: fit-content;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.hero-cover .side-text {
    flex: 0 1 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-big {
    font-size: var(--h1);
    color: hsl(var(--hue), var(--acc-1-s), var(--acc-1-l));
    font-family: var(--brand-font);
    font-weight: bold;
}

.hero-small {
    font-size: var(--h2);
    font-family: var(--body-font);
    font-weight: normal;
}

.hero-desc {
    font-size: var(--h6);
    margin-top: var(--size-3);
}

.hero-icon {
    bottom: 0;
    right: 0;
    transform: translate(21%, 17%);
    position: absolute;
    width: 320px;
    display: flex;
    align-items: center;
}

.hero-icon img {
    width: 100%;
}