h1.es_h1 {
  color: #FFFFFF;
  line-height: 1.3em;    
  font-family: 'FutBook', Arial, Verdana, Tahoma;  
  font-weight: normal;
  font-size: 36px; 
  text-transform: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;  
}

/* < SM */
@media screen and (min-width: 0px) and (max-width: 767px) { 
  h1.es_h1 {
    font-size: 26px;
  } 
}

h1.es_h1:before {
  display: none;
}

@keyframes es_rainbow_flow {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 200% 50%;
	}
}

.es_descriptor {
	position: relative;
	line-height: 1.3em;
	font-family: 'FutBook', Arial, Verdana, Tahoma;
	font-weight: normal;
	font-size: 26px;
	text-transform: none;
	padding: 15px;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 30px;
	background-image: linear-gradient(
		90deg,
		#ff3366,
		#ff9933,
		#ffee33,
		#33dd66,
		#33aaff,
		#aa44ff,
		#ff3366
	);
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: es_rainbow_flow 5s linear infinite;
}

/* < SM */
@media screen and (min-width: 0px) and (max-width: 767px) { 
  .es_descriptor {
    font-size: 22px;
    line-height: 1.3em;
  } 
}

.es_descriptor::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	padding: 2px;
	background-image: linear-gradient(
		90deg,
		#ff3366,
		#ff9933,
		#ffee33,
		#33dd66,
		#33aaff,
		#aa44ff,
		#ff3366
	);
	background-size: 200% auto;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	animation: es_rainbow_flow 5s linear infinite;
}

.es_page .content blockquote,
.es_page .content blockquote p {
	font-family: 'DinRegular', Arial, Verdana, Tahoma;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	line-height: 1.6em;
	color: #FFFFFF;
}

/* < SM */
@media screen and (min-width: 0px) and (max-width: 767px) { 
  .es_page .content blockquote,
  .es_page .content blockquote p {
    font-size: 20px!important;
    line-height: 1.3em!important;
  } 
}

.es_page .content blockquote {
	position: relative;
	margin: 20px 0;
	padding: 20px 20px 20px 20px;
	border: none;
	border-radius: 8px;
	background: linear-gradient(
		135deg,
		rgba(94, 47, 201, 0.18) 0%,
		rgba(235, 20, 116, 0.1) 45%,
		rgba(18, 20, 22, 0.55) 100%
	);
	box-shadow: 0 0 20px rgba(94, 47, 201, 0.15);
	overflow: hidden;
}

.es_page .content blockquote p {
	padding: 0;
  margin: 0;
  line-height: 1.3em;
  text-align: center!important;
}

.es_page .content blockquote::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8px;
	padding: 2px;
	background: linear-gradient(135deg, #5e2fc9 0%, #eb1474 50%, #ff0c78 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.es_page .es_content_block_2 ol {
	list-style: none;
	counter-reset: es_ol_counter;
	margin: 20px 0;
	padding: 0;
}

.es_page .es_content_block_2 ol li {
	position: relative;
	counter-increment: es_ol_counter;
	margin: 0 0 16px 0;
	padding: 0 0 0 48px;
	min-height: 36px;
}

.es_page .es_content_block_2 ol li::before {
	content: counter(es_ol_counter);
	position: absolute;
	left: 0;
	top: -6px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, #5e2fc9 0%, #eb1474 50%, #ff0c78 100%);
	box-shadow: 0 0 12px rgba(94, 47, 201, 0.35);
	color: #ffffff;
	font-family: 'DinRegular', Arial, Verdana, Tahoma;
	font-size: 17px;
	font-weight: normal;
	line-height: 1;
}

.es_page .es_content_block_2 ol li p {
	margin: 0 0 8px 0;
	padding: 0;
}

.es_page .es_content_block_2 ol li p:last-child {
	margin-bottom: 0;
}

/* < SM */
@media screen and (min-width: 0px) and (max-width: 767.98px) {
	.es_page .content blockquote,
	.es_page .content blockquote p {
		font-size: 24px;
		line-height: 1.5em;
		text-align: center !important;
	}

	.es_page .es_content_block_2 ol li {
		padding-left: 44px;
	}

	.es_page .es_content_block_2 ol li::before {
		min-width: 32px;
		height: 32px;
		font-size: 15px;
	}
}

.es_page h3 {
  margin-top: 30px;
}