/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(0deg, rgb(42, 44, 57) 0%, rgb(51, 54, 74) 100%);
  padding: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
}


.hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

.hero .carousel {
  width: 100%;
  height: 95vh !important;
  min-height: auto;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

@media (min-width: 768px) {
  .hero .carousel {
    height: 70vh !important;
    /* Change the height for medium and larger screens */
  }
}

h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px !important;
  font-weight: 400;
}

.contact .info {
  width: 100%;
  background: #fff;
}

#get-started .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

#get-started .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

#get-started .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

#get-started .info .email,
#get-started .info .phone {
  margin-top: 40px;
}

.header .logo img {
  max-height: 0px !important;
  margin-right: 6px;
}

.header-logo {
  max-height: 50px !important;
  margin-right: 6px;
}

.testimonials .testimonial-item {
  box-shadow: 0px 0px 0px 0px !important;
}

.text-lg-start {
  text-align: center !important;
}

.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 50vh !important;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.footer {
  color: #fff;
  background: url("../img/footer-bg.png") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 20px 0px 5px 0px !important;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
}