:root{
    scroll-behavior: auto;
}

.sliderSection {
    position: relative;
    column-gap: 3rem;
    padding-block: min(20vh, 3rem);
    padding-inline: 2.3em;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
  }
  @media screen and (min-width: 960px) {
    .sliderSection {
      display: flex;
      padding-inline: 0;
    }
  }
  
  .sliderSection .counter {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin: 2.5em 0 2em 0;
    gap: 2em;
  }
  .sliderSection .counter i {
    margin-right: 10px;
  }
  .sliderSection .counter span {
    display: block;
    text-transform: capitalize;
    font-size: 0.8rem;
    color: #c1c1c1;
    margin-top: 3px;
  }











  .swiper-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    right: 0px;
    margin: 0 auto;
  }
  @media screen and (min-width: 960px) {
    .swiper-container {
      width: 60%;
      right: -60px;
    }
  }

  .swiper {
    position: relative;
    width: 100%;
    z-index: 2;
  }

  .swiper-slide {
    width: 10rem;
    height: 20rem;
    display: flex;
    flex-direction: column;
    align-items: self-start;
    position: relative;
    border-radius: 12px;
    box-shadow: -1px 5px 15px #0000001f;
    text-align: center;
    opacity: 0.4;
    transition: opacity 0.4s ease-in;
  }
  .swiper-slide span {
    display: inline-block;
    background: #1e4e2f;
    border-radius: 0 50px 50px 0;
    text-transform: capitalize;
    padding: 12px 20px;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: absolute;
    top: 2em;
    left: 0;
    color: #fff;
  }
  .swiper-slide h3 {
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.625rem;
    letter-spacing: 0.8px;
    position: relative;
    word-wrap: break-word;
  }
  @media screen and (min-width: 800px) {
    .swiper-slide h3 {
      font-size: 1.8rem;
    }
  }
  .swiper-slide p {
    color: #fff;
    line-height: 1.6;
    font-size: 0.8rem;
  }

  .swiper-slide--one {
    background: #0f2027;
    background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("../images/white1.jpg") no-repeat 50% 50%/cover;
  }
  .swiper-slide--one h3 {
    font-family: "Courgette", cursive;
    font-weight: 300;
  }
  .swiper-slide--two {
    background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("../images/white2.jpg") no-repeat 50% 50%/cover;
  }
  .swiper-slide--two h3 {
    font-family: "Noto Serif Vithkuqi", serif;
    font-weight: 300;
  }
  .swiper-slide--three {
    background: url("../images/white3.jpg") no-repeat 50% 50%/cover;
  }
  .swiper-slide--four {
    background: url("../images/mainSlider/sliderImg1.jpg") no-repeat 50% 50%/cover;
  }
  .swiper-slide--five {
    background: url("../images/mainSlider/sliderImg3.jpg") no-repeat 50% 50%/cover;
  }
  .swiper-slide--six {
    background: linear-gradient(to bottom, #2c536400, #203a4303, #0f2027cc), url("../images/white2.jpg") no-repeat 50% 50%/cover;
  }
  .swiper-slide--six h3 {
    font-family: "Chonburi", cursive;
    font-weight: 400;
  }

  .swiper-slide-active {
    display: grid;
    opacity: 1;
  }

  .swiper-pagination {
    position: relative;
    bottom: -0.313rem;
    text-align: center;
    margin-top: 35px;
    width: auto;
  }
  .swiper-pagination-bullet {
    border-radius: 0;
    width: 1.5rem;
    height: 0.25rem;
    background: #000000;
  }
  .swiper-pagination-bullet-active {
    background: #3061e5;
  }

