/*
 * GENERAL VARIABLES
 */
/* COLORS */
/* orange */
/* dark violet */
/* Mixin - Grid */
/* NavSpacer */
/* Absolute Position */
/*
 * BASICS
 */
body {
  font-family: 'Lato', sans-serif;
  color: #fff;
  background: #fff;
}
main {
	overflow: hidden;
}
p {
  font-family: 'Lato', sans-serif !important;
}
.wrap {
  max-width: 1140px !important;
  margin: 0 auto;
  padding: 0 30px !important;
  position: relative;
  width: 100%;
}
.simple-button,
a.wp-element-button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  transition: all 0.4s;
  padding: 10px 15px;
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  background: #bb44f0;
  border: none;
  color: #fff;
  font-size: 105%;
  z-index: 0;
}
.simple-button:hover,
a.wp-element-button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: #660094;
  color: #fff;
  cursor: pointer;
}
hr,
.wp-block-separator {
  height: 0px !important;
  border: 1px solid #fff;
  margin: 60px auto !important;
  overflow: visible;
  width: 250px;
  max-width: 720px !important;
}
h1,
.entry-header .entry-title {
  color: #fff;
  font-family: 'Playwrite DE LA', cursiv;
  font-size: 180% !important;
  font-weight: 300 !important;
  padding: 0 0 0 0;
  margin: 0 !important;
  text-transform: none !important;
}
h2,
.entry-content h2 {
  color: #fff;
  font-family: 'Playwrite DE LA', cursiv !important;
  font-size: 150% !important;
  font-weight: 300 !important;
}
h2.home-heading,
.entry-content h2.home-heading {
  font-size: 250%;
}
h3,
.entry-content h3 {
  color: #fff;
  font-family: 'Playwrite DE LA', cursiv;
  font-size: 120%;
  font-weight: 300;
}
.has-global-padding {
  padding-left: 30px;
  padding-right: 30px;
}
.has-global-padding > .alignfull {
  margin-left: -30px;
  margin-right: -30px;
}
ul#category-list {
  padding: 0;
  width: 100%;
}
ul#category-list > li {
  display: flex;
  position: relative;
  min-height: 300px;
}
ul#category-list > li:nth-child(2n +1) {
  flex-direction: row-reverse;
}
ul#category-list > li:nth-child(2n +1) .image-item img {
  border-radius: 0 0 50px 0;
}
ul#category-list > li:nth-child(2n +1) .content-item {
  border-radius: 50px 0 0 0;
}
ul#category-list > li:not(:first-child) {
  padding-top: 45px;
  margin-top: 45px;
  position: relative;
}
ul#category-list > li:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 2px;
  background-color: #bb44f0;
}
ul#category-list > li:hover .image-item img {
  filter: grayscale(0);
}
ul#category-list > li .image-item {
  position: relative;
  width: 50%;
}
ul#category-list > li .image-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px 0 0 0;
  filter: grayscale(1);
  transition: all 0.4s;
}
ul#category-list > li .content-item {
  position: relative;
  width: 50%;
  padding: 45px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0 0 50px 0;
  transition: all 0.4s;
  overflow: hidden;
  border: 3px solid #fff;
}
ul#category-list > li .content-item:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(315deg, #bb44f0 3%, #9614d0 38%, #660094 68%, #1c002a 98%);
  animation: animation 10s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
  z-index: -1;
}
@keyframes animation {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
ul#category-list > li .content-item h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 25px;
  transition: all 0.4s;
  color: #fff;
}
ul#category-list > li .content-item h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  transform: translateX(-50%);
  height: 3px;
  background-color: #fff;
  transition: all 0.4s;
}
ul#category-list > li .content-item > span {
  display: block;
  font-size: 80%;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  transition: all 0.4s;
}
ul#category-list > li .content-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media only screen and (max-width: 750px) {
  ul#category-list > li {
    flex-direction: column !important;
  }
  ul#category-list > li .image-item {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
  }
  ul#category-list > li .image-item img {
    border-radius: 50px 0 0px 0 !important;
    filter: grayscale(0) !important;
  }
  ul#category-list > li .content-item {
    width: calc(100% - 2 *  45px);
    min-height: 200px;
    border-radius: 0px 0 50px 0 !important;
    border: none;
    border-top: 3px solid #fff;
  }
}
/* lato-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 100;
  src: url('../assets/fonts/lato/lato-v24-latin-100.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-100.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-100.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-100.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-100.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-100italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 100;
  src: url('../assets/fonts/lato/lato-v24-latin-100italic.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-100italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-100italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-100italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-100italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-100italic.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/fonts/lato/lato-v24-latin-300.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-300.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-300italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  src: url('../assets/fonts/lato/lato-v24-latin-300italic.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-300italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-300italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-300italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-300italic.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/lato/lato-v24-latin-regular.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-regular.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../assets/fonts/lato/lato-v24-latin-italic.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-italic.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/lato/lato-v24-latin-700.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-700.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url('../assets/fonts/lato/lato-v24-latin-700italic.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-700italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-700italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-700italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-700italic.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-900 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url('../assets/fonts/lato/lato-v24-latin-900.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-900.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-900.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-900.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-900.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* lato-900italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 900;
  src: url('../assets/fonts/lato/lato-v24-latin-900italic.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/lato/lato-v24-latin-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/lato/lato-v24-latin-900italic.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/lato/lato-v24-latin-900italic.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/lato/lato-v24-latin-900italic.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/lato/lato-v24-latin-900italic.svg#Lato') format('svg');
  /* Legacy iOS */
}
/* playwrite-de-la-100 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playwrite DE LA';
  font-style: normal;
  font-weight: 100;
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-100.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-100.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-100.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-100.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-100.svg#PlaywriteDELA') format('svg');
  /* Legacy iOS */
}
/* playwrite-de-la-200 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playwrite DE LA';
  font-style: normal;
  font-weight: 200;
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-200.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-200.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-200.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-200.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-200.svg#PlaywriteDELA') format('svg');
  /* Legacy iOS */
}
/* playwrite-de-la-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playwrite DE LA';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-300.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-300.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-300.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-300.svg#PlaywriteDELA') format('svg');
  /* Legacy iOS */
}
/* playwrite-de-la-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Playwrite DE LA';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-regular.eot');
  /* IE9 Compat Modes */
  src: url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */ url('../assets/fonts/playwrite/playwrite-de-la-v4-latin-regular.svg#PlaywriteDELA') format('svg');
  /* Legacy iOS */
}
/*
 * Text Media
 */
.page-template-default .wp-block-media-text {
  margin-top: 0;
}
.page-template-default .wp-block-media-text figure {
  position: relative;
  height: 100%;
}
.page-template-default .wp-block-media-text figure img {
  position: relative;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.page-template-default .wp-block-media-text.has-media-on-the-right {
  justify-items: flex-end;
}
.page-template-default .wp-block-media-text.has-media-on-the-right figure {
  width: 100%;
}
.page-template-default .wp-block-media-text.has-media-on-the-right figure img {
  left: 0;
}
.schema-faq-section {
  display: flex;
  align-items: center;
  gap: 30px;
}
.schema-faq-section strong {
  width: 40%;
}
.schema-faq-section .schema-faq-answer {
  width: 60%;
}
@media only screen and (max-width: 700px) {
  .schema-faq-section {
    display: block;
  }
  .schema-faq-section strong,
  .schema-faq-section .schema-faq-answer {
    width: 100%;
  }
}
bubles {
  border-radius: 100%;
  position: absolute;
  pointer-events: none !important;
  background: #20e3a2;
  box-shadow: 10px 10px 30px #31c8a2, -10px -10px 30px #31c8a2;
  animation: colorgen 1s infinite;
  z-index: -1;
}
@keyframes colorgen {
  0% {
    opacity: 1;
    filter: hue-rotate(0deg);
  }
  100% {
    opacity: 0;
    filter: hue-rotate(270deg);
  }
}
#circularcursor {
  background-color: #20e3a2;
  box-shadow: 10px 10px 30px #31c8a2, -10px -10px 30px #31c8a2;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  position: absolute;
  pointer-events: all;
  z-index: 99999999;
}
/*
 * 01) BODY
 */
body {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  user-select: none;
}
h1,
h2,
p {
  text-shadow: 0 0 20px #000, 0 0 30px #000;
}
@media only screen and (min-width: 1024px) {
  html,
  a:hover,
  a {
    cursor: none !important;
  }
}
/*
 * 02) HEADER
 */
/*
 * HEADER
 */
header.wp-block-template-part {
  position: relative;
  z-index: 1000;
  padding: 30px 0;
}
header.wp-block-template-part .wp-block-group {
  padding-bottom: 0 !important;
}
header.wp-block-template-part .wp-social-link a svg {
  position: relative;
  top: -1px;
  left: 1px;
  transition: all 0.4s;
}
header.wp-block-template-part .wp-social-link a:hover svg {
  fill: #660094 !important;
}
header.wp-block-template-part .wp-block-navigation__container > li {
  height: 40px;
  line-height: 40px;
}
header.wp-block-template-part .wp-block-navigation__container > li > a {
  font-size: 140%;
  transition: all 0.4s;
  color: #fff;
}
header.wp-block-template-part .wp-block-navigation__container > li > a:hover {
  color: #9614d0;
}
header.wp-block-template-part .wp-block-navigation__container > li ul li {
  background-color: #bb44f0;
  height: 40px;
  line-height: 40px;
  transition: all 0.4s;
}
header.wp-block-template-part .wp-block-navigation__container > li ul li:not(:first-child) {
  border-top: 1px solid #fff;
}
@media only screen and (min-width: 601px) {
  header.wp-block-template-part .wp-block-navigation__container > li ul li a {
    color: #fff !important;
  }
}
header.wp-block-template-part .wp-block-navigation__container > li ul li a {
  font-size: 115%;
}
header.wp-block-template-part .wp-block-navigation__container > li ul li:hover {
  background-color: #9614d0;
}
header.wp-block-template-part .wp-block-navigation__container > li ul li:hover a {
  color: #fff;
}
/*
 * 03) FOOTER
 */
/*
 * FOOTER
 */
footer.wp-block-template-part {
  position: relative;
  margin-top: 0;
  padding: 0 0;
  background: transparent;
  color: #fff;
  padding: 30px 0;
  margin-top: 60px;
  border-top: 2px solid #fff;
}
footer.wp-block-template-part .wp-block-navigation__container a {
  font-size: 115%;
}
footer.wp-block-template-part .wp-block-group {
  padding-top: 0 !important;
}
footer.wp-block-template-part a,
footer.wp-block-template-part p,
footer.wp-block-template-part h2,
footer.wp-block-template-part h3 {
  color: #fff;
}
footer.wp-block-template-part a:hover {
  color: #660094 !important;
}
/*
 * 04) MAIN
 */
main {
  margin-top: 0 !important;
  padding: 45px 0 0 0;
}
main section {
  margin: 0;
}
.cta {
  padding: 45px 0;
  text-align: center;
  margin-bottom: -60px !important;
}
.cta .wp-block-cover__background {
  background-color: #000 !important;
}
.cta h2 {
  color: #fff;
  font-size: 225% !important;
}
.cta h2,
.cta p {
  text-shadow: 0 0 10px #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  line-height: 1.4;
}
.cta a {
  margin-top: 10px;
  min-width: 200px;
}
.wp-site-blocks {
  padding-bottom: 0;
}
input[type="text"],
input[type="email"],
textarea,
select {
  background-color: #fff;
  color: #333;
  width: 100%;
  border: 2px solid #bb44f0;
  height: 35px;
  line-height: 35px;
  margin-top: 10px;
}
@media only screen and (max-width: 750px) {
  input[type="text"],
  input[type="email"],
  textarea,
  select {
    width: 100%;
  }
}
textarea {
  min-height: 250px;
}
.package-list .wp-block-cover__inner-container {
  text-shadow: 2px 2px 10px #fff;
}
/*
 * 05) NAVIGATION
 */
.wp-block-social-link {
  background: #660094 !important;
}
.wp-block-social-link:hover {
  background: #fff !important;
}
.wp-block-social-link svg {
  top: 2px;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .wp-block-navigation > li.has-child {
    line-height: unset !important;
    height: unset !important;
  }
  .wp-block-navigation > li.has-child a,
  .wp-block-navigation > li.has-child span {
    color: #000;
  }
}
/*
 * 06) BLOG
 */
/*
 * 07) EXTENSIONS
 */
