* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

.no-scroll {
  overflow: hidden;
}

.hero-section {
  width: 100%;
  position: relative;
}

.banner-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  display: block;
}

.banner-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 0 15px;
  width: 100%;
  z-index: 2;
}

.banner-text h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  animation: slide-up 1.4s ease;
}

.banner-text h5 i {
  color: #f7ff00;
}

.banner-text h1 {
  font-size: 50px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  animation: slide-up 1.4s ease;
}

.banner-text p {
  font-size: 19px;
  margin-bottom: 2.5rem;
  margin-top: 5px;
  animation: slide-up 1.4s ease;
}

@keyframes slide-up {
  0% {
    transform: translateY(250px);
  }

  100% {
    transform: translateY(0px);
  }
}

.banner-text p a {
  text-decoration: none;
  color: #fff;
  transition: .2s ease-in;
}

.banner-text p a:hover {
  color: #e63946;
}

@media (max-width: 1024px) {
  .banner-text h1 {
    font-size: 40px;
  }

  .banner-text p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 35px;
  }

  .banner-text p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .banner-text h1 {
    font-size: 30px;
  }

  .banner-text p {
    font-size: 15px;
  }
}

@media (max-width: 425px) {
  .banner-text h1 {
    font-size: 25px;
  }

  .banner-text p {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 375px) {
  .banner-text h1 {
    font-size: 22px;
  }

  .banner-text p {
    font-size: 14px;
    margin: 0 0;
  }
}

@media (max-width: 320px) {
  .banner-text h1 {
    font-weight: 600;
  }

  .banner-text p {
    font-size: 13px;
  }

}