@media (min-width: 1281px) {
  
    /* CSS */
    
  }
  
  /* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */
  
  @media (min-width: 1025px) and (max-width: 1280px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */
  
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */
  
  @media (min-width: 481px) and (max-width: 767px) {
    
    /* CSS */
    
  }
  
  /* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */
  
  @media (min-width: 320px) and (max-width: 480px) {
    
    .bookingSec{
        position: relative;
        margin-top: -25px;
        z-index: 99;
    }
    
    .bookingSec .bookingForm{
        padding: 30px;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    }
    
    .bookingSec .bookingForm h3{
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
    }
    
    .bookingSec .bookingForm label{
        display: inline-block;
        cursor: pointer;
        color: #000000;
        font-weight: 400;
        margin: 10px 0px 2px 0px;
    }
    
    .bookingSec .bookingForm input{
        padding: 14px 50px 14px 20px;
        border-radius: 12px;
        font-size: 18px;
        box-shadow: none;
        color: #757F95;
    }
    
    .bookingSec .bookingForm .bookingbtn{
        width: 100%;
        padding: 15px;
        margin-top: 10px;
        font-size: 14px;
        color: #000000;
        transition: all .5s;
        text-transform: uppercase;
        position: relative;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: .5px;
        cursor: pointer;
        text-align: center;
        overflow: hidden;
        border: none;
        background: #FCB206;
        box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
        z-index: 1;
    }
    
    .bookingSec .bookingForm .bookingbtn:hover{
        color: #ffffff;
        background: #000000;
    }
    
  }