html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.hide {
  display: none;
}
.bold-txt {
  font-weight: 700;
}
.t-shadow {
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.32), 0px -4px 12px rgba(0, 0, 0, 0.1);
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: absolute;
}
.p-fixed {
  position: fixed;
}
.p-initial {
  position: initial;
}
.w-100 {
  width: 100%;
}
.w-80 {
  width: 80%;
}
.h-100 {
  height: 100%;
}
.w-auto {
  width: auto;
}
.h-auto {
  height: auto;
}
.m-auto {
  margin: auto;
}
.m-0-auto {
  margin: 0 auto;
}
.p-0 {
  padding: 0 !important;
}
.p-l-0 {
  padding-left: 0;
}
.p-r-0 {
  padding-right: 0;
}
.p-l-25 {
  padding-left: 25px;
}
.p-r-25 {
  padding-right: 25px;
}
.p-l-r-25 {
  padding: 0 25px;
}
.p-t-b-25 {
  padding: 25px 0;
}
.p-l-15 {
  padding-left: 15px;
}
.p-r-15 {
  padding-right: 15px;
}
.p-l-r-15 {
  padding: 0 15px;
}
.p-t-b-15 {
  padding: 15px 0;
}
.m-0 {
  margin: 0 !important;
}
.m-5-0 {
  margin: 5px 0;
}
.m-10-0 {
  margin: 10px 0;
}
.m-20-0 {
  margin: 20px 0;
}
.m-l-r-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.m-t-12 {
  margin-top: 12px;
}
.m-t-20 {
  margin-top: 20px;
}
.margin-c-auto {
  margin: 0 auto;
}
.module {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
}
.inside {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.f-none {
  float: none;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.c-none {
  clear: none;
}
.c-left {
  clear: left;
}
.c-right {
  clear: right;
}
.c-both {
  clear: both;
}
.flex-simple {
  display: flex;
}
.flex-container {
  display: flex;
}
.inline-container {
  display: inline-block;
}
.block-container {
  display: block;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-column {
  flex-direction: column;
}
.justify-content-center {
  justify-content: center;
}
.align-content-center {
  align-content: center;
}
.align-item-top {
  align-items: flex-start;
}
.align-items-center {
  align-items: center;
}
.justify-content-space-between {
  justify-content: space-between;
}
.align-self-center {
  align-self: center;
}
.flex-100 {
  width: 100%;
}
.flex-90 {
  width: 90%;
}
.flex-80 {
  width: 80%;
}
.flex-70 {
  width: 70%;
}
.flex-75 {
  width: 75%;
}
.flex-65 {
  width: 65%;
}
.flex-60 {
  width: 60%;
}
.flex-50 {
  width: 50%;
}
.flex-40 {
  width: 40%;
}
.flex-33 {
  width: 33.333333%;
}
.flex-35 {
  width: 35%;
}
.flex-30 {
  width: 30%;
}
.flex-25 {
  width: 25%;
}
.flex-20 {
  width: 20%;
}
.flex-16 {
  width: 16.666666%;
}
.flex-10 {
  width: 10%;
}
.flex-5 {
  width: 5%;
}
.flex-50-gap {
  width: calc(50% - 10px);
}
.flex-33-gap {
  width: calc(33.33333% - 14px);
}
.flex-25-gap {
  width: calc(25% - 15px);
}
.flex-20-gap {
  width: calc(20% - 16px);
}
.flex-50-gap-24 {
  width: calc(50% - 12px);
}
.flex-33-gap-24 {
  width: calc(33.33333% - 16px);
}
.flex-25-gap-24 {
  width: calc(25% - 18px);
}
.flex-20-gap-24 {
  width: calc(20% - 20px);
}
.flex-50-gap-30 {
  width: calc(50% - 15px);
}
.flex-33-gap-30 {
  width: calc(33.33333% - 20px);
}
.flex-25-gap-30 {
  width: calc(25% - 23px);
}
.flex-20-gap-30 {
  width: calc(20% - 24px);
}
.flex-50-gap-50 {
  width: calc(50% - 25px);
}
.flex-33-gap-50 {
  width: calc(33.33333% - 34px);
}
.flex-25-gap-50 {
  width: calc(25% - 38px);
}
.flex-20-gap-50 {
  width: calc(20% - 40px);
}
.a-left {
  text-align: left;
}
.a-center {
  text-align: center;
}
.a-right {
  text-align: right;
}
.va-middle {
  vertical-align: middle;
}
.va-top {
  vertical-align: top;
}
.va-bottom {
  vertical-align: bottom;
}
.txt-upper {
  text-transform: uppercase;
}
.txt-lower {
  text-transform: lowercase;
}
.txt-capit {
  text-transform: capitalize;
}
.txt-under {
  text-decoration: underline;
}
.txt-no-under {
  text-decoration: none;
}
.txt-small {
  font-size: 14px;
}
a {
  cursor: pointer;
}
a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}
.no-gap {
  gap: 0 !important;
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
}
.container-full {
  max-width: 100%;
  width: 100%;
  padding: 0 50px;
}
.container-1400 {
  max-width: 1280px;
  width: 100%;
  padding: 0 50px;
}
.container-1140 {
  max-width: 1140px;
  width: 100%;
  padding: 0 50px;
}
body {
  --primary--color: #713dcb;
  --secondary--color: #BB65DC;
}
.top-bar {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.top-bar ul li a .wp-block-navigation-item__label i {
  margin-right: 8px;
}
.top-bar ul li a:hover {
  color: var(--primary--color) !important;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.sticky header {
  top: -46px;
  box-shadow: 0 1px 13px 0px #e8e8e8;
  transition: all 0.2s ease-in-out;
}
main {
  margin-top: 115px !important;
}
.logged-in header {
  top: 32px;
}
.logged-in.sticky header {
  top: -16px;
  box-shadow: 0 1px 13px 0px #e8e8e8;
  transition: all 0.2s ease-in-out;
}
.wp-block-button__link:hover,
.cover-button:hover {
  background-color: #BB65DC !important;
  color: #fff !important;
}
.cover-medium-module {
  padding: 80px 0;
  position: relative;
  margin-top: 105px;
  margin-bottom: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cover-medium-module .hover-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cover-medium-module .cover-content-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.cover-medium-module .cover-content-wrapper .heading {
  color: #fff;
  margin: 10px 0;
  font-size: 70px;
  font-weight: bold;
}
.cover-medium-module .cover-content-wrapper .tagline {
  color: #fff;
  margin: 10px 0;
  font-size: 24px;
  line-height: 24px;
}
.cover-medium-module .cover-content-wrapper #breadcrumbs {
  color: #fff;
  z-index: 2;
}
.cover-medium-module .cover-content-wrapper #breadcrumbs a {
  color: #fff;
}
.cover-medium-module .cover-content-wrapper #breadcrumbs a:hover {
  color: #713dcb;
}
.cover-medium-module .cover-content-wrapper .cover-button {
  background-color: #713dcb;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  line-height: inherit;
  padding-top: 0.6rem;
  padding-right: 1rem;
  padding-bottom: 0.6rem;
  padding-left: 1rem;
  margin: 20px 0;
  border-radius: 0.33rem;
}
.cover-small-module {
  padding: 100px 0;
  position: relative;
  margin-bottom: 0;
  margin-top: 50px;
  min-height: 300px;
  display: flex;
  align-items: center;
}
.cover-small-module::after {
  content: '';
  position: absolute;
  width: 100%;
  background-size: cover;
  top: 0;
  right: 0;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.cover-small-module .hover-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cover-small-module .cover-content-wrapper {
  position: relative;
  overflow: hidden;
}
.cover-small-module .cover-content-wrapper .heading {
  color: #fff;
  margin: 10px 0;
  font-weight: bold;
}
.cover-small-module .cover-content-wrapper .tagline {
  color: #fff;
  margin: 10px 0;
  font-size: 16px;
  line-height: 24px;
}
.cover-small-module .cover-content-wrapper #breadcrumbs {
  color: #fff;
  z-index: 2;
}
.cover-small-module .cover-content-wrapper #breadcrumbs a {
  color: #fff;
}
.cover-small-module .cover-content-wrapper #breadcrumbs a:hover {
  color: #713dcb;
}
.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.contact-form span {
  display: inline-flex;
  flex-wrap: wrap;
}
.contact-form span input,
.contact-form span textarea {
  width: 100%;
  padding: 12px 8px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #cbcbcb;
  font-family: "Inter", sans-serif;
}
.contact-form span input::placeholder,
.contact-form span textarea::placeholder {
  color: #b8b8b8;
}
.contact-form input[type="submit"] {
  width: 100%;
  padding: 12px 8px;
  font-size: 16px;
  border-radius: 6px;
  color: #fff;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--primary--color);
  background-color: var(--primary--color);
  cursor: pointer;
}
.contact-form input[type="submit"]:hover {
  font-family: "Inter", sans-serif;
  background-color: var(--secondary--color);
  border: 1px solid var(--secondary--color);
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 50px;
  z-index: 99999999999999999999999999999;
  display: none;
}
.back-to-top.show {
  display: block;
}
.back-to-top a {
  color: #fff;
  padding: 11px 15px;
  display: block;
  background-color: var(--primary--color);
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}
.back-to-top a:hover {
  background-color: var(--secondary--color);
  transition: all 0.2s ease-in-out;
}
footer {
  background-color: #fff;
  margin-top: 0;
}
.wp-block-post-template .people.type-people figure {
  border-radius: 16px;
  overflow: hidden;
}
.wp-block-post-template .people.type-people figure a {
  overflow: hidden;
  display: block;
}
.wp-block-post-template .people.type-people figure a img {
  transform: scale(1);
  display: block;
  transition: all 0.2s ease-in-out;
  border-radius: 0;
}
.wp-block-post-template .people.type-people figure a:hover img {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}
.is-style-asterisk:before {
  background: var(--primary--color) !important;
}
@media only screen and (max-width: 900px) {
  .cover-medium-module .cover-content-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .custom-height {
    height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .container-1400 {
    padding: 0;
  }
  .cover-medium-module {
    margin-top: 0;
  }
  .cover-medium-module .cover-content-wrapper .heading {
    font-size: 50px;
  }
  .cover-medium-module .cover-content-wrapper .tagline {
    font-size: 20px;
  }
  .no-row {
    display: block !important;
  }
  .post-image {
    width: 100% !important;
  }
}
