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);
}

.opening-hours, .contact-us {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: var(--spacing-4);
	background-color: var(--colour-primary-dark);
	color: white;
	font-weight: 400;
	align-content: space-around;
	justify-items: center;
	align-items: center;
	gap: 0.5rem;
}

.opening-hours > h3, .contact-us > h3 {
	grid-column: 1 / -1;
	font-weight: 600;
}

.contact-us > ul {
	grid-column: 1 / -1;
}