
/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600&display=swap');


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  
}
html{
  scroll-behavior: smooth;
}
body{
  padding: 0;
  margin: 0;
  background: url(../images/bg5.svg) center;
  background-attachment: scroll;
    background-size: cover;
    background-position: top center;
    font-family: Montserrat, sans-serif;
}
.animcontainer{
  animation: transitionIn 3s;
}

.middle h1{
font-size: 40px;
font-weight: 400;
}

.vertical-line
{
    height: 0.5px;
    background-color: #fff;
    width: 150px;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
}
/* custom scroll bar */
@keyframes transitionIn{
  from{
      opacity: 0;
      /* transform: rotateX(-50deg); */
  }

  to{
      opacity: 1;
      /* transform: rotateX(0); */
  }
}
#loader{
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: visible;
  
  background:  url(../images/signatureg.gif) no-repeat center center;
}
.navbar{
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 20px 40px;
  font-family: 'montserrat', sans-serif;
  transition: all 0.3s ease;
  
}
.navbar.sticky{
  padding: 5px;
  background: #000000;

}
.navbar .max-width{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a{
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Alex Brush', sans-serif;

}
.navbar .menu li{
  list-style: none;
  display: inline-block;
}
.navbar .menu li a{
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover{
  color: #555555d0;
}
/* .navbar.sticky .menu li a:hover{
  color: #fff;
} */

/* menu btn styling */
.menu-btn{
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}
.middle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width:100%;
  text-align: center;
}

.btn {
  display: inline-block;
  width: 90px;
  height: 90px;
  background: #f1f1f1;
  margin: 10px;
  border-radius: 50%;
  box-shadow: 0 5px 15px -5px #00000070 ;
  color: #333;
  overflow: hidden;
  position: relative;
}

.btn i {
  line-height: 90px;
  font-size: 26px;
  transition: 0.2s linear;
}

.btn:hover i{
  transform: scale(1.3);
  color: #f1f1f1;
}

.btn::before{
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #333;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}

.btn:hover::before{
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}

@keyframes aaa {
  0%{
      left: -110%;
      top: 90%;
  }
  50%{
      left: 10%;
      top: -30%;
  }
  100%{
      top: -10%;
      left: -10%;
  }
}


/* @media (max-width: 1300px) {
  .about.max-width{
      margin-left: 0px;
  }
} */


/* @media (max-width: 991px) {
  .about .about-header-text h1{
      font-size: 30px;
  }
 
  .max-width{
      padding: 0 50px;
  }
} */
@media (max-width: 947px){
 
 
  .menu-btn{
      display: block;
      z-index: 999;
  }
  .menu-btn i.active:before{
      content: "\f00d";
  }
  .navbar .menu{
      position: fixed;
      height: 100vh;
      width: 100%;
      left: -100%;
      top: 0;
      background: #111;
      text-align: center;
      padding-top: 80px;
      transition: all 0.3s ease;
  }
  .navbar .menu.active{
      left: 0;
  }
  .navbar .menu li{
      display: block;
  }
  .navbar .menu li a{
      display: inline-block;
      margin: 20px 0;
      font-size: 25px;
  }
  
  #loader{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: visible;
    background:  url(../images/signaturesmallg.gif) no-repeat center center;
}
  
}

