@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');
*,
::after,
::before{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    font-size: 10px;
    font-family: sans-serif,Arial, Helvetica;
    background-color: #f2f2f2;
    scroll-behavior: smooth;
}
.container{
    width: 80%;
    margin: 0 auto;
}
.header{
    background-image: linear-gradient(rgb(146 178 157 / 36%), rgb(191 230 180 / 60%)) ,url(./img/header-background.jpg);
    background-size: cover;
    position: relative;
    display: flex;
    height: 80vh;
    text-transform: uppercase !important;
}
.navigation{
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.7rem;
    font-weight: 500;
}
.navigation a{
    text-decoration: none;
    color: whitesmoke;
}
.navigation li:hover a{
    color: rgb(210 254 225);
    transition: 0.5s;
}
.main-menu li{
    display: inline-block;
    padding: 0 1rem;
}
.profile img{
    display: block;
    margin: 5rem auto;
    width: 200px;
    height: 200px;
    border: 6px solid rgb(63 180 103);
    border-radius: 50%;
    box-shadow: 0px 0px 7px 0px rgb(63 180 103);
}
.profile .profile-name{
    display: block;
    text-align: center;
    color: #f2f2f2;
    font-weight: 700 !important;
}
.profile .profile-about{
    display: block;
    padding: 1rem;
    text-align: center;
    color: #f2f2f2;
    font-weight: 400 !important;
}
.profile-buttons{
    display: flex;
    justify-content: center;
}
.profile-buttons button{
    padding: 1rem 2rem;
    margin: 0 1rem;
    background-color: rgb(63 180 103);
    border: 1px solid rgb(63 180 103);
    border-radius: 5px;
    line-height: 2rem;
    cursor: pointer;
    color: #f2f2f2;
}
.profile-buttons button:hover{
    background-color: #f2f2f2;
    color: rgb(63 180 103);
    border: 1px solid rgb(63 180 103);
    transition: all 0.5s ease;
}
.social{
    display: block;
    position: absolute;
    bottom: -4.5rem;
    margin: 20px 10px;
    text-align: center;
}
.social-buttons{
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border:2px solid #ddd;
    padding: 0px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-weight: normal;
    line-height: 2em;
    border-radius: 27px;
    -moz-border-radius:27px;
    -webkit-border-radius:27px;
}
.facebookBtn{
    background: #4060A5;
}
.facebookBtn:before{ 
    font-family: "FontAwesome";
    content: "\f09a"; 
}
.facebookBtn:hover{
    color: #4060A5;
    background: #fff;
    border-color: #4060A5;
    transition: all 0.5s ease;
}
.twitterBtn{
    background: #00ABE3;
}
.twitterBtn:before{
      font-family: "FontAwesome";
      content: "\f099";  
}
.twitterBtn:hover{
      color: #00ABE3;
      background: #fff;
      border-color: #00ABE3;
      transition: all 0.5s ease;
}
.instagramBtn{
    background: #125688;
    color: white;
}
.instagramBtn:before{
      font-family: "FontAwesome";
      content: "\f16d"; 
}
.instagramBtn:hover{
      color: #125688;
      background: #fff;
      border-color: #125688;
      transition: all 0.5s ease;
}
.telegramBtn{
    background: #0094BC;
}
.telegramBtn:before{
      font-family: "FontAwesome";
      content: "\f1d8"; 
}
.telegramBtn:hover{
      color: #0094BC;
      background: #fff;
      border-color: #0094BC;
      transition: all 0.5s ease;
}
.info-box{
    display: flex;
    margin: 5rem;
    padding: 2rem;
    box-shadow: 0px 0px 15px 1px rgba(90, 90, 90, 0.336);
    border-radius: 0.3rem;
}
.info-about{
    max-width: 50%;
}
.info-about-box{
    margin-top: 2rem;
}
.basic-info{
    padding-left: 3rem;
}
.basic-info-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}
.title{
    font-size: 2rem;
    font-weight: 700;
    color: rgb(75, 71, 71);
}
.sub-titles{
    text-transform: uppercase;
}
.description{
    padding-left: 1rem;
}
.sub-titles h3, .description p, .info-box p{
    font-size: 1.5rem;
    color: rgba(81, 81, 81, 0.822);
}
.description p , .sub-titles h3{
    padding-bottom: 1rem;
}