.cto-header-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    object-fit: cover;
}

.cto-main {
    margin-top: 0;
    margin-bottom: 1em;
}

.cto-title {
    color:#5e530e;
    text-transform: uppercase;
    font-weight: bolder;
}

.call_to_action {
    display:flex;
    flex-direction: column-reverse;
}

.call_to_action > .img-container {
    position: relative;
    height: 70vw;
    
}

.cto-img-1 {
    position: absolute;
    left: 0;
    width: 60%;
}

.cto-img-2 {
    position: absolute;
    top: 25vw;
    left: 50%;
    width: 40%;
}

.cto-action-container {
    margin-bottom: 1em;
}

.cto-action-btn {
    text-transform: uppercase;
}

@media only screen and (min-width: 800px) { 
    .call_to_action {
        flex-direction: row;

        }

    .call_to_action > .img-container {
        width: 50%;
        height: 500px;
    }

    .cto-img-2 {
        top: 30%;
    }

    .cto-action-btn {
        margin-left: 2em;
        margin-top: 3em;
    }
}