html {
    scroll-behavior: smooth;
}




.item {
    position: relative;
    cursor: pointer;
}

.item .caption {
    left: 50%;
    bottom: 50px;
    width: 80%;
    transform: translateX(-50%);
}

.item .caption p {
    font-size: 14px;

}

#lightBoxContainer {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.88);
    display: flex;
    justify-content: center;
    align-items: center;

}

.box-item {
    width: 50%;
    height: 500px;
    margin: auto;
    background-image: url(../imgs/portfolio-1.jpg);
    background-size: cover;
    background-position: center;
}

.box-item i {
    cursor: pointer;
}

.box-item i.fa-times-circle {
    right: 10px;
    top: 10px;
}

@media (max-width: 575.98px) {
    .box-item {
        width: 95%;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {
    .box-item {
        width: 95%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .box-item {
        width: 70%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .box-item {
        width: 50%;
    }
}

@media (min-width: 1200px) {}