.hero {
  padding: 40px 10px;
}

.hero-background {
  background-image: url("../images/hero/heroBG.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-background1 {
  background-color: white;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero:nth-child(odd) > .hero-container {
  flex-wrap: wrap-reverse;
}

.hero-image1 {
  width: 150%;
  height: auto;
}
.hero-image2 {
  width: 150%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.brand-img {
  margin: auto;
  width: auto;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.hero-image2 {
  opacity: 0.1;
  width: auto;
  height: auto;
}
.hero-image2.visible {
  opacity: 1;
}

.hero-image2.hidden {
  opacity: 0;
}
.hero-brands {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #c6c6c6;
  padding-bottom: 60px;
}

.hero-brands > h4 {
  font-size: 32px;
  text-align: center;
  display: inline;
}

.hero-brands-grid {
  margin: 10px 0px;
  gap: 35px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 101%;
  height: auto;
}
.brand-img:hover {
  transform: translateY(-40px);
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
}
.hero-brands-grid .brand-img:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 5px #ef751b;
  border-radius: 40px;
}

@media only screen and (max-width: 800px) {
  .hero-brands-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-img {
  margin: auto;
  width: 80%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.brand-img:hover {
  transform: translateY(-40px);
  transform: scale(1.2);
  transition: transform 0.5s ease-in-out;
}
.hero-brands-grid .brand-img:hover {
  transform: translateY(-5px);
  box-shadow: 0px 2px 5px #ef751b;
  border-radius: 30px;
}
.hero-col-1 h1 {
  text-align: left;
  font-size: 30px;
  font-weight: normal;
  color: #000;
}

.hero-col-1 .subtitle {
  text-align: justify;
  font-size: 22px;
  font-weight: bold;
}

.hero-col-1 a {
  color: #ef751b;
  text-decoration: underline;
  font-size: 22px;
  font-weight: bold;
}

.hero-col-1,
.hero-col-2 {
  display: flex;
  flex-direction: column;
  max-width: min(100vw, 500px);
  margin: auto;
  position: relative;
  padding: 10px;
}

.hero-col-1a h1 {
  text-align: left;
  font-size: 30px;
  font-weight: normal;
  color: #000;
}

.hero-col-1a .subtitle {
  text-align: justify;
  font-size: 22px;
  font-weight: bold;
}

.hero-col-1a a {
  color: #ef751b;
  text-decoration: underline;
  font-size: 22px;
  font-weight: bold;
}

.hero-col-1a {
  display: flex;
  gap: 5px;
  flex-direction: column;
  max-width: min(78vw, 500px);
  position: relative;
  margin-bottom: 100px;
}

.hero-col-2a {
  display: flex;
  gap: 5px;
  flex-direction: column;
  max-width: min(400vw, 800px);
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  right: 80px;
}

.cx-buttonhero {
  height: auto;
  margin: auto;
  font-size: 22px;
  padding: 0px 20px;
  border-radius: 50px;
  border: 5px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, rgba(249, 117, 28, 1), rgba(127, 65, 250, 1) 100%)
      border-box;
}

.cx-buttonhero > :first-child {
  background: linear-gradient(
    90deg,
    rgba(249, 117, 28, 1) 0%,
    rgba(127, 65, 250, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cx-buttonhero:hover {
  border: 5px solid white;
  background: linear-gradient(
    90deg,
    rgba(249, 117, 28, 1) 0%,
    rgba(127, 65, 250, 1) 100%
  );
}

.cx-buttonhero:hover > :first-child {
  background-clip: unset;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background: transparent;
}

.cx-buttonhero:active > :first-child {
  -webkit-text-fill-color: rgb(239, 239, 239);
}

.button-text {
  background: linear-gradient(
    90deg,
    rgba(249, 117, 28, 1) 0%,
    rgba(127, 65, 250, 1) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-video {
  width: 910px;
  height: auto;
  margin-left: 30%;
}


.slider-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: #ef751b;
  cursor: pointer;
}

.indicator.active {
  background-color: rgba(127, 65, 250, 1);
}
@media only screen and (max-width: 600px) {
  .hero-video {
    width: 75vh;
    height: auto;
    padding-right: 15px;
  }
  .video-wrapper {
    width: 100%;
    height: auto;
  }
}
