
:root{
    --back-color: rgba(255, 255, 255, 0);
    --drop-back-color: #042e71ea;
    --text-balck-color: #ffffff;
    --text-hover-color: #216dde;
  }

  
  a{
      text-decoration: none;
      color: #fff;
  }
  
  /* Navigation Front End*/
  
  .wrapper{
      background: var(--back-color);
      width: 100%;
      animation: popdown 1.5s cubic-bezier(0.36, -0.64, 0.34, 1.76) 0s 1 normal forwards running;
      z-index: 48748418;

    }
    .wrapper nav{
      position: relative;
      display: flex;
      margin: auto;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
    nav .content{
      display: flex;
      align-items: center;
      z-index: 700;
      padding: 2% 0 1%;
  
    }
    nav .content .links{
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 700;
      width: 100%;
  
    }
    .content .logo {
      width: 20%;
      align-items: center;
  
    }
    .content .logo a img{
      width: 75%;
    }
    .content .links li{
      list-style: none;
      z-index: 700;
    }
  
    .wrapper nav button{
      color: #fff;
      background-color: #216dde;
      border: none;
      display: inline-block;
      font-weight: 500;
      text-align: center;
      vertical-align: middle;
      cursor: pointer;
      font-size: 1.08rem;
      border-radius: 12px;
      padding: 1.5% 2.5%;
      display: flex;
      justify-content: center;
      width: 10%;
      min-width: 160px;
      transition: 0.3s;
      white-space: nowrap;
    }
  
    .wrapper nav button:hover{
      background-color: #3944b9;
  
    }
    .content .links li a,
    .content .links li label{
      color: var(--text-balck-color);
      font-size: 1.3rem;
      font-weight: 600;
      padding: 12px;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .content .links li label{
      display: none;
    }
    .content .links li a:hover,
    .content .links li label:hover{
      color: var(--text-hover-color);
    }
    .wrapper .menu-icon{
      color: var(--text-balck-color);
      font-size: 180px;
      cursor: pointer;
      line-height: 70px;
      width: 70px;
      text-align: center;
      z-index: 4581895186;
    }
    .wrapper .menu-icon{
      display: none;
    }
    .wrapper #show-search:checked ~ .search-icon i::before{
      content: "\f00d";
    }
    .wrapper input[type="checkbox"]{
      display: none;
    }
    /* Dropdown Menu code start */
    .content .links ul{
      position: absolute;
      background: var(--drop-back-color);
      top: 80px;
      border-radius: 15px;
      z-index: 700;
      opacity: 0;
      visibility: hidden;
      padding: 0.5%;
    }
    .content .links li:hover > ul{
      top: 70px;
      opacity: 1;
      visibility: visible;
      transition: all 0.3s ease;
    }
    .content .links ul li a{
      display: block;
      width: 90%;
      line-height: 30px;
      border-radius: 0px!important;
    }
    .content .links ul ul{
      position: absolute;
      top: 0;
      right: calc(-100% - 0px);
    }
    .content .links ul li{
      position: relative;
      display: flex;
      justify-content: space-between;
      width: 250px;
    }
    .content .links ul li .image{
      width: 25%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .content .links ul li .image img{
      width: 100%;
    }
    .content .links ul li:hover ul{
      top: 0;
    }
  
/* NavBar Responsive*/

  @media screen and (max-width: 1500px){
      .wrapper nav{
        max-width: 100%;
        padding: 0 20px;
      }
      nav .content .links{
        margin-left: 30px;
      }
      .content .links li a{
        padding: 8px 13px;
        font-size: 1.1rem;
      }
      .wrapper .search-box{
        max-width: calc(100% - 100px);
      }
      .wrapper .search-box input{
        padding: 0 100px 0 15px;
      }
    }
    @media screen and (max-width: 900px){
      body{
        height: 100%;
      }
      .title, .testWrapper{
        transform: scale(0.8) !important;
      }

      #startStopBtn{
        padding: 10px 100px !important;
        margin-bottom: 20%;
      }
      .wrapper .menu-icon{
        display: block;
      }
  
      .content .logo {
        width: 100%;
        align-items: right;
        display: flex;
        justify-content: right;
      }
  
      .content .logo a{
        align-items: right;
        display: flex;
        justify-content: right;
      }
  
      .content .logo a img{
        width: 30%;
      }
      .wrapper nav button{
        display: none;
      }
      .wrapper #show-menu:checked ~ .menu-icon i::before{
        content: "\f00d";
      }
      nav .content .links{
        display: block;
        position: fixed;
        background: var(--back-color) ;
        height: 100%;
        width: 100%;
        top: 70px;
        left: -100%;
        margin-left: 0;
        max-width: 350px;
        overflow-y: auto;
        padding-bottom: 100px;
        transition: all 0.3s ease;
      }
      nav #show-menu:checked ~ .content .links{
        left: 0%;
      }
      .content .links li{
        margin: 15px 20px;
      }
      .content .links li a,
      .content .links li label{
        line-height: 40px;
        font-size: 20px;
        display: block;
        padding: 8px 18px;
        cursor: pointer;
      }
      .content .links li a.desktop-link{
        display: none;
      }
      /* dropdown responsive code start */
      .content .links ul,
      .content .links ul ul{
        position: static;
        opacity: 1;
        visibility: visible;
        background: none;
        max-height: 0px;
        overflow: hidden;
      }
      .content .links #show-1:checked ~ ul,
      .content .links #show-2:checked ~ ul,
      .content .links #show-3:checked ~ ul,
      .content .links #show-4:checked ~ ul,
      .content .links #show-5:checked ~ ul{
        max-height: 100vh;
      }
      .content .links ul li{
        margin: 7px 20px;
      }
      .content .links ul li a{
        font-size: 18px;
        line-height: 30px;
        border-radius: 5px!important;
      }
    }
    @media screen and (max-width: 400px){
      .wrapper nav{
        padding: 0 10px;
      }
      .content .logo a{
        font-size: 27px;
      }
      .wrapper .search-box{
        max-width: calc(100% - 70px);
      }
      .wrapper .search-box .go-icon{
        width: 30px;
        right: 0;
      }
      .wrapper .search-box input{
        padding-right: 30px;
      }
    }
  
  
  