/* hero-banner */
.hero-banner .col-txt {
    width: 45%;
}

.hero-banner .col-img {
    width: 55%;
    position: relative;
}

.hero-banner .col-img:after {
    content: "";
    display: block;
    background-color: #D85F6A;
    width: 15%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 0 101%);
    position: absolute;
    top: 0;
    left: 14px;
}

.hb-txt {
    padding: 20px 0;
}

.hero-title {
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    text-transform: uppercase;
}

.hb-img {
    width: 56vw;
    float: left;
}

.hb-img img {
    display: block;
}

.hb-img img.desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-banner .col-img:after {
        width: 22%;
    }

    .hb-img img.mobile {
        display: none;
    }

    .hb-img img.desktop {
        display: block;
    }
}

@media (min-width: 1024px) {
    .hero-banner .col-img:after {
        width: 125px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 1440px) {
    .hb-img {
        width: 52vw;
    }

    .hero-title {
        font-size: 54px;
    }
}