.home .page-content{
	padding-top: 10px;
}

.front-page-hero {
	gap: 10px;
}

/* HERO */
.hero {
	display: flex;
	gap: 10px;
	margin-block: 10px 40px;
	position: relative;
}

.hero-slider__wrapper,
.hero-grid {
	width: 50%;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.hero-grid {
	display: grid;
}

.hero-category {
	position: relative;
	border-radius: var(--border-radius);
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: var(--transition);
}

.hero-category:last-child {
	grid-column: 1 / span 2;
	max-height: 270px;
}

.hero-category:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border-radius);
	background-color: #0000004a;
}

.hero-category img {
	border-radius: var(--border-radius);
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: var(--transition);
}

.hero-category:hover img {
	transform: scale(1.05);
}

.hero-category p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-family: var(--font-family-headline);
	font-weight: 600;
	width: 100%;
	text-align: center;
	margin: 0;
	z-index: 1;
	padding-inline: 20px;
	font-size: 1.2rem;
}

/* Slider */
.hero-slider{
	height: 100%;
}

.hero-slider .swiper-slide{
	display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--border-radius);
}

.hero-slider__content {
	position: relative;
	width: 85%;
	min-height: 300px;
	color: #fff;
	font-size: 1.2rem;
	padding: 20px 45px 30px;
	background-color: #0000004f;
	border-radius: var(--border-radius);
	backdrop-filter: blur(3px);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-slider__content h2 {
	color: #fff;
}

.hero-slider__content p{
	margin-top: 0;
}

/* Why Us */
.why-us{
	border-block: var(--border);
	margin-bottom: 40px;
}

.why-us__entry-text{
	max-width: 900px;
    margin-inline: auto;
	margin-bottom: 60px;
	text-align: center;
}

.why-us__box-wrapper{
	display: flex;
    align-items: flex-start;
    gap: 60px;
}

.why-us__box{
	text-align: center;
}

.why-us__box img{
	width: 100px;
	height: 100px;
}

/* Content with images */
.content-image__entry-text{
	max-width: 900px;
    margin-inline: auto;
	margin-bottom: 60px;
	text-align: center;
}

.content-image__box-wrapper{
	display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-image__box{
    display: flex;
    align-items: center;
	gap: 60px;
}

.content-image__box:nth-child(2n){
	flex-direction: row-reverse;
}

.content-image__box img{
	max-width: 48%;
	height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}


/* Mobile */
@media screen and (max-width: 992px){
	.hero-slider__content{
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 768px){
	.hero{
		flex-direction: column;
	}
	.hero-slider__wrapper{
		width: 100%;
	}
	.hero-grid{
		display: none;
	}
	.why-us__box-wrapper,
	.content-image__box{
		flex-direction: column;
		gap: 16px;
	}
	.content-image__box:nth-child(2n){
		flex-direction: column;
	}
	.content-image__box img{
		max-width: 100%;
	}
	.why-us__box,
	.content-image__entry-text,
	.why-us__entry-text{
		text-align: left;
	}
}