@charset "utf-8";

.mod_before_after {
  padding: 120px 0;
  background: #fff;
}

.before_after_swiper {
  position: relative;
  overflow: hidden;
}

.before_after_item {
  height: auto;
  padding: 36px;
  box-sizing: border-box;
  background: #fff;
}

.before_after_num {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 800;
  color: #131e5a;
}

.before_after_img_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.before_after_img_box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #eef3f8;
}

.before_after_img_box span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(19, 30, 90, .9);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.before_after_img_box img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.before_after_txt {
  margin-top: 28px;
}

.before_after_txt strong {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: #111;
}

.before_after_txt p {
  margin: 0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
}

.before_after_control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.before_after_prev,
.before_after_next {
  width: 72px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #131e5a;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.before_after_pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
}

.before_after_pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: #c5cfdd;
  opacity: 1;
}

.before_after_pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 99px;
  background: #131e5a;
}

@media (max-width: 1199px) {
  .mod_before_after {
    padding: 90px 0;
  }

  .before_after_item {
    padding: 28px;
  }

  .before_after_txt strong {
    font-size: 23px;
  }
}

@media (max-width: 767px) {
  .mod_before_after {
    padding: 70px 0;
  }

  .before_after_item {
    padding: 20px;
    border-radius: 20px;
  }

  .before_after_img_wrap {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .before_after_img_box {
    border-radius: 16px;
  }

  .before_after_img_box span {
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .before_after_txt {
    margin-top: 22px;
  }

  .before_after_txt strong {
    font-size: 21px;
  }

  .before_after_txt p {
    font-size: 15px;
  }
}