.services_cards {
    padding: 5rem 0;
}
.services_bg {
    background-size: cover;
        background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(41, 35, 42, 1);
    background-position-y: top;
}
.button_services_cards_cta {
    background: #121114;
    border: solid 1px #fff;
    border-radius: 1.5rem;
    padding: 0rem 2rem;
    margin: 1.5rem;
    color: #fff;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.button_services_cards_cta p {
    font-size: 2rem;
    margin: 1rem 0;
}
.commercial_cards{
    border-top: 2px solid var(--main_colour);
}
.services_cards_content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.services_cards_search h1, .services_cards_search h2, .services_cards_search h3, .services_cards_search h4, .services_cards_search h5, .services_cards_search h6 {
    color: var(--white_tone);
    font-size: 4rem;
}
.services_cards_content p{
     margin: 0;
}
@media(orientation: portrait) {
    .services_cards_search h1, .services_cards_search h2, .services_cards_search h3, .services_cards_search h4, .services_cards_search h5, .services_cards_search h6 {
        color: var(--white_tone);
        font-size: 2rem;
    }
	.services_cards{
		padding: 0;
	}
    .button_services_cards_cta {
        flex-direction: column;
		line-height: 1;
    }
    .services_cards_content{
        grid-template-columns: 1fr;
    }
}