/*!**************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js!./assets/scss/main.scss ***!
  \**************************************************************************************************************************************************************************************/
:root {
  --max-width: 164rem;
  --max-container: 124rem;
  --default-space: 10rem;
  --grid-gap: 4rem;
  --padding-small: 4rem;
}
@media only screen and (max-width: 767px) {
  :root {
    --default-space: 3rem;
  }
}

.maincontainer > *:first-child {
  padding-top: calc(var(--default-space) * 1.8);
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  padding-left: calc(var(--container-margin, 6.25rem) * 0.5);
  padding-right: calc(var(--container-margin, 6.25rem) * 0.5);
}
@media only screen and (max-width: 767px) {
  .container {
    --container-margin: 3rem;
  }
}

section {
  position: relative;
  display: flex;
  width: 100%;
  padding-top: var(--default-space);
  padding-bottom: var(--default-space);
  z-index: 1;
}
section::before {
  content: "";
  left: 50%;
  max-width: 100.2vw;
  transform: var(--transform, translateX(-50%));
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 125.25vw;
  background: var(--backgroundColor);
}
section[style="--backgroundColor: var(--white);"] {
  color: var(--black);
}

section:not(.has_bg) + section.has_bg::before {
  border-radius: 2.5rem 2.5rem 0 0;
}

.block-grid {
  overflow: visible;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: var(--grid-margin, 1.875rem);
}
@media only screen and (max-width: 767px) {
  .block-grid {
    flex-direction: column;
  }
}
.block-grid > li {
  list-style: none;
  width: 100%;
}
.block-grid.one-up > li {
  width: 100%;
}
.block-grid.two-up > li {
  width: calc(50% - var(--grid-margin, 1.875rem) * 0.5);
}
.block-grid.three-up > li {
  width: calc(33.333% - var(--grid-margin, 1.875rem) * 0.667);
}
.block-grid.four-up > li {
  width: calc(25% - var(--grid-margin, 1.875rem) * 0.75);
}
.block-grid.five-up > li {
  width: calc(20% - var(--grid-margin, 1.875rem) * 0.8);
}
.block-grid.six-up > li {
  width: calc(16.666% - var(--grid-margin, 1.875rem) * 0.833);
}
@media only screen and (max-width: 767px) {
  .block-grid.one-up > li {
    width: 100%;
  }
  .block-grid.two-up > li {
    width: 100%;
  }
  .block-grid.three-up > li {
    width: 100%;
  }
  .block-grid.four-up > li {
    width: 100%;
  }
  .block-grid.five-up > li {
    width: 100%;
  }
  .block-grid.six-up > li {
    width: 100%;
  }
}

.Document.view.home .maincontainer {
  flex-direction: column;
  align-items: center;
}
.Document.view.home .maincontainer > *:first-child {
  padding-top: 10rem;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-family: var(--font-text);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  max-height: var(--vh, 100vh);
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: var(--font-size-base);
  background: var(--bgcolor);
  color: var(--textcolor);
  transition: all 0.3s ease-in-out;
}
body.wp-admin {
  background: var(--white);
  color: var(--black);
}
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.6;
  transform: scale(1) translate(0, 0);
  transition: transform 0.3s linear;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
body::before {
  background: var(--themecolor);
  width: 37.5rem;
  height: 37.5rem;
  filter: blur(10rem);
  left: 10%;
  top: 10%;
  transition-delay: 0.3s;
  animation-name: moveBefore;
  animation-duration: 8s;
}
@media only screen and (max-width: 767px) {
  body::before {
    display: none;
  }
}
body::after {
  background: var(--themecolor2);
  width: 47.5rem;
  height: 47.5rem;
  filter: blur(20rem);
  right: 10%;
  bottom: 10%;
  transition-delay: 0.6s;
  animation-name: moveAfter;
  animation-duration: 10s;
}
@media only screen and (max-width: 767px) {
  body::after {
    top: 5rem;
  }
}
@keyframes moveBefore {
  0% {
    transform: scale(1) translate(0, 0);
  }
  20% {
    transform: scale(1) translate(4rem, 2rem);
  }
  40% {
    transform: scale(1) translate(8rem, 0);
  }
  60% {
    transform: scale(1) translate(4rem, -2rem);
  }
  80% {
    transform: scale(1) translate(-4rem, 2rem);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes moveAfter {
  0% {
    transform: scale(1) translate(0, 0);
  }
  20% {
    transform: scale(1) translate(-4rem, -2rem);
  }
  40% {
    transform: scale(1) translate(-8rem, 0);
  }
  60% {
    transform: scale(1) translate(-4rem, 2rem);
  }
  80% {
    transform: scale(1) translate(4rem, -2rem);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

body.theme--light {
  --bgcolor: #fff;
  --textcolor: #000;
}

@media only screen and (max-width: 767px) {
  .maincontainer {
    overflow: hidden;
  }
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}
ul li {
  padding-left: 0;
}

h1, .h1 {
  font-size: 7rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 3.5rem;
  }
}

h2, .h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 3rem;
  }
}

h3, .h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 2rem;
  }
}

h5, .h5 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  h5, .h5 {
    font-size: 2rem;
  }
}

.Heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 72rem;
  margin-inline: auto;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .Heading {
    text-align: left;
  }
}

.subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--themecolor3);
}

.Intro {
  font-size: 1.8rem;
  line-height: 1.8;
}

.Content, .ck-content {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  line-height: 2;
}
.Content P + h3, .ck-content P + h3 {
  margin-top: 3rem;
}
.Content h3, .ck-content h3 {
  margin-bottom: 1rem;
}
.Content p > a, .ck-content p > a {
  color: var(--themecolor3);
  text-decoration: underline;
}
.Content p > a:hover, .ck-content p > a:hover {
  text-decoration: none;
}

img {
  border-radius: var(--border-radius-s);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

:root {
  --nav-fontsize: 1.8rem;
  --nav-borderradius: 5rem;
  --button-vspace: 1.4rem;
  --button-hspace: 2.8rem;
  --nav_spacing: 1.5rem;
}

nav {
  display: flex;
  flex-direction: var(--nav_flex-direction, row);
  justify-content: var(--nav_justify-content, flex-start);
  flex-wrap: wrap;
  align-items: var(--nav_align-items, center);
  gap: var(--nav_spacing, 0.625rem);
  width: var(--nav_width, 100%);
  margin-top: var(--nav_topmargin, 1.875rem);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 767px) {
  nav {
    justify-content: center;
  }
}

.more:not(.outline) {
  background: linear-gradient(90deg, var(--themecolor), var(--themecolor2), var(--themecolor2));
  background-size: 300% 100%;
  background-position: 0% 0%;
  color: var(--textcolor);
  border: none;
  font-size: var(--nav-fontsize);
  border-radius: var(--nav-borderradius);
  padding: var(--button-vspace) var(--button-hspace);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.more:not(.outline):hover {
  background-position: 100% 0%;
  box-shadow: 0 0 20px rgba(138, 41, 145, 0.6);
}
.more.outline {
  background: transparent;
  border: 1px solid var(--themecolor2);
  color: var(--themecolor2);
  border-radius: var(--nav-borderradius);
  padding: var(--button-vspace) var(--button-hspace);
  transition: all 0.3s ease-in-out;
}
.more.outline:hover {
  background: var(--themecolor2);
  border-color: var(--themecolor2);
  color: #fff;
}
.more.inline {
  color: var(--textcolor-dark);
  background: transparent;
  border: none;
  padding: 0;
  text-decoration: underline;
}
.more.inline:hover {
  box-shadow: none;
  text-decoration: none;
}

@font-face {
  font-family: "Inter";
  src: url(../../19873a15cf8af83ccda7.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../../4f0caf5ae9e89afce04f.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-heading: 'Inter';
  --font-text: 'Inter';
  --font-size-base: 1.6rem;
  --textcolor: #ffffff;
  --textcolor-dark: #141414;
  --border-radius-s: 2rem;
  --border-radius-m: 2.5rem;
  --white: #ffffff;
  --black: #000000;
  --themecolor: #4B2D8B;
  --themecolor2: #8A2991;
  --themecolor3: #5597A9;
  --themecolor4: #141414;
  --themecolor5: #303030;
  --themecolor6: #F5F5F5;
  --bgcolor: #000000;
  --border: #383838;
  --border2: #C5C5C5;
}

.footer {
  --footerTop-padding: 10rem;
  --footerMiddle-padding: 14rem;
  --footerBottom-padding: 2rem;
}
@media only screen and (max-width: 767px) {
  .footer {
    --footerMiddle-padding: 4rem;
  }
}
.footer .details.item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .details .contactdetails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .details .contactdetails a:hover {
  background: linear-gradient(90deg, var(--themecolor), var(--themecolor2));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.footer .details .h5 {
  margin-bottom: 1rem;
}
.footer #footerTop, .footer #footerMiddle, .footer #footerBottom {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  padding-left: calc(var(--container-margin, 6.25rem) * 0.5);
  padding-right: calc(var(--container-margin, 6.25rem) * 0.5);
}
.footer #footerTop {
  padding: var(--footerTop-padding) 0;
}
.footer #footerMiddle {
  padding: var(--footerMiddle-padding) 0;
  max-width: var(--max-container);
  margin-inline: auto;
}
.footer #footerMiddle .container {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer #footerMiddle .container {
    flex-wrap: wrap;
  }
}
.footer #footerMiddle .container > * {
  display: flex;
  flex-direction: column;
}
.footer #footerMiddle .container > .left {
  margin-right: 8rem;
  gap: 8rem;
  padding-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .footer #footerMiddle .container > .left {
    width: 50%;
    margin: 0;
    padding: 0;
    gap: 2rem;
  }
}
.footer #footerMiddle .container > .middle {
  gap: 1rem;
  padding-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .footer #footerMiddle .container > .middle {
    padding: 0;
  }
}
.footer #footerMiddle .container > .right {
  flex: 1;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .footer #footerMiddle .container > .right {
    align-items: flex-start;
    margin-top: 3rem;
  }
}
.footer #footerMiddle .container > .right nav {
  font-size: 5rem;
  font-weight: bold;
  color: white;
}
.footer #footerMiddle .container > .right nav > ul {
  flex-direction: column;
}
.footer #footerBottom {
  padding: var(--footerBottom-padding) 0;
  border-top: 1px solid var(--border);
}
.footer #footerBottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer #footerBottom nav {
  margin-top: 0;
}

/*# sourceMappingURL=main.css.map*/