/*************************
* Index (Frontpage)
**************************/

/* Hero */

.hero  {
  display: flex;
  gap: 50px;
}
.hero__2  {
  gap: 20px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 676px) {
  .hero {
    display:flex;
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .hero__container h1{
    font-size: 3rem;
  }
}

.hero .hero__content {
  flex: 1;
  padding: 10px;
  text-align: center;
}

.hero .hero__img {
  flex: 1;
  padding: 10px;
}

.hero .hero__img img {
  width: 100%;
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__animation {
  text-align: center;
  text-transform: uppercase;
  font-size: var(--h1__banner_title);
  font-weight: 500;
  letter-spacing: 1px;
  display: inline-block;
  color: #555;
  animation: fadeIn 1.5s forwards;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media screen and (max-width: 676px) {
  .hero__animation {
    font-size: 18px;
  }
}
span {
  font-size: 4rem;
}
@media screen and (max-width: 676px) {
  span {
    font-size: 1.5em;
  }
}
.first {
  display: inline-block;
  animation: firstspan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  position: relative;
}
.slide {
  display: inline-flex;
  overflow: hidden;
}
.second {
  z-index: -1;
  display: inline-block;
  animation: secondspan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes firstspan {
  0% {
    transform: translateX(50%);
  }
  60% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes secondspan {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* aboutus */

.aboutus .aboutus__title {
  margin-bottom: 30px;
}
.aboutus .aboutus__img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 560px;
}
.aboutus .aboutus__in {
  max-width: 650px;
  width: 100%;
}
