.inner-page-banner {
    position: relative;
    color: #fff;
    overflow: hidden;
    margin-top: 89px;
    height: 350px;
    display: flex;
    align-items: center;
}

.inner-page-banner .banner-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Makes it act like background-size: cover */
    object-position: center;
    z-index: 1;
}

.inner-page-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #000;
    z-index: 2;
}

.inner-page-banner .banner-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 3; /* On top of overlay + bg img */
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.inner-page-banner .banner-content p:first-child{
    margin-top: 30px;
}
.inner-page-banner .banner-content p{
    text-align: center;
    margin-top: 20px;
   
}
.text-left  { text-align: left; }
.text-center{ text-align: center; }
.text-right { text-align: right; }
.page-inner-banner .hmpg-banner{
    margin: 0px;
    height: 400px;
    overflow: hidden;
}
.inner-page-banner h1{
    font-size: 60px;
    margin: 0 0 0px;
    text-align: center;
}
.page-inner-banner main#site-content {
    margin-top: 62px;
    padding: 0;
}
.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap:0px;
    justify-content: center;
}
@media only screen and (max-width: 1024px) {
    .inner-page-banner{
        margin-top: 76px;
    }
}
@media only screen and (max-width: 767px) {
    .inner-page-banner{
        margin-top: 62px;
    }
}
@media (max-width: 600px) {
    .inner-page-banner h1{
        font-size: 40px;
    }
}
.destination-card {
    width: calc(33.333% - 5px);
    position: relative;
    border-radius:0px;
    overflow: hidden;
    min-width: 300px;
}

.destination-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.destination-thumb {
    position: relative;
    width: 100%;
    padding-top: 95%; /* maintains 16:10 aspect ratio */
    overflow: hidden;
}

.destination-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.08);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
}

.destination-content {
    color: #fff;
    text-align: left;
}

.destination-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.destination-meta {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .destination-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .destination-card {
        width: 100%;
    }
}

.qodef-section-title-holder{
    padding: 80px 0;
}

.qodef-section-title-holder.qodef-st-with-border .qodef-st-title {
    border-left: 4px solid #000;
    padding-left: 33px;
    width:50%;
    margin: 0 0 30px;
}
h2.qodef-st-title {
    font-size: 36px;
    line-height: 1.15em;
    font-weight: 400;
}
.qodef-section-title-holder .qodef-st-text{
    font-size: 17px;
    line-height: 1.465em;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    margin: 23px 0 0;
    color: #000000;
    width: 65%;
}
.popular-destinations{
    padding-bottom: 80px;
}
.exp.qodef-section-title-holder.qodef-st-with-border .qodef-st-title{
    width: 85%;
}
@media only screen and (max-width: 768px){
    h2.qodef-st-title {
    font-size: 24px;
    line-height: 35px;
    }
    .qodef-section-title-holder{
        padding: 40px 0;
    }
    .qodef-section-title-holder .qodef-st-text{
        width: 100%;
    }
    .exp.qodef-section-title-holder.qodef-st-with-border .qodef-st-title, .qodef-section-title-holder.qodef-st-with-border .qodef-st-title  {
        width: 100%;
    }
}
.page-template-template-experiences{

}