/* ////////////////////////////////////////////////////////////////////////////
HERO
////////////////////////////////////////////////////////////////////////////*/

#hero{
    padding: 10px 200px;
}
#hero .inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#hero .left{
    position: relative;
    z-index: 2;
}
#hero .left .text{
    padding-right: 250px;
}
#hero h1{
    font-family: 'nowextrabold';
    font-size: 43px;
    line-height: 46px;
}
#hero h1 .accent{
    color: var(--blue);
}
#hero .buttons{
    margin-top: 40px;
    display: flex;
}
#hero .btn{
    margin-right: 10px;
}
#hero .right{
    background: var(--accent);
    padding: 15px;
    border-radius: 50%;
    position: relative;
}
#hero .right::after{
    content: '';
    position: absolute;
    left: -450%;
    top: 0;
    width: 500%;
    height: 100%;
    background: var(--accent);
    z-index: 1;
}
#hero .right .wrap{
    border-radius: 50%;
    height: 400px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    z-index: 2;
    position: relative;
    background: var(--accent);
}
#hero .right img {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    object-fit: cover;
}

@media(max-width: 1800px){
    #hero .left .text{
        padding-right: 150px;
    }
}
@media(max-width: 1700px){
    #hero .left .text{
        padding-right: 200px;
    }
}
@media(max-width: 1600px){
    #hero .left .text{
        padding-right: 100px;
    }
    #hero{
        padding: 10px 20px;
    }
}
@media(max-width: 1200px){
    #hero{
        background: var(--accent);
    }
    #hero .inner{
        flex-wrap: wrap;
        justify-content: center;
    }
    #hero .left .text{
        padding-right: 0;
    }
    #hero .right{
        margin-top: 40px;
    }
}
@media(max-width: 767px){
    #hero .right .wrap{
        height: 300px;
        width: auto;
        padding: 40px;
    }
    #hero h1 {
        font-size: 35px;
        line-height: 38px;
    }
    #hero .buttons{
        margin-bottom: 20px;
    }
    #hero .right img{
        height: 300px;
        width: 300px;
        border-radius: 50%;
    }
}





/* ////////////////////////////////////////////////////////////////////////////
MC
////////////////////////////////////////////////////////////////////////////*/
#mc{
    padding: 50px 0;
}

#mc .content h2,
#mc .content h3,
#mc .content h4,
#mc .content h5{
    margin: 50px 0 20px;
}

#mc .content > :first-child{
    margin-top: 0!important;
}

#mc .row{
    justify-content: space-between;
}

#mc .content h2{
    font-size: 40px;
    line-height: 46px;
}
#mc .content h3{
    font-size: 36px;
    line-height: 43px;
}
#mc .content h4{
    font-size: 33px;
    line-height: 43px;
}
#mc .content h5{
    font-size: 33px;
    line-height: 43px;
}
#mc .content p{
    color: var(--grey);
    font-size: 20px;
    line-height: 27px;
}
#mc .post-navigation{
    margin-top: 50px;
}
#mc .post-navigation a{
        border-radius: 15px;
    width: 100%;
    font-family: 'nowextrabold', sans-serif;
    font-size: 20px;
    padding: 0 18px;
    max-width: 205px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px var(--blue);
    text-decoration: none;
    color: var(--black);
}