.hero {
    position: relative;
    border: 15px solid var(--tertiaryColor);
    border-radius: 1.75rem;
    height: calc(100vh - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero .container.show-menu {
   z-index: 0;
}

.hero h1 {
    font-size: 3.1rem;
    color: white;
    max-width: 40rem;
}

.hero p {
    font-size: 1.1rem;
    color: white;
    width: 40rem;
}

.hero a {
    background: var(--secondaryColor);
    color: #000;
    padding: 14px 54px 12px;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    height: fit-content;
    align-self: flex-end;
    transition: 0.2s all;
    width: 20rem;
    text-align: center;
}
.hero a:hover {
    filter: brightness(110%);
}

/* INTRO */
.left-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-end;
    position: relative;
    border-radius: 1.25rem;
    background: white;
    padding: 5rem 5rem 3rem;
}

.right-box {
    position: relative;
    background-size: cover;
    border-radius: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 5rem 5rem 3rem;
}
.right-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1.25rem;
    z-index: 1;
}

.right-box-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 20rem;
    color: white;
    position: relative;
    z-index: 2;
}