:root {
  --color-blue: #3855bc;
  --color-blue-dark: #002c6d;
  --color-text-primary: #081C30;
  --color-text-grey: #667790;
  --color-gray-dark: #C2C9D3;
  --color-gray: #E0E4E9;
  --color-gray-light: #F0F4F9;
  --color-yellow: #ffe600;
  --color-yellow-dark: rgb(212, 191, 0);
  --color-white: #fff;

  --grad-spektrum: linear-gradient(99.13deg, #081C30 12.5%, #3BCBFF 26.81%, #682764 42.36%, #B433A5 55.74%, #FFA03B 71.14%, #EB3828 88.41%);;
  --grad-blue: linear-gradient(256.11deg, #3CCBFF 22.74%, #1E4AD0 76.5%);
  --grad-orange: linear-gradient(108.51deg, #FFA03B 0%, #EB3828 97.63%);
  --grad-violet: linear-gradient(107.13deg, #682764 3.45%, #D040C6 96.39%);

  --page-padding: 24px;
  --component-spacing: 5rem;
  --contact-spacing: 5.63rem;

  --font-family-title: "Noi Grotesk";
  --font-family-text: "Noi Grotesk";

  --font-size-xxl: 3rem; /* 80px */
  --font-size-xl: 2.2rem; /* 50px */
  --font-size-l: 1.75rem; /* 40px */
  --font-size-m: 1.25rem; /* 25px */
  --font-size-s: 1rem; /* 20px */
  --font-size-xs: 0.875rem; /* 14px */

  --transition-appear-speed: 800ms;

  --mouse-x: 0;
  --mouse-y: 0;
}


@media screen and (min-width: 650px) {
  :root {
    --page-padding: 32px;
    --component-spacing: 10rem;

    --font-size-xxl: 5rem; /* 80px */
    --font-size-xl: 3.125rem; /* 50px */
    --font-size-l: 2.5rem; /* 40px */
    --font-size-m: 1.5625rem; /* 25px */
    --font-size-s: 1.25rem; /* 20px */
    --font-size-xs: 0.875rem; /* 14px */
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-text);
  font-size: var(--font-size-xs);
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: 1.2px;

}

/* Buttons */

.button {
  display: inline-block;
  padding: 12px 24px 14px;
  border-radius: 100px;
  font-size: 15px;
  background-color: var(--color-white);
  color: var(--color-text-primary);
  transition: background-color 200ms ease, color 200ms ease;
  position: relative;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: center;
}
.colored-hover:hover {
  color: #fff;
  background-color: transparent;
}
.ext-icon {
  transition: filter 200ms ease;
}
.ext-btn:hover .ext-icon {
  filter: brightness(0) invert(1);
}
.button .color-grad {
  position: absolute;
  background: var(--grad-spektrum);
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 100px;
  z-index: -1;
  transition: all 0.3s ease;
}
.color-grad.color-spektral,
.color-spektral .color-grad {
  background: var(--grad-spektrum) !important;
}
.color-grad.color-blue,
.color-blue .color-grad {
  background: var(--grad-blue) !important;
}
.color-grad.color-orange,
.color-orange .color-grad {
  background: var(--grad-orange) !important;
}
.color-grad.color-violet,
.color-violet .color-grad{
  background: var(--grad-violet) !important;
}

.button--medium {
  padding: 1.3rem 2.7rem 1.1rem;
  font-size: 21px;
  letter-spacing: 0;
}

.button--big {
  font-size: var(--font-size-xl);
  vertical-align: text-bottom;
  padding: 1.2rem 3.5rem 0.8rem;
}

@media screen and (min-width: 1024px) {
  .button--medium {
    padding: 1.3rem 2.6rem 1.1rem;
    font-size: var(--font-size-s);
    letter-spacing: 0.4px;
  }
}

/* Richtext */
.richtext {
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

.richtext h2 {
  font-family: var(--font-family-title);
  color: var(--color-yellow);
  font-size: var(--font-size-xl);
  margin-bottom: 2rem;
}

.richtext a {
  text-decoration: underline;
}

.richtext p {
  margin-bottom: 1rem;
}

strong {
  font-weight: bold;
}

.richtext em {
  font-style: italic;
}

.richtext ul {
  padding-left: 20px;
  list-style-type: disc;
  margin-bottom: 1rem;
}

.richtext ol {
  padding-left: 20px;
  list-style-type: decimal;
  margin-bottom: 1rem;
}

.richtext li {
  padding-left: 5px;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
.multiselect,
.multiselect-container {
  display: block;
  border-radius: 5px;
  -webkit-appearance: none;
  padding: 1rem;
  width: 100%;
  font-family: var(--font-family-text);
  letter-spacing: 1.2px;
  font-size: 15px;
  margin-bottom: 2rem;
  border: 1px solid #E0E4E9;
  transition: border 200ms ease;
  background-color: #FFFFFF;
  text-align: left;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border: 2px solid var(--color-blue);
}

textarea {
  min-height: 15rem;
  max-height: 15rem;
  min-width: 100%;
  max-width: 100%;
}

.form__submit-wrapper .button {
  padding: 12px 24px;
  margin-top: 2rem;
  cursor: pointer;
}

input[type="submit"] {
  display: inline-block;
  border-radius: 100px;
  font-size: 15px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: background-color 200ms ease, color 200ms ease;
}

.button:hover input[type="submit"]{
  color: var(--color-white);
}

.form__submit-wrapper .button.disabled,
.form__submit-wrapper .button.disabled:hover,
input[type="submit"]:disabled {
  cursor: not-allowed;
}

.form__submit-wrapper {
  text-align: center;
}

label {
  font-family: var(--font-family-text);
  letter-spacing: 0.02em;
  font-size: 15px;
  margin-bottom: 0.5rem;
  display: block;
  text-align: center;
}

label a {
  text-decoration: underline;
  transition: color 200ms ease;
}

label a:hover {
  color: var(--color-blue);
}

.form__checkbox-wrapper label {
  position: relative;
  padding-left: 2.5rem;
  text-align: left;
  line-height: 22px;
  cursor: pointer;
  letter-spacing: -0.02em;
}

.form__checkbox-wrapper label::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: var(--color-white);
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: 16px;
  transform: translate3d(0, calc(-50% - 4px), 0);
  border: 1px solid #E0E4E9;
}

.form__checkbox-wrapper label::after {
  content: url("../icons/check.svg");
  display: block;
  width: 14px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  left: 6px;
  top: 16px;
  transform: translate3d(0, calc(-100% - 7px), 0);
  opacity: 0;
  transition: opacity 200ms ease;
}

.multiselect-wrapper .form__checkbox-wrapper label {
  padding-left: 0;
  padding-right: 2.5rem;
}

.multiselect-wrapper .form__checkbox-wrapper label::before {
  left: initial;
  right: 0;
}

.multiselect-wrapper .form__checkbox-wrapper label::after {
  left: initial;
  right: 6px;
}

input[type="checkbox"] {
  display: none;
}

.form__checkbox-wrapper:not(.disabled) input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

.disabled label {
  color: var(--color-gray-dark);
}

@media (max-width: 650px) {
  label {
    margin-bottom: .25rem;
  }
}

/* Multi Select */
.subject-wrapper {
  position: relative;
  max-width: 393px;
  margin: 0 auto;
}

.subject-wrapper.show-container {
  z-index: 1;
}

#subject-select {
  display: none;
}

.multiselect {
  color: #667790;
  cursor: pointer;
  display: flex;
  padding-right: 45px;
}

.multiselect:after {
  content: url("../icons/arrow-down.svg");
  display: block;
  position: absolute;
  right: 16px;
  height: 16px;
  width: 16px;
  margin-top: 1px;
  transition: transform var(--transition-appear-speed) ease;
}

.subject-wrapper.show-container .multiselect:after {
  transform: rotate(180deg);
}

.multiselect-container {
  width: 100%;
  list-style-type: none;
  padding: 24px 16px;
  background-color: var(--color-white);
  z-index: -1;
  transition: opacity var(--transition-appear-speed) ease,
  transform var(--transition-appear-speed) ease;
}

.multiselect-container.did-appear {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  z-index: 1;
}

.multiselect-container label {
  margin-bottom: 1rem;
  line-height: 25px;
}

.multiselect-container .form__checkbox-wrapper:last-child  label{
  margin-bottom: 0;
}

.multiselect-container label.disabled {
  pointer-events: none;
  color: gray;
}

.text-container {
  text-align: center;
  max-width: 530px;
  margin: 0 auto 40px;
}

.text-small {
  font-size: 15px;
  margin-bottom: 0.5rem;
  color: var(--color-text-grey);
}

/* Responsive Image */

.responsive-image {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.responsive-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transform-origin: bottom;
  transition: opacity 800ms ease, transform 800ms ease;
  will-change: opacity, transform;
}

.responsive-image img.did-appear {
  opacity: 1;
  transform: scale(1);
}

/* Layout Helper */

.main {
  overflow: hidden;
}

.page-section {
  padding: 0 var(--page-padding);
  max-width: 1098px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
}

.grid-helper {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1rem;
}

@media screen and (min-width: 1024px) {
  .grid-helper {
    grid-column-gap: 2rem;
  }

  .grid-helper.state--reverse {
    direction: rtl;
  }
}

@media screen and (min-width: 1600px) {
  .page-section {
    max-width: 1440px;
    margin: 120px auto;
  }
}

/* Navigation */
.nav {
  display: none;
}
.nav.disabled {
  display: none !important;
}

@media screen and (min-width: 1390px) {
  .nav {
    overflow: hidden;
    display: flex;
    position: fixed;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    top: 16px;
    left: 16px;
    right: 16px;
    border-radius: 200px;
    padding: 0px 5px 0px 32px;
    background: #FFFFFF;
    box-shadow: 0px 2px 20px -4px #0000001F;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
  }
  nav.inactive {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
  }

  .nav__list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .nav__link {
    position: relative;
    display: block;
    padding: 21px 24px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #A3ADBC;
  }

  .active .nav__link {
    color: initial;
  }

  .nav__config {
    border-radius: 9000px;
    padding: 16px 24px 18px 24px;
    background: #081C30;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    text-align: center;
  }
}

@media screen and (min-width: 1390px) and (max-width: 1645px) {
  .nav__link {
    padding: 21px calc(10px + (24 - 10) * (100vw - 1390px) / (1645 - 1390));
  }
}

/* Intro */
.intro {
  position: relative;
  display: block;
  overflow: hidden;
}
.color-intro {
  color: #fff;
}

.intro--small {
  min-height: 400px;
  color: #fff;
  height: auto;
}
/*.main-intro .intro__header {*/
/*  background-color: #FFFFFF;*/
/*}*/
.intro__header {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  width: 100%;
  opacity: 0;
  height: auto;
  flex-direction: row;
  align-items: flex-start;
  position: inherit;
  transition: opacity var(--transition-appear-speed) ease;
  z-index: 2;
}
.color-intro:not(.main-intro) .button .color-grad {
  display: none;
}

.intro__header.did-appear {
  opacity: 1;
}

.intro__logo {
  max-height: 3rem;
  margin: 0 auto;
}

.scroll-down {
  position: absolute;
  top: calc(100vh - 125px);
  left: calc(50% - 11px);
}
@media screen and (min-width: 1100px) {
  .intro__header {
    padding: var(--page-padding);
  }
  .intro--small .intro__logo *,
  .color-intro .intro__logo * {
    fill: #fff;
  }

  .scroll-down {
    top: calc(100vh - 148px);
  }
}

.intro__partner {
  text-align: right;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.intro__partner-link {
  height: 40px;
  width: 104px;
  border-radius: 200px;
  background: #FFFFFF;
  border: 1px solid #fff;
  position: relative;
  margin-left: 8px;
}
.main-intro .intro__partner-link {
  border: 1px solid #E0E4E9;
}

.main-intro .intro-content {
  transition: opacity 0.5s;
}
.main-intro.scrolled .intro-content {
  opacity: 0;
}

.intro__partner-logo {
  max-height: 20px;
  max-width: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.intro__title {
  font-family: var(--font-family-title);
  letter-spacing: 1.7px;
  font-size: 35px;
  color: var(--color-white);
  width: 100%;
  opacity: 0;
  text-align: center;
  transition: opacity var(--transition-appear-speed) ease;
  padding: 42px 36px 205px;
  background: var(--color-blue);
  position: relative;
}

.intro__title h1 {
  margin-bottom: 1em;
}

.intro__title.did-appear {
  opacity: 1;
}

.intro__video {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.intro-content {
  width: 100%;
  max-width: 955px;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 223px;
  left: 50%;
  transform: translateX(-50%);
  padding: 32px;
}
.main-intro .intro-content {
  top: 223px;
}
.intro-content .ext-btn {
  padding-right: 24px;
}
.intro-content .ext-icon {
  display: none;
}
.intro-content .button {
  transition: opacity .25s;
}

.intro-content .button:hover {
  opacity: 0.8;
  color: var(--color-text-primary);
  background-color: var(--color-white);
}

.intro-image {
  width: 64px;
}
.intro-title .heading-1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 96px;
  letter-spacing: 0em;
  margin-top: 8px;
}
.main-intro .heading-1 {
  font-size: 64px;
  line-height: 77px;
  margin-top: 8px;
}
.intro-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  max-width: 534px;
  margin: 32px auto;
}

@media (min-width: 1100px) {
  .intro--small .intro-content {
    position: initial;
    transform: unset;
  }

  .intro--small .intro-title .heading-1 {
    margin-top: 16px;
  }
}

@media screen and (min-width: 650px) {
  .intro {
    min-height: 100vh;
  }

  .intro__title {
    letter-spacing: 1.7px;
    font-size: 49px;
    padding: 60px 66px 144px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 65vmax);
  }

  .intro__video {
    height: 65vmax;
  }
}

@media screen and (min-width: 1024px) {
  .intro__title {
    max-width: 28rem;
    height: auto;
    position: absolute;
    display: block;
    text-align: left;
    left: 75%;
    top: 64%;
    transform: translate3d(-50%, -50%, 0);
    padding: 0;
    background-color: transparent;
  }

  .intro__video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    z-index: -1;
  }

  .intro--small {
    min-height: 400px;
    color: #fff;
    height: auto;
  }

  .intro__logo {
    max-height: 4rem;
    margin: 0;
  }

  .intro__partner {
    width: auto;
  }

}

@media screen and (min-width: 1250px) {
  .intro:not(.intro--small) {
    height: 100vh;
  }
}

@media screen and (min-width: 1400px) {
  .intro__title {
    max-width: 40rem;
  }
}

@media screen and (max-width: 478px) {
  .main-intro .intro-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    height: calc(100% - 135px);
    position: initial;
    transform: initial;
  }
}

@media (max-height: 740px) {
  .main-intro .intro-content {
    height: calc(100% - 100px);
  }
}

.color-boxes {
  color: var(--color-text-primary);
}

/* Text only */

.text-only {
  margin-bottom: var(--component-spacing);
}

.text-only__text {
  font-size: var(--font-size-m);
  grid-column-start: 2;
  grid-column-end: 12;
}

.text-only__text.did-appear {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media screen and (min-width: 1024px) {
  .text-only__text {
    grid-column-start: 2;
    grid-column-end: 9;
    /*transform: translate3d(-100px, 0, 0);*/
    /*opacity: 0;*/
    /*transition: opacity var(--transition-appear-speed) ease,*/
    /*transform var(--transition-appear-speed) ease;*/
  }

  .text-only--wide .text-only__text {
    grid-column-start: 3;
    grid-column-end: 11;
  }
}

/* Text Image */

.text-image {
  margin-bottom: calc(var(--component-spacing) - 20px);
}

.text-image__image {
  grid-column-start: 1;
  grid-column-end: 13;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
}

.text-image__image.did-appear,
.state--reverse .text-image__image.did-appear {
  opacity: 1;
}

.text-image__content {
  direction: ltr;
  margin-bottom: 4rem;
  grid-column-start: 1;
  grid-column-end: 13;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 2rem;

}

.text-image__content.did-appear,
.state--reverse .text-image__content.did-appear {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 1024px) {
  .text-image__content {
    transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
  }
}

.text-image__number {
  display: inline-block;
  border-radius: 100px;
  padding: 0.7rem 1rem 0.5rem;
  font-size: var(--font-size-xs);
  background-color: var(--color-white);
  color: var(--color-blue-dark);
  box-shadow: 20px 20px 0 #f0f0f0;
  margin-top: -15px;
}

.text-image__text {
  grid-column-start: 1;
  grid-column-end: 6;
}

.text-image__title {
  text-align: left;
  margin: 16px 0 40px;
}

.text-image__content .richtext {
  margin-bottom: 40px;
}

.text-image__image-secondary {
  grid-column-start: 1;
  grid-column-end: 13;
  margin-bottom: 3rem;
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
}

.text-image__image-secondary.did-appear,
.state--reverse .text-image__image-secondary.did-appear {
  opacity: 1;
}

.text-image__image-third {
  grid-column-start: 3;
  grid-column-end: 11;
  margin-bottom: 3rem;
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
}

.text-image__image-third.did-appear,
.state--reverse .text-image__image-third.did-appear {
  opacity: 1;
}

.text-image__content-secondary {
  grid-column-start: 2;
  grid-column-end: 12;
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
}

.text-image__content-secondary.did-appear,
.state--reverse .text-image__content-secondary.did-appear {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.text-image__container {
  direction: ltr;
  grid-column-start: 1;
  grid-column-end: 13;
  grid-row-start: 2;
  opacity: 0;
  transform: translate3d(100px, 0, 0);
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
}

.text-image__container.did-appear,
.state--reverse .text-image__container.did-appear {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 650px) {
  .text-image__content {
    grid-column-start: 1;
    grid-column-end: 12;
    grid-template-columns: repeat(10, 1fr);
  }

  .text-image__text {
    grid-column-start: 1;
    grid-column-end: 11;
  }

  .text-image__container {
    direction: ltr;
    grid-column-start: 2;
    grid-column-end: 12;
  }
}

@media screen and (min-width: 1024px) {
  .text-image__image {
    grid-column-start: 1;
    grid-column-end: 6;
    margin-bottom: 0;
  }

  .state--reverse .text-image__image {
    grid-column-start: 2;
    grid-column-end: 7;
  }

  .text-image__content {
    grid-template-columns: repeat(5, 1fr);
    grid-column-start: 7;
    grid-column-end: 12;
    margin-bottom: 0;
  }

  .text-image__text {
    grid-column-start: 1;
    grid-column-end: 6;
  }

  .state--reverse .text-image__content {
    grid-column-start: 8;
    grid-column-end: 13;
  }

  .text-image__image-secondary {
    grid-row-start: 2;
    grid-column-start: 7;
    grid-column-end: 12;
    margin-top: 3rem;
    margin-bottom: 0;
  }

  .state--reverse .text-image__image-secondary {
    grid-column-start: 8;
    grid-column-end: 13;
  }

  .text-image__image-third {
    grid-row-start: 3;
    grid-column-start: 3;
    grid-column-end: 6;
    margin-top: -3rem;
    margin-bottom: 0;
  }

  .state--reverse .text-image__image-third {
    grid-column-start: 4;
    grid-column-end: 7;
  }

  .text-image__content-secondary {
    grid-row-start: 3;
    grid-column-start: 7;
    grid-column-end: 11;
    margin-top: 9rem;
    margin-bottom: 0;
  }

  .state--reverse .text-image__content-secondary {
    transform: translate3d(-100px, 0, 0);
    grid-column-start: 8;
    grid-column-end: 12;
    direction: ltr;
  }

  .text-image__container {
    direction: ltr;
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: auto;
  }
}

/* Page Break */

.page-break {
  overflow: hidden;
  height: 90vh;
  background-color: var(--color-blue);
  position: relative;
  margin-bottom: var(--component-spacing);
}

.page-break__description {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: var(--page-padding);
  color: var(--color-white);
}

.page-break__description p {
  max-width: 20rem;
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
}

.page-break__description p:first-child {
  margin-bottom: 1rem;
}

.page-break__description.did-appear p {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.page-break__title {
  font-family: var(--font-family-title);
  font-size: var(--font-size-xxl);
  max-width: 35rem;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  text-align: center;
  color: var(--color-blue);
}

.page-break__sun {
  pointer-events: none;
  position: relative;
  width: 10rem;
  height: 10rem;
  background-color: var(--color-yellow);
  border-radius: 50%;
  margin: 0 auto;
  transform: translate3d(0, -100%, 0);
}

.page-break__sun::after {
  content: "";
  display: block;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(
    circle,
    rgba(255, 230, 0, 1) 0%,
    rgba(255, 230, 0, 0) 70%
  );
}

@media screen and (min-width: 650px) {
  .page-break__sun {
    width: 20rem;
    height: 20rem;
  }

  .page-break__sun::after {
    width: 50rem;
    height: 50rem;
  }

  .page-break__description {
    display: flex;
    justify-content: space-between;
  }

  .page-break__description p:first-child {
    margin-bottom: 0;
  }

  .page-break__description p:last-child {
    text-align: right;
    transform: translate3d(100px, 0, 0);
  }

  .page-break__description.did-appear p {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

/* Process */

.process {
  position: relative;
}

.process__item {
  position: relative;
  margin-bottom: 36px;
}

.process__item::after {
  content: "";
  width: 1px;
  height: 36px;
  background-color: var(--color-gray);
  position: absolute;
  top: 100%;
  left: 2rem;
}

.process__item:last-child::after {
  content: none;
}

.text-list__text-container.text-list__padding {
  padding-top: 30px;
}
.process__link {
  padding: 18px 32px 18px 64px;
  display: inline-block;
  border-radius: 2000px;
  font-size: 20px;
  background-color: var(--color-white);
  color: #0A2540;
  border: 1px solid var(--color-gray);
  transition: background-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  position: relative;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.process__link:hover {
  box-shadow: 0px 2px 20px -4px rgba(0, 0, 0, 0.12);
}

.process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  background-color: var(--color-gray-light);
  left: 12px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: color 200ms ease;
}

.process__link:hover .process__number {
  color: var(--color-blue-dark);
}

.process__box-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 25rem;
  max-width: 100%;
  height: 70%;
  pointer-events: none;
}

.process__box {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: 0px 2px 20px -4px #0000001F;
}

.process__box.state--open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

.process__box-title {
  font-family: var(--font-family-title);
  font-size: var(--font-size-m);
  max-width: 80%;
  margin-bottom: 2rem;
}

.process__box-text {
  font-size: var(--font-size-xs);
  line-height: 1.5;
}

.process__box-close {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #081C30;
  width: 4rem;
  height: 4rem;
  border-radius: 0 0 0 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 200ms ease;
}

.process__box-close span {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
}

.process__box-close span::before,
.process__box-close span::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  left: 0px;
  top: 15px;
}

.process__box-close span::after {
  transform: rotate(-45deg);
}

.process__box-close span::before {
  transform: rotate(45deg);
}

/* Mobile */
@media screen and (max-width: 1100px) {
  .process__link {
    font-size: 18px;
  }
}


/* Contact Form */

.contact {
  padding: 72px 24px 72px;
  background: #F0F4F9;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.contact__form {
  max-width: 393px;
  margin: 0 auto;
}

.contact__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0em;

  text-align: center;
  max-width: 29rem;
  margin: 0 auto 1rem;
  display: block;
}

.contact__form-wrapper {
  position: relative;
  max-width: 533px;
  margin: 0 auto;
}

.contact-animation-hidden {
  height: 0;
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease,
  height var(--transition-appear-speed) linear;
}

.contact-animation-hidden.did-appear {
  height: 100%;
}

.contact-animation {
  text-align: center;
  transform: translate3d(0, 50px, 0);
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease,
  transform var(--transition-appear-speed) ease;
}

.contact-animation.did-appear {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.special-contact-text p {
  margin-bottom: 28px;
}

.contact-after-text {
  margin-top: 40px;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact-after-text.links-underlined a {
  padding: 0;
}

.contact-contact {
  margin-top: 24px;
}

.contact-contact p {
  margin-bottom: 8px;
}

.contact__confirmation,
.contact__error {
  pointer-events: none;
  height: 0;
  width: 100%;
  opacity: 0;
  color: red;
  text-align: center;
  transform: translate3d(0, 50px, 0);
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease,
    height var(--transition-appear-speed) linear;
}

.contact__error h3,
.contact__confirmation h3 {
  font-size: 18px;
}

.contact__confirmation.state--visible,
.contact__error.state--visible {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  height: auto;
}

@media screen and (min-width: 650px) {
  .contact {
    padding: var(--contact-spacing) var(--page-padding) var(--contact-spacing);
    margin: 0 31px;
  }
}
/* Footer */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 50px;
  position: relative;
}

.footer__link {
  display: block;
  margin-bottom: 43px;
  order: 1;
  letter-spacing: -0.02em;
  text-decoration: underline;
}

.footer__partner-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.footer-link-wrapper {
  margin-top: 30px;
}

.footer__partner-link {
  display: flex;
  background-color: var(--color-white);
  border-radius: 100px;
  padding: 9px 28px;
  margin-bottom: 2.88rem;
  transition: background-color 200ms ease;
  border: 1px solid #E0E4E9;
  min-width: 156px;
  text-align: center;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.footer__partner-logo {
  max-height: 40px;
}

.back-to-top {
  box-shadow: 0px 2px 20px -4px rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  padding: 16px;
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F0F4F9;
  right: 30px;
  bottom: 60px;
  cursor: pointer;
}

@media screen and (min-width: 650px) {
  .footer {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px var(--page-padding) 0rem;
  }

  .footer__partner-container {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    margin-left: 48px;
  }

  .footer-link-wrapper {
    margin-top: 0;
    margin-right: 90px;
  }

  .footer__link-container {
    display: flex;
    justify-content: center;
  }

  .footer__partner-link {
    margin-left: 60px;
  }

  .footer__partner-link:first-child {
    margin-left: 0;
  }

  .footer__partner-link:last-child {
    margin-bottom: 0;
  }

  .back-to-top {
    background-color: var(--color-white);
    right: 61px;
    top: -87px;
    bottom: 0;
  }
}

@media (max-width: 1195px) {

  .footer__partner-container {
    margin-left: 0;
  }

  .footer__partner-link {
    margin-left: 3%;
  }

  .footer-link-wrapper {
    margin-right: 6%;
  }

  .footer-link-wrapper:last-child {
    margin-right: 0;
  }
}


@media (max-width: 650px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 187px;
  }

  .footer__partner-link,
  .footer__link {
    margin-bottom: 24px;
  }

  .footer-link-wrapper {
    text-align: center;
  }
}

@media (min-width: 930px) {
  .footer {
    grid-template-columns: calc(60% - 15px) calc(40% - 15px);
    grid-gap: 30px;
  }

  .footer__link-container {
    justify-content: end;
  }

  .footer__partner-container {
    justify-content: flex-start;
  }
}

@media (min-width: 1195px) {
  .footer {
    grid-template-columns: calc(60% - 15px) calc(40% - 30px);
    grid-gap: 60px;
  }

  .footer__link-container {
    margin-right: -17px;
  }
}

/* Clouds */
.clouds {
  display: none;
}

@media screen and (min-width: 650px) {
  .clouds {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .clouds__cloud {
    position: absolute;
    pointer-events: auto;
    cursor: pointer;
  }

  .clouds__cloud-inner {
    height: 40px;
    width: 100px;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--color-white);
    border-radius: 20px;
    transform: scale(1);
    transition: width 200ms ease, height 200ms ease;
  }

  .clouds__cloud-inner.state--blobb {
    width: 0!important;
    height: 0!important;
  }

  .clouds__cloud-blobb {
    display: block;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0);
    border-radius: 50%;
    background-color: #fff;
    transform: translate(-50%,-50%) translate3d(0, 0, 0) scale(1);
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 1;
    transition: transform 500ms ease, opacity 200ms ease 300ms, box-shadow 450ms ease 50ms;
  }

  
  .state--blobb .clouds__cloud-blobb {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
}

/* Cursor Sunce */
.cursor-sunce {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999999;
  width: 1px;
  height: 1px;
  transform: translate3d(var(--mouse-x), var(--mouse-y), 0);
  opacity: 0;
  transition: opacity 300ms ease;
}

.state--cursor-visible.cursor-sunce {
  opacity: 1;
  transition: opacity 100ms ease;
}

.cursor-sunce__inner {
  width: 70px;
  height: 70px;
  transform: translate3d(-50%,-50%,0);
  background-image: url(../images/sunce.svg);
  background-size: contain;
}

/*** Cookie Banner ***/
.cookie-banner {
  position: fixed;
  z-index: 4;
  bottom: 24px;
  right: 24px;
  background-color: var(--color-white);
  border-radius: 0 20px 24px 24px;
  padding: var(--page-padding);
  max-width: 18rem;
  text-align: center;
  transform: translate3d(0, 50px, 0);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 24px 48px -4px rgba(0, 0, 0, 0.1);
  transition: opacity var(--transition-appear-speed) ease,
    transform var(--transition-appear-speed) ease;
  font-size: 12px;
  width: 225px;
  letter-spacing: 0;
}

.cookie-banner.did-appear {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cookie-banner__title {
  font-family: var(--font-family-title);
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 1.7rem;
  letter-spacing: -0.005em;
  margin-top: 1px;
}

.cookie-banner__link {
  display: inline;
  border-bottom: 1px solid var(--color-text-primary);
  padding-bottom: 3px;
}

.cookie-banner__close {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--color-text-primary);
  width: 34px;
  height: 34px;
  border-radius: 0 0 0 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 200ms ease;
}

.js-cookie-banner__button {
  background-color: var(--color-text-primary);
  color: var(--color-white);
  margin-top: 43px;
  letter-spacing: 0.03em;
  padding: .85rem 1.57rem 0.85rem;
}

.cookie-banner__close span {
  position: relative;
  display: block;
  width: 10px;
  height: 1.5rem;
}

.cookie-banner__close span::before,
.cookie-banner__close span::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  left: 0px;
  top: 11px;
}

.cookie-banner__close span::after {
  transform: rotate(-45deg);
}

.cookie-banner__close span::before {
  transform: rotate(45deg);
}

/*** Animated Background ***/
.animated-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}
.animated-gradient * {
  transition: background-color 333ms cubic-bezier(.33, .0, .67, 1.0), fill 333ms cubic-bezier(.33, .0, .67, 1.0);
}
.animated-gradient .color-container {
  position: absolute;
  top: -50%;
  left: -49%;
  right: -50%;
  bottom: -50%;
}

.animated-gradient svg {
  filter: blur(100px);
  -webkit-filter: blur(100px);
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backdrop-filter: blur(100px);
  -moz-filter: blur(100px);
  -o-filter: blur(100px);
  -ms-filter: blur(100px);
}

@keyframes move {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(50px, -80px);
  }
}

.color-blob-1 {
  animation: move 1.5s cubic-bezier(.33, .0, .67, 1.0) infinite alternate;
  animation-delay: 2s;
}
.color-blob-2 {
  animation: move 1s cubic-bezier(.33, .0, .67, 1.0) infinite alternate;
  animation-delay: 2s;
}
.color-blob-3 {
  animation: move 1.75s cubic-bezier(.33, .0, .67, 1.0) infinite alternate;
  animation-delay: 2s;
}
.color-blob-4 {
  animation: move 2s cubic-bezier(.33, .0, .67, 1.0) infinite alternate;
  animation-delay: 2s;
}
.color-blob-5 {
  animation: move 1.25s cubic-bezier(.33, .0, .67, 1.0) infinite alternate;
  animation-delay: 2s;
}

.color-spektral ::selection {
  background: #902B89;
  color: #fff;
}
.color-spektral .color-container {
  background-color: #902B89;
}
.color-spektral .color-blob-1 {
  fill: #682764;
}
.color-spektral .color-blob-2 {
  fill: #EB3828;
}
.color-spektral .color-blob-3 {
  fill: #FFA03B;
}
.color-spektral .color-blob-4 {
  fill: #010522;
}
.color-spektral .color-blob-5 {
  fill: #479DBC;
}

.color-blue ::selection {
  background-color: #3BCBFF;
  color: var(--color-text-primary);
}
.color-blue .color-container {
  background-color: #3855BC;
}
.color-blue .color-blob-1 {
  fill: #2656FF;
}
.color-blue .color-blob-2 {
  fill: #3BCBFF;
}
.color-blue .color-blob-3 {
  fill: #5675E7;
}
.color-blue .color-blob-4 {
  fill: #010522;
}
.color-blue .color-blob-5 {
  fill: #479DBC;
}

.color-orange ::selection {
  background-color: #FE9A3E;
  color: var(--color-text-primary);
}
.color-orange .color-container {
  background-color: #FE7718;
}
.color-orange .color-blob-1 {
  fill: #FF6B2C;
}
.color-orange .color-blob-2 {
  fill: #D8373D;
}
.color-orange .color-blob-3 {
  fill: #EE432B;
}
.color-orange .color-blob-4 {
  fill: #FE9A3E;
}
.color-orange .color-blob-5 {
  fill: #FBE74D;
}

.color-violet ::selection {
  background-color: #DF7DD9;
  color: var(--color-text-primary);
}
.color-violet .color-container {
  background-color: #902B89;
}
.color-violet .color-blob-1 {
  fill: #682764;
}
.color-violet .color-blob-2 {
  fill: #DF7DD9;
}
.color-violet .color-blob-3 {
  fill: #D040C6;
}
.color-violet .color-blob-4 {
  fill: #010522;
}
.color-violet .color-blob-5 {
  fill: #D040C6;
}

/*** Color Boxes ***/
.box-container {
  margin-top: 0;
  position: absolute;
  top: 100vh;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  transition: top 0.5s linear;
}
.scrolled .box-container {
  top: 0;
}
.box-container .content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.scrolled .config-box {
  margin-top: 184px;
}
.content-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.config-box {
  padding: 40px;
  margin-top: -137px;
  font-size: 50px;
  font-weight: 500;

  width: 393px;
  min-height: 536px;

  background: #FFFFFF;

  border: 1px solid #E0E4E9;

  box-shadow: 0px 24px 48px -4px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease, transform var(--transition-appear-speed) ease, margin-top 0.5s linear !important;
}
.config-box.did-appear {
  opacity: 1;
}
.config-box h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0em;
  text-align: center;
  display: block !important;
  -webkit-text-fill-color: currentColor;
  transition: -webkit-text-fill-color 0.3s ease;
}
.config-box:hover h2 {
  -webkit-text-fill-color: transparent;
}
.config-box .links {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.config-box .link {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  color: #667790;
  margin: 40px 0 0;
  display: inline-block;
}
.config-box .button {
  background-color: rgba(0,0,0,1);
  margin: 40px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  transition: background-color 0.3s ease;
}
.config-box:hover .button ,
.dark-bg-button:hover {
   background-color: rgba(0,0,0,0);
}
.config-box .button .color-grad,
.dark-bg-button .color-grad {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.config-box .box-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: left;
  margin-top: 32px;
}
.config-box .box-text ul {
  padding-left: 32px;
}
.config-box .box-text ul li {
  position: relative;
  margin: 12px 0;
}
.config-box .box-text ul li:before {
  content: "";
  background-image: url("../icons/d-check_6.png");
  background-size: cover;
  width: 24px;
  height: 24px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: -32px;
}
.config-box .box-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  display: block;
  position: relative;
}
.config-box .box-icon__image {
  max-width: 100%;
  display: block;
}
.config-box .box-icon__image.hover-icon {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.config-box:hover .box-icon__image.hover-icon {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.main-intro__container {
  width: 100vw;
  height: 100vh;
  position: relative;
}

/* Mobile */
@media screen and (max-width: 1250px) {
  .box-container {
    height: auto;
    margin-top: -75px;
    position: relative;
    top: 0;
  }
  .box-container .content-container {
    flex-direction: column;
    align-items: center;
    padding: 0 23px 42px;
    margin-top: 75px;
  }
  .config-box {
    margin: 16px 0;
    width: 100%;
    max-width: 393px;
  }
  .config-box:first-child {
    margin-top: -75px;
  }
  .config-box h2 {
    font-size: 24px;
    line-height: 28.8px;
  }
  .box-container .content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .scrolled .config-box {
    margin-top: 184px;
  }
}

@media (max-width: 1250px) {
  .box-container .content-container {
    margin-top: 10px;
  }
}

@media (max-height: 740px) {
  .box-container .content-container {
    margin-top: 110px;
  }
}

/*** Colored Text ***/
.colored-text {
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.colored-text::selection {
  -webkit-text-fill-color: initial;
}
.colored-text.color-spektral {
  background-image: var(--grad-spektrum) !important;
}
.color-spektral .colored-text {
  background-image: var(--grad-spektrum);
}
.colored-text.color-blue {
  background-image: var(--grad-blue) !important;
}
.color-blue .colored-text {
  background-image: var(--grad-blue);
}
.colored-text.color-orange {
  background-image: var(--grad-orange) !important;
}
.color-orange .colored-text {
  background-image: var(--grad-orange);
}
.colored-text.color-violet {
  background-image: var(--grad-violet) !important;
}
.color-violet .colored-text {
  background-image: var(--grad-violet);
}

/*** Text Only ***/
.text-only {
  max-width: 680px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  margin: 120px auto;
}
.text-only__text,
.text-image__content {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  max-width: 533px;
  margin: 0 auto;
}

.text-image__content {
  margin-left: 0;
}

.text-only__title {
  text-align: center;
  margin: 16px 0 40px;
}
/* Mobile */
@media screen and (max-width: 1100px) {
  .text-only {
    margin: 45px auto 40px;
  }
}

/*** Alternate Images ***/
.alternate-images {
  width: 100%;
  padding: 0 24px;
  max-width: 1500px;
  margin: 0 auto 80px;
}
.alternate-images__image {
  padding-top: 16px;
}
.alternate-images__image img {
  max-width: 100%;
  border-radius: 24px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
/* Desktop */
@media screen and (min-width: 768px) {
  .alternate-images {
    padding: 0 30px;
    margin: 0 auto 180px;
  }
  .alternate-images__float-cont {
    display: inline-block;
    width: 100%;
  }
  .alternate-images__image {
    padding-top: 160px;
  }
  .alternate-images__image:first-child {
    padding-top: 0;
  }
  .alternate-images__image:nth-child(2) {
    padding-top: 205px;
  }
  .alternate-images__image:nth-child(2n - 1) {
    float: right;
    width: 53%;
  }
  .alternate-images__image:nth-child(2n) {
    float: left;
    width: 47%;
    padding-right: 5%;
  }
  .alternate-images__image img {
    width: auto;
    height: auto;
  }
}

/*** Text List ***/
.text-list {
  margin: 180px 0;
  display: flex;
  justify-content: space-between;
}
.text-list__text-container {
  width: 393px;
  padding-top: 11px;
}
.text-list__list-container {
  width: 533px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}
.text-list__title {
  text-align: left;
  margin: 16px 0 40px;
}
.text-list__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 0 0 40px;
}
.text-list__list-container ul:not(.process__list) {
  padding-left: 52px;
}
.text-list__list-container ul:not(.process__list) li {
  position: relative;
  margin: 0 0 24px;
}
.text-list__list-container ul:not(.process__list) li:before {
  content: "";
  background-image: url("../icons/d-check_6.png");
  background-size: cover;
  width: 36px;
  height: 36px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -52px;
  transform: translateY(-50%);
}

/* Mobile */
@media screen and (max-width: 1100px) {
  .text-list {
    flex-wrap: wrap;
    margin: 80px 0;
  }
  .text-list__text-container {
    width: 100%;
    margin-bottom: 40px;
  }
  .text-list__list-container {
    width: 100%;
    font-size: 18px;
    line-height: 27px;
  }

  .text-list__title {
    margin: 24px 0;
  }
}

@media screen and (min-width: 1101px) {
  .process-list, .text-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/*** Image Text ***/
.image-text {
  position: relative;
  margin: 80px auto;
  padding: 0 30px;
  box-sizing: border-box;
}
.image-text__positioner {
  max-width: 1269px;
  width: 100%;
  position: relative;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1500px) {
  .image-text {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
  }
}
.image-text__image img,
.text-image .responsive-image{
  max-width: 100%;
  border-radius: 24px;
}
/* Desktop */
@media screen and (min-width: 1100px) {
  .image-text {
    margin: 180px auto;
  }
  .image-text__text-container {
    position: absolute;
    width: 451px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 24px;
    padding: 64px 30px 64px 30px;
    background: var(--color-white);
    box-shadow: 0px 24px 48px -4px rgba(0, 0, 0, 0.1)
  }
  .image-text__image {
    margin-left: 171px;
  }
}

/*** Color Content ***/
.color-content {
  position: relative;
  margin: 180px 27px;
  padding: 180px 24px;
  color: #FFFFFF;
}
.color-content .animated-gradient {
  border-radius: 32px;
}
.color-content__text-container {
  width: 100%;
  max-width: 814px;
  margin: 0 auto;
  text-align: center;
}
.color-content__icon-image {
  display: block;
  margin: 0 auto 24px;
}
.color-content__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 96px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 32px;
}
.color-content__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: center;
}
.color-content__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 35px;
}
.color-content__logos > * {
  margin: 5px;
}
.color-content__link {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 36px;
  display: inline-block;
}
/* Mobile */
@media screen and (max-width: 1100px) {
  .color-content {
    margin: 80px 0;
    padding: 120px 24px;
    color: #FFFFFF;
  }
  .color-content__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: center;
  }
}

/*** Boxes Slider ***/
.boxes-slider {
  margin: 180px auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1500px;
}
.boxes-slider__text-container {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: 581px;
}
.boxes-slider__small {
  text-align: center;
}
.boxes-slider__title {
  text-align: center;
  margin-top: 24px;
}
.boxes-slider__slider {
  display: inline-block;
  width: 10000px;
  margin-left: -50vw;
  position: relative;
  margin-top: 64px;
}
.boxes-slider__slide {
  border: 1px solid #E0E4E9;
  border-radius: 24px;
  margin: 0 15px;
  padding: 64px 24px 80px;
  width: 393px;
  float: left;
  transform: translatex(0);
  transition: all 0.3s ease;
  min-height: 480px;
}
.boxes-slider__slide:hover {
  box-shadow: 0px 24px 48px -4px #0000001A;
}
.boxes-slider__slide:first-child {
  margin-left: 50vw;
}
.boxes-slider__slide h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0em;
  text-align: left;
  display: inline-block;
  margin-bottom: 32px;
  -webkit-text-fill-color: currentColor;
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  transition: -webkit-text-fill-color 0.3s ease;
}
.boxes-slider__slide:hover h4 {
  -webkit-text-fill-color: transparent;
}
.color-spektral .boxes-slider__slide h4 {
  background-image: var(--grad-spektrum) !important;
}
.color-blue .boxes-slider__slide h4 {
  background-image: var(--grad-blue) !important;
}
.color-orange .boxes-slider__slide h4 {
  background-image: var(--grad-orange) !important;
}
.color-violet .boxes-slider__slide h4 {
  background-image: var(--grad-violet) !important;
}
.boxes-slider__slide .box-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: left;
  margin-bottom: 40px;
}
.boxes-slider__slide .button {
  position: absolute;
  bottom: 32px;
  left: 24px;
}
.boxes-slider__buttons {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
/* Mobile */
@media screen and (max-width: 1100px) {
  .boxes-slider {
    margin: 80px auto;
  }
  .boxes-slider__slide {
    width: 311px;
    margin: 0 8px;
  }
}

/** Slider Icons **/
.icon-prev,
.icon-next {
  height: 56px;
  width: 56px;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid #E0E4E9;
  background-color: #fff;
  margin: 4px;
  box-shadow: 0px 2px 20px -4px rgba(0, 0, 0, 0.12);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.icon-prev.inactive,
.icon-next.inactive {
  box-shadow: none;
  background-color: transparent;
}
.icon-prev img,
.icon-next img {
  width: 7px;
  height: 11px;
}

/*** Review Slider ***/
.review-slider {
  background: #F0F4F9;
  border-radius: 32px;
  width: calc(100% - 60px);
  padding: 163px 24px;
  margin: 180px 30px;
  position: relative;
}
.review-slider__small {
  text-align: center;
}
.review-slider .box-text {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0em;
  text-align: center;
  margin: 16px 0 24px;
}
.review-slider .box-detail {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: center;
}
.review-slider__slider {
  height: 200px;
  position: relative;
  width: 100%;
  max-width: 813px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.review-slider__slide {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s ease 0.3s, opacity 0.3s ease;
}
.review-slider__slide.visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s ease, opacity 0.3s ease;
}
.review-slider__buttons {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* Mobile */
@media screen and (max-width: 1100px) {
  .review-slider {
    padding: 72px 24px;
    margin: 80px 0;
    width: 100%;
  }
  .review-slider .box-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: center;
  }
}

/*** Dropdown ***/
.dropdown {
  width: 100%;
  max-width: 581px;
  margin: 180px auto;
  padding: 0 24px;
}
.dropdown__title {
  text-align: center;
  margin: 24px 0 32px;
}
.dropdown__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: center;
}

.list-support ul {
  list-style: inherit;
  padding-left: 15px;
  padding-top: 5px;
}

.list-support ul li {
  padding-left: 3px;
  padding-bottom: 5px;
}

.list-support ul li::marker {
  font-size: 13px;
}

.dropdown__small {
  text-align: center;
}
.dropdown__list {
  margin-top: 64px;
}
.dropdown__entry {
  border: 1px solid #E0E4E9;
  border-radius: 24px;
  margin-bottom: 16px;
  padding: 25px 24px;
  cursor: pointer;
}
.dropdown__entry:hover {
  box-shadow: 0px 2px 20px -4px #0000001F;
}
.dropdown__entry h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 0;
  transition: padding-bottom 0.3s ease;
  position: relative;
  padding-right: 20px;
}
.dropdown__entry.active h3 {
  padding-bottom: 29px;
}
.dropdown__entry h3:after {
  content: "";
  background-image: url("../icons/arrow-down.png");
  background-size: contain;
  text-align: right;
  position: absolute;
  right: 7px;
  top: 12px;
  width: 10px;
  height: 7px;
  background-position: center;
  background-repeat: no-repeat;
}
.dropdown__entry .dropdown-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.dropdown-text p {
  padding-bottom: 5px;
}

/* Mobile */
@media screen and (max-width: 1100px) {
  .dropdown {
    margin: 80px auto;
  }
  .dropdown__entry h3 {
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease;
    position: relative;
    padding-right: 20px;
    font-size: 18px;
    line-height: 27px;
  }
}

/*** Logo infinite Scroller ***/
@keyframes logoMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-183px * 15))}
}

.logo-slide {
  margin: 180px 0;
}
.logo-slide__container {
  display: flex;
  animation: logoMove 30s linear infinite;
  width: calc(183px * 30);
}
.logo-slide__entry {
  width: 143px;
  margin: 0 20px;
  transform: translateX(0vw);
}
.logo-slide__image {
  max-width: 100%;
}

/*** Fonts ***/

.heading-1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 77px;
  letter-spacing: 0em;
  text-align: center;
}
.heading-1.will-appear {
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease;
}
.heading-1.did-appear {
  opacity: 1;
}
.heading-2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0em;
  width: 100%;
}
.heading-2.will-appear {
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease;
}
.heading-2.did-appear {
  opacity: 1;
}
.heading-3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0em;
}
.heading-3.will-appear {
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease;
}
.heading-3.did-appear {
  opacity: 1;
}
.small {
  font-size: 12px;
  font-weight: 400;
  line-height: 11px;
  letter-spacing: 0.08em;
  color: #667790;
  text-transform: uppercase;
}
.small.will-appear {
  opacity: 0;
  transition: opacity var(--transition-appear-speed) ease;
}
.small.did-appear {
  opacity: 1;
}
/* Mobile */
@media screen and (max-width: 1100px) {
  .main-intro .heading-1,
  .intro-title .heading-1,
  .heading-1 {
    font-size: 48px;
    line-height: 58px;
  }
  .heading-2 {
    font-size: 40px;
    line-height: 48px;
    width: auto;
  }
  .heading-3 {
    font-size: 24px;
    line-height: 28.8px;
  }
  .small {
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0em;
    text-transform: none;
  }
}

.content-only__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-align: left;
  max-width: 817px;
  margin: 0 auto;
}

.content-only__text .text-only {
  text-align: initial;
}

.menu-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.menu a {
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-left: 32px;
  position: relative;
}
.menu a:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  content: "";
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}
.menu a:hover:after,
.menu a:focus:after,
.menu a.active:after {
  border-bottom: 1px solid #fff;
}
.mobile-icons {
  display: flex;
  justify-content: space-between;
}
.icon-calculator {
  border-radius: 24px;
  background: #081C30;
  display: block;
  position: relative;
  height: 48px;
  width: 64px;
}
.icon-calculator img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-menu {
  border-radius: 24px;
  background: #F0F4F9;
  position: relative;
  height: 48px;
  width: 64px;
  display: block;
  margin-left: 8px;
}
.icon-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  width: 22px;
  border-radius: 4px;
  background-color: #081C30;
  opacity: 1;
  transition: all 0.3s ease;
}
.icon-menu span:first-child {
  margin-top: -7px;
}
.icon-menu span:last-child {
  margin-top: 7px;
}
.icon-menu.active span:nth-child(2) {
  opacity: 0;
}
.icon-menu.active span:first-child {
  margin: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.icon-menu.active span:last-child {
  margin: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 1100px) {
  .icon-menu {
    display: none;
  }
  .icon-calculator {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .intro:not(.main-intro) {
    height: 100vh;
  }

  .intro__partner {
    display: none;
  }
  .intro__header {
    background: #FFFFFF;
    align-items: center;
  }
  .menu-box .menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    background: #FFFFFF;
    flex-direction: column;
    padding: 0 24px;
    overflow: hidden;
    height: 0;
    transition: height 0.3s ease, padding 0.3s ease;
  }
  .menu-box .menu.active {
    height: 100vh;
    padding: 65px 24px;
  }
  .menu a {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0 0 40px;
    color: #081C30;
  }
  .menu a:after {
    display: none;
  }
  .menu a:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 16px;
    transform: translateY(-50%);
    background-image: url("../icons/arrow-right.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.will-appear {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity var(--transition-appear-speed) ease, transform var(--transition-appear-speed) ease;
}
.did-appear {
  transform: translateY(0);
  opacity: 1;
}
.ext-btn {
  padding-right: 48px;
}
.ext-icon {
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.border-link {
  position: relative;
}
.border-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid currentColor;
}

.links-underlined a {
  background-image: linear-gradient(0, currentColor 0%, currentColor 100%);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position-y: 101%;
  padding-bottom: 4px;
}

.links-underlined a:hover {
  background-image: var(--grad-spektrum);
}

.color-blue .links-underlined a:hover {
  background-image: var(--grad-blue);
}

.color-orange .links-underlined a:hover {
  background-image: var(--grad-orange);
}

.color-violet .links-underlined a:hover {
  background-image: var(--grad-violet);
}

.config-popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  color: #081C30;
}
.config-popup.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.config-popup__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
}
.config-popup__container {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  width: 393px;
  margin: 1px auto 0;
  background-color: #fff;
  box-shadow: 0px 2px 20px -4px #0000001F;
  border-radius: 24px;
  padding: 17px 42px 24px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.config-popup__container h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.config-popup__container p {
  text-align: left;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.00em;
}
.config-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  background-color: #081C30;
  border-bottom-left-radius: 24px;
  cursor: pointer;
}
.config-popup__close:after,
.config-popup__close:before {
  content: "";
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  border-radius: 20000px;
}
.config-popup__close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.config-popup__close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.config-popup__radio-box {
  position: relative;
  text-align: left;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  padding-left: 32px;
  height: 20px;
  margin-bottom: 12px;
  cursor: pointer;
}
.config-popup__radio-box:before {
  content: "";
  border: 1px solid #081c30;
  border-radius: 10px;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.config-popup__radio-box:after {
  content: "";
  background: url("../icons/check.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 7.5px;
  left: 6.5px;
  width: 7px;
  height: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.config-popup__radio-box.active:after {
  opacity: 1;
}
.config-popup .button {
  border-radius: 9000px;
  padding: 12px 24px 14px 24px;
  background: #081C30;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 1100px) {
  .config-popup {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .config-popup__container {
    position: static;
  }
  .config-popup__close {
    display: none;
  }
}

.hyphens {
  hyphens: auto;
}

@media (max-width: 511px) {
  .hyphens-sm-down {
    hyphens: auto;
  }
}
