.banner_main{
  position: relative;
  .round7{
    position: absolute;
    top: 130px;
    right: 5%;
    z-index: 3;
    img{
        animation: rotat 9s infinite linear;
    }
}
.banner {
  .prev{
    height: 75px;
    width: 75px;
    color: white;
    font-size: 47px;
    background-color: rgba(226, 225, 225, 0.418);
    text-align: center;
    line-height: 75px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 5%;
    z-index: 2;
    transform: translateY(-50%);
    cursor: pointer;
}
.next{
    height: 75px;
    width: 75px;
    color: white;
    font-size: 47px;
    background-color: rgba(226, 225, 225, 0.418);
    text-align: center;
    line-height: 75px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 5%;
    z-index: 2;
    transform: translateY(-50%);
    cursor: pointer;
}
  .banner_Item {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;

    &::after {
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: transparent linear-gradient(90deg, #06c6e479 0%, #1e0b9b10 100%) 0% 0% no-repeat padding-box;
      z-index: -1;
    }
  }

  .banner_text {
    padding: 30px 30px 50px 30px;
    background-color: $white;
    border-radius: 8px;
    animation: updown 4s infinite;
    margin-top: 200px;

    h3 {
      font-size: 23px;
      color: #15a2d1;
      font-weight: 500;
      font-family: $font-1;
      line-height: 38px;
      
    }

    h4 {
      font-size: 32px;
      color: #004861;
      font-weight: 600;
      line-height:  42px;
      text-transform: uppercase;
      padding: 2px 0;
    }

    p {
      font-size: 15px;
      color: #212529;
      font-weight: 400;
      line-height: 28px; 
    }

    .ban_btn {
      margin-top: 40px;

      a {
        padding: 14px 26px;
        background: transparent linear-gradient(90deg, #1E0B9B 0%, #07CCEC 100%) 0% 0% no-repeat padding-box;
        color: $white;
        border-radius: 3px;
        font-weight: 500;
        font-size: 15px;
        text-transform: uppercase;
      }
    }
  }

}
.banner_bottom{
      position: absolute;
      bottom: 3px;
      width: 100%;
      z-index: 3;
     .banner_info{
      background-color: white;
      height: 220px;
      width: 100%;
      border-radius: 10px;
      padding: 20px;
       h4{
        font-size: 23px;
        color: #004861;
        font-weight: 600;
       }
       .OpensTable{
         padding-top: 15px;
         .border_bottom{
          border-bottom: 1px dashed #6d7277;
          margin: 8px 32px;
         }
          h5{
            font-size: 15px;
            color: #212529;
            font-weight: 400;
            line-height: 24px;
          }
          h6{
            font-size: 16px;
            color: #212529;
            font-weight: 600;
            line-height: 24px;
          }
       }
       .timeTable{
          p{
            font-size: 13px;
            color: #585858;
            font-weight: 400;
            line-height: 24px;
            padding-right: 20px;
          }
          .time_btn{
             margin-top: 30px;
            a{
              padding: 13px 25px;
              background: transparent linear-gradient(90deg, #1E0B9B 0%, #08bcd8 100%) 0% 0% no-repeat padding-box;
              font-size: 14px;
              color: $white;
              border-radius: 3px;
              font-weight: 500;
            }
          }
        .callN{
          font-size: 30px;
          color: #06bcd8;
          font-weight: 600;
          padding: 15px 0 22px 0;
          i{
            font-size: 35px;
          }
        }
       }
       
     }
}
}

@keyframes updown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    transform: translate3d(0, -35px, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}