.bonmont-two-images-header {
    display: flex;
    column-gap: 30px;
}

.bonmont-two-images-header-2 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.bonmont-two-images-header-1 h2 {
    margin-top:20px;
}

.bonmont-two-images-header-image {
    position: relative;
    overflow: hidden;
}

.bonmont-two-images-header-image:after {
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom: 0;
    background: #00000087;
    z-index:2;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.bonmont-two-images-header-1 {
    width: 34%;
}

.bonmont-two-images-header-2 {
    width: 66%;
}

.bonmont-two-images-header-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 3;
    color: #FFFFFF;
    transform: translateY(100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
}

.bonmont-two-images-header-image > img {
    width: 100%;
    height: 585px;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.bonmont-two-images-header-image:hover > img {
    transform: scale(1.1);
}

.bonmont-two-images-header-image:hover .bonmont-two-images-header-image-content {
    transform: translateY(0);
    opacity:1;
}

.bonmont-two-images-header-image:hover:after {
    opacity:1;
}

a.bonmont-two-images-header-image-button {
    background: #C2B162;
    padding: 14px 30px;
    border-radius: 20px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.bonmont-two-images-header-image-text {
    max-width: 60%;
}

@media screen and (max-width:800px)
{

    .bonmont-two-images-header {
        flex-wrap:wrap;
    }

    .bonmont-two-images-header-1 {
        width: 100%;
        display:flex;
        flex-wrap:wrap;
        flex-direction:column-reverse;
        margin-bottom:45px;
    }

    .bonmont-two-images-header-image > img {
        width:100%;
        height:auto;
        object-fit: cover;
        max-height: 600px;
        object-position: 50% 100%;
    }

    .bonmont-two-images-header-2 {
        width: 100%;
    }
}