.features {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    box-sizing: border-box;
}

.feature_content,
.feature_image {
    width: calc((100% - 64px) / 2);
}

.feature_image {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--black);
}

.feature_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 10px;
}

.feature_image .button {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.feature_content h2 {
    line-height: 1.2;
    margin: 0;
	font-size: 90px;
}

.feature_content .subheading {
    text-transform: uppercase;
    color: var(--white);
	background-color: var(--brown);
	padding: 8px 16px;
	border-radius: 5px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
	width: max-content;
}

.features_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.feature {
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    margin-top: 40px;
}

.feature .square_icon {
    width: 46px;
    height: 46px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    background-color: var(--beaver);
    color: var(--black);
}

.feature h3 {
    text-transform: uppercase;
    margin: 20px 0 10px;
}

.feature p {
    margin: 0;
}

@media (max-width: 1250px) {
    .feature_content,
    .feature_image {
        width: calc((100% - 40px) / 2);
    }
}

@media (max-width: 1150px) {
    .features {
        flex-direction: column;
    }

    .feature_content,
    .feature_image {
        width: 100%;
    }

    .feature_image {
        margin-top: 80px;
    }

    .feature_content .subheading {
        margin: 0 auto 25px;
    }

    .feature_content h2,
    .feature h3,
    .feature p {
        text-align: center !important;
    }

    .features h2 {
        margin-bottom: 20px;
    }

    .feature h3 {
        margin: 20px auto 10px;
    }

    .feature .square_icon {
        margin: 0 auto;
    }
}

@media (max-width: 910px) {
    .features h2 {
        font-size: 60px;
    }
}

@media (max-width: 650px) {
    .features h2 {
        font-size: 48px;
        width: 100%;
        margin: 0 auto 20px;
    }

    .feature {
        width: 100%;
    }

    .feature:nth-of-type(2),
    .feature:nth-of-type(3),
    .feature:nth-of-type(4) {
        margin-top: 60px;
    }

    .feature h3 {
        font-size: 24px;
    }

    .feature p {
        width: 80%;
        margin: 0 auto;
    }

    .feature_image {
        height: 550px;
    }
}

@media (max-width: 500px) {
    .feature p {
        width: 100%;
    }

    .feature_image .button {
        left: 20px;
        margin-left: 0;
        width: calc(100% - 40px);
    }
}