/* Customer Commitment Section - Swiper Version */
.customer-commitment-section {
  padding: 109px 0 137px;
  background-color: #001628;
}

.customer-commitment-section .section-header {
  margin-bottom: 60px;
  border-bottom: 1px solid #003966;
  padding-bottom: 62px;
}

.customer-commitment-section .section-title {
  margin: 0;
}

.commitment-swiper {
  width: 100%;
  overflow: hidden;
}

.commitment-inner {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: space-between;
}

.commitment-left {
  flex: 0 0 40%;
  max-width: 380px;
}

.commitment-right {
  flex: 0 0 72%;
  max-width: 48.5%;
  padding: 0px 0 0px;
}

.commitment-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: calc(400/380 * 100%);
}

.commitment-image img {
  width: 100% !important;
  object-fit: cover;
  display: block;
  position: absolute;
  height: 100% !important;
  max-width: 100% !important;
}

.commitment-title {
  margin: 0 0 24px;
}

.commitment-text {
  margin-bottom: 60px;
  margin-top: 0;
  color: #D0D0D0;
}

.commitment-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
  width: 48.5%;
}

.commitment-prev,
.commitment-next {
  position: static;
  margin: 0;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
  cursor: pointer;
}

.commitment-prev:hover,
.commitment-next:hover {
  color: #fff;
}

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

.commitment-pagination.swiper-pagination-fraction {
  position: static;
  width: auto;
  margin-left: 34px;
}

@media (min-width: 1441px) {
  .commitment-right {
    max-width: 48.1%;
  }

  .commitment-navigation {
    width: 48.1%;
  }


  .commitment-left {
    flex: 0 0 58%;
    max-width: 700px;
  }


  .commitment-image {
    padding-bottom: 400px;
  }
}

@media (max-width: 1023px) {
  .commitment-inner {
    display: block;
  }


  .commitment-left,
  .commitment-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .commitment-left {
    max-width: 767px;
  }

  .customer-commitment-section {
    padding: 68px 0;
  }

  .commitment-navigation {
    width: 100%;
    position: relative;
    top: 0 !important;
    margin-top: 30px;
  }

  .commitment-left {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {

  .customer-commitment-section .section-title {
    font-size: var(--font-size-heading-1);
    line-height: 1.2;
  }

  .customer-commitment-section .section-header {
    padding-bottom: 43px;
    margin-bottom: 40px;
  }

  .commitment-right {
    margin-top: 42px;
  }

  .commitment-title {
    line-height: 1.33333333333;
    margin: 0 0 32px;
  }

  .commitment-text {
    margin-bottom: 12px;
  }
}