*{
    box-sizing: border-box;
  }
  
  body{
    font-family: 'Cuprum', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
    margin: auto;
    width: 100%;
    height: 100vh;
    background-color: #272727;
  }
  
  .hidden{
    display: none;
  }
  
  .visible-mobile {
    display: none;
  }
  
  header{
    background-color: #272727;
    min-height: 80px;
  }
  
  header::after{
    content:'';
    display:block;
    width: 85%;
    height: 80px;
  
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.5);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.5);
    box-shadow:0 0 20px rgba(0,0,0,0.5);
    top:0%;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
  
    position: absolute;
    bottom: 0;
    left: 10%;
    z-index: -1;
  }
  
  nav{
    padding: 8px;
  }
  
  .logo{
    float: left;
    padding: 8px;
    margin-left: 9%;
    margin-top: 8px;
  }
  
  .logo a{
    color: #49abbf;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 2px;
    text-decoration: none;
  }
  
  nav ul{
    float: right;
    margin-right: 5%;
  }
  nav ul li{
    display: inline-block;
    float: left;
    padding: 10px 0 0 40px;
  }
  nav ul li a{
    color: #49abbf;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 20px;
    letter-spacing: 1px;
    transition: all .3s ease;
  }
  nav ul li a:hover{
    color: #d6d6d6;
  }

  .container-text{
    width: 60%;
    margin: auto;
    text-align: justify;
    /* text-align-last: left; */
  }
  
  @media screen and (max-width: 864px){
    .logo{
      padding: 0;
      position: absolute;
    }
    .nav-wrapper{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: #fff;
      opacity: 0;
      transition: all 0.2s ease;
    }
    .nav-wrapper ul{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
    }
    .nav-wrapper ul li{
      display: block;
      float: none;
      width: 100%;
      text-align: right;
      margin-bottom: 10px;
    }
    .nav-wrapper ul li:nth-child(1) a{
      transition-delay: 0.05s;
    }
    .nav-wrapper ul li:nth-child(2) a{
      transition-delay: 0.1s;
    }
    .nav-wrapper ul li:nth-child(3) a{
      transition-delay: 0.18s;
    }
    .nav-wrapper ul li:nth-child(4) a{
      transition-delay: 0.3s;
    }
    .nav-wrapper ul li:not(:first-child){
      margin-left: 0;
    }
    .nav-wrapper ul li a{
      padding: 10px 24px;
      opacity: 0;
      color: grey;
      font-size: 18px;
      letter-spacing: 1px;
      transform: translateX(-20px);
      transition: all 0.2s ease;
    }
  
    .nav-btn{
      position: absolute;
      right: 15px;
      top: 15px;
      display: block;
      width: 48px;
      height: 48px;
      cursor: pointer;
      z-index: 2;
      border-radius: 50%;
    }
    .nav-btn i{
      display: block;
      height: 2px;
      background: #49abbf;
      border-radius: 2px;
      margin-left: 14px;
    }
    .nav-btn i:nth-child(1){
      margin-top: 16px;
      width: 24px;
    }
    .nav-btn i:nth-child(2){
      margin-top: 6px;
      opacity: 1;
      width: 20px;
    }
    .nav-btn i:nth-child(3){
      margin-top: 6px;
      width: 24px;
    }
    #nav:checked + .nav-btn{
      transform: rotate(45deg);
    }
    #nav:checked + .nav-btn i{
      background: grey;
      transition: transform 0.2s ease;
    }
    #nav:checked + .nav-btn i:nth-child(1){
      transform: translateY(8px) rotate(180deg);
    }
    #nav:checked + .nav-btn i:nth-child(2){
      opacity: 0;
    }
    #nav:checked + .nav-btn i:nth-child(3){
      transform: translateY(-8px) rotate(90deg);
    }
    #nav:checked ~ .nav-wrapper{
      z-index: 1;
      opacity: .95;
    }
    #nav:checked ~ .nav-wrapper ul li a{
      opacity: 1;
      transform: translateX(0);
    }
  }
  @media screen and (max-width: 480px){
    .logo{
      margin-left: 5%;
    }
    .visible-mobile{
      display: block;
    }
    .hidden-mobile{
      display: none;
    }
    .container-text{
        width: 80%;
    }
  }
  
  .article-title{
    margin-top: 7%;
    margin-bottom: 3%;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }

  .bottom-30{
    width: 100%;
    margin-bottom: 30px;
  }

  .container-text-bottom-20{
    width: 90%;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
  }
  
  h1{
    color: #fff;
    font-size: 28px;
    font-weight: normal;
    text-align: center;
  }
  h2{
    color: #bebebe;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
  }
  h3{
    color: #7f95ea;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
  }
  h4{
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
  }
  h5{
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
    margin: 0;
  }
  h6{
    color: #7f95ea;
    font-size: 20px;
    font-weight: lighter;
    text-align: left;
  }
  p0{
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: left;
    text-align-last: left;
  }
  p1{
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: left;
  }
  p2{
    color: #49abbf;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
  }
  p3{
    color: #bebebe;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
    font-style: italic;
  }
  p4{
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
  }

  .container-text a{
    color: #fff;
  }
  .container-text a:hover{
    color: #7f95ea;
  }
  .container-text a:active{
    color: #fff;
  }

  img{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
  }

  video{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  ul.first{
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: left;
    list-style-type: square;
    list-style-position: inside;
    margin-left: -2em;
    text-align: justify;
  }

  ul.second{
    color: #bebebe;
    font-size: 18px;
    font-weight: 100;
    text-align: left;
    list-style-type: circle;
    list-style-position: inside;
    text-align: justify;
  }

  ol.number{
    color: #bebebe;
    font-size: 20px;
    font-weight: 100;
    text-align: left;
    list-style-position: inside;
    margin-left: -2em;
    text-align: justify;
  }
  ol.number li {
    margin-bottom: 10px; 
  }

  footer{
    background-color: #272727;
  }
  .container{
    width: 70%;
    height: 100px;
    position: relative;
    left: 15%;
  }
  .container-full-width{
    width: 100%;
    height: 100px;
    position: relative;
    left: 15%;
  }
  .copyright{
    color:#bebebe;
    display: inline-block;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .ig{
    width: 36px;
    display: inline-block;
    float: right;
    margin-top: 30px;
    margin-left: 10px;
  }