#close{
    display: none;
  }
  .ss{
    transition: 0.4s;
  }
  .ss:hover{
    transform: translateY(-5px);
    transition: 0.4s;
  }

  .nav_design{
  margin-left:7px;
  padding:8px 5px;
  text-decoration: none;
  font-size:14px;
  color:#5e5d5d;
  position: relative;
  border-radius: 4px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  }
  .nav_design:after{
    content: "";
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    z-index:-1;
    opacity: 0;
    border-bottom:2px solid rgb(61, 61, 53);
    width: 0;
  }

  .nav_design:hover{
    color:black;
  }

  .nav_design:hover:after{
  width:100%;
  opacity: 1;
  }

  .nav_design:after{
  transition: .40s;
  }

.image_back{
  background-color: rgb(161, 159, 159);
  }

.image_back2{
  background-color: rgb(136, 133, 133);
  }
.banner_img{
  /* transform: scale(1.1); */
  width: cover;
  }
.banner_text{
  font-family: 'Rubik Moonrocks', cursive;
  }
.img_height{
  height: 500px;
  }
.banner_height{
  height: 500px;
  }


/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .banner_height{
    height: 400px;
  }
  .img_height{
    height: 400px;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1024px) {
  .img_height{
    height: 500px;
  }
  .banner_height{
    height: 500px;
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

/* Filter */
.filterDiv {
  float: left;
  color: #ffffff;
  line-height: 100px;
  text-align: center;
  margin: 2px;
  display: none;
}

.show {
  display: block;
}


/* Style the buttons */
.btn{
  position: relative;
  transition: 0.4s;
  z-index: 1;
}

.btn:hover{
  color:white;
}

.btn:after{
  content: "";
  position: absolute;
  background: #666;
  width:20%;
  height: 100%;
  left: 0;
  top:0;
  z-index: -1;
  color:white;
  opacity: 0;
}
.btn:hover:after{
  width: 100%;
  transition: 0.4s;
  opacity: 1;
}

.btn.active {
  background-color: #666;
  color: white;
}
.navbar{
  height: 1200px;
  z-index: 120;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008CBA;
  overflow: hidden;
  width: 0;
  transition: .5s ease;
  
}

.containers:hover .overlay {
  width: 100%;
  opacity: 0.8;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}


.clip_add{
  -webkit-clip-path: ellipse(70% 80% at 70% 50%);
  clip-path: ellipse(70% 80% at 70% 50%);
}

.move_lr{
  position: relative;
}
.move_lr:after{
  content: "";
  left: 0;
  top:0;
  width:100%;
  transition-delay: 0.70s;
}

/* LOader */
/*PRELOADING------------ */
/* 
#overlayer {
  width:100%;
  height:100%;  
  position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  z-index:1;
  background:#4a4a4a;
} */


.preloader p{
    position: absolute;
    top: 80%;
    left: 50%;
    margin-left: -45px;
    width: 120px;
    height: 90px;
    
    text-align: center;
    color: #fff;
    font-size: 24px;
    z-index: 3;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index:3;
  border: 4px solid #Fff;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}