.examples-slider *{
    max-height: 100%!important;
}

.preloader__wrapper{
    background: rgba(200, 199, 200, 1);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    height: 100vh;
    animation: preloaderHide 4s linear;
    animation-fill-mode: forwards;
    pointer-events: none;
    user-select: none;
    z-index: 213123123123123;
}
@keyframes preloaderHide{
    0%{
        background: rgba(200, 199, 200, 1);
        opacity: 1;
    }
    50%{
        background: rgba(200, 199, 200, 1);
        opacity: 1;
    }
    100%{
        background: rgba(200, 199, 200, .1);
        opacity: 0;
    }
}
.preloader img{
    mix-blend-mode: multiply;
}
.preloader__inner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
.logo-title-wrapper{
    overflow: hidden;
}
.logo-img{
    width: 70px;
}
.logo-title{
    font-size: 52px;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    margin-bottom: 0;
    color: #221F20;
    overflow: hidden;
    transition: .3s linear;
    transform: translateY(100%);
    display: flex;
    position: relative;
    overflow: hidden;
    animation: titleMove 1s linear;
    animation-fill-mode: forwards;
}

.logo-title span{
    font-size: 14px;
    top: 0;
    color: #221F20;
    right: -12px;
    height: 58px;
    display: flex;
    align-items: flex-start;
    margin-left: 5px;
}

.preloader-logo__wrapper{
    width: 305px;
    position: relative;
    z-index: 123123123;
    animation: logoMove .5s linear;
    animation-fill-mode: forwards;
}
@keyframes logoMove {
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-10%);
        margin-right: 30px;
    }
}
@keyframes titleMove{
    0%{
        transform: translateY(100%);
    }
    50%{
        transform: translateY(100%);
    }
    100%{
        transform: translateX(0%);
    }
}

@media(max-width: 700px){
    .preloader__inner{
        flex-direction: column;
    }
    @keyframes logoMove {
        0%{
            transform: translateX(100%);
        }
        100%{
            transform: translateX(0%);
            margin-right: 30px;
        }
    }
    @keyframes titleMove{
        0%{
            transform: translateY(100%);
        }
        50%{
            transform: translateY(100%);
        }
        100%{
            transform: translateX(0%);
        }
    }
    .preloader-logo__wrapper{
        margin-right: 0!important;
    }
}