
/* =========================================================
   INNER PAGE BANNER
========================================================= */

.inner-banner-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
   
}

.inner-banner {
    width: 100%;
    position: relative;
}

.inner-banner picture {
    display: block;
    width: 100%;
}

.img-full {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

/* .inner-banner-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.20) 50%,
            rgba(0, 0, 0, 0.45) 100%
        );

    pointer-events: none;
} */


/* =========================================================
   CAPTION
========================================================= */

.inner-caption {
    position: absolute;
    inset: 0;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;
}
.inner-caption,
.inner-caption-content,
.inner-caption-title,
.inner-caption-breadcrumb {
    background: transparent !important;
    background-color: transparent !important;
}
.inner-caption-content {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* =========================================================
   GOLD ACCENT LINE
========================================================= */

.inner-caption-line {
    width: 42px;
    height: 2px;

    background: #b59645;

    margin-bottom: 20px;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.inner-caption-title {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(30px, 5vw, 62px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: clamp(2px, 0.4vw, 5px);

    color: #ffffff;

    white-space: nowrap;

    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   BREADCRUMB
========================================================= */

.inner-caption-breadcrumb {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 20px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(9px, 1vw, 11px);

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* HOME */

.inner-caption-breadcrumb a {
    color: rgba(255,255,255,.78);

    text-decoration: none;

    transition: color .25s ease;
}

.inner-caption-breadcrumb a:hover {
    color: #b59645;
}


/* SLASH */

.inner-caption-breadcrumb span {
    color: #b59645;
}


/* CURRENT PAGE */

.inner-caption-breadcrumb strong {
    font-weight: 400;

    color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .inner-caption {
        padding: 20px;
    }

    .inner-caption-title {
        font-size: clamp(30px, 5.5vw, 48px);
    }

    .inner-caption-line {
        width: 38px;
        margin-bottom: 17px;
    }

    .inner-caption-breadcrumb {
        margin-top: 16px;

        gap: 10px;

        font-size: 10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* .inner-banner-wrap {
        min-height: 300px;
    }

    .inner-banner {
        width: 100%;
        height: 300px;
    } */

    /* .inner-banner picture {
        width: 100%;
        height: 300px;
    } */

    .img-full {
        /* width: 100%;
        height: 300px; */

        object-fit: cover;
        object-position: center;
    }


    /* Caption */

    .inner-caption {
        padding: 15px;
    }


    /* Title */

    .inner-caption-title {
        font-size: clamp(25px, 8vw, 34px);

        letter-spacing: 2px;
    }


    /* Gold line */

    .inner-caption-line {
        width: 30px;

        height: 2px;

        margin-bottom: 14px;
    }


    /* Breadcrumb */

    .inner-caption-breadcrumb {
        margin-top: 14px;

        gap: 8px;

        font-size: 9px;

        letter-spacing: 1px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    /* .inner-banner-wrap {
        min-height: 260px;
    }

    .inner-banner {
        height: 260px;
    } */

    /* .inner-banner picture {
        height: 260px;
    }

    .img-full {
        height: 260px;
    } */


    .inner-caption {
        padding: 12px;
    }


    .inner-caption-title {
        font-size: 25px;

        letter-spacing: 1.8px;
    }


    .inner-caption-line {
        width: 26px;

        margin-bottom: 12px;
    }


    .inner-caption-breadcrumb {
        margin-top: 12px;

        gap: 7px;

        font-size: 8px;

        letter-spacing: .8px;
    }
}



