.hero__slider-1 {
    width: 100%;
    height: 75vh;
    position: relative;
  }
  @media (max-width: 575px) {
    .hero__slider-1 {
      height: 80vh;
    }
  }
  .hero__slider-1 .swiper,
  .hero__slider-1 .swiper-wrapper,
  .hero__slider-1 .swiper-slide {
    height: 100%;
  }
  .hero__slider-1-profile {
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    max-width: 300px;
    min-width: 200px;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 1;
  }
  @media (max-width: 575px){
  .hero__slider-1-profile {
    align-items: flex-start;
    padding-top: 10%;
  }
  }
  .hero__slider-1-profile::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    bottom: 0;
    background: linear-gradient(to right, rgba(19, 76, 154, 0), rgba(20, 70, 140, 0.8));
    z-index: -1;
  }
  .hero__slider-1-profile-list {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    padding: 0 20px;
  }
  .hero__slider-1-profile-list::-webkit-scrollbar {
    width: 8px;
    background: #f6f6f6;
  }
  .hero__slider-1-profile-list::-webkit-scrollbar-thumb {
    background: var(--theme-color);
  }
  .hero__slider-1-profile-card {
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }
  .hero__slider-1-profile-card-img img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    object-position: top;
  }
  .hero__slider-1-profile-card-info {
    display: flex;
    flex-direction: column;
  }
  .hero__slider-1-profile-card-info .info__title {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
  }
  .hero__slider-1-profile-card-info .info__title a {
    color: inherit;
  }
  .hero__slider-1-profile-card-info .info__desc {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    color: #d8d8d8;
  }
  .hero__slider-1 .grid__card {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero__slider-1 .grid__card .card__img {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero__slider-1 .grid__card .card__img a {
    position: static;
    height: 100%;
    padding-bottom: 0;
  }
  .hero__slider-1 .grid__card .card__img a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .hero__slider-1 .grid__card .card__img a img {
    position: static;
  }
  .hero__slider-1 .grid__card .card__details {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
    padding-right: 300px;
  }
  @media (max-width: 575px) {
    .hero__slider-1 .grid__card .card__details {
      padding: 20px;
    }
  }
  .hero__slider-1 .grid__card .card__details .card__title {
    font-size: 32px;
    font-weight: bold;
    color: white;
    transition: all 300ms ease-in-out;
  }
  @media (max-width: 768px) {
    .hero__slider-1 .grid__card .card__details .card__title {
      font-size: 26px;
    }
  }
  @media (max-width: 575px) {
    .hero__slider-1 .grid__card .card__details .card__title {
      font-size: 24px;
      font-weight: 600;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
  }
  .hero__slider-1 .grid__card .card__details .card__title a {
    color: inherit;
  }
  .hero__slider-1 .swiper-pagination {
    z-index: 3;
  }
  .hero__slider-1 .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    width: 15px;
    height: 15px;
    background: white;
    opacity: 0.3;
    transition: all 300ms ease-in-out;
  }
  @media (max-width: 575px) {
    .hero__slider-1 .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
    }
  }
  .hero__slider-1 .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 0.7;
  }
  .hero__slider-1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.2);
    opacity: 1;
  }