.our_works_page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    text-align: center;
}

.our_works_page > h1 {
    text-align: center;
    color: #FFFFFF;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    padding: 25px;
    background-color: #EC4100;
    font-size: 25px;
}

.container_our_works {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px;
    box-sizing: border-box;
}

.our_works_card {
    position: relative;
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    margin: 1px;
    cursor: pointer;
    transition: 0.5s;
}

.our_works_card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000005e;
    background-image: url(../icon/magnifying-glass.svg);
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 0;
    opacity: 0;
    transition: hover, 0.3s;
}

.our_works_card:hover:before {
    opacity: 1;
}

.modal_img_zoom {
    position: fixed;
    top: 5%;
    bottom: 5%;
    left: -50%;
    margin: auto;
    display: none;
    opacity: 1;
    z-index: 99999999;
    min-width: 225px;
    transform: translate(-50%, 0%);
    background-color: transparent;
    box-sizing: border-box;
    width: 90%;
    max-width: 900px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.modal_img_zoom_close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 99999999999999999;
    display: none;
}

.modal_img_zoom_close span {
    position: absolute;
    display: block;
    top: 16px;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    left: 1px;
    background-color: #1f1f1f;
    transition: all 0.3s;
}

.modal_img_zoom_close span:nth-child(1) {
    transform: rotate(135deg);
}

.modal_img_zoom_close span:nth-child(2) {
    transform: rotate(-135deg);
}

.modal_img_zoom_close:hover, .modal_img_zoom_back:hover, .modal_img_zoom_next:hover {
    opacity: 0.5;
    transition: 0.5s;
    color: rgba(0, 0, 0, 0.7);
}

/* buttons back next */
.modal_img_zoom_next {
    right: 15px;
}

.modal_img_zoom_back {
    left: 15px;
}

.modal_img_zoom_back, .modal_img_zoom_next {
    position: fixed;
    top: 50%;
    transform: translateY(-35px);
    width: 35px;
    height: 65px;
    cursor: pointer;
    z-index: 99999999999999999;
    background-color: #fff;
    display: none;
}

.modal_img_zoom_next span, .modal_img_zoom_back span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    left: 1px;
    background-color: #1f1f1f;
    transition: all 0.3s;
}

.modal_img_zoom_next span:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
}

.modal_img_zoom_next span:nth-child(2) {
    transform: rotate(-45deg);
    top: 45px;
}

.modal_img_zoom_back span:nth-child(1) {
    transform: rotate(-45deg);
    top: 20px;
}

.modal_img_zoom_back span:nth-child(2) {
    transform: rotate(45deg);
    top: 45px;
}

.modal_img_zoom_overlay {
    z-index: 1000050;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.89);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}
