  /* Main Slider */
  /* Main Slider */
  /* Main Slider */
  /* Main Slider */

  .slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
  }
  
  .slide {
    direction: rtl;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    text-align: right;
    right: 0;
  }
  
  .slide.current {
    opacity: 1;
  }
  
  .slide img{
    position: absolute;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center !important;
    width: 100%;
  }
  
  .slide .content {
    right: -600px;
  }
  .slide .content h1,  .slide .content p{
    opacity: 0;
  }
  

  .slide.current .content .back-col{
    position: relative;
    background: rgba(55, 54, 54, 0.559);
    width: 40%;
    height: 100%;
    border-radius: 5px;
    margin-right: 4%;
  }
  
  .slide.current .content h1{
    animation: text1 .5s linear;
    opacity: 1;
  }
  .slide.current .content p{
    animation: text2 .5s linear;
    opacity: 1;
  }
  
  @keyframes text1 {
    0%{
        left: -500px;
        top: -100px;
    }
    100%{
        left: 0;
        top: 0;
        transition: all 1s;
    }
}
@keyframes text2 {
    0%{
        right: -500px;
        bottom: -100px;
    }
    100%{
        right: 0;
        bottom: 0;
        transition: all 1s;
    }
}

  .buttons button#next {
    position: absolute;
    top: 40%;
    right: 15px;
  }
  
  .buttons button#prev {
    position: absolute;
    top: 40%;
    left: 15px;
  }
  
  .buttons button {
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    width: 50px;
    outline: none;
  }
  
  .buttons button:hover {
    background-color: #fff;
    color: #333;
  }

  .buttons button i{
    font-size: 24px;
  }
  
  @media only screen and (max-width: 1600px){
    .buttons button#next {
        position: absolute;
        top: 40%;
        right: 10px;
      }
      
      .buttons button#prev {
        position: absolute;
        top: 40%;
        left: 10px;
      }
      
      .buttons button {
        border: 2px solid #fff;
        background-color: transparent;
        color: #fff;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        outline: none;
      }
      .buttons button i{
        font-size: 18px;
      }

}
@media only screen and (max-width: 900px){
  
  .slide.current .content .back-col{
    width: 60%;
    margin-right: 6%;
  }

}
@media only screen and (max-width: 700px){
  
  .slide.current .content .back-col{
    width: 80%;
    margin-right: 7%;
  }

}

  @media (max-width: 550px) {
    .slide.current .content .back-col{
      width: 85%;
      margin-right: 8%;
    }
  }
  
  @media only screen and (max-height: 700px){
    .slide.current .content .back-col{
      width: 65%;
    }
  }
  
  
  /* Backgorund Images */
   
  /* .slide:first-child {
    background: url('../img/main.jpg') no-repeat
      center top/cover;
  }
  .slide:nth-child(2) {
    background: url('../img/main\ \(1\).jpg') no-repeat
      center top/cover;
  }
  .slide:nth-child(3) {
    background: url('../img/main\ \(2\).jpg') no-repeat
      center top/cover;
  }
  .slide:nth-child(4) {
    background: url('../img/main\ \(3\).jpg') no-repeat
      center top/cover;
  }
  .slide:nth-child(5) {
    background: url('../img/main\ \(4\).jpg') no-repeat
      center top/cover;
  } 
  .slide:nth-child(6)  {
    background: url('../img/main\ \(5\).jpg') no-repeat
      center center/cover;
  } */
  
    /* Main Slider End */
    /* Main Slider End */
    /* Main Slider End */
    /* Main Slider End */
    
    
    
        .slide a{
      position: absolute;
      z-index: 1;
      width: 93vw;
      height: 75vh;
      right: 50%;
      transform: translateX(50%);
    }
  