@charset "UTF-8";
/* FONTS */
/* FONT WEIGHTS */
html,
body {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1640px;
  }
}

.btn,
.button.gform_button {
  color: #fff;
  background-color: #6C63FF;
  border-radius: 5px;
  padding: 8px 65px;
  font-size: 1.1em;
  font-weight: 700;
  transition: 500ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn:hover,
.button.gform_button:hover {
  color: #fff;
  background-color: #463fae;
}

a {
  color: #6C63FF;
}

.hamburger-container {
  display: none;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .hamburger-container {
    display: flex;
  }
}

header {
  padding: 20px 0;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
}
header .logo img,
header .logo svg {
  width: 100px;
}
header .logo p {
  font-size: 40px;
  color: #4D4D4D;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 992px) {
  header .logo p {
    display: none;
  }
}
header .menu-header-menu-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
@media (max-width: 1199px) {
  header .menu-header-menu-container {
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 0;
    background-color: #6C63FF;
    opacity: 0;
    transition: 300ms ease;
    pointer-events: none;
  }
}
header .menu-header-menu-container.is-active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
header .menu-header-menu-container .menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
@media (max-width: 1199px) {
  header .menu-header-menu-container .menu {
    display: flex;
    flex-direction: column;
  }
}
header .menu-header-menu-container .menu li {
  margin: 0;
}
header .menu-header-menu-container .menu li.current-menu-item a {
  color: #6C63FF;
}
@media (max-width: 1199px) {
  header .menu-header-menu-container .menu li.current-menu-item a {
    color: #fff;
  }
}
header .menu-header-menu-container .menu li a {
  color: #000;
  padding: 5px 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
@media (max-width: 1199px) {
  header .menu-header-menu-container .menu li a {
    font-size: 25px;
  }
}
header .menu-header-menu-container .menu li a:hover {
  color: #6C63FF;
}
@media (max-width: 1199px) {
  header .menu-header-menu-container .menu li a:hover {
    color: #fff;
  }
}

.hero {
  position: relative;
  background-color: #6C63FF;
  padding: 150px 0;
}
@media (max-width: 1199px) {
  .hero {
    padding: 50px 0;
  }
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-color: #4a45af;
  z-index: 10;
  -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}
@media (max-width: 1199px) {
  .hero:before {
    width: 100%;
  }
}
.hero .image {
  position: absolute;
  bottom: 0;
  right: 0%;
  height: 75%;
}
@media (max-width: 1199px) {
  .hero .image {
    height: 44%;
    z-index: 10;
  }
}
@media (max-width: 768px) {
  .hero .image {
    display: none;
  }
}
.hero .image img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
.hero .container {
  position: relative;
  z-index: 20;
}
.hero .container .text-container h1 {
  font-weight: 900;
  font-size: 72px;
  color: #fff;
}
@media (max-width: 1199px) {
  .hero .container .text-container h1 {
    font-size: 50px;
  }
}
.hero .container .text-container small {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 15px;
  display: block;
}
.hero .container .text-container p {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
.hero .container .text-container .buttons {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .hero .container .text-container .buttons {
    flex-direction: column;
  }
}
.hero .container .text-container .buttons .btn {
  background-color: #fff;
  color: #6C63FF;
  border-radius: 5px;
  padding: 8px 65px;
  font-size: 1.1em;
  font-weight: 700;
  border: 1px solid transparent;
}
.hero .container .text-container .buttons .btn:hover {
  background-color: #6C63FF;
  border: 1px solid #4a45af;
  color: #fff;
}

.banner .background-image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.banner .background-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6C63FF;
  opacity: 0.17;
}
.banner .background-image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/6;
}

.introduction {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.introduction.page-content .text-container p,
.introduction.page-content .text-container ul li,
.introduction.page-content .text-container ol li {
  font-size: 1.1em;
  line-height: 34px;
}
.introduction.is-small {
  padding: 0 0 0px;
}
.introduction.is-small:last-of-type {
  padding-bottom: 50px;
}
.introduction.is-small:first-of-type {
  padding-top: 50px;
}
.introduction .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: ¡;
}
.introduction .background-image img,
.introduction .background-image svg {
  display: block;
  transform: translate(-25%, -25%);
  opacity: 0.17;
}
.introduction .text-container {
  position: relative;
  z-index: 100;
}
.introduction .text-container h1,
.introduction .text-container h2 {
  text-align: center;
  color: #6C63FF;
  font-weight: 900;
  font-size: 72px;
}
.introduction .text-container h3 {
  color: #6C63FF;
  font-weight: 900;
  font-size: 42px;
}
.introduction .text-container p {
  text-align: center;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 1.1em;
}
.introduction .buttons {
  position: relative;
  z-index: 100;
  text-align: center;
}

.in-col-with {
  background-color: rgba(108, 99, 255, 0.13);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}
.in-col-with .backdrop-text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-col-with .backdrop-text h2 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #6C63FF;
  color: transparent;
  font-size: 100px;
  font-weight: 900;
  text-align: center;
  margin: 0;
}
.in-col-with .in-col-slider .slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-col-with .in-col-slider .slide svg,
.in-col-with .in-col-slider .slide img {
  height: 140px;
  max-width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.expertises {
  padding: 50px 0;
}
.expertises .titel {
  text-align: center;
  color: #6C63FF;
  font-size: 72px;
  font-weight: 900;
  margin: 0;
}
@media (max-width: 1199px) {
  .expertises .titel {
    font-size: 50px;
  }
}
.expertises .expertise-box {
  padding: 25px;
  background-color: #f8f8f8;
  border-radius: 25px;
  position: relative;
  margin-top: 50px;
}
.expertises .expertise-box .backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertises .expertise-box .backdrop img,
.expertises .expertise-box .backdrop svg {
  width: 90%;
  height: 90%;
  max-height: 500px;
  opacity: 0.17;
  -o-object-fit: contain;
     object-fit: contain;
}
.expertises .expertise-box .row {
  position: relative;
  z-index: 100;
}
.expertises .expertise-box .expertise-item {
  margin-bottom: 25px;
}
.expertises .expertise-box .expertise-item .image {
  text-align: center;
  background-color: #6b63ff;
  height: 186px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: grayscale(1);
  opacity: 0.5;
  border-radius: 10px;
}
@media (max-width: 1199px) {
  .expertises .expertise-box .expertise-item .image {
    background-color: #6C63FF;
    border-radius: 15px;
  }
}
.expertises .expertise-box .expertise-item .image img,
.expertises .expertise-box .expertise-item .image svg {
  display: block;
}
.expertises .expertise-box .expertise-item .image svg {
  width: 150px;
  height: 150px;
  display: block;
  z-index: 9000000000000;
  background: white;
  border-radius: 100%;
}
.expertises .expertise-box .expertise-item .text-container {
  text-align: left;
}
@media (max-width: 1199px) {
  .expertises .expertise-box .expertise-item .text-container {
    text-align: left;
  }
}
.expertises .expertise-box .expertise-item .text-container h2 {
  color: #6C63FF;
  font-weight: 600;
  font-size: 40px;
  margin: 15px 0;
}
@media (max-width: 1199px) {
  .expertises .expertise-box .expertise-item .text-container h2 {
    font-size: 30px;
  }
}
.expertises .expertise-box .expertise-item .text-container p b {
  font-size: 24px;
  color: #6c63ff;
  font-weight: 300;
}
.expertises .expertise-box .expertise-item a {
  color: #6C63FF;
  text-decoration: none;
}
.expertises .expertise-box .buttons {
  position: relative;
  z-index: 100;
  text-align: center;
  padding: 15px 0 0;
}
.blog {
  padding: 25px 0 50px;
}
.blog .titel {
  text-align: center;
  color: #6C63FF;
  font-size: 72px;
  font-weight: 900;
  margin: 0 0 25px;
}
.blog .image {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
}
.blog .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog .text-container {
  padding: 10px 0;
}
.blog .text-container h3 {
  font-size: 40px;
  margin: 0;
  font-weight: 900;
  color: #6C63FF;
}
.blog .text-container p {
  font-size: 20px;
  color: #000;
  margin: 0;
}
.blog .text-container p.date {
  font-style: italic;
  margin: 5px 0;
}
.blog .text-container a {
  color: #6C63FF;
  text-decoration: none;
}

.content-block {
  display: flex;
  align-items: center;
  padding: 25px 0;
}
.content-block.is-last {
  padding-bottom: 100px;
}
.content-block .image {
  overflow: hidden;
  border-radius: 5px;
}
.content-block .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-block .text-container {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.content-block .text-container h1,
.content-block .text-container h2 {
  text-align: left;
  color: #6C63FF;
  font-weight: 900;
  font-size: 54px;
}
.content-block .text-container p {
  text-align: left;
  color: #3d3d3d;
  font-weight: 400;
  font-size: 1.1em;
}

.single-image .image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.author h3.titel {
  text-align: left;
  margin-bottom: 15px;
  margin-top: 0;
  color: #6C63FF;
  font-weight: 900;
}
.author .author-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  background: #f2f2f2;
  border-radius: 5px;
  padding: 15px;
  flex-wrap: wrap;
}
.author .author-item .image {
  width: 100px;
}
.author .author-item .image img {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
}
.author .author-item .text-container {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 992px) {
  .author .author-item .text-container:last-child {
    width: 100%;
  }
}
.author .author-item .text-container p.author-name {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 900;
  color: #6C63FF;
}
.author .author-item .text-container p.author-titel {
  margin: 0;
}
.author .author-item .text-container p.author-description {
  margin: 0;
  font-style: italic;
}

footer {
  padding: 100px 0 25px;
  background-color: #C0BDFC;
  position: relative;
}
footer .own-initiatives {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-80%);
}
footer .own-initiatives .titel {
  text-align: center;
  color: #6C63FF;
  font-size: 72px;
  font-weight: 900;
  margin: 0 0 25px;
}
footer .own-initiatives .initiative-slider {
  background-color: #bfbdfc;
  border-radius: 5px;
  padding: 25px;
}
footer .own-initiatives .initiative-slider .slide {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .own-initiatives .initiative-slider .slide .image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 5px;
}
footer .own-initiatives .initiative-slider .slide .image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
footer .own-initiatives .initiative-slider .slide p {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  width: calc(100% - 115px);
  color: #fff;
}
footer h3 {
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 1px;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer ul li {
  margin-bottom: 5px;
}
footer ul li a {
  color: #fff;
  transition: 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  text-decoration: none;
}
footer ul li a:hover {
  color: #6C63FF;
}
footer a {
  color: #fff;
  transition: 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  text-decoration: none;
}
footer a:hover {
  color: #6C63FF;
}
footer .is-fixed-bottom {
  margin-top: 100px;
}
footer .is-fixed-bottom p,
footer .is-fixed-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  margin: 0;
}

.page-template-template-home main .introduction {
  padding: 100px 0;
}

.page-template-default main .introduction {
  padding: 50px 0;
}
.page-template-default main .introduction .text-container h1,
.page-template-default main .introduction .text-container h2,
.page-template-default main .introduction .text-container p {
  text-align: left;
}

.single-expertise main .hero .text-container p,
.page-template-template-expertises main .hero .text-container p {
  font-size: 21px;
}/*# sourceMappingURL=style.css.map */