.hero {
  margin: 120px auto;
  max-width: 1264px;
  padding: 0 32px;
  display: flex;
  gap: 64px;
}

.left {
  width: 100%;
}
.left .subtitle {
  color: #4B5563;
  margin: 16px 0 24px 0;
  max-width: 440px;
}

.right {
  width: 100%;
  background-color: #155EEF;
  border-radius: 16px;
  color: white;
  padding: 40px 32px;
  max-width: 620px;
}
.right .h3 {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.testi-swiper-container {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 56px auto 64px;
}

.testi-swiper {
  width: 400px;
  border: 6px solid #3685FB;
  border-radius: 22px;
  background-color: white;
}

.testi-wrapper {
  width: 100%;
  background-color: white;
}

.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

.testi-prev {
  width: 40px;
  height: 40px;
  background-color: #5CA9FE;
  border-radius: 50%;
  top: unset !important;
  left: 0;
}
.testi-prev svg {
  width: 6px;
  height: 10px;
  fill: white;
}

.testi-next {
  width: 40px;
  height: 40px;
  background-color: #5CA9FE;
  border-radius: 50%;
  right: 0;
  top: unset !important;
}
.testi-next svg {
  width: 6px;
  height: 10px;
  fill: white;
}

.testi-slide {
  color: #030712;
  background-color: white;
  padding: 24px;
  height: unset;
}

.testi-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
}
.testi-rating svg {
  width: 16px;
  height: 16px;
  fill: #12A250;
}

.testimonial {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

.testi-box .text {
  color: #030712;
}

.logos-header {
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.cont-logos-wrap {
  display: flex;
  flex-wrap: wrap;
  columt-gap: 16px;
  row-gap: 8px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.cont-logos-wrap img {
  width: 100px;
  height: 48px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .right {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero {
    margin: 96px 0;
    padding: 0 16px;
  }
}
.contact-details {
  margin: 120px auto;
  max-width: 1264px;
  padding: 0 32px;
}

.cont-boxes {
  margin-top: 32px;
  display: flex;
  gap: 24px;
}

.cont-box {
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  flex: 1 1;
}

.cont-box-icon {
  width: 40px;
  height: 40px;
  background-color: #155EEF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cont-box-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.cont-link {
  position: relative;
  font-size: 24px;
  color: #030712;
  font-family: Medium;
}
.cont-link:visited {
  color: #030712;
}
.cont-link::after {
  position: absolute;
  content: "";
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #030712;
  transition: ease 0.3s;
  bottom: -2px;
}
.cont-link:hover::after {
  width: 100%;
  left: 0;
}

@media (max-width: 1200px) {
  .cont-boxes {
    flex-direction: column;
    align-items: center;
  }
  .cont-box {
    max-width: 400px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-details {
    margin: 96px 0;
    padding: 0 16px;
  }
  .cont-link {
    font-size: 16px;
  }
}