@media screen and (max-width: 1100px){
  .no-scroll{
    height: 100vh;
    overflow-y: hidden;
}
  .mobile_btn{
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;

  }
  .mobile_menu{
    display: flex;
    visibility: hidden;
    opacity: 0;
    position:absolute;
    top: 0;
    background-color: #1d0a97;
    font-family: 'Oswald',sans-serif;
    font-weight: 500;
    font-size: 35px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    width: 100vw;
    height: 100vh;
    z-index: 5000;
    justify-content: center;
    transition: visibility .3s ease-in-out, opacity .3s ease-in-out;
  }
  .nav_list_a_mobile{
    color: #ffffff;
    text-decoration: none;
  }
  .nav_option_mobile{
    width: 100%;
    padding: 30px 0;
  }
  .nav_option_details_mobile{
    font-size: 25px;
    font-weight: 300;
    text-transform: none;
    color: #c4c4c4;
  }
  .nav_list_mobile{
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
    list-style: none;
    width: 100%;
    text-align: center;
  }
  .menu_mobile_grph{
    width: 80px;
    height: 80px;
    z-index: 10001;
  }
  .line{
    fill: none;
    stroke: #fff;
    stroke-width: 4;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1{
    stroke-dasharray: 60 207;
    stroke-width: 5;
  }
  .line2{
    stroke-dasharray: 60 60;
    stroke-width: 5;
  }
  .line3{
    stroke-dasharray: 60 207;
    stroke-width: 5;
  }
  .opened .line1{
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 5;
  }
  .opened .line2{
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 5;
  }
  .opened .line3{
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 5;
  }
  .open{
    visibility: visible;
    opacity: 1;  
  }
}
@media screen and (max-width: 600px){
  .menu_mobile_grph{
    width: 55px;
    height: 55px;
    z-index: 10001;
  }
  .mobile_menu{
    font-size: 18px;
  }
  .nav_option_details_mobile{
    font-size: 11.7px;
    font-weight: 300;
    text-transform: none;
    color: #c4c4c4;
  }
  .nav_option_mobile{
    padding: 15px 0;
  }
}