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

/* ==================================================
   HERO
   ================================================== */
#hero {
    overflow: hidden;
    padding: 90px 0px 90px 0px;
    margin-top: 100px;
    height: 60vh;
    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;
}

.about figure img{
    max-width: 500px;
}
.about{
padding: 90px 0px 0px 0px;
}
.about figure.order-md-2 img{
    float: inline-end;
}

/* ==================================================
   HOW TO
   ================================================== */
.media {
    position: relative;
}

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

.media .media-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.media h2,
.media .supporting-title {
    color: var(--color-white);
}

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

.media p{
    color: var(--color-white);
    text-align: center;
}

.media iframe{
    width: 100%;
    height: 640px;
    border-radius: 25px;
}

.media .section-title{
    max-width: 100%;
}