.crumbs {
    width: 100%;
    background: #045ead;
    margin: 80px 0 0;
}

.crumbs_link {
    width: 90%;
    min-width: 900px;
    max-width: 1680px;
    margin: 0 auto;
}

.crumbs_link ul {
    padding: 24px 0;
}

.crumbs_link ul li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.crumbs_link ul li+li::before {
    content: '>';
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    color: #fff;
    margin: 0 16px;
}

.crumbs_link ul li a {
    font-size: 15px;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 2px;
    color: #fff;
}

.title_wrap {
    width: 100%;
    padding-bottom: 28.1%;
    position: relative;
}

.title_wrap .title {
    position: absolute;
    bottom: 0;
    z-index: 5;
    animation: begin 1s .5s both;
}

@keyframes begin {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    100% {
        transform: translateX(24px);
        opacity: 1;
    }
}

.title_wrap .title::before {
    content: '';
    width: 1.5px;
    height: 100%;
    position: absolute;
    left: -16px;
    bottom: 0;
    background: #fff;
}

.title_wrap .title::after {
    content: '';
    width: 1.5px;
    height: 100px;
    display: block;
    background: #fff;
    margin: 16px 0 0;
}

.title_wrap .title h1 {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 8px;
    color: #fff;
    text-shadow: 1px 1px 0 #222;
}

.title_wrap .title h4 {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 1px 1px 0 #222;
}

.title_wrap .title_svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.title_wrap .title_svg svg {
    width: 100%;
    height: 100%;
}

.title_wrap .title_photo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.title_wrap .title_photo::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #045ead;
    opacity: .3;
    z-index: 5;
}

.title_wrap .title_photo.deep::before {
    opacity: .5;
}

.title_wrap .title_photo img {
    width: 100%;
    animation: fadein 1s .5s both;
}

@keyframes fadein {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (min-width: 1024px) {
    .title_wrap .title.left {
        left: 20%;
    }
    .title_wrap .title.right {
        right: 20%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .crumbs_link ul {
        padding: 16px 0;
    }
}

@media screen and (max-width: 1023px) {
    .crumbs {
        margin: 60px 0 0;
    }
    .crumbs_link {
        min-width: 300px;
        max-width: 1000px;
    }
    .crumbs_link ul {
        padding: 16px 0;
    }
    .title_wrap {
        padding-bottom: 100%;
    }
    .title_wrap .title_photo img {
        width: auto;
        height: 100%;
    }
    .title_wrap .title {
        width: auto;
        left: 5%;
    }
    .title_wrap .title::before {
        left: 16px;
        height: 80px;
    }
    .title_wrap .title h1 {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 5px;
    }
    @media screen and (min-width: 768px) {
        .title_wrap .title {
            left: 60%;
        }
    }
    @media screen and (max-width: 380px) {
        .crumbs_link ul li+li::before {
            margin: 0 8px;
        }
        .crumbs_link ul li a {
            font-size: 13.5px;
            letter-spacing: 1px;
        }
        .title_wrap .title h1 {
            font-size: 25.5px;
            line-height: 40px;
            letter-spacing: 3.5px;
        }
        .title_wrap .title h4 {
            font-size: 15px;
            line-height: 24px;
            letter-spacing: 1px;
        }
    }
}