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

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

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

/* Grid */
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
	margin-block: 40px;
}

.hero-grid__box {
	display: flex;
    gap: 20px;
    padding: 24px 16px;
    border: var(--border);
}

.hero-grid__box-content{
	font-size: 0.7rem;
	display: flex;
	flex-direction: column;
}

.hero-grid__box-content p:first-child{
	color: var(--color-headline);
    font-size: 1.3rem;
    line-height: 1.4rem;
    font-weight: 700;
    margin-block: 0;
	max-width: 180px;
}

.hero-grid__box-content a{
	position: relative;
	color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
	display: flex;
	justify-content: center;
	gap: 4px;
	font-weight: 600;
	font-size: 1rem;
	flex-grow: 1;
	align-items: flex-end;
}	

.hero-grid__box-content a:after{
	content: '';
	display: inline-block;
	-webkit-mask-image: url('../../icons/chevron-forward-outline.svg');
	mask-image: url('../../icons/chevron-forward-outline.svg');
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	background-color: currentColor;
	width: 16px;
	height: 16px;
	margin-top: 2px;
}

.hero-grid__box-img-wrapper{
	width: 65px;
	height: 65px;
    flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.hero-grid__box-img-wrapper img{
	width: 60px;
    height: 60px;
	transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 993px){
	.hero-grid__box-img-wrapper img:last-child{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translate(-50%, 200px);
		opacity: 0;
		visibility: hidden;
		filter: brightness(0.2);
	}
	.hero-grid__box:hover .hero-grid__box-img-wrapper img:first-child{
		transform: translateY(-100px);
	}
	.hero-grid__box:hover .hero-grid__box-img-wrapper img:last-of-type{
		transform: translateY(-65px);
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 992px){	
	.hero-grid{
		margin-bottom: 0;
	}
	.hero-grid__box{
		flex-direction: column;
        justify-content: center;
        align-items: center;
	}
	.hero-grid__box-content{
		text-align: center;
    	align-items: center;
	}
	.hero-grid__box img{
		height: 60px;
	}
	.hero-grid__box-img-wrapper img:last-child{
		display: none;
	}
}

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

.hero-slider .swiper-wrapper{
	padding-block: 60px;
}

.hero-slider .swiper-slide{
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 20px;
	padding-inline: 15px;
}

.swiper-slide__link{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide__img{
	width: 500px;
	height: 500px;
	margin-top: -50px;
    margin-bottom: -50px;
	flex-shrink: 0;
}

.swiper-slide__img img{
	border-radius: 50%;
	height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 16px solid #fff;
	box-shadow: var(--box-shadow);
}

.swiper-slide__background{
	height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.swiper-slide__background:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.8;
}

.hero-slider__content{
	font-weight: 600;
    color: #000;
	text-align: center;
}

.hero-slider__content strong{
	font-size: 3rem;
    max-width: 600px;
    display: flex;
    line-height: 3.8rem;
    margin-bottom: 50px;
    margin-top: -10px;
}

.hero-slider__content button{
	background-color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
	border: none;
}

.hero-slider__content button:hover{
	background-color: var(--color-secondary);
	color: #fff;
}


/* .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;
} */

/* NO JS */
.hero-slider.splide:not(.is-initialized) {
	visibility: visible;
}

.hero-slider:not(.is-initialized) .splide__slide:not(:first-child) {
	display: none;
}

@media screen and (max-width: 992px){
	.swiper-slide__img{
		width: 400px;
		height: 400px;
	}
	.hero-slider__content strong{
		font-size: 2rem;
		line-height: 2.4rem;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 768px){
	.hero-slider .swiper-wrapper{
		padding-block: 20px;
	}
	.swiper-slide__img{
		flex-basis: 40%;
		width: unset;
		height: unset;
	}
	.swiper-slide__img img{
		border-width: 8px;
	}
	.hero-slider__content{
		flex-basis: 58%;
    	padding-block: 30px;
	}
	.hero-slider__content h2,
	.hero-slider__content h1{
		font-size: 1.1rem;
	}
	.hero-slider__content strong{
		font-size: 1.4rem;
    	line-height: 2rem;
	}
}

@media screen and (max-width: 480px){
	.home .page-content{
		padding: 0;
	}
	.hero-slider .swiper-slide{
		flex-direction: column;
	}
}


/* Offer */
.offer-product-categories{
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
	font-weight: 700;
    color: var(--color-headline);
    font-size: 1.2rem;
}

.offer-product-category:first-child{
	grid-column: 1 / span 3;
}

.offer-product-category{
	display: flex;
	flex-direction: column;
}

.offer-product-category__img-link{
	display: flex;
    overflow: hidden;
	justify-content: center;
	height: 100%;
}

.offer-product-category__link{
	margin-top: 12px;
	display: flex;
	justify-content: center;
}

.offer-product-category img{
	transition: 0.5s ease;
	object-fit: cover;
	height: 200px;
	width: 100%;
}

.offer-product-category a:hover img{
	transform: scale(1.1);
}

@media screen and (max-width: 992px){
	.offer-product-category:first-child{
		grid-column: unset;
	}
	.offer-product-category img{
		height: 200px;
    	width: 100%;
	}
}

/* About Us */
.about-us__entry-text{
	margin-bottom: 32px;
	color: var(--color-headline);
}

.about-us__box{
	display: flex;
    align-items: flex-start;
    gap: 20px;
	margin-bottom: 20px;
}

.about-us__box img{
	flex-basis: 20%;
    max-width: 20%;
    height: auto;
}

.about-us__box-content p:first-child{
	margin-top: 0;
	color: var(--color-primary);
}

@media screen and (max-width: 768px){
	.about-us__box img{
		flex-basis: 35%;
    	max-width: 35%;
	}
}

@media screen and (max-width: 480px){
	.about-us__box{
		flex-direction: column;
	}
	.about-us__box img{
		flex-basis: 100%;
    	max-width: 100%;
	}
}

/* Services */
.services__boxes{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-block: 40px;
}

.services__box{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 12px 16px;
    border: var(--border);
}

.services__box img{
	width: 80px;
    height: 80px;
}

.services__box h3{
	font-size: 1.5rem;
	text-align: center;
    max-width: 240px;
    margin-bottom: 0;
}

.services__box a{
	color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media screen and (max-width: 992px){
	.mobile-scroll{
		display: flex;
        overflow-x: scroll;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
		padding-bottom: 30px;
		gap: 10px;
	}
	.mobile-scroll-child{
		width: 280px;
		max-width: 100%;
        margin: 0;
        flex-shrink: 0;
        overflow: unset;
        scroll-snap-align: center;
	}
}


