.two_cards{
    display:flex;
    justify-content: center;
    padding: 3rem 0;
    background: var(--white_tone);
}
.two_cards_card_image{
    background: var(--secondary_colour);
}
.two_cards_2{
    background: #fff;
}
.front-two_cards_card{
    justify-content: space-between;
    display: flex;
    overflow-wrap: break-word;
    overflow:hidden;
}
.front-two_cards_card h1,
.front-two_cards_card h2,
.front-two_cards_card h3,
.front-two_cards_card h4,
.front-two_cards_card h5,
.front-two_cards_card h6{
	background: -webkit-linear-gradient(var(--main_colour), var(--main_colour_darker));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.front-two_cards_card p,.front-two_cards_card li{
    font-size: 1.4rem;
}
.two_cards_1_content{
    padding: 2rem;
}
.two_cards_1,.two_cards_1_content{
    width:60%;
}
.two_cards_2,.two_cards_1_img_wrapper{
    width:40%;
}
.two_cards_1_img_wrapper{
    height:100%;
}
.two_cards_1_img_wrapper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media(orientation: portrait){
    .front-two_cards{
        margin-top: unset;
    }
    .front-two_cards_card,.two_cards_1,.two_cards_1_content,.two_cards_1_img_wrapper,.two_cards_2{
        width:unset;
    }
    .two_cards_card_image{
        flex-direction:column;
    }
}