@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Roboto+Slab:wght@100..900&family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lora", serif;
    scroll-behavior: smooth;
}

html,body{
    width: 100%;
    height: 100%;
}

a{
    text-decoration: none;
}

.logo{
    width: 135px;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #fff;
    box-shadow: 0 5px 5px rgb(0, 0, 0, 0.06);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

#navbar ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #9AC03E;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #9AC03E;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
}

#close {
    display: none;
}

#hero{
    width: 100%;
    height: 100vh;
    background: url(images/h3.jpg);
    background-size: 100% 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    margin-top: 65px;
    color: #000;
}
#hero h2{
    font-size: 45px;
    font-weight: bolder;
    margin-bottom: 18px;
    color: #9AC03E;
}

#hero h5{
    width: 60%;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}

#hero button{
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    background-color: #9AC03E;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}


.about-us{
    background-color: #8fada68a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    width: 100%;
    margin-top: 0px;
}
.about-us .left{
    width: 50%;
}
.about-us .left h2{
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px ;
    margin-top: 12px;
}
.about-us .left p{
    color: rgba(0, 0, 0, 0.856);
    width: 90%;
    margin-bottom: 12px;
    line-height: 25px;
}

.about-us .right{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
}

.about-us .right img{
    width: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 35px 0px 0px 35px;
}

.about-us .btn{
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    background-color: #9AC03E;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 18px;
    transition: 0.3s ease;
    cursor: pointer;
}

.about-us .btn:hover{
    background-color: 	#9AC03E;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;

}

#service{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  /* background-color: rgba(189, 185, 185, 0.397); */
  padding: 60px 80px;
  width: 100%;
  margin-top: 0px;
}

#service h4{
  font-size: 22px;
  margin: 20px 0px 12px 0px;
}
#service .card-con{
  display: flex;
  align-self: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  padding:40px 0px;
}
#service .card-con .card{
  width: 350px;
  height: 320px;
  margin: 18px;
  display: flex;
  align-self: center;
  justify-content: center;
  flex-direction: column;
}

#service .card-con .card .img{
  width: 100%;
  height: 100%;
  border: 5px solid #9AC03E;
  /* border-radius: 50%; */
  overflow: hidden;
  cursor: pointer;
}

#service .card-con .card .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50%; */
  overflow: hidden;
  transition: 0.5s;
}

#service .card-con .card:hover .img img{
  scale: 1.2;
}

#service .card-con .card h4{
  text-align: center;
  font-size: 22px ;
  transition: 0.5s;
  cursor: pointer;
}

#service .card-con .card:hover h4{
  color: #9AC03E;
}

#service .card-con .card p{
  text-align: center;
  font-size: 14px;
}

#service .btn{
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    background-color: #9AC03E;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 18px;
    transition: 0.3s ease;
    cursor: pointer;
}

#service .btn:hover{
    background-color: 	#9AC03E;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;

}


#categories{
  padding: 60px 80px;
  width: 100%;
  margin-top: 0px;
  background-color: rgba(189, 185, 185, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#categories h3, #categories p{
  text-align: center;
  margin-top: 12px;
}
#categories h3{
  font-size: 28px;
  font-weight: bold;
}
#categories p{
  font-size: 14px;
}

#categories .card-con{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

#categories .card{
  height: 300px;
  width: 340px;
  background: url(images/p1.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 25px;
  cursor: pointer;
  border-radius: 12px;
  transition: 0.5s ease;
}

#categories .card:nth-child(2){
  background: url(images/p2.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#categories .card:nth-child(3){
  background: url(images/p3.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#categories .card:nth-child(4){
  background: url(images/p4.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

#categories .card:nth-child(5){
  background: url(images/p5.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#categories .card:nth-child(6){
    background: url(images/p6.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  


#categories .card:hover{
  /* filter: grayscale(1.5); */
  scale: 1.1;
  border-radius: 22px;
}


#categories .info{
  position: absolute;
  background-color: #fff;
  bottom: 35px;
  right: 12px;
  padding: 12px 18px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

#categories .info a{
  text-decoration: none;
}
#categories .btn{
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    background-color: #9AC03E;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-top: 18px;
    transition: 0.3s ease;
    cursor: pointer;
}

#categories .btn:hover{
    background-color: 	#9AC03E;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;

}

#social{
    padding: 60px 80px;
    width: 100%;
    margin-top: 0px;
    /* background-color: rgba(189, 185, 185, 0.24); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
#social h3, #social p{
    text-align: center;
    margin-top: 12px;
  }
#social h3{
    font-size: 28px;
    font-weight: bold;
  }
#social p{
    font-size: 14px;
  }
  
#social .card-con{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  
#social .card{
    height: 300px;
    width: 420px;
    background: url(images/c1.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 18px 25px;
    cursor: pointer;
    border-radius: 12px;
    transition: 0.5s ease;
  }
  
#social .card:nth-child(2){
    background: url(images/c2.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  
#social .card:nth-child(3){
    background: url(images/p3.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  
#social .card:nth-child(4){
    background: url(images/p4.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  
#social .card:nth-child(5){
    background: url(images/p5.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
#social .card:nth-child(6){
      background: url(images/p6.jpg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
    }
    
  
  
#social .card:hover{
    /* filter: grayscale(1.5); */
    scale: 1.1;
    border-radius: 22px;
  }
  
  
#social .info{
    position: absolute;
    background-color: #fff;
    bottom: 35px;
    right: 12px;
    padding: 12px 18px;
    color: #000;
    font-size: 18px;
    font-weight: bold;
  }
  
#social .info a{
    text-decoration: none;
  }
#social .btn{
      padding: 12px 18px;
      border: none;
      border-radius: 12px;
      background-color: #9AC03E;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      margin-top: 18px;
      transition: 0.3s ease;
      cursor: pointer;
  }
  
#social .btn:hover{
      background-color: 	#9AC03E;
      border-top-right-radius: 0px;
      border-bottom-left-radius: 0px;
  
  }


.footer{
    padding: 50px 80px;
    background: radial-gradient(circle at 10% 20%, rgb(85, 149, 27) 0.1%, rgb(183, 219, 87) 90%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.footer .data{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .design{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.footer .design hr{
    width: 90%;
}
.footer .design p{
    width: 100%;
    text-align: center;
    margin-top: 18px;
}
.footer .design a{
    color: #fff;
}



.footer .first{
    width: 32%;
    height: 300px;
}

.footer .second{
    width: 25%;
    height: 300px;
    margin-left: 10px;
}


.footer .second:nth-child(odd){
    margin-left: 18px;
}


.footer .third{
    width: 25%;
    height: 300px;
    margin-left: 70px;
}
.footer .third h4{
    font-size: 25px;
}

.footer p{
    line-height: 20px;
    margin: 12px 0px;
    width: 80%;
}

.footer .second a{
    color: white;
    font-weight: 20px;
}

.footer .second p{
    line-height: 20px;
    margin: 12px 0px;
}

.footer i{
    font-size: 12px;
    margin-right: 6px;
}
.footer h2{
    width: 70%;
}

.footer h3,h2{
    font-size: 25px;
}









































@media (max-width:799px) {
    .section-p1 {
        padding: 40px 40px;
    }

    #navbar ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #E3E6F3;
        /* box-shadow: 0 40px 0 60px rgb(0, 0, 0, 0.1); */
        padding: 80px 0 0 10px;
        transition: 5sec ease;

    }

    #navbar ul.active {
        right: 0px;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag {
        display: none;
    }
    #hero{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        padding: 80px 20px ;
        height: 300px;
    }
    #hero h2{
        font-size: 30px;
    }
    #hero h5{
      width: 90%;
    }
    #hero button{
      display: none;
    }
    .about-us{
        padding: 80px 20px;
        flex-direction: column;
    }
   .about-us .left{
    width: 100%;
   }
   .about-us .right{
    width: 100%;
    margin-top: 16px;
   }

   #service{
    justify-content: center;
    padding: 40px 20px;
    padding-right: 0px;
    width: 100%;
   }
   #service h2,h4{
    text-align: center;
   }
   #service p{
    text-align: center;
   }
   #categories{
    padding: 60px 0px;
   }

.footer{
    padding: 80px 20px;
    padding-right: 0px;
    width: 100%;
   }
   .footer .data{
    flex-direction: column;
    justify-content: flex-start;
   }
   .footer .first{
    width: 100%;
    height: 250px;
   }
   .footer .second{
    width: 100%;
    height: 200px;
    /* margin-top: 12px; */
   }
   .footer .third{
    width: 100%;
    height: 200px;
    margin-left: 10px;
   }
   .footer h4, h3,h2,p,li{
    text-align: left;
   }
}











/* btn-call */

.btn-call {
    background: crimson;
    border: 2px solid crimson;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgb(190, 39, 70);
    cursor: pointer;
    height: 60px;
    width: 60px;
    text-align: center;
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 999;
    transition: .3s;
    -webkit-animation: hoverWave linear 1s infinite;
    animation: hoverWave linear 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
		text-decoration: none;
}

.btn-call__ico {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: 1200ms ease 0s normal none 1 running shake;
    animation-iteration-count: infinite;
    -webkit-animation: 1200ms ease 0s normal none 1 running shake;
    -webkit-animation-iteration-count: infinite;
    color: white;
    font-size: 30px;
    padding-top: 5px;
    transition: .3s all;
}



@-webkit-keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

@keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

/* animations icon */

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}





/* btn-whats */

.btn-whats {
    background: #ffff;
    /* border: 2px solid #38a3fd; */
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3);
    cursor: pointer;
    height: 60px;
    width: 60px;
    text-align: center;
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 999;
    transition: .3s;
    -webkit-animation: hoverWave linear 1s infinite;
    animation: hoverWave linear 1s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
		text-decoration: none;
}

.btn-whats__ico {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: 1200ms ease 0s normal none 1 running shake;
    animation-iteration-count: infinite;
    -webkit-animation: 1200ms ease 0s normal none 1 running shake;
    -webkit-animation-iteration-count: infinite;
    color: white;
    font-size: 30px;
    padding-top: 5px;
    transition: .3s all;
}
.btn-whats img{
    width: 200%;
    /* height: 150%; */
    border-radius: 50%;
    object-fit: cover;
}

.btn-whats:hover {
    background-color: #fff;
}

.btn-whats:hover .btn-whats__ico {
    color: #38a3fd;
}

@-webkit-keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

@keyframes hoverWave {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}

/* animations icon */

@keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}

@-webkit-keyframes shake {
    0% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }

    10% {
        transform: rotateZ(-30deg);
        -ms-transform: rotateZ(-30deg);
        -webkit-transform: rotateZ(-30deg);
    }

    20% {
        transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
    }

    30% {
        transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        -webkit-transform: rotateZ(-10deg);
    }

    40% {
        transform: rotateZ(7.5deg);
        -ms-transform: rotateZ(7.5deg);
        -webkit-transform: rotateZ(7.5deg);
    }

    50% {
        transform: rotateZ(-6deg);
        -ms-transform: rotateZ(-6deg);
        -webkit-transform: rotateZ(-6deg);
    }

    60% {
        transform: rotateZ(5deg);
        -ms-transform: rotateZ(5deg);
        -webkit-transform: rotateZ(5deg);
    }

    70% {
        transform: rotateZ(-4.28571deg);
        -ms-transform: rotateZ(-4.28571deg);
        -webkit-transform: rotateZ(-4.28571deg);
    }

    80% {
        transform: rotateZ(3.75deg);
        -ms-transform: rotateZ(3.75deg);
        -webkit-transform: rotateZ(3.75deg);
    }

    90% {
        transform: rotateZ(-3.33333deg);
        -ms-transform: rotateZ(-3.33333deg);
        -webkit-transform: rotateZ(-3.33333deg);
    }

    100% {
        transform: rotateZ(0deg);
        -ms-transform: rotateZ(0deg);
        -webkit-transform: rotateZ(0deg);
    }
}




