section {
	padding: var(--spacing-3) var(--spacing-4);
}

section + section {
	padding-top: 0;
}

.section {
	display: flex;
	justify-content: space-between;
	gap: var(--spacing-4);
}

.section > * {
	width: 50%;
}

@media only screen and (max-width: 991px) {
	.section {
        flex-direction: column;
    }

    .col-reverse {
		flex-direction: column-reverse;
	}
    
    .section > img, .section > div {
        width: 100%;
    }
}

.section-slider {
	width: 50%;
	margin: auto;
}

.section-slider .slick-slider {
	background: transparent;
}

.section-slider img {
	margin: auto;
	max-height: 50vw;
	max-width: 75%;
}

.flex-column {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-2);
}