/***
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 10;
    margin: 90px 0px 0px;
}

.breadcrumb-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.breadcrumb-area-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--thm-black);
    opacity: 0.50;
    content: "";
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: block;
    padding: 155px 0 150px;
    text-align: center;
    z-index: 10;
}

.breadcrumb-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.breadcrumb-menu ul {
    position: relative;
    display: flex;
    align-items: center;
}

.breadcrumb-menu ul li {
    position: relative;
    float: none;
    color: var(--thm-primary);
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    padding-right: 18px;
    margin-right: 13px;
    font-family: var(--thm-font-2);
}

.breadcrumb-menu ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu ul li:before {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 2px;
    width: 2px;
    background: #fff;
    transform: rotate(25deg);
}

.breadcrumb-menu ul li:last-child:before {
    display: none;
}

.breadcrumb-menu ul li a {
    color: var(--thm-base);
    position: relative;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.breadcrumb-menu ul li:hover a,
.breadcrumb-menu ul li.active {
    color: #fff;
}

.breadcrumb-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--thm-base);
    transition: width 0.3s ease;
}

.breadcrumb-menu ul li a:hover::after {
    width: 100%;
}

.breadcrumb-area .title {
    position: relative;
    display: block;
    overflow: hidden;
}

.breadcrumb-area .title h2 {
    font-size: 36px;
    font-family: var(--thm-font);
    line-height: 1.2em;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: #fff;

    /* background: linear-gradient(90deg, #ffb347, #ffcc33, #fff5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);

    opacity: 0;
    transform: translateY(60px);
    animation: fadeSlideUp 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width: 767px) {
    .breadcrumb-area {
        margin: 0px !important;
    }
    .breadcrumb-area .title h2 {
        font-size: 30px;
    }
    /* .breadcrumb-area img {
        height: 250px;
    } */
}







/* Blog breadcrumb - larger image for mobile */
@media (max-width: 767px) {
    .breadcrumb-area.blog-breadcrumb {
        margin: 0 !important;
        max-height: none;
    }

    .breadcrumb-area.blog-breadcrumb img {
        width: 100%;
        height: 320px; 
        object-fit: cover; 
    }
}


@media (max-width: 480px) {
    .breadcrumb-area.blog-breadcrumb img {
        height: 260px;
    }
}



