  *,
  *:after,
  *:before {
    box-sizing: border-box;
  }
  ol,
  ul {
    list-style: none;
  }
  a {
    color: #000;
    text-decoration: none;
  }


  .mobile {  
    max-width: 100%;
    height: 100%;
  
  }
  
  .logo {
    color: #fff;
    font-size: 20px;
    line-height: 50px;
    padding: 0 0 0 20px;
    text-transform: capitalize;
  }
  /* menu button */
  /* .menuBtn {
    height: 45px;
    width: 105px;
    height: 70px;
    width: 70px; 
    position: relative;
    margin-top: -70px;
    margin-right: 35px;
    right: 0;
    bottom: 0;
    z-index: 101;
    justify-self: flex-end;
    display: none;
  } */


  .menuBtn {
    height: 30px;
    width: 70px;
    /* height: 70px;
    width: 70px; */
    position: relative;
    margin-top: -30px;
    margin-right: 0px;
    /* right: 0;
    bottom: 0; */
    z-index: 9999;
    justify-self: flex-end;
    display: none;
  }



  .menuBtn > span {
    background-image: url(pic/menu.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: ease-in-out 0.5s;
  }

  .menuBtn.act > span {
    background-image: url(pic/close.png);
  }


  /* main menu block */
  .con1{
      margin-left: 30%;
      margin-right: 30%;
      margin-top: 15px;
      margin-bottom: 0px;
      cursor: pointer;
  }

  .imghbg{
    width: 80%;
    margin: auto;
  }

  .li3{
    /* border: 1px solid rgb(0, 102, 255);
    border-radius: 6px; */
    /* background-color: rgba(255, 255, 255, 0.8); */
    transition: ease-in-out 0.3s;
    margin-bottom: 10px;
}

.li3-2{
  border: 1px solid rgb(0, 102, 255);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: ease-in-out 0.3s;
    margin-bottom: 10px;
}

.li3.con1.click2{
  background-color: rgb(0, 102, 255);
  border-radius: 20px;
  color: white;
  cursor: no-drop;
}

/* .li3:hover{
  background-color: rgb(139, 79, 0);
  border-radius: 20px;
  color: white;
} */


  .con1 p{
      margin: 5px;
  }

  .mainMenu {
    /* background-image: url(pic/bgleaf1.png); */
    /* background-image: url(pic/feather-seamless-2.png); */
    background-image: url(img/wave-2-3.jpg);
    position: fixed;
    /* background-color: aliceblue; */
    background-position: center;
    background-size: cover;
    /* position: absolute; */
    left: 0;
    top: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: table;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .mainMenu.act {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .mainMenu.act ul li {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  
  .mainMenu ul {
    display: table-cell;
    vertical-align: middle;
  }

  .mainMenu .li3{
    transition: ease-in-out 0.4s 0.4s;
    opacity: 0;
  }

  .mainMenu .li3a{
      -webkit-transform: translateX(30%);
      transform: translateX(30%);
  }

  .mainMenu .li3b{
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
}
  
  .mainMenu a.suBtn {
    color: #fff;
  }

  @media only screen and (max-width: 975px) {
    .menuBtn{
      display: block;
    }
  }

  /* @media only screen and (max-width: 510px) {
    .menuBtn {
      height: 30px;
      width: 70px;;
      margin-top: -30px;
      margin-right: 40px;
    }
  } */

  @media only screen and (max-width: 510px) {
    .con1{
      margin-left: 10%;
      margin-right: 10%;
    }

    .con1 p{
      font-size: 14px;
  }
  }