h2.underline-h2 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-weight: bold;
    position: relative;
    display: inline-block;
    font-family: var(--heading-font);
    letter-spacing: unset;
}
.sub-para-text {
    max-width: 700px;
    margin: 50px auto;
}
.expore-maine-sec{
  .underline-h2{
    span{
      display: block;
    }
  }
  .sub-para-text{
    margin: 35px auto;
    margin-bottom: 0;
  }
  .imgBox{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
    
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s ease-in-out;
    }
    .content{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 10px;
      visibility: hidden;
      transition: all 0.3s ease;
      text-align: center;
      background: rgba(0, 0, 0, 0.55);
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      h3{
        color: var(--white-color);
        font-size: var(--f30);
        margin: 0PX;
        font-weight: bold;
      }
      p{
        color: var(--white-color);
        font-family: var(--para-font);
      }
    }
    &:hover{
      img{
        scale: 1.1;
        transition: all 0.3s ease-in-out;
      }
      .content{
        visibility: visible;
        transition: all 0.3s ease;
      }
    }
  }
  h2{
    font-size: 50px;
    letter-spacing: unset;
    span{
      font-size: 50px;
      letter-spacing: 2px;
    }
  }
  p{
    font-size: 16px;
    line-height: 22px;
    margin-top: 26px;
    margin-bottom: 0;
    text-align: center;
    color: var(--para-color);
    margin: 20px auto 0;
    /*overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;*/
    transition: all 0.4s ease;
    font-family: var(--para-font);
    font-weight: 400;
  }
  &.things-to-do{
    background: #fff;
    .underline-h2{
      span{
        color: var(--secondary-color);
        display: inline-block;
      }
    }
  }
}
.expore-maine-sec .row{
  gap:35px 0;
}