@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,700&display=swap);body {
    background: #f9f9f9;
    font-family: "roboto", sans-serif;
  }
  body{
    background: #626263;
  }
  .main-content {
    margin: 30px auto;
    padding: 30px;
    max-width: 1350px;
    background: rgb(128, 128, 128);
    -webkit-box-shadow: 0 20px 100px -15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 100px -15px rgba(0, 0, 0, 0.1);
  }
  
  .page-title {
    font-size: 45px;
    margin: 0 auto 80px auto;
  }
  
  .page-title:after {
    content: "";
    width: 140px;
    height: 5px;
    background: #fe1a1a;
    display: block;
    margin: 15px auto 0 auto;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .profile-card {
    background: #fff;
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
  }
  
  .profile-card .profile-card_cover {
    height: 130px;
    overflow: hidden;
  }
  
  .profile-card .profile-card_cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .profile-card .profile-card_padding {
    padding: 25px;
    position: relative;
    margin-top: -85px;
  }
  
  .profile-card .profile-card_image {
    width: 125px;
    height: 125px;
    border-radius: 125px;
    overflow: hidden;
    border: 4px solid #fff;
    margin: 0 auto 15px auto;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  }
  
  .profile-card .profile-card_image img {
    width: 125px;
    height: 125px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .profile-card .profile-card_details h3 {
    font-size: 21px;
  }
  
  .profile-card .profile-card_details p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .profile-card .profile-card_social {
    text-align: center;
  }
  
  .profile-card .profile-card_social a {
    display: inline-block;
  }
  
  .profile-card .profile-card_social img {
    width: 33px;
    margin: 5px 10px;
  }

  nav{
    display: flex;
    height: 80px;
    width: 100%;
    background: #1b1b1b;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
  }
  nav .logo{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
  }
  nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  nav ul li{
    margin: 0 5px;
  }
  nav ul li a{
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  nav ul li a.active,
  nav ul li a:hover{
    color: #111;
    background: #fff;
  }
  nav .menu-btn i{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none;
  }
  input[type="checkbox"]{
    display: none;
  }
  @media (max-width: 1000px){
    nav{
      padding: 0 40px 0 50px;
    }
  }
  @media (max-width: 920px) {
    nav .menu-btn i{
      display: block;
    }
    #click:checked ~ .menu-btn i:before{
      content: "\f00d";
    }
    nav ul{
      position: fixed;
      top: 80px;
      left: -100%;
      background: #111;
      height: 100vh;
      width: 100%;
      text-align: center;
      display: block;
      transition: all 0.3s ease;
    }
    #click:checked ~ ul{
      left: 0;
    }
    nav ul li{
      width: 100%;
      margin: 40px 0;
    }
    nav ul li a{
      width: 100%;
      margin-left: -100%;
      display: block;
      font-size: 20px;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    #click:checked ~ ul li a{
      margin-left: 0px;
    }
    nav ul li a.active,
    nav ul li a:hover{
      background: none;
      color: cyan;
    }
  }
