@media only screen and (max-width: 768px) {

    html,
    body {
      width: 100%;
      overflow-x: hidden;
    }
  }
  body {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: "Poppins", sans-serif;
  }
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .quotes {
    font-family: "Myriad Pro";
  }
  .hits-abtbanner {
    background-image: url(../images/innerban.png);
    position: relative; 
  }

  /* .background-image {
    background-image: url(../images/bgimg.jpg);
    background-color: #000;
    background-size: cover;
    background-position: center;
    position: relative; 
  } */



       /* Media Queries for Mobile Devices */
@media (max-width: 640px) {
    .container {
      padding: 0 20px;
    }
  
    .md:flex {
      display: none;
    }
  
    #mobile-menu {
      z-index: 49;
    }
  
    #mobile-menu-toggle {
      display: block;
    }
  }

  .carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: auto;
}
  
.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}
  
.carousel-slide img {
    width: 100%;
    height: 900px;
}
  
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
}
  
.carousel-prev {
    left: 0;
}
  
.carousel-next {
    right: 0;
}
  
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
  
.carousel-indicator {
    background-color: #888;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
  
.carousel-indicator.active {
    background-color: #333;
}

/* Animation */
.translate-y-10 {
    transform: translateY(10px);
}
.opacity-0 {
    opacity: 0;
}
.opacity-100 {
    opacity: 1;
}
.transition-all {
    transition: all 0.7s ease-in-out;
}



.btn {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  cursor: pointer;
  overflow: hidden;
}
.btn:before, .btn:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.btn:before {
  top: 0;
}
.btn:after {
  bottom: 0;
}
.btn:hover > * > *:before, .btn:hover > * > *:after {
  transform: translate3d(0, 0, 0);
}
.btn:hover > * > * > *:before, .btn:hover > * > * > *:after {
  transform: translate3d(0, 0, 0);
}
.btn > *:before, .btn > *:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #fff;
}
.btn > *:before {
  left: 0;
}
.btn > *:after {
  right: 0;
}
.btn > * > *:before, .btn > * > *:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 9;
  height: 2px;
  width: 100%;
  background-color: #1587aa;
}
.btn > * > *:before {
  top: 0;
  transform: translate3d(-105%, 0, 0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn > * > *:after {
  bottom: 0;
  transform: translate3d(105%, 0, 0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn > * > * > *:before, .btn > * > * > *:after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 9;
  height: 100%;
  width: 2px;
  background-color: #1587aa;
}
.btn > * > * > *:before {
  left: 0;
  transform: translate3d(0, 105%, 0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn > * > * > *:after {
  right: 0;
  transform: translate3d(0, -105%, 0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-filter {
  transition: filter;
}

.group:hover .image-filter {
  filter: invert(1);
}

.active {
  color: #0184a0 !important;
  font-weight: bold;
}


