/* MAIN LAYOUT */
/* ----------------------------------------- */

/* ---------------------------------------
   			Vars
--------------------------------------- */

:root {
	--font: 'Signika', sans-serif;
	--sub-font: 'Signika', sans-serif;
	--sub-color: #232323;
}


/* ---------------------------------------
	HTML
--------------------------------------- */

*,*::before,*::after {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	height: 100%;
}

body {
	position: static !important;
	display: flex;
	flex-direction: column;
	height: auto;
	font-family: var(--font);
	min-height: 100vh;
	margin: 0;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.5;
}

main {
	display: block;
}

*:last-child {
	margin-bottom: 0;
}


/* ---------------------------------------
	Preloader
--------------------------------------- */

.preloader {
	position: fixed;
	z-index: 100000000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	visibility: visible;
	opacity: 1;
	background-color: #fff;
	color: #222;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader--hidden {
	visibility: hidden;
	opacity: 0;
}

.position-center {
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

img {
	transition: opacity 0.3s ease-in-out;
}

img.pre-lazyload, &[data-lazy-src] {
	opacity: 0;
}

img.lazyloaded {
	opacity: 1;
}

/* ---------------------------------------
   			Container
--------------------------------------- */

.container {
	width: 100%;
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
}

.main-content {

}

.two-columns {
	columns: 2;
}

@media (max-width: 767px) {
	.two-columns {
		columns: 1;
	}
}



/* ---------------------------------------
   			Typography
--------------------------------------- */

p {
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
}

p:not(:last-child) {
	margin-bottom: 0.8rem;
}

@media (max-width: 767px) {
	p {
		font-size: 16px;
	}
}


h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400;
	font-family: var(--sub-font);
	margin: 0 0 1rem 0;
}

strong {
	font-weight: 700;
}


/*H1*/

h1 {
	font-size: 72px;
	line-height: 1.1;
}
@media (max-width: 992px) {
	h1 {
		font-size: 60px;
	}
}
@media (max-width: 781px) {
	h1 {
		font-size: 48px;
	}
}
@media (max-width: 576px) {
	h1 {
		font-size: 40px;
	}
}

/*H2*/


h2 {
	font-size: 48px;
	line-height: 1.3;
}
@media (max-width: 992px) {
	h2 {
		font-size: 40px;
	}
}
@media (max-width: 781px) {
	h2 {
		font-size: 35px;
	}
}
@media (max-width: 576px) {
	h2 {
		font-size: 28px;
	}
}

h2 strong {
	font-weight: 700;
}

/*H3*/

h3 {
	font-size: 32px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h3 {
		font-size: 30px;
	}
}
@media (max-width: 781px) {
	h3 {
		font-size: 28px;
	}
}
@media (max-width: 576px) {
	h3 {
		font-size: 24px;
	}
}

/*H4*/

h4 {
	font-size: 30px;
	line-height: 1.2;
}
@media (max-width: 992px) {
	h4 {
		font-size: 27px;
	}
}
@media (max-width: 781px) {
	h4 {
		font-size: 24px;
	}
}
@media (max-width: 576px) {
	h4{
		font-size: 22px;
	}
}

/*H5*/

h5 {
	font-size: 24px;
	line-height: 1.16;
	font-weight: 500;
}


/*H6*/

h6 {
	font-size: 20px;
	line-height: 1.16;
}
@media (max-width: 992px) {
	h6 {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	h6 {
		font-size: 18px;
	}
}
@media (max-width: 576px) {
	h6 {
		font-size: 16px;
	}
}

p a {
	text-decoration: underline;
	font-size: inherit;
	line-height: inherit;
	transition: all 0.2s ease-in-out;
}

ul, ol {
	list-style-position: inside;
}

ul {

}

.button {
	border: 1px solid var(--main-color);
	padding: 15px 30px;
	display: inline-block;
	text-align: center;
	color: var(--sub-color);
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none;
	border-radius: 20px;
	background-color: var(--main-color);
}

.button:hover {
	background-color: var(--sub-color);
	color: var(--main-color);
	border-color: var(--main-color);
}

.button:focus {
	opacity: 0.8;
}

/* ---------------------------------------
			Header
--------------------------------------- */

.header {
	position: fixed;
	background-color: transparent;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 105;
	padding: 15px 0;

}

/*.home .header {*/
/*	position: fixed;*/
/*	background-color: transparent;*/
/*}*/

.header-scrolled {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-fixed {
	position: fixed;
}

.header__logo h1 {
	font-size: 0;
	line-height: 1;
}

.logo h1 a {
	max-height: 120px;
	object-fit: contain;
}

.menu-item .sub-menu {
	display: none;
	top: 100%;
	right: auto;
	left: 0;
}

.header-menu .current_page_item > a {
	color: #FEB3FF;
}

.home .header-menu .current_page_item > a {
	color: white !important;
}

.header .menu-item a {
	color: white;
	font-size: 16px;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

.home .header-menu .current_page_item > a:hover {
	color: #FEB3FF;
}

.header .menu-item a:hover {
	color: #FEB3FF;
}

.header-contacts {
	background-color: white;
	padding: 5px 0;
	z-index: 150;
}

.header__row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
}

.header-contacts__row {
	display: flex;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}


.contact-link {
	font-size: 16px;
	line-height: 1.4;
	color: white;
	display: flex;
	gap: 5px;
	text-decoration: none;
	align-items: center;
}

.contact-link:hover {
	opacity: 0.8;
}

.header-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	gap: 40px;
	padding: 0;
	list-style: none;
}



.header__btn {
	display: none;
}

#clickWrapper {
	cursor:pointer;
	height:27px;
	width:27px;
}

/* menu start */
.menu {
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	margin-top:12px;
}

.animate.menu{
	animation-name: menu-menu;
	animation-duration: 0.3s;
}

@keyframes menu-menu {
	0% {
		width:0;
		height:0;
	}
	50% {
		width:0;
		height:0;
	}
	51%{
		position: absolute;
		background-color: white;
		width: 27px;
		height: 2px;
	}
}

.menu:after {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	margin-top: -12px;
}

.animate.menu:after {
	animation-name: menu-after;
	animation-duration: 0.3s;
}

@keyframes menu-after {
	0% {
		transform: rotate(-45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top:-12px;
	}
}

.menu:before {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	margin-top: 12px;
}

.animate.menu:before{
	animation-name: menu-before;
	animation-duration: 0.3s;
}
@keyframes menu-before {
	0% {
		transform: rotate(45deg);
		margin-top:0;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(0deg);
		margin-top: 12px;
	}
}
/* menu end */

/* close start */
.close {
	position: absolute;
	margin-top: 12px;
	margin-left: 0;
	opacity: 1 !important;
	text-shadow: none;
}

.close.animate{
	animation-name: close-close;
	animation-duration: 0.3s;
}

@keyframes close-close {
	0% {
		position: absolute;
		background-color: white;
		width: 27px;
		height: 2px;
		margin-top: 12px;
	}
	50% {
		display:none;
		width:27px;
		height: 2px;
	}
	100%{
		width:0;
		height:0;
	}
}

.close:after {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	transform: rotate(45deg);
}

.animate.close:after {
	animation-name: close-after;
	animation-duration: 0.3s;
}

@keyframes close-after {
	0% {
		transform: rotate(0deg);
		margin-top: 14px;
	}
	50% {
		transform: rotate(0deg);
		margin-top: 0;
	}
	100%{
		transform: rotate(45deg);
	}
}

.close:before {
	content: "";
	position: absolute;
	background-color: white;
	width: 27px;
	height: 2px;
	transform: rotate(-45deg);
}

.animate.close:before {
	animation-name: close-before;
	animation-duration: 0.3s;
}

@keyframes close-before {
	0% {
		transform: rotate(0deg);
		margin-top:-12px;
	}
	50% {
		transform: rotate(0deg);
		margin-top:0;
	}
	100%{
		transform: rotate(-45deg);
	}
}
/* close end */

.mega-header {
	display: none;
}

.header__menus .current-menu-item a {
	color: #FEB3FF;
}

.home {

}

@media (max-width: 1240px) {
	.header-menu {
		gap: 15px;
	}
}

@media (max-width: 992px) {
	.header-contacts__row {
		gap: 15px;
		justify-content: space-between;
	}
	.header__menus {
		display: none;
	}
	.header__btn {
		display: flex;
	}
	.header__button {
		display: flex;
		gap: 15px;
		align-items: center;
	}

	.mega-header {
		position: fixed;
		top: 0;
		padding-top: 100px;
		padding-bottom: 100px;
		right: 0;
		height: 100vh;
		width: 100%;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		z-index: -1;
		overflow: scroll;
		display: block;
		visibility: hidden;
	}
	.bg {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%);
		border-radius: 20px;
	}

	.header__menus {
		display: none;
	}
	.mega-header-active {
		opacity: 1;
		z-index: 104;
		visibility: visible;
	}
	.mega-header__block {
		padding: 15px;
		justify-content: center;
		display: flex;
		height: 100%;
		flex-direction: column;
	}
	.header-menu-nav {
		overflow: scroll;
		height: calc(100vh - 61px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		z-index: 200;
	}
	.header-menu li a {
		color: white;
		font-size: 22px;
		line-height: 25px;
		text-decoration: none;
	}
	.mega-header__container {
		height: 100%;
	}
	.header-menu .sub-menu {
		display: none;
	}
	.header-menu {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 767px) {

}


/* ---------------------------------------
			Footer
--------------------------------------- */

.footer {
	margin-top: auto;
	background-color: #4E2146;
	color: white;
	padding: 50px 0 0 0;
}

.socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
}

.socials a {
	background-color: #603759;
	width: 40px;
	height: 40px;
	border: 1px solid #6C4865;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.socials a:hover {
	background-color: #967D91;
}

.socials a img {

}

.socials a:hover {
	opacity: 0.8;
}

.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 13px;
	display: flex;
	flex-direction: column;
}

.footer-menu li a {
	color: white;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	text-transform: capitalize;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.footer-menu li a:hover {
	color: #FEB3FF;
}

.footer__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: white;
	display: block;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.footer__text {
	padding-top: 15px;
	max-width: 281px;
	padding-bottom: 20px;
}

.footer__text p {
	color: #E8E0ED;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
}

/* ---------------------------------------
				Slider
--------------------------------------- */

.slick-dots {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,-200%);
	list-style: none;
	gap: 10px;
	z-index: 60;
}


.slick-dots li {

}


.slick-dots li button {
	background-color: transparent;
	padding: 0;
	font-size: 0;
	width: 12px;
	height: 12px;
	border: 1px solid white;
	border-radius: 50%;
}

.slick-dots .slick-active button {
	background-color: white;
}

.slick-arrow {
	position: absolute;
	top: 50%;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 0;
	outline: none;
	box-shadow: none;
	border: 1px solid rgba(0, 79, 159, 0.15); /* Border with 15% opacity */
	z-index: 80;
	transform: translate(0%, -50%);
	cursor: pointer;
}

.slick-arrow:after {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-arrow:hover {
	border-color: #004F9F;
}

.slick-prev {
	left: 0;
}

.slick-prev:after {
	content: url("../images/left-arrow.png");

}

.slick-next {
	right: 0;
}

.slick-next:after {
	content: url("../images/right-arrow.png");
}

.hero-slider .slick-prev {
	transform: translate(-60%, -50%);
}

.hero-slider .slick-next {
	transform: translate(60%, -50%);
}

/* ---------------------------------------
			Home
--------------------------------------- */


.hero-section {
	background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%);
	clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
	padding: 121px 0 175px 0 !important;
}

.header-scrolled {
	background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%);
	border-radius: 0 0px 15px 15px;
}

.web-section {
	padding: 96px 0;
}

.main-button .wp-block-button__link {
	background: linear-gradient(135deg, #C844AF 0%, #CB4FD7 100%) !important;
	border: 1px solid #E058C8 !important;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: white !important;
	position: relative;
	padding: 15px 30px;
	transition: all 0.3s ease-in-out;
}

.main-button .wp-block-button__link:after {
	content: '';
	background-image: url("../images/arrow.svg");
	width: 10px;
	height: 8px;
	display: inline-block;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 9px;
}

.main-button .wp-block-button__link:hover {
	opacity: 0.8;
}



.sub-button .wp-block-button__link {
	border: 1px solid #E9A5DA !important;
	background-color: rgba(255, 255, 255, 0.2) !important;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: white !important;
	position: relative;
	padding: 15px 30px;
	transition: all 0.3s ease-in-out;
}

.header-button {
	border: 1px solid #E9A5DA !important;
	background-color: rgba(255, 255, 255, 0.2) !important;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: white !important;
	position: relative;
	padding: 10px 23px;
	transition: all 0.3s ease-in-out;
	border-radius: 15px;
	text-decoration: none;
	text-align: center;
}

.header-button:hover {
	opacity: 0.8;
}

.sub-button .wp-block-button__link:hover {
	opacity: 0.8;
}

.purple-list {
	gap: 17px;
}

.purple-list figure {
	display: flex;
	align-items: center;
}

.purple-list p {
	font-size: 14px;
	line-height: 1;
}

.difference-block {

}

.three-blocks {

}

.three-blocks__item {
	border: 1px solid #E8E1E9;
	border-radius: 20px;
	padding: 37px 25px;
	box-shadow: 0px 7px 4px -4px rgba(75, 31, 76, 0.15);

}

.three-blocks__item .wp-block-image {
	margin-bottom: 20px;
}

.three-blocks__item-title {
	font-size: 24px;
	line-height: 1.3;
}

.three-blocks__item-text {
	font-size: 16px;
	line-height: 1.5;
}

.how-it-works {
	padding: 165px 0;
	clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);

}

.how-it-works .wp-block-columns {
	max-width: 810px;
	margin: 0 auto;
	padding: 23px 0;
}

.how-it-works .wp-block-columns:not(:first-child) {
	padding-bottom: 60px;
}

.bottom-cutted {

}

.step-text {
	display: inline-block;
	padding: 8px 17px;
	font-size: 18px;
	line-height: 1;
	border-radius: 100px;
	margin-bottom: 21px !important;
}

.step-title {
	font-size: 24px;
	line-height: 1;
}

.step-item-text {
	font-size: 16px;
	line-height: 1.5;
	max-width: 380px;
	margin: 0 auto;
}

.step-item {
	text-align: center;
}

.service-item a {
	text-decoration: none;
	pointer-events: none;
	color: var(--text-color);
	display: flex;
	flex-direction: column;
	gap: 10px;
	background-color: white;
	border: 1px solid #E8E1E9;
	padding: 37px 26px;
	width: 100%;
	border-radius: 20px;
	max-width: 373px;
	justify-content: center;
	text-align: center;
	box-shadow: 0px 7px 4px -4px rgba(75, 31, 76, 0.15);
	height: 100%;
	align-items: center;
}

.service-item a img {
	margin-bottom: 10px;
	max-width: 80px;
}

.service-item__title {
	color: black;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	margin-bottom: 0 !important;
}

.service-item__excerpt {

}

.service-item__excerpt p {
	color: var(--text-color);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 0 !important;
}

.services-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px 35px;
	padding: 25px 0;
}

.meet-your-twins {
	padding: 125px 0 125px 0;
	clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
}

.ai-twin {
	border: 1px solid #E8E1E9;
	border-radius: 20px;
	box-shadow: 0px 7px 4px -4px rgba(75, 31, 76, 0.15);
	width: 100%;
	max-width: 373px;
	padding: 40px;
	min-height: 258px;
}

.ai-twin-bottom {
	position: relative;
	margin-top: 10px !important;
}

.ai-twin-bottom:before {
	position: absolute;
	top: -15px;
	left: 87px;
	content: '';
	background-repeat: no-repeat;
	background-image: url("../images/top.png");
	transform: translate(0% ,0%);
	width: 20px;
	height: 20px;
}



.ai-twin-bottom p {
	border-radius: 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	padding: 20px 18px;
}

.ai-twin-top {
	gap: 15px;
}

.ai-twin-top figure {
	border-radius: 50%;
	padding: 3px; /* Border thickness */
	background: linear-gradient(135deg, #ff4fd8, #8a2be2); /* Pink → Purple gradient */
	width: 72px;
	height: 72px;
	text-align: center;
}

.ai-twin-top figure img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.ai-twin-top-text {
	gap: 5px;
}

.ai-twin-top-text p:first-child {
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 0 !important;
}

.ai-twin-top-text p:not(:first-child) {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	margin-bottom: 0 !important;
}

.ai-list {
	gap: 35px;
	padding-bottom: 37px;
}

.cta-block {
	background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%);
	clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
	padding: 150px 0 176px 0;
}

.cta-block h2 {
	margin-bottom: 10px;
}

.text-24 {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 500;
}

.home .cta-block {
	margin-top: -65px;
}

.home .cta-block:before {

}

.footer__copy p {
	font-size: 16px;
	font-weight: 500;
	color: #E8E0ED;
	line-height: 1;
}

.privacy-menu {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
}

.privacy-menu li a {
	font-weight: 600;
	font-size: 16px;
	line-height: 1;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.privacy-menu li a:hover {
	color: #FEB3FF;
}

.footer__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid #603759;
	padding: 20px 15px;
	margin-top: 38px;

}

.footer__row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.footer__form label {
	display: none !important;
}

.footer__form .gform-body .gform_fields .ginput_container  {
	position: relative;
}

.footer__form .gform-body .gform_fields .ginput_container:before {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translate(0%, -50%);
	content: '';
	background-image: url("../images/envelope.svg");
	width: 16px;
	height: 16px;
	transition: all 0.3s ease-in-out;
	background-repeat: no-repeat;
}


.footer__form .gform-body .gform_fields .ginput_container input {
	border: 1px solid #DEC1D9;
	border-radius: 12px;
	width: 100%;
	max-width: 305px;
	min-width: 305px;
	height: 48px !important;
	padding-left: 40px !important;
	font-size: 16px !important;
	line-height: 1 !important;
}

.footer__form .gform-body .gform_fields .ginput_container input:hover {
	outline: none !important;
}

.footer__form .gform-body .gform_fields .ginput_container input:focus {
	outline: none !important;
}

.footer__form .gform-body .gform_fields .ginput_container input::placeholder {
	color: #686868 !important;
}

.footer__form .gform-body .gform_fields .ginput_container:hover:before {

}

.footer__form form {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer__form form .gform-footer {
	margin-top: 0 !important;
}

.footer__form form .gform-footer .gform_button {
	border: 1px solid #E9A5DA !important;
	border-radius: 15px !important;
	background-color: rgba(255, 255, 255, 0.2) !important;
	font-size: 16px !important;
	line-height: 1 !important;
	font-weight: 500 !important;
	height: 48px !important;
	padding: 5px 23px !important;
	transition: all 0.3s ease-in-out;
}

.footer__form form .gform-footer .gform_button:hover {
	outline: none !important;
	background-color: #E9A5DA !important;
}

.footer__form form .gform-footer .gform_button:focus {
	outline: none !important;
}

.home .footer {
	clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%);
	margin-top: -81px;
	padding-top: 97px;
}

.page-template-tempale-cta .footer {
	/*clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%);*/
	/*margin-top: -81px;*/
	/*padding-top: 97px;*/
}

.main-content-cta {
	margin-bottom: -81px;
}

.footer-cta {
	clip-path: polygon(0 17%, 100% 0, 100% 100%, 0 100%);
	padding-top: 97px;
}

.bg-gradient {
	background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%);
}


.hero-title {
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
	padding: 147px 0 170px 0;
}

.hero-title h1 {
	font-size: 64px;
	line-height: 1.1;
	margin-bottom: 10px;
}

.subtitle-text {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 500;
}

.hero-title-icon {
	gap: 20px;
}

.pricing-tables-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.pricing-tables__columns {

}

.pricing-tables__row:nth-child(even) {
	background-color: #FAF2F9;
}

.pricing-tables__header-title {
	font-size: 18px;
	line-height: 1;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 0;
	text-align: center;
}

.pricing-tables__header-columns p {
	margin-bottom: 0 !important;
}

.pricing-tables {
	border: 1px solid #E8E1E9;
	border-radius: 20px;
	box-shadow: 0px 7px 4px -4px rgba(75, 31, 76, 0.15);
	margin: 77px 0;

}

.pricing-tables__header-columns {
	background-color: #FAF2F9;
	text-align: center;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pricing-tables__header-columns:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pricing-tables__header-price {
	font-size: 32px;
	line-height: 1;
	color: black;
	font-weight: bold;
	text-align: center;
}

.pricing-tables__header-price small {
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	color: black;
}

.pricing-tables__header-text {
	color: #604E5E;
	font-size: 16px;
	line-height: 1.5;
}

.pricing-tables__header-columns:nth-child(2) {
	background-color: #E5FFF8;
}

.pricing-tables__header-columns:nth-child(3) {
	background-color: #FFE3FB;
}

.pricing-tables__header-columns:nth-child(4) {
	background-color: #FFEBEB;
}

.pricing-tables-columns__block-text {
	margin-bottom: 0;
	color: #604E5E;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
	min-height: 63px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
}

.pricing-tables__features p:first-child {
	font-weight: 600;
	color: #000000;
}

.pricing-tables-columns .pricing-tables-columns__block:nth-child(2) .pricing-tables-columns__block-text {

}



.pricing-tables__column-pro {

	position: relative;
}

.pricing-tables__column-pro:after {
	content: '';
	background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%) border-box;
	border: 6px solid transparent;
	border-radius: 0 0 20px 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.pricing-tables__wrapper {
	min-height: 315px;
	text-align: center;
	padding: 20px 15px 15px 15px;
	overflow: hidden;
}

.pricing-tables__column-features .pricing-tables__wrapper  {
	background-color: #FAF2F9;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px 0 0 0;
}

.pricing-tables__column-starter .pricing-tables__wrapper  {
	background-color: #E5FFF8;

}

.pricing-tables__column-pro .pricing-tables__wrapper  {
	background-color: #FFE3FB;
	margin: 0 6px;
	position: relative;
	z-index: 7;
}

.pricing-tables__column-enterprise .pricing-tables__wrapper  {
	background-color: #FFEBEB;
	border-radius: 0 20px 0 0;
}

.pricing-tables-features .pricing-tables-columns__block:nth-child(even) .pricing-tables-columns__block-text {
	/*background-color: #FAF2F9;*/
	z-index: 8;
	position: relative;
}

.pricing-tables-features .pricing-tables-columns__block:nth-child(odd) .pricing-tables-columns__block-text {
	/*background-color: #FAF2F9;*/
	z-index: 8;
	position: relative;
}

.pricing-tables-features .pricing-tables-columns__block:nth-child(even) .pricing-tables-columns__block-text:after {
	background-color: #FAF2F9;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	z-index: -1;
}

.pricing-tables__column-pro .pricing-tables-columns__block-text {
	margin: 0 6px;
}

.pricing-tables-features .pricing-tables-columns__block:nth-child(even) .pricing-tables-columns__block-text:after {

}

.pricing-tables-columns__block {
	overflow: hidden;
}

.pricing-tables-features .pricing-tables-columns__block:nth-child(2) .pricing-tables-columns__block-text {
	min-height: 115px;
	align-items: flex-start;
}

.pricing-tables__column-pro .pricing-tables-features:last-child .pricing-tables-columns__block {
	border-radius: 0 0 10px 10px;

}

.pricing-tables-columns {
	position: relative;
}

.pricing-tables-columns:after {

}

.pricing-tables__column-pro .pricing-tables-features .pricing-tables-columns__block:last-child .pricing-tables-columns__block-text:after {
	top: -6px;
	border-radius: 0 0 10px 10px;
}

.pricing-tables__column-features .pricing-tables-features p {
	font-weight: 600;
	color: black;
}

.most-popular-text {
	top: -41px;
	position: absolute;
	background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 135%);
	color: white;
	font-size: 14px;
	line-height: 1;
	font-weight: bold;
	left: 0;
	text-align: center;
	z-index: 10;
	width: 100%;
	text-transform: uppercase;
	height: 41px;
	border-radius: 20px 20px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pricing-tables__column-features .pricing-tables-features .pricing-tables-columns__block:last-child .pricing-tables-columns__block-text:after {
	border-radius: 0px 0px 0 20px;
}

.pricing-tables__column-enterprise .pricing-tables-features .pricing-tables-columns__block:last-child .pricing-tables-columns__block-text:after {
	border-radius: 0 0 20px 0;
}

.mobile-info {
	display: none;
}

.need-flexibility {
	padding: 165px 0;
	clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
}

.my-table {
	max-width: 661px;
	margin: 0 auto;
	border: 1px solid #E8E1E9 !important;
	border-radius: 20px;
	box-shadow: 0px 7px 4px -4px rgba(75, 31, 76, 0.15);
}

.my-table tbody {

}

.my-table tbody tr:nth-child(even) td {
	background-color: #FCF8FC !important;
}

.my-table tbody tr:nth-child(odd) td {
	background-color: white !important;
}

.my-table tbody tr td {
	text-align: center;
	font-size: 20px;
	line-height: 1.5;
	padding: 20px 15px;
}

.my-table tbody tr td:first-child {
	color: black;
}

.my-table tbody tr td:last-child {
	color: #604E5E;
}

.columns-size-md {
	max-width: 800px;
	margin: 0 auto;
}

.need-flexibility h3 {
	font-size: 36px;
}

.pricing-tables__column-starter .pricing-tables__header-title {
	color: #4BB57B;
}

.pricing-tables__column-pro .pricing-tables__header-title {
	color: #B54B8B;
}

.pricing-tables__column-enterprise .pricing-tables__header-title {
	color: #B54B4B;
}

.page-heading {
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
	text-align: center;
	padding: 136px 0;
}

.page-heading h1 {
	font-weight: 700;
	margin-bottom: 0 !important;
	color: white;
}

.page-template-template-white {
	background-color: white !important;
}

.service-section-item__title {

}

.service-section-item__subtitle {
	font-size: 24px;
	line-height: 1.4;
	font-weight: 500;
}

.service-section-item-columns {
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 25px;
}

.service-section-item-columns p {
	color: #604E5E;
	font-size: 16px;
	line-height: 1.5;
}


.service-section-item-columns ul {
	list-style: none;
	padding-left: 1px;
	margin-top: 19px;
}

.service-section-item-columns li:before {
	content: '';
	background-image: url("../images/plus.png");
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	width: 12px;
	height: 12px;
	z-index: 55;
}

.service-section-item-columns li {
	color: #604E5E;
	font-size: 16px;
	line-height: 1.5;
	padding-left: 20px;
	position: relative;
}

.service-section-item-columns li:not(:last-child) {
	margin-bottom: 10px;
}

.clip-path-top-bottom {
	clip-path: polygon(0 6%, 100% 0, 100% 95%, 0 100%);
}

.sm-text {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 500;
}

.hybrid-section h2 {
	margin-bottom: 10px;
}

.hybrid-section-reverse {
	padding: 150px 0;
}

.hybrid-section {
	padding: 96px 0;
}

.three-blocks-sm {
	margin: 0 auto;
	max-width: 790px;
}

.faq-item {
	padding-left: 5px;
	padding-bottom: 30px;
	border-bottom: 1px solid #E3C9E0;
	cursor: pointer;
}

.faq-item:not(:first-child) {
	padding-top: 30px;
}

.faq-section .container {
	max-width: 830px;
}

.faq-items {
	padding: 25px 0;
}

.faq-item__button {
	width: 100%;
	border: none;
	background-color: transparent;
	text-align: left;
	font-size: 24px;
	line-height: 1.24;
	color: black;
	font-weight: 700;
	position: relative;
	font-family: var(--font);
	padding: 0;
	cursor: pointer;
	padding-right: 30px;
}

.faq-item__button img {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	transition: all 0.3s ease-in-out;
}

.faq-items .active .faq-item__button img {
	transform: translate(0, -50%) rotate(45deg);
}

.faq-item:hover .faq-item__button img {
	transform: translate(0, -50%) rotate(225deg);
}

.faq-item__content {
	padding-top: 18px;
}

.faq-item__content p {
	font-size: 16px;
	line-height: 1.5;
	color: #604E5E;
}

.faq-item__content {
	color: #604E5E;
}

.faq-item__content p a {
	color: var(--main-color);
}

.faq-section {
	padding-bottom: 40px;
}

@media (min-width: 992px) {
	.hero-title-services {
		padding-bottom: 174px;
		padding-top: 116px;
		clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
	}
	.service-section-item-reverse {
		padding-top: 149px;
		padding-bottom: 151px;
	}
	.cta-block-services {
		padding-top: 161px;
		margin-top: -63px;
	}
}

@media (max-width: 1240px) {
	.pricing-tables__header-text {
		font-size: 14px;
		line-height: 1.3;
	}
}

@media (max-width: 992px) {
	.web-section {
		padding: 66px 0;
	}
	.hero-section {
		padding: 96px 0 !important;
	}
	.how-it-works {
		padding: 100px 0;
	}
	.footer__row {
		flex-wrap: wrap;
	}
	.hero-title h1 {
		font-size: 50px;
	}
	.hero-title {
		padding: 96px 0 150px 0;
	}
	.pricing-tables-columns__block-text {
		font-size: 14px;
		line-height: 1.2;
	}
	.pricing-tables__header-text {
		font-size: 12px;
	}
	.page-heading {
		padding: 96px 0;
	}
	.cta-block-services {
		padding-top: 150px;
		margin-top: -85px;
	}
	.service-section-item {
		padding: 96px 0;
	}
	.hybrid-section-reverse {
		padding: 96px 0;
	}

	.hybrid-section {
		padding: 96px 0;
	}
}

@media (max-width: 781px) {
	.web-section {
		padding: 36px 0;
	}

	.hero-section {
	}

	.remove-sm-br br {
		display: none;
	}

	.header-button {
		font-size: 14px;
		padding: 10px 15px;
	}

	.how-it-works .wp-block-columns:nth-child(odd) {
		flex-direction: column-reverse;
	}

	.how-it-works .wp-block-columns:nth-child(even) {
	}

	.how-it-works {
		padding: 66px 0;
		clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
	}

	.hero-section {
		clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
	}

	.services-list {
		gap: 25px;
	}

	.ai-twin {
		max-width: 100%;
	}

	.ai-list {
		gap: 15px;
		padding-bottom: 15px;
	}

	.home .footer {
		clip-path: none;
		margin-top: 0px;
		padding-top: 36px;
	}

	.page-template-tempale-cta .footer {

	}

	.footer-cta {
		clip-path: none;
		margin-top: 0px;
		padding-top: 36px;
	}

	.main-content-cta {
		margin-bottom: 0;
	}

	.home .cta-block {
		margin-top: 0;
		clip-path: none;
		padding: 96px 0;
	}

	.footer__row {
		flex-direction: column;
		gap: 25px;
	}

	.footer__form form {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer__form .gform-body .gform_fields .ginput_container input {
		max-width: 100%;
	}

	.footer-form .gform-body {
		width: 100% !important;
	}

	.footer__container {
		margin-top: 25px;
		justify-content: center;
		flex-direction: column-reverse;
	}

	.meet-your-twins {
		padding: 125px 0 36px 0;
	}

	.hero-title h1 {
		font-size: 44px;
	}

	.hero-title {
		padding: 96px 0 66px 0;
		clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
	}

	.pricing-tables-columns {
		grid-template-columns: 1fr;
	}

	.pricing-tables__wrapper {
		min-height: auto;
	}

	.pricing-tables-features .pricing-tables-columns__block:nth-child(2) .pricing-tables-columns__block-text {
		min-height: auto;
	}

	.pricing-tables__column-features .pricing-tables-features .pricing-tables-columns__block:last-child .pricing-tables-columns__block-text:after {
		border-radius: 0;
	}
	.pricing-tables__column-features .pricing-tables__wrapper {
		border-radius: 20px 20px 0 0;
	}
	.pricing-tables__column-enterprise .pricing-tables__wrapper {
		border-radius: 0;
	}
	.pricing-tables__column-enterprise .pricing-tables-features .pricing-tables-columns__block:last-child .pricing-tables-columns__block-text:after {
		border-radius: 0 0 20px 20px;
	}
	.pricing-tables-columns__block-text {
		min-height: auto;
	}
	.pricing-tables__column-pro {
		margin-top: 41px;
	}
	.mobile-info {
		display: block;
		text-align: left;
	}
	.pricing-tables-columns__block {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 0 15px;
	}

	.pricing-tables-columns__block .mobile-info {
		font-weight: 600;
		padding-right: 5px;
	}

	.pricing-tables-columns__block p {
		margin-bottom: 0 !important;
		padding: 10px 0;
	}

	.pricing-tables-features .pricing-tables-columns__block:nth-child(even)  {
		background-color: #FAF2F9;
	}
	.pricing-tables__column-features {
		display: none;
	}
	.pricing-tables__column-starter .pricing-tables__wrapper {
		border-radius: 20px 20px 0 0;
	}
	.pricing-tables__column-pro .pricing-tables-features .pricing-tables-columns__block:nth-child(even) {
		background-color: #FAF2F9;
	}
	.pricing-tables__column-pro .pricing-tables-columns__block-text {
		width: 100%;
	}
	.pricing-tables-features .pricing-tables-columns__block:nth-child(even) .pricing-tables-columns__block-text:after {
		background-color: transparent;
	}
	.pricing-tables__column-enterprise .pricing-tables-features .pricing-tables-columns__block {
		border-radius: 0 0 20px 20px;
	}
	.pricing-tables__header-text {
		font-size: 16px;
	}

	.pricing-tables-columns__block p:last-child {
		text-align: right;
		justify-content: flex-end;
	}
	.pricing-tables {
		margin: 36px 0;
	}
	.subtitle-text {
		font-size: 20px;
		line-height: 1.3;
	}

	.subtitle-text br {
		display: none;
	}

	.cta-block {
		padding: 150px 0 76px 0;
	}
	.page-heading {
		padding: 96px 0;
		clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
	}

	.service-section-item-columns {
		flex-direction: column-reverse;
	}

	.service-section-item-columns figure {
		text-align: center;
	}

	.service-section-item-reverse .service-section-item-columns {
		flex-direction: column;
	}

	.service-section-item {
		padding: 126px 0;
	}
	.remove-br-sm br {
		display: none;
	}
	.hybrid-section-reverse {
		padding: 126px 0;
	}

	.hybrid-section {
		padding: 126px 0;
	}
}

.contact__form {
	max-width: 1000px;
	margin: 0 auto;
}

.contact__form h2 {
	margin-bottom: 16px;
	font-weight: 300;
}

.contact__form form {
	max-width: 100%;
}

.contact__form form .gfield {

}

.contact__form .gform_fields {
	gap: 15px !important;;
}

.contact__form form label {
	font-size: 14px !important;
	line-height: 17px !important;
	font-weight: 400 !important;
	color: rgba(0, 0, 0, 0.6) !important;
	overflow: visible;
	clip: auto;
	margin: 0 0 0.5rem 0!important;
	clip-path: inherit;
	position: relative;
	width: 100%;
	gap: 0 !important;
}

.contact__form form label .gfield_required_text {
	font-size: 0;
	padding-left: 4px;
}

.contact__form form label .gfield_required_text:after {
	content: '*';
	color: #b54b8b; /* replace with actual color */
	font-size: 15px;
}

.contact__form form input {
	border: 2px solid #f6ecf4 !important;
	border-radius: 10px !important;
	height: 60px !important;
	font-size: 18px !important;
	color: black !important;
	line-height: 26px !important;
}

.contact__form form input::placeholder {
	color: #f6ecf4 !important;
	font-weight: 300 !important;
	font-size: 18px !important;
	line-height: 24px !important;
}

.contact__form form input:focus,
.contact__form form input:hover {
	box-shadow: none !important;
	border-color: rgba(170,68,151,.5019607843) !important;
	outline: none !important;
}

.contact__form form textarea {
	border: 2px solid #f6ecf4 !important;
	border-radius: 10px !important;
	height: 120px !important;
	font-size: 18px !important;
	color: black !important;
	line-height: 26px !important;
	min-block-size: 120px !important;
}

.contact__form form textarea::placeholder {
	color: rgba(170,68,151,.5019607843);
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
}

.contact__form form textarea:focus,
.contact__form form textarea:hover {
	box-shadow: none !important;
	border-color: rgba(170,68,151,.5019607843) !important;
	outline: none !important;
}

.contact__form form select {
	border: 2px solid #f6ecf4 !important;
	border-radius: 10px !important;
	height: 60px !important;
	display: flex !important;
	align-items: center;
}

.contact__form form select:focus,
.contact__form form select:hover {
	box-shadow: none !important;
	outline: none !important;
	border-color: rgba(170,68,151,.5019607843) !important;
}

.contact__form form .ui-selectmenu-button .ui-selectmenu-text {
	color: black;
	font-weight: 300;
	font-size: 18px;
	line-height: 24px;
}

.contact__form form .ui-selectmenu-button .ui-selectmenu-icon {
	right: 20px;
}

.contact__form form .ui-selectmenu-button .ui-selectmenu-icon:before {
	font-size: 13px;
	color: rgba(170,68,151,.8509803922);
}

.contact__form form .ui-selectmenu-open ul {
	border-radius: 10px;
	border-color: rgba(170,68,151,.8509803922);
}

.contact__form form .ui-selectmenu-open ul .ui-menu-item div {
	font-size: 18px;
	line-height: 24px;
	color: black;
}

.contact-us-section .contact__form form .gform_footer {
	text-align: left;
}

.contact-us-section .contact__form form .gform_footer .gform_button {
	background: #9f3c8c !important;
	border-radius: 100px !important;
	width: 100% !important;
	max-width: 386px !important;
	color: white !important;
	font-size: 21px !important;
	font-weight: 600 !important;
	text-align: center !important;
	line-height: 32px !important;
	min-height: 60px !important;
}

.contact-us-section  .contact__form form .gform_footer .gform_button:hover {
	background: rgba(170,68,151,.8509803922) !important;
	outline: none !important;
	box-shadow: none !important;
}

.contact-us-section  .contact__form form .gform_footer .gform_button:focus {
	box-shadow: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.small-text {
	font-size: 12px;
	line-height: 16px;
	font-weight: 300;
}

.small-text a {
	text-decoration: underline;
	font-weight: 400;
	color: #aa4497;
}

.small-text a:hover {
	opacity: 0.6;
}

.section-text a {
	color: #803772;
}

.section-text a:hover {
	opacity: 0.6;
}

.search-posts {
	width: 100%;
	max-width: 616px;
	margin: 0 auto;
	height: 48px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 20px;
	background-color: #faf2f9;
	border: 1px solid #faf2f9;
	padding-left: 15px;
}

.search-posts label {
	display: none;
}

.search-posts input {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	background: transparent;
	border: none;
	color: black;
}

.search-posts input:focus {
	box-shadow: none;
	outline: none;
}

.search-posts input::placeholder {
	color: #6B7B88;
}

.category-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 30px 0 0 0;
	flex-wrap: wrap;
}

.purple-category {
	background: linear-gradient(135deg, #C844AF 0%, #CB4FD7 100%) !important;
	border: 1px solid #E058C8 !important;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: white !important;
	position: relative;
	padding: 15px 30px;
	transition: all 0.3s ease-in-out;
	font-family: var(--font);
	border-radius: 15px;
	cursor: pointer;

}

.purple-category.active {
	background: linear-gradient(135deg, #FF66D1 0%, #E94FE0 100%) !important;
	transform: scale(1.05);

	transition: all 0.3s ease-in-out;

}

/* Optional: hover effect for all buttons */
.purple-category:hover {
	transform: scale(1.03);

}


.purple-post {
	border: 1px solid #E0E8EF;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
}

.purple-post__image {
	height: auto;
	position: relative;
}

.purple-post__image a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

.purple-post__image img {
	height: 100% !important;
	width: 100%;
	object-fit: cover;
	border-radius: 20px 20px 0 0 !important;
}

.purple-post__title {
	text-decoration: none !important;
	font-size: 18px;
	line-height: 1.4;
	color: #1A2832;
	font-weight: bold;
	display: block;
	margin-bottom: 5px;
}

.purple-post__title h2 {
	font-size: inherit !important;
	font-weight: inherit !important;
	color: inherit !important;
	line-height: inherit !important;
}

.purple-post__excerpt {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: #3C4043;

}

.purple-post__author a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	line-height: 1.4;
	font-weight: bold;
	color: black;
	text-decoration: none !important;
}

.purple-post__author a:hover {
	color: #E058C8;
}

.purple-post__author a img {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}

.purple-post__info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.purple-post__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding-bottom: 12px;
}

.purple-post__tags span {
	color: #1A2832;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	border-radius: 50px;
	padding: 10px;
	background-color: #E0E8EF;
}

.purple-post {
	display: flex;
	flex-direction: column;
}

.purple-post__col {
	padding: 22px 15px 22px 15px;
}

.purple-post__col span {
	color: #1A2832;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	border-radius: 50px;
	padding: 5px 18px;
	background-color: #E0E8EF;
}

.purple-post__info {
	margin: auto auto 0 auto;
	max-width: 90%;
	padding: 15px 0;
	border-top: 1px solid #E0E8EF;
	width: 100%;
}

.purple-post:hover {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.loading-spinner {
	display: flex;
	justify-content: center;
	text-align: center;
	grid-column: 3 span;
}

.loading-spinner:after {
	content: '';
	background-image: url("../images/spinner-solid-full.svg");
	width: 40px;
	height: 40px;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	animation: spin 1s linear infinite;
	filter: brightness(0) saturate(100%) invert(10%) sepia(93%) saturate(3898%) hue-rotate(269deg) brightness(99%) contrast(85%);
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.purple-posts__button {
	text-align: center;
}

.purple-posts__button button {
	background: linear-gradient(135deg, #C844AF 0%, #CB4FD7 100%) !important;
	border: 1px solid #E058C8 !important;
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	color: white !important;
	position: relative;
	padding: 15px 30px;
	transition: all 0.3s ease-in-out;
	font-family: var(--font);
	border-radius: 15px;
	cursor: pointer;
}

.purple-posts__button button:hover {
	transform: scale(1.03);
}

.purple-posts {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	padding: 37px 0;
}

.purple-post__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-bottom: 10px;
}

@media (max-width: 992px) {
	.purple-posts {
		grid-template-columns: 1fr 1fr;
		padding: 30px 0;
	}
}

@media (max-width: 781px) {
	.purple-posts {
		grid-template-columns: 1fr;
		padding: 25px 0;
	}
	.purple-category {
		font-size: 14px;
		padding: 15px 20px;
	}
}

.single .header {
	background: linear-gradient(135deg, #6a11cb 0%, #ff4ecb 100%);
	border-radius: 0 0px 15px 15px;
	position: sticky;
}

.post-breadcrumbs {
	padding: 36px 0 66px 0;
}

.post-breadcrumbs__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.post-breadcrumbs__items a {
	text-decoration: none;
	color: black;
	display: flex;
}

.post-breadcrumbs__items span {
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	color: #919AA2;
}

.top-post-content {
	padding: 0 0 36px 0;
}

.top-post-content .container {
	max-width: 1000px;
}

.top-post-content__title {
	color: black;
}

.top-post-content__title span:nth-last-child(-n+2) {
	color: #803772;
}

.shared-links {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.shared-links a {
	width: 36px;
	height: 36px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #F087EF;
	border-radius: 10px;
	text-decoration: none;
}

.shared-links a:hover {
	opacity: 0.8;
}

.shared-links a img {
	width: 26px;
	height: 26px;
	object-fit: cover;
	filter: brightness(0) saturate(100%) invert(100%) sepia(83%) saturate(2%) hue-rotate(82deg) brightness(107%) contrast(101%);
}

.meta-post__author {
	display: flex;
	align-items: center;
	gap: 6px;
}

.meta-post__author span {

}

.meta-post__author a img {
	width: 35px;
	height: 35px;
	object-fit: cover;
	border-radius: 50%;
}

.meta-post__author a {
	color: black;
	text-decoration: none;
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.meta-post__author a:hover {
	color: #e058c8;
}

.meta-post {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.meta-post__date p {
	margin-bottom: 0 !important;
	display: flex;
	align-items: center;
	color: black;
	font-size: 16px;
}

.meta-post__date p img {
	width: 24px;
	height: 24px;
}

.meta-post__date {

}

.top-post-content__meta {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: flex-start;
	padding-bottom: 30px;
}

.meta-post__category {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.meta-post__category a {
	text-decoration: none;
	color: black;
	display: flex;
	align-items: center;
	gap: 6px;
}

.meta-post__category a:hover {
	color: #e058c8;
}

.meta-post__category a img {
	width: 24px;
	height: 24px;
}

.post-content {
	background-color: #faf2f9;
	padding: 165px 0;
	clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%)
}

.table-of-contents {

}

.top-post-content__text {

}

.top-post-content__excerpt {
	padding-bottom: 30px;
}

.table-of-contents p {
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.table-of-contents p img {
	width: 24px;
	height: 24px;
}

.table-of-contents ul {
	list-style: none;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 0;
}

.table-of-contents li a {
	color: #778289;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	text-decoration: underline;
}

.table-of-contents li a:hover {
	color: #803772;
}

.top-post-content__info {
	display: flex;
	gap: 15px;
}

.top-post-content__text {
	flex: 1 1 5%;
}

.purple-single-post__image {
	flex: 1 1 5%;
	border-radius: 40px 40px 40px 40px;
}

.purple-single-post__image img {
	max-width: 610px;
	border-radius: 40px 40px 40px 40px;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.post-content__grid a {
	color: #803772;
}

.post-content__grid a:hover {
	opacity: 0.8;
}

.post-content__grid li {
	font-size: 20px;
	line-height: 1.5;
	margin: 0;
}

.post-content .container {
	max-width: 1000px;
}

.grid-3 {
	grid-template-columns: 1fr 1fr 1fr;
	display: grid;
	gap: 30px;
}

.other-posts__title {
	color: black;
	margin-bottom: 30px;
}

.other-posts__title  span {
	color: #803772;
}

.other-post__link {
	text-align: center;
	padding-top: 30px;
}


.other-post__link .button {
	background: linear-gradient(135deg, #C844AF 0%, #CB4FD7 100%) !important;
	border: 1px solid #E058C8 !important;
	color: white !important;
}

.not-found__button {
	text-align: center;
}

.not-found__text {
	margin-bottom: 1rem;
}

.not-found__button .button {
	background: linear-gradient(135deg, #C844AF 0%, #CB4FD7 100%) !important;
	border: 1px solid #E058C8 !important;
	color: white !important;
}

.other-post__link .button:hover {
	opacity: 0.8;
}

.pagination > .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	list-style: none;
	padding: 36px 0;
}

.page-numbers a {

}

.pagination ul .page-numbers {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #4E2146;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	display: flex;
	justify-content: center;
	text-decoration: none;
	align-items: center;
}

.pagination ul .page-numbers:hover {
	opacity: 0.8;
}


.pagination ul {
	display: flex;
	padding: 0;
	justify-content: center;
	list-style: none;
	position: relative;
	width: 100%;
}

.page-numbers span {
	background: #e058c8;
	color: white !important;
}

.page-numbers li a img {
	filter: brightness(0) saturate(100%) invert(55%) sepia(19%) saturate(5323%) hue-rotate(281deg) brightness(93%) contrast(88%);
}

.page-numbers .dots {
	background-color: transparent;
	color: black !important;
}

@media (max-width: 992px) {
	.top-post-content__info {
		flex-direction: column;
	}
	.grid-3 {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
}

@media (max-width: 781px) {
	.top-post-content__meta {
		flex-direction: column;
		padding-bottom: 1rem;
	}
	.post-breadcrumbs {
		padding: 36px 0;
	}
	.post-content {
		padding: 100px 0;
		clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
	}
	.grid-3 {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.pagination ul .page-numbers {
		width: 30px;
		height: 30px;
	}
}