.destination-main-wrap{
    background-image: url("/assets/images/web/destination-cover.jpg");
     height: 100%;
    width: 100vw;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .all-destination-wrap{
    padding-top: 50px;
    padding-bottom: 50px;
}
  @media screen and (min-width: 600px) {
.all-destination-wrap{
    padding-top: 6%;
    padding-bottom: 6%;
}
  }
.all-destination-main{
    display: grid;
    grid-template-columns: 48% 48%;
    grid-row-gap:25px;
    grid-column-gap:2%;
}
@media screen and (min-width: 600px) {
.all-destination-main{
    display: grid;
    grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
    grid-row-gap:2%;
    grid-column-gap:2%;
}
}
.all-destination-main a{
    display: block;
    color: #87C4FF;
    font-size: 16px;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid #BCBCBC;
    transition: 0.3s;
}
.all-destination-main a:hover{
  padding-left: 10px;
}
.all-destination-main h4{
    color: #000;
font-size: 20px;
font-weight: 700;
line-height: 22px;
letter-spacing: 0em;
text-align: left;

}
.most-booked-wrap{
    padding-top: 6%;
    padding-bottom: 0%;
  
}
/**/

  .slider-container{
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
  }

@media screen and (min-width: 1200px) {
.slider-container{
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}
}
.slide{
  display: grid;
  grid-template-columns: 100%;
  grid-row-gap:0;
  grid-column-gap:0%;
  position: relative;
}
@media screen and (min-width: 600px) and (max-width: 899px){
  .slide{
    display: grid;
    /* grid-template-columns: 32% 32% 32%; */
    grid-column-gap:2%;
  }
  }
@media screen and (min-width: 900px){
.slide{
  display: grid;
  /* grid-template-columns: 23.5% 23.5% 23.5% 23.5%; */
  grid-column-gap:2%;
}
}
.in-box{
  width: 100%;
  position: relative;
}
.in-box img{
  width: 100%;
}
.in-box{
  width: 100%;
  height:auto;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
.in-box  {
  width: 100%;
  height:auto;
  overflow: hidden;
  margin: 0 auto;
}
}

.in-box  img {
  width: 100%;
  transition: 0.3s all ease-in-out;
}

.in-box:hover img {
  transform: scale(1.1);
}




.in-box p{
  font-size:16px;
  color: #fff;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
  position: absolute;
  bottom: 7px;
  left: 10px;
  margin-bottom: 0px;
  transform: translate(0%, -50%);
}
@media screen and (min-width: 600px) and (max-width: 899px){
.in-box p{
  font-size:18px;
  color: #fff;
  font-weight: 700;
  line-height: 22px;
  bottom: 10px;
  left: 20px;
}
}
@media screen and (min-width: 1200px) {
.in-box p{
  font-size: 20px;
  color: #fff;
  bottom: 15px;
  left: 25px;
}
}
.slider-container button{
  background: #ddd;
  border: 0px;
  border-radius: 50px;
  height: 30px;
  width: 30px;
  transition: 0.3s;
}
.slider-container button img{
  height: 10px;
}
@media screen and (min-width: 1200px) {
.slider-container button{
  height: 50px;
  width: 50px;
}
.slider-container button img{
  height: 18px;
}
}
.slider-container button:hover{
  background: #e4e4e4;

}
.slider-container button.prev{
  position: absolute;
  top: 50%;
  left: -10px;
  margin-bottom: 0px;
  transform: translate(0%, -50%);
 
}
.slider-container button.next{
  position: absolute;
  top: 50%;
  right: -10px;
  margin-bottom: 0px;
  transform: translate(0%, -50%);
}
@media screen and (min-width: 1200px) {
.slider-container button.prev{
  left: -70px;
 
}
.slider-container button.next{
  right: -70px;
}
}