.content-feature {
    background-position: center center;
    background-repeat: no-repeat;
    height: 590px;
    overflow: hidden;
    position: relative;
    padding: 0 5vw;
}

.content-feature-wrapper {
    height: 100%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.content-feature-main-image {
    position: absolute;
    bottom: -5rem;
    left: 0;
}

.content-feature-main-image img {
    object-fit: contain;
    height: 590px;
    width: 100%;
}

.content-feature-title {
    position: absolute;
    font-size: 1.5rem;
    top: 4rem;
    left: 0;
    text-transform: uppercase;
    color: #000;
    border-bottom: solid 1px #000;
    padding-bottom: 0.5rem;
    padding-right: 3rem;
    line-height: 1;
}

.content-feature-content-container {
    position: absolute;
    top: 4rem;
    right: 0;
    width: 400px;
}

.content-feature-teaser {
    color: #000;
    padding-left: 1rem;
    border-left: solid 1px #000;
    margin-bottom: 3rem;
}

@media (min-width: 2000px) {
    
    .content-feature {
        height: 680px;
    }
    
    .content-feature-main-image img {
        height: 680px;
    }
    
}

@media (max-width: 1430px) {
   
    .content-feature {
        height: 445px;
    }
    
    .content-feature-main-image {
        left: -10rem;
    }
    
    .content-feature-main-image img {
        height: 445px;
    }

}

@media (max-width: 1150px) {
    
    .content-feature {
        height: 400px;
    }
    
    .content-feature-main-image {
        left: -20rem;
    }
    
    .content-feature-main-image img {
        height: 400px;
    }
    
}

@media (max-width: 1024px) {
    
    .content-feature {
        height: 100%;
        padding: 3rem 5vw;
    }

    .content-feature-title {
        position: relative;
        left: auto;
        top: auto;
        display: inline-block;
    }    
    
    .content-feature-main-image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        height: auto;
        bottom: auto;
    }
    
    .content-feature-main-image img {
        height: auto;
        width: 100%;
        object-fit: initial;
    }
    
    .content-feature-content-container {
        position: relative;
        text-align: center;
        top: auto;
        right: auto;
        width: 100%;
    }
    
    .content-feature-teaser {
        border-left: 0;
        padding-left: 0;
        padding-top: 1rem;
        border-top: solid 1px #000;
    }
    
}