@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Bold.woff2') format('woff2'),
        url('../fonts/WorkSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('../fonts/WorkSans-Regular.woff2') format('woff2'),
        url('../fonts/WorkSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Old Growth';
    src: url('../fonts/OldGrowth-Regular.woff2') format('woff2'),
        url('../fonts/OldGrowth-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    --font-family:'Work Sans', sans-serif;
    --font-family-title:'Old Growth', sans-serif;

    font-size: 22px;
}


.bg-body{
    background-color: #3748EF;
}

.container{
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    .container {
        max-width: 1320p;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

.header h1, .header h2, .header p {
    text-align: center;
}

.header h1 {
    margin-bottom: .75rem;
}

    .header h1 span{
        background-color: #FCCC72;
        color: #151A34;
        padding: .75rem 1.5rem;
        display: inline-block;
        font-family: var(--font-family-title);
        border-radius: 10px;
    }

.header h2{
    color: #fff;
    font-family: var(--font-family);
    margin-bottom: .5rem;
}

.header p{
    color: #fff;
    font-family: var(--font-family);
    margin-bottom: 1.5rem;
}

.border-radius{
    border-radius: 10px;
}

.iframe{
    width: 100%;
}

.iframe-video{
    width: 100%;
    border-radius: 10px;
    border: solid 4px #fff;
    height: 500px;
}

.img-container{
    max-width: 100%;
}


.content-audio{
    max-width: 600px;
    background-color: #fff;
    display: flex;
    align-items: center;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 3rem;
}

.content-audio .img{
    width: 200px;
    height: 200px;
    background-image: url(../img/img1.jpg);
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

    .content-audio .img::before{
        width: 100%;
        height: 100%;
        background-color: rgba(242, 126, 126, .5);      
        content: '';
        display: block;
        border-radius: 10px;
    }

.content-audio .info{
    padding: 1rem;
    font-family: var(--font-family);
}
    .content-audio .info h3 {
        color: #151A34;
    }
    .content-audio .info span {
        font-size: .8em;
        color: #D9D9D9;
    }

.content-audio .img--undertake{
    background-image: url(../img/img2.jpg);
}