@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body{
    padding-bottom: 200px;
}
.navbar{
    width: 80%;
    height: 70px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

}

.navbar__logo{
    flex-basis: 30%;
}
.navbar__logo img{
    width: 50px;
}


.navbar__links{
    flex-basis: 70%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  
   
}
.navbar__links a{
    text-decoration: none;
    color: #404248;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    padding: 0px 15px 0px 15px;
  
}
.navbar__links a:hover{
    color: #3AAFA9;
}

#navbar__link--active{
    color: #3AAFA9;

}

/**HEADER**/

.header{
    width: 100%;
    height: 450px;
    background-color: #3AAFA9;
    background: rgb(23,36,42);
background: linear-gradient(90deg, rgba(23,36,42,1) 0%, rgba(58,175,169,1) 100%);

}

.header__wrapper{
    width: 80%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: row;

}

.header__left{
    flex-basis: 70%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
   color: #DEF2F1;
    font-size: 55px;
    line-height: 55px;
    font-weight: 900;
}
.header__left h3{
    color: #DEF2F1;
    font-size: 19px;
    line-height: 19px;
    font-weight: 300;
    
}
.header__left h1{
    color: #DEF2F1;
    font-size: 55px;
    line-height: 55px;
    font-weight: 900;
    padding: 20px 0px 20px 0px;
}
#header__left__button{
    color: #DEF2F1;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    background-color: #17242A;
    padding: 25px 60px 25px 60px;
    text-decoration: none;
    background-color: #2A7A77;
}

#header__left__button:hover{
    background-color:#DEF2F1; 
    color:  #2A7A77;
}
.header__right{
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.header__right img{
    width: 150%;
}

/**ABOUT ME**/

.aboutme{
    width: 70%;
    margin: 0 auto;
    height: 500px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    
}

.aboutme__left{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    
}
.aboutme__left h2{
    color:#3AAFA9;
    font-size: 35px;
    line-height: 35px;
    font-weight: 900;
}
.aboutme__left p{
    max-width: 100%;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #020202;
    padding: 20px 0px 0px 0px;
    
    

}
.aboutme__right{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutme__right img{
    width: 250px;
    border-radius: 50%;
    border: solid #17242A 5px;
}

/**SERVICES**/

.services{
    width: 100%;
    height: 500px;
    background-color: #17242A;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__wrapper{
    width: 80%;
    height: 70%;

    display: flex;
    flex-direction: column;
}

.services__title{
    flex-basis: 20%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.services__title h2{
    color: #DEF2F1;
    font-size: 35px;
    line-height: 35px;
    font-weight: 900;

}
.services__columns{
    flex-basis: 80%;
    display: flex;
    flex-direction: row;
}

.services__col{
    flex-basis: 33.33%;

    display: flex;
    flex-direction: column;
}

.services__col__logo{
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: flex-end;

}
.services__col__logo img{
    width: 60px;
}
.services__col__title{
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.services__col__title span{
    font-size: 20px;
    line-height: 34px;
    color: #DEF2F1;
    font-weight: 900;
}
.services__col__text{
    flex-basis: 40%;
    display: flex;
    justify-content: center;
  
}
.services__col__text p{
 text-align: center;
 color: #DEF2F1;
 font-size: 16px;
 line-height: 30px;
 font-weight: 400;
 max-width: 80%;

}

/**PROJECTS**/

.projects{
    width: 80%;
    margin: 0 auto;
    height: 300px;
    margin-top: 50px;

    display: flex;
    flex-direction: column;

}
.projects__title{
    flex-basis: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projects__title h2{
    font-size: 35px;
    line-height: 35px;
    font-weight: 900;
    color: #3AAFA9;
    padding-bottom: 25px;
}

.projects__list{
    flex-basis: 70%;

    display: flex;
    flex-direction: row;

}

.projects__list__item{
    flex-basis: 33.33%;
    bordeR: solid black 3px;
    margin-left: 2%;
    background-color:  #3AAFA9;
    display: flex;
    justify-content: center;
    align-items: center;
}










