/**
=====================================================
ABOUT PAGE
=====================================================
*/

/* ==================================================
   HERO
   ================================================== */
#hero {
    overflow: hidden;
    padding: 120px 0px 120px 0px;
    margin-top: 110px;
    height: 540px;
    position: relative;
}

#hero h1 {
    font-weight: 900;
    color: var(--color-text);
}

#hero .supporting-title {
    font-weight: 600;
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .hero-background .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            color-mix(in srgb, #ffffff00, transparent 20%) 0%,
            color-mix(in srgb, #ededed00, transparent 10%) 100%);
}

.hero .container {
    z-index: 2;
}

#hero .row {
    height: 100%;
    align-items: center;
}
/* ==================================================
   HOW TO
   ================================================== */
#how-to {
    position: relative;
}

#how-to .how-to-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

#how-to .how-to-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#how-to .how-to-background .overlay {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
}

#how-to .container {
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    display: flex;
    text-align: center;
}

#how-to h2,
#how-to .supporting-title {
    color: var(--color-white);
}

#how-to .how-to-list h3 {
    font-weight: 900;
    color: var(--color-primary);
}

#how-to p{
    color: var(--color-white);
    text-align: center;
}

#how-to iframe{
    width: 100%;
    height: 640px;
    border-radius: 25px;
}

#how-to .section-title{
    max-width: 100%;
}