  /*--------------------------------------------------------------
  # like button
  --------------------------------------------------------------*/
  
  .fa-heart-o {
    color: rgb(255, 73, 103);
    cursor: pointer;
  }
  
  .fa-heart {
    color: rgb(255, 73, 103);
    cursor: pointer;
  }

  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  
  #hero {
    width: 100%;
    height: 30vh;
    position: relative;
    margin-top: 70px;
    padding: 0;
    overflow: hidden;
  }
  
  #hero .hero-img{
    width: 100%;
    height: auto;
  }
  
  #hero .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #hero .container {
    z-index: 2;
  }
  
  #hero:before {
    content: "";
    background: rgba(56, 64, 70, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  
  #hero .centered h1 {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 72px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  #hero .centered h2 {
    margin: 0 0 10px 0;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    line-height: 56px;
    color: #fff;
  }
  
  @media (max-width: 1024px) {
    #hero {
      height: 200px;
    }
    #hero .hero-img{
      width: 200%;
      height: auto;
    }
  }
  
  @media (max-width: 992px) {
    #hero {
      height: 100px;
    }
    #hero .hero-img{
      width: 200%;
      height: auto;
    }
  }
  
  @media (max-width: 768px) {
    #hero .centered h1 {
      font-size: 30px;
      line-height: 36px;
    }
    
  #hero .centered h2 {
      margin-top: 10px;
      font-size: 24px;
      line-height: 24px;
    }
  }

  /*--------------------------------------------------------------
  # What We Do
  --------------------------------------------------------------*/
  .what-we-do .icon-box {
    text-align: center;
    padding: 30px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
  }
  
  .what-we-do .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #eaf4fb;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: ease-in-out 0.3s;
  }
  
  .what-we-do .icon-box .icon i {
    color: #73bb2b;
    font-size: 28px;
  }
  
  .what-we-do .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
  }
  
  .what-we-do .icon-box h4 a {
    color: #384046;
    transition: ease-in-out 0.3s;
  }
  
  .what-we-do .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .what-we-do .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  }
  
  .what-we-do .icon-box:hover h4 a, .what-we-do .icon-box:hover .icon i {
    color: #73bb2b;
  }
  /*--------------------------------------------------------------
  # search bar
  --------------------------------------------------------------*/
  
  .search-bar{
    padding: 60px 0;
  }
  
  .btn-custom {
    border-color: rgb(100, 100, 100, 0.2);
    height: 40px;
  }
  
  .search-btn{
    border-color: rgb(100, 100, 100, 0.2);
  }
  
  /*--------------------------------------------------------------
  # itineraries
  --------------------------------------------------------------*/
  .itineraries {
    padding: 60px 0;
  }
  
  .itineraries .itineraries-wrap {
    overflow: hidden;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
  }
  
  .itineraries .itineraries-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
  }
  
  .itineraries .itineraries-item {
    position: relative;
    height: 410px;
    overflow: hidden;
  }
  
  .itineraries .itineraries-item figure {
    overflow: hidden;
    width: 360px;
    height: 240px;
    position: relative;
    border-radius: 4px 4px 0 0;
    background-color: #000000;
    margin: 0;
  }
  
  .itineraries .itineraries-item figure:hover img {
    opacity: 0.4;
    transition: .4s;
  }
  
  .itineraries .itineraries-item .itineraries-info {
    background: #fff;
    text-align: center;
    padding: 20px;
    height: 140px;
    border-radius: 0 0 3px 3px;
  }
  
  .itineraries .itineraries-item .itineraries-info h4 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 0;
  }
  
  .itineraries .itineraries-item .itineraries-info h2 {
    font-size: 15px;
    font-weight: 700;
    position: absolute;
    text-align: right;
    bottom: 35px;
    right: 30px;
  }
  
  .itineraries .itineraries-item .itineraries-info .like-button {
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    text-align: left;
    bottom: 35px;
    left: 30px;
  }
