/* Hero Section */
.hero-section {
  color: var(--black);
}
.hero-section .container {
  padding: 0;
}
.hero-content {
  margin-top: 28px;
}
.hero-title {
  font-size: 64px;
  font-weight: 400;
}
.hero-title span,
.hero-subtitle span {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
}
.hero-subtitle {
  font-weight: 300;
  font-size: 36px;
  margin: 32px 0 48px 0;
}
.swiper1 .swiper-slide {
  display: flex;
  justify-content: space-between;
}
.hero-img img {
  height: 480px;
}

/* Our Mission Section */
.mission-section .container {
  display: flex;
  align-items: flex-end;
  color: var(--white);
  border-radius: 8px;
  padding: 32px 32px 24px 32px;
  background-image: linear-gradient(
    to bottom right,
    var(--accent),
    var(--accent-light)
  );
}
.left-part {
  margin-bottom: 12px;
}
.mission-img {
  position: relative;
  top: 40px;
  width: 276px;
}
.mission-title {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 300;
  line-height: 56px;
}
.mission-title span {
  font-size: 68px;
  font-weight: 500;
}
.right-part {
  margin-left: 80px;
}
.right-part .body-text {
  font-size: 17px !important;
}
.right-part ul {
  padding-left: 16px;
  margin-top: 14px;
  height: 300px;
  overflow-y: auto;
  padding-right: 20px;
}
.right-part ul::-webkit-scrollbar {
  width: 4px;
}
.right-part ul::-webkit-scrollbar-thumb {
  width: 100%;
  border-radius: 4px;
  background-color: #cafeff;
}
.right-part li {
  margin-top: 9px;
}

/* Clients Section */
.clients-section .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.clients-heading {
  font-weight: 400;
  line-height: 68px;
  text-indent: 10px;
}
.clients-heading span {
  font-size: 88px;
  font-weight: 500;
  color: var(--accent);
}

.slider {
  overflow: hidden;
  position: relative;
  width: 720px;
  border-radius: 8px;
}
.slider img {
  width: 180px;
}
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 200px;
  height: 100%;
  background-image: linear-gradient(to right, var(--body-bg), transparent);
  z-index: 2;
}
.slider::after {
  left: unset;
  right: 0px;
  background-image: linear-gradient(to left, var(--body-bg), transparent);
}
.slider .slide-track {
  animation: scroll 20s infinite;
  display: flex;
  align-items: center;
  width: calc(180px * 14);
}
.slider .slide {
  margin: 0 40px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-180px * 7));
  }
}

/* Stats */
.stats-section .container {
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  padding: 40px 15%;
  color: var(--white);
  background-color: var(--accent);
}
.stat {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.stat-number {
  font-weight: 200;
  font-size: 48px;
}
.stat img {
  height: 100px;
  margin: 22px 0;
}
.stat-name {
  font-weight: 200;
  font-size: 36px;
}

@media screen and (max-width: 1200px) {
  .left-part {
    margin-bottom: 0px;
  }
  .right-part {
    margin-left: 40px;
  }
}
@media screen and (max-width: 992px) {
  /* Hero Section */
  .hero-content {
    margin-top: 24px;
  }
  .hero-title {
    display: inline-block;
    font-size: 56px;
  }
  .hero-subtitle {
    font-size: 28px;
  }
  .hero-img img {
    height: 320px;
  }

  /* Our Mission Section */
  .mission-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 0px 16px;
  }
  .left-part {
    position: relative;
    top: -36px;
    margin-bottom: 0px;
  }
  .right-part {
    margin-left: 0px;
  }
  .right-part ul {
    margin-top: 12px;
  }

  /* Clients Section */
  .clients-heading {
    line-height: 56px;
    text-indent: 8px;
  }
  .clients-heading span {
    font-size: 72px;
  }

  /* Stats */
  .stats-section .container {
    padding: 40px 80px;
  }
}
@media screen and (max-width: 768px) {
  /* Hero Section */
  .hero-content {
    margin-top: 8px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 22px;
    letter-spacing: -0.2px;
    margin: 24px 0 36px 0;
  }
  .hero-img img {
    height: 220px;
  }

  /* Our Mission Section */
  .left-part {
    top: -28px;
  }
  .mission-img {
    width: 220px;
  }
  .mission-title {
    font-size: 32px;
    line-height: 48px;
  }
  .mission-title span {
    font-size: 54px;
  }
  .right-part ul {
    margin-top: 10px;
  }

  /* Clients Section */
  .clients-heading {
    font-size: 36px;
    line-height: 48px;
    text-indent: 4px;
  }
  .clients-heading span {
    font-size: 56px;
  }

  /* Stats */
  .stats-section .container {
    padding: 40px 60px;
  }
  .stat-number {
    font-weight: 300;
    font-size: 40px;
  }
  .stat img {
    height: 70px;
    margin: 18px 0;
  }
  .stat-name {
    font-weight: 300;
    font-size: 28px;
  }
}
@media screen and (max-width: 576px) {
  /* Hero Section */
  .hero-section {
    margin-top: 24px;
  }
  .hero-content {
    margin-top: 8px;
  }
  .hero-subtitle {
    font-size: 20px;
    margin: 16px 0 28px 0;
  }
  .swiper1 .swiper-slide {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-img img {
    margin-top: 48px;
    height: 260px;
  }

  /* Our Mission Section */
  .mission-img {
    top: 32px;
    width: 196px;
  }
  .mission-title {
    font-size: 28px;
    line-height: 44px;
  }
  .mission-title span {
    font-size: 48px;
  }

  /* Clients Section */
  .clients-section .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .clients-heading {
    font-size: 32px;
    line-height: 40px;
    text-indent: 4px;
  }
  .clients-heading span {
    font-size: 48px;
  }

  .slider {
    width: 100%;
    border-radius: 8px;
    margin-top: 24px;
  }
  .slider img {
    width: 140px;
  }
  .slider::before,
  .slider::after {
    width: 80px;
  }
  .slider .slide {
    margin: 0 30px;
  }

  /* Stats */
  .stats-section .container {
    flex-direction: column;
    padding: 24px;
  }
  .stat {
    margin-bottom: 32px;
  }
  .stat:last-child {
    margin-bottom: 0px;
  }
  .stat-number {
    font-weight: 300;
    font-size: 40px;
  }
  .stat img {
    height: 60px;
    margin: 10px 0;
  }
  .stat-name {
    font-weight: 300;
    font-size: 28px;
  }
}
