.sidebanner {
    position: relative;
    /*height: 380px;*/
    background: url(../../images/sidebanner.jpg) no-repeat center;
    background-size: cover;
}

.sidebanner .path {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.sidebanner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.sidebanner .wp {
    position: relative;
    z-index: 2;
    height: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding-bottom: 40px;
    -webkit-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
}

.sidebanner h2 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
}

.sidebanner p {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    margin: 10px 0 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.sidebanner p i {
    font-size: 15px;
    color: #fff;
}

.sidebanner p a {
    color: #fff;
}

@media screen and (max-width:768px) {

    .sidebanner {
        height: auto;
        padding: 30px 0;
    }

    .sidebanner .wp {
        padding-bottom: 0;
    }

    .sidebanner h2 {
        font-size: 24px;
    }

    .sidebanner p {
        font-size: 13px;
        margin: 10px 0 0;
    }
}