/* @group Lightbox
------------------------------------ */
.fixed-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background-color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-3rem);
    transition: all .7s;
}
.active-lightbox {
    overflow: hidden;
}
.active-lightbox .fixed-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}
.lightbox-header {
    box-shadow: 0px 10px 74px rgba(0, 0, 0, 0.1);
}
.lightbox-header .row {
    position: relative;
}
.lightbox-header h2,
.lightbox-section h2 {
    color: var(--main-blue);
    font-weight: 600;
}
.lightbox-header__close-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.lightbox-header__close-container i {
    color: #000;
    font-size: 2rem;
}
.lightbox-header h2 {
    color: var(--main-blue);
    font-weight: 600;
}

.figures-container .video-container {
    width: 100%;
    height: 100%;
}
.figures-container .video-container .controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.figures-container .video-container .bttn-play,
.figures-container .video-container .bttn-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 5rem;
    height: 5rem;
    background-color: var(--main-tang);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.figures-container .video-container .bttn-close {
    top: 2rem;
    left: auto;
    right: 2rem;
    transform: none;
}
.figures-container .video-container .bttn-close i,
.figures-container .video-container .bttn-play i {
    pointer-events: none;
}
.figures-container .video-container[data-state="stop"] .bttn-close {
    opacity: 0;
    pointer-events: none;
}
.figures-container .video-container[data-state="play"] .bttn-play {
    opacity: 0;
    pointer-events: none;
}
.lightbox__figure .video-container {
    width: 100%;
    height: 100%;
}
.lightbox__figure .video-container .bttn-play,
.lightbox__figure .video-container .bttn-close {
    border-radius: 100%;
    background-color: var(--main-white);
    color: var(--main-blue);
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.lightbox__figure .video-container .bttn-play {
    font-size: 2rem;
    width: 6rem;
    height: 6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.lightbox__figure .video-container .bttn-close {
    font-size: 1.5rem;
    width: 4rem;
    height: 4rem;
    top: 2rem;
    right: 2rem;
    opacity: 0;
    pointer-events: none;
}
.lightbox__figure .video-container .bttn-play:hover {
    opacity: .9;
}
.lightbox__figure .video-container[data-state="play"] .bttn-play {
    opacity: 0;
    pointer-events: none;
}
.lightbox__figure .video-container[data-state="play"] .bttn-close {
    opacity: 1;
    pointer-events: all;
}
@media only screen
and (min-width : 961px) {
    .sections-container {
        padding-bottom: 6.3rem;
    }
    .lightbox-header .row {
        padding: 0 0.55rem; 
    }
    .lightbox-header__close-container {
        height: 16.7rem;
    }
    .lightbox-header__info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 7.965rem;
    }
    .lightbox-header h2,
    .lightbox-section h2 {
        font-size: 5em;
        line-height: 1.16em;
        letter-spacing: -0.02em;
        margin-bottom: 3rem;
    }
    .lightbox-section h2 {
        padding-top: 12.8rem;
    }
    .lightbox__figure {
        height: 87.2rem;
    }
    .figures-container figure {
        position: relative;
    }


    .figures-container > div {
        display: flex;
        align-items: flex-start;
        width: 100%;
        flex-wrap: wrap;
        position: relative;
        margin-bottom: 2rem;
    }
    .figures-container figure:nth-child(4n+1) {
        height: 82rem;
        flex: 0 1 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
        margin-right: 2rem;
    }
    .figures-container > div figure:nth-child(4n+2),
    .figures-container > div figure:nth-child(4n+3) {
        flex: 0 1 calc(25% - 1rem);
        max-width: calc(25% - 1rem);
        height: 40rem;
    }
    .figures-container > div figure:nth-child(4n+2) {
        margin-right: 2rem;
    }
    .figures-container > div figure:nth-child(4n+4) {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        height: 40rem;
    }
    .figures-container .justify-right figure:nth-child(4n+1) {
        left: 50%;
        flex: 0 1 50%;
        max-width: 50%;
    }
    .figures-container .justify-right figure:nth-child(4n+2),
    .figures-container .justify-right figure:nth-child(4n+3),
    .figures-container .justify-right figure:nth-child(4n+4) {
        position: absolute;
    }
    .figures-container .justify-right figure:nth-child(4n+2),
    .figures-container .justify-right figure:nth-child(4n+3) {
        top: 0;
        width: calc(25% - 2rem);
    }
    .figures-container .justify-right figure:nth-child(4n+2) {
        left: 0;
    }
    .figures-container .justify-right figure:nth-child(4n+3) {
        left: 25%;
    }
    .figures-container .justify-right figure:nth-child(4n+4) {
        width: calc(50% - 2rem);
        left: 0;
        right: auto;
        bottom: 0;
    }   


    .lightbox__figure .video-container .bttn-play {
        width: 10rem;
        height: 10rem;
        font-size: 3rem;
    }
    .lightbox__figure .video-container .bttn-close {
        width: 5rem;
        height: 5rem;
        font-size: 1.8rem;
        top: 3rem;
        right: 3rem;
    }

}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
     .sections-container {
        padding-bottom: 2rem;
    }
    .lightbox-header .row {
        padding: 0 2.1rem;
    }
    .lightbox-header__close-container {
        height: 7rem;
    }
    .lightbox__figure {
        order: -1;
        height: 36.5rem;
        padding: 0;
    }
    .lightbox-header__info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 3.8rem;
        padding-bottom: 5rem;
    }
    .lightbox-header h2,
    .lightbox-section h2 {
        font-size: 3.6em;
        line-height: 1.16em;
        margin-bottom: 3rem;
    }
    .lightbox-header h2 {
        margin-bottom: 4.4rem;
    }
    .lightbox-section h2 {
        padding-top: 3.8rem;
        margin-bottom: 2.6rem;
    }
    .sections-container img {
        border-radius: .4rem;
    }


    .figures-container {
        padding: 0 2rem;
    }
    .figures-container > div {
        display: flex;
        flex-wrap: wrap;
    }
    .figures-container > div figure:nth-child(4n+1) {
        flex: 0 1 100%;
        max-width: 100%;
        height: 42rem;
        margin-bottom: 2.8rem;
    }
    .figures-container > div figure:nth-child(4n+2),
    .figures-container > div figure:nth-child(4n+3) {
        flex: 0 1 calc(50% - .5rem);
        height: 20rem;
        margin-bottom: 2.8rem;
    }
    .figures-container > div figure:nth-child(4n+2) {
        margin-right: .5rem;
    }
    .figures-container > div figure:nth-child(4n+3) {
        margin-left: .5rem;
    }
    .figures-container > div figure:nth-child(4n+4) {
        flex: 0 100%;
        max-width: 100%;
        height: 18rem;
        margin-bottom: 2.8rem;
    }
}

/* @end */
