/* COLORS */
/* TYPOGRAPHY */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove border from iframes */
iframe {
  border: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---- MEDIA QUERIES ----- */
/* ---- RESETS ---- */
html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
}

:root {
  font-size: 1.6rem;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 2.1rem;
  line-height: 25px;
  font-family: "Jaldi", sans-serif;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1280px) {
  body {
    font-size: 1.8rem;
    line-height: 20px;
  }
}
.wysiwyg p {
  margin: 0 0 1.4rem;
}
.wysiwyg p:last-child {
  margin: 0;
}
.wysiwyg ul, .wysiwyg ol {
  margin: 0 0 1.7rem;
  padding: 0 0 0 2.4rem;
}
.wysiwyg ul li, .wysiwyg ol li {
  margin: 0 0 0.7rem;
}
.wysiwyg ul li::marker, .wysiwyg ol li::marker {
  color: #174A75;
}
.wysiwyg blockquote {
  padding: 0.5rem 0 0.5rem 4rem;
  position: relative;
  margin-bottom: 1.4rem;
}
.wysiwyg blockquote::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
  background-color: #7CB0E1;
  border-radius: 5rem;
}
.wysiwyg a {
  color: #174A75;
  text-decoration: underline;
}
.wysiwyg a:hover {
  color: #5896D1;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Khand", sans-serif;
  font-weight: 300;
  color: #174A75;
}
h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span, h4 span, .h4 span {
  color: #7CB0E1;
  font-weight: 500;
}

.h1, h1 {
  font-size: 8.8rem;
  line-height: 77px;
}

.h2, h2 {
  font-size: 6.5rem;
  line-height: 57px;
}

.h3, h3 {
  font-size: 3rem;
  line-height: 33px;
}

.h4, h4 {
  font-size: 2.5rem;
  line-height: 28px;
}

@media (max-width: 1280px) {
  .h1, h1 {
    font-size: 6.5rem;
    line-height: 57px;
  }
  .h2, h2 {
    font-size: 4.5rem;
    line-height: 40px;
  }
  .h3, h3 {
    font-size: 3rem;
    line-height: 40px;
  }
  .h4, h4 {
    font-size: 2.5rem;
    line-height: 35px;
  }
}
@media (max-width: 450px) {
  .h1, h1 {
    font-size: 4.5rem;
    line-height: 37px;
  }
  .h2, h2 {
    font-size: 3.3rem;
    line-height: 37px;
  }
  .h3, h3 {
    font-size: 3rem;
    line-height: 40px;
  }
  .h4, h4 {
    font-size: 2.5rem;
    line-height: 35px;
  }
}
a {
  color: #E5007D;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.in-view.fade-up-element {
  animation: fade-up 0.3s forwards;
}

.fade-up-element {
  transform: translateY(50px);
  opacity: 0;
}

@media (prefers-reduced-motion) {
  .fade-up-element {
    transform: none;
    opacity: 1;
  }
  .in-view.fade-up-element {
    animation: none;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 12px !important;
}

.pt-2 {
  padding-top: 24px !important;
}

.pt-3 {
  padding-top: 36px !important;
}

.pt-4 {
  padding-top: 48px !important;
}

.pt-5 {
  padding-top: 60px !important;
}

.pt-6 {
  padding-top: 82px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 12px !important;
}

.pb-2 {
  padding-bottom: 24px !important;
}

.pb-3 {
  padding-bottom: 36px !important;
}

.pb-4 {
  padding-bottom: 48px !important;
}

.pb-5 {
  padding-bottom: 60px !important;
}

.pb-6 {
  padding-bottom: 82px !important;
}

@media (max-width: 768px) {
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 8px !important;
  }
  .pt-2 {
    padding-top: 16px !important;
  }
  .pt-3 {
    padding-top: 24px !important;
  }
  .pt-4 {
    padding-top: 32px !important;
  }
  .pt-5 {
    padding-top: 40px !important;
  }
  .pt-6 {
    padding-top: 48px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 8px !important;
  }
  .pb-2 {
    padding-bottom: 16px !important;
  }
  .pb-3 {
    padding-bottom: 24px !important;
  }
  .pb-4 {
    padding-bottom: 32px !important;
  }
  .pb-5 {
    padding-bottom: 40px !important;
  }
  .pb-6 {
    padding-bottom: 48px !important;
  }
}
.content-grid {
  --padding-inline: 5.3rem;
  --content-max-width: 1100px;
  --breakout-max-width: 1415px;
  --breakout-big-max-width: 1600px;
  --breakout-size: calc(
      (var(--breakout-max-width) - var(--content-max-width)) / 2
  );
  --breakout-big-size: calc(
      (var(--breakout-big-max-width) - var(--breakout-max-width)) / 2
  );
  --menu-width: calc( 134px / 2 );
  display: grid;
  grid-template-columns: [full-width-start full-width-hero-end] minmax(var(--padding-inline), 1fr) [menu-grid-start] minmax(0, var(--menu-width)) [breakout-big-start] minmax(0, var(--breakout-big-size)) [breakout-start menu-width-start] minmax(0, var(--breakout-size)) [content-start full-width-right-start] min(100% - var(--padding-inline) * 2, var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(0, var(--breakout-big-size)) [breakout-big-end] minmax(0, var(--menu-width)) [menu-grid-end menu-width-end] minmax(var(--padding-inline), 1fr) [full-width-end full-width-hero-end full-width-right-end];
}
.content-grid > :not(.breakout, .full-width, .breakout-big, .menu-width, .menu-grid) {
  grid-column: content;
}
.content-grid > .breakout {
  grid-column: breakout;
}
.content-grid > .breakout-big {
  grid-column: breakout-big;
}
.content-grid > .menu-grid {
  grid-column: menu-grid;
}
.content-grid > .menu-width {
  grid-column: menu-width;
}
.content-grid > .full-width,
.content-grid > .full-width-hero {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

.full-width > :not(.breakout, .full-width, .breakout-big, .menu-width, .menu-grid) {
  grid-column: content;
}

.full-width-hero > :not(.breakout, .full-width, .breakout-big, .menu-width, .menu-grid) {
  grid-column: breakout;
}

#navbar.content-grid {
  --padding-inline: 2.5rem;
}

@media (max-width: 450px) {
  .content-grid {
    --padding-inline: 2.1rem;
  }
}
/* jaldi-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: "Jaldi";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/jaldi-v12-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* jaldi-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: "Jaldi";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/jaldi-v12-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* khand-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: "Khand";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/khand-v21-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* khand-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: "Khand";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/khand-v21-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* khand-500 - 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: "Khand";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/khand-v21-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* khand-600 - 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: "Khand";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/khand-v21-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* khand-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: "Khand";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/khand-v21-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.form .gfield_required {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 0;
  margin: 0 0 2rem;
  background-color: transparent;
  border: none;
  text-align: center;
  box-shadow: none;
  color: #fff;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  font-family: "Jaldi", sans-serif;
  font-size: 1.6rem;
}
.form .gform_wrapper.gravity-theme .gfield_description.validation_message {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  color: #fff;
}
.form .gform_validation_errors {
  display: none !important;
}

.form input:not(.button),
.form textarea {
  border: none;
  border-radius: 0.9rem;
  font-size: 1.9rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.form input:not(.button):focus,
.form textarea:focus {
  outline: none;
}
.form label,
.form legend {
  color: #fff;
  font-size: 1.8rem !important;
  font-weight: 400 !important;
}
.form .button {
  color: #fff;
  background-color: #5896D1;
  max-width: 35.2rem;
  margin: 0 auto;
}
.form .button:hover {
  background-color: #E5007D;
}
.form .gfield_radio,
.form .gfield_checkbox {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.form .ginput_container_consent,
.form .gfield_checkbox,
.form .gfield_radio {
  position: relative;
  display: flex;
  align-items: center;
}
.form .ginput_container_consent input[type=checkbox],
.form .ginput_container_consent input[type=radio],
.form .gfield_checkbox input[type=checkbox],
.form .gfield_checkbox input[type=radio],
.form .gfield_radio input[type=checkbox],
.form .gfield_radio input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.form .ginput_container_consent input[type=checkbox]:checked + label::after,
.form .ginput_container_consent input[type=radio]:checked + label::after,
.form .gfield_checkbox input[type=checkbox]:checked + label::after,
.form .gfield_checkbox input[type=radio]:checked + label::after,
.form .gfield_radio input[type=checkbox]:checked + label::after,
.form .gfield_radio input[type=radio]:checked + label::after {
  opacity: 1;
}
.form .ginput_container_consent label,
.form .gfield_checkbox label,
.form .gfield_radio label {
  position: relative;
  padding-left: 3.5rem;
  cursor: pointer;
  font-size: 1.8rem;
  user-select: none;
}
.form .ginput_container_consent label::before,
.form .gfield_checkbox label::before,
.form .gfield_radio label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #fff;
  border-radius: 0.3rem;
  background-color: #fff;
  transition: background-color 0.3s, border-color 0.3s;
}
.form .ginput_container_consent label::after,
.form .gfield_checkbox label::after,
.form .gfield_radio label::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 1.2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.2rem;
  background-color: #5896D1;
  opacity: 0;
  transition: opacity 0.3s;
}
.form .gfield_checkbox,
.form .gfield_radio {
  display: grid;
}
.form .gfield_checkbox label,
.form .gfield_radio label {
  padding-left: 1.9rem;
}
.form .gfield_checkbox label::before,
.form .gfield_radio label::before {
  width: 1.2rem;
  height: 1.2rem;
  top: 0.6rem;
}
.form .gfield_checkbox label::after,
.form .gfield_radio label::after {
  width: 0.8rem;
  height: 0.8rem;
  left: 0.2rem;
  top: 0.8rem;
}
.form .gfield_radio label::before, .form .gfield_radio label::after {
  border-radius: 50%;
}

@media (max-width: 768px) {
  .form .gfield_checkbox,
  .form .gfield_radio {
    grid-template-columns: repeat(2, 1fr);
  }
}
.button {
  font-size: 1.9rem;
  padding: 0.575em 1.5em;
  border-radius: 1.8rem;
  border: 2px solid transparent;
  display: inline-flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.button svg {
  transition: transform 0.2s ease-in-out;
}
.button:hover svg {
  transform: translateX(0.5rem);
}
.button-red {
  background-color: #E5007D;
  color: #fff;
  border-color: #E5007D;
}
.button-red:hover {
  background-color: #174A75;
  border-color: #174A75;
}
.button-dark-blue {
  background-color: #174A75;
  color: #fff;
  border-color: #174A75;
}
.button-dark-blue:hover {
  background-color: #E5007D;
  border-color: #E5007D;
}
.button-light-blue {
  background-color: #5896D1;
  color: #fff;
  border-color: #5896D1;
}
.button-light-blue:hover {
  background-color: #E5007D;
  border-color: #E5007D;
}

@media (max-width: 1280px) {
  .button {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .button {
    font-size: 1.6rem;
    border-radius: 1.4rem;
  }
}
.has-block-badge {
  position: relative;
  border-top: 1px dashed #010101;
  border-bottom: 1px dashed #010101;
}

.block-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
}
.block-name-badge div {
  background-color: #010101;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}

#navbar {
  position: fixed;
  top: 3.6rem;
  left: 0;
  right: 0;
  z-index: 999;
}
#navbar .logo {
  max-width: 14.4rem;
}
#navbar .logo img {
  width: 100%;
  height: auto;
}
#navbar .menu-width {
  display: flex;
  justify-content: space-between;
}
#navbar .menu-container {
  display: flex;
  gap: 2.1rem;
  height: fit-content;
}
#navbar .main-menu-wrapper {
  overflow: hidden;
  transition: max-width 0.3s ease-in-out;
}
#navbar .main-menu-wrapper.is-closed {
  display: none;
}
#navbar .main-menu-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.1rem;
  border-radius: 0.6rem;
  background: linear-gradient(90deg, #F6F6F6 0%, rgba(255, 255, 255, 0.9) 33%, rgba(255, 255, 255, 0.9) 66%, #F6F6F6 100%);
  padding: 0.6rem 2.2rem 0.4rem;
  position: relative;
}
#navbar .main-menu-container .menu {
  display: flex;
  gap: 3.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar .main-menu-container .menu a {
  color: #174A75;
  font-family: "Khand", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: normal;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}
#navbar .main-menu-container .menu a:hover {
  color: #E5007D;
}
#navbar .main-menu-container button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 3.4rem;
  display: flex;
  align-items: center;
}
#navbar .main-menu-container button.menu-toggle.is-open svg {
  transform: rotate(180deg);
}
#navbar .button {
  font-family: "Khand", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: normal;
  padding: 0.7rem 3rem 0.3rem;
  border-radius: 0.6rem;
}

@media (max-width: 1280px) {
  #navbar {
    top: 2.6rem;
  }
  #navbar .logo {
    max-width: 10.8rem;
  }
  #navbar .menu-container {
    gap: 1.5rem;
  }
  #navbar .main-menu-container {
    gap: 1.3rem;
    padding: 0.45rem 1.6rem 0.3rem;
  }
  #navbar .main-menu-container .menu {
    gap: 2.3rem;
  }
  #navbar .main-menu-container .menu a {
    font-size: 1.7rem;
  }
  #navbar .main-menu-container button {
    height: 2.6rem;
  }
  #navbar .main-menu-container button svg {
    height: 1.5rem;
    width: 1.5rem;
  }
  #navbar .button {
    font-size: 1.7rem;
    padding: 0.6rem 2.2rem 0.2rem;
  }
}
@media (max-width: 768px) {
  #navbar .menu-container {
    gap: 1.2rem;
  }
  #navbar .main-menu-wrapper {
    display: none;
  }
  #navbar .main-menu-container {
    gap: 1.3rem;
    padding: 0.45rem 1.6rem 0.3rem;
    order: 2;
  }
  #navbar .main-menu-container button {
    height: 2.6rem;
  }
  #navbar .main-menu-container button.menu-toggle {
    display: none;
  }
  #navbar .main-menu-container button svg {
    height: 1.5rem;
    width: 1.5rem;
  }
  #navbar .button {
    font-size: 1.7rem;
    padding: 0.6rem 2.2rem 0.2rem;
    order: 1;
  }
}
@media (max-width: 450px) {
  #navbar {
    top: 1.6rem;
  }
  #navbar .logo {
    max-width: 8.6rem;
  }
  #navbar .menu-container {
    gap: 1.2rem;
  }
  #navbar .main-menu-wrapper {
    display: none;
  }
  #navbar .main-menu-container {
    gap: 1.3rem;
    padding: 0.45rem 1.6rem 0.3rem;
    order: 2;
  }
  #navbar .main-menu-container button {
    height: 2.6rem;
  }
  #navbar .main-menu-container button.menu-toggle {
    display: none;
  }
  #navbar .main-menu-container button svg {
    height: 1.5rem;
    width: 1.5rem;
  }
  #navbar .button {
    display: none;
  }
}
.link-card .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  display: block;
  margin: 0 0 2.4rem;
}
.link-card .card-image:hover img {
  transform: scale(1.05);
}
.link-card .card-image img {
  transition: transform 0.2s ease-in-out;
}
.link-card .word {
  position: absolute;
  top: 2.6rem;
  left: 3rem;
  display: inline-block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.87);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  padding: 0.4rem 1.8rem 0.2rem;
  color: #234867;
  text-transform: uppercase;
}
.link-card .heading {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 3rem;
  font-family: "Khand", sans-serif;
  margin: 0 0 0.4rem;
}
.link-card .description {
  margin: 0 0 1.8rem;
}
.link-card .tags {
  display: flex;
  gap: 0.7rem;
  margin: 0 0 0.7rem;
}

@media (max-width: 1280px) {
  .link-card .card-image {
    margin: 0 0 2rem;
  }
  .link-card .card-image:hover img {
    transform: scale(1.03);
  }
  .link-card .word {
    top: 2.2rem;
    left: 2.4rem;
    font-size: 1.3rem;
    line-height: 2.4rem;
    padding: 0.4rem 1.6rem 0.2rem;
  }
  .link-card .heading {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .link-card .description {
    margin: 0 0 0.8rem;
  }
  .link-card .tags {
    display: flex;
    gap: 0.7rem;
    margin: 0;
  }
  .link-card .tag-item.arrow {
    display: none;
  }
}
@media (max-width: 768px) {
  .link-card .card-image {
    margin: 0 0 1.4rem;
  }
  .link-card .card-image:hover img {
    transform: scale(1.02);
  }
  .link-card .word {
    top: 1.3rem;
    left: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5rem;
    padding: 0.4rem 1.6rem;
  }
  .link-card .heading {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .link-card .description {
    margin: 0 0 0.8rem;
  }
  .link-card .tags {
    gap: 0.6rem;
  }
}
.tag-item {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: #234867;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 0.4rem;
  background-color: #E7F1FA;
  width: fit-content;
  height: 3.9rem;
  padding: 0 1.1rem;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.tag-item svg path {
  transition: fill 0.2s ease-in-out;
}
.tag-item:hover {
  background-color: #174A75;
  color: #fff;
}
.tag-item:hover svg path {
  fill: #fff;
}
.tag-item:hover svg .pdf-bg {
  fill: #174A75;
}
.tag-item .icon {
  display: flex;
  align-items: center;
}

@media (max-width: 1280px) {
  .tag-item {
    gap: 0.6rem;
    font-size: 1.5rem;
    height: 3.2rem;
    padding: 0 1.1rem;
  }
}
@media (max-width: 768px) {
  .teg-item {
    gap: 0.6rem;
    font-size: 1.3rem;
    height: 2.4rem;
    padding: 0 0.8rem;
  }
  .teg-item svg {
    height: 1.7rem;
  }
}
.site-footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7.4rem;
  margin: 4.8rem 0 24rem;
}
.site-footer .content {
  background-image: url("../icons/footer-bg-1920.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 4.5rem 5.5rem;
  display: flex;
  flex-direction: column;
  border-radius: 2.1rem;
}
.site-footer .content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3.7rem;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #ccc;
  rotate: 2deg;
}
.site-footer .content .footer-heading {
  color: #174A75;
  font-family: "Khand", sans-serif;
  font-size: 6.5rem;
  line-height: 6rem;
  margin: 0 0 2.9rem;
  text-wrap: balance;
}
.site-footer .content .logo-container {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.site-footer .columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.site-footer .column .column-heading {
  color: #234867;
  font-family: "Khand", sans-serif;
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 500;
  margin: 0 0 1.4rem;
}
.site-footer .column .text {
  font-size: 2.1rem;
  line-height: 3rem;
}
.site-footer .column .text a {
  color: #000;
  text-decoration: none;
}
.site-footer .column .text a:hover {
  color: #E5007D;
}
.site-footer .column .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .column .footer-nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 2.1rem;
  line-height: 3rem;
  font-weight: 700;
}
.site-footer .column .footer-nav ul li a:hover {
  color: #E5007D;
}
.site-footer .column .icon-container {
  display: flex;
  gap: 2.3rem;
}
.site-footer .column .icon-container a {
  color: #000;
}
.site-footer .column .icon-container a:hover {
  color: #E5007D;
}

@media (max-width: 1280px) {
  .site-footer .footer-content {
    gap: 5.8rem;
    margin: 4.8rem 0 14rem;
  }
  .site-footer .content {
    background-image: url("../icons/footer-bg-1280.png");
    padding: 4rem 4.4rem;
  }
  .site-footer .content::after {
    right: -2rem;
  }
  .site-footer .content::before {
    content: "";
    position: absolute;
    top: 0;
    right: -13px;
    bottom: 0;
    width: 20px;
    height: 100%;
    background-color: #fff;
    rotate: 2deg;
  }
  .site-footer .content .footer-heading {
    font-size: 4.5rem;
    line-height: 4rem;
    margin: 0 0 2.8rem;
  }
  .site-footer .columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
  .site-footer .column .column-heading {
    font-size: 2.2rem;
  }
  .site-footer .column .text {
    font-size: 2.1rem;
    line-height: 3rem;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-content {
    gap: 2.6rem;
    margin: 3.5rem auto 17.5rem;
    grid-template-columns: 1fr;
    border-top: 1px solid #ccc;
    padding-top: 4rem;
    grid-column: breakout !important;
    width: 100%;
  }
  .site-footer .content {
    background-image: url("../icons/footer-bg-768.png");
    padding: 3.3rem 4.6rem;
    order: 2;
    max-width: 40rem;
    margin: 0 auto;
  }
  .site-footer .content::after {
    content: none;
  }
  .site-footer .content::before {
    content: none;
  }
  .site-footer .content .logo-container {
    margin: 2.7rem 0 0;
  }
  .site-footer .columns {
    gap: 4.5rem 2rem;
    order: 1;
    max-width: 50rem;
    margin: 0 auto;
    grid-template-columns: 1fr 1.2fr;
    padding-left: 5rem;
  }
  .site-footer .column .column-heading {
    font-size: 2.2rem;
    margin: 0 0 0.5rem;
  }
  .site-footer .column .text {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  .site-footer .column .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-footer .column .footer-nav ul li a {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  .site-footer .column .icon-container {
    display: flex;
    gap: 2.3rem;
  }
  .site-footer .column .icon-container a {
    color: #000;
  }
  .site-footer .column .icon-container a:hover {
    color: #E5007D;
  }
}
@media (max-width: 550px) {
  .site-footer .footer-content {
    grid-column: breakout !important;
  }
  .site-footer .columns {
    padding-left: 0;
  }
  .site-footer .content {
    margin: 0;
  }
}
@media (max-width: 450px) {
  .site-footer .footer-content {
    gap: 3.2rem;
    margin: 2.7rem auto 10.2rem;
    border-top: none;
    padding: 0;
  }
  .site-footer .content {
    padding: 3.7rem 3.5rem;
  }
  .site-footer .columns {
    gap: 1.5rem;
    order: 1;
    max-width: 50rem;
    margin: 0 calc(27px + 0.4rem);
    grid-template-columns: 1fr;
    padding: 2.3rem 0;
    border-top: 1px solid #ccc;
  }
  .site-footer .column .column-heading {
    font-size: 2.3rem;
    line-height: 3rem;
    margin: 0 0 0.5rem;
  }
  .site-footer .column .text {
    font-size: 1.9rem;
    line-height: 2.2rem;
  }
  .site-footer .column .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-footer .column .footer-nav ul li a {
    font-size: 1.9rem;
    line-height: 2.2rem;
  }
  .site-footer .column .icon-container {
    display: flex;
    gap: 2.8rem;
  }
}
.mega-menu {
  position: absolute;
  top: calc(100% + 1.4rem);
  right: 16.5rem;
  border-radius: 6px;
  background: radial-gradient(69.79% 69.79% at 50% 49.91%, rgba(255, 255, 255, 0.95) 69.5%, rgba(246, 246, 246, 0.93) 100%);
  padding: 3.4rem 2.1rem 8rem 5.2rem;
  width: 64.8rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
  pointer-events: none;
  transform: translateY(-1rem);
}
.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.mega-menu .menu-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.4rem 10rem;
}
.mega-menu::after {
  content: "";
  position: absolute;
  top: 3.4rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 11.4rem);
  background: rgba(35, 72, 103, 0.21);
}
.mega-menu .menu-box-heading {
  font-family: "Khand", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #7CB0E1;
  line-height: normal;
  margin: 0 0 0.6rem;
}
.mega-menu .menu-box-heading .menu-accordion-toggle {
  display: none !important;
}
.mega-menu .menu-box-links {
  display: grid;
  gap: 0 3.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu .menu-box-links.column-size-1 {
  grid-template-columns: repeat(1, 1fr);
}
.mega-menu .menu-box-links.column-size-2 {
  grid-template-columns: repeat(2, 1fr);
}
.mega-menu .menu-box-links a {
  color: #234867;
  font-size: 1.8rem;
  line-height: 3.5rem;
  font-weight: 700;
}
.mega-menu .menu-box-links a:hover {
  color: #E5007D;
}
.mega-menu .text {
  color: #234867;
  font-size: 1.9rem;
  line-height: 2.6rem;
}
.mega-menu .text a {
  color: #234867;
  text-decoration: none;
}
.mega-menu .text a:hover {
  color: #E5007D;
}

@media (max-width: 1280px) {
  .mega-menu {
    right: 12.5rem;
  }
}
@media (max-width: 768px) {
  .mega-menu {
    top: calc(100% + 0.9rem);
    padding: 2.2rem 3.5rem 3.5rem;
    width: 100%;
    right: 0;
    left: 0;
    grid-column: content !important;
    display: block !important;
  }
  .mega-menu .menu-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .mega-menu::after {
    content: none;
  }
  .mega-menu .menu-box:nth-child(odd) {
    order: 1;
  }
  .mega-menu .menu-box:nth-child(even) {
    order: 2;
  }
  .mega-menu .menu-box:last-child .menu-accordion {
    border-bottom: none;
  }
  .mega-menu .menu-box.first .menu-accordion {
    max-height: unset;
  }
  .mega-menu .menu-box-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.3rem;
  }
  .mega-menu .menu-box-heading .menu-accordion-toggle {
    display: block !important;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .mega-menu .menu-box-heading.is-open .menu-accordion-toggle {
    transform: rotate(180deg);
  }
  .mega-menu .menu-box-heading:hover {
    cursor: pointer;
  }
  .mega-menu .menu-accordion {
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(35, 72, 103, 0.21);
    transition: max-height 0.2s ease-in-out;
  }
  .mega-menu .accordion-wrapper {
    padding: 0 0 2rem;
  }
  .mega-menu .menu-box-links {
    display: grid;
    gap: 0 3.4rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mega-menu .menu-box-links.column-size-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .mega-menu .menu-box-links.column-size-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu .menu-box-links a {
    color: #234867;
    font-size: 1.8rem;
    line-height: 3.5rem;
    font-weight: 700;
  }
  .mega-menu .menu-box-links a:hover {
    color: #E5007D;
  }
  .mega-menu .text {
    color: #234867;
    font-size: 1.9rem;
    line-height: 2.6rem;
  }
  .mega-menu .text a {
    color: #234867;
    text-decoration: none;
  }
  .mega-menu .text a:hover {
    color: #E5007D;
  }
}
.business-area-item {
  display: flex;
  border-radius: 0.9rem;
  background-image: url("../icons/business-area-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.business-area-item .business-area-content {
  padding: 4.4rem 3rem 4.7rem 3rem;
  display: flex;
  flex-direction: column;
}
.business-area-item .business-area-content .heading {
  font-family: "Khand", sans-serif;
  font-size: 6rem;
  line-height: 4.9rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
  color: #174A75;
}
.business-area-item .business-area-content .text {
  color: #000;
  font-size: 2.1rem;
  line-height: 2.5rem;
  flex: 1;
  margin: 0 0 2rem;
}
.business-area-item .business-area-image {
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  width: 100%;
  max-width: 22.6rem;
}

@media (max-width: 1280px) {
  .business-area-item .business-area-content {
    padding: 2.9rem 1.9rem;
    max-width: calc(100% - 15rem);
  }
  .business-area-item .business-area-content .heading {
    font-size: 4.2rem;
    line-height: 3.6rem;
  }
  .business-area-item .business-area-content .text {
    font-size: 1.8rem;
    line-height: 2rem;
    flex: 1;
    margin: 0 0 1.5rem;
  }
  .business-area-item .business-area-image {
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    max-width: 15rem;
  }
}
@media (max-width: 768px) {
  .business-area-item .business-area-content {
    padding: 2.7rem 1.8rem 2.9rem 1.7rem;
    max-width: calc(100% - 14rem);
  }
  .business-area-item .business-area-content .heading {
    font-size: 4rem;
    line-height: 3.4rem;
    margin: 0 0 0.6rem;
  }
  .business-area-item .business-area-content .text {
    font-size: 1.8rem;
    line-height: 2rem;
    flex: 1;
    margin: 0 0 1rem;
  }
  .business-area-item .business-area-image {
    max-width: 14rem;
  }
}
#breadcrumbs {
  font-family: "Khand", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  position: fixed;
  bottom: 10rem;
  left: 0;
  z-index: 998;
  color: #174A75;
  padding: 0.7rem 2rem 0.5rem;
  background-color: #F4F7F9;
  border-radius: 0px 6px 6px 0px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  min-height: 4.4rem;
  transition: gap 0.3s ease-in-out;
}
#breadcrumbs.closed {
  gap: 0;
}
#breadcrumbs.closed svg {
  transform: rotate(180deg);
}
#breadcrumbs .breadcrumbs-wrapper {
  overflow: hidden;
  transition: max-width 0.3s ease-in-out;
}
#breadcrumbs .breadcrumbs-wrapper.closed {
  max-width: 0;
}
#breadcrumbs .breadcrumbs-wrapper nav {
  width: max-content;
}
#breadcrumbs a {
  color: #174A75;
}
#breadcrumbs a:hover {
  color: #E5007D;
}
#breadcrumbs svg:hover {
  cursor: pointer;
}

@media (max-width: 1280px) {
  #breadcrumbs {
    bottom: 10rem;
  }
}
@media (max-width: 768px) {
  #breadcrumbs {
    bottom: 5rem;
    min-height: 3rem;
    font-size: 1.8rem;
    padding: 0.5rem 1rem;
  }
  #breadcrumbs.mobile-hidden {
    display: none;
  }
}
.product-card {
  color: #000;
}
.product-card .product-card-image {
  overflow: hidden;
  display: block;
  border-radius: 0.9rem;
  border: 1px solid rgba(207, 212, 217, 0.77);
}
.product-card .product-card-image:hover img {
  transform: scale(1.05);
}
.product-card .product-card-image img {
  transition: transform 0.2s ease-in-out;
}
.product-card .product-card-heading {
  font-size: 2.8rem;
  font-family: "Khand", sans-serif;
  font-weight: 500;
  line-height: 3rem;
  margin: 2.1rem 0 0;
}
.product-card .text {
  margin: 0.8rem 0 0;
}

@media (max-width: 1280px) {
  .product-card .product-card-heading {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin: 1.2rem 0 0;
  }
  .product-card .text {
    margin: 0.7rem 0 0;
  }
}
@media (max-width: 768px) {
  .product-card .product-card-heading {
    margin: 1.6rem 0 0;
  }
}
.coworker-item {
  display: flex;
  border-radius: 0.9rem;
  background-image: url("../icons/business-area-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.coworker-item .coworker-content {
  padding: 3.2rem 3rem 3.8rem 3rem;
  display: flex;
  flex-direction: column;
}
.coworker-item .coworker-content .name {
  font-family: "Khand", sans-serif;
  font-size: 4rem;
  line-height: 3.4rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
  color: #174A75;
}
.coworker-item .coworker-content .role {
  color: #174A75;
  font-size: 3.1rem;
  line-height: 3.4rem;
  font-weight: 600;
  font-family: "Khand", sans-serif;
  margin: 0 0 1.3rem;
}
.coworker-item .coworker-content .phone {
  font-weight: 600;
}
.coworker-item .coworker-content .phone a {
  color: #000;
  font-weight: 400;
}
.coworker-item .coworker-content .phone a:hover {
  color: #E5007D;
}
.coworker-item .coworker-content .email {
  color: #000;
  font-weight: 600;
}
.coworker-item .coworker-content .email:hover {
  color: #E5007D;
}
.coworker-item .coworker-content .tags {
  display: flex;
  gap: 0.8rem 1.3rem;
  margin: 1.6rem 0 0;
}
.coworker-item .coworker-content .link {
  margin: 0.8rem 0 0;
}
.coworker-item .coworker-image {
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  width: 100%;
  max-width: 22.6rem;
}
.coworker-item .coworker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1280px) {
  .coworker-item .coworker-content {
    padding: 2.9rem 1.9rem;
    max-width: calc(100% - 15rem);
  }
  .coworker-item .coworker-content .name {
    font-size: 4.2rem;
    line-height: 3.6rem;
  }
  .coworker-item .coworker-content .role {
    font-size: 1.8rem;
    line-height: 2rem;
    margin: 0 0 1.5rem;
  }
  .coworker-item .coworker-image {
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    max-width: 15rem;
  }
}
@media (max-width: 768px) {
  .coworker-item .coworker-content {
    padding: 2.7rem 1.8rem 2.9rem 1.7rem;
    max-width: calc(100% - 14rem);
  }
  .coworker-item .coworker-content .name {
    font-size: 4rem;
    line-height: 3.4rem;
    margin: 0 0 0.6rem;
  }
  .coworker-item .coworker-content .role {
    font-size: 1.8rem;
    line-height: 2rem;
    margin: 0 0 1rem;
  }
  .coworker-item .coworker-image {
    max-width: 14rem;
  }
}
@media (max-width: 450px) {
  .coworker-item .coworker-content {
    padding: 2.7rem 1.8rem 2.9rem 1.7rem;
    max-width: calc(100% - 14rem);
  }
  .coworker-item .coworker-content .name {
    font-size: 2.8rem;
    line-height: 2.7rem;
    margin: 0 0 0.6rem;
  }
  .coworker-item .coworker-content .role {
    font-size: 1.6rem;
    line-height: 1.8rem;
    margin: 0 0 1rem;
  }
  .coworker-item .coworker-image {
    max-width: 14rem;
  }
}
.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}
.video-container .video-play {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}
.video-container .video-play.is-playing {
  display: none;
}

.search-container {
  position: absolute;
  top: calc(100% + 1.4rem);
  right: 16.5rem;
  border-radius: 6px;
  background: radial-gradient(69.79% 69.79% at 50% 49.91%, rgba(255, 255, 255, 0.95) 69.5%, rgba(246, 246, 246, 0.93) 100%);
  padding: 2.1rem 3.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
  pointer-events: none;
  transform: translateY(-1rem);
}
.search-container.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.search-container form {
  display: flex;
  gap: 1.5rem;
}
.search-container form input {
  border: 1px solid rgba(247, 247, 247, 0.95);
  border-radius: 0.9rem;
  font-size: 1.9rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  background-color: #fff;
  height: 100%;
}
.search-container form input:focus {
  outline: none;
}
.search-container form input[type=submit] {
  font-size: 1.9rem;
  padding: 0.575em 1.5em;
  border-radius: 1.8rem;
  border: 2px solid transparent;
  display: inline-flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  background-color: #E5007D;
  color: #fff;
  border-color: #E5007D;
}
.search-container form input[type=submit]:hover {
  background-color: #174A75;
  border-color: #174A75;
}

@media (max-width: 1280px) {
  .search-container {
    right: 12.5rem;
  }
}
@media (max-width: 768px) {
  .search-container {
    top: calc(100% + 0.9rem);
    padding: 2.2rem 3.5rem;
    width: 100%;
    right: 0;
    left: 0;
    grid-column: content !important;
    display: block !important;
  }
  .search-container div input[type=text] {
    width: 100%;
  }
}
.job-card .job-bg {
  padding: 4.9rem 2.1rem 4.7rem 6.3rem;
  background-image: url("../icons/job-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0.9rem;
}
.job-card .name {
  font-size: 6rem;
  line-height: 4.9rem;
  font-weight: 600;
  font-family: "Khand", sans-serif;
  color: #174A75;
  margin: 0 0 1.9rem;
}
.job-card .job-label {
  font-size: 2.3rem;
  line-height: 3rem;
  font-weight: 500;
  font-family: "Khand", sans-serif;
  color: #5896D1;
}
.job-card .placement {
  margin: 0 0 1.2rem;
}
.job-card .placement,
.job-card .last-day-to-apply {
  font-weight: 700;
}
.job-card .button {
  margin: 5.1rem 0 0;
}

@media (max-width: 1280px) {
  .job-card .job-bg {
    padding: 2.9rem 2rem 2.9rem 3.6rem;
  }
  .job-card .name {
    font-size: 4.2rem;
    line-height: 3.6rem;
    margin: 0 0 6.7rem;
  }
  .job-card .job-label {
    font-size: 2rem;
    line-height: 2.7rem;
  }
  .job-card .placement {
    margin: 0 0 0.2rem;
  }
  .job-card .button {
    margin: 2.1rem 0 0;
  }
}
@media (max-width: 768px) {
  .job-card .job-bg {
    padding: 2.7rem 1.8rem 2.9rem 3.7rem;
  }
  .job-card .name {
    font-size: 4rem;
    line-height: 3.4rem;
    margin: 0 0 5.9rem;
  }
  .job-card .job-label {
    font-size: 2rem;
    line-height: 2.7rem;
  }
}
.language-switcher {
  position: absolute;
  top: calc(100% + 1.4rem);
  right: 16.5rem;
  border-radius: 6px;
  background: radial-gradient(69.79% 69.79% at 50% 49.91%, rgba(255, 255, 255, 0.95) 69.5%, rgba(246, 246, 246, 0.93) 100%);
  padding: 2.1rem 3.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s ease-in-out;
  pointer-events: none;
  transform: translateY(-1rem);
}
.language-switcher.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

@media (max-width: 1280px) {
  .language-switcher {
    right: 12.5rem;
  }
}
@media (max-width: 768px) {
  .language-switcher {
    top: calc(100% + 0.9rem);
    padding: 2.2rem 3.5rem;
    width: 100%;
    right: 0;
    left: 0;
    grid-column: content !important;
    display: block !important;
  }
}
.info-page .info-page-hero {
  padding: 10rem 0 9.5rem;
}
.info-page .info-page-hero .container {
  max-width: 75rem;
  margin: 0 auto;
}
.info-page .info-page-hero .heading {
  text-align: center;
  margin: 0 0 5.4rem;
}
.info-page .info-page-hero .text {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}
.info-page .info-grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 10rem;
}
.info-page .sidebar {
  position: sticky;
  top: 10rem;
  height: 0;
}
.info-page .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-page .sidebar a {
  color: #000;
  text-decoration: none;
  font-size: 2rem;
  line-height: 4rem;
  transition: padding-left 0.3s, font-weight 0.3s;
}
.info-page .sidebar a:hover {
  cursor: pointer;
  padding-left: 2rem;
  font-weight: 700;
}
.info-page .sidebar .current-menu-item a {
  font-weight: 700;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .info-page .info-page-hero {
    padding: 5rem 0;
  }
  .info-page .info-page-hero .heading {
    margin: 0 0 2.5rem;
  }
  .info-page .info-page-hero .text {
    font-size: 1.8rem;
  }
  .info-page .info-grid {
    grid-template-columns: 100%;
    gap: 0rem;
    padding-top: 2rem;
  }
  .info-page .main-content {
    order: 1;
  }
  .info-page .sidebar {
    padding: 0 0 8rem;
    order: 2;
  }
}
.blog-page {
  padding: 18.4rem 0 5.5rem;
}
.blog-page .blog-hero .heading {
  text-align: center;
  color: #7CB0E1;
  font-weight: 500;
}
.blog-page .blog-hero .text {
  text-align: center;
  font-size: 2.9rem;
  line-height: 3.2rem;
  font-family: "Khand", sans-serif;
  font-weight: 500;
  max-width: 92rem;
  margin: 3.2rem auto 0;
}
.blog-page .blog-grid {
  margin: 4.8rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.1rem;
}
.blog-page .blog-post-load-more {
  text-align: center;
  margin: 4.3rem 0 0;
}
.blog-page .blog-post-load-more .button {
  min-width: 33.8rem;
}
.blog-page .no-results {
  text-align: center;
  font-size: 6.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
}

@media (max-width: 1280px) {
  .blog-page {
    padding: 14.4rem 0 5.5rem;
  }
  .blog-page .blog-hero .text {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .blog-page .blog-grid {
    margin: 4.8rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.6rem;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 4.3rem 0 0;
  }
  .blog-page .blog-post-load-more .button {
    min-width: 33.8rem;
  }
}
@media (max-width: 768px) {
  .blog-page {
    padding: 8rem 0 5.6rem;
  }
  .blog-page .blog-hero .text {
    margin: 3rem 0 0;
  }
  .blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 3rem 0 0;
  }
  .blog-page .no-results {
    font-size: 4.5rem;
    min-height: 20vh;
  }
}
@media (max-width: 550px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem;
  }
}
@media (max-width: 450px) {
  .blog-page {
    padding: 9rem 0 3.6rem;
  }
  .blog-page .blog-hero .text {
    margin: 2rem 0 0;
    font-size: 2.3rem;
    line-height: 2.6rem;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 3rem 0 0;
  }
}
.single-post {
  padding: 15rem 0 0;
}

@media (max-width: 1280px) {
  .single-post {
    padding: 9.2rem 0 0;
  }
}
@media (max-width: 768px) {
  .single-post {
    padding: 9rem 0 0;
  }
}
@media (max-width: 450px) {
  .single-post {
    padding: 4.8rem 0 0;
  }
}
.page-contact {
  padding: 15rem 0 0;
}

@media (max-width: 1280px) {
  .page-contact {
    padding: 9.2rem 0 0;
  }
}
@media (max-width: 768px) {
  .page-contact {
    padding: 9rem 0 0;
  }
}
@media (max-width: 450px) {
  .page-contact {
    padding: 4.8rem 0 0;
  }
}
.error-404 section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-404 section .h1 {
  font-size: 16.8rem;
  line-height: 7.7rem;
}
.error-404 section .heading {
  margin: 0 0 6.5rem;
}
.error-404 section .text {
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 500;
  font-family: "Khand", sans-serif;
}
.error-404 section .button {
  margin-top: 4.8rem;
  min-width: 33.8rem;
}

@media (max-width: 1280px) {
  .error-404 section .h1 {
    font-size: 14.8rem;
    line-height: 6.7rem;
  }
  .error-404 section .heading {
    margin: 0 0 5.9rem;
  }
  .error-404 section .text {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .error-404 section .button {
    margin-top: 4.3rem;
  }
}
@media (max-width: 768px) {
  .error-404 section .h1 {
    font-size: 12.8rem;
    line-height: 5.7rem;
  }
  .error-404 section .heading {
    margin: 0 0 4.5rem;
  }
  .error-404 section .text {
    font-size: 2rem;
    line-height: 2.3rem;
  }
  .error-404 section .button {
    margin-top: 3.8rem;
    min-width: 22.8rem;
  }
}
@media (max-width: 450px) {
  .error-404 section .h1 {
    font-size: 10.8rem;
    line-height: 4.7rem;
  }
  .error-404 section .heading {
    margin: 0 0 3.5rem;
  }
  .error-404 section .text {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }
  .error-404 section .button {
    margin-top: 3.3rem;
    min-width: unset;
  }
}