@keyframes bananime {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    transform: translate(-50%);
  }
  50% {
    opacity: 0.9;
  }
  to {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}
.bannerAnimation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  display: none;
}

.bannerItem {
  display: block;
  width: 300px;
}

.bannerAnime {
  animation: bananime 4s infinite;
}

.banner {
  position: relative;
  min-height: calc(100vh - 80px);
  padding-top: 3rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.banner .contentWrapper {
  position: relative;
}
.banner .banner-swiper {
  width: 100%;
}
.banner .swiper-slide {
  display: flex;
  justify-content: space-between;
  height: auto;
  padding-top: 2.5rem;
}
@media (max-width: 1200px) {
  .banner .swiper-slide {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.banner .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
}
.banner .vector {
  max-width: 470px;
}
.banner .vector img {
  width: 470px;
}
@media (max-width: 470px) {
  .banner .vector img {
    width: 100%;
  }
}
.banner #swiper-slide-2 .button {
  background-color: #E21818;
}
.banner #swiper-slide-2 .title, .banner #swiper-slide-2 .text {
  color: #272727;
}
.banner #swiper-slide-3 .button {
  background-color: #6b5acc;
}
.banner .swiper-pagination {
  position: absolute;
  top: 0;
  left: 0;
  height: fit-content;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.banner .swiper-pagination-bullet {
  position: relative;
  width: 36px;
  height: 4px;
  border-radius: 2px;
  opacity: 1;
  background: rgba(37, 37, 37, 0.15);
  cursor: pointer;
  overflow: hidden;
}
.banner .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #67cfb4;
  transform-origin: left;
  animation: bulletFill 12s linear forwards;
}
@keyframes bulletFill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.banner .title {
  position: relative;
  font-weight: 700;
  font-size: clamp(24px, 8vw, 48px);
  margin-bottom: 30px;
  z-index: 1;
}
.banner .subTitle {
  position: relative;
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 30px;
  z-index: 1;
}
.banner .text {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
  z-index: 1;
}
.banner .scrollIndicatorWrapper {
  position: relative;
  display: block;
  margin: 0 auto 2rem;
}
@media (max-width: 1200px) {
  .banner .scrollIndicatorWrapper {
    margin: 0 5rem 2rem auto;
  }
}
@media (max-width: 1000px) {
  .banner .scrollIndicatorWrapper {
    display: none;
  }
}
.banner .scrollIndicator {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 1.5rem;
  width: 23px;
  height: 40px;
  border: 1px solid #67cfb4;
  border-radius: 30px;
}
.banner .scrollIndicator:before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: #67cfb4;
  top: 5px;
  left: 50%;
  transform: translate(-50%);
  border-radius: 50%;
  animation: scroll 1.3s infinite;
}
.banner .scrollIndicator:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 6px;
  display: block;
  border-right: 2px solid #67cfb4;
  border-bottom: 2px solid #67cfb4;
  width: 10px;
  height: 10px;
  transform: translate(-50%) rotate(45deg);
}
.banner .scrollIndicatorText {
  text-align: center;
  font-size: 12px;
}
.banner .skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
}
@media (max-width: 1000px) {
  .banner .skills {
    margin-top: 15px;
  }
}
.banner .skill {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 1rem;
  background-color: #f2f2f2;
  height: 125px;
}
.banner .skill div {
  font-size: 13px;
  font-weight: 500;
  width: 80%;
  text-align: center;
}
.banner .skill img {
  max-height: 50px;
}

/*# sourceMappingURL=banner.css.map */
