html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

:root {
  --primary1: #642b9f;
  --primary2: #c945f0;
  --primary3: #f3aae5;
  --primary4: #a487f2;
  --primary5: #802ff4;
  --primary6: #bd22ec;
  --yellow1: #fff09d;
  --dark1: #000;
  --light1: #fff;
  --light2: #f3f3f3;
  --light3: #C3C3C3;
  --light4: #c4c4c4;
  --light5: #f8f8f8;
  --light6: #ebebeb;
  --light7: #f5f5f5;
  --light8: #d3d3d3;
  --light9: #b1b1b1;
  --light10: #f2f2f2;
  --light11: #E8E8E8;
  --light12: #efefef;
  --light13: #cdcdcd;
  --grey1: #6e6e6e;
  --grey2: #767676;
  --blue1: #93CBFA;
  --cyan1: #45EDBE;
  --red1: #b81c23;
  --green1: #8fae1b;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-light.woff2") format("woff2"), url("../fonts/montserrat-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-lightitalic.woff2") format("woff2"), url("../fonts/montserrat-lightitalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-regular.woff2") format("woff2"), url("../fonts/montserrat-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-medium.woff2") format("woff2"), url("../fonts/montserrat-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-bold.woff2") format("woff2"), url("../fonts/montserrat-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  line-height: 1.5;
}

.u-no-focus-outline *:focus {
  outline: none;
}

html {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  color: var(--dark1);
  background: var(--light1);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  z-index: 1;
  position: relative;
  flex: 1;
  overflow: hidden;
}

button {
  background: none;
  -webkit-appearance: none;
}

::selection {
  color: var(--light1);
  background: var(--primary1);
}

a {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.25;
}

h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.6rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  font-size: 1.1em;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.2rem;
  }
}

strong,
b {
  font-weight: 500;
}

.btn {
  display: inline-block;
  color: var(--light1);
  padding: 1em 2em;
  border-radius: 3em;
  background: var(--primary6);
  font-weight: 300;
  transition: 0.2s;
  text-align: center;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1;
  text-decoration: none;
}
.btn:hover {
  background: color-mix(in srgb, var(--primary1) 92%, black);
}
.btn:focus {
  background: color-mix(in srgb, var(--primary1) 88%, black);
}
.btn--lower {
  padding: 0.75em 2em;
}
.btn--primary5 {
  background: var(--primary5);
}
.btn--primary5:hover {
  background: color-mix(in srgb, var(--primary5) 92%, black);
}
.btn--primary5:focus {
  background: color-mix(in srgb, var(--primary5) 88%, black);
}

.container, .intro-after, .info-intro__container, .project-change__container, .project-testimonials__container, .project-main, .project-top__content, .story-main, .intro__controlls, .intro__container, .footer__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.container--l {
  max-width: 67rem;
}
.container--m {
  max-width: 57rem;
}
.container--s {
  max-width: 47rem;
}

.wp-text {
  line-height: 1.66;
  font-weight: 300;
}
.wp-text h2, .wp-text h3, .wp-text h4, .wp-text h5, .wp-text h6 {
  padding: 1em 0 0.25em;
}
.wp-text ul {
  list-style: disc;
}
.wp-text p + p {
  margin-top: 1em;
}
.wp-text p + ul {
  margin-bottom: 1em;
}
.wp-text li {
  margin-left: 2em;
}
.wp-text img {
  max-width: 100%;
  height: auto;
}
.wp-text a {
  color: var(--primary1);
}
.wp-text a:hover {
  color: var(--primary2);
}
.wp-text a:focus {
  color: var(--primary5);
}
.wp-text hr {
  margin: 2rem 0;
  border: 0;
  height: 0.25rem;
  width: 100%;
  background-image: linear-gradient(90deg, var(--yellow1), var(--primary3), var(--primary4), var(--primary5));
  display: block;
}

.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--dark1);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: 0.2s;
  background: var(--light1);
}
@supports (backdrop-filter: blur(1.25rem)) {
  .topnav {
    backdrop-filter: blur(1.25rem);
    background: rgb(from var(--light1) r g b/0.6);
  }
}
.topnav__container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  pointer-events: none;
}
.topnav__logo {
  pointer-events: all;
  padding: 0.75rem 1rem;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .topnav__logo {
    padding: 1rem;
  }
  .topnav__logo--lower {
    padding: 0.25rem 1rem;
  }
}
.topnav__logo__img {
  height: 3.5rem;
  width: auto;
  display: block;
  transition: 0.2s;
}
.topnav__menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: none;
  width: 100%;
  height: 100vh;
  padding-top: 7rem;
  gap: 1rem;
  z-index: -1;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  transition: 0.2s;
  pointer-events: all;
}
.topnav__menu--active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
  .topnav__menu {
    position: static;
    flex-direction: row;
    text-align: left;
    margin-left: auto;
    width: unset;
    height: unset;
    padding: 0 1rem 0 0;
    box-shadow: none;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@media (min-width: 1200px) {
  .topnav__menu {
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .topnav__menu__single--submenu:hover .topnav__submenu {
    display: block;
  }
}
.topnav__menu__single--normal {
  font-size: 1.25em;
  color: var(--primary1);
}
@media (min-width: 992px) {
  .topnav__menu__single--normal {
    color: inherit;
    font-size: 1em;
  }
}
.topnav__menu__single--lang {
  order: -1;
  color: var(--grey1);
}
@media (min-width: 992px) {
  .topnav__menu__single--lang {
    color: inherit;
    order: unset;
  }
}
.topnav__menu__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  transition: 0.2s;
  position: relative;
  width: 100%;
  position: relative;
  text-decoration: none;
  font-weight: 300;
  text-align: left;
}
@media (min-width: 992px) {
  .topnav__menu__link {
    text-align: center;
    padding: 0.75rem;
  }
}
.topnav__menu__link:after {
  content: "";
  position: absolute;
  background: var(--primary2);
  width: 0;
  height: 0.0625rem;
  bottom: 1rem;
  left: 0.75rem;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .topnav__menu__link:after {
    bottom: 2rem;
  }
}
.topnav__menu__link--active {
  color: var(--primary1);
}
@media (min-width: 992px) {
  .topnav__menu__link:hover, .topnav__menu__link:focus {
    color: var(--primary1);
  }
  .topnav__menu__link:hover:after, .topnav__menu__link:focus:after {
    width: calc(100% - 1.5rem);
  }
  .topnav__menu__link--active:after {
    background: var(--primary1);
    width: calc(100% - 1.5rem);
  }
  .topnav__menu__link {
    padding: 0 0.75rem;
    width: unset;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .topnav__menu__link--lower:after {
    bottom: 1rem;
  }
}
.topnav__menu__link--btn {
  color: var(--light1);
  text-align: center;
  margin: 4rem 0 1rem;
  max-width: 18em;
}
@media (min-width: 992px) {
  .topnav__menu__link--btn {
    text-align: left;
    margin: 0;
    padding: 0 1.5rem;
  }
}
.topnav__menu__link--btn:before {
  content: "";
  position: absolute;
  background: var(--primary6);
  width: calc(100% - 2rem);
  height: 3.1875rem;
  z-index: -1;
  border-radius: 4rem;
  bottom: unset;
  top: 0;
  left: 1rem;
  transition: 0.2s;
  pointer-events: none;
}
@media (min-width: 992px) {
  .topnav__menu__link--btn:before {
    top: unset;
    left: 0;
    height: 3.125rem;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .topnav__menu__link--btn:hover, .topnav__menu__link--btn:focus {
    color: var(--light1);
  }
  .topnav__menu__link--btn:hover .topnav__menu__btn, .topnav__menu__link--btn:focus .topnav__menu__btn {
    background: var(--primary2);
  }
  .topnav__menu__link--btn:hover:before, .topnav__menu__link--btn:focus:before {
    background: var(--primary2);
  }
}
.topnav__menu__btn {
  background: var(--primary6);
  transition: 0.2s;
}
.topnav__submenu {
  display: block;
  font-weight: 300;
  text-align: left;
}
@media (min-width: 992px) {
  .topnav__submenu {
    display: none;
    position: absolute;
    border-radius: 1rem;
    bottom: 0.5rem;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    border-radius: 1rem;
    bottom: 0.5rem;
    transform: translateY(100%);
    box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1.25rem);
  }
}
.topnav__submenu__link {
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  text-decoration: none;
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  .topnav__submenu__link {
    padding: 1rem 2rem;
  }
}
.topnav__submenu__link::before {
  content: "";
  position: absolute;
  top: 1.375rem;
  left: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: url(../img/pattern/shape-inside-purple.svg) no-repeat center center;
  background-size: contain;
}
@media (min-width: 992px) {
  .topnav__submenu__link::before {
    display: none;
  }
}
.topnav__chevron {
  display: none;
}
@media (min-width: 992px) {
  .topnav__chevron {
    width: 0.75rem;
    height: auto;
    display: block;
    margin-left: 0.5rem;
  }
}
.topnav__trigger {
  border: 0;
  background: none;
  padding: 0.1875rem 1rem 0;
  margin-left: auto;
  cursor: pointer;
  pointer-events: all;
}
@media (min-width: 992px) {
  .topnav__trigger {
    display: none;
  }
}

.menu-icon {
  height: 2rem;
}
.menu-icon__path {
  transition: 0.2s;
}
.menu-icon--active .menu-icon__path {
  stroke: var(--primary2);
}
.menu-icon--active .menu-icon__path--top {
  -webkit-transform: rotate(45deg) translateY(-18.5%) scaleX(1.5);
          transform: rotate(45deg) translateY(-18.5%) scaleX(1.5);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.menu-icon--active .menu-icon__path--center {
  opacity: 0;
}
.menu-icon--active .menu-icon__path--bottom {
  -webkit-transform: rotate(-45deg) translateY(18.5%) scaleX(1.5);
          transform: rotate(-45deg) translateY(18.5%) scaleX(1.5);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.menu-bg {
  pointer-events: none;
  position: fixed;
  z-index: 997;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background: rgba(240, 240, 240, 0.9);
  transition: 0.2s;
}
@supports (backdrop-filter: blur(0.5rem)) {
  .menu-bg {
    backdrop-filter: blur(0.5rem);
    background: rgba(240, 240, 240, 0.9);
  }
}
.menu-bg--active {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .menu-bg {
    display: none;
  }
}

.footer {
  background: var(--primary1);
  color: var(--light1);
  padding-top: 0.25rem;
}
.footer__container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  gap: 1rem;
  font-weight: 300;
  text-align: left;
}
@media (min-width: 768px) {
  .footer__container {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .footer__container {
    gap: 0;
    text-align: left;
    flex-direction: row-reverse;
  }
}
.footer__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .footer__menu {
    display: block;
    gap: 0;
  }
}
.footer__menu__link {
  text-decoration: none;
  padding-left: 1.25em;
  position: relative;
}
@media (min-width: 768px) {
  .footer__menu__link {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .footer__menu__link:hover {
    text-decoration: underline;
  }
}
.footer__menu__link:before {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: -0.25rem;
  background: url(../img/icons/chevron-right.svg?v=1) no-repeat center center;
  height: 1em;
  width: 1em;
}
@media (min-width: 768px) {
  .footer__menu__link:before {
    display: none;
  }
}
.footer__menu__slash {
  display: none;
}
@media (min-width: 768px) {
  .footer__menu__slash {
    display: inline;
    padding: 0 0.25rem;
  }
}
@media (min-width: 992px) {
  .footer__copyright {
    margin-right: auto;
  }
}
.footer__copyright__link {
  text-decoration: none;
}
.footer__copyright__link:hover {
  text-decoration: underline;
}

.error-page {
  text-align: center;
  padding: 9rem 0 5rem;
}
.error-page__title {
  font-size: 2rem;
  color: var(--primary1);
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .error-page__title {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .error-page__info {
    font-size: 1.25rem;
  }
}

.form-short {
  display: flex;
}
.form-short--column {
  flex-direction: column;
}
.form-short__input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5em;
  border-radius: 0;
  border: 0.0625rem solid var(--grey1);
  width: 100%;
  max-width: 18rem;
  transition: 0.2s;
}
.form-short__input:focus {
  border-color: var(--primary1);
}

.page-title {
  padding: 2.5rem 1rem 1rem;
  text-align: center;
  color: var(--primary1);
}
@media (min-width: 992px) {
  .page-title {
    padding: 5rem 1rem 1rem;
  }
}
.page-title--left {
  text-align: left;
}

.page-content {
  font-weight: 300;
}

.normal-page {
  padding: 5rem 0;
}
.normal-page--bg-light5 {
  background: var(--light5);
  position: relative;
}
.normal-page--bg-light5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: var(--light1);
}
@media (min-width: 992px) {
  .normal-page--bg-light5::before {
    height: 5.5rem;
  }
}

.form {
  margin: 2rem 0 3rem;
}
.form__bottom {
  margin-top: 1rem;
}

.form-group {
  position: relative;
  display: block;
  margin-bottom: 2rem;
}
.form-group--last {
  margin-bottom: 0;
}
.form-group__input, .form-group__textarea, .form-group__select {
  width: 100%;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 0.0625rem solid var(--light1);
  color: var(--light1);
  font-size: 1rem;
  font-family: inherit;
  background: none;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  transition: 0.2s;
}
.form-group__input:focus, .form-group__textarea:focus, .form-group__select:focus {
  border-color: var(--primary2);
}
.form-group__input:not(:-ms-input-placeholder) + .form-group__placeholder, .form-group__textarea:not(:-ms-input-placeholder) + .form-group__placeholder, .form-group__select:not(:-ms-input-placeholder) + .form-group__placeholder {
  font-size: 0.75rem;
  font-size: 0.75rem;
  top: -0.75rem;
  left: 0;
}
.form-group__input:focus + .form-group__placeholder, .form-group__textarea:focus + .form-group__placeholder, .form-group__input:required:valid + .form-group__placeholder, .form-group__textarea:required:valid + .form-group__placeholder, .form-group__input:not(:placeholder-shown) + .form-group__placeholder, .form-group__textarea:not(:placeholder-shown) + .form-group__placeholder, .form-group__input:read-only + .form-group__placeholder, .form-group__textarea:read-only + .form-group__placeholder, .form-group__select:focus + .form-group__placeholder, .form-group__select:required:valid + .form-group__placeholder, .form-group__select:not(:placeholder-shown) + .form-group__placeholder, .form-group__select:read-only + .form-group__placeholder {
  font-size: 0.75rem;
  font-size: 0.75rem;
  top: -0.75rem;
  left: 0;
}
.form-group__input:not(:-ms-input-placeholder) + .form-group__placeholder:after, .form-group__textarea:not(:-ms-input-placeholder) + .form-group__placeholder:after, .form-group__select:not(:-ms-input-placeholder) + .form-group__placeholder:after {
  content: ":";
}
.form-group__input:focus + .form-group__placeholder:after, .form-group__textarea:focus + .form-group__placeholder:after, .form-group__input:required:valid + .form-group__placeholder:after, .form-group__textarea:required:valid + .form-group__placeholder:after, .form-group__input:not(:placeholder-shown) + .form-group__placeholder:after, .form-group__textarea:not(:placeholder-shown) + .form-group__placeholder:after, .form-group__input:read-only + .form-group__placeholder:after, .form-group__textarea:read-only + .form-group__placeholder:after, .form-group__select:focus + .form-group__placeholder:after, .form-group__select:required:valid + .form-group__placeholder:after, .form-group__select:not(:placeholder-shown) + .form-group__placeholder:after, .form-group__select:read-only + .form-group__placeholder:after {
  content: ":";
}
.form-group__input:invalid:not(:-ms-input-placeholder):not(:focus), .form-group__textarea:invalid:not(:-ms-input-placeholder):not(:focus), .form-group__select:invalid:not(:-ms-input-placeholder):not(:focus) {
  border-color: var(--red1);
}
.form-group__input--danger, .form-group__input:invalid:not(:placeholder-shown):not(:focus), .form-group__textarea:invalid:not(:placeholder-shown):not(:focus), .form-group__select--danger, .form-group__select:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--red1);
}
.form-group__input::-webkit-input-placeholder, .form-group__textarea::-webkit-input-placeholder, .form-group__select::-webkit-input-placeholder {
  opacity: 0;
}
.form-group__input:-ms-input-placeholder, .form-group__textarea:-ms-input-placeholder, .form-group__select:-ms-input-placeholder {
  opacity: 0;
}
.form-group__input::-ms-input-placeholder, .form-group__textarea::-ms-input-placeholder, .form-group__select::-ms-input-placeholder {
  opacity: 0;
}
.form-group__input::placeholder, .form-group__textarea::placeholder, .form-group__select::placeholder {
  opacity: 0;
}
.form-group__input--no-spin::-webkit-outer-spin-button, .form-group__input--no-spin::-webkit-inner-spin-button, .form-group__select--no-spin::-webkit-outer-spin-button, .form-group__select--no-spin::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-group__input--no-spin[type=number], .form-group__select--no-spin[type=number] {
  -moz-appearance: textfield;
}
.form-group__select {
  color: var(--primary1);
}
.form-group__textarea {
  resize: vertical;
  min-height: 7rem;
}
.form-group__placeholder {
  position: absolute;
  top: 0.5rem;
  left: 0;
  color: var(--light1);
  pointer-events: none;
  transition: 0.2s;
  font-weight: 500;
}

.checkbox-group {
  position: relative;
  padding: 0.375rem 1rem 0.5rem 1.5rem;
  width: 100%;
  display: block;
  color: var(--dark1);
  transition: 0.2s;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.75rem;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-group:hover {
  color: var(--primary1);
}
.checkbox-group:before {
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  border: 0.0625rem solid var(--dark1);
  display: block;
  position: absolute;
  left: 0;
  top: 0.5rem;
  box-sizing: border-box;
}
.checkbox-group--danger:before {
  border-color: var(--red1);
}
.checkbox-group__input {
  display: none;
}
.checkbox-group__input:checked + .checkbox-group__icon {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.checkbox-group__icon {
  height: 0.9375rem;
  display: block;
  position: absolute;
  left: 0.0625rem;
  top: 0.625rem;
  transition: 0.1s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.message {
  padding: 1.5rem;
  margin: 1rem 0;
  background: var(--primary1);
  box-shadow: 0 0.25rem 0.25rem rgb(from var(--primary1) r g b/0.2);
  color: var(--light1);
  position: relative;
  display: flex;
  align-items: center;
}
.message:before {
  content: "";
  background: var(--light1);
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  height: calc(100% - 1rem);
  width: 0.125rem;
}
.message--success:before {
  background: var(--green1);
}
.message--error:before {
  background: var(--red1);
}
.message__icon {
  height: 1.5em;
  margin-right: 1em;
}

.front-page {
  padding-top: 4.5rem;
}
@media (min-width: 992px) {
  .front-page {
    padding-top: 5.5rem;
  }
}

.intro {
  color: var(--light1);
  position: relative;
}
.intro__content {
  position: relative;
}
.intro__content:after {
  content: "";
  position: absolute;
  background: rgb(from var(--dark1) r g b/0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.intro__photo {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__container {
  position: relative;
  z-index: 1;
  height: 140vw;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}
@media (min-width: 460px) {
  .intro__container {
    height: 66vh;
  }
}
.intro__main {
  padding-bottom: 8rem;
}
@media (min-width: 992px) {
  .intro__main {
    width: 60%;
  }
}
.intro__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .intro__title {
    font-size: 2.5rem;
  }
}
.intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.intro__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6875rem 2rem;
  border-radius: 3rem;
  transition: 0.2s;
  border: 0.125rem solid var(--light1);
  text-decoration: none;
}
.intro__btn:hover {
  background: rgb(from var(--light1) r g b/0.2);
}
.intro__btn--full-bg {
  background: var(--primary6);
  border-color: var(--primary6);
  color: var(--light1);
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}
.intro__btn--full-bg:hover {
  background: var(--primary1);
  border-color: var(--primary1);
}
.intro__controlls {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 460px) {
  .intro__controlls {
    bottom: 3rem;
  }
}
.intro__controlls__container {
  width: 100%;
}
@media (min-width: 992px) {
  .intro__controlls__container {
    width: 60%;
  }
}

.controlls {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: space-between;
}
@media (min-width: 460px) {
  .controlls {
    justify-content: unset;
  }
}
.controlls__btns {
  display: flex;
  gap: 1.5rem;
}
.controlls__btn {
  border: 0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  position: relative;
  cursor: pointer;
}
.controlls__btn:before, .controlls__btn:after {
  content: "";
  position: absolute;
  background: rgb(from var(--primary1) r g b/0.2);
  border-radius: 50%;
  transition: 0.2s;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.controlls__btn:before {
  background: var(--light3);
}
.controlls__btn:after {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.controlls__btn:hover path {
  stroke: var(--primary1);
}
.controlls__btn:hover:before {
  opacity: 0;
}
.controlls__btn:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.controlls__btn--light:before {
  background: rgb(from var(--light1) r g b/0.5);
}
.controlls__btn--light:after {
  background: rgb(from var(--primary2) r g b/0.6);
}
.controlls__btn--light:hover path {
  stroke: var(--light1);
}
.controlls__arrow {
  display: block;
  height: 1rem;
  position: relative;
  z-index: 1;
  margin-left: 0.3125rem;
}
.controlls__arrow--left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 0.3125rem 0 0;
}
.controlls__arrow path {
  transition: 0.2s;
}
.controlls__bar {
  display: none;
}
@media (min-width: 460px) {
  .controlls__bar {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
  }
}
.controlls__bar:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--light4);
  top: 50%;
  left: 0;
}
.controlls__bar__single {
  position: relative;
  height: 2.5rem;
  width: 100%;
  cursor: pointer;
}
.controlls__bar__single:after, .controlls__bar__single:before {
  content: "";
  position: absolute;
  z-index: 1;
  background: var(--dark1);
  width: 100%;
  height: 0.1875rem;
  top: calc(50% - 0.0625rem);
  left: 0;
  opacity: 0;
  transition: 0.2s;
}
.controlls__bar__single:before {
  background: var(--primary1);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 2;
  width: 100vw;
  pointer-events: none;
}
.controlls__bar__single--active:after {
  opacity: 1;
}
.controlls__bar__single:hover:after {
  background: var(--primary1);
  opacity: 1;
}
.controlls__bar__single--hover:before {
  opacity: 1;
}
.controlls__bar__single--light:before {
  background: var(--yellow1);
}
.controlls__bar__single--light:after {
  background: var(--light1);
}
.controlls__bar__single--light:hover:after {
  background: var(--yellow1);
}
.controlls__numbers {
  display: flex;
  align-items: center;
}
.controlls__numbers__slash {
  padding: 0 0.5rem;
}
.controlls__numbers__all {
  opacity: 0.55;
}

.home-quote {
  padding: 3.5rem 0 4rem;
  font-size: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media (min-width: 1200px) {
  .home-quote {
    padding: 7.5rem 0 8rem;
  }
}
.home-quote__single {
  max-width: 36ch;
}
.home-quote__author {
  color: var(--grey2);
  font-style: italic;
  text-align: right;
}
.home-quote__underline {
  background-image: linear-gradient(90deg, var(--yellow1), var(--primary3), var(--primary4), var(--primary5));
  background-size: 100% 0.1875rem;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.home-projects {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .home-projects {
    flex-direction: row;
    padding-bottom: 6rem;
  }
}
.home-projects__start {
  padding-bottom: 2rem;
}
@media (min-width: 992px) {
  .home-projects__start {
    width: 18rem;
    padding: 0 3rem 0 0;
  }
}
.home-projects__title {
  font-size: 2rem;
  color: var(--primary1);
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .home-projects__title {
    max-width: 10ch;
    padding-bottom: 2rem;
  }
}
.home-projects__text {
  line-height: 1.66;
  font-weight: 300;
}
@media (min-width: 992px) {
  .home-projects__end {
    width: calc(100% - 18rem);
  }
}

.projects-slider__bottom {
  padding-top: 2rem;
}
@media (min-width: 992px) {
  .projects-slider__bottom {
    padding-top: 3rem;
  }
}

.project-slide__link {
  display: block;
  position: relative;
  text-decoration: none;
  width: calc(100% - 1rem);
  color: var(--light1);
}
@media (min-width: 460px) {
  .project-slide__link {
    width: 20rem;
  }
}
.project-slide__link:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
@media (min-width: 768px) {
  .project-slide__link:before {
    padding-bottom: 165%;
  }
}
.project-slide__link:hover .project-slide__btn {
  background: var(--light1);
  color: var(--primary1);
}
.project-slide__photo {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
  transition: 0.2s;
}
.project-slide__top {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.project-slide__top:before, .project-slide__top:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(from var(--dark1) r g b/0.4);
  border-radius: 1.5rem;
  transition: 0.2s;
  pointer-events: none;
  z-index: -2;
}
.project-slide__top:before {
  background: url(../img/pattern/colors.jpg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 0;
  z-index: -1;
}
.project-slide__number {
  font-size: 1.5rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.project-slide__number__bg {
  width: 4rem;
  display: block;
}
.project-slide__number__value {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-slide__title {
  font-weight: 500;
  font-size: 1.125rem;
  margin: auto 0 1rem;
}
.project-slide__btn {
  background: rgb(from var(--light1) r g b/0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  transition: 0.2s;
}
@supports (backdrop-filter: blur(1.125rem)) {
  .project-slide__btn {
    backdrop-filter: blur(1.125rem);
    background: rgb(from var(--light1) r g b/0.2);
  }
}

.hero {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1rem 1rem;
  display: grid;
  gap: 4rem;
}
@media (min-width: 1200px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 2.5rem 1rem 5rem;
  }
}
@media (min-width: 1200px) {
  .hero__main {
    padding: 5rem 0;
  }
}

.hero-title {
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 2.375rem;
  }
}

.hero-subtitle {
  padding: 1.5rem 0 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-photos {
  display: grid;
  gap: 1rem;
}

.hero-photo {
  position: relative;
}
.hero-photo:nth-child(1) {
  grid-column: 1/7;
  grid-row: 1/3;
  min-height: 65vw;
}
@media (min-width: 768px) {
  .hero-photo:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/6;
    min-height: 50vw;
  }
}
@media (min-width: 992px) {
  .hero-photo:nth-child(1) {
    min-height: 50vw;
  }
}
@media (min-width: 1200px) {
  .hero-photo:nth-child(1) {
    min-height: unset;
  }
}
.hero-photo:nth-child(2) {
  grid-column: 1/5;
  grid-row: 3/6;
  min-height: 40vw;
}
@media (min-width: 768px) {
  .hero-photo:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/4;
    min-height: unset;
  }
}
.hero-photo:nth-child(3) {
  grid-column: 5/7;
  grid-row: 3/6;
}
@media (min-width: 768px) {
  .hero-photo:nth-child(3) {
    grid-column: 2/3;
    grid-row: 4/6;
  }
}
.hero-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}

.front-business-wrapper {
  background: var(--light5);
}

.line-title {
  font-size: 1.5rem;
  color: var(--primary1);
  background-image: linear-gradient(90deg, var(--yellow1), var(--primary3), var(--primary4), var(--primary5));
  background-size: 100% 0.1875rem;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline;
}
@media (min-width: 768px) {
  .line-title {
    font-size: 1.75rem;
  }
}
.line-title--hero {
  font-size: inherit;
  font-weight: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.section-wrapper {
  padding: 5rem 0;
  background: var(--light5);
}
.section-wrapper--bg-light1 {
  background: var(--light1);
}

.info-numbers__list {
  display: grid;
  gap: 1rem 4rem;
  padding: 3rem 0 0;
}
@media (min-width: 768px) {
  .info-numbers__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .info-numbers__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 4rem;
  }
}

.info-number {
  background: var(--light1);
  border-radius: 1.5rem;
  position: relative;
  z-index: 1;
}
.info-number__content {
  position: relative;
  z-index: 1;
  background: var(--light1);
  margin: 0.0625rem;
  padding: 1.5rem 2rem 2rem;
  border-radius: 1.5rem;
}
.info-number__value {
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary5);
}
@media (min-width: 768px) {
  .info-number__value {
    font-size: 3rem;
  }
}
.info-number__label {
  font-weight: 500;
}
@media (min-width: 768px) {
  .info-number__label {
    font-size: 1.125rem;
  }
}

.statistics-text {
  padding-top: 1rem;
}

.front-stories {
  background: var(--light5);
  padding: 0 1rem;
  margin-bottom: -2rem;
}
.front-stories__container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.foundation-main {
  padding-top: 2rem;
  font-weight: 300;
}

.scientis {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1rem 4rem;
}
.scientis__text {
  padding: 2rem 0 3rem;
  max-width: 50.5rem;
}
.scientis__list {
  display: grid;
  gap: 3rem 4rem;
}
@media (min-width: 768px) {
  .scientis__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .scientis__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.scientist__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.scientist__photo__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 1.5rem;
}
.scientist__name {
  color: var(--primary1);
  padding: 1.5rem 0 0.5rem;
  font-size: 1.5rem;
}
.scientist__specialization {
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.scientist__university {
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 1rem;
  color: var(--primary1);
}

.roadmap-list {
  padding: 2rem 0 1rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
  overflow-y: clip;
}
@media (min-width: 992px) {
  .roadmap-list {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    padding: 2rem 0 0;
    margin-top: 0;
  }
}
.roadmap-list::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 3rem;
  left: 1rem;
  width: 0.0625rem;
  height: calc(100% - 3rem);
  background: var(--light3);
}
@media (min-width: 992px) {
  .roadmap-list::before {
    height: 0.0625rem;
    width: 100%;
    left: 0;
  }
}

.roadmap-step {
  position: relative;
  padding: 0 0 2rem 3.5rem;
}
@media (min-width: 992px) {
  .roadmap-step {
    padding: 0 2rem 0 0;
  }
}
.roadmap-step:last-child {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .roadmap-step:last-child {
    padding-right: 0;
  }
}
.roadmap-step::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 4rem;
  height: 2rem;
  background: var(--light1);
  top: 0rem;
  left: -1rem;
}
.roadmap-step__title {
  font-size: 1.25rem;
  padding: 0.375rem 0 0.25rem;
}
@media (min-width: 992px) {
  .roadmap-step__title {
    padding-top: 1rem;
  }
}

.roadmap-step-bullet {
  background: var(--light13);
  color: var(--dark1);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 992px) {
  .roadmap-step-bullet {
    position: relative;
  }
}
.roadmap-step-bullet--done {
  background: var(--primary1);
  color: var(--light1);
  font-weight: 300;
}
.roadmap-step-bullet--current {
  background: var(--primary1);
  color: var(--light1);
}
.roadmap-step-bullet--current::before {
  content: "";
  position: absolute;
  background: var(--primary1);
  z-index: -2;
  width: 0.1875rem;
  height: 100rem;
  bottom: -1.75rem;
  left: 0.9375rem;
}
@media (min-width: 992px) {
  .roadmap-step-bullet--current::before {
    width: 70rem;
    height: 0.1875rem;
    top: 50%;
    right: -5rem;
    left: unset;
  }
}
.roadmap-step-bullet--current::after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgb(from var(--primary1) r g b/0.2);
  top: -0.25rem;
  left: -0.25rem;
  z-index: -1;
}

.people {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5rem;
}

.person {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .person {
    flex-direction: row;
  }
}
.person__photo {
  position: relative;
  width: 11rem;
}
.person__photo__pattern {
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 0.125rem var(--light1), 0 0 0 0.125rem var(--light1);
  width: 100%;
  height: auto;
}
.person__photo__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.person__end {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .person__end {
    max-width: 32rem;
    margin-left: 2rem;
  }
}
.person__title {
  font-size: 1.25rem;
  padding: 0 0 0.5rem;
}
.person__job {
  padding: 0.5rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .person__job {
    text-align: left;
    padding: 1rem 0 1.125rem;
  }
}
.person__description {
  line-height: 1.66;
}

.person-data {
  padding: 0.5rem 0;
  display: flex;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .person-data {
    margin-bottom: 0;
  }
}
.person-data--link {
  transition: 0.2s;
}
@media (min-width: 768px) {
  .person-data--link:hover {
    color: var(--primary1);
  }
}
.person-data__icon {
  margin: 0.125rem 0.625rem 0 0;
}

.contact {
  display: flex;
  flex-direction: column;
  line-height: 2;
  justify-content: space-between;
  gap: 3rem;
  padding: 3rem 0;
  font-weight: 300;
}
@media (min-width: 992px) {
  .contact {
    flex-direction: row;
    margin: 0;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .contact {
    padding: 4rem 0;
  }
}
.contact__title {
  font-size: 2rem;
  color: var(--primary1);
  padding-bottom: 1.25rem;
}
.contact__link {
  text-decoration: none;
  position: relative;
}
.contact__link:after {
  content: "";
  position: absolute;
  background: rgb(from var(--primary1) r g b/0.2);
  border-radius: 2rem;
  transition: 0.2s;
  width: calc(100% + 1.5rem);
  height: calc(100% + 0.5rem);
  top: -0.25rem;
  left: -0.75rem;
  -webkit-transform: scale(0.75, 0);
          transform: scale(0.75, 0);
  opacity: 0;
}
.contact__link:hover {
  color: var(--primary1);
}
.contact__link:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.contact__end {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .contact__end {
    flex-direction: row;
    gap: 8rem;
  }
}
.contact__data__top {
  margin-bottom: 1rem;
}

.socials {
  display: grid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  grid-auto-flow: column;
  margin: 0.625rem 0 0 -1rem;
}
.socials__link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: relative;
}
.socials__link:after {
  content: "";
  position: absolute;
  background: rgb(from var(--primary1) r g b/0.2);
  border-radius: 50%;
  transition: 0.2s;
  width: calc(100% - 0.5rem);
  height: calc(100% - 0.5rem);
  top: 0.25rem;
  left: 0.25rem;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.socials__link:hover:after {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.socials__icon {
  height: 1rem;
}

.map {
  position: relative;
  display: block;
}
.map:after {
  content: "";
  padding-bottom: 20rem;
  display: block;
}
.map:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s;
  pointer-events: none;
  background: url(../img/pattern/colors.jpg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: color;
}
.map:hover .map__img {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.map__img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}

.projects-top {
  padding-top: 3rem;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.5;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
}
.projects-list__single {
  position: relative;
  max-width: 30rem;
  width: 100%;
}
@media (min-width: 992px) {
  .projects-list__single {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1.66fr 3fr;
    max-width: unset;
  }
}
@media (min-width: 1200px) {
  .projects-list__single {
    grid-template-columns: 7rem 1.66fr 3fr;
  }
}
.projects-list__start {
  width: 7rem;
}
.projects-list__number {
  font-size: 1.5rem;
  position: absolute;
  width: 4rem;
  height: 4rem;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
@media (min-width: 1200px) {
  .projects-list__number {
    position: relative;
    -webkit-filter: none;
            filter: none;
  }
}
.projects-list__number__bg {
  width: 4rem;
  display: block;
}
.projects-list__number__value {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary1);
}
.projects-list__photo {
  display: block;
  position: relative;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
@media (min-width: 992px) {
  .projects-list__photo {
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
  }
}
.projects-list__photo:after {
  content: "";
  display: block;
  padding-bottom: 66.666666%;
}
.projects-list__photo:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.2s;
  pointer-events: none;
  background: url(../img/pattern/colors.jpg) no-repeat center center;
  background-size: 100% 100%;
  opacity: 0;
  z-index: 1;
  mix-blend-mode: color;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
@media (min-width: 992px) {
  .projects-list__photo:before {
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
  }
}
.projects-list__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
@media (min-width: 992px) {
  .projects-list__img {
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
  }
}
.projects-list__content {
  background: var(--light5);
  border-top-right-radius: 1.5rem;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
@media (min-width: 460px) {
  .projects-list__content {
    padding: 2rem 4rem;
  }
}
@media (min-width: 992px) {
  .projects-list__content {
    border-bottom-left-radius: 0;
    border-top-right-radius: 1.5rem;
  }
}
.projects-list__title {
  color: var(--primary1);
  text-decoration: none;
  transition: 0.2s;
}
.projects-list__title:hover {
  color: var(--primary2);
}
.projects-list__excerpt {
  font-weight: 300;
  padding: 1.5rem 0 1.25rem;
}
.projects-list__btn {
  background: var(--light6);
  color: var(--primary1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  transition: 0.2s;
  text-decoration: none;
  display: block;
  position: relative;
}
.projects-list__btn:hover {
  color: var(--light1);
  background: var(--primary2);
}

.foundation-page {
  padding-top: 5rem;
}

.foundation-projects-title {
  text-align: center;
  color: var(--primary1);
  padding-top: 5rem;
}

.foundation-history-title {
  color: var(--primary1);
  padding-top: 5rem;
}

.foundation-points {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

.foundation-point {
  display: grid;
  align-items: center;
}
@media (min-width: 768px) {
  .foundation-point {
    grid-auto-flow: column;
    grid-template-columns: 8rem 1fr;
  }
}
.foundation-point__start {
  width: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  justify-self: center;
}
.foundation-point__icon {
  position: absolute;
}
.foundation-point__shape {
  display: block;
  width: 100%;
}
.foundation-point__text {
  font-weight: 300;
  line-height: 1.67;
  max-width: 23rem;
  text-align: center;
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .foundation-point__text {
    max-width: unset;
    text-align: left;
    margin: 0;
    padding-left: 4rem;
  }
}

.grey-wrapper {
  background: var(--light7);
}

.docs {
  padding: 4rem 0 2rem;
}
@media (min-width: 1200px) {
  .docs {
    padding: 6rem 0 4rem;
  }
}
.docs__title {
  color: var(--primary1);
  font-size: 1.25rem;
}
.docs__single {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
  border-bottom: 0.0625rem solid var(--light8);
}
@media (min-width: 768px) {
  .docs__single {
    align-items: center;
    flex-direction: row;
  }
}
.docs__single:last-child {
  border-bottom: 0;
}
.docs__name {
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .docs__name {
    width: calc(100% - 12rem);
    padding: 0 4rem 0 0;
  }
}
.docs__download {
  width: 12rem;
}
.docs__btn {
  background: var(--light1);
  color: var(--primary2);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 3rem;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.04);
  transition: 0.2s;
}
.docs__btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  background: var(--light1);
  z-index: -1;
  transition: 0.2s;
}
.docs__btn:hover {
  color: var(--light1);
  background: var(--primary6);
}
.docs__btn:hover:before {
  background: var(--primary6);
}
.docs__btn:hover .docs__icon {
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
.docs__icon {
  display: block;
  margin-right: 2rem;
  height: 1.5rem;
  transition: 0.2s;
}

.stories-list {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .stories-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .stories-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .stories-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.short-story {
  background: var(--light1);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
}
.short-story__content {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}
.short-story__title {
  color: var(--primary1);
  text-decoration: none;
  transition: 0.2s;
  font-size: 1.25rem;
  font-weight: 500;
}
.short-story__title:hover {
  color: var(--primary2);
}
.short-story__btn {
  background: var(--light6);
  color: var(--primary1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 2rem;
  border-radius: 3rem;
  transition: 0.2s;
  text-decoration: none;
  display: block;
  position: relative;
}
.short-story__btn:hover {
  color: var(--light1);
  background: var(--primary2);
}

.short-story-photo {
  position: relative;
}
.short-story-photo:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.short-story-photo__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.5rem;
}

.story-main {
  padding: 4rem 1rem;
}
@media (min-width: 992px) {
  .story-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto 1fr;
  }
}
@media (min-width: 1200px) {
  .story-main {
    grid-template-columns: 1.45fr 2fr;
  }
}
@media (min-width: 992px) {
  .story-main__start {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.story-main__title {
  color: var(--primary1);
}
.story-main__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .story-main__content {
    grid-column: 2/3;
    grid-row: 1/3;
    padding-left: 4rem;
  }
}
@media (min-width: 1200px) {
  .story-main__content {
    padding-left: 6rem;
  }
}
@media (min-width: 992px) {
  .story-main__help {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.story-main__help-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary1);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .story-main__help-text {
    font-size: 1.5rem;
  }
}
.story-main__help-info {
  width: 100%;
  box-shadow: 0.125rem 0.125rem 1rem rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  background: #F3F0F7;
  padding: 2rem;
  margin: 2rem 0;
}

.masonry-gallery {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  padding-top: 2rem;
}

.masonry-gallery-item {
  display: block;
  padding-bottom: 1rem;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}
.masonry-gallery-item__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}

.support-page {
  padding: 5rem 0 0;
}

.support {
  font-weight: 300;
  padding: 5rem 0 0;
}
.support__title {
  color: var(--primary1);
}
@media (min-width: 992px) {
  .support__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}
.support__single {
  display: grid;
  gap: 1.5rem;
  line-height: 1.67;
  margin: 2rem 0;
  padding: 2rem 0;
  position: relative;
}
.support__single:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.support__single--poland:after {
  background: url(../img/graphics/poland.svg) no-repeat center center;
  background-size: contain;
}
.support__single--abroad:after {
  background: url(../img/graphics/abroad.svg) no-repeat center center;
  background-size: contain;
}

.support-form {
  position: relative;
}
.support-form:after {
  content: "";
  position: absolute;
  top: -2.75rem;
  left: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 3rem);
  background: url(../img/pattern/colors.jpg) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media (min-width: 460px) {
  .support-form:after {
    display: none;
  }
}
.support-form__bg {
  display: none;
}
@media (min-width: 460px) {
  .support-form__bg {
    display: block;
    width: 100%;
    max-width: 30rem;
    margin: 0 auto 4rem;
  }
}
@media (min-width: 992px) {
  .support-form__bg {
    max-width: unset;
    margin: 0;
  }
}
.support-form__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 460px) {
  .support-form__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.support-form__wrapper {
  color: var(--light1);
}
.support-form__content {
  max-width: 20rem;
}
.support-form__title {
  padding-bottom: 2rem;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .support-form__title {
    font-size: 2rem;
  }
}
.support-form__actions {
  padding-top: 1rem;
}
.support-form__btn {
  background: none;
  border: 0;
  position: relative;
  z-index: 1;
  color: var(--primary2);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 5rem;
  margin: 0 auto;
  font-size: 1rem;
  cursor: pointer;
}
.support-form__btn:before {
  content: "";
  position: absolute;
  background: var(--light1);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 4rem;
  bottom: unset;
  top: 0;
  left: 0;
  transition: 0.2s;
  pointer-events: none;
}
.support-form__btn:hover, .support-form__btn:focus {
  color: var(--light1);
}
.support-form__btn:hover:before, .support-form__btn:focus:before {
  background: var(--primary2);
}

.support-info {
  padding: 4rem 0;
}

.know {
  color: var(--primary2);
}
.know__top {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}
.know__icon {
  height: 1.875rem;
  display: blocks;
  margin-right: 0.75rem;
}
.know__title {
  font-weight: 500;
  font-size: 1.25rem;
}
.know__text {
  line-height: 1.66;
  font-weight: 300;
  max-width: 50.5rem;
  padding-bottom: 2rem;
}

.tax-info {
  padding-top: 4rem;
}
.tax-info__title {
  color: var(--primary1);
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .tax-info__title {
    font-size: 2rem;
  }
}
.tax-info__text {
  font-weight: 300;
  padding: 3rem 0 4rem;
  max-width: 39rem;
}
.tax-info__bottom {
  border-top: 0.0625rem solid var(--light9);
  font-weight: 300;
  padding: 4rem 0;
  margin-top: 4rem;
}

.fast-support {
  display: grid;
  width: 100%;
  gap: 1rem;
}
.fast-support--frame {
  width: 100%;
  box-shadow: 0.125rem 0.125rem 1rem rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  background: #F3F0F7;
  padding: 2rem;
}
.fast-support__title {
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
}
.fast-support__buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}
.fast-support__amount-btn {
  color: var(--dark1);
  background: var(--primary4);
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-family: inherit;
  border: 0;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
@media (min-width: 992px) {
  .fast-support__amount-btn:hover {
    color: var(--light1);
    background: var(--primary2);
  }
}
.fast-support__custom {
  display: grid;
  gap: 0.125rem;
}
.fast-support__input {
  color: var(--primary6);
  font-size: 1rem;
  font-family: inherit;
  color: var(--primary1);
  border: 0.125rem solid var(--primary1);
  padding: 0.75rem 1rem;
  margin: 0;
  text-align: center;
  border-radius: 0.375rem;
  -webkit-appearance: none;
          appearance: none;
}
.fast-support__input::-webkit-input-placeholder {
  color: var(--primary6);
}
.fast-support__input:-ms-input-placeholder {
  color: var(--primary6);
}
.fast-support__input::-ms-input-placeholder {
  color: var(--primary6);
}
.fast-support__input::placeholder {
  color: var(--primary6);
}
.fast-support__input:focus {
  border-color: var(--primary6);
}
.fast-support__btn {
  color: var(--light1);
  background: var(--primary1);
  transition: 0.2s;
  border: 0;
  margin: 0;
  padding: 0.875rem 1rem;
  font-weight: 500;
  font-family: inherit;
  font-size: 1rem;
  border-radius: 5rem;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .fast-support__btn:hover {
    color: var(--light1);
    background: var(--primary2);
  }
}

.single-project {
  overflow: unset;
  padding-bottom: 0;
}

.project-top {
  position: relative;
  height: 140vw;
}
@media (min-width: 460px) {
  .project-top {
    height: 66vh;
  }
}
.project-top::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(from var(--dark1) r g b/0.5);
}
.project-top__img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-top__content {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .project-top__content {
    bottom: 4rem;
  }
}
.project-top__title {
  color: var(--light1);
  font-weight: 700;
  max-width: 60rem;
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .project-top__title {
    font-size: 3rem;
  }
}

.project-main {
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .project-main {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.project-main__help {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .project-main__help {
    padding-top: 0;
    width: calc(50% - 2rem);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: sticky;
    top: 8rem;
  }
}
@media (min-width: 992px) {
  .project-main__help {
    width: calc(50% - 6rem);
  }
}
.project-main__help-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary1);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .project-main__help-text {
    font-size: 1.5rem;
  }
}
.project-main__help-info {
  width: 100%;
  box-shadow: 0.125rem 0.125rem 1rem rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  background: #F3F0F7;
  padding: 2rem;
  margin: 2rem 0;
}
.project-main__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 768px) {
  .project-main__content {
    width: calc(50% - 2rem);
  }
}

.project-section__title {
  font-weight: 400;
  margin-bottom: 1em;
}
.project-section__text {
  font-weight: 300;
}
.project-section__photos {
  margin-top: 1.75rem;
}
.project-section__slider {
  padding-bottom: 2rem;
}
.project-section__slider .tns-inner {
  margin: 0 !important;
}

@media (min-width: 460px) {
  .project-photos-slider__single {
    position: relative;
  }
  .project-photos-slider__single:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--light1);
    opacity: 0.8;
    transition: 0.2s;
  }
  .project-photos-slider .tns-slide-active + .tns-slide-active::after {
    opacity: 0;
  }
  .project-photos-slider .tns-slide-active + .tns-slide-active + .tns-slide-active::after {
    opacity: 0.8;
  }
}

.project-photo {
  width: 100%;
  position: relative;
  display: block;
}
.project-photo:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66.666666%;
}
.project-photo__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 0.625rem;
}

.project-testimonials {
  background: var(--light7);
  padding-bottom: 4rem;
}
.project-testimonials__title {
  font-weight: 400;
  padding: 3rem 0;
}
.project-testimonials__list {
  margin-bottom: 2rem;
}

.testimonial__top {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.testimonial__photo {
  position: relative;
  width: 100%;
  max-width: 6rem;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .testimonial__photo {
    max-width: 8rem;
  }
}
.testimonial__pattern {
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 0.125rem var(--light7), 0 0 0 0.125rem var(--light7);
}
.testimonial__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.testimonial__name {
  font-size: 1.5rem;
  font-weight: 400;
}

.project-change {
  color: var(--primary1);
  overflow: hidden;
  font-size: 1.25rem;
  background: var(--light12);
}
@media (min-width: 768px) {
  .project-change {
    font-size: 1.5rem;
  }
}
.project-change__container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .project-change__container {
    padding: 0 1rem;
    text-align: left;
    flex-direction: row;
  }
}
.project-change__link {
  width: 100%;
  text-decoration: none;
  padding: 1rem 0;
  position: relative;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .project-change__link {
    padding: 2rem 0;
    width: 50%;
    display: block;
    text-align: left;
  }
}
.project-change__link:after {
  content: "";
  background: var(--light12);
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: 0.2s;
}
.project-change__link--prev {
  display: none;
}
@media (min-width: 768px) {
  .project-change__link--prev {
    display: block;
  }
}
@media (min-width: 768px) {
  .project-change__link--next {
    text-align: right;
    margin-left: auto;
  }
}
.project-change__link--next:after {
  right: unset;
  left: 0;
}
@media (min-width: 1200px) {
  .project-change__link:hover.project-change__link--prev {
    padding-left: 2rem;
  }
  .project-change__link:hover.project-change__link--next {
    padding-right: 2rem;
  }
  .project-change__link:hover .project-change__icon {
    opacity: 1;
  }
  .project-change__link:hover .project-change__icon--prev {
    left: 0;
  }
  .project-change__link:hover .project-change__icon--next {
    right: 0;
  }
  .project-change__link:hover:after {
    background: var(--light11);
  }
}
.project-change__icon {
  display: block;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .project-change__icon {
    margin-left: 0;
    position: absolute;
    top: 2.5rem;
    height: 1rem;
    opacity: 0;
    transition: 0.2s;
  }
  .project-change__icon--prev {
    left: -2rem;
    -webkit-transform: scaleX(-1);
            transform: scaleX(-1);
  }
  .project-change__icon--next {
    right: -2rem;
  }
}

.project-banner {
  width: 100%;
  box-shadow: 0.125rem 0.125rem 1rem rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  background: #F3F0F7;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2.5rem 3rem;
  margin: 2rem 0;
}
@media (min-width: 992px) {
  .project-banner {
    flex-direction: row;
    gap: 3rem;
  }
}
.project-banner__start {
  display: flex;
  flex-direction: column;
}
.project-banner__icon {
  height: 2rem;
  width: 2rem;
  display: block;
  margin-bottom: 2rem;
}
.project-banner__text {
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 20ch;
  line-height: 1.33;
}
.project-banner__btn {
  border-radius: 3rem;
  padding: 0.8125rem 1.75rem;
  background: var(--primary6);
  color: var(--light1) !important;
  white-space: nowrap;
}
.project-banner__btn:hover {
  background: var(--primary2);
}
.project-banner__end {
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .project-banner__end {
    padding-top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
}

.ua-text {
  font-family: "Open Sans", sans-serif;
}

.cli-style-v2,
.cli-bar-container {
  font-weight: 300 !important;
}

.cli-bar-btn_container {
  gap: 1rem;
  margin-top: 2rem !important;
}
.cli-bar-btn_container a {
  white-space: nowrap;
  border-radius: 3rem;
  padding: 1rem 1.5rem !important;
  margin: 0 !important;
}

.cli-tab-footer .cli-btn {
  white-space: nowrap;
  border-radius: 3rem;
  padding: 1rem 1.5rem !important;
  margin: 0 !important;
}

.info-intro {
  position: relative;
}
.info-intro__img {
  width: 60%;
  height: auto;
  display: block;
  padding: 2rem 0;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .info-intro__img {
    margin: 0;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    padding-left: 6rem;
  }
}
.info-intro__container {
  position: relative;
  z-index: 3;
  padding: 0 1rem 4rem;
}
@media (min-width: 768px) {
  .info-intro__container {
    padding: 7.5rem 1rem;
  }
}
.info-intro__title {
  max-width: 22ch;
  font-weight: 700;
  font-size: 2.5rem;
}
.info-intro__text {
  font-size: 1.75rem;
  padding: 1rem 0 1.5rem;
  font-weight: 300;
}

.intro-after__content {
  background: var(--light5);
  padding: 4rem;
  border-radius: 2rem;
}
.intro-after__text {
  padding: 2rem 0 2.5rem;
}

.pit-how {
  padding: 4rem 0 2.5rem;
}
.pit-how__list {
  padding-top: 2rem;
  display: flex;
  gap: 4rem;
  flex-direction: column;
}
@media (min-width: 992px) {
  .pit-how__list {
    gap: 6rem;
    flex-direction: row;
  }
}
.pit-how__single {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .pit-how__single {
    width: calc(50% - 3rem);
  }
}
.pit-how__bg-text {
  position: absolute;
  font-size: 3.5rem;
  color: var(--primary1);
  font-weight: 700;
  opacity: 0.2;
  top: -2rem;
  left: 0;
}
.pit-how__text {
  padding: 3rem 0 1rem;
  font-weight: 300;
}
.pit-how__number {
  background: var(--light5);
  padding: 1rem 2rem;
  border-radius: 2rem;
  margin-top: 2rem;
}

.contact-bar {
  background: var(--light5);
  padding: 4rem;
  border-radius: 2rem;
  margin: 4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  font-weight: 300;
}
@media (min-width: 1200px) {
  .contact-bar {
    flex-direction: row;
    gap: 0;
  }
}
.contact-bar__col {
  width: 100%;
}
@media (min-width: 992px) {
  .contact-bar__col {
    width: calc(30% - 2rem);
  }
  .contact-bar__col--main {
    width: calc(40% - 2rem);
  }
}
.contact-bar__link {
  text-decoration: none;
  color: var(--primary1);
  display: flex;
  align-items: center;
}
.contact-bar__icon {
  height: 1.5rem;
  display: block;
  margin-right: 1rem;
}

.help-boxes {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-direction: column;
  gap: 3rem;
  font-weight: 300;
}
@media (min-width: 992px) {
  .help-boxes {
    flex-direction: row;
    gap: 0;
  }
}

.help-box {
  width: 100%;
  color: var(--light1);
  border-radius: 2rem;
  text-decoration: none;
  line-height: 1.66;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .help-box {
    width: calc(50% - 2rem);
  }
}
.help-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: var(--primary4);
}
.help-box--different:before {
  background: var(--primary5);
  opacity: 0.5;
}
.help-box__img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.help-box__content {
  position: relative;
  z-index: 2;
  padding: 4rem;
}
.help-box__title {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 1rem;
}

.download-btn {
  background: var(--primary1);
  color: var(--light1) !important;
  display: flex;
  align-items: center;
  text-decoration: none;
  border-radius: 3rem;
  padding: 0.75rem 1rem 0.75rem 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0.125rem 0.625rem 0 rgba(0, 0, 0, 0.04);
  transition: 0.2s;
}
.download-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  background: var(--primary1);
  z-index: -1;
  transition: 0.2s;
}
.download-btn:hover {
  color: var(--light1);
  background: var(--primary6);
}
.download-btn:hover:before {
  background: var(--primary6);
}
.download-btn:hover .docsdocs-btn__icon {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.download-btn__icon {
  display: block;
  margin-right: 1rem;
  height: 1.5rem;
  transition: 0.2s;
  -webkit-filter: brightness(100);
          filter: brightness(100);
}

.partner-organization {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem 2rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .partner-organization {
    flex-direction: row;
  }
}
.partner-organization__title {
  font-size: 1.125rem;
  color: var(--dark1);
}
.partner-organization__img {
  width: 100%;
  max-width: 14rem !important;
  height: auto;
}

.about-section {
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 1.5rem;
  background: var(--light1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .about-section {
    padding: 4rem;
  }
}
.about-section--cols {
  display: grid;
  background: var(--light1);
  gap: 2rem;
  padding: 0;
}
@media (min-width: 768px) {
  .about-section--cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.about-section--front-support {
  display: grid;
  background: var(--light1);
  gap: 2rem;
  padding: 0;
  margin-top: 0;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 992px) {
  .about-section--front-support {
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.about-section--no-top-space {
  margin-top: 0;
}
.about-section__photo {
  position: relative;
  display: block;
}
.about-section__photo__img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  display: block;
}
@media (min-width: 768px) {
  .about-section__photo__img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .about-section__photo--front-support {
    order: 1;
  }
}
.about-section__text {
  padding: 0 2rem 2rem;
}
@media (min-width: 768px) {
  .about-section__text {
    padding: 4rem 4rem 4rem 2rem;
  }
}
@media (min-width: 768px) {
  .about-section__text--front-support {
    padding: 0 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .about-section__text--front-support {
    padding: 4rem 2rem 4rem 4rem;
  }
}
.about-section__content {
  padding-top: 1rem;
}
.about-section__content--bottom-space {
  padding-bottom: 2rem;
}

.about-gallery {
  --columns: 1;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-gallery {
    gap: 2rem;
  }
  .about-gallery:has(:nth-child(2):last-child) {
    --columns: 2;
  }
  .about-gallery:has(:nth-child(3):last-child) {
    --columns: 3;
  }
  .about-gallery:has(:nth-child(4):last-child) {
    --columns: 4;
  }
}

.about-gallery-item__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.cta-banner {
  position: relative;
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background-image: linear-gradient(-45deg, var(--primary4), var(--primary4), var(--primary5));
}
@media (min-width: 992px) {
  .cta-banner {
    padding: 4rem;
  }
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.1;
}
.cta-banner__title {
  color: var(--light1);
  position: relative;
  z-index: 2;
}
.cta-banner__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 2rem;
}
.cta-banner__btn {
  display: block;
  padding: 0.6875rem 2rem;
  border-radius: 3rem;
  transition: 0.2s;
  border: 0.125rem solid;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--light1);
  transition: 0.2s;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  font-weight: 500;
}
.cta-banner__btn:hover {
  color: var(--yellow1);
}
.cta-banner__btn--first {
  background: var(--light1);
  border-color: var(--light1);
  color: var(--primary5);
}
.cta-banner__btn--first:hover {
  background: var(--yellow1);
  border-color: var(--yellow1);
  color: var(--primary5);
}

.business-intro {
  position: relative;
  background: linear-gradient(45deg, var(--primary6), var(--primary1), var(--primary5), var(--primary2));
}
.business-intro__img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.15;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.business-intro__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
@media (min-width: 992px) {
  .business-intro__content {
    padding: 6rem 1rem 9rem;
  }
}
.business-intro__title {
  color: var(--light1);
  font-weight: 600;
  max-width: 35ch;
  text-wrap: balance;
  font-size: 2rem;
}
@media (min-width: 992px) {
  .business-intro__title--h1 {
    font-size: 3rem;
  }
}
.business-intro__text {
  color: var(--light1);
  padding-top: 2rem;
  max-width: 75ch;
}

.business-intro-cards {
  width: 100%;
  max-width: 80rem;
  margin: -2rem auto 0;
  padding: 0 1rem 4rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .business-intro-cards {
    margin-top: -4rem;
  }
}
.business-intro-cards__action {
  padding-top: 4rem;
}

.cards {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--light1);
  border-radius: 1.5rem;
  padding: 2rem;
}
.card__photo {
  margin: -2rem -2rem 1rem;
  width: calc(100% + 4rem);
  height: auto;
  border-radius: 1.5rem;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__icon {
  width: 4rem;
  height: 4rem;
  display: block;
  margin-bottom: 1rem;
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(60%) saturate(4438%) hue-rotate(264deg) brightness(98%) contrast(86%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(60%) saturate(4438%) hue-rotate(264deg) brightness(98%) contrast(86%);
}
.card__title {
  font-size: 1.25rem;
  color: var(--primary1);
  background-image: linear-gradient(90deg, var(--yellow1), var(--primary3), var(--primary4), var(--primary5));
  background-size: 100% 0.125rem;
  background-repeat: no-repeat;
  background-position: left bottom;
  display: inline;
  font-weight: 500;
}
@media (min-width: 768px) {
  .card__title {
    font-size: 1.5rem;
  }
}
.card__text {
  padding-top: 1rem;
}

.business-how {
  margin: 0 auto;
  padding: 1rem 1rem 5rem;
  width: 100%;
  max-width: 80rem;
}
.business-how__title {
  padding: 0 0 2rem;
}
.business-how__text {
  max-width: 80ch;
  padding-bottom: 2rem;
}

.partnership {
  margin: 0 auto;
  padding: 1rem 1rem 0;
  width: 100%;
  max-width: 80rem;
}
.partnership__title {
  padding: 0 0 2rem;
}
.partnership__text {
  max-width: 80ch;
  padding-bottom: 2rem;
}

.business-contact {
  margin: 5rem 0 0;
  padding: 2rem;
  background: var(--light1);
  border-radius: 1.5rem;
}
.business-contact__title {
  color: var(--primary1);
}
.business-contact__text {
  padding: 1rem 0 2rem;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
.modal-backdrop.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1051;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal.show .modal__dialog {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.modal__dialog {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  width: 100%;
  max-width: 32rem;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  position: relative;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.modal__header {
  padding: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}
.modal__body {
  padding: 2rem 1.5rem 1.5rem;
  color: #6c757d;
}

.close-trigger {
  background: none;
  border: none;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
  cursor: pointer;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease-in-out;
}
.close-trigger:hover {
  background-color: #f8f9fa;
}
.close-trigger__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .modal {
    padding: 0.5rem;
  }
  .modal__header {
    padding: 1rem;
    padding-bottom: 0.75rem;
  }
  .modal__title {
    font-size: 1.125rem;
  }
  .modal__body {
    padding: 1.5rem 1rem 1rem;
  }
  .modal__dialog {
    max-height: calc(100vh - 1rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal,
  .modal__dialog,
  .close-trigger {
    transition-duration: 0.01ms;
  }
}
.normal-page .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 100%;
  padding-right: 0;
}

.normal-page .wc-block-components-sidebar {
  padding-left: 0;
  width: 100%;
  order: -1;
}

.normal-page .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  width: 100%;
  background: var(--primary1);
  color: var(--light1);
  border: 0;
  border-radius: 5rem;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.normal-page .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background: var(--primary6);
}

.normal-page .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  box-shadow: 0.125rem 0.125rem 1rem rgba(0, 0, 0, 0.04);
  border-radius: 1rem;
  background: #F3F0F7;
  margin: 2rem 0;
  border: 0;
}
@media (min-width: 768px) {
  .normal-page .wp-block-woocommerce-checkout-order-summary-block {
    margin: 0 0 2rem;
  }
}

.normal-page .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  display: none;
}
@media (min-width: 768px) {
  .normal-page .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    display: block;
  }
}

.normal-page .wc-block-checkout .wc-block-components-checkout-step__heading {
  display: none;
}

.normal-page .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
  border: 0;
}

.normal-page .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
  padding-top: 0;
}

.normal-page .wc-block-components-product-name {
  padding: 0 0 1rem;
  font-size: 1.125rem;
}

.normal-page .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  padding: 0;
}

.normal-page .is-small .wc-block-components-form .wc-block-components-checkout-step:after {
  display: none;
}

.normal-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title,
.normal-page .wc-block-components-order-summary-item__total-price,
.normal-page .wp-block-woocommerce-checkout-order-summary-totals-block,
.normal-page .wc-block-components-totals-wrapper:last-child,
.normal-page .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  display: none;
}

.normal-page .woocommerce ul.order_details {
  margin: 0;
}
.normal-page .woocommerce ul.order_details li {
  border-right: 0;
  float: none;
  padding: 0.75rem 0 0 0;
}
.normal-page .woocommerce .wc-bacs-bank-details-account-name {
  font-weight: 200;
  font-size: 1.25em;
}
.normal-page .wp-text .woocommerce-order-details__title,
.normal-page .wp-text .woocommerce-column__title,
.normal-page .wp-text .wc-bacs-bank-details-heading {
  color: var(--primary5);
  font-weight: 300;
}
.normal-page .woocommerce-table--order-details thead,
.normal-page .woocommerce .woocommerce-order-details .product-quantity {
  display: none;
}
.normal-page .woocommerce table.shop_table,
.normal-page .woocommerce table.shop_table tfoot th,
.normal-page .woocommerce table.shop_table td {
  border: 0;
  display: block;
  padding: 0.5rem 0 0;
  font-weight: 400;
}
.normal-page .woocommerce table.shop_table tfoot th + td {
  padding-top: 0;
}
.normal-page .woocommerce .woocommerce-customer-details address {
  border: 0;
  padding: 0;
}

.woocommerce-notice {
  background: #ffe2fa;
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
.woocommerce-notice--success {
  background: #e0ffe7;
}/*# sourceMappingURL=style.css.map */