.home #page-content{
	margin: 0;
}

/* .hero-slider__image-container{
	width: 500px;
    height: 500px;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    overflow: clip;
    overflow-clip-margin: 10rem;
    padding-bottom: 20px;
} */

/* HERO */
.hero {
	display: flex;
	gap: 10px;
	position: relative;
	background-color: #F8F8F9;
	margin-top: -80px;
    padding-block: 120px 140px;
	border-radius: 0 0 100px 100px;
    box-shadow: var(--box-shadow);
}

.hero h1{
	font-size: clamp(45px, 3vw, 60px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
	line-height: 3.2rem;
    margin: 0;
}

.hero h2{
	font-size: clamp(34px, 3vw, 54px);
    line-height: 3.2rem;
    margin-block: 8px 40px;
	font-weight: 600;
}

.hero a:not(.button){
	text-transform: uppercase;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: 0.08rem;
}

.hero p:last-child{
	margin-top: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 50px;
    row-gap: 24px;
}

.hero-grid {
	display: grid;
}

.hero-grid .wp-block-columns:last-child {
	margin-bottom: 0;
}

.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%;
	overflow: visible;
}

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

.hero-slider__image{
	position: relative;
}

.hero-slider__image-container{
	width: 500px;
    height: 500px;
	position: relative;
	border-radius: 0 0 100vw 100vw;
    display: flex;
    align-items: flex-end;
    overflow-y: clip;
    overflow-x: visible;
	overflow: hidden;
    justify-content: flex-start;
}

.hero-slider__circle-background{
	position: absolute;
    background-color: var(--color-primary);
    width: 95%;
    height: 95%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
	box-shadow: 0 -5px 15px 4px rgb(0 0 0 / 13%);
}

.hero-slider__image-container img{
	transform: scale(1.3);
	position: relative;
    z-index: 2;
    margin-left: 30px;
	margin-bottom: 20px;
}

.hero-bubbles{
	width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
	z-index: 3;
}

.hero-bubbles img{
	position: absolute;
    box-shadow: 0 5px 3px 0px rgb(0 0 0 / 13%);
    border-radius: 50%;
    transition: 0.5s linear;
	animation: float 6s ease-in-out infinite;
}

.hero-bubbles img:nth-of-type(1){
	top: unset;
	bottom: 90px;
    left: -15px;
    width: 30px;
	animation-delay: 0.3s;
}

.hero-bubbles img:nth-of-type(2){
	left: unset;
    right: 0;
	top: 20px;
	animation-delay: 0.5s;
}

.hero-bubbles img:nth-of-type(3){
	left: unset;
    right: 75px;
    top: -10px;
    width: 24px;
}

.hero-bubbles img:nth-of-type(4){
	top: unset;
	bottom: 30px;
  	right: 25px;
    left: unset;
    width: 42px;
	animation-delay: 0.7s;
}

.hero-bubbles img:nth-of-type(5){
	bottom: 10px;
    width: 20px;
    left: 50px;
    top: unset;
	animation-delay: 0.3s;
}

.hero-bubbles img:nth-of-type(6){
	top: unset;
    bottom: 20px;
    left: -60px;
	animation-delay: 0.7s;
}

@keyframes float{
	0%{
		box-shadow: 0 5px 5px 0px rgba(0,0,0,0.14);
		transform: translatey(0px);
	}
	50%{
		box-shadow: 0 15px 15px 0px rgba(0,0,0,0.1);
		transform: translatey(-20px);
	}
	100%{
		box-shadow: 0 5px 5px 0px rgba(0,0,0,0.14);
		transform: translatey(0px);
	}
}

@media screen and (min-width: 769px){
	.hero-slider__content {
		max-width: 50%;
	}
	.hero-slider__image{
		max-width: 47%;
	}
	.hero p:last-child{
		white-space: nowrap;
		z-index: 3;
		position: relative;
	}
}

@media screen and (max-width: 768px){
	.hero-slider__image.dotted-arrow:after{
		display: none;
	}
	.hero-slider__image-container{
		width: auto;
		height: auto;
		padding-top: 70px;
	}
	.hero-bubbles img:nth-of-type(4){
		bottom: 45px;
		right: 70px;
	}
	.hero{
		overflow-x: clip;
	}
}

@media screen and (max-width: 768px) and (min-width: 480px){
	.hero-slider .swiper-slide{
		flex-direction: column-reverse;
		justify-content: center;
    	text-align: center;
	}
	.hero-slider__content{
		color: #fff;
		position: absolute;
		z-index: 3;
	}
	.hero-slider img{
		filter: brightness(0.5);
	}
	.hero p:last-child{
		padding-inline: 50px;
		justify-content: center;
	}
}

@media screen and (max-width: 480px){
	.hero h2{
		margin-bottom: 24px;
		margin-top: 0;
	}
	.hero-slider .swiper-slide{
		flex-direction: column-reverse;
   		gap: 40px;
	}
	.hero-slider__image:before{
		width: 100%;
		left: 50%;
	}
	.hero p:last-child{
		justify-content: space-between;
		column-gap: 10px;	
		row-gap: 10px;
    	font-size: 0.8rem;
		margin-top: 32px;
	}
	.hero p:last-child a.button{
		padding: 8px 10px;
	}
	.hero-slider__image-container{
		padding-top: 50px;
	}
	.hero-slider__image-container img{
		margin-left: 20px;
	}
	.hero-bubbles img:nth-of-type(4){
		right: 0;
	}
}

/* Tabs */
.tabs input {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}

/* Accordion styles */
.tabs {
	overflow: hidden;
}

.tab {
	width: 100%;
	overflow: hidden;
	border: 1px solid #d4d4d4;
	border-bottom: none;
}

.tab:last-of-type {
	border-bottom: 1px solid #d4d4d4;
}

.tab-label {
	display: -webkit-box;
	display: flex;
	align-items: center;
	text-align: left;
	padding: 15px 20px;
	background: #FFF;
	color: color(1);
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
}

.tab-label * {
	font-size: inherit;
	font-weight: inherit;
}

/*  Icon */
.tab-label::before {
	content: "";
	background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'%3E%3C/path%3E%3C/svg%3E");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 15px;
	height: 20px;
	flex: 0 0 15px;
	align-self: flex-start;
	margin-top: 3px;
	margin-right: 10px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.tab-content {
	display: none;
	padding: 0 20px;
	overflow: hidden;
	font-size: 16px;
	line-height: 2em;
	text-align: left;
	background: #FFF;
	border-top: 1px solid #d4d4d4;
	-webkit-transition: padding .3s;
	transition: padding .3s;
}

.tab.open .tab-label::before {
	background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='currentColor' d='M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z'%3E%3C/path%3E%3C/svg%3E");
}

.tab.open .tab-content {
	padding: 0 20px;
}


/* Icons Section */
section.icons{
	margin-top: -80px;
    max-width: 1100px;
    margin-inline: auto;
    background-color: var(--color-navy);
    color: #fff;
    border-radius: 16px;
	display: flex;
    flex-direction: column;
    align-items: center;
	padding-block: 20px;
}

section.icons > p{
	font-weight: 600;
    font-size: 1.6rem;
	margin-top: 0;
}

.icon-box-wrapper{
	display: flex;
	justify-content: space-around;
	flex-direction: row;
    width: 100%;
	gap: 32px;
    padding-inline: 16px;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
	padding-bottom: 32px;
}

.icon-box:not(:last-child):after{
	content: '';
	width: 18px;
    height: 18px;
	-webkit-mask-image: url('../../icons/arrow-yellow.svg');
	mask-image: url('../../icons/arrow-yellow.svg');
	background-color: var(--color-yellow);
	-webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    position: absolute;
	bottom: 0;
    top: 50%;
	transform: translateY(-50%);
	right: -35px;
	left: unset;
	bottom: unset;
}

.icon-box__text span{
	font-size: 1.2rem;
	font-weight: 500;
}

.icon-box__img{
	height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
	width: 45px;
    height: auto;
    max-width: 100%;
    filter: invert(1);
}

@media screen and (min-width: 768px){
	.icon-box{
		width: 28%;
		padding-bottom: 0;
	}
	section.creator{
		padding-block: 100px 180px;
	}
}

/* Creator */
section.creator{
	text-align: center;
	position: relative;
}

.creator-text{
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin-inline: auto;
}

.creator-title{
	font-size: clamp(38px, 3vw, 60px);
    font-weight: 800;
    color: var(--color-navy);
    line-height: clamp(2.8rem, 3vw, 5rem);
	margin-bottom: 70px;
}

.creator-button{
    background-color: var(--color-orange);
    padding: 12px 32px;
    border-radius: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
	margin-top: 32px;
    display: inline-flex;
}

.creator-button:hover{
	color: #fff;
}

/* Portfolio */
.gallery{
	padding: 0;
    list-style: none;
    display: flex;
	align-items: center;
}

.portfolio-gallery li{
	display: flex;
    align-items: center;
}

.portfolio-gallery img{
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	height: 300px;
	object-fit: cover;
}

.gallery:not(.swiper-initialized .gallery){
	display: flex;
	gap: 20px;
	flex-direction: row;
	overflow-x: scroll;
	flex-wrap: nowrap;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	overscroll-behavior-x: contain;
}
.gallery:not(.swiper-initialized .gallery) .portfolio-gallery-image{
	width: 400px;
	max-width: 100%;
	margin: 0;
	flex-shrink: 0;
	overflow: unset;
	scroll-snap-align: center;
}

@media screen and (max-width: 768px){
	.portfolio-gallery li{
		height: auto;
	}
}


/* Blog */
section.blog{
	text-align: center;
}

/* Contact */
section.contact{
	position: relative;
	content-visibility: visible;
}

.newsletter .container,
.contact-wrapper{
	display: flex;
	flex-direction: column;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

section.contact img{
	object-fit: cover;
    z-index: 1;
    position: relative;
    width: 600px;
    transform: scale(1.8);
	max-width: 100%;
	margin-bottom: -100px;
}

@media screen and (min-width: 769px){
	.contact-text{
		width: 45%;
		padding-top: 100px;
	}
	.newsletter .container,
	.contact-wrapper{
		flex-direction: row;
	}
	.contact-wrapper{
		align-items: flex-start;
	}
	section.contact .contact-form{
		padding: 40px 50px;
		width: 50%;
	}
	section.contact img{
		margin-bottom: -260px;
		margin-top: 20px;
	}
}

/* Testimonials */
section.testimonials{
	border-radius: 100px 100px 0 0;
	overflow: hidden;
}

section.testimonials .container{
	z-index: 1;
	position: relative;
}

.testimonials-wrapper{
	display: grid;
    grid-template-columns: repeat(auto-fill,minmax(305px,1fr));
    gap: 20px;
}

.testimonial{
	background-color: #fff;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    padding: 50px 40px;
    text-align: center;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial p{
	margin: 0;
}

.testimonial-text{
	margin-bottom: 32px;
}

.testimonial-author{
	font-weight: 600;
}

.testimonial-company{
	font-size: 0.8rem;
    color: #6D7783;
}

@media screen and (max-width: 480px){
	section.testimonials{
		border-radius: 30px 30px 0 0;
		padding-top: 30px;
	}
}

/* Clients */
section.clients{
	padding-top: 40px;
}

.clients-gallery.gallery{
    padding-bottom: 20px;
    margin-bottom: 0;
}

.clients-gallery-image{
	width: 190px;
    max-width: 100%;
    margin: 0;
    flex-shrink: 0;
    overflow: unset;
    scroll-snap-align: center;
}

/* Newsletter */
.newsletter.background-gray{
	margin-bottom: 0;
}

.newsletter img{
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.newsletter-title{
	color: var(--color-navy);
	font-size: 1.4rem;
    font-weight: 600;
}

.newsletter form{
	display: flex;
	flex-direction: column;
}

.newsletter-form-wrapper{
	display: flex;
	background-color: #fff;
    border-radius: 20px;
	position: relative;
	margin-bottom: 20px;
}

.newsletter-form-wrapper .wpcf7-spinner{
	position: absolute;
    right: 10px;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.newsletter-form-wrapper label{
	width: 100%;
    padding-inline: 24px 40px;
}

.newsletter input[type="email"]{
	border: unset;
    margin-bottom: 0;
    padding-block: 24px;
}

.newsletter form input[type="submit"]{
	margin-top: 0;
    background-color: var(--color-yellow);
}

.newsletter form input[type="submit"]:hover{
	background-color: var(--color-orange);
}

@media screen and (min-width: 769px){
	.newsletter img{
		max-width: 45%;
	}
	.newsletter-content{
		width: 50%;
	}
	.newsletter form input[type="submit"]{
		height: auto;
	}
}

@media screen and (max-width: 768px){
	section.icons{
		padding-bottom: 20px;
	}
	section.icons>p{
		margin: 0;
	}
	.icon-box-wrapper{
		overflow-x: scroll;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
		justify-content: flex-start;
	}
	.icon-box{
		width: 275px;
        max-width: 100%;
        margin: 0;
        flex-shrink: 0;
        overflow: unset;
        scroll-snap-align: center;
	}
	.newsletter-form-wrapper{
		flex-direction: column;
		align-items: flex-start;
		background-color: transparent;
		gap: 24px;
	}
	.newsletter-form-wrapper label{
		background-color: #fff;
    	border-radius: 30px;
		padding-inline: 0;
	}
}
@media screen and (max-width: 480px){
	.hero{
		flex-direction: column;
	}
	.hero-slider__wrapper,
	.hero-grid{
		width: 100%;
	}
	.newsletter form input[type="submit"]:hover{
		max-width: 120px;
	}
}


