
/** adventure-section **/

.adventure-section{
  position: relative;
}

.adventure-block-one .inner-box{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.adventure-block-one .inner-box .image-box{
  position: relative;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

.adventure-block-one .inner-box .image-box:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  background: linear-gradient(#05103600, #05103680, #051036);
  opacity: 0.8;
}

.adventure-block-one .inner-box .image-box img{
  width: 100%;
  border-radius: 5px;
  transition: all 500ms ease;
}

.adventure-block-one .inner-box:hover .image-box img{
  transform: scale(1.05);
}

.adventure-block-one .inner-box .content-box{
  position: absolute;
  left: 0px;
  bottom: 40px;
  width: 100%;
  z-index: 2;
}

.adventure-block-one .inner-box .content-box a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 18px;
  color: #fff;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 4px;
  padding: 15px 50px;
}

.adventure-block-one .inner-box .content-box a:hover{
  color: var(--secondary-color);
  background: #fff;
  border-color: #fff;
}

.adventure-section .sec-title .theme-btn{
  position: absolute;
  top: 0px;
  right: 0px;
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--title-color) !important;
  padding: 16px 45px;
}



/** RTL **/



/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .adventure-section{
    padding: 70px 0px 40px 0px;
  }
}

@media only screen and (max-width: 599px){
  .adventure-section .sec-title .theme-btn{
    position: relative;
    margin-top: 15px;
  }
}

@media only screen and (max-width: 499px){

}










































