/*slogan*/
.banner_slogan span {
    color: #1b4c8a;
    font-size: 20px;
}

.banner_slogan h4 {
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin-bottom: 15px;
}
.banner_slogan {
    position: absolute;
    right: 108px;
    top: 300px;
    opacity: 0;
    animation-name: flyUp;
    animation-duration: 2s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}
span.title-line {
    opacity: 0.2;
}
.work.case_5 .case_catalogy {
    margin-top: 100px;
}
@keyframes flyUp{
0%{
    transform: translateY(30px);
    opacity: 0;
}
100%{
    transform: translateY(0);
    opacity: 1;
}
}

/*1900px*/
@media(max-width:1900px){
    .banner_slogan {
        right: 12%;
        top: 41%;
    }
}

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