
.wrapper1{
    position: fixed;
    top: 0;
    /* left: 50%; */
    height: 100%;
    width: 22%;
    z-index: 999;
    right: 0;
    background: rgba(7, 63, 87, 0.95);
    border-left: 1px solid #888;
    clip-path: circle(25px at calc(100% - 45px) 25px);
    transition: all 0.3s ease-in-out;
    /* overflow: hidden;
    overflow-y: auto;
    height: 80%; */
  }

  .wrapper1 ul{
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
    margin-top: 40%;
    padding-bottom: 70px;
  }

  #active:checked ~ .wrapper1{
    clip-path: circle(75%);
  }
  .menu-btn{
    position: fixed;
    z-index: 9999;
    right: 30px;
    top: 10px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    background: #073F57;
    transition: all 0.3s ease-in-out;
  }
  #active:checked ~ .menu-btn{
    color: #fff;
  }
  #active:checked ~ .menu-btn i:before{
    content: "\f00d";
  }

  .menu-btn span{
    position: absolute;
    right: -10px;
    background-color: #eee;
    color: red;
    width: 25px;
    height: 25px;
    font-size: 15px;
    padding: 0;
    line-height: 25px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
  }

  .wrapper1 i{
    padding-left: 5px;
  }

  .wrapper1 ul{
    position: relative;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: right;
  }
  .wrapper1 ul li{
    margin: 1px 0 0px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    
  }
  .wrapper1 ul li a{
    color: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 4px 35px 0px 35px;
    color: #fff;
    border-radius: 50px;
    position: relative;
    line-height: 42px;
    transition: all 0.1s ease;
  }

  .wrapper1 ul li a:hover{
    color:#ddd !important;
    font-size: 16.5px;
    transition: all 0.1s ease;
    font-weight: 600;
  }

  .wrapper1 ul li a span{
    position: relative;
    right: 0px;
    background-color: #eee;
    color: red;
    width: 22px;
    height: 22px;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    line-height: 23px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
  }

  .wrapper1 ul li a:hover:after{
    transform: scaleY(1);
  }
  .wrapper1 ul li a:hover{
    color: #fff;
  }
  #active input[type="checkbox"]{
    display: none;
  }
  .content1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    text-align: center;
    width: 100%;
    color: #202020;
  }
  .content1 .title{
    font-size: 40px;
    font-weight: 700;
  }
  .content1 p{
    font-size: 35px;
    font-weight: 600;
  }
  
  @keyframes rotate {
    0%{
      filter: hue-rotate(0deg);
    }
    100%{
      filter: hue-rotate(360deg);
    }
  }


  @media (min-width: 992px) and (max-width: 1199.95px) {
    .wrapper1{
      width: 30%;
      right: 0;
    }
  }


  @media (min-width: 768px) and (max-width: 991.95px) { 
    .wrapper1{
        width: 32%;
        right: 0;
    }
  }
  

  @media (min-width: 221px) and (max-width: 479.95px) { /*Real mobile*/
    .wrapper1{
        width: 70%;
        right: 0;
    }

    .wrapper1 ul{
      overflow: hidden;
      overflow-y: auto;
      height: 80%;
      margin-top: 15%;
      padding-bottom: 70px;
    }

    .menu-btn{
      right: 15px;
      top: 15px;
      height: 40px;
      width: 40px;
      line-height: 40px;
      font-size: 18px;
    }
  }