.main {
    height: 100vh;
    width: 100%;
  }
  .wrapper,
  .slide {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .slide {
    overflow: hidden;
  }
  .slide::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
  }
  .slide .image {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .slide .image-data {
    max-width: 900px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 100;
  }
  .image-data span.text {
   
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    color: #efefef;
    letter-spacing: 4px;
    font-family: "Yellowtail", cursive;
  }
  .image-data h1 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
  }
  a.button {
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 18px;
    border-radius: 25px;
    color: #efefef;
    background:rgb(150, 63, 63);
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.3s ease;
  }
  a.button:hover {
    color: #fff;
    background-color: #c87e4f;
  }
  
  /* swiper button css */
  .nav-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
  }
  .nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  .swiper-button-next {
    right: 50px;
  }
  .swiper-button-prev {
    left: 50px;
  }
  .nav-btn::before,
  .nav-btn::after {
    font-size: 25px;
    color: #fff;
  }
  .swiper-pagination-bullet {
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: #fff;
    visibility: hidden;
  }
  .swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color: #c87e4f;
  }
  .scroll-down {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    text-align: center;
    z-index: 1000;
    animation: move 3s infinite;
  
  }
  .scroll-down i{
    font-size: 30px;
    line-height: 40px;
    color: #fff;
  }
  @keyframes move{
    0%{
      bottom: 3%;
      opacity: .3;
    }
    50%{
      bottom: 0;
      opacity: .5;
    }
    100%{
      bottom: 5%;
      opacity: 1;
    }
  }
  
  
  @media screen and (max-width: 768px) {
    .nav-btn {
      visibility: hidden;
    }
    .image-data{
      padding: 0 30px;
    }
    .swiper-pagination-bullet {
      visibility: visible;
    }
    .image-data span.text {
      font-size: 18px;
      font-weight: 400;
      
      text-align: center;
      line-height: 1.5;
      color: #fff;
    }
    .image-data h2 {
      font-size: 16px;
      font-weight: 400;
      color: #fff;
    }
  }
  
  @media screen and (max-width: 450px) {
    .image-data span.text {
      font-size: 17px;
      font-weight: 400;
    }
    .image-data h2{
      font-size: 16px;
    }
  }