::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.align-l{
  text-align: left!important;
}
p {
  font-size: 14px;
}

.hero-section {
  position: relative;
  min-height: 267px;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/hero_company_background.jpeg);
  background-position: 0 -220px;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
}
.hero-section h1 {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.125rem;
  color: #ff7800;
}

@media (min-width: 767px) {
  .hero-section {
    min-height: 445px;
  }

  .hero-section h1 {
    font-size: 3rem;
  }
}
@media (max-width: 1030px) {
  .hero-section {
    background-position: unset;
  }
}

.swiper {
  width: 90%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
