/*banner_hands*/
.magic_hands img{
    width:100%;
}
.magic_hands {
    position: absolute;
    width: 350px;
    right: 120px;
    top: 173px;
    opacity: 0;
    animation-name: flyRight;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes flyRight{
    0%{
        transform: translateX(30px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}


/*1800px*/
@media(max-width:1800px){
    .main_website .magic_hands {
        display: none;
    }
    .main_website .banner_main {
        display: none;
    }
    .main_website .banner_main.rwd_show {
        display: block !important;
    }
}