

.swiper {
    width: 100%;
    height: 85vh;
  }
  .swiper-slide {
    position: relative;
  }
  .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-slide .overlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
  }
  .swiper-slide .overlay h2{
    font-family: "Delius Swash Caps", cursive;
     margin-bottom: 10px;
     font-weight: 500;
     font-size: 50px;
     text-align: center;
     color: white;
  }
  .swiper-slide .overlay p{
     margin-bottom: 20px;
     color: white;
     font-size: 18px;
     text-align: center;
  }
  .swiper-slide .overlay a{
     padding: 15px 40px;
     color: white;
     background-color: var(--bg-color);
     text-decoration: none;
     transition: 0.5s;
  }
  
  .swiper-slide .overlay a:hover{
    color: black;
    background-color: var(--bg-gold);
  }
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-button-next,.swiper-button-prev{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    background-color: rgba(0,0,0,0.6);    border-radius: 50%;
    align-items: center;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    color: white;
    font-size: 20px;
  }

  .swiper-button-next{
    right: 30px;
  }
  .swiper-button-prev{
    left: 30px;
  }

  @media screen and (max-width:768px){
    .swiper {
      width: 100%;
      height: 50vh;
    }

    .swiper-slide .overlay h2{
      font-size: 25px;
      margin-bottom: 5px;
   }
   .swiper-slide .overlay p{
      font-size: 14px;
   }
   .swiper-slide .overlay a{
      padding: 10px 20px;
      color: white;
      background-color: var(--bg-color);
      text-decoration: none;
      transition: 0.5s;
      font-size: 16px;
   }
  }