#page-banner-wrap {
    position: relative;
}

#page-banner-wrap .desktop {
    display: block;
}

#page-banner-wrap .mobile {
    display: none;
}

#page-banner-wrap > div > img {
    width: 100%;
}

#page-banner-wrap .name {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 20px;
}

#page-banner-wrap .name > div {
    position: relative;
    width: 1200px;
    height: 100%;
    margin: auto;
}

#page-banner-wrap .name > div:before {
    position: relative;
    display: inline-block;
    content: '';
    width: 0px;
    height: 100%;
    vertical-align: middle;
}

#page-banner-wrap .name > div > span {
    position: relative;
    display: inline-block;
    background: #fff;
    font-size: 38px;
    font-weight: 700;
    padding: 18px 25px 50px 25px;
    border-radius: 10px;
    letter-spacing: 1px;
    vertical-align: middle;
}

#page-banner-wrap .name > div > span:after {
    position: absolute;
    display: block;
    content: '';
    left: 25px;
    right: 25px;
    bottom: 30px;
    border-bottom: 4px solid #e45c8c;
}

#page-path {
    position: relative;
    background: #ececec;
    padding: 5px 20px;
}

#page-path > div {
    position: relative;
    max-width: 1200px;
    padding-right: 80px;
    margin: auto;
}

#page-path > div > a {
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    vertical-align: top;
}

#page-path > div > a:last-child {
    color: #e45c8c;
    cursor: default;
}

#page-path > div > span {
    display: inline-block;
    background-image: url(../img/svg/arrow-grey.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
    width: 40px;
    height: 30px;
    vertical-align: top;
}


#page-path > div > a.back {
    position: absolute;
    display: inline-block;
    width: auto;
    height: 30px;
    top: 0px;
    right: 0px;
    padding-left: 20px;
}

#page-path > div > a.back > img {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    margin-top: -4px;
    margin-right: 10px;
}

@media only screen and (max-width: 1900px) {
    #page-banner-wrap {
        width: 1900px;
        height: 300px;
    }
}

@media only screen and (max-width: 1016px) {
    #page-banner-wrap .name > div > span {
        font-size: 30px;
        padding: 15px 20px 40px 20px;
    }
    
    #page-banner-wrap .name > div > span:after {
        left: 20px;
        right: 20px;
        bottom: 25px;
    }
    
    #page-path > div {
        padding-right: 0px;
    }
    
    #page-path > div > a.back {
        display: none;
    }
}

@media only screen and (max-width: 756px) {
    #page-banner-wrap {
        width: 100%;
        height: auto;
    }
    
    #page-banner-wrap .desktop {
        display: none;
    }

    #page-banner-wrap .mobile {
        display: block;
    }
    
    #page-banner-wrap .name > div > span {
        background: transparent;
        padding: 10px 10px 20px 10px;
        vertical-align: bottom;
    }
    
    #page-banner-wrap .name > div > span:after  {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media only screen and (max-width: 516px) {
    #page-banner-wrap .name {
        padding: 5px 15px;
    }
    
    #page-banner-wrap .name > div > span {
        font-size: 20px;
        padding-left: 0px;
        padding-right: 0px;
    }
    
    #page-banner-wrap .name > div > span:after  {
        left: 0px;
        right: 0px;
        border-bottom: 2px solid #e45c8c;
    }
    
    #page-path {
        padding: 5px 15px;
    }
    
    #page-path > div > a {
        font-size: 15px;
    }
}