/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_website {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}
 
#hero_website:before {
  content: "";
  background: rgb(255, 255, 255);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero_website h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(0, 0, 0, 0.8);
}

#hero_website h1 span {
  background: linear-gradient(to right, #000, #f8a813, #f15a24);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  border-bottom: 4px solid #1acc8d;
}

#hero_website h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero_website .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero_website .hero-img svg {
  text-align: center;
  justify-content: center;
  height: 530px;
  width: 530px;
}

@media (min-width: 1024px) {
  #hero_website {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero_website {
    padding-top: 80px;
  }
  #hero_website h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero_website h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero_website img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: -30px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
 
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# ecom-service
--------------------------------------------------------------*/

.ecom-service .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.ecom-service .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.ecom-service .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}


.ecom-service .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.ecom-service .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.ecom-service .member img {
  transition: all ease-in-out 0.4s;
}

.ecom-service .member:hover img {
  transform: scale(1.1);
}

.ecom-service .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
  padding: 15px 0;
  border-radius: 4px;
}

.ecom-service .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.ecom-service .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}

.ecom-service .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.ecom-service .member .social {
  margin-top: 15px;
}

.ecom-service .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.ecom-service .member .social a:hover {
  color: #9eccf4;
}

.ecom-service .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
