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

/* ==================================================
   HERO
   ================================================== */
#hero {
    overflow: hidden;
    padding: 120px 0px 120px 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 figure.order-md-2 img{
    float: inline-end;
}
.about {
    padding: 90px 0px 0px 0px;
}



/* ==================================================
   media (vídeo destaque)
   ================================================== */
.media.section {
    position: relative;
}

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

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

.media .container,
.media .container-fluid {
    position: relative;
    z-index: 2;
}

.media .media-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

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

.media .media-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 25px;
    overflow: hidden;
}

.media .media-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}



/* ==================================================
   team
   ================================================== */
.team-card {
    background: var(--color-primary);
}
#team .container {
    position: relative;
    z-index: 2;
    padding: 0px 15px 40px 15px;
}

#team h2 {
    margin-bottom: 0.5rem;
}

#team .supporting-title {
    font-weight: 600;
    font-size: var(--fs-md);
}

#team .team-list h3 {
    font-weight: 700;
}

#team .team-list .post-link {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-text);
}


@media (max-width: 767px) {
    .post-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
