.milestonesPage {
  background: #fff;
}

.milestones {
  min-height: 628px;
  background-image: url(../images/milestones-globe.jpg);
  overflow: hidden;
  padding: 88px 0 80px;
  position: relative;
}

.milestones .main {
  position: relative;
  z-index: 1;
}

.milestones h2 {
  font-weight: 700;
  font-size: 34px;
  color: #2A2F36;
  line-height: 34px;
  text-align: center;
}

.milestoneWrap {
  position: relative;
  margin-top: 70px;
}

.milestoneSwiper {
  width: 100%;
  overflow: hidden;
  padding: 28px 0 42px;
}

.milestoneSwiper .swiper-wrapper {
  align-items: stretch;
}

.milestoneSlide {
  height: auto;
  transition: transform .3s ease-in-out;
}

.milestoneSlide:hover {
  transform: translateY(-8px);
}

.milestoneCard {
  min-height: 205px;
  position: relative;
  padding-left: 66px;
}

.milestoneCard .point {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}

.milestoneCard .point::before,
.milestoneCard .point::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.milestoneCard .point::before {
  inset: 0;
  background: rgba(0, 77, 128, .18);
}

.milestoneCard .point::after {
  width: 10px;
  height: 10px;
  left: 7px;
  top: 7px;
  background: #004D80;
}

.milestoneCard .line {
  position: absolute;
  left: 11px;
  top: 22px;
  width: 2px;
  height: 180px;
  background: linear-gradient(180deg, #004D80 9%, rgba(255, 255, 255, 0) 100%);
  opacity: .55;
}

.milestoneCard .text {
  padding-top: 7px;
}

.milestoneCard h3 {
  font-weight: 700;
  font-size: 40px;
  color: #2A2F36;
  line-height: 40px;
  margin-bottom: 24px;
  transition: color .3s ease-in-out;
}

.milestoneCard h4 {
  font-weight: 600;
  font-size: 18px;
  color: #2A2F36;
  line-height: 25.2px;
  margin-bottom: 10px;
}

.milestoneCard p {
  width: min(287px, 100%);
  font-size: 16px;
  color: #5C6470;
  line-height: 22.4px;
}

.milestoneSlide:hover .point::before{
  animation: milestonePulse 1.45s ease-in-out infinite;
}

.milestoneSlide:hover h3 {
  color: #004D80;
}

.milestoneSlide:hover .line,
.milestoneSlide.swiper-slide-active .line {
  opacity: 1;
}

@keyframes milestonePulse {
  0%,
  100% {
    opacity: .45;
    transform: scale(.86);
  }

  50% {
    opacity: .95;
    transform: scale(1.08);
  }
}

.milestoneArrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  top: 102px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A5A5A5;
  transition: all .3s ease-in-out;
}

.milestoneArrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .58);
}

.milestoneArrow span {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  position: relative;
  z-index: 1;
  transition: all .3s ease-in-out;
}

.milestonePrev {
  left: -86px;
}

.milestonePrev span {
  transform: rotate(-135deg) translate(-2px, 2px);
  transform-origin: center;
}

.milestoneNext {
  right: -86px;
}

.milestoneNext span {
  transform: rotate(45deg) translate(-2px, 2px);
  transform-origin: center;
}

.milestoneArrow:hover {
  color: #fff;
}

.milestoneArrow:hover::before {
  background: #004D80;
}

@media (max-width: 1320px) {
  .milestonePrev {
    left: -24px;
  }

  .milestoneNext {
    right: -24px;
  }
}

@media (max-width: 1024px) {
  .milestones {
    min-height: 560px;
    padding: 72px 0 66px;
  }

  .milestoneWrap {
    margin-top: 56px;
  }

  .milestoneArrow {
    display: none;
  }

  .milestoneCard {
    padding-left: 58px;
  }
}

@media (max-width: 768px) {
  .milestones {
    min-height: 520px;
    padding: 58px 0;
  }

  .milestones h2 {
    font-size: 28px;
    line-height: 34px;
  }

  .milestoneWrap {
    margin-top: 38px;
  }

  .milestoneSwiper {
    padding-top: 22px;
  }

  .milestoneCard h3 {
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 20px;
  }

  .milestoneCard h4 {
    font-size: 17px;
    line-height: 24px;
  }

  .milestoneCard p {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 480px) {
  .milestones h2 {
    font-size: 25px;
    line-height: 31px;
  }

  .milestoneCard {
    padding-left: 50px;
  }

  .milestoneCard .line {
    height: 165px;
  }
}
