.hero {
	display: flex;
	padding: 0 14rem;
	height: calc(100vh - 7rem);
}

.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4rem;
}

.hero-content img {
	width: 100%;
	max-width: 12rem;
}

.hero-content .content-text {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.content-text .content-text__main {
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.content-text .content-text__main p:nth-child(2) {
	font-size: initial;
	font-weight: initial;
}

.content-text .content-text__secondary {
	text-align: center;
}

.content-text .content-text__secondary p:nth-child(2) {
	font-size: 2.7rem;
	font-weight: 700;
	color: var(--ac-green-1);
	margin-top: .2rem;
}

.content-text .content-text__button {
	width: 100%;
	max-width: 33rem;
	margin: 0 auto ;
}

.hero-image {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.wrapper-image {
	width: calc(100% - 10rem);
	height: calc(100% - 10rem);
	display: flex;
	justify-content: center;
	align-items: center;
}

.wrapper-image .image {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.hero-image img:nth-child(1) {
	width: 65%;
	transform: translateY(15%);
	position: absolute;
	animation: phoneMove2 3s ease .3s infinite;
} 

.hero-image img:nth-child(2) {
	width: 65%;
	transform: translateY(-15%);
	margin-left: 36%;
	position: absolute;
	animation: phoneMove1 3s ease infinite;
	filter: drop-shadow(-6px 2px 54px var(--mc-black-1));
} 


@keyframes phoneMove1 {
	0% {
		transform: translateY(-15%);
	}

	50% {
		transform: translateY(-14%);
	}

	100% {
		transform: translateY(-15%);
	}
}

@keyframes phoneMove2 {
	0% {
		transform: translateY(15%);
	}

	50% {
		transform: translateY(14%);
	}

	100% {
		transform: translateY(15%);
	}
}


/* Responsive */
@media only screen and (max-width: 1024px) {
	.hero { 
		flex-direction: column-reverse;
		height: auto;
		padding: 8rem;
		gap: 4rem;
	}

	.wrapper-image {
		height: 60vh;
	}
}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 540px) {
	.hero .br-hide {
		display: none;
	}

	.wrapper-image {
		width: calc(100%);
		height: 60vh;
	}
}

@media only screen and (max-width: 425px) {
	.hero { 
		padding: 8rem 2rem;
	}
}

@media only screen and (max-width: 320px) {

}

@media only screen and (max-width: 280px) {

}