.breadcrumb_wrapper {
    background: linear-gradient( rgba(0, 0, 0, .26), rgb(0 0 0 / 93%)), url('../images/Breadcrumbf.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: center;
}

.breadcrumb_wrapper__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.breadcrumb_wrapper__content h2 {
    font-size: 70px;
    color: var(--white-color);
    text-transform: capitalize;
}

.breadcrumb_menu {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    margin-top: 1rem;
}

.breadcrumb_menu a,
.breadcrumb_menu span,
.breadcrumb_menu p {
    font-size: 18px;
    text-transform: capitalize;
}

.breadcrumb_menu a:hover {
    color: whitesmoke;
}

.breadcrumb_menu a {
    color: var(--white-color);
}

.album_pic img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.album_pic {
    background-color: var(--white-color);

}

/* why_box */
.why_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: whitesmoke;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.why_box__icon span {
    height: 52px;
    width: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 25px;
    border-radius: 100%;
}

.why_box p {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.bg1 {
    background-color: #e2ffec;
}

.bg2 {
    background-color: #ebe2ff;
}

.bg3 {
    background-color: #ffe2e8;
}

.bg4 {
    background-color: #fff7e2;
}

@media(max-width:992px) {
    .album_pic img {
        height: 250px;
    }

    .why_box {
        margin-bottom: 1rem;
    }

}

@media(max-width:768px) {
    .breadcrumb_wrapper {
        padding: 50px 0;
    }

    .why_box p {
        font-size: 15px;
    }

    .why_box {
        padding: 1.5rem;
        height: 94%;
    }

    .why_box__icon span {
        height: 44px;
        width: 44px;
        font-size: 20px;
    }

    .breadcrumb_wrapper__content h2 {
        font-size: 44px;
    }

    .breadcrumb_menu {
        margin-top: 10px;
        gap: 10px;
    }

    .breadcrumb_menu a,
    .breadcrumb_menu span,
    .breadcrumb_menu p {
        font-size: 16px;
    }

    .album_pic img {
        height: 200px;
    }

}

@media(max-width:576px) {
    .breadcrumb_wrapper__content h2 {
        font-size: 32px;
    }
}