@media only screen and (max-width: 768px) {

    html,
    body {
      width: 100%;
      overflow-x: hidden;
    }
  }
  
  body {
    margin: 0;
    padding: 0;
    color: #000;
  }
  html {
    scroll-behavior: smooth;
  }

  .dropdown {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #000;
    z-index: 10;
    padding: 1rem;
}

.dropdown a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}
  .header-holder {
    /* width: 100%; */
    /* background-color: #16181C; */
    z-index: 4;
    overflow: hidden;
  }
  
  header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    z-index: 5;
    -webkit-transition: background-color 0.4s ease-out;
    transition: background-color 0.4s ease-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header .logo {
    width: 114px;
    height: 25px;
    display: block;
    background-image: url("https://yalantis.com/assets/v2/content/logo-561d8b053527f336d4b144c2d60a45de0f919f9fb10b1f49f8553b2bc5189ba7.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    order: 1;
  }
  

  
  
  
  .header-nav {
    order: 2;
  }
  
  .header-nav {
    display: none; 
  }
  
  .header-nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.97);
    z-index: 10;
    opacity: 1;
    -webkit-transition: opacity 0.6s linear;
    transition: opacity 0.6s linear;
  }
  
  .header-nav.active .header-nav__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    align-content: center;
    height: 100%;
    overflow: auto;
  }
  
  nav.active ul {
    width: 100%;
    text-align: center;
    padding: 0;
    overflow: hidden;
    display: block;
  }
  
  nav.active ul li {
    padding: 10px 0;
  }
  
  nav ul {
    padding: 8px 0 0 0;
    display: flex;
  }
  
  nav ul li {
    padding: 0 0 0 13px;
    list-style: none;
  }
  
  nav ul li a {
    display: inline-block;
    font-family: "BrandonText", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 17px;
    color: white;
    text-transform: uppercase;
    padding: 5px 8px;
    letter-spacing: 0.9px;
    position: relative;
    text-decoration: none;
    transition: color .5s ease-in-out;
  }
  
  nav ul li a:hover {
    color: orange;
    transition: color .3s ease-in-out;
  }
  
  .device-menu {
    position: fixed;
    /* top: 17px; */
    right: 10px;
    width: 55px;
    height: 50px;
    z-index: 11;
    background-color: rgba(0,0,0,0.6);
    width: 45px;
    height: 40px;
    display: block;
  }
  
  
  .device-menu .device-menu__inner {
    width: 24px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .device-menu span {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    background-color: white;
    top: 5px;
    left: 0;
    /*     -webkit-transform: rotate(45deg);
    transform: rotate(45deg); */
  }
  
  .device-menu span:nth-child(1) {
    top: 0;
    -webkit-transition: rotate, 0.3s;
    transition: rotate, 0.3s;
  }
  
  .device-menu span:nth-child(2) {
    top: 50%;
    /*     -webkit-transform: translate(0, -50%); */
    /*     transform: translate(0, -50%); */
  }
  
  /* .device-menu.open span:nth-child(2) {
  opacity: 0;
  } */
  
  .device-menu span:nth-child(3) {
    top: 100%;
    -webkit-transition: rotate, 0.3s;
    transition: rotate, 0.3s;
  }
  
  .device-menu.open span:nth-child(1) {
    top: 10px;
    right: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .device-menu.open span:nth-child(2) {
    opacity: 0;
  }
  
  .device-menu.open span:nth-child(3) {
    top: 10px;
    right: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
/* Add custom styles here */
.video-banner {
    height: 70vh; /* 60% of viewport height by default */
}

@media (min-width: 1024px) {
    /* For screens larger than 1024px wide */
    .video-banner {
        height: 70vh; /* 60% of viewport height */
    }
}

.animated-text {
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  max-width: 100%;
  padding: 0 20px;
}

.lg\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* .quote-box {
  position: relative;
  animation: slideUp 2s infinite alternate ease-in-out;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
} */

@keyframes slideUp {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-10px);
  }
}

.author-info {
  /* position: absolute; */
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-top-left-radius: 8px;
}

.section-bg {
  background-image: url('https://placehold.co/1920x600');
  background-size: cover;
  background-position: center;
}

.huge-icon {
  font-size: 30px;
}

.hits-banner {
  background-image: url(../images/abtban.jpg);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '' !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 24px !important;
    height: 24px !important;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative !important;
}

.swiper-slide.swiper-slide-active {
    --tw-border-opacity: 1 !important;
    border-color: rgb(79 70 229 / var(--tw-border-opacity)) !important;
}

.swiper-slide.swiper-slide-active>.swiper-slide-active\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}

.swiper-slide.swiper-slide-active>.flex .grid .swiper-slide-active\:text-indigo-600 {
    --tw-text-opacity: 1;
    color: rgb(79 70 229 / var(--tw-text-opacity));
}