html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding-inline: 50px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
    padding-inline: 24px;
  }
}
@media (max-width: 639.98px) {
  .container {
    max-width: 100%;
    padding-inline: 16px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1300px;
  }
}

.banner-overlay {
  background-image: linear-gradient(to bottom, #375f8cfe, #375f8cdc, #375f8c00);
  z-index: 10;
}
.banner-overlay-bottom {
  background-image: linear-gradient(to top, #000e1f36, #000e1f37, #000e1f00);
  z-index: 10;
}

.services-card h2 {
  text-shadow: 0 6px 12px #0000002b;
}

.glow-animate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: passing-glow 0.6s linear;
  animation-delay: 1.9s;
}

@keyframes passing-glow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

header {
  transition: 0.3s;
}
header.scrolled {
  background: #39618d;
}

@media (min-width: 2100px) {
  .logo-main {
    max-width: 280px;
  }
  .banner-section h2 {
    font-size: 44px;
    line-height: 56px;
  }
  .banner-section h1 {
    font-size: 68px;
    line-height: 78px;
  }
  .modal-wrap {
    max-width: 1120px;
  }
  .modal-wrap h3 {
    font-size: 52px;
    line-height: 64px;
  }
}



