/*!****************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss ***!
  \****************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
/*!********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/index.scss (1) ***!
  \********************************************************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  color: #010203;
}

h1.left, h2.left, h3.left, h4.left, h5.left, h6.left, p.left, a.left, span.left {
  text-align: left;
}
h1.center, h2.center, h3.center, h4.center, h5.center, h6.center, p.center, a.center, span.center {
  text-align: center;
}
h1.right, h2.right, h3.right, h4.right, h5.right, h6.right, p.right, a.right, span.right {
  text-align: right;
}

h1 {
  font-family: Montserrat;
  font-size: 4rem;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 850px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 2.88888rem;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 850px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2.44444rem;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 850px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 850px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  color: #010203;
  font-family: Montserrat;
  font-size: 1.555555rem;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 850px) {
  h5 {
    font-size: 1.25rem;
  }
}

p {
  color: #010203;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
@media (max-width: 1000px) {
  p {
    font-size: 1rem;
  }
}
p a {
  color: #FF3B00;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes moveInUp {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveInDown {
  0% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
}

.noscroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.none {
  display: none;
}

.container {
  display: block;
  width: 100%;
  padding: 0 4rem;
}
@media (max-width: 1000px) {
  .container {
    padding: 0 20px;
  }
}

.row {
  max-width: 1440px;
  display: flex;
  margin: 0 auto;
}
.row.full-width {
  max-width: 100%;
}

.page-container {
  overflow-x: clip;
}

.col {
  width: 100%;
}

.col-100 {
  width: 100%;
}

.col-75 {
  width: 75%;
}

.col-50 {
  width: 50%;
}

.col-25 {
  width: 25%;
}

.blue {
  background-color: #182145;
}

.grey {
  background-color: #F2F2F2;
}

.topbar {
  background-color: #163444;
}

span.label {
  display: block;
  font-weight: 700;
  padding-bottom: 16px;
}
@media (max-width: 850px) {
  span.label {
    font-size: 0.9375rem;
  }
}

.slick-dots {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  gap: 4px;
}
.slick-dots li {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.2);
}
.slick-dots li button {
  font-size: 0;
}
.slick-dots li.slick-active {
  background-color: #4BAEE5;
}

.content-block__reveal {
  opacity: 0;
  transform: translateY(var(--content-block-reveal-distance, 50px));
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.content-block__reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .content-block__reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.btn {
  display: flex;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
}
.btn span {
  height: 44px;
  color: #ffffff;
  border-radius: 24px;
  padding: 10px 24px;
  background-color: #4BAEE5;
  transition: 0.125s ease-in-out;
  text-decoration: none;
  font-family: "montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.btn--primary:after {
  position: relative;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4BAEE5;
  border-radius: 24px;
  width: 44px;
  height: 44px;
  transition: 0.125s ease-in-out;
  color: #ffffff;
}
.btn--primary:hover span, .btn--primary:hover:after {
  background-color: #3C8BB7;
  color: #ffffff;
}
.btn--link:after {
  position: relative;
  content: url(fa8038d0e575f599ce4d.svg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4BAEE5;
  border-radius: 24px;
  width: 44px;
  height: 44px;
  transition: 0.125s ease-in-out;
  color: #ffffff;
}
.btn--link:hover:after {
  animation: wiggle 0.4s ease-in-out;
  animation-iteration-count: 2;
}
.btn--send:after {
  content: url(58cf0e007cf4904cebbd.svg);
  padding-top: 4px;
  height: 40px;
  transition: 0.125s ease-in-out;
}
.btn--send:hover:after {
  width: 36px;
  padding-left: 8px;
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(30deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn--orange span {
  background-color: #FF3B00;
}
.btn--orange:after {
  background-color: #FF3B00;
}
.btn--orange:hover span, .btn--orange:hover:after {
  background-color: #E13400;
  color: #ffffff;
}
.btn--square img {
  transition: 0.125s ease-in-out;
}
.btn--square span {
  width: 44px;
  height: 44px;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4BAEE5;
  border-radius: 24px;
  transition: 0.125s ease-in-out;
}
.btn--square.next img {
  transform: translateX(2px);
}
.btn--square.next:hover img {
  transform: translateX(5px);
}
.btn--square.prev img {
  transform: translateX(-2px);
}
.btn--square.prev:hover img {
  transform: translateX(-5px);
}
.btn--square.arrow:hover img {
  transform: translateX(5px);
}
.btn--square.arrow.back:hover img {
  transform: translateX(-5px) rotate(180deg);
}
.btn--square.arrow.back img {
  transform: rotate(180deg);
}

button {
  border: none;
  background-color: transparent;
}

.site-header {
  width: 100%;
}
.site-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  animation: headerSlideIn 0.35s ease forwards;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.site-header.is-fixed .bottom-bar {
  background-color: #ffffff;
}

@keyframes headerSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.logo {
  transition: 0.125s ease-in-out;
  transform-origin: left center;
}
.logo:hover {
  transform: scale(1.05);
}

.topbar .col {
  display: flex;
  justify-content: flex-end;
  padding: 7px 0;
}
.topbar .login {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 18px;
  font-size: 1rem;
}
.topbar img {
  height: 24px;
  width: 24px;
}

.bottom-bar {
  height: 92px;
  display: flex;
  align-items: center;
}
.bottom-bar__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom-bar .menu-toggle {
  display: none;
}
.bottom-bar .container, .bottom-bar .row {
  height: 100%;
}
.bottom-bar .main-navigation ul {
  padding-left: unset;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.bottom-bar .main-navigation li.current-menu-item {
  position: relative;
}
.bottom-bar .main-navigation li.current-menu-item::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #163444;
  border-radius: 3px;
  opacity: 0.8;
}
.bottom-bar .main-navigation li.button a {
  height: 44px;
  color: #ffffff;
  border-radius: 24px;
  padding: 10px 24px;
  background-color: #4BAEE5;
  white-space: nowrap;
  font-weight: 500;
  transition: 0.125s ease-in-out;
}
.bottom-bar .main-navigation li.button:hover a {
  background-color: #3C8BB7;
}
.bottom-bar .main-navigation a {
  text-decoration: none;
  color: #010203;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .bottom-bar .menu-toggle {
    position: relative;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .bottom-bar .menu-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #010203;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }
  .bottom-bar .main-navigation.is-open .menu-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .bottom-bar .main-navigation.is-open .menu-toggle__bar:nth-child(2) {
    opacity: 0;
  }
  .bottom-bar .main-navigation.is-open .menu-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .bottom-bar .main-navigation .primary-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .bottom-bar .main-navigation .primary-menu li {
    text-align: center;
  }
  .bottom-bar .main-navigation .primary-menu li a {
    font-size: 1.25rem;
  }
  .bottom-bar .main-navigation.is-open .primary-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.footer {
  padding: 80px 0;
}
.footer .mini-logo {
  margin-bottom: 20px;
}
.footer .mini-logo img {
  width: 84px;
}
.footer__top-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__top-container .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1150px) {
  .footer__top-container .row {
    flex-direction: column;
    gap: 40px;
  }
  .footer__top-container .row .col-50 {
    width: 100%;
  }
}
.footer__top-container .row:last-child {
  align-items: center;
}
.footer__top-container__intro p {
  font-size: 1rem;
  max-width: 450px;
}
.footer__top-container__menu {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1150px) {
  .footer__top-container__menu {
    justify-content: flex-start;
  }
  .footer__top-container__menu .footer-top-menu {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  .footer__top-container__menu .footer-top-menu .menu-label {
    width: fit-content !important;
  }
}
.footer__top-container__menu .footer-top-menu {
  display: flex;
  justify-content: flex-end;
}
.footer__top-container__menu .footer-top-menu .menu-label {
  width: 178px;
  list-style-type: none;
  padding-left: unset;
}
.footer__top-container__menu .footer-top-menu .menu-label a {
  font-size: 1rem !important;
  color: #010203;
  text-decoration: none;
}
.footer__top-container__menu .footer-top-menu .menu-label a:not(.sub-menu a) {
  font-weight: 600;
  pointer-events: none;
}
.footer__top-container__menu .footer-top-menu .menu-label .sub-menu {
  list-style-type: none;
  padding-left: unset;
  margin-top: 16px;
  width: 100%;
}
.footer__top-container__menu .footer-top-menu .menu-label .sub-menu li {
  padding: 8px 0;
  font-size: 0.875rem;
}
.footer__top-container__logo img {
  max-width: 372px;
  width: 100%;
}
.footer__top-container__location {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1150px) {
  .footer__top-container__location {
    justify-content: flex-start;
  }
}
.footer__top-container__location ul {
  display: flex;
  list-style-type: none;
  padding-left: unset;
  gap: 32px;
}
.footer__top-container__location ul li {
  font-size: 0.875rem;
}
.footer__bottom-container .footer-menu {
  display: flex;
  list-style-type: none;
  padding-left: unset;
  gap: 32px;
}
@media (max-width: 1150px) {
  .footer__bottom-container .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__bottom-container .footer-menu li {
  font-size: 0.875rem;
}
.footer__bottom-container .footer-menu a {
  color: #010203;
}
.footer__bottom-container .row {
  padding-top: 32px;
  border-top: 1px solid rgba(1, 2, 3, 0.15);
}
.footer__bottom-container .col {
  display: flex;
  justify-content: flex-end;
}

.hero--home {
  position: relative;
  min-height: 684px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 66px;
  background-size: cover;
}
.hero--home:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #182145;
  background: linear-gradient(0deg, #182145 0%, rgba(24, 33, 69, 0) 100%);
}
.hero--home__content {
  position: relative;
  z-index: 3;
}
.hero--home__content h1 {
  max-width: 550px;
  color: #fff;
  margin-bottom: 20px;
}
.hero--home__content p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.hero--home__content .btn {
  margin-top: 32px;
}
.hero--trainingen .title-row, .hero--normal .title-row {
  padding: 5rem 0;
}
.hero--trainingen h1, .hero--normal h1 {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.hero--trainingen .label, .hero--normal .label {
  text-align: center;
  background-color: #182145;
  color: #fff;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 24px;
  margin: 0 auto;
  margin-top: 16px;
}
.hero--trainingen .content, .hero--normal .content {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  margin-top: 24px;
}
.hero--trainingen .content p, .hero--normal .content p {
  text-align: center;
}
.hero--trainingen .image-container, .hero--normal .image-container {
  max-height: 636px;
  height: 100%;
  width: 100%;
}
.hero--trainingen .image-container img, .hero--normal .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-contact {
  position: relative;
}
.page-contact h1 {
  margin-bottom: 2.5rem;
  color: #010203;
  font-size: 52px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.52px;
}
.page-contact h6 {
  color: #010203;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  /* 30.8px */
}
.page-contact h3 {
  color: #010203;
  font-size: 26px;
  font-weight: 500;
  line-height: 140%;
  /* 36.4px */
  letter-spacing: -0.26px;
  margin-bottom: 18px;
}
.page-contact .container {
  position: relative;
}
.page-contact .container:first-of-type {
  padding-top: 110px;
}
.page-contact .container:first-of-type .col {
  width: fit-content;
}
.page-contact .container:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #F2F2F2;
  z-index: -1;
}
@media (max-width: 1000px) {
  .page-contact .container:first-of-type .row {
    flex-direction: column;
    padding: 0 0 100px;
  }
  .page-contact .container:first-of-type .row .col {
    width: 100%;
  }
  .page-contact .container:first-of-type .row .page-contact__right-container {
    max-width: calc(100% - 60px);
  }
  .page-contact .container:first-of-type .row .page-contact__left-container {
    flex-wrap: wrap;
    display: flex;
    gap: 0 60px;
  }
  .page-contact .container:first-of-type .row .page-contact__left-container h1 {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .page-contact .container:first-of-type .row .page-contact__right-container {
    max-width: 100%;
  }
  .page-contact .container:first-of-type .row .animating-image-container {
    display: none;
  }
}
.page-contact .row {
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 48px 100px;
}
.page-contact__left-container ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-contact__left-container li a {
  color: #FF3B00;
  text-decoration: none;
}
.page-contact__left-container h6 {
  padding-bottom: 8px;
}
.page-contact__right-container {
  position: relative;
  background-color: #fff;
  padding: 48px 46px 64px;
  border-radius: 6px;
  max-width: 669px;
}
.page-contact__right-container ul {
  list-style-type: none;
}
.page-contact__right-container ul li {
  border-bottom: 2px solid #D8D9D9;
  padding: 12px 0;
  cursor: pointer;
}
.page-contact__right-container ul li .link {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.35;
}
.page-contact__right-container ul li .link:before {
  content: "";
  position: relative;
  width: 9px;
  height: 9px;
  background-color: #010203;
  margin-right: 20px;
  border-radius: 50%;
}
.page-contact__right-container ul li span {
  color: #010203;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 130%;
  /* 46.8px */
  letter-spacing: -0.36px;
}
.page-contact__right-container ul li button {
  opacity: 0;
  pointer-events: none;
  transition: 0.125s ease-in-out;
}
.page-contact__right-container ul li.active .link {
  opacity: 1;
}
.page-contact__right-container ul li.active button {
  transform: translateX(32px);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.page-contact__right-container .animating-image-container {
  position: absolute;
  z-index: 1;
  top: calc(50% + 30px);
  right: -4rem;
  transform: translateY(-50%);
}
.page-contact__right-container .line-ball-under {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -67px;
  width: 247.871px;
  height: 241.438px;
  transition: 0.45s ease-in-out;
  overflow: hidden;
}
.page-contact__right-container .line-ball-under img {
  width: 100%;
}
.page-contact__right-container .line-ball-over {
  z-index: -1;
  bottom: -50px;
  left: -95px;
  position: absolute;
  width: 224px;
  height: 224px;
  mix-blend-mode: color-dodge;
  transition: 0.6s ease-in-out;
}
.page-contact__right-container .line-ball-over img {
  width: 100%;
}
.page-contact__right-container .animating-image {
  position: relative;
  z-index: 2;
  width: 219.293px;
  height: 233.912px;
  transform: rotate(8.999deg);
  transform-origin: center center;
  transition: 0.25s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}
.page-contact__right-container .animating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-contact__right-container .animating-image.active-one {
  transform: rotate(8.999deg);
}
.page-contact__right-container .animating-image.active-two {
  transform: rotate(-2.999deg);
}
.page-contact__right-container .animating-image.active-four {
  transform: rotate(-8.999deg);
}
.page-contact input:not([type=submit]), .page-contact textarea {
  padding: 12px 24px !important;
  border: none;
  border-bottom: 1px solid #E3E3E3;
  color: #010203;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
}
.page-contact textarea {
  height: 150px;
}
.page-contact button[type=submit] {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(50%) translateX(-50%);
  margin-bottom: 0 !important;
}
.page-contact .back {
  position: absolute;
  left: 0;
  top: 40px;
  transform: translateX(-50%) rotate(180deg);
}
.page-contact .back:hover span {
  background-color: #3C8BB7;
}
.page-contact .back:hover img {
  transform: translateX(5px);
}
.page-contact .gform_footer {
  margin-top: 24px;
  padding: 0 !important;
}
.page-contact .gform_footer .btn {
  width: auto;
}
.page-contact .gchoice {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.page-contact .gchoice .gfield-choice-input {
  width: 23px;
  height: 23px;
  border: 1px solid #E3E3E3 !important;
  border-radius: 6px !important;
}
.page-contact label {
  color: #010203;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.page-contact__choices {
  transition: opacity 0.125s ease-in-out;
  opacity: 1;
  visibility: visible;
  max-height: 100%;
}
.page-contact__choices.hidden {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}
.page-contact__koffie {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
  max-height: 0;
}
.page-contact__koffie.active {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
}
.page-contact__advice {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
  max-height: 0;
}
.page-contact__advice.active {
  visibility: visible;
  opacity: 1;
  max-height: 100%;
}
.page-contact__appointment {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
  max-height: 0;
}
.page-contact__appointment.active {
  visibility: visible;
  opacity: 1;
  max-height: 100%;
}
.page-contact__question {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.125s ease-in-out;
  max-height: 0;
}
.page-contact__question.active {
  visibility: visible;
  opacity: 1;
  max-height: 100%;
}
.page-contact.active-one .animating-image-container > .animating-image {
  transform: rotate(8.999deg);
}
.page-contact.active-two .animating-image-container > .animating-image {
  transform: rotate(-2.999deg);
}
.page-contact.active-two .animating-image-container > .line-ball-under {
  top: -138px;
  right: -86px;
}
.page-contact.active-two .animating-image-container > .line-ball-over {
  bottom: -89px;
  left: -90px;
}
.page-contact.active-four .animating-image-container > .animating-image {
  transform: rotate(-8.999deg);
}
.page-contact.active-four .animating-image-container > .line-ball-under {
  top: -130px;
  right: -50px;
}
.page-contact.active-four .animating-image-container > .line-ball-over {
  bottom: -103px;
  left: -55px;
}
.page-contact__card-container {
  position: relative;
  z-index: 1;
}
.page-contact__card {
  position: relative;
  height: 400px;
  width: 100%;
  background-color: #efefef;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-contact__card:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 50%;
  transform: translateX(-50%);
  background-color: #F2F2F2;
  z-index: -1;
}
.page-contact__card img {
  position: absolute;
  left: 50%;
  bottom: 195px;
  transform: translateX(-50%);
}
.page-contact__card .contact-bubble {
  position: absolute;
  bottom: 125px;
  left: 50%;
  transform: translateX(-50%);
}
.page-contact__card .contact-bubble span {
  white-space: nowrap;
}

.page-404 {
  padding: 120px 0;
  background-color: #F2F2F2;
}
.page-404 .container .row .col {
  position: relative;
}
.page-404 .container .row .col h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 34px;
  text-align: center;
}
.page-404 .container .row .col p {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}
.page-404 .container .row .col p a {
  margin: 0 12px;
}
.page-404 .container .row .col h4 {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 34px;
}
@media (max-width: 850px) {
  .page-404 .container .row .col h4 {
    flex-direction: column;
    gap: 16px;
  }
}
.page-404 .container .row .col .line-balls {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}
.page-404 .container .row .col .line-balls img {
  width: 100%;
}
.page-404 .container .row .col .line-balls .line-ball, .page-404 .container .row .col .line-balls .line-ball-two, .page-404 .container .row .col .line-balls .line-ball-three {
  position: absolute;
}
.page-404 .container .row .col .line-balls .line-ball {
  width: 124px;
  height: 124px;
  right: 44px;
  top: -44px;
  animation: up-down 3s ease-in-out infinite alternate;
}
@media (max-width: 850px) {
  .page-404 .container .row .col .line-balls .line-ball {
    width: 84px;
    height: 84px;
    right: -60px;
    top: -24px;
  }
}
.page-404 .container .row .col .line-balls .line-ball-two {
  width: 234px;
  height: 234px;
  left: 0;
  top: -117px;
  animation: up-down 5s ease-in-out infinite alternate;
}
@media (max-width: 850px) {
  .page-404 .container .row .col .line-balls .line-ball-two {
    width: 184px;
    height: 184px;
    left: -60px;
    top: -44px;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

.logo-slider {
  position: relative;
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  .logo-slider {
    padding: 4rem 0 !important;
  }
}
.logo-slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #182145;
  transform: translateX(-50%);
  z-index: 1;
}
.logo-slider .container {
  position: relative;
  z-index: 2;
  padding: 0;
}
.logo-slider__content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 150%;
  /* 27px */
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
}
.logo-slider__logo {
  display: flex !important;
  justify-content: center;
}
.logo-slider__logos {
  display: flex;
  gap: 54px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1140px) {
  .logo-slider__logos {
    margin-left: -4rem;
    width: calc(100% + 8rem);
  }
}
.logo-slider__logos .slick-track {
  margin: auto;
}
.logo-slider__dots {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.logo-slider .row {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-call-to-action {
  position: relative;
  padding: 5rem 0;
}
@media (max-width: 1000px) {
  .contact-call-to-action {
    padding: 4rem 0 !important;
  }
}
.contact-call-to-action:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #F2F2F2;
  transform: translateX(-50%);
}
.contact-call-to-action .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .contact-call-to-action .container {
    padding: 0;
  }
}
.contact-call-to-action h2 {
  text-align: center;
}
.contact-call-to-action .row {
  display: flex;
  flex-direction: column;
}
.contact-call-to-action .row .col:first-of-type {
  max-width: 1120px;
  margin-bottom: 55px;
  margin: 0 auto 55px auto;
}
.contact-call-to-action .row .col {
  position: relative;
}
.contact-call-to-action .row ul {
  list-style-type: none;
}
.contact-call-to-action .row ul li {
  border-bottom: 3px solid #fff;
  padding: 24px 0;
  cursor: pointer;
}
.contact-call-to-action .row ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.contact-call-to-action .row ul li a:before {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background-color: #010203;
  margin-right: 32px;
  border-radius: 50%;
}
.contact-call-to-action .row ul li span {
  color: #010203;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 130%;
  /* 46.8px */
  letter-spacing: -0.36px;
}
@media (max-width: 1100px) {
  .contact-call-to-action .row ul li span {
    font-size: 1.5rem;
  }
}
.contact-call-to-action .row ul li button {
  opacity: 0;
  pointer-events: none;
  transition: 0.125s ease-in-out;
}
.contact-call-to-action .row ul li.active button {
  transform: translateX(32px);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}
.contact-call-to-action .row .animating-image-container {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.contact-call-to-action .row .animating-image-container .line-ball-under {
  position: absolute;
  z-index: 1;
  top: -92px;
  right: -98px;
  width: 324px;
  height: 324px;
  transition: 0.45s ease-in-out;
  overflow: hidden;
}
.contact-call-to-action .row .animating-image-container .line-ball-under img {
  width: 100%;
}
@media (max-width: 800px) {
  .contact-call-to-action .row .animating-image-container .line-ball-under {
    width: 200px;
    height: 200px;
  }
}
.contact-call-to-action .row .animating-image-container .line-ball-over {
  z-index: 3;
  bottom: -75px;
  left: -75px;
  position: absolute;
  width: 224px;
  height: 224px;
  mix-blend-mode: plus-lighter;
  transition: 0.6s ease-in-out;
}
.contact-call-to-action .row .animating-image-container .line-ball-over img {
  width: 100%;
}
@media (max-width: 800px) {
  .contact-call-to-action .row .animating-image-container .line-ball-over {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -75px;
  }
}
@media (max-width: 900px) {
  .contact-call-to-action .row .animating-image-container {
    right: 1rem;
  }
}
@media (max-width: 600px) {
  .contact-call-to-action .row .animating-image-container {
    display: none;
  }
}
.contact-call-to-action .row .animating-image {
  position: relative;
  z-index: 2;
  width: 394px;
  height: 421px;
  transform: rotate(8.999deg);
  transform-origin: center center;
  transition: 0.25s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}
.contact-call-to-action .row .animating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .contact-call-to-action .row .animating-image {
    width: 300px;
    height: 320px;
  }
}
@media (max-width: 900px) {
  .contact-call-to-action .row .animating-image {
    width: 250px;
    height: 280px;
  }
}
@media (max-width: 800px) {
  .contact-call-to-action .row .animating-image {
    width: 200px;
    height: 220px;
  }
}
.contact-call-to-action.active-one .animating-image-container > .animating-image {
  transform: rotate(8.999deg);
}
.contact-call-to-action.active-two .animating-image-container > .animating-image {
  transform: rotate(-2.999deg);
}
.contact-call-to-action.active-two .animating-image-container > .line-ball-under {
  top: -138px;
  right: -86px;
}
@media (max-width: 800px) {
  .contact-call-to-action.active-two .animating-image-container > .line-ball-under {
    top: -87px;
    right: -86px;
  }
}
.contact-call-to-action.active-two .animating-image-container > .line-ball-over {
  bottom: -89px;
  left: -90px;
}
@media (max-width: 800px) {
  .contact-call-to-action.active-two .animating-image-container > .line-ball-over {
    bottom: -45px;
    left: -54px;
  }
}
.contact-call-to-action.active-four .animating-image-container > .animating-image {
  transform: rotate(-8.999deg);
}
.contact-call-to-action.active-four .animating-image-container > .line-ball-under {
  top: -130px;
  right: -50px;
}
@media (max-width: 800px) {
  .contact-call-to-action.active-four .animating-image-container > .line-ball-under {
    top: -87px;
    right: -86px;
  }
}
.contact-call-to-action.active-four .animating-image-container > .line-ball-over {
  bottom: -103px;
  left: -55px;
}
@media (max-width: 800px) {
  .contact-call-to-action.active-four .animating-image-container > .line-ball-over {
    bottom: -45px;
    left: -54px;
  }
}

.text-block {
  position: relative;
}
@media (max-width: 800px) {
  .text-block .container {
    padding: 0;
  }
}
.text-block.blue:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #182145;
  transform: translateX(-50%);
}
.text-block.blue h2 {
  color: #ffffff;
}
.text-block.blue span.label {
  color: #ffffff;
}
.text-block.blue p {
  color: #ffffff;
}
.text-block.blue ul li {
  color: #ffffff;
}
.text-block .container {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .text-block .container {
    padding: 4rem 0 !important;
  }
}
.text-block .btn {
  margin-top: 24px;
}
.text-block .text-block-mini__content.intro p {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 1000px) {
  .text-block .text-block-mini__content.intro p {
    font-size: 1.125rem;
  }
}
.text-block .full-width-image-balls .line-ball-under-small {
  position: absolute;
  z-index: -1;
  top: -121px;
  left: -80px;
  width: 224px;
  height: 224px;
}
.text-block .full-width-image-balls .line-ball-under-small img {
  width: 100%;
}
@media (max-width: 800px) {
  .text-block .full-width-image-balls .line-ball-under-small {
    width: 130px;
    height: 130px;
    top: -70px;
    left: -44px;
  }
}
.text-block .full-width-image-balls .line-ball-under {
  position: absolute;
  z-index: -1;
  bottom: -125px;
  right: -108px;
  width: 438px;
  height: 438px;
}
.text-block .full-width-image-balls .line-ball-under img {
  width: 100%;
}
@media (max-width: 800px) {
  .text-block .full-width-image-balls .line-ball-under {
    width: 190px;
    height: 190px;
    bottom: -80px;
    right: -70px;
  }
}
.text-block .single-image-balls .line-ball-under-small {
  position: absolute;
  z-index: -1;
  top: -76px;
  left: -58px;
  width: 171px;
  height: 171px;
}
.text-block .single-image-balls .line-ball-under-small img {
  width: 100%;
}
@media (max-width: 800px) {
  .text-block .single-image-balls .line-ball-under-small {
    width: 130px;
    height: 130px;
    top: -58px;
    left: -58px;
  }
}
.text-block .single-image-balls .line-ball-under {
  position: absolute;
  z-index: -1;
  bottom: -125px;
  right: -108px;
  width: 366px;
  height: 366px;
}
.text-block .single-image-balls .line-ball-under img {
  width: 100%;
}
@media (max-width: 800px) {
  .text-block .single-image-balls .line-ball-under {
    width: 171px;
    height: 171px;
    bottom: -58px;
    right: -58px;
  }
}
.text-block .single-image-balls.right .line-ball-under-small {
  left: auto;
  right: -58px;
}
.text-block .single-image-balls.right .line-ball-under {
  right: auto;
  left: -108px;
}
.text-block .image-block {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 640px;
  aspect-ratio: 1/1;
}
.text-block .image-block__inner-container {
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  max-height: 640px;
  aspect-ratio: 1/1;
}
.text-block .image-block__inner-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.text-block .list-block ul {
  list-style-type: none;
  padding-left: 0;
}
.text-block .list-block ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 10px;
}
.text-block .list-block ul li:last-child {
  margin-bottom: 0;
}
.text-block .list-block ul li:before {
  content: url(899738bff0f97683cc8b.svg);
  display: inline-block;
  width: 39px;
  height: 39px;
}
.text-block h2 {
  margin-bottom: 32px;
}
.text-block .row.one-column .col-100 {
  max-width: 768px !important;
  margin: 0 auto;
}
.text-block .row.one-column.full-width-image .col-100 {
  position: relative;
  max-width: unset !important;
}
.text-block .row.one-column.full-width-image .image-block {
  aspect-ratio: unset !important;
  max-height: unset !important;
  height: fit-content;
}
.text-block .row.one-column.full-width-image .image-block img {
  display: block;
  max-height: 640px;
}
.text-block .row.two-columns {
  gap: 80px;
}
@media (max-width: 1000px) {
  .text-block .row.two-columns {
    gap: 48px;
    flex-direction: column;
  }
  .text-block .row.two-columns .col-50 {
    width: 100%;
  }
  .text-block .row.two-columns.first-column-is-image {
    flex-direction: column-reverse;
  }
}
.text-block .row.has-image {
  position: relative;
  align-items: center;
}

.quote-block {
  position: relative;
  padding: 165px 0;
}
@media (max-width: 1000px) {
  .quote-block {
    padding: 7rem 0 !important;
  }
}
.quote-block .container {
  padding: 0 45;
}
.quote-block::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #182145;
}
.quote-block .col-100 {
  max-width: 1251px;
  margin: 0 auto;
}
.quote-block h2 {
  position: relative;
  color: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 1.75rem;
}
.quote-block h2:before {
  content: url(9931d495c98b057662fc.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  height: 41px;
  transform: translate(-100%, -100%);
}
@media (max-width: 1000px) {
  .quote-block h2:before {
    transform: translate(-40%, -100%) scale(0.7);
  }
}
.quote-block h2:after {
  content: url(8543ad0780f7a212ba2e.svg);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55px;
  height: 41px;
  transform: translate(100%, 100%);
}
@media (max-width: 1000px) {
  .quote-block h2:after {
    transform: translate(40%, 100%) scale(0.7);
  }
}
.quote-block.no-quotes h2:before, .quote-block.no-quotes h2:after {
  display: none;
}

.icon-cards {
  position: relative;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .icon-cards {
    padding: 4rem 0 !important;
  }
}
.icon-cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #F2F2F2;
  transform: translateX(-50%);
}
.icon-cards h2 {
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
}
.icon-cards .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .icon-cards .container {
    padding: 0;
  }
}
.icon-cards__topcontent {
  max-width: 768px;
  width: 100%;
  margin: 0 auto 80px;
  display: block;
}
.icon-cards__topcontent span, .icon-cards__topcontent h2, .icon-cards__topcontent p {
  text-align: center;
}
.icon-cards__cards {
  position: relative;
  display: flex;
  gap: 32px;
  justify-content: center;
}
.icon-cards__cards.one .icon-cards__card {
  width: 25%;
}
.icon-cards__cards.two .icon-cards__card {
  width: 50%;
}
.icon-cards__cards.three .icon-cards__card {
  width: 33.33%;
}
.icon-cards__cards.four .icon-cards__card {
  overflow: hidden;
  width: 25%;
}
@media (max-width: 1300px) {
  .icon-cards__cards.four {
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
  }
  .icon-cards__cards.four .icon-cards__card {
    width: calc(50% - 16px);
  }
}
@media (max-width: 1000px) {
  .icon-cards__cards.four {
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
  }
  .icon-cards__cards.four .icon-cards__card {
    width: calc(50% - 16px);
  }
}
@media (max-width: 850px) {
  .icon-cards__cards.four .icon-cards__card {
    width: 100% !important;
  }
}
.icon-cards__cards .line-ball-under {
  position: absolute;
  z-index: 1;
  top: -74px;
  right: -67px;
  width: 179px;
  height: 179px;
  overflow: hidden;
}
.icon-cards__cards .line-ball-under img {
  width: 100%;
}
.icon-cards__cards .line-ball-over {
  bottom: -74px;
  left: -69px;
  position: absolute;
  z-index: -1;
  width: 199px;
  height: 199px;
}
.icon-cards__cards .line-ball-over img {
  width: 100%;
}
.icon-cards__card {
  background-color: #fff;
  border-radius: 8px;
  height: fit-content;
  transition: 0.125s ease-in-out;
}
.icon-cards__card a {
  text-decoration: none;
}
.icon-cards__card.has-link:hover {
  transform: translateY(-10px);
}
.icon-cards__card:hover .btn--link:after {
  animation: wiggle 0.4s ease-in-out;
  animation-iteration-count: 2;
}
.icon-cards__card:hover .btn--link span, .icon-cards__card:hover .btn--link:after {
  background-color: #3C8BB7;
  color: #ffffff;
}
.icon-cards__card-icon {
  width: 100%;
  min-height: 169px;
  height: 100%;
  background-color: #182145;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.icon-cards__card-icon img {
  max-width: 62px;
  width: 100%;
}
.icon-cards__card-content {
  padding: 32px;
  position: relative;
}
.icon-cards__card-content .button-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.icon-cards__card-content .button-container span {
  white-space: nowrap;
}
.icon-cards__card-content.has-link {
  padding-top: 45px;
}
.icon-cards__card-content h5 {
  min-height: 78px;
  margin-bottom: 16px;
  font-size: 28px;
  text-align: center;
  word-break: break-word;
}
.icon-cards__card-content p {
  text-align: center;
  font-size: 16px;
}
.icon-cards__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
.icon-cards__cta .btn {
  margin-left: 22px;
}
@media (max-width: 1000px) {
  .icon-cards__cta {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}

.que-cards-slider {
  position: relative;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .que-cards-slider {
    padding: 4rem 0 !important;
  }
}
.que-cards-slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #F2F2F2;
  transform: translateX(-50%);
  z-index: 1;
}
.que-cards-slider .container {
  position: relative;
  z-index: 2;
}
.que-cards-slider h2, .que-cards-slider span {
  text-align: center;
  width: 100%;
}
.que-cards-slider h2 {
  margin-bottom: 80px;
}
@media (max-width: 1000px) {
  .que-cards-slider h2 {
    margin-bottom: 40px;
  }
}
.que-cards-slider__cards {
  position: relative;
  max-width: 846px;
  width: 100%;
  margin: 0 auto;
}
.que-cards-slider__stack {
  position: relative;
  padding: 30px 0;
}
.que-cards-slider p.subtitle {
  font-weight: 700;
  font-size: 1.25rem;
}
.que-cards-slider .navigation {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.que-cards-slider .navigation button {
  display: block;
  width: 44px;
  height: 44px;
}
.que-cards-slider .navigation button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.que-cards-slider .navigation button:disabled span {
  background-color: #209add;
}
.que-cards-slider__card {
  background-color: #fff;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  padding: 48px 80px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  will-change: transform;
  border-radius: 6px;
}
.que-cards-slider__card h3 {
  margin-bottom: 10px;
}
.que-cards-slider__card .subtitle {
  margin-bottom: 10px;
}
.que-cards-slider__card .icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-50%) scale(0);
  background-color: #182145;
  width: 69px;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 69px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.que-cards-slider__card .icon img {
  width: 48px;
}
.que-cards-slider__card.is-active {
  z-index: 3;
  transform: translateY(0) scale(1);
  opacity: 1;
}
.que-cards-slider__card.is-active .icon {
  transform: translateY(-50%) translateX(-50%) scale(1);
}
.que-cards-slider__card.is-next {
  z-index: 1;
  transform: translateY(-30px) scale(0.9);
  opacity: 0.6;
}
.que-cards-slider__card.is-prev {
  z-index: 2;
  transform: translateY(30px) scale(0.9);
  opacity: 0.6;
}
.que-cards-slider__card.is-hidden {
  z-index: 0;
  transform: translateY(0) scale(0.88);
  opacity: 0;
  pointer-events: none;
}

.review-slider {
  position: relative;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .review-slider {
    padding: 4rem 0 !important;
  }
}
.review-slider h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
}
@media (max-width: 1000px) {
  .review-slider h2 {
    margin-bottom: 0px;
  }
}
.review-slider:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #182145;
  transform: translateX(-50%);
  z-index: 1;
}
.review-slider .container {
  position: relative;
  z-index: 2;
}
.review-slider__reviews {
  max-width: 1596px;
  width: 100%;
  margin: 0 auto;
}
.review-slider__dots {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.review-slider__arrows {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.review-slider .slick-track {
  display: flex !important;
  align-items: flex-end;
}
.review-slider .slick-slide {
  width: 560px;
  height: auto;
  float: none;
  margin: 0 112px;
  display: flex !important;
  align-items: flex-end;
}
.review-slider .slick-slide > div {
  width: 100%;
}
.review-slider .slick-list {
  margin: 0 -112px;
  padding-top: 50px !important;
}
.review-slider__arrows {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 720px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-slider__review {
  width: 560px;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 700px) {
  .review-slider__review {
    width: 100%;
  }
}
.review-slider__review p {
  position: relative;
  font-size: 1.125rem;
  line-height: 150%;
}
.review-slider__review p:after {
  content: url(3af659fe2def81b009cd.svg);
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 11px;
  z-index: 4;
  transform: translateY(-101%) translateX(-17px);
}
.review-slider__review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 39px;
}
.review-slider__review-author .logo {
  background-color: #182145;
  border-radius: 50%;
  width: 62px;
  height: 62px;
}
.review-slider__review-author .logo.white {
  background-color: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.review-slider__review-author div {
  display: flex;
  flex-direction: column;
}
.review-slider__review-author div h5 {
  font-size: 1rem;
  font-weight: 600;
}
.review-slider__review-author div span {
  font-weight: 400;
}

.faq {
  padding: 7rem 0;
  position: relative;
}
@media (max-width: 1000px) {
  .faq {
    padding: 4rem 0 !important;
  }
}
@media (max-width: 800px) {
  .faq .container {
    padding: 0;
  }
}
.faq h2 {
  margin-bottom: 24px;
  text-align: center;
}
.faq p:not(.faq__faq-content p) {
  text-align: center;
}
.faq .col {
  max-width: 800px;
  margin: 0 auto;
}
.faq__faq-content {
  display: none;
}
.faq__faq-toggle-icon {
  transform: rotate(180deg);
  transition: 0.125s ease-in-out;
}
.faq__faq {
  padding: 20px 0;
  border-bottom: 1px solid rgba(1, 2, 3, 0.15);
  cursor: pointer;
}
.faq__faq.active .faq__faq-toggle-icon {
  transform: rotate(0deg);
}
.faq__faqs {
  margin-top: 80px;
  border-top: 1px solid rgba(1, 2, 3, 0.15);
}
.faq__faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.team {
  position: relative;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .team {
    padding: 4rem 0 !important;
  }
}
.team:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #182145;
  transform: translateX(-50%);
  z-index: 1;
}
.team h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}
.team .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 800px) {
  .team .container {
    padding: 0;
  }
}
.team__members {
  position: relative;
  display: flex;
}
@media (max-width: 1000px) {
  .team__members {
    overflow: hidden;
    max-width: 100% !important;
  }
}
.team__members.two-members {
  max-width: 560px;
  margin: 0 auto;
}
.team__members.three-members {
  max-width: 760px;
  margin: 0 auto;
}
.team__members.four-members {
  max-width: 960px;
  margin: 0 auto;
}
.team__members.five-members {
  max-width: 1160px;
  margin: 0 auto;
}
.team__members.six-members {
  max-width: 1360px;
  margin: 0 auto;
}
.team__members.seven-members {
  max-width: 1560px;
  margin: 0 auto;
}
.team__members .line-ball-over {
  bottom: -167px;
  right: -126px;
  position: absolute;
  width: 484px;
  height: 484px;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}
.team__members .line-ball-over img {
  width: 100%;
}
@media (max-width: 1000px) {
  .team__members .line-ball-over {
    display: none;
  }
}
.team .line-ball-under {
  position: absolute;
  z-index: 1;
  top: -87px;
  left: -58px;
  width: 152px;
  height: 152px;
  opacity: 0.5;
  overflow: hidden;
  pointer-events: none;
}
.team .line-ball-under img {
  width: 100%;
}
.team .line-ball-under.mobile {
  display: none;
}
@media (max-width: 1000px) {
  .team .line-ball-under {
    display: none;
  }
  .team .line-ball-under.mobile {
    display: block;
    top: -2px;
    left: -32px;
  }
}
.team__members-track {
  display: flex;
  width: 100%;
}
@media (max-width: 1000px) {
  .team__members-track {
    transition: transform 0.45s ease-in-out;
  }
  .team__members-track.is-sliding, .team__members-track.is-offset {
    transform: translateX(calc(-1 * var(--slide-offset, 0px)));
  }
  .team__members-track.is-resetting {
    transition: none;
  }
  .team__members-track.is-animating {
    pointer-events: none;
  }
}
.team__member-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.team__member {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px 50px 20px;
  flex: 1;
  transition: 0.4s ease-in-out;
  background-position: left;
  background-size: cover;
}
.team__member.active {
  flex: 2;
  background-position: center;
}
.team__member.active:before {
  opacity: 0;
}
.team__member.active:after {
  opacity: 1;
}
.team__member.active .social-media a {
  transform: scale(1);
}
.team__member.active .team__hidden-content {
  height: 145px;
  opacity: 1;
}
.team__member:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 1;
  background: #000000;
  background: linear-gradient(0deg, black 0%, rgba(24, 33, 69, 0) 78%);
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.team__member:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #182145;
  opacity: 0.8;
  transition: 0.55s ease-in-out;
}
@media (max-width: 1000px) {
  .team__member {
    border-radius: 6px !important;
    overflow: hidden !important;
  }
}
.team--slider .team__members {
  padding-left: 20px;
}
.team--slider .team__member {
  flex: 0 0 var(--team-active-width, 100%);
  min-width: var(--team-active-width, 100%);
  margin-right: var(--team-gap, 12px);
  transition: background-position 0.4s ease-in-out;
}
.team--slider .team__member:before {
  transition: opacity 0.55s ease-in-out;
}
.team--slider .team__member:after {
  transition: opacity 0.6s ease-in-out;
}
.team--slider .team__member .team__hidden-content {
  transition: height 0.45s ease-in-out, opacity 0.45s ease-in-out 0.15s;
}
.team--slider .team__member .social-media a {
  transition: transform 0.25s ease-in-out;
}
.team--slider .team__member .social-media a:first-of-type {
  transition-delay: 0.2s;
}
.team--slider .team__member .social-media a:nth-of-type(2) {
  transition-delay: 0.3s;
}
.team--slider .team__member .social-media a:nth-of-type(3) {
  transition-delay: 0.4s;
}
.team--slider .team__member:not(:first-child) {
  cursor: pointer;
  background-position: left;
}
.team--slider .team__member:not(:first-child):before {
  opacity: 0.8;
}
.team--slider .team__member:not(:first-child):after {
  opacity: 0;
}
.team--slider .team__member:not(:first-child) .social-media a {
  transform: scale(0);
  transition-delay: 0s;
}
.team--slider .team__member:not(:first-child) .team__hidden-content {
  height: 0;
  opacity: 0;
  transition-delay: 0s;
}
.team--slider .team__member:first-child {
  background-position: center;
}
.team--slider .team__member:first-child:before {
  opacity: 0;
}
.team--slider .team__member:first-child:after {
  opacity: 1;
}
.team--slider .team__member:first-child .social-media a {
  transform: scale(1);
}
.team--slider .team__member:first-child .team__hidden-content {
  height: 145px;
  opacity: 1;
}
.team__member-name, .team__member-title, .team__member-description {
  position: relative;
  z-index: 2;
}
.team .social-media {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease-in-out;
}
.team .social-media a {
  background-color: #4BAEE5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.25s ease-in-out;
}
.team .social-media a:first-of-type {
  transition-delay: 0.2s;
}
.team .social-media a:nth-of-type(2) {
  transition-delay: 0.3s;
}
.team .social-media a:nth-of-type(3) {
  transition-delay: 0.4s;
}
@media (max-width: 1000px) {
  .team .social-media {
    position: relative;
    bottom: unset;
    transform: unset;
  }
}
.team__member-name {
  color: #fff;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 150%;
  /* 39px */
  margin-bottom: 10px;
}
.team__member-title {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  margin-bottom: 10px;
}
.team__member-description {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
.team__hidden-content {
  position: relative;
  z-index: 4;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: opacity 0.45s ease-in-out 0.6s;
  transition: 0.45s ease-in-out;
}
.team__cta {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 87px;
  margin-top: 80px;
  color: #ffffff;
}
.team__cta .btn {
  margin-left: 22px;
}
@media (max-width: 1000px) {
  .team__cta .btn {
    margin-left: 0;
  }
}
@media (max-width: 1000px) {
  .team__cta {
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
    padding: 0 20px;
    text-align: center;
  }
}
.team__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
  cursor: pointer;
}
.team__dots .team__dot {
  width: 10px;
  height: 10px;
  background-color: rgba(217, 217, 217, 0.2);
  border-radius: 10px;
}
.team__dots .team__dot.active {
  background-color: #4BAEE5;
}

.trainingen {
  padding: 5rem 0;
  position: relative;
}
.trainingen:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #F2F2F2;
  z-index: -1;
}
@media (max-width: 1000px) {
  .trainingen {
    padding: 4rem 0 !important;
  }
}
@media (max-width: 800px) {
  .trainingen .container {
    padding: 0;
  }
}
.trainingen .text-row {
  max-width: 768px;
  margin: 0 auto;
}
.trainingen .text-row h2, .trainingen .text-row p, .trainingen .text-row .label {
  text-align: center;
  z-index: 2;
  position: relative;
}
.trainingen .text-row h2 {
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
}
.trainingen__list {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trainingen__list .line-ball-under-small {
  position: absolute;
  z-index: -1;
  top: -125px;
  left: -101px;
  width: 478px;
  height: 478px;
}
.trainingen__list .line-ball-under-small img {
  width: 100%;
}
@media (max-width: 800px) {
  .trainingen__list .line-ball-under-small {
    width: 200px;
    height: 200px;
    top: -108px;
    left: -44px;
  }
}
@media (max-width: 1024px) {
  .trainingen__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .trainingen__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.trainingen__item {
  position: relative;
  text-decoration: none;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  transition: 0.125s ease-in-out;
}
.trainingen__item:hover {
  transform: translateY(-10px);
}
.trainingen__item:hover .btn span, .trainingen__item:hover .btn:after {
  background-color: #3C8BB7;
}
.trainingen__item:hover .btn:after {
  animation: wiggle 0.4s ease-in-out;
  animation-iteration-count: 2;
}
.trainingen__item__content {
  position: relative;
  padding: 32px 38px 48px;
  min-height: 134px;
}
.trainingen__item__content .btn {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 38px;
  transform: translateY(50%);
}
.trainingen__item__image {
  max-height: 220px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}
.trainingen__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trainingen__item h5 {
  font-size: 1.75rem;
  min-height: 78px;
}
.trainingen__item .label {
  color: #FF3B00;
  font-size: 1rem;
  font-weight: 600;
}
.trainingen__item__image img {
  width: 100%;
}

.methods {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .methods {
    padding: 4rem 0 !important;
  }
}
.methods:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #F2F2F2;
  z-index: -1;
}
.methods .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .methods .container {
    padding: 0 0px;
  }
}
.methods h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 768px;
  margin: 0 auto 24px;
}
.methods p {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.methods__methods {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  max-height: 895px;
  height: 100%;
}
@media (max-width: 1000px) {
  .methods__methods {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    max-height: unset;
    height: unset;
  }
}
@media (max-width: 768px) {
  .methods__methods {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: unset;
    max-height: unset;
    height: unset;
  }
}
.methods__methods .line-ball-under {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: -131px;
  width: 478px;
  height: 478px;
  overflow: hidden;
}
.methods__methods .line-ball-under img {
  width: 100%;
}
@media (max-width: 800px) {
  .methods__methods .line-ball-under {
    width: 200px;
    height: 200px;
    top: -108px;
    left: -44px;
  }
}
.methods__method {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: #010203;
}
.methods__method p {
  text-align: left;
  font-size: 1rem;
}
.methods__method__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.methods__method__image img {
  width: 100%;
}
.methods__method.method-two, .methods__method.method-three, .methods__method.method-four, .methods__method.method-five {
  position: relative;
  transition: 0.125s ease-in-out;
}
.methods__method.method-two .methods__method__content, .methods__method.method-three .methods__method__content, .methods__method.method-four .methods__method__content, .methods__method.method-five .methods__method__content {
  position: unset;
  padding: 24px;
}
@media (max-width: 1000px) {
  .methods__method.method-two .methods__method__content, .methods__method.method-three .methods__method__content, .methods__method.method-four .methods__method__content, .methods__method.method-five .methods__method__content {
    padding: 24px 24px 44px;
  }
}
.methods__method.method-two .icon, .methods__method.method-three .icon, .methods__method.method-four .icon, .methods__method.method-five .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}
.methods__method.method-two h3, .methods__method.method-three h3, .methods__method.method-four h3, .methods__method.method-five h3 {
  font-size: 1.555555rem;
  font-weight: 500;
  line-height: 130%;
  color: #010203;
  margin-bottom: 8px;
}
.methods__method.method-two p, .methods__method.method-three p, .methods__method.method-four p, .methods__method.method-five p {
  margin: unset;
}
.methods__method.method-two .methods__method__image, .methods__method.method-three .methods__method__image, .methods__method.method-four .methods__method__image, .methods__method.method-five .methods__method__image {
  height: 171px;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}
.methods__method.method-two .methods__method__image img, .methods__method.method-three .methods__method__image img, .methods__method.method-four .methods__method__image img, .methods__method.method-five .methods__method__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.methods__method.method-two .btn, .methods__method.method-three .btn, .methods__method.method-four .btn, .methods__method.method-five .btn {
  position: absolute;
  bottom: 127px;
  left: 24px;
  transform: translateY(-50%);
  z-index: 2;
}
.methods__method.method-two .btn span, .methods__method.method-three .btn span, .methods__method.method-four .btn span, .methods__method.method-five .btn span {
  white-space: nowrap;
}
.methods__method.method-two:hover, .methods__method.method-three:hover, .methods__method.method-four:hover, .methods__method.method-five:hover {
  transform: translateY(-10px);
}
.methods__method.method-one {
  position: relative;
  grid-row-start: 1;
  grid-column-start: 1;
  grid-row-end: 3;
  grid-column-end: 3;
}
.methods__method.method-one p {
  margin-top: 24px;
  text-align: left;
  margin: 24px 0 0 0 !important;
}
.methods__method.method-one .methods__method__content {
  padding: 48px;
}
.methods__method.method-one .methods__method__image {
  height: 506px;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.methods__method.method-one .methods__method__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.2s ease-in-out;
}
.methods__method.method-one .icon {
  width: 40px;
  height: 40px;
}
.methods__method.method-one .btn {
  margin-top: 32px;
  margin-bottom: 67px;
}
.methods__method.method-one:hover .methods__method__image img {
  transform: scale(1.05);
}
@media (max-width: 1000px) {
  .methods__method.method-one:hover {
    transform: translateY(-10px);
  }
  .methods__method.method-one:hover .methods__method__image img {
    transform: unset;
  }
}
@media (max-width: 1000px) {
  .methods__method.method-one {
    position: relative;
    grid-column-start: unset;
    grid-column-end: unset;
    grid-row-start: unset;
    grid-row-end: unset;
    transition: 0.125s ease-in-out;
  }
  .methods__method.method-one .btn {
    position: absolute;
    bottom: 127px;
    left: 24px;
    transform: translateY(-50%);
    z-index: 2;
    margin-top: unset !important;
    margin-bottom: unset !important;
  }
  .methods__method.method-one .btn span {
    white-space: nowrap;
  }
  .methods__method.method-one .icon {
    width: 24px;
    height: 24px;
  }
  .methods__method.method-one .methods__method__content {
    position: unset;
    padding: 24px 24px 44px;
  }
  .methods__method.method-one .methods__method__content p {
    margin-top: 8px !important;
  }
  .methods__method.method-one .methods__method__image {
    height: unset;
    height: 171px;
    overflow: hidden;
  }
}
.methods__method:hover .btn--link:after {
  animation: wiggle 0.4s ease-in-out;
  animation-iteration-count: 2;
}
.methods__method:hover .btn--link span, .methods__method:hover .btn--link:after {
  background-color: #3C8BB7;
  color: #ffffff;
}

.branches {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .branches {
    padding: 4rem 0 !important;
  }
}
.branches:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #182145;
  z-index: -1;
}
.branches .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .branches .container {
    padding: 0 0px;
  }
}
.branches h2 {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 24px;
  color: #fff;
}
.branches p {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  color: #fff;
}
.branches__branches {
  position: relative;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.branches__branches .line-ball-under {
  position: absolute;
  z-index: -1;
  top: -159px;
  left: -131px;
  width: 478px;
  height: 478px;
  overflow: hidden;
}
.branches__branches .line-ball-under img {
  width: 100%;
}
@media (max-width: 800px) {
  .branches__branches .line-ball-under {
    width: 200px;
    height: 200px;
    top: -108px;
    left: -44px;
  }
}
.branches__branch {
  flex: 1 1 calc(33.3333333333% - 32px);
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-decoration: none;
  color: #010203;
  max-height: 424px;
  overflow: hidden;
  transition: 0.125s ease-in-out;
}
@media (max-width: 1000px) {
  .branches__branch {
    flex: 1 1 calc(50% - 32px);
  }
}
@media (max-width: 800px) {
  .branches__branch {
    flex: 1 1 calc(100% - 32px);
  }
}
.branches__branch .btn {
  position: absolute;
  bottom: 0px;
  left: 24px;
  transform: translateY(50%);
  z-index: 2;
}
.branches__branch .btn span {
  white-space: nowrap;
}
.branches__branch p {
  text-align: left;
  font-size: 1rem;
  color: #010203;
}
.branches__branch h5 {
  color: #010203;
  font-size: 28px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.28px;
  margin-bottom: 16px;
}
.branches__branch.branch-four, .branches__branch.branch-nine {
  flex: 1 1 calc(66.6666666667% - 32px);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.branches__branch.branch-four .btn, .branches__branch.branch-nine .btn {
  position: relative;
  bottom: unset;
  left: unset;
  transform: unset;
  margin-top: 32px;
}
.branches__branch.branch-four .branches__branch__image, .branches__branch.branch-nine .branches__branch__image {
  max-height: 424px;
  height: 100%;
  width: 50%;
}
.branches__branch.branch-four .branches__branch__content, .branches__branch.branch-nine .branches__branch__content {
  width: 50%;
}
@media (max-width: 1000px) {
  .branches__branch.branch-four, .branches__branch.branch-nine {
    flex: 1 1 calc(50% - 32px);
    flex-direction: column;
  }
  .branches__branch.branch-four .branches__branch__content, .branches__branch.branch-nine .branches__branch__content {
    width: 100%;
  }
  .branches__branch.branch-four .branches__branch__image, .branches__branch.branch-nine .branches__branch__image {
    max-height: 220px;
    height: 100%;
    width: 100%;
  }
  .branches__branch.branch-four .btn, .branches__branch.branch-nine .btn {
    position: absolute;
    bottom: 0px;
    left: 24px;
    transform: translateY(50%);
    z-index: 2;
  }
  .branches__branch.branch-four .btn span, .branches__branch.branch-nine .btn span {
    white-space: nowrap;
  }
}
.branches__branch__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 32px 32px 45px 32px;
  height: 100%;
}
.branches__branch__image {
  position: relative;
  max-height: 220px;
  height: 100%;
  overflow: hidden;
}
.branches__branch__image img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.branches__branch:hover {
  transform: translateY(-10px);
}
.branches__branch:hover .btn--link:after {
  animation: wiggle 0.4s ease-in-out;
  animation-iteration-count: 2;
}
.branches__branch:hover .btn--link span, .branches__branch:hover .btn--link:after {
  background-color: #3C8BB7;
  color: #ffffff;
}

.two-images {
  position: relative;
  background-color: #182145;
}
.two-images:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #182145;
  z-index: 1;
}
.two-images .container {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
}
@media (max-width: 1000px) {
  .two-images .container {
    padding: 4rem 0 !important;
  }
}
@media (max-width: 800px) {
  .two-images .container .row {
    flex-direction: column;
    gap: 30px;
  }
  .two-images .container .row .left, .two-images .container .row .right {
    width: 100%;
  }
}
.two-images .left img, .two-images .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.two-images .right img {
  position: relative;
  z-index: 4;
}
.two-images .row {
  position: relative;
  z-index: 3;
  gap: 80px;
}
.two-images .line-ball-over {
  bottom: -167px;
  right: -126px;
  position: absolute;
  width: 484px;
  height: 484px;
  pointer-events: none;
}
.two-images .line-ball-over img {
  width: 100%;
}
.two-images .line-ball-under {
  position: absolute;
  z-index: 1;
  top: -87px;
  left: -58px;
  width: 152px;
  height: 152px;
  opacity: 0.5;
  overflow: hidden;
  pointer-events: none;
}
.two-images .line-ball-under img {
  width: 100%;
}
.two-images .line-ball-under.mobile {
  display: none;
}
@media (max-width: 1000px) {
  .two-images .line-ball-under {
    display: none;
  }
  .two-images .line-ball-under.mobile {
    display: block;
    top: -2px;
    left: -32px;
  }
}
@media (max-width: 800px) {
  .two-images .container {
    padding: 0;
  }
}
/*!***************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/slick-carousel/slick/slick.scss ***!
  \***************************************************************************************************************************************/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
