.why-choose-section {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  padding: 0;
}
.why-choose-section .container {
  width: 100%;
}
.why-choose-section .slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.why-choose-section .slider-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  padding: 10px;
  margin: -10px;
}
.why-choose-section .slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.why-choose-section .slider-track.slick-initialized {
  display: block !important;
  transition: none !important;
}
.why-choose-section .card-shape-bg {
  position: relative;
  background: url("../images/home/whychoosebg.svg") no-repeat;
  padding: 30px 0 30px 60px;
  top: 0;
  left: 0;
  width: 100%;
  height: 433px;
  z-index: -1;
  pointer-events: none;
  display: flex;
  gap: 30px;
  filter: drop-shadow(0 12px 15px rgba(0, 115, 230, 0.08)) drop-shadow(0 4px 7px rgba(11, 48, 86, 0.04));
}
.why-choose-section .card-shape-bg .card-bg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-color: #ffffff;
  border-radius: 28px 28px 28px 0;
}
.why-choose-section .card-shape-bg .card-bg-tab {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 60px;
  background-color: #ffffff;
  border-radius: 0 0 28px 28px;
}
.why-choose-section .card-shape-bg .card-bg-fillet {
  position: absolute;
  left: 55%;
  top: calc(100% - 60px);
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 100% 100%, transparent 24px, #ffffff 24px);
}
.why-choose-section .slide-card {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(0.98);
  opacity: 0.7;
  margin: 0 20px;
}
.why-choose-section .slide-card.active, .why-choose-section .slide-card.slick-current, .why-choose-section .slide-card.slick-active {
  transform: scale(1);
  opacity: 1;
}
.why-choose-section .slide-card.slick-slide {
  outline: none;
  height: auto !important;
}
.why-choose-section .card-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 70%;
}
.why-choose-section .card-content .card-title {
  font-size: 55px;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: normal;
  letter-spacing: -0.01em;
  background: linear-gradient(90.04deg, #2F7EBF 33.01%, #0458A1 66.39%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.why-choose-section .card-content .card-description {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.why-choose-section .card-image-container {
  position: relative;
  width: 440px;
  height: 300px;
  border-radius: 20px;
  float: right;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: -40px;
  z-index: 2;
}
.why-choose-section .card-image-container img.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  transition: transform 8s ease;
}
.slide-card.active:hover .why-choose-section .card-image-container img.card-img {
  transform: scale(1.05);
}

/*Start Responsive css */
@media (max-width: 992px) {
  .why-choose-section .card-shape-bg {
    background: url("../images/home/whychoose-bg-mobile.png") no-repeat;
    background-size: contain;
    flex-direction: column-reverse;
    filter: drop-shadow(0 9px 4px rgba(0, 115, 230, 0.08)) drop-shadow(0 4px 2px rgba(11, 48, 86, 0.04));
    padding: 0;
    width: 100%;
    height: fit-content;
  }
  .why-choose-section .card-shape-bg .card-bg-tab {
    width: calc(100% - 120px);
  }
  .why-choose-section .card-shape-bg .card-bg-fillet {
    left: calc(100% - 120px);
  }
  .why-choose-section .slide-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
  .why-choose-section .card-content {
    padding: 24px;
    order: 2;
    width: 100%;
  }
  .why-choose-section .card-content .card-title {
    font-size: 20px;
  }
  .why-choose-section .card-content .card-description {
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  .why-choose-section .card-image-container {
    margin-bottom: 0;
    width: 211px;
    order: 1;
    height: 140px;
    margin-left: 18px;
    margin-top: 36px;
  }
  .why-choose-section {
    width: 100%;
    padding: 0;
  }
  .why-choose-section .card-content .card-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .why-choose-section .card-content .card-description {
    font-size: 1rem;
  }
  .why-choose-section .slider-nav-container {
    margin-top: 40px;
  }
  .why-choose-section .card-image-container {
    border-radius: 16px;
  }
}
@media (max-width: 575.98px) {
  .why-choose-section .card-shape-bg .card-bg-main {
    height: calc(100% - 40px);
    border-radius: 16px 16px 16px 0;
  }
  .why-choose-section .card-shape-bg .card-bg-tab {
    width: calc(100% - 100px);
    height: 40px;
    border-radius: 0 0 16px 16px;
  }
  .why-choose-section .card-shape-bg .card-bg-fillet {
    left: calc(100% - 100px);
    top: calc(100% - 40px);
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 100% 100%, transparent 16px, #ffffff 16px);
  }
  .why-choose-section .card-content .card-title {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .why-choose-section .card-image-container {
    margin-top: -20px;
  }
}
@media (max-width: 392px) {
  .why-choose-section .card-shape-bg {
    gap: 0;
  }
}/*# sourceMappingURL=why-choose.css.map */