.image-banner {
    position: relative;
    margin-bottom: 80px;
}

.image-banner .img-cont {
    width: 100%;
    height: 100vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.image-banner .content {
    display: flex;
    justify-content: flex-end;
}

.image-banner.right-text .content {
    justify-content: flex-start;
}

.image-banner .content .inner {
    position: relative;
    width: calc(100% - 15px);
    max-width: 580px;
    margin-left: 15px;
    margin-top: -30px;
    padding: 32px 15px 42px;
    background-color: #607325;
}

.image-banner.right-text .content .inner {
    margin-left: 0;
    margin-right: 15px;
}

.image-banner .content .inner::after {
    position: absolute;
    content: "";
    opacity: 0.40;
    bottom: -40px;
    right: 0;
    width: 160px;
    height: 70px;
    background-image: url('../png/funky-lines-white.png');
    pointer-events: none;
}

.image-banner.right-text .content .inner::after {
    right: auto;
    left: 0;
}

.image-banner .content .title {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 15px;
}

.image-banner .content .title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 4px;
    width: 80px;
    background-color: #faa63d;
}

.image-banner .content .title,
.image-banner .content .title a {
    font-family: "futura-pt", sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 34px;
    color: #fff;
    border-bottom: none;
    text-decoration: none;
}

.image-banner .content p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
}

.image-banner .content .link a {
    font-size: 16px;
    color: #faa63d;
    border-bottom: none;
    text-decoration: none;
}

.image-banner .content .link .icon {
    margin-left: 10px;
}

@media only screen and (min-width: 769px) {
    .image-banner .img-cont {
        width: 100%;
        height: 45vw;
        max-height: 700px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
}

@media only screen and (min-width: 1025px) {
    /* .image-banner .img-cont {
        background-attachment: fixed;
    } */

    .image-banner .content {
        position: absolute;
        width: 41%;
        max-width: 730px;
        top: 50%;
        left: 100px;
        transform: translateY(-50%);
        display: block;
    }

    .image-banner.right-text .content {
        right: 100px;
        left: auto;
    }

    .image-banner .content .inner {
        width: 100%;
        max-width: none;
        margin: 0;
    }
}

@media only screen and (min-width: 1300px) {
    .image-banner .content {
        width: 42%;
    }

    .image-banner .content .inner {
        padding: 100px 40px;
    }

    .image-banner .content .inner::after {
        position: absolute;
        content: "";
        opacity: 0.40;
        bottom: -65px;
        right: -60px;
        width: 260px;
        height: 112px;
    }

    .image-banner.right-text .content .inner::after {
        left: -60px;
        right: auto;
    }

    .image-banner .content .title {
        padding-bottom: 40px;
        margin-bottom: 30px;
    }

    .image-banner .content .title,
    .image-banner .content .title a {
        font-size: 40px;
        line-height: 48px;
    }

    .image-banner .content p {
        font-size: 18px;
        line-height: 26px;
    }

    .image-banner .content .link a {
        font-size: 18px;
    }
}