@charset "UTF-8";
/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  text-align: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  line-height: inherit;
}

:root {
  --header-height: 60px;
  --container-width: calc(100% - 20px);
  --container-max-width: 1700px;
  --curve-size: min(20vw, 160px);
}
@media (min-width: 768px) {
  :root {
    --header-height: clamp(70px, calc((135 / 1520) * var(--container-width)), 135px);
    --container-width: calc(720px - 20px * 2);
    --curve-size: clamp(150px, 15vw, 350px);
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: calc(960px - 20px * 2);
  }
}
@media (min-width: 1300px) {
  :root {
    --container-width: calc(1170px - 20px * 2);
  }
}
@media (min-width: 1600px) {
  :root {
    --container-width: calc(1470px - 20px * 2);
  }
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1470px;
  }
}

@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Light.woff2") format("woff2"), url("../../fonts/SuisseIntl-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl.woff2") format("woff2"), url("../../fonts/SuisseIntl.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-SemiBold.woff2") format("woff2"), url("../../fonts/SuisseIntl-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Regrade";
  src: url("../../fonts/NeueRegrade-Variable.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
.text-xxl {
  font-size: 28px;
}
@media (min-width: 768px) {
  .text-xxl {
    font-size: clamp(28px, 60 / 1520 * var(--container-width), 60px);
  }
}

.text-lg {
  font-size: 22px;
}
@media (min-width: 768px) {
  .text-lg {
    font-size: clamp(22px, 34 / 1520 * var(--container-width), 34px);
  }
}

.text-md, body {
  font-size: 16px;
}
@media (min-width: 768px) {
  .text-md, body {
    font-size: clamp(16px, 20 / 1520 * var(--container-width), 20px);
  }
}

.text-sm, .button {
  font-size: 14px;
}
@media (min-width: 768px) {
  .text-sm, .button {
    font-size: clamp(14px, 18 / 1520 * var(--container-width), 18px);
  }
}

.caps-heading {
  font-weight: 400;
  text-wrap: balance;
}

.spaced-caps, header .header-nav .menu a, header .language-switch .label, .button, .caps-heading {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.heading {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-family: "Suisse Int'l", sans-serif;
  color: #0c061e;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
  font-weight: 300;
  text-wrap: pretty;
  height: unset;
}
body ::-moz-selection {
  background-color: #341539;
  color: #ffffff;
}
body ::selection {
  background-color: #341539;
  color: #ffffff;
}
body * {
  scroll-margin-top: var(--header-height);
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

p:not(:first-child) {
  margin-top: 1em;
}

.media-wrapper {
  position: relative;
}
.media-wrapper img,
.media-wrapper video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.grecaptcha-badge {
  display: none !important;
}

.button {
  --btn-colour: #a020f0;
  display: inline-block;
  padding: 1em 2em;
  color: var(--btn-colour);
  border: 2px solid var(--btn-colour);
  border-radius: 50px;
  text-box: trim-both cap alphabetic;
  text-wrap: balance;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 400;
  background-color: unset;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.button:hover {
  background-color: var(--btn-colour);
  color: #ffffff;
  border-color: var(--btn-colour);
}

.consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s;
  z-index: 999;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  padding-block: 20px;
}
@media (min-width: 768px) {
  .consent {
    padding-block: 30px;
  }
}
.consent--visible {
  transform: translateY(0);
}

.consent-inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.consent-inner .consent-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .consent-inner .consent-content {
    font-size: clamp(11px, 14 / 1520 * var(--container-width), 14px);
  }
}
.consent-inner .consent-links a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}
.consent-inner .consent-buttons {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-shrink: 0;
}
.consent-inner .consent-button {
  width: auto;
  display: flex;
  justify-content: center;
  font-size: 12px;
}
.consent-inner .consent-button .label {
  text-box: trim-both cap alphabetic;
}

header {
  padding-inline: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  header {
    padding-inline: clamp(20px, 60 / 1520 * var(--container-width), 60px);
  }
}
header .pll-switcher-select {
  font-size: 16px;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0.6em 0.8em;
  padding-bottom: 0.5em;
  padding-right: 30px;
  border-radius: 30px;
  border: 2px solid #000000;
  cursor: pointer;
  font-family: inherit;
  color: #000000;
  background-color: #ffffff;
  background-image: url("../../img/arrow-short-down-black.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 0.6em top 52%, 0 0;
  background-size: 0.9em auto, 100%;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max-width);
  margin-inline: auto;
}
header .header-left {
  display: grid;
  grid-template-columns: 1;
  grid-template-rows: 1;
}
header .header-logo-wrapper {
  display: block;
  grid-area: 1/1/1/1;
}
header .header-logo-wrapper svg {
  width: 150px;
}
@media (min-width: 768px) {
  header .header-logo-wrapper svg {
    width: clamp(150px, 275 / 1520 * var(--container-width), 275px);
  }
}
header .header-right {
  display: flex;
  gap: 20px;
}
@media (min-width: 992px) {
  header .header-right {
    display: flex;
    gap: clamp(20px, 40 / 1520 * var(--container-width), 40px);
    align-items: center;
  }
}
@media (min-width: 1300px) {
  header .header-right {
    gap: clamp(20px, 80 / 1520 * var(--container-width), 80px);
  }
}
header .header-nav {
  display: none;
}
@media (min-width: 992px) {
  header .header-nav {
    display: block;
  }
}
header .header-nav .menu {
  display: flex;
  gap: clamp(10px, 30 / 1520 * var(--container-width), 30px);
}
header .header-nav .menu a {
  display: block;
  color: inherit;
  text-transform: uppercase;
  line-height: 1;
  font-weight: 300;
  text-box: trim-end cap alphabetic;
  font-size: 12px;
}
@media (min-width: 992px) {
  header .header-nav .menu a {
    font-size: 14px;
  }
}
@media (min-width: 1600px) {
  header .header-nav .menu a {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  header .header-nav .menu {
    gap: clamp(10px, 50 / 1520 * var(--container-width), 50px);
  }
}
header .language-switch {
  display: none;
  --toggle-height: 26px;
  --toggle-width: 50px;
  --toggle-gap: 3px;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  color: #a020f0;
}
@media (min-width: 992px) {
  header .language-switch {
    display: flex;
  }
}
header .language-switch .label {
  text-box: trim-end cap alphabetic;
  line-height: 1;
}
header .language-switch .toggle-link {
  display: block;
  color: inherit;
}
header .language-switch .switch-toggle {
  position: relative;
  cursor: pointer;
  width: var(--toggle-width);
  height: var(--toggle-height);
  border: 2px solid currentColor;
  border-radius: 50px;
}
header .language-switch .switch-thumb {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  height: calc(100% - 2 * var(--toggle-gap));
  aspect-ratio: 1;
  background-color: currentColor;
  border-radius: 50%;
}
header .language-switch[data-language=en] .switch-thumb {
  left: var(--toggle-gap);
}
header .language-switch[data-language=de] .switch-thumb {
  right: var(--toggle-gap);
}
header .burger-menu {
  padding-block: 10px;
  cursor: pointer;
}
@media (min-width: 992px) {
  header .burger-menu {
    display: none;
  }
}
header .burger-menu .burger-menu-inner {
  --hamburger-line-gap: 5px;
  --hamburger-line-width: 2px;
  position: relative;
  width: 20px;
  height: calc(2 * var(--hamburger-line-gap) + 3 * var(--hamburger-line-width));
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
header .burger-menu span {
  display: block;
  position: absolute;
  right: 0;
  width: 100%;
  height: var(--hamburger-line-width);
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: #341539;
  opacity: 1;
  border-radius: 10px;
}
header .burger-menu span:nth-child(1) {
  top: 0px;
}
header .burger-menu span:nth-child(2), header .burger-menu span:nth-child(3) {
  top: calc(var(--hamburger-line-gap) + var(--hamburger-line-width));
}
header .burger-menu span:nth-child(4) {
  top: calc(2 * var(--hamburger-line-gap) + 2 * var(--hamburger-line-width));
}
header .language-toggle-menu {
  grid-area: 1/1/1/1;
  opacity: 0;
  pointer-events: none;
  transition: opacvity 0.3s;
}
header .language-toggle-menu .language-switch {
  display: flex;
}

.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: var(--header-height);
  background-color: #341539;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: opacity 0.3s;
}
.main-menu .container {
  height: 100%;
}
.main-menu .main-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 30px;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .main-menu .main-menu-inner {
    padding-top: clamp(30px, 50 / 1520 * var(--container-width), 50px);
    padding-bottom: clamp(40px, 60 / 1520 * var(--container-width), 60px);
  }
}
.main-menu .main-menu-nav .menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 300;
  gap: 10px;
}
@media (min-width: 768px) {
  .main-menu .main-menu-nav .menu {
    font-size: clamp(20px, 30 / 1520 * var(--container-width), 30px);
    gap: clamp(10px, 20 / 1520 * var(--container-width), 20px);
  }
}
.main-menu .main-menu-nav a {
  display: block;
  color: inherit;
  padding-block: 0.3em;
}
.main-menu .menu-logo-wrapper {
  display: block;
  max-width: 230px;
}
.main-menu .menu-logo-wrapper svg path {
  fill: #a020f0;
}

body:has(.main-menu.open) header {
  background-color: transparent;
}
body:has(.main-menu.open) header .header-logo-wrapper {
  opacity: 0;
  pointer-events: none;
}
body:has(.main-menu.open) header .language-toggle-menu {
  opacity: 1;
  pointer-events: all;
}
body:has(.main-menu.open) header .burger-menu span {
  background-color: #a020f0;
}
body:has(.main-menu.open) header .burger-menu span:nth-child(1) {
  top: calc(var(--hamburger-line-gap) + var(--hamburger-line-width));
  right: 50%;
  width: 0%;
}
body:has(.main-menu.open) header .burger-menu span:nth-child(2) {
  transform: rotate(45deg);
}
body:has(.main-menu.open) header .burger-menu span:nth-child(3) {
  transform: rotate(-45deg);
}
body:has(.main-menu.open) header .burger-menu span:nth-child(4) {
  top: calc(var(--hamburger-line-gap) + var(--hamburger-line-width));
  right: 50%;
  width: 0%;
}
body:has(.main-menu.open) .main-menu {
  opacity: 1;
  pointer-events: all;
}

footer {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  padding-block: 60px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  footer {
    padding-block: 40px;
    padding-inline: clamp(20px, 60 / 1520 * var(--container-width), 60px);
  }
}
footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-inline: auto;
  max-width: var(--container-max-width);
}
@media (min-width: 768px) {
  footer .footer-inner {
    flex-direction: row;
    width: 100%;
    align-items: flex-end;
  }
}
footer .separator {
  height: 1px;
  background-color: #a020f0;
  width: 200px;
}
@media (min-width: 768px) {
  footer .separator {
    display: none;
  }
}
footer .footer-social {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  footer .footer-social {
    order: 3;
    flex: 1;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
footer .social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: inherit;
}
@media (min-width: 768px) {
  footer .social-link {
    flex-direction: row;
    align-items: flex-end;
    gap: 15px;
  }
}
footer .social-icon {
  width: 40px;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  footer .social-label {
    order: -1;
  }
}
footer .footer-netsuisse {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  footer .footer-netsuisse .copyright {
    display: none;
  }
}
footer .privacy {
  margin-left: 20px;
}
footer .privacy a {
  color: #0c061e;
}
footer .footer-logo-wrapper {
  display: block;
}
footer .footer-logo-wrapper img,
footer .footer-logo-wrapper svg {
  width: 45px;
}
footer .copyright-solo {
  display: none;
}
@media (min-width: 768px) {
  footer .copyright-solo {
    display: block;
    flex: 1;
  }
}

.single-blog .banner-section {
  background-color: #341539;
  clip-path: none;
}
.single-blog .banner-section .bg-image {
  clip-path: inset(0 0 0 0 round 0% 0% var(--curve-size) 0%);
}
.single-blog .banner-section .back-button {
  position: absolute;
  left: 60px;
  top: 60px;
  display: flex;
  z-index: 100;
  gap: 20px;
  font-size: 16px;
  align-items: center;
}
.single-blog .banner-section .back-button:hover {
  background-color: #ffffff;
  color: #341539;
  border-color: #341539;
}
.single-blog .banner-section .back-button svg {
  width: 36px;
  height: auto;
}

.banner-section {
  padding-block: var(--curve-size);
  position: relative;
  min-height: calc(80vh - var(--header-height));
  display: flex;
  clip-path: inset(0 0 0 0 round 0% 0% var(--curve-size) 0%);
}
@media (min-width: 768px) {
  .banner-section {
    padding-block: clamp(100px, 200 / 1520 * var(--container-width), 200px);
    min-height: calc(90vh - var(--header-height));
  }
}
.banner-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #341539;
}
.banner-section .bg-image img {
  opacity: 0.5;
}
.banner-section .banner-content {
  position: relative;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .banner-section .banner-content {
    text-align: left;
  }
}
.banner-section .banner-content-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .banner-section .banner-content-inner {
    gap: clamp(30px, 50 / 1520 * var(--container-width), 50px);
  }
}
@media (min-width: 768px) {
  .banner-section .banner-copy {
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .banner-section .banner-copy {
    max-width: 50%;
  }
}
@media (min-width: 1300px) {
  .banner-section .banner-copy {
    max-width: 40%;
  }
}
.banner-section .banner-heading {
  color: #ff00ff;
}
@media (min-width: 768px) {
  .banner-section .banner-heading {
    max-width: clamp(450px, 750 / 1520 * var(--container-width), 750px);
  }
}
.banner-section-generic {
  background: #341539;
  padding-block: var(--curve-size);
  min-height: 20vw;
  position: relative;
  min-height: calc(20vw - var(--header-height));
  display: flex;
  clip-path: inset(0 0 0 0 round 0% 0% var(--curve-size) 0%);
}
@media (min-width: 768px) {
  .banner-section-generic {
    padding-block: clamp(100px, 200 / 1520 * var(--container-width), 200px);
    min-height: calc(333px - var(--header-height));
  }
}
.banner-section-generic.single-blog-heading {
  padding-block: 60px;
}
.banner-section-generic.single-blog-heading .news-date {
  color: #a020f0;
  text-transform: capitalize;
}
.banner-section-generic.single-blog-heading .banner-heading {
  color: #ffffff;
}
.banner-section-generic .banner-content {
  position: relative;
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .banner-section-generic .banner-content {
    text-align: left;
  }
}
.banner-section-generic .banner-content-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .banner-section-generic .banner-content-inner {
    gap: clamp(30px, 50 / 1520 * var(--container-width), 50px);
  }
}
.banner-section-generic .banner-heading {
  color: #ff00ff;
}
@media (min-width: 768px) {
  .banner-section-generic .banner-heading {
    max-width: clamp(450px, 750 / 1520 * var(--container-width), 750px);
  }
}

.services-section {
  padding-block: 60px;
  text-align: center;
}
@media (min-width: 768px) {
  .services-section {
    padding-block: clamp(60px, 200 / 1520 * var(--container-width), 200px);
  }
}
.services-section .services-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .services-section .services-inner {
    gap: clamp(40px, 100 / 1520 * var(--container-width), 100px);
  }
}
.services-section .services-items {
  display: grid;
  gap: 40px;
  max-width: 400px;
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 768px) {
  .services-section .services-items {
    gap: clamp(40px, 100 / 1520 * var(--container-width), 100px);
  }
}
@media (min-width: 992px) {
  .services-section .services-items {
    row-gap: clamp(30px, 40 / 1520 * var(--container-width), 40px);
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    max-width: none;
  }
}
.services-section .services-item {
  display: grid;
  justify-items: center;
  gap: 30px;
}
@media (min-width: 992px) {
  .services-section .services-item {
    gap: unset;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
.services-section .services-item-icon {
  height: 80px;
  width: auto;
}
.services-section .services-item-content {
  display: grid;
  gap: 20px;
}
@media (min-width: 992px) {
  .services-section .services-item-content {
    row-gap: clamp(15px, 20 / 1520 * var(--container-width), 20px);
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}
.services-section .services-item-heading {
  color: #a020f0;
}
.services-section .button {
  margin-inline: auto;
}

.curved-content {
  color: #ffffff;
  clip-path: inset(0 0 0 0 round var(--curve-size) 0% var(--curve-size) 0%);
}
@media (min-width: 992px) {
  .curved-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.curved-content .top-block {
  background-color: #341539;
  padding-top: 90px;
  padding-bottom: 80px;
  text-align: center;
}
@media (min-width: 768px) {
  .curved-content .top-block {
    padding-block: clamp(90px, 150 / 1520 * var(--container-width), 150px);
  }
}
@media (min-width: 992px) {
  .curved-content .top-block {
    grid-column: span 2;
  }
}
.curved-content .top-block-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) {
  .curved-content .top-block-inner {
    gap: clamp(50px, 60 / 1520 * var(--container-width), 60px);
  }
}
.curved-content .top-block-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 1.4;
  max-width: 300px;
}
@media (min-width: 768px) {
  .curved-content .top-block-main {
    max-width: unset;
  }
}
.curved-content .testimonial-quote {
  color: #ff00ff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .curved-content .testimonial-quote {
    display: block;
  }
}
.curved-content .testimonial-quote::before {
  content: "“";
  font-size: 80px;
  line-height: 0;
  height: 0.4em;
  display: inline-block;
  position: relative;
  top: 0.6em;
}
@media (min-width: 768px) {
  .curved-content .testimonial-quote::before {
    margin-right: 0.1em;
  }
}
@media (min-width: 768px) {
  .curved-content .testimonial-quote::before, .curved-content .testimonial-quote::after {
    display: inline;
    font-size: clamp(50px, 80 / 1520 * var(--container-width), 80px);
    line-height: 0;
    height: auto;
    position: relative;
    top: 0.5em;
  }
}
@media (min-width: 768px) {
  .curved-content .testimonial-quote::after {
    content: "”";
    top: 0.6em;
    margin-left: 0.1em;
  }
}
.curved-content .testimonial-author {
  font-weight: 600;
}
@media (min-width: 768px) {
  .curved-content .testimonial-role br {
    display: none;
  }
}
.curved-content .image-block {
  background-color: #341539;
  width: 100%;
  aspect-ratio: 0.9;
}
@media (min-width: 768px) {
  .curved-content .image-block {
    aspect-ratio: 1.4;
  }
}
@media (min-width: 992px) {
  .curved-content .image-block {
    min-height: 100%;
    aspect-ratio: 1;
    max-height: min(1000px, 100vh);
  }
}
.curved-content .image-block img {
  clip-path: inset(0 0 0 0 round var(--curve-size) 0% 0% 0%);
}
.curved-content .main-block {
  background-color: #f4f2f4;
  color: #0c061e;
  display: flex;
  justify-content: center;
  padding-block: 90px;
}
@media (min-width: 992px) {
  .curved-content .main-block {
    padding-block: clamp(90px, 150 / 1520 * var(--container-width), 150px);
    align-items: center;
  }
}
.curved-content .main-block-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .curved-content .main-block-inner {
    max-width: var(--container-width);
    padding-inline: 0;
  }
}
@media (min-width: 992px) {
  .curved-content .main-block-inner {
    text-align: left;
    max-width: clamp(300px, 580 / 1520 * var(--container-width), 580px);
  }
}
.curved-content .main-block-heading {
  color: #ff00ff;
}

.team-section {
  padding-block: 80px;
  text-align: center;
}
@media (min-width: 768px) {
  .team-section {
    padding-block: clamp(80px, 200 / 1520 * var(--container-width), 200px);
  }
}
.team-section .team-section-inner {
  display: flex;
  flex-direction: column;
}
.team-section .team-section-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .team-section .team-section-top {
    gap: clamp(30px, 70 / 1520 * var(--container-width), 70px);
  }
}
.team-section .team-top-heading {
  color: #a020f0;
}
.team-section .team-grid {
  display: grid;
  row-gap: 20px;
  clip-path: inset(0 0 0 0 round var(--curve-size) 0% var(--curve-size) 0%);
}
@media (min-width: 768px) {
  .team-section .team-grid {
    grid-auto-flow: 1fr;
    --curve-size: clamp(100px, 10vw, 200px);
  }
}
@media (min-width: 1300px) {
  .team-section .team-grid {
    grid-auto-flow: unset;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    -moz-column-gap: clamp(20px, 40 / 1520 * var(--container-width), 40px);
         column-gap: clamp(20px, 40 / 1520 * var(--container-width), 40px);
    row-gap: unset;
  }
}
.team-section .team-item {
  width: 100%;
}
@media (min-width: 768px) {
  .team-section .team-item {
    display: flex;
    text-align: left;
  }
}
@media (min-width: 1300px) {
  .team-section .team-item {
    display: grid;
    text-align: center;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
.team-section .team-item .image-block {
  width: 100%;
  aspect-ratio: 1.3;
}
@media (min-width: 768px) {
  .team-section .team-item .image-block {
    width: auto;
    flex: 0 0 40%;
  }
}
.team-section .team-item .content-block {
  background-color: #f4f2f4;
  padding-block: 50px;
  padding-inline: 30px;
  display: grid;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .team-section .team-item .content-block {
    row-gap: clamp(10px, 20 / 1520 * var(--container-width), 20px);
    padding-inline: clamp(40px, 60 / 1520 * var(--container-width), 60px);
    padding-right: clamp(50px, 60 / 1520 * var(--container-width), 60px);
    padding-block: clamp(50px, 60 / 1520 * var(--container-width), 60px);
  }
}
@media (min-width: 1300px) {
  .team-section .team-item .content-block {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    padding-inline: clamp(40px, 60 / 1520 * var(--container-width), 60px);
  }
}
.team-section .team-item .content-top {
  color: #a020f0;
}
.team-section .team-item .role {
  font-weight: 400;
}
.team-section .team-section-bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  width: 100%;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .team-section .team-section-bottom {
    padding-top: clamp(80px, 200 / 1520 * var(--container-width), 200px);
  }
}
.team-section .team-bottom-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) {
  .team-section .team-bottom-top {
    max-width: 50ch;
  }
}

.blog-section {
  padding-block: 80px;
  text-align: center;
  background-color: #f4f2f4;
  overflow: hidden;
}
.blog-section .news-date {
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .blog-section {
    padding-block: clamp(80px, 200 / 1520 * var(--container-width), 200px);
  }
}
.blog-section .blog-section-inner {
  display: flex;
  flex-direction: column;
}
.blog-section .blog-section-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .blog-section .blog-section-top {
    gap: clamp(30px, 70 / 1520 * var(--container-width), 70px);
  }
}
.blog-section .swiper-pagination {
  position: relative;
  margin-top: 100px;
}
.blog-section .blog-top-heading {
  color: #a020f0;
}
.blog-section .blog-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(1, 1fr);
  grid-row: 1;
}
@media (min-width: 768px) {
  .blog-section .blog-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr);
    grid-row: 1;
  }
}
@media (min-width: 1300px) {
  .blog-section .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-row: 1;
    row-gap: unset;
  }
}
.blog-section .blog-item {
  width: 100%;
  display: grid;
  text-align: center;
  flex-direction: column;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
@media (min-width: 768px) {
  .blog-section .blog-item {
    display: grid;
    text-align: center;
    flex-direction: column;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media (min-width: 1300px) {
  .blog-section .blog-item {
    display: grid;
    text-align: center;
    flex-direction: column;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
.blog-section .blog-item .image-block {
  width: 100%;
  aspect-ratio: 1.3;
}
@media (min-width: 768px) {
  .blog-section .blog-item .image-block {
    width: auto;
    flex: 0 0 40%;
  }
}
.blog-section .blog-item .content-block {
  background-color: #f4f2f4;
  padding-block: 50px;
  padding-inline: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .blog-section .blog-item .content-block {
    row-gap: clamp(40px, 50 / 1520 * var(--container-width), 20px);
    padding-inline: clamp(40px, 60 / 1520 * var(--container-width), 60px);
    padding-right: clamp(50px, 60 / 1520 * var(--container-width), 60px);
    padding-block: clamp(50px, 60 / 1520 * var(--container-width), 60px);
  }
}
@media (min-width: 1300px) {
  .blog-section .blog-item .content-block {
    padding-inline: clamp(40px, 60 / 1520 * var(--container-width), 60px);
  }
}
.blog-section .blog-item .content-block .button {
  margin-top: auto;
}
.blog-section .blog-item:nth-child(3n+1) .image-block {
  border-top-left-radius: 150px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-section .blog-item:nth-child(3n+1) .image-block {
    border-top-left-radius: 200px;
  }
}
.blog-section .blog-item:nth-child(3n+3) .content-block {
  border-bottom-right-radius: 150px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-section .blog-item:nth-child(3n+3) .content-block {
    border-bottom-right-radius: 200px;
  }
}
.blog-section .blog-item .content-top {
  color: #a020f0;
  margin-bottom: 30px;
}
.blog-section .blog-item .role {
  font-weight: 400;
}
.blog-section .blog-section-bottom {
  gap: 50px;
  align-items: center;
  width: 100%;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .blog-section .blog-section-bottom {
    padding-top: clamp(80px, 200 / 1520 * var(--container-width), 200px);
  }
}
.blog-section .blog-bottom-top {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  align-items: center;
}
@media (min-width: 768px) {
  .blog-section .blog-bottom-top {
    max-width: 50ch;
  }
}

.generic-text.blog-content .body {
  width: 100%;
}
@media (min-width: 992px) {
  .generic-text.blog-content .body {
    -moz-column-count: 1;
         column-count: 1;
    -moz-column-gap: 100px;
         column-gap: 100px;
    padding: 0 0;
  }
}
.generic-text.blog-content .body p {
  line-height: 1.4;
  color: #0c061e;
  text-align: left;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-family: "Suisse Int'l", sans-serif;
}
.generic-text.blog-content .body p img {
  max-width: 100%;
  height: auto;
}
.generic-text.blog-content .body p strong {
  font-family: "Suisse Int'l", sans-serif;
}
.generic-text.blog-content .body h3:not(:first-child) {
  margin-top: 1em;
}
.generic-text.blog-content .body h3 {
  font-family: "Neue Regrade", sans-serif;
  font-size: 1.1em;
  line-height: 1.4;
  color: #ff00ff;
  text-align: left;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-weight: 600;
}
.generic-text.blog-content .body ul {
  display: block;
  margin-top: 15px;
  list-style-type: disc;
  padding-inline: 17px;
}
.generic-text.blog-content .body ul li {
  position: relative;
  margin-top: 10px;
}
.generic-text.blog-content .body ol {
  display: block;
  margin-top: 15px;
  list-style-type: decimal;
  list-style-position: inside;
}
.generic-text.blog-content .body ol li {
  margin-top: 10px;
}
.generic-text.blog-content .body ol li:first-of-type {
  margin-top: 0;
}

.contact-section {
  background-color: #0c061e;
  color: #ffffff;
  padding-block: 90px;
  clip-path: inset(0 0 0 0 round var(--curve-size) 0% 0% 0%);
}
@media (min-width: 768px) {
  .contact-section {
    padding-block: clamp(90px, 200 / 1520 * var(--container-width), 200px);
  }
}
.contact-section .contact-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 768px) {
  .contact-section .contact-inner {
    gap: clamp(80px, 100 / 1520 * var(--container-width), 100px);
  }
}
.contact-section .contact-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-section .contact-top {
    gap: clamp(40px, 80 / 1520 * var(--container-width), 80px);
  }
}
.contact-section .contact-heading {
  text-align: center;
  color: #ff00ff;
}
.contact-section .form-wrapper {
  max-width: 300px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-section .form-wrapper {
    max-width: 750px;
  }
}
.contact-section .form-wrapper form.submitting input[type=submit] {
  visibility: hidden;
}
.contact-section .form-wrapper form.submitting .loader {
  visibility: visible;
}
.contact-section .form-wrapper .wpcf7-not-valid-tip {
  display: none;
}
.contact-section .form-wrapper .wpcf7-response-output {
  display: none;
}
.contact-section .form-wrapper .form-fields {
  display: grid;
  row-gap: 40px;
}
.contact-section .form-wrapper .form-fields-main {
  display: grid;
  row-gap: 20px;
}
.contact-section .form-wrapper .field-row {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (min-width: 768px) {
  .contact-section .form-wrapper .field-row {
    flex-direction: row;
    gap: 10px;
  }
}
.contact-section .form-wrapper label {
  font-family: inherit;
  display: grid;
  gap: 10px;
}
.contact-section .form-wrapper input[type=text],
.contact-section .form-wrapper input[type=email],
.contact-section .form-wrapper textarea {
  background-color: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 26px;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  padding: 0.6em 1em;
  color: inherit;
  line-height: 1;
  overflow: visible;
}
.contact-section .form-wrapper input[type=text][aria-invalid=true],
.contact-section .form-wrapper input[type=email][aria-invalid=true],
.contact-section .form-wrapper textarea[aria-invalid=true] {
  outline: 1px solid red;
  outline-offset: -1px;
}
.contact-section .form-wrapper textarea {
  resize: none;
  height: 150px;
  padding-block: 1em;
}
.contact-section .form-wrapper .form-bottom {
  display: grid;
  justify-content: center;
}
.contact-section .form-wrapper .form-bottom .wpcf7-spinner {
  display: none;
}
.contact-section .form-wrapper .button {
  --btn-colour: #ff00ff;
  grid-area: 1/1/1/1;
}
.contact-section .form-wrapper .loader {
  grid-area: 1/1/1/1;
  justify-self: center;
  align-self: center;
  visibility: hidden;
  width: 20px;
  height: 20px;
  border: 4px solid #ff00ff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact-section .contact-locations {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-section .contact-locations {
    text-align: left;
    max-width: 750px;
    margin-inline: auto;
  }
}
.contact-section .locations-heading {
  color: #ff00ff;
}
.contact-section .locations {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-section .locations {
    margin-inline: unset;
    flex-direction: row;
    gap: clamp(80px, 180 / 1520 * var(--container-width), 180px);
  }
}
.contact-section .location {
  padding-block: 30px;
  border-top: 1px solid #ff00ff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact-section .location {
    padding: 0;
    border: none;
    padding-left: clamp(20px, 40 / 1520 * var(--container-width), 40px);
    border-left: 1px solid #ff00ff;
  }
}
.contact-section .location:first-of-type {
  padding-top: 0;
  border-top: none;
}
.contact-section .location:last-of-type {
  padding-bottom: 0;
}
.contact-section .location-top {
  display: grid;
  gap: 0.2em;
}
.contact-section .location-name {
  font-weight: 600;
}
.contact-section .location-url {
  color: inherit;
}

.generic-text {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}
@media (min-width: 992px) {
  .generic-text {
    padding: 100px 0;
  }
}
.generic-text .body {
  width: 100%;
}
@media (min-width: 992px) {
  .generic-text .body {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 100px;
         column-gap: 100px;
    padding: 0 0;
  }
}
.generic-text .body p {
  line-height: 1.4;
  color: #0c061e;
  text-align: left;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-family: "Suisse Int'l", sans-serif;
}
.generic-text .body p strong {
  font-family: "Suisse Int'l", sans-serif;
}
.generic-text .body h3:not(:first-child) {
  margin-top: 1em;
}
.generic-text .body h3 {
  font-family: "Neue Regrade", sans-serif;
  font-size: 1.1em;
  line-height: 1.4;
  color: #ff00ff;
  text-align: left;
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-weight: 600;
}
.generic-text h2 {
  font-size: 36px;
  line-height: 1;
  color: #ff00ff;
  font-family: "Neue Regrade", sans-serif;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .generic-text h2 {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  .generic-text h2 {
    font-size: 102px;
  }
}
