.hero {
    display: flex;
    flex-flow: column;
    justify-content: center;
    height: 100vh;
    width: 100%;
    position: relative;
}

.secondary-hero {
    height: 70vh;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-bg-image::after {
    content: '';
    background-color: black;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
}

.full-page .hero-bg-image::after,
.tag-main .hero-bg-image::after {
    opacity: 0.45;
}

.hero-content {
    display: flex;
    flex-flow: column;
    row-gap: 16px;
    flex: 0 1 auto;
    position: relative;
    z-index: 2;
}

.hero-content .subtitle {
    max-width: 856px;
}

.banner-section {
    position: relative;
    padding: 40px 24px;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    flex-direction: column;
}

.banner-section .hero-bg-image::after {
    opacity: 0.55;
}

.banner-section p {
    margin-top: 8px;
    margin-bottom: 24px;
    max-width: 480px;
}

.banner-section h3,
.banner-section p {
    color: var(--background-color);
}

.subscribe-icon {
    margin-right: 10px;
    width: 20px;
}

.tag-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.tag-button {
    justify-content: center;
    padding: 12px 32px;
    display: flex;
    position: relative;
    color: var(--background-color);
    border: 1px solid var(--background-color);
    border-radius: 32px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    overflow: hidden;
    text-decoration: none;
    transition: color .2s ease;
}

.tag-button:hover {
    color: var(--text-color);
}

.tag-button::after {
    content: '';
    background-color: var(--background-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
    z-index: -1;
    transition: opacity .2s ease;
}

.tag-button:hover::after {
    opacity: 1;
}

@media (max-width: 767px) { 
    .tag-buttons {
        display: none;
    }
}