/*//////////////////////////////////////////////////////////
Hero
/////////////////////////////////////////////////////////*/

.hero-wrapper {
	background: linear-gradient( -45deg, #ec7063, #050442, #110c69 );
    background-size: 400% 400%;

    animation: HeroAnimation 15s ease infinite;
}

@keyframes HeroAnimation {
    0%{ background-position:0% 50% }
    50%{ background-position:100% 50% }
    100%{ background-position:0% 50% }
}

.hero-container {
	padding: 100px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1em;
	color: var(--light);
}

/*///// Separator /////*/

.hero-1 {
	max-width: 800px;
	text-align: center;
}

.hero-1 h2 {
	font-size: var(--text-x5l);
}

@media (max-width: 420px) {
	.hero-1 p {
		font-size: var(--text-s);
	}
}

/*//////////////////////////////////////////////////////////
Services
/////////////////////////////////////////////////////////*/

.services-heading {
	font-size: var(--text-x3l);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	grid-gap: 1.5em;
}

.services-item {
	padding: 1.5em;
	border: 1px solid var(--gray-8);
	border-radius: .5em;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
}

.services-item:hover {
	background: var(--primary);
	color: var(--light);
}

.services-item-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 80px;
	text-align: center;
	background: var(--primary);
	color: var(--light);
	margin-bottom: 1em;
}

.services-item:hover .services-item-icon {
	background: var(--primary-light);
}

.services-item p {
	color: var(--gray-2);
}

.services-item:hover p {
	color: var(--gray-8);
}

@media (max-width: 420px) {
	.services-heading {
		font-size: var(--text-x2l);
	}
}

/*//////////////////////////////////////////////////////////
Product
/////////////////////////////////////////////////////////*/

.theme-heading {
	font-size: var(--text-x3l);
}

.theme-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 1.5em;
}

.theme-item {
	border: 1px solid var(--gray-8);
	overflow: hidden;
	border-radius: .5em;
}

.theme-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, .6);
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
}

.theme-item-overlay:hover {
	opacity: 1;
}

.theme-item-entry {
	padding: 1em 1.5em 1.5em 1.5em;
}

@media (max-width: 420px) {
	.theme-heading {
		font-size: var(--text-x2l);
	}
}

/*//////////////////////////////////////////////////////////
Testimonial
/////////////////////////////////////////////////////////*/

.testimonial-heading {
	font-size: var(--text-x3l);
}

.testimonial-item {
	border: 1px solid var(--gray-8);
	overflow: hidden;
	border-radius: .5em;
}

/*///// Separator /////*/

.testimonial-header {
	background: var(--primary);
	color: var(--light);
	padding: 1em 1.5em;
}

.testimonial-header-image {
	width: 50px;
	height: 50px;
}

.testimonial-header-image img {
    border-radius: 50px !important;
}

/*///// Separator /////*/

.testimonial-entry {
	padding: 1em 1.5em;
}

.testimonial-entry img {
	width: 1em;
	height: 1em;
}

@media (max-width: 420px) {
	.testimonial-heading {
		font-size: var(--text-x2l);
	}
}

/*//////////////////////////////////////////////////////////
Product Featured
/////////////////////////////////////////////////////////*/

.theme-featured {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1.5em;
}

.theme-featured-image {
	overflow: hidden;
	border-radius: .5em;
}

@media (max-width: 768px) {
	.theme-featured {
		grid-template-columns: 1fr;
	}
}


/*//////////////////////////////////////////////////////////
Product Detail
/////////////////////////////////////////////////////////*/

.theme-detail-header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1.5em;
}

.theme-detail-image {
	overflow: hidden;
	border-radius: .5em;
}

@media (max-width: 768px) {
	.theme-detail-header {
		grid-template-columns: 1fr;
	}
}

/*///// Separator /////*/

.theme-price-item {
	border: 1px solid var(--primary);
}

.theme-price-item-entry ul {
	list-style-type: none;
}

/*//////////////////////////////////////////////////////////
Faq
/////////////////////////////////////////////////////////*/

.faq-heading {
	font-size: var(--text-x3l);
}

.faq-item {
	width: 750px;
	border: 1px solid var(--gray-8);
	border-radius: .5em;
}

@media (max-width: 768px) {
	.faq-item {
		width: 100%;
	}
}