/***********************
    YOUTUBE CARD
************************/
.youtube_card{
    margin-top: 3rem;
    margin-left: 8rem;
    padding: 1rem;
    width: 600px;
    height: 338px;
    background-color: var(--logo);
    border-radius: 30px;
    border: 5px solid var(--black_logo);
    position: relative;
}
.youtube_card .play{
    will-change: transform;
    transition: all 250ms linear;
    width: 180px;
    position: absolute;
    bottom: -4rem;
    right: -4rem;
}
.youtube_card .play:hover{
    transform: scale(1.02);
}
svg g path{
    transition: all .3s linear;
}
.youtube_card .play:hover svg g path{
    fill: var(--green);
}
.youtube_card .play:active{
    transform: scale(1);
}
.youtube_card h2{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    font-size: 28px;
    color: var(--white);
    text-align: center;
}
.youtube_card p{
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 3rem;
}
.youtube_card a:first-of-type{
    color: var(--white);
    text-decoration: underline;
    padding-left: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    transition: gap 250ms ease;
}
.youtube_card a:first-of-type:hover{
    gap: 10px;
}
@media screen and (max-width: 1130px){
    .youtube_card{
        margin-left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }
    .youtube_card h2{
        margin-bottom: 1.5rem;
    }
    .youtube_card a:first-of-type{
        display: none;
    }
    .youtube_card a img{
        position: static;
        width: 130px;
        margin-bottom: 2rem;
    }
}
@media screen and (max-width: 768px){
    .youtube_card{
        height: fit-content;
        width: 90%;
        padding: 2rem 1.5rem;
    }
    .youtube_card h2{
        margin: auto;
        margin-bottom: 1.5rem;
    }
    .youtube_card a:first-of-type{
        padding-bottom: 1rem;
    }
    .youtube_card a img{
        position: static;
        width: 150px;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 750px){
    .youtube_card a:first-of-type{
        padding-bottom: 1rem;
        padding-left: auto;
        max-width: 400px;
        width: 100%;
        line-height: 1.8rem;
    }
    .youtube_card a:first-of-type svg{
        display: none;
    }
}
@media screen and (max-width: 692px){
    .youtube_card h2{
     font-size: 26px;
    }
}
@media screen and (max-width: 590px){
    .youtube_card h2{
        font-size: 22px;
        line-height: 1.8rem;
    }
    .youtube_card a img{
        width: 130px;
    }
}
@media screen and (max-width: 320px){
    .youtube_card h2{
        font-size: 20px;
        line-height: 1.8rem;
    }
    .youtube_card p{
        text-align: center;
    }
}
/***********************
    SECTION 1
************************/
.section_one{
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section_one img{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    margin-top: 3rem;
    border: 5px solid var(--black_logo);
    border-radius: 30px;
}
/***********************
   WHO ARE WE
************************/
.site_title_about{
    margin: 8rem 0;
    text-align: center;
    font-size: 6rem;
    color: var(--logo);
    font-weight: 600;
}
.bio_card_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    margin-bottom: 8rem;
}
.bio_card_container > div:nth-child(2){
    align-self: flex-end;
}
.bio_card{
    max-width: 980px;
    width: 100%;
    padding: 2rem;
    border-radius: 30px;
    border: 5px solid var(--black_logo);
    /* box-shadow: var(--color_sdw); */
}
.bio_card > div{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.bio_img{
    width: 250px;
    height: 250px;
    border-radius: 30px;
    border: 5px solid var(--logo);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bio_card > div div h2{
    font-size: 38px;
    color: var(--logo);
    font-weight: 600;
    margin-bottom: 1rem;
}
.bio_card > div div h3{
    font-size: 21px;
    line-height: 1.8rem;
    color: var( --violet);
}

@media screen and (max-width: 1130px){
    p{
        max-width: 700px !important;
    }
    .section_one img{
        max-width: 700px;
    }
    .bio_card_container{
        align-items: center;
    }
    .bio_card_container > div:nth-child(2){
        align-self: center;
    }
    .bio_card{
        max-width: 700px;
        padding: 2rem;
    }
    .bio_card > div{
        gap: 1rem;
    }
    .bio_img{
        width: 150px;
        height: auto;
        aspect-ratio: 1/1;
    }
    .bio_card > div div h2{
        font-size: 32px;
    }
    .bio_card > div div h3{
        font-size: 18px;
        line-height: 1.5rem;
    }
}
@media screen and (max-width: 768px){
    .site_title_about{
        font-size: 56px;
        margin: 5rem 0;
    }
    .bio_card > div div h2{
        font-size: 28px;
    }
    .bio_card > div div h3{
        font-size: 16px;
    }
}
@media screen and (max-width: 430px){
    .site_title_about{
        font-size: 46px;
        margin: 3rem 0;
    }
    .bio_card_container{
        gap: 3rem;
        margin-bottom: 5rem;
    }
    .bio_card > div{
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    .bio_card > div div {
        text-align: center;
    }
    .bio_card > div div h2{
        margin-bottom: .5rem;
    }
    .bio_img{
        width: 180px;
    }
}
@media screen and (max-width: 380px){
    .section_one{
        margin-top: 0;
    }
    .site_title_about{
        font-size: 36px;
    }
    .bio_card{
        padding: 1.5rem;
    }
    .bio_card > div{
        gap: 1rem;
    }
    .bio_card > div div h2{
        font-size: 22px;
        line-height: 1.8rem;
    }
}
@media screen and (max-width: 320px){
    .bio_card > div div h2{
        font-size: 20px;
    }
}
