@media only screen and (max-width: 800px) {

html {
    scroll-behavior: smooth;
}

body {
    background: #f2f3ed;
}

/* основной блок */
div.walkthrough {
width: 100%;
height: 660px;
margin-left: 0;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
background: linear-gradient(to right bottom, #5b67a4, #29376e);
border-radius: 0;
display: flex;
flex-direction: column;
flex: 0 0 auto;
font-size: 14px;
overflow: hidden;
transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

div.walkthrough .walkthrough-body li { /* столб */
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    margin-left: 0;
}

div.walkthrough .walkthrough-body .screens .screen { /*карточки бля*/
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-left: 0;
}

div.walkthrough .walkthrough-body ul { /*карточки бля*/
    display: flex;
    width: 100%;
    flex-direction: row;
    margin-left: 0;
}

div.walkthrough .walkthrough-body { /* основной блок важная хуйня */
    display: flex;
    flex-direction: column;

}

div.walkthrough .walkthrough-body .media { /*Кружочек под иконками*/
    margin-top: 20px;
    margin-right: 10px;
    display: flex;
    height: 80px;
    width: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;

}

div.walkthrough .walkthrough-body h3 { /*заголовки карточек*/
    margin-top: 7%;
    opacity: 0;
    width: 0;
    font-size: 15px;
    text-transform: uppercase;

}

div.walkthrough .walkthrough-body p { /*текст карточек*/
    width: 70%;
    margin-top: 5%;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

div.walkthrough .screens .media .icon { /*иконки*/
    position: absolute;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 5px;

}

div.walkthrough .screens .screen.active .media.cube .icon {
    opacity: 1;
    transform: translate(-15%,-25%) scale(0.4);
    transition-delay: 0.6s;
}

div.walkthrough .screens .screen.active .media.books .icon {
    opacity: 1;
    transform: translate(-15%,-20%) scale(0.65);
    transition-delay: 0.6s;
}

div.walkthrough .screens .screen.active .media.files .icon {
    opacity: 1;
    transform: translate(-15%,-20%) scale(0.65);
    transition-delay: 0.6s;
}

div.walkthrough .screens .screen.active .media.comm .icon:nth-child(2) {
    transition-delay: 0.8s;
    transform: translate(-20%,-33%) scale(0.65);
}

div.walkthrough .screens .screen.active .media.comm .icon:nth-child(1) {
    transition-delay: 0.5s;
    transform: translate(-10%,-30%) scale(0.65);
}

div.walkthrough .screens .screen.active .media.bars .icon:nth-of-type(1) {
    transform: translate(-16%,-20%) scale(0.65) ;
    transition-delay: 0.5s;
}

div.walkthrough .screens .screen.active .media.bars .icon:nth-of-type(2) {
    transform: translate(-10%,-21%) scale(0.65) ;
    transition-delay: 0.8s;
}

div.walkthrough .screens .screen.active .media.bars .icon:nth-of-type(3) {
    transform: translate(-10%,-16%) scale(0.65) ;
    transition-delay: 1.0s;
}

div.walkthrough .screens .screen.active .media.bars .icon:nth-of-type(4) {
    transform: translate(-10%,-11%) scale(0.65) ;
    transition-delay: 1.2s;
}

div.walkthrough .walkthrough-footer button {
    height: 40px;
    border: 0;
    background: rgba(96, 140, 250, 0.96);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    color: white;
    flex: 1;
    font-size: 12px;
    margin-top: 40px;
    outline: 0;
    padding: 12px;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.walkthrough { /* основной блок */
    width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.23), 0 10px 40px rgba(0, 0, 0, 0.19);
    background: linear-gradient(to right bottom, #5b67a4, #29376e);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    font-size: 14px;
    height: 100%;
    overflow: hidden;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.walkthrough.reveal { /* тоже основной блок*/
    width: 100%;
    transform: translateY(0);
}

.walkthrough .walkthrough-body { /* основной блок важная хуйня */
    display: flex;
}

.walkthrough .walkthrough-body li { /* столб */
    width: 100%;
    display: flex;
    flex-direction: column;
}

.walkthrough .walkthrough-body .screens .screen { /*карточки бля*/
    display: flex;
    width: 20vw;
    position: relative;
    margin: 0 1.5%;

}

.walkthrough .walkthrough-body ul { /*карточки бля*/
    display: flex;
    width: 19vw;
    margin-left: 1vw;
}


.walkthrough .walkthrough-body .media { /*Кружочек под иконками*/
    margin-top: 5%;
    display: flex;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 132px;
    height: 132px;
    width: 132px;

}

.walkthrough .walkthrough-body h3 { /*заголовки карточек*/
    margin-top: 5%;
    width: 40%;
    font-size: 22px;
    text-transform: uppercase;

}

.walkthrough .walkthrough-body p { /*текст карточек*/
    width: 70%;
    align-items: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.walkthrough .walkthrough-footer {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    padding: 0;

}

.walkthrough .walkthrough-footer button {
    height: 40px;
    border: 0;
    background: rgba(96, 140, 250, 0.96);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    color: white;
    flex: 1;
    font-size: 12px;
    margin: 0;
    outline: 0;
    padding: 12px;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.walkthrough .walkthrough-footer button:hover {
    background: #6babf3;
}

.walkthrough .walkthrough-footer button:active {
    background: #5da3f2;
}

.walkthrough .walkthrough-footer button:disabled {
    cursor: pointer;
}

.walkthrough .walkthrough-footer button.finish {
    background: #3e94f5;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0, 1);
    transform-origin: center;
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.walkthrough .walkthrough-footer button.finish:hover {
    background: #4d9cf6;
}

.walkthrough .walkthrough-footer button.finish:active {
    background: #3e94f5;
}

.walkthrough .walkthrough-footer button.finish.active {
    transform: scale(1, 1);
    opacity: 1;
}



.walkthrough .screens .media .icon { /*книжки*/
    position: absolute;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 132px;

}

.walkthrough .screens .media.bars .icon:nth-of-type(2) {
    transform: scale(0.25);
    transform-origin: 30% 54%;
}

.walkthrough .screens .media.bars .icon:nth-of-type(3) {
    transform: scale(0.25);
    transform-origin: 30% 40%;
}

.walkthrough .screens .media.bars .icon:nth-of-type(4) {
    transform: scale(0.25);
    transform-origin: 30% 26%;
}

.walkthrough .screens .media.comm .icon {
    position: absolute;
    transform: scale(0.25);
    transform-origin: 29% 73%;

}

.walkthrough .screens .media.comm .icon:nth-child(2) {
    position: absolute;
    transform-origin: 66% 85%;
}

.walkthrough .screens .screen {
    opacity: 0;
    position: absolute;
    transform: translateX(-72px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.walkthrough .screens .screen.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.4s;
}

.walkthrough .screens .screen.active ~ .screen {
    opacity: 0;
    transform: translateX(72px);
}

.walkthrough .screens .screen.active .media .status-badge {
    opacity: 1;
    transform: scale(1.75);
}

.walkthrough .screens .screen.active .media.cube .icon {
    opacity: 1;
    transform: translate(0px, -10px) scale(0.65);
    transition-delay: 0.6s;
}

.walkthrough .screens .screen.active .media.cube .status-badge {
    transition-delay: 1s;
}

.walkthrough .screens .screen.active .media.books .icon {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.walkthrough .screens .screen.active .media.books .icon:nth-child(2) {
    transition-delay: 0.8s;
}

.walkthrough .screens .screen.active .media.books .icon:nth-child(3) {
    transition-delay: 1.0s;
}

.walkthrough .screens .screen.active .media.books .status-badge {
    transition-delay: 1.2s;
}

.walkthrough .screens .screen.active .media.bars .icon {
    opacity: 1;
    transform: translate(0) scale(1);
    transition-delay: 0.5s;
}

.walkthrough .screens .screen.active .media.bars .icon:nth-child(2) {
    transition-delay: 0.8s;
}

.walkthrough .screens .screen.active .media.bars .icon:nth-child(3) {
    transition-delay: 1.0s;
}

.walkthrough .screens .screen.active .media.bars .icon:nth-child(4) {
    transition-delay: 1.2s;
}

.walkthrough .screens .screen.active .media.files .icon {
    position: absolute;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;

}

.walkthrough .screens .screen.active .media.files .icon:nth-child(3) {
    transition-delay: 0.8s;
}

.walkthrough .screens .screen.active .media.files .icon:nth-child(2) {
    transition-delay: 1.0s;
}

.walkthrough .screens .screen.active .media.files .icon:nth-child(1) {
    transition-delay: 1.2s;
}

.walkthrough .screens .screen.active .media.files .status-badge {
    transition-delay: 1.4s;
}

.walkthrough .screens .screen.active .media.comm .icon {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.6s;
}

.walkthrough .screens .screen.active .media.comm .icon:nth-child(2) {
    transition-delay: 0.8s;
}

.walkthrough .screens .screen.active .media.comm .status-badge {
    transition-delay: 1.6s;
}