
/** Fleet Page Banner Styles **/

/* Fleet Page Banner Text Color */
.fleet-page .banner-section .banner-carousel .content-box .upper-text,
.fleet-page .banner-section .banner-carousel .content-box h2,
.fleet-page .banner-section .banner-carousel .content-box p{
  color: #b36b56 !important;
}

.fleet-page .banner-section .banner-carousel .content-box p strong{
  color: #b36b56 !important;
}

/** fleet-section **/

.fleet-section{
  position: relative;
  background-color: #ffffff;
}

.fleet-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 0px;
  margin-bottom: 30px;
  transition: all 500ms ease;
  overflow: hidden;
}

.fleet-block-one .inner-box:hover{
  transform: translateY(-10px);
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.12);
}

.fleet-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.fleet-block-one .inner-box .image-box .image{
  position: relative;
  display: block;
  overflow: hidden;
}

.fleet-block-one .inner-box .image-box .image img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 500ms ease;
}

.fleet-block-one .inner-box:hover .image-box .image img{
  transform: scale(1.1);
}

.fleet-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  padding: 30px 25px 30px 25px;
}

.fleet-block-one .inner-box .lower-content h3{
  display: block;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--title-color);
}

.fleet-block-one .inner-box .lower-content p{
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
  color: var(--text-color);
}

.fleet-block-one .inner-box .lower-content .btn-box{
  position: relative;
  display: block;
}

.fleet-block-one .inner-box .lower-content .btn-box .theme-btn{
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
}

/* Responsive Styles */
@media only screen and (max-width: 991px) {
  .fleet-block-one .inner-box .image-box .image img{
    height: 250px;
  }
  
  .fleet-block-one .inner-box .lower-content{
    padding: 25px 20px 25px 20px;
  }
  
  .fleet-block-one .inner-box .lower-content h3{
    font-size: 22px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .fleet-block-one .inner-box .image-box .image img{
    height: 220px;
  }
  
  .fleet-block-one .inner-box .lower-content{
    padding: 20px 15px 20px 15px;
  }
  
  .fleet-block-one .inner-box .lower-content h3{
    font-size: 20px;
    line-height: 30px;
  }
  
  .fleet-block-one .inner-box .lower-content p{
    font-size: 15px;
    line-height: 24px;
  }
}

