section.breadcrumb {
    width: 100%;
    height: 600px;
    position: relative;
}

section.breadcrumb figure {
    width: 100%;
    height: 100%;
}

section.breadcrumb figure img {
    width: 100%;
    height: 100%;
}

section.breadcrumb .breadcrumb-box {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, .3);
    color: white;
}

section.breadcrumb .breadcrumb-box ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section.breadcrumb .breadcrumb-box h2 {
    text-transform: uppercase;
}

section.breadcrumb .breadcrumb-box ul>span {
    line-height: 28px;
}

section.breadcrumb .breadcrumb-box ul li {
    line-height: 28px;
}

section.breadcrumb .breadcrumb-box ul li span {
    margin-right: 6px;
    line-height: 28px;
    display: block;
    font-size: 20px;
}

section.breadcrumb .breadcrumb-box ul li a {
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

@media screen and (max-width : 720px) {
    section.breadcrumb {
        width: 100%;
        height: fit-content;
        position: relative;
    }


    section.breadcrumb figure img {
        width: 100%;
        height: fit-content;
    }

}