.breadcrum{
    background-image: url(/assets/img/banner/breadcrum.jpg);
    background-size: cover;
    height: 240px;
    padding: 50px 120px 0px 120px;
}

.breadcrum h1{
    margin-top: 45px;
    font-family: 'Dancing Script', cursive;
    font-size: 40px;
}

.breadcrum h2{
    margin-top: 25px;
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.intro{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro p{
    max-width: 700px;
}

.intro-boxes{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.intro-boxes>div{
    max-width: 350px;
    max-height: 250px;
    overflow: hidden;
    margin: 20px 20px 0 20px;
    position: relative;
}

.intro-boxes div img{
    object-fit: contain;
    cursor: pointer;

}

.intro-boxes div::after{
    content: "";
    position:absolute;
    width: 100%;
    height: 100%;
    left: 0;
    transition: background-color 200ms linear;
}

.intro-boxes div:hover::after{
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(/assets/img/icon-svg/magnifying-glass.svg);
    background-position: center;
    background-size: 15%;
    background-repeat: no-repeat;
    pointer-events: none;
}

#lightbox{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-image-container{
    width: 800px;
    position: relative;
}

#lightbox-controls{
    position: absolute;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
    height: 11%;
    min-height: 72px;
    display: flex;
    justify-content: space-between;
}

.lightbox-ctrl{
    padding: 10px;
    margin: 15px;
    width: 17px;
    background-color: rgb(255 255 255 / 70%);
    border-radius: 10px;
    filter: invert(79%);
}

.lightbox-ctrl:hover,
#lightbox-x:hover{
    filter: invert(100%);
}

#lightbox-x{
    position: absolute;
    width: 18px;
    padding: 12px;
    background-color: rgb(255 255 255 / 70%);
    border-radius: 50%;
    filter: invert(79%);
    top: 10px;
    right: 10px;
    box-shadow: 0px 0px 11px 3px rgb(0 0 0 / 75%);
}

@media (max-width:715px) {
    #lightbox-controls{
        min-height: 100px;
    }
    .lightbox-ctrl{
        width: 12px;
    }
}

@media (max-width:570px) {
    .breadcrum{
        padding: 40px 30px;
        height: 120px;
    }
    .breadcrum h1{
        margin-top: 25px;
        font-size: 25px;
    }
    
    .breadcrum h2{
        margin-top: 25px;
        font-size: 27px;
    }
}