/* Modern lightbox for the project "See the impact" images */
.ie-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(8, 14, 26, 0.93);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
}
.ie-lightbox.ie-lightbox-open {
    display: flex;
    animation: ie-lightbox-fade .2s ease;
}
.ie-lightbox-lock {
    overflow: hidden;
}
.ie-lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ie-lightbox-figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
}
.ie-lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 110px);
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
    animation: ie-lightbox-zoom .25s ease;
    -webkit-user-select: none;
    user-select: none;
}
.ie-lightbox-caption {
    color: #e6e9f0;
    font-size: 15px;
    line-height: 1.45;
    padding: 16px 8px 0;
    text-align: center;
    max-width: 720px;
}
.ie-lightbox-counter {
    position: absolute;
    top: 24px;
    left: 22px;
    color: #c3cad6;
    font-size: 13px;
    letter-spacing: .08em;
}
.ie-lightbox-close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background .2s, transform .2s;
}
.ie-lightbox-close:hover {
    background: rgba(255, 255, 255, .24);
    transform: rotate(90deg);
}
.ie-lightbox-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: background .2s;
}
.ie-lightbox-nav:hover {
    background: rgba(255, 255, 255, .24);
}
.ie-lightbox-prev {
    left: 14px;
}
.ie-lightbox-next {
    right: 14px;
}

@keyframes ie-lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes ie-lightbox-zoom {
    from { opacity: 0; transform: scale(.95); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 640px) {
    .ie-lightbox-figure {
        max-width: calc(100vw - 16px);
        max-height: calc(100vh - 16px);
    }
    .ie-lightbox-img {
        max-height: calc(100vh - 96px);
        border-radius: 8px;
    }
    .ie-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .ie-lightbox-prev { left: 8px; }
    .ie-lightbox-next { right: 8px; }
    .ie-lightbox-close {
        top: 8px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }
    .ie-lightbox-counter {
        top: 14px;
        left: 12px;
    }
    .ie-lightbox-caption {
        font-size: 13px;
        padding-top: 12px;
    }
}
