.custom-swi {
  padding: 20px;
}

.custom-swi__heading {
  margin-bottom: 60px;
  color: #000000;
}

.custom-swi__grid {
  display: flex;
  align-items: stretch;
}

.custom-swi__left {
  width: 45%;
}

.custom-swi__right {
  width: 65%;
  margin-right: -20%;
}

.custom-swi__fade {
  position: absolute;
  top: 0;
  bottom: 64px;
  width: 7%;
  pointer-events: none;
  z-index: 2;
}
.custom-swi__fade--left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
}

.custom-swi__fade--right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0)
  );
}

.custom-swi__swiper {
  margin-right: -300px;
  overflow: visible;
}

.custom-swi__slide {
  height: auto;
  min-height: 500px;
  transition-duration: 200ms;
}

.custom-swi__hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-40px);
  transition: opacity 0.25s, transform 0.25s;
}

.custom-swi__card {
  background: #f2f2f2;
  border-radius: 14px;
  padding-top: 60px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.custom-swi__icon {
  position: absolute;
  top: -40px;
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.custom-swi__title span {
  display: inline-block;
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.2;
}

.custom-swi__review {
  font-size: 16px;
}

.custom-swi__imgwrap {
  width: calc(100% - 75px);
  max-height: 55px;
  overflow: hidden;
  border-radius: 10px;
  margin-top: auto;
}

.custom-swi__imgwrap img {
  width: 100%;
  max-height: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left;
}

.custom-swi__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: #fcd905;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
}

.custom-swi__btn img {
  transition-duration: 200ms;
}

.custom-swi__btn:hover img {
  transform: rotate(45deg);
}

.custom-swi__arrow:active,
.custom-swi__arrow:focus,
.custom-swi__arrow:hover {
  background-color: transparent;
}

.custom-swi__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.custom-swi__nav {
  display: flex;
  gap: 8px;
}
.custom-swi__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 2px solid black;
  color: black !important;
  border-radius: 11px;
  padding: 0px;
  cursor: pointer;
}
.custom-swi__arrow img {
  display: block;
  width: 20px;
  height: 20px;
}

.custom-swi__dots {
  width: auto !important;
  position: static;
}

.custom-swi__dots .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  margin: 0 4px !important;
}

.custom-swi__dots .swiper-pagination-bullet-active {
  background: #fcd905;
}

.custom-swi__right {
  position: relative;
  height: 750px;
}

.custom-swi__rightimg {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 25px !important;
}

.custom-swi__rightlink {
  display: block;
}

@media (max-width: 1024px) {
  .custom-swi__grid {
    grid-template-columns: 1fr;
  }
  .custom-swi__card {
    padding-top: 60px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .custom-swi__btn {
    right: 30px;
    bottom: 30px;
  }
}

@media (max-width: 768px) {
  .custom-swi__swiper {
    right: 0px;
  }

  .custom-swi__left {
    width: 100%;
  }

  .custom-swi__right {
    display: none;
  }
}

@media (max-width: 480px) {
  .custom-swi__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .custom-swi__card {
    padding-top: 60px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .custom-swi__btn {
    right: 20px;
    bottom: 20px;
  }
}
