
#preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #24323e;
	transition: background-color 1s ease; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
	overflow: hidden;
}

.no-back{
	/*background-color: unset!important;*/
	background-color: transparent!important; 
}
.lowindex{
	z-index: 100!important;;
}
.gate {
    position: absolute;
    width: 50%;
    height: 100%;
    background-size: cover;
	/*background-color: #100d30;*/
    background-repeat: no-repeat;
	background-position: center; 
    transition: transform 3s ease;
}



.left-gate {
    left: 0;
}

.right-gate {
    right: 0;
}

.block-gate-left{
	float: right;
	height: 100%;
}

.block-gate-right{
	float: left;
	height: 100%;
}
.block-gate-left img{
	height: 100%
}

.block-gate-right img{
	height: 100%
}


.open .left-gate {
    transform: translateX(-80%);
}

.open .right-gate {
    transform: translateX(80%);
}

.content {
    display: visible;
}

.content.visible {
    display: block;
}
