/* ////////////////////////////////////////////////////////////////////////////
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: 450px;
}
#hero h1{
    font-family: 'nowextrabold';
    font-size: 65px;
    line-height: 74px;
    margin-bottom: 10px;
}
#hero h1 .accent{
    color: var(--blue);
}
#hero p{
    color: var(--grey);
    font-size: 20px;
    line-height: 27px;
}
#hero p strong{
    font-family: 'nowmedium';
    color: var(--black);
    font-size: 27px;
    line-height: 35px;
}
#hero .btn{
    margin-top: 40px;
}
#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: 10px solid var(--blue);
    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{
    width: 100%;
}

@media(max-width: 1800px){
    #hero .left .text{
        padding-right: 300px;
    }
}
@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: 53px;
        line-height: 54px;
    }
}


/* ////////////////////////////////////////////////////////////////////////////
TEAM
////////////////////////////////////////////////////////////////////////////*/
#team{
    margin: 20px 0;
}
#team .container-wrap{
    padding: 0 200px;
}
#team h2{
    font-family: 'nowblack';
    font-size: 55px;
    line-height: 54px;
    margin-bottom: 20px;
}
#team h2 .accent{
    color: var(--blue);
}
#team .top{
    margin-bottom: 20px;
}
#team p{
    font-size: 27px;
    line-height: 35px;
    font-family: 'nowmedium';
}
#team .team .inner{
    display: flex;
}
#team .team img{
    width: 300px;
    border: 10px solid var(--light-blue);
    border-radius: 50%;
}

#team .team p{
    font-size: 20px;
    line-height: 27px;
    color: #586165;
    font-family: 'nowregular';
}
#team .team strong{
    font-family: 'nowmedium';
    font-size: 25px;
    line-height: 33px;
    font-weight: 300;
}
#team .team h4{
    font-size: 33px;
    line-height: 44px;
}
#team .team h4 .accent{
    color: var(--blue);
}
#team .team .wrap{
    padding: 0 30px;
}
#team .team{
    margin: 20px 0;
}

@media(max-width: 1700px){
    #team .container-wrap{
        padding: 0 100px;
    }
}
@media(max-width: 1500px){
    #team .container-wrap{
        padding: 0 20px;
    }
}
@media(max-width: 1400px){
    #team .team img{
        width: 200px;
        border: 10px solid var(--light-blue);
        border-radius: 50%;
    }
}
@media(max-width: 767px){
    #team .team .inner{
        flex-wrap: wrap;
        justify-content: center;
    }
    #team .team img{
        width: 100%;
        margin-bottom: 20px;
    }
}


/* ////////////////////////////////////////////////////////////////////////////
LISTS
////////////////////////////////////////////////////////////////////////////*/
#lists{
    background: var(--accent);
    margin-top: 50px;
}
#lists .container{
    padding: 0 20px 30px;
}
#lists .curve{
    width: 100%;
}
#lists h2{
    font-family: 'nowblack';
    font-size: 55px;
    line-height: 54px;
    margin-bottom: 20px;
}
#lists .accent{
    color: var(--blue);
}
#lists .top p{
    font-family: 'nowmedium';
    font-size: 27px;
    line-height: 35px;
    margin-bottom: 30px;
}
#lists h3{
    margin-bottom: 20px;
    font-size: 31px;
    line-height: 39px;
}

#lists .list{
    padding: 20px 0;
}
#lists ul{
    list-style: none;
    padding: 0;
}
#lists li{
    padding: 5px 0;
    font-size: 24px;
    line-height: 35px;
    display: flex;
    align-items: center;
}
#lists li i{
    padding-right: 10px;
    color: var(--blue);
    font-size: 30px;
}
#lists .bottom{
    margin-top: 10px;
}
#lists .bottom p{
    color: #586165;
    font-size: 20px;
    line-height: 35px;
}
.list .inner{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.list .inner h3{
    width: 100%;
    text-align: center;
}
@media(max-width: 767px){
    #lists .curve{
        display: none;
    }
    #lists {
        padding: 40px 0 0;
    }
}
