@charset "UTF-8";
@import "./fonts/stylesheet.css";
html,
body {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
====================================================================
Global Settings
====================================================================
   ***/
body {
  font-family: "DM Sans", sans-serif;
  color: #0c0c0c;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.03em;
  font-weight: 400;
  background: #fff;
}

a {
  text-decoration: none;
  opacity: 1;
  color: #0c0c0c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}
a:hover {
  opacity: 0.88;
}

ul li {
  list-style: none;
}

.auto__container {
  position: relative;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 40px;
}

h1 {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 700;
  font-size: 77px;
  line-height: 90px;
  letter-spacing: 0.01em;
}
h1.sm {
  font-weight: 600;
  font-size: 64px;
  line-height: 75px;
}
h1.sm span {
  color: #64ccc5;
}

h2 {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 75px;
}

h3 {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 600;
  font-size: 45px;
  line-height: 53px;
}

h4 {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
}

h5 {
  font-family: "Roboto Serif", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
}
h5.big {
  font-weight: 500;
  font-size: 25px;
  line-height: 29px;
}

p.sm {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.03em;
}
p.big {
  font-size: 20px;
  line-height: 32px;
}

.main {
  overflow: hidden;
  padding-top: 90px;
}
.main.sm {
  padding: 0;
}

.anchor {
  position: relative;
  top: -91px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.03em;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 12px 18px;
  border-radius: 23px;
}
.button.primary {
  background: rgba(12, 12, 12, 0.9);
  color: #fbfbfb;
}
.button.primary:hover {
  opacity: 1;
  background-color: #64ccc5;
}
.button.secondary {
  background-color: #fbfbfb;
  color: rgba(12, 12, 12, 0.9);
}
.button.uniq {
  font-size: 20px;
  line-height: 26px;
  padding: 10px 20px 10px 10px;
  background: #fff;
  color: rgba(12, 12, 12, 0.9);
}
.button.uniq:hover {
  opacity: 1;
  background-color: #64ccc5;
  color: #fbfbfb;
}
.button.uniq:hover span {
  background-color: #fbfbfb;
}
.button.uniq:hover span::before {
  border-color: #64ccc5;
}
.button.solid {
  border: 1px solid #fbfbfb;
  color: #fbfbfb;
  background-color: transparent;
}
.button.solid:hover {
  opacity: 1;
  background-color: #64ccc5;
  border-color: #64ccc5;
  color: #fff;
}
.button.app {
  border: 1px solid #0c0c0c;
  color: #0c0c0c;
  background-color: transparent;
  border-radius: 40px;
  padding: 8px 14px;
}
.button.app:hover {
  opacity: 0.8;
}
.button.app span {
  background-color: transparent;
  width: 24px;
  height: 24px;
}
.button.app span::before {
  display: none;
}
.button.app span.sm {
  width: 20px;
}
.button span {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 10px;
  background-color: #0c0c0c;
  border-radius: 50%;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.button span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border-top: 2px solid #fbfbfb;
  border-right: 2px solid #fbfbfb;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input__outer {
  position: relative;
}
.input__outer.error input {
  border-color: #f4857b;
}
.input__outer.error p.sm {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.input__outer p {
  margin-bottom: 8px;
  white-space: nowrap;
}
.input__outer p.sm {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  font-size: 12px;
  line-height: 100%;
  margin: 5px 0 0 0;
  white-space: unset;
  color: #f4857b;
}
.input input,
.input textarea {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.03em;
  color: #0c0c0c;
  border-bottom: 1px solid #DFDFDF;
  padding: 10px 0;
  background-color: transparent;
  width: 100%;
  resize: unset;
}

.check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
.check.error p.sm {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.check__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.check__box {
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 12px;
}
.check__box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.check__box input:checked ~ span {
  border-color: #64ccc5;
}
.check__box input:checked ~ span::before {
  opacity: 1;
}
.check__box span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #757575;
  border-radius: 3px;
}
.check__box span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 37%;
  content: "";
  border-top: 3px solid #64ccc5;
  border-right: 3px solid #64ccc5;
  -webkit-transform: translate(-45%, -70%) rotate(135deg);
          transform: translate(-45%, -70%) rotate(135deg);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.check p {
  width: calc(100% - 32px);
  font-size: 15px;
  line-height: 20px;
  padding-top: 1px;
}
.check p.sm {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  font-size: 12px;
  line-height: 100%;
  margin: 8px 0 0 0;
  white-space: unset;
  color: #f4857b;
  padding-top: 8px;
  border-top: 1px solid #f4857b;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.header.light .button {
  background-color: #fbfbfb;
  color: rgba(12, 12, 12, 0.9);
}
.header.light .nav__inner li a {
  color: #fbfbfb;
}
.header.light .burger::before {
  background-color: #fbfbfb;
}
.header.light .burger::after {
  background-color: #fbfbfb;
}
.header.light .burger span {
  background-color: #fbfbfb;
}
.header.light.sticky .nav__inner li a {
  color: #0c0c0c;
}
.header.light.sticky .burger::before {
  background-color: #0c0c0c;
}
.header.light.sticky .burger::after {
  background-color: #0c0c0c;
}
.header.light.sticky .burger span {
  background-color: #0c0c0c;
}
.header.light.sticky .button {
  background-color: rgba(12, 12, 12, 0.9);
  color: #fbfbfb;
}
.header.light.sticky .button:hover {
  opacity: 1;
  background-color: #64ccc5;
  color: #fff;
}
.header.light.active {
  background-color: #fff;
}
.header.light.active .button {
  background-color: rgba(12, 12, 12, 0.9);
  color: #fbfbfb;
}
.header.light.active .button:hover {
  opacity: 1;
  background-color: #64ccc5;
  color: #fff;
}
.header.light.active .header__inner-logo img.light {
  opacity: 0;
}
.header.light.active .header__inner-logo img.dark {
  opacity: 1;
}
.header.light.active .nav__inner li a {
  color: rgba(12, 12, 12, 0.9);
}
.header.light.active .burger::before {
  background-color: #0c0c0c;
}
.header.light.active .burger::after {
  background-color: #0c0c0c;
}
.header.light.active .burger span {
  background-color: #0c0c0c;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation-name: sticky;
          animation-name: sticky;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-box-shadow: 0px 4px 4px 0px #00000021;
          box-shadow: 0px 4px 4px 0px #00000021;
  background-color: #fff;
}
.header.sticky .header__inner-logo img.light {
  opacity: 0;
}
.header.sticky .header__inner-logo img.dark {
  opacity: 1;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 155px;
  position: relative;
}
.header__inner-logo img {
  width: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__inner-logo img.dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header__inner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner .button {
  color: #fbfbfb;
  background-color: rgba(12, 12, 12, 0.9);
}
.header__inner .button:hover {
  opacity: 1;
  background-color: #64ccc5;
  color: #fff;
}

@-webkit-keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes sticky {
  0% {
    top: -60px;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.nav__inner li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}
.nav__inner li:last-child {
  margin: 0;
}
.nav__inner li > a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: rgba(12, 12, 12, 0.9);
  padding: 32px 5px;
}
.nav__inner li > a:hover {
  color: #64ccc5 !important;
  opacity: 1;
}

.drop:hover > a::after {
  opacity: 1;
}
.drop:hover .dropMenu {
  opacity: 1;
  visibility: visible;
}
.drop > a {
  position: relative;
}
.drop > a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 24px;
  height: 2px;
  content: "";
  background-color: #080808;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 530px;
  padding: 16px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f4f4f4eb;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 12px;
}
.dropMenu__col {
  width: calc(50% - 10px);
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dropMenu h6 {
  padding: 6px 12px;
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #666 !important;
}
.dropMenu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  color: #080808 !important;
}
.dropMenu a:hover {
  opacity: 1;
}
.dropMenu a p {
  font-size: 16px;
  line-height: 24px;
  max-width: calc(100% - 30px);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.dropMenu a p:hover {
  text-decoration: underline;
}
.dropMenu a span {
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 14px;
}
.dropMenu a span img {
  width: 100%;
}

.burger {
  display: none;
}

.footer {
  padding: 100px 0 60px;
  color: #fff;
  background-color: #0c0c0c;
}
.footer .auto__container {
  max-width: 1480px;
}
.footer__inner-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
.footer__inner-logo {
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.footer__inner-logo img {
  width: 100%;
}
.footer__inner-info {
  width: calc(31% - 14px);
  max-width: 357px;
}
.footer__inner-info p {
  color: #fff;
}
.footer__inner-links {
  width: calc(33% - 14px);
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__inner-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer__inner-col h5 {
  margin-bottom: 24px;
}
.footer__inner-col a {
  color: #f4f4f4;
  margin-bottom: 16px;
}
.footer__inner-col a:last-child {
  margin: 0;
}
.footer__inner-col a:hover {
  color: #64ccc5;
  opacity: 1;
}
.footer__inner-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  border-top: 1px solid #f4f4f4;
}
.footer__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 235px);
  max-width: 1010px;
}
.footer__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__inner-social a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0c0c0c;
  background-color: #fbfbfb;
  border-radius: 50%;
  margin-right: 30px;
}
.footer__inner-social a.sm svg {
  width: 30%;
}
.footer__inner-social a:last-child {
  margin: 0;
}
.footer__inner-social a:hover {
  opacity: 1;
  color: #fff;
  background-color: #64ccc5;
}
.footer__inner-social a svg {
  width: 46%;
  height: 46%;
}
.footerForm {
  width: calc(36% - 12px);
  max-width: 433px;
}
.footerForm__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.footerForm__input input {
  width: 100%;
  background: #fff;
  border-radius: 40px;
  padding: 22px 130px 22px 22px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.03em;
  color: #0c0c0c;
}
.footerForm__input input::-webkit-input-placeholder {
  color: rgba(12, 12, 12, 0.9);
}
.footerForm__input input::-moz-placeholder {
  color: rgba(12, 12, 12, 0.9);
}
.footerForm__input input:-ms-input-placeholder {
  color: rgba(12, 12, 12, 0.9);
}
.footerForm__input input::-ms-input-placeholder {
  color: rgba(12, 12, 12, 0.9);
}
.footerForm__input input::placeholder {
  color: rgba(12, 12, 12, 0.9);
}
.footerForm__input button {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footerForm__input button:hover {
  background-color: #64ccc5;
}
.footerForm h5 {
  margin-bottom: 20px;
}
.footerItem {
  color: #f4f4f4;
  margin-right: 20px;
}
.footerItem:last-child {
  margin: 0;
}
.footerItem h5 {
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero {
  background-color: #0c0c0c;
  position: relative;
  padding: 240px 0 120px;
  color: #fbfbfb;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.04;
}
.hero__shape {
  position: absolute;
  top: 192px;
  left: 0;
  width: 183px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateX(-23%);
          transform: translateX(-23%);
}
.hero__shape img {
  width: 100%;
}
.hero__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
.hero__inner-content {
  width: calc(47% - 15px);
  max-width: 608px;
}
.hero__inner-content p {
  margin-bottom: 32px;
  max-width: 557px;
}
.hero__inner h1 {
  margin-bottom: 24px;
}
.heroImage {
  width: calc(53% - 15px);
  max-width: 550px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 10px;
}
.heroImage::before {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 154%;
  height: 154%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(153, 237, 229, 0.2) 0%, rgba(178, 241, 235, 0.159167) 25.52%, rgba(215, 246, 243, 0.0983333) 43.23%, rgba(234, 249, 247, 0.0683333) 82.29%, rgba(251, 251, 251, 0.04) 100%);
  -webkit-box-shadow: 0px 0px 20px 2px #64ccc5;
          box-shadow: 0px 0px 20px 2px #64ccc5;
  -webkit-filter: blur(125px);
          filter: blur(125px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.heroImage__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 118%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.heroImage__circle.big {
  width: 136%;
}
.heroImage__circle img {
  width: 100%;
}
.heroImage__inner {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.heroImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.heroFoot {
  width: 70%;
  max-width: 600px;
}
.heroFoot__title {
  margin-bottom: 16px;
  color: #64ccc5;
}
.heroFoot__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.heroFoot__logo {
  width: calc(22% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}
.heroFoot__logo.big {
  width: 34%;
  margin: 0;
}
.heroFoot__logo img {
  width: 75%;
}

.services {
  padding: 100px 0 60px;
}
.services .auto__container {
  max-width: 1290px;
}
.services__inner-title {
  max-width: 695px;
  margin: 0 auto 40px;
  text-align: center;
}
.services__inner-title h4 {
  color: #64ccc5;
  margin-bottom: 24px;
}
.services__inner-title h2 {
  color: #0c0c0c;
}
.services__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px;
}
.servicesItem {
  width: calc(50% - 50px);
  max-width: 536px;
  margin: 40px 25px;
  background: #f4f4f4;
  border-radius: 20px;
  padding: 45px 36px 34px 45px;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.servicesItem:hover {
  opacity: 1;
  background-color: #0c0c0c;
}
.servicesItem:hover .servicesItem__icon {
  background-color: #fbfbfb;
  color: #0c0c0c;
}
.servicesItem:hover h5 {
  color: #f4f4f4;
}
.servicesItem:hover p {
  color: #f4f4f4;
}
.servicesItem__icon {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fbfbfb;
  background-color: #0c0c0c;
  border-radius: 50%;
  margin-bottom: 60px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.servicesItem__icon svg {
  width: 100%;
  height: 100%;
}
.servicesItem h5 {
  color: #0c0c0c;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  margin-bottom: 15px;
}
.servicesItem p {
  color: rgba(12, 12, 12, 0.9);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.mission {
  background-color: #0c0c0c;
  padding: 100px 0;
}
.mission .auto__container {
  max-width: 1480px;
}
.mission__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mission__inner-image {
  width: calc(56% - 22px);
  max-width: 740px;
  position: relative;
  padding-bottom: 5%;
}
.mission__inner-content {
  width: calc(44% - 22px);
  max-width: 586px;
}
.mission__inner-content > p {
  margin-bottom: 24px;
  color: #f4f4f4;
}
.mission__inner h4 {
  color: #64ccc5;
  margin-bottom: 24px;
}
.mission__inner h2 {
  margin-bottom: 24px;
  color: #fbfbfb;
}
.missionImage {
  width: 88%;
  max-width: 640px;
}
.missionImage:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(8%, 5%);
          transform: translate(8%, 5%);
}
.missionImage:nth-child(2) .missionImage__inner img {
  opacity: 0.5;
}
.missionImage:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(16%, 10%);
          transform: translate(16%, 10%);
}
.missionImage:nth-child(3) .missionImage__inner img {
  opacity: 1;
}
.missionImage__inner {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.missionImage__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.missionImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.2;
}
.missionInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}
.missionInfo__item {
  margin-right: 60px;
}
.missionInfo__item:last-child {
  margin: 0;
}
.missionInfo h3 {
  color: #64ccc5;
  margin-bottom: 10px;
}
.missionInfo p {
  color: #f4f4f4;
}

.process {
  padding: 105px 0;
}
.process__inner-title {
  text-align: center;
  max-width: 676px;
  margin: 0 auto 80px;
}
.process__inner-title h4 {
  margin-bottom: 24px;
  color: #64ccc5;
}
.process__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.processItem {
  position: relative;
  padding: 0 16px 30px 44px;
  max-width: 332px;
  width: calc(25% - 10px);
}
.processItem__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.processItem__bg img {
  width: 100%;
  height: 100%;
}
.processItem__head {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.processItem__icon {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  border-radius: 50%;
  background-color: rgba(12, 12, 12, 0.9);
}
.processItem__icon img {
  width: 100%;
}
.processItem__content {
  padding-right: 60px;
}
.processItem h4 {
  width: calc(100% - 100px);
}
.processItem p {
  max-width: 200px;
}

.reviews {
  padding: 100px 0 110px;
}
.reviews__inner {
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 45px;
}
.reviews__inner-slider {
  position: relative;
  padding-bottom: 64px;
}
.reviewsItem {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.reviewsItem__avatar {
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
}
.reviewsItem__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.reviewsItem__content {
  width: 100%;
  padding: 35px 0;
}
.reviewsItem__content h5 {
  font-weight: 700;
}
.reviewsItem__name h5 {
  margin-bottom: 5px;
}
.reviewsItem__name p {
  color: rgba(12, 12, 12, 0.9);
}
.reviews .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.reviews .slick-slide {
  height: unset !important;
}
.reviews .slick-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: absolute;
  top: unset;
  -webkit-transform: translate(0);
          transform: translate(0);
  bottom: 0;
  z-index: 3;
  border: 1px solid #0c0c0c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.reviews .slick-arrow:hover {
  opacity: 1;
  background-color: #0c0c0c;
}
.reviews .slick-arrow:hover::before {
  border-color: #fbfbfb;
}
.reviews .slick-arrow:focus {
  background-color: #0c0c0c;
}
.reviews .slick-arrow:focus::before {
  border-color: #fbfbfb;
}
.reviews .slick-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid rgba(12, 12, 12, 0.9);
  border-right: 2px solid rgba(12, 12, 12, 0.9);
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
  opacity: 1 !important;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.reviews .slick-next {
  right: unset;
  left: calc(50% + 6px);
}
.reviews .slick-prev {
  left: unset;
  right: calc(50% + 6px);
}
.reviews .slick-prev::before {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}

.faq {
  padding: 100px 0 0;
}
.faq__inner-title {
  margin-bottom: 40px;
}
.faq__inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faqItem {
  width: 100%;
  border-bottom: 2px solid #DFDFDF;
}
.faqItem__head {
  padding: 30px 50px 30px 0;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
}
.faqItem__head.active span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faqItem__head span {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 2;
  width: 18px;
  height: 18px;
  -webkit-transform: translateY(-60%) rotate(-135deg);
          transform: translateY(-60%) rotate(-135deg);
  border-top: 3px solid #0c0c0c;
  border-left: 3px solid #0c0c0c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 0 50px 0 0;
}
.faqItem__body.active {
  opacity: 1;
  max-height: 400px;
  padding: 0 50px 30px 0;
}

.projects.big .auto__container {
  max-width: 1480px;
}
.projects.last {
  padding-bottom: 80px;
}
.projects.last .projects__inner-title {
  margin-bottom: 60px;
}
.projects__inner-title {
  text-align: center;
  margin-bottom: 80px;
}
.projects__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.projects__inner-col {
  width: calc(50% - 15px);
  max-width: 664px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.projects__inner-col.big {
  padding-top: 170px;
}
.projects__inner-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.projects__inner-grid .projectsItem {
  width: calc(50% - 20px);
  max-width: 664px;
}
.projects__inner-recent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -22px;
}
.projects__inner-recent .projectsItem {
  width: calc(33.3% - 44px);
  max-width: 438px;
  margin: 22px !important;
}
.projects__inner-recent .projectsItem__image {
  padding-bottom: 102%;
}
.projectsItem {
  width: 100%;
  margin-bottom: 84px;
}
.projectsItem:hover {
  opacity: 1;
}
.projectsItem:hover span {
  opacity: 1;
}
.projectsItem:hover .projectsItem__image::before {
  opacity: 1;
}
.projectsItem:last-child {
  margin: 0;
}
.projectsItem__image {
  width: 100%;
  padding-bottom: 68%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.projectsItem__image.uniq {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 18, 18, 0.4)), to(rgba(18, 18, 18, 0.4)));
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.4), rgba(18, 18, 18, 0.4));
}
.projectsItem__image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: transparent;
  z-index: 1;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.projectsItem__image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.projectsItem__image span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0c0c0c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}
.projectsItem__image span img {
  width: 40%;
}
.projectsItem h4 {
  margin-bottom: 10px;
}
.projectsItem p {
  color: rgba(12, 12, 12, 0.9);
}

.portfolio {
  padding: 40px 0 100px;
}
.portfolio .auto__container {
  max-width: 1480px;
}
.portfolio__inner {
  background: #0c0c0c;
  border-radius: 20px;
  color: #fff;
  padding: 130px 40px;
  text-align: center;
}

.join {
  padding: 16px 0 100px;
}
.join__inner {
  position: relative;
  padding: 45px 40px 40px;
  border-radius: 20px;
  overflow: hidden;
}
.join__inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}
.join__inner-content h3 {
  color: #fbfbfb;
  margin-bottom: 24px;
}
.join__inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
.join__inner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  opacity: 0.8;
  z-index: 1;
}
.join__inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  opacity: 0.5;
}

.detail {
  padding: 0 0 54px;
}
.detail__inner {
  position: relative;
}
.detail__inner-image {
  position: relative;
  width: 100%;
  padding-bottom: 43%;
  border-radius: 20px;
  overflow: hidden;
}
.detail__inner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detail__inner-row {
  position: absolute;
  bottom: -54px;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 80px);
  max-width: 1058px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.detailItem {
  background: #0c0c0c;
  padding: 20px 30px;
  border-radius: 15px;
  color: #fff;
  margin-right: 10px;
}
.detailItem:last-child {
  margin: 0;
}
.detailItem h5 {
  margin-bottom: 11px;
}

.subject {
  padding: 100px 0;
}
.subject__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subject__inner-article {
  margin-bottom: 80px;
}
.subject__inner-content {
  margin-bottom: 48px;
}
.subject__inner-content:last-child {
  margin: 0;
}
.subject__inner-content h5 {
  margin-bottom: 24px;
  color: #0c0c0c;
}
.subject__inner-content p {
  margin-bottom: 24px;
  color: rgba(12, 12, 12, 0.9);
}
.subject__inner-content p:last-child {
  margin: 0;
}
.subjectItem {
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.3% - 15px);
  max-width: 417px;
}
.subjectItem__inner {
  position: relative;
  width: 100%;
  padding-bottom: 96%;
}
.subjectItem__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  padding: 120px 0 90px;
}
.contact.sm {
  padding-top: 50px;
}
.contact .auto__container {
  max-width: 1480px;
}
.contact__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 35px;
}
.contact__inner-content {
  width: calc(42% - 15px);
  max-width: 576px;
}
.contact__inner-title {
  margin-bottom: 40px;
}
.contact__inner-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.contact__inner-info::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 1px;
  max-width: 400px;
  background-color: #DFDFDF;
  content: "";
}
.contact__inner-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__inner-social a {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 36px;
}
.contact__inner-social a:hover {
  opacity: 1;
  color: #64ccc5;
}
.contact__inner-social a.sm svg {
  width: 60%;
}
.contact__inner-social a:last-child {
  margin: 0;
}
.contact__inner-social a svg {
  width: 100%;
  height: 100%;
}
.contact__inner-map {
  width: 100%;
  padding-bottom: 24%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #DFDFDF;
  min-height: 290px;
}
.contact__inner-map iframe,
.contact__inner-map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.contact__inner h2 {
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px;
}
.contact__inner h2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 75%;
  height: 1px;
  max-width: 400px;
  background-color: #DFDFDF;
  content: "";
}
.contactLink {
  width: 100%;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.contactLink:hover {
  opacity: 1;
  color: #64ccc5;
}
.contactLink:hover .contactLink__icon {
  background-color: #64ccc5;
}
.contactLink:hover h5,
.contactLink:hover p {
  color: #64ccc5;
}
.contactLink:last-child {
  margin: 0;
}
.contactLink__icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
  background-color: #0c0c0c;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contactLink__icon img {
  width: 100%;
}
.contactLink__content {
  width: calc(100% - 75px);
}
.contactLink h5 {
  margin-bottom: 3px;
  color: #0c0c0c;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contactLink p {
  color: rgba(12, 12, 12, 0.9);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contactForm {
  width: calc(58% - 15px);
  max-width: 795px;
  padding: 34px 40px 50px;
  background: #f4f4f4;
  border-radius: 20px;
}
.contactForm__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
.contactForm .input__outer {
  width: calc(50% - 15px);
  max-width: 326px;
  margin-bottom: 50px;
}
.contactForm .input__outer.big {
  width: 100%;
  max-width: unset;
  margin: 0;
}
.contactForm .check {
  margin-bottom: 40px;
}
.contactMessage {
  padding: 34px 24px;
  border-radius: 10px;
  background-color: rgba(83, 180, 134, 0.1);
  color: #53b486;
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid #53b486;
  position: relative;
  display: none;
}
.contactMessage.active {
  display: block;
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}
.contactMessage__close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  cursor: pointer;
}
.contactMessage__close:hover {
  opacity: 0.8;
}
.contactMessage__close::before {
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  border-radius: 2px;
  background-color: #53b486;
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.contactMessage__close::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 60%;
  border-radius: 2px;
  background-color: #53b486;
  content: "";
  position: absolute;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.functions {
  margin-bottom: 40px;
}
.functions:last-child {
  margin: 0;
}
.functions__title {
  margin-bottom: 24px;
}
.functions__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}
.functionsItem {
  width: calc(50% - 20px);
  margin: 10px;
  background-color: #f4f4f4;
  border-radius: 12px;
  padding: 40px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.functionsItem__icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.functionsItem__icon img {
  width: 100%;
}
.functionsItem h5 {
  margin-bottom: 12px;
}

.info {
  padding: 50px 0 90px;
}
.info__inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
.info__inner-row:last-child {
  margin: 0;
}
.infoImage {
  width: calc(62% - 20px);
  max-width: 840px;
  border-radius: 12px;
  overflow: hidden;
}
.infoImage__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.infoImage__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}
.infoContent {
  width: calc(38% - 20px);
  max-width: 440px;
}
.infoContent__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -5px;
}
.infoContent__row .button {
  margin: 5px;
}
.infoContent h4 {
  margin-bottom: 20px;
}
.infoContent p {
  margin-bottom: 32px;
}
.infoContent > .button {
  padding: 12px 24px;
}

.table {
  font-size: 14px;
  line-height: 120%;
  padding-bottom: 80px;
}
.table__inner-content {
  margin-bottom: 30px;
}
.table__inner-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 12px;
}
.table__inner-foot a {
  margin-bottom: 5px;
}
.table__inner-foot a:last-child {
  margin: 0;
}
.table__inner-foot a:hover {
  opacity: 1;
  color: #64ccc5;
}
.tableItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #161616;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 20px;
}
.tableItem:last-child {
  margin: 0;
}
.tableItem__title {
  width: calc(25% - 10px);
  color: #fff;
}
.tableItem__row {
  width: calc(75% - 10px);
  max-width: 840px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tableItem__col {
  width: calc(33.3% - 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.tableItem__col a {
  color: #fff;
  margin-bottom: 5px;
}
.tableItem__col a:last-child {
  margin: 0;
}
.tableItem__col a:hover {
  opacity: 1;
  color: #64ccc5;
}

.impressum {
  padding: 150px 0;
  color: #fff;
  text-align: center;
  background: #0c0c0c;
}

.article {
  padding: 80px 0;
}
.article__inner {
  max-width: 840px;
  margin: 0 auto;
}
.article__inner h2,
.article__inner h3,
.article__inner h4,
.article__inner h5,
.article__inner h6 {
  margin-bottom: 14px;
}
.article__inner h2:last-child,
.article__inner h3:last-child,
.article__inner h4:last-child,
.article__inner h5:last-child,
.article__inner h6:last-child {
  margin: 0;
}
.article__inner p {
  margin-bottom: 12px;
}
.article__inner p:last-child {
  margin: 0;
}
.articleItem {
  margin-bottom: 24px;
}
.articleItem:last-child {
  margin: 0;
}

.intro {
  padding: 150px 0 50px;
}
.intro__inner-title {
  max-width: 800px;
  margin-bottom: 40px;
}
.intro__inner-content {
  max-width: 800px;
  margin: 0 0 0 auto;
}
.intro__inner-content p {
  margin-bottom: 30px;
}
.intro__inner-foot {
  padding-top: 130px;
}
.intro__inner-foot h5 {
  margin-bottom: 16px;
}
.introSlider {
  margin: 0 -10px;
  padding: 20px 0;
  position: relative;
}
.introSlider::before {
  position: absolute;
  top: 0;
  left: -1px;
  width: 80px;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff00));
  background: linear-gradient(90deg, #ffffff 0%, #ffffff00 100%);
  z-index: 3;
}
.introSlider::after {
  position: absolute;
  top: 0;
  right: -1px;
  width: 80px;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#ffffff00), to(#ffffff));
  background: linear-gradient(90deg, #ffffff00 0%, #ffffff 100%);
  z-index: 3;
}
.introSlider__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 0 20px;
}
.introSlider__item img {
  height: 40px;
}
.intro .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.intro .slick-slide {
  height: unset !important;
  margin: 0 10px;
}

.access {
  padding: 80px 0 40px;
}
.access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.access__inner-title {
  width: calc(35% - 15px);
}
.access__inner-title h4 {
  margin-bottom: 30px;
}
.access__inner-content {
  width: calc(65% - 15px);
  max-width: 780px;
}
.access__inner-content p {
  margin-bottom: 20px;
}
.access__inner-content p:last-child {
  margin: 0;
}
.access__inner ul {
  padding-left: 40px;
}
.access__inner ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.access__inner ul li:last-child {
  margin: 0;
}

@media (max-width: 1450px) {
  h1 {
    font-size: 70px;
    line-height: 120%;
  }
  h1.sm {
    font-size: 58px;
    line-height: 120%;
  }

  h2 {
    font-size: 58px;
    line-height: 120%;
  }
}
@media (max-width: 1380px) {
  h1 {
    font-size: 60px;
  }
  h1.sm {
    font-size: 50px;
  }

  h2 {
    font-size: 50px;
  }

  .main {
    padding-top: 80px;
  }

  .header__inner-logo {
    width: 145px;
  }

  .nav__inner li {
    margin-right: 24px;
  }
  .nav__inner li > a {
    font-size: 18px;
    line-height: 24px;
    padding: 28px 5px;
  }

  .hero {
    padding: 180px 0 80px;
  }
  .hero__shape {
    top: 90px;
    width: 150px;
  }
  .heroImage {
    padding: 0;
  }

  .process {
    padding: 90px 0;
  }
  .processItem {
    padding: 0 14px 24px 24px;
  }
  .processItem__bg {
    height: calc(100% - 35px);
  }
  .processItem__content {
    padding-right: 48px;
  }
  .processItem__head {
    margin-bottom: 20px;
  }
  .processItem__icon {
    width: 70px;
    height: 70px;
    margin-right: 12px;
  }
  .processItem h4 {
    width: calc(100% - 82px);
  }

  .intro {
    padding: 100px 0 40px;
  }
}
@media (max-width: 1180px) {
  .auto__container {
    padding: 0 30px;
  }

  h1 {
    font-size: 55px;
  }
  h1.sm {
    font-size: 45px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 40px;
    line-height: 120%;
  }

  h4 {
    font-size: 25px;
    line-height: 120%;
  }

  h5 {
    font-size: 18px;
    line-height: 120%;
  }
  h5.big {
    font-size: 22px;
    line-height: 120%;
  }

  p.sm {
    font-size: 14px;
    line-height: 20px;
  }
  p.big {
    font-size: 16px;
    line-height: 24px;
  }

  body {
    font-size: 16px;
    line-height: 22px;
  }

  .button {
    font-size: 16px;
    line-height: 20px;
  }
  .button.uniq {
    font-size: 18px;
    line-height: 24px;
  }
  .button span {
    width: 24px;
    height: 24px;
  }

  .input__outer p {
    margin-bottom: 4px;
  }

  .hero {
    padding: 160px 0 60px;
  }
  .heroImage__circle {
    width: 112%;
  }
  .heroImage__circle.big {
    width: 124%;
  }

  .services {
    padding: 70px 0 50px;
  }
  .services__inner-title {
    margin-bottom: 30px;
  }
  .services__inner-row {
    margin: 0 -20px;
  }
  .servicesItem {
    margin: 20px;
    width: calc(50% - 40px);
    padding: 35px;
  }
  .servicesItem__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
  }

  .mission {
    padding: 70px 0;
  }

  .process {
    padding: 70px 0;
  }
  .process__inner-title {
    margin-bottom: 60px;
  }
  .process__inner-title h4 {
    margin-bottom: 16px;
  }

  .reviews {
    padding: 70px 0;
  }
  .reviews__inner {
    padding: 40px 30px;
  }

  .footer {
    padding: 70px 0 40px;
  }
  .footer__inner-logo {
    width: 160px;
    margin-bottom: 18px;
  }
  .footer__inner-info {
    font-size: 14px;
    line-height: 20px;
  }
  .footer__inner-main {
    margin-bottom: 60px;
  }
  .footer__inner-col h5 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .footer__inner-col a {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }
  .footer__inner-social a {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .footer__inner-row {
    width: calc(100% - 200px);
    max-width: 800px;
  }
  .footerForm h5 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .footerForm__input input {
    font-size: 16px;
    line-height: 20px;
    padding: 18px 120px 18px 18px;
  }
  .footerForm__input .button {
    padding: 10px 12px;
    right: 8px;
  }
  .footerItem {
    margin-right: 15px;
  }
  .footerItem h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .projects.last {
    padding-bottom: 60px;
  }
  .projects.last .projects__inner-title {
    margin-bottom: 40px;
  }
  .projects__inner-title {
    margin-bottom: 60px;
  }
  .projects__inner-col.big {
    padding-top: 110px;
  }
  .projects__inner-recent {
    margin: 0 -10px;
  }
  .projects__inner-recent .projectsItem {
    width: calc(33.3% - 20px);
    margin: 10px !important;
  }
  .projectsItem {
    margin-bottom: 60px;
  }

  .portfolio {
    padding: 30px 0 70px;
  }
  .portfolio__inner {
    padding: 90px 30px;
  }

  .join {
    padding: 10px 0 70px;
  }

  .detail__inner-row {
    width: calc(100% - 60px);
    max-width: 880px;
  }
  .detailItem {
    padding: 15px 20px;
  }
  .detailItem h5 {
    margin-bottom: 6px;
  }

  .subject {
    padding: 70px 0;
  }
  .subject__inner-article {
    margin-bottom: 60px;
  }
  .subject__inner-content {
    margin-bottom: 35px;
  }

  .info {
    padding: 40px 0 60px;
  }
  .info__inner-row {
    margin-bottom: 60px;
  }

  .intro {
    padding: 70px 0 40px;
  }
  .intro__inner-foot {
    padding-top: 80px;
  }

  .access {
    padding: 60px 0 30px;
  }

  .contact {
    padding: 80px 0 60px;
  }
  .contactLink__icon {
    width: 45px;
    height: 45px;
    margin-right: 16px;
  }
  .contactLink__content {
    width: calc(100% - 56px);
  }
  .contactForm {
    padding: 30px 30px 40px;
  }
  .contactForm__row {
    margin-bottom: 35px;
  }
  .contactForm .input__outer {
    margin-bottom: 35px;
  }

  .faq {
    padding: 70px 0 0;
  }
  .faq__inner-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: 50px;
  }
  h1.sm {
    font-size: 40px;
  }

  h2 {
    font-size: 40px;
  }

  h4 {
    font-size: 20px;
  }

  .main {
    padding-top: 80px;
  }

  .header__inner {
    padding: 18px 0;
  }

  body.active {
    overflow: hidden;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: 9;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .nav.active {
    transform: translate(0, 0);
    -moz-ransform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
  }
  .nav__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    padding: 50px 20px 20px 20px;
    height: 100%;
    max-width: 360px;
    overflow-y: auto;
    background: #fbfbfb;
  }
  .nav__inner li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 0 30px 0;
  }
  .nav__inner li > a {
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
    padding: 5px 12px;
    width: 100%;
  }

  .burger {
    display: block;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    position: relative;
    width: 30px;
    height: 30px;
    margin-left: 24px;
  }
  .burger:hover {
    opacity: 0.8;
  }
  .burger::before {
    top: 18%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #0c0c0c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger span {
    top: 50%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #0c0c0c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-ransform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .burger::after {
    bottom: 18%;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background-color: #0c0c0c;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active span {
    opacity: 0;
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .drop > a::after {
    display: none;
  }
  .dropMenu {
    width: 100%;
    position: static;
    opacity: 0;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    -webkit-transform: translate(0);
            transform: translate(0);
    padding: 0;
  }
  .dropMenu__inner {
    background-color: unset;
    -webkit-backdrop-filter: unset;
            backdrop-filter: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 0;
  }
  .dropMenu__col {
    width: 100%;
    max-width: unset;
    margin-bottom: 16px;
  }
  .dropMenu__col:last-child {
    margin: 0;
  }
  .dropMenu.active {
    opacity: 1;
    max-height: 600px;
  }
  .dropMenu h6 {
    margin-bottom: 5px;
  }

  .processItem {
    padding: 0 14px 20px 20px;
  }
  .processItem__bg {
    height: calc(100% - 30px);
  }
  .processItem__head {
    margin-bottom: 15px;
  }
  .processItem__icon {
    width: 60px;
    height: 60px;
  }
  .processItem h4 {
    width: calc(100% - 72px);
  }

  .faqItem__head {
    padding: 24px 40px 24px 0;
  }
  .faqItem__head span {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
  .faqItem__body {
    padding: 0 40px 0 0;
  }
  .faqItem__body.active {
    padding: 0 40px 20px 0;
  }
}
@media (max-width: 930px) {
  h1 {
    font-size: 45px;
  }
  h1.sm {
    font-size: 35px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 35px;
  }

  h5 {
    font-size: 16px;
  }
  h5.big {
    font-size: 18px;
  }

  .button.app {
    padding: 6px 12px;
  }
  .button.app span {
    width: 20px;
    height: 20px;
  }
  .button.app span.sm {
    width: 18px;
  }

  .hero {
    padding: 130px 0 40px;
  }
  .hero__inner-content {
    width: calc(47% - 8px);
  }
  .hero__inner-content p {
    margin-bottom: 24px;
  }
  .hero__inner h1 {
    margin-bottom: 16px;
  }
  .heroFoot__row {
    margin-left: -10px;
  }

  .services {
    padding: 55px 0 45px;
  }
  .services__inner-title {
    margin-bottom: 24px;
  }
  .services__inner-title h4 {
    margin-bottom: 14px;
  }
  .services__inner-row {
    margin: 0 -12px;
  }
  .servicesItem {
    padding: 26px;
    width: calc(50% - 24px);
    margin: 12px;
  }
  .servicesItem__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }

  .mission {
    padding: 55px 0;
  }
  .mission__inner-content {
    width: calc(45% - 12px);
  }
  .mission__inner-content > p {
    margin-bottom: 14px;
  }
  .mission__inner-image {
    width: calc(55% - 12px);
    padding-bottom: 4%;
  }
  .mission__inner h2 {
    margin-bottom: 14px;
  }
  .mission__inner h4 {
    margin-bottom: 14px;
  }
  .missionInfo {
    margin-bottom: 20px;
  }
  .missionInfo__item {
    margin-right: 30px;
  }
  .missionInfo h3 {
    margin-bottom: 5px;
  }
  .missionImage:nth-child(2) {
    -webkit-transform: translate(7%, 4%);
            transform: translate(7%, 4%);
  }
  .missionImage:nth-child(3) {
    -webkit-transform: translate(14%, 8%);
            transform: translate(14%, 8%);
  }

  .process {
    padding: 50px 0 35px;
  }
  .process__inner-title {
    margin-bottom: 40px;
  }
  .process__inner-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 750px;
    margin: 0 auto;
  }
  .processItem {
    width: calc(50% - 10px);
    margin: 15px 0;
    max-width: 340px;
  }

  .footer {
    padding: 50px 0 30px;
  }
  .footer__inner-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .footer__inner-info {
    width: 100%;
    max-width: unset;
    margin-bottom: 35px;
  }
  .footer__inner-info p {
    max-width: 400px;
  }
  .footer__inner-links {
    width: calc(50% - 15px);
  }
  .footer__inner-copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer__inner-social {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .footer__inner-row {
    width: 100%;
    max-width: unset;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footerForm {
    width: calc(50% - 15px);
  }
  .footerItem {
    margin-right: 40px;
  }

  .projects.last {
    padding-bottom: 40px;
  }
  .projects.last .projects__inner-title {
    margin-bottom: 24px;
  }
  .projects__inner-title {
    margin-bottom: 40px;
  }
  .projects__inner-col {
    width: calc(50% - 10px);
  }
  .projects__inner-col.big {
    padding-top: 80px;
  }
  .projects__inner-grid .projectsItem {
    width: calc(50% - 15px);
  }
  .projectsItem {
    margin-bottom: 40px;
  }

  .portfolio {
    padding: 20px 0 50px;
  }
  .portfolio__inner {
    padding: 70px 30px;
  }

  .join {
    padding: 10px 0 50px;
  }

  .detail {
    padding: 10px 0;
  }
  .detail__inner-image {
    margin-bottom: 20px;
    min-height: 240px;
  }
  .detail__inner-row {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
    margin: 0 -10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% + 20px);
    max-width: unset;
  }
  .detailItem {
    width: calc(50% - 20px);
    margin: 10px !important;
    padding: 20px 30px;
  }

  .subject {
    padding: 30px 0 50px;
  }
  .subject__inner-article {
    margin-bottom: 40px;
  }
  .subject__inner-content {
    margin-bottom: 24px;
  }
  .subject__inner-content h5 {
    margin-bottom: 14px;
  }
  .subject__inner-content p {
    margin-bottom: 18px;
  }

  .info {
    padding: 30px 0 40px;
  }
  .info__inner-row {
    margin-bottom: 40px;
  }
  .infoImage {
    width: calc(60% - 12px);
  }
  .infoContent {
    width: calc(40% - 12px);
  }
  .infoContent h4 {
    margin-bottom: 14px;
    font-size: 20px;
  }
  .infoContent p {
    margin-bottom: 20px;
  }

  .table {
    padding-bottom: 50px;
  }
  .tableItem__title {
    width: calc(20% - 8px);
  }
  .tableItem__row {
    width: calc(80% - 8px);
  }

  .access__inner-title {
    width: calc(32% - 15px);
  }
  .access__inner-title h4 {
    margin-bottom: 20px;
  }
  .access__inner-content {
    width: calc(68% - 15px);
  }

  .contact {
    padding: 60px 0 50px;
  }
  .contact.sm {
    padding-top: 30px;
  }
  .contact__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__inner-content {
    width: 100%;
    margin-bottom: 40px;
  }
  .contact__inner-title {
    margin-bottom: 30px;
  }
  .contact__inner h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  .contactForm {
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 750px) {
  .auto__container {
    padding: 0 20px;
  }

  h1 {
    font-size: 40px;
  }
  h1.sm {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding: 110px 0 30px;
  }
  .hero__shape {
    top: 35%;
    width: 120px;
  }
  .hero__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero__inner-content {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .heroImage {
    width: 85%;
    max-width: 450px;
    margin: 12% 0;
  }
  .heroFoot {
    width: 80%;
  }

  .services__inner-row {
    margin: 0 -8px;
  }
  .servicesItem {
    padding: 20px;
    width: calc(50% - 16px);
    margin: 8px;
  }
  .servicesItem__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .mission__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mission__inner-content {
    width: 100%;
    max-width: unset;
  }
  .mission__inner-content > p {
    margin-bottom: 14px;
  }
  .mission__inner-image {
    width: 100%;
    max-width: unset;
    padding-bottom: 7%;
    margin-bottom: 30px;
  }

  .projects__inner-title {
    margin-bottom: 30px;
  }
  .projects__inner-col.big {
    padding-top: 50px;
  }
  .projects__inner-grid .projectsItem {
    width: calc(50% - 10px);
  }
  .projectsItem {
    margin-bottom: 30px;
  }
  .projectsItem__image span {
    width: 40px;
    height: 40px;
  }

  .reviews {
    padding: 50px 0;
  }
  .reviews__inner {
    padding: 30px 20px;
  }
  .reviewsItem__avatar {
    width: 130px;
    height: 130px;
  }
  .reviewsItem__content {
    padding: 25px 0;
  }

  .footer {
    padding: 40px 0 30px;
  }
  .footer__inner-links {
    width: calc(48% - 10px);
  }
  .footerForm {
    width: calc(52% - 10px);
  }
  .footerItem {
    margin-right: 20px;
  }
  .footerItem h5 {
    margin-bottom: 8px;
  }

  .faq {
    padding: 50px 0 0;
  }
  .faq__inner-title {
    margin-bottom: 20px;
  }
  .faqItem__head {
    padding: 24px 40px 24px 0;
  }
  .faqItem__head h4 {
    line-height: 135%;
  }
  .faqItem__head span {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
  .faqItem__body {
    padding: 0 40px 0 0;
  }
  .faqItem__body.active {
    padding: 0 40px 20px 0;
  }

  .subjectItem {
    width: calc(33.3% - 10px);
  }

  .functions__title {
    margin-bottom: 20px;
  }
  .functions__title h4 {
    font-size: 20px;
  }
  .functions__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .functionsItem {
    width: 100%;
    margin: 0 0 15px 0;
    padding: 30px;
  }
  .functionsItem:last-child {
    margin: 0;
  }

  .info__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .infoImage {
    width: 100%;
    max-width: unset;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 24px;
  }
  .infoContent {
    width: 100%;
    max-width: unset;
  }
  .infoContent h4 {
    margin-bottom: 20px;
  }
  .infoContent p {
    margin-bottom: 22px;
  }

  .table {
    padding-bottom: 40px;
  }
  .tableItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 14px;
  }
  .tableItem__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .tableItem__row {
    width: 100%;
    max-width: unset;
  }

  .impressum {
    padding: 100px 0;
  }

  .article {
    padding: 60px 0;
  }

  .intro {
    padding: 50px 0 20px;
  }
  .intro__inner-title {
    margin-bottom: 24px;
  }
  .intro__inner-foot {
    padding-top: 35px;
  }
  .intro__inner-content p {
    margin-bottom: 20px;
  }
  .introSlider {
    padding: 12px 0;
  }
  .introSlider::before {
    width: 50px;
  }
  .introSlider::after {
    width: 50px;
  }
  .introSlider__item {
    padding: 0 8px;
  }
  .introSlider__item img {
    height: 35px;
  }

  .access {
    padding: 40px 0 30px;
  }
  .access__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 60px;
    position: relative;
  }
  .access__inner-title {
    width: 100%;
    max-width: unset;
    margin-bottom: 24px;
  }
  .access__inner-title h4 {
    margin: 0;
  }
  .access__inner-content {
    width: 100%;
    max-width: unset;
  }
  .access__inner .button {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .access__inner ul {
    padding-left: 30px;
  }
}
@media (max-width: 650px) {
  .services {
    padding: 40px 0;
  }
  .services__inner-title {
    margin-bottom: 30px;
  }
  .services__inner-title h4 {
    margin-bottom: 10px;
  }
  .services__inner-row {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .servicesItem {
    padding: 30px;
    width: 100%;
    max-width: unset;
    margin: 0 0 24px 0;
  }
  .servicesItem:last-child {
    margin: 0;
  }

  .mission {
    padding: 40px 0;
  }

  .footer__inner-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .footer__inner-logo {
    width: 140px;
  }
  .footer__inner-links {
    width: 100%;
    max-width: 340px;
    margin-bottom: 30px;
  }
  .footer__inner-copy {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .footerForm {
    width: 100%;
    max-width: unset;
  }
  .footerItem {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .projects.last {
    padding-bottom: 40px;
  }
  .projects.last .projects__inner-title {
    margin-bottom: 24px;
  }
  .projects__inner-title {
    margin-bottom: 30px;
  }
  .projects__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projects__inner-col {
    width: 100%;
    max-width: unset;
    margin-bottom: 30px;
  }
  .projects__inner-col:last-child {
    margin: 0;
  }
  .projects__inner-col.big {
    padding-top: 0;
  }
  .projects__inner-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projects__inner-grid .projectsItem {
    width: 100%;
    max-width: unset;
  }
  .projects__inner-recent {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .projects__inner-recent .projectsItem {
    width: 100%;
    max-width: unset;
    margin: 0 0 24px 0 !important;
  }
  .projects__inner-recent .projectsItem:last-child {
    margin: 0 !important;
  }
  .projectsItem {
    margin-bottom: 26px;
  }
  .projectsItem h4 {
    margin-bottom: 6px;
  }

  .portfolio {
    padding: 20px 0 40px;
  }
  .portfolio__inner {
    padding: 60px 20px;
    border-radius: 15px;
  }

  .join {
    padding: 40px 0;
  }
  .join__inner {
    padding: 35px 20px;
  }

  .subject {
    padding: 20px 0 40px;
  }
  .subject__inner-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .subject__inner-article {
    margin-bottom: 30px;
  }
  .subject__inner-content h5 {
    margin-bottom: 10px;
  }
  .subjectItem {
    width: 100%;
    max-width: unset;
    margin: 0 0 24px 0;
    border-radius: 15px;
  }
  .subjectItem:last-child {
    margin: 0;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 35px;
  }
  h1.sm {
    font-size: 25px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 18px;
  }

  body {
    font-size: 14px;
    line-height: 20px;
  }

  .button {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 12px;
  }
  .button.uniq {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 16px 8px 8px;
  }
  .button span {
    width: 22px;
    height: 22px;
  }
  .button span::before {
    width: 7px;
    height: 7px;
  }

  .input__outer p {
    margin-bottom: 2px;
  }
  .input__outer p.sm {
    font-size: 11px;
    margin-top: 3px;
  }
  .input input,
.input textarea {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 0 8px;
  }

  .check__box {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  .check p {
    width: calc(100% - 26px);
    font-size: 12px;
    line-height: 18px;
  }
  .check p.sm {
    font-size: 11px;
    padding-top: 4px;
    margin-top: 4px;
  }

  .main {
    padding-top: 66.95px;
  }

  .header__inner-logo {
    width: 120px;
  }
  .header__inner-buttons .button {
    display: none;
  }

  .nav {
    top: 66.95px;
    left: 0;
    width: 100%;
    height: calc(100% - 66.95px);
  }

  .hero {
    padding: 95px 0 24px;
  }
  .hero__shape {
    top: 42%;
    width: 100px;
  }
  .heroFoot {
    width: 100%;
  }
  .heroFoot__row {
    margin-left: -6px;
  }
  .heroFoot__logo {
    width: 24%;
    margin: 0;
  }

  .servicesItem {
    padding: 20px;
    border-radius: 15px;
  }

  .process {
    padding: 40px 0;
  }
  .process__inner-title {
    margin-bottom: 30px;
  }
  .processItem {
    width: 100%;
    margin: 0 0 24px 0;
    max-width: unset;
    padding: 24px;
    border: 3px solid #f4f4f4;
    border-radius: 20px;
    position: relative;
  }
  .processItem::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 18px;
    height: 18px;
    content: "";
    -webkit-transform: translate(-50%, -40%) rotate(135deg);
            transform: translate(-50%, -40%) rotate(135deg);
    border-right: 3px solid #f4f4f4;
    border-top: 3px solid #f4f4f4;
    background-color: #fff;
  }
  .processItem:last-child {
    margin: 0;
  }
  .processItem:last-child::before {
    display: none;
  }
  .processItem__bg {
    display: none;
  }
  .processItem__content {
    padding: 0;
  }
  .processItem p {
    display: block;
    max-width: 300px;
    width: 100%;
  }

  .reviews {
    padding: 40px 0;
  }
  .reviewsItem__content {
    padding: 22px 0;
  }

  .faq {
    padding: 40px 0 0;
  }
  .faq__inner-title {
    margin-bottom: 10px;
  }
  .faqItem__head {
    padding: 15px 30px 15px 0;
  }
  .faqItem__head span {
    width: 12px;
    height: 12px;
    right: 10px;
  }
  .faqItem__head h4 {
    font-size: 16px;
    line-height: 140%;
  }
  .faqItem__body {
    padding: 0 30px 0 0;
  }
  .faqItem__body.active {
    padding: 0 30px 15px 0;
  }

  .join__inner {
    padding: 24px 20px;
    border-radius: 14px;
  }
  .join__inner h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .detail__inner-image {
    margin-bottom: 14px;
    border-radius: 15px;
  }
  .detail__inner-row {
    margin: 0 -5px;
    width: calc(100% + 10px);
  }
  .detailItem {
    margin: 5px !important;
    width: calc(50% - 10px);
    padding: 15px 20px;
    border-radius: 12px;
  }
  .detailItem:nth-child(even) {
    width: calc(100% - 10px);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .functionsItem {
    padding: 20px;
  }

  .info {
    padding: 20px 0 40px;
  }
  .info__inner-row {
    margin-bottom: 30px;
  }
  .infoContent {
    width: 100%;
    max-width: unset;
  }
  .infoContent h4 {
    margin-bottom: 14px;
  }
  .infoContent p {
    margin-bottom: 16px;
  }

  .table {
    font-size: 16px;
  }
  .table__inner-content {
    margin-bottom: 24px;
  }
  .tableItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
  .tableItem__title {
    width: 100%;
    margin-bottom: 20px;
  }
  .tableItem__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tableItem__col {
    width: 100%;
    margin-bottom: 14px;
  }
  .tableItem__col:last-child {
    margin: 0;
  }

  .article {
    padding: 40px 0;
  }

  .intro {
    padding: 35px 0 20px;
  }

  .contact {
    padding: 50px 0 40px;
  }
  .contact__inner-row {
    margin-bottom: 24px;
  }
  .contact__inner-map {
    border-radius: 15px;
  }
  .contact__inner-info::before {
    width: 100%;
  }
  .contact__inner h2::before {
    width: 100%;
  }
  .contactForm {
    padding: 25px 20px;
    border-radius: 15px;
  }
  .contactForm__row {
    margin-bottom: 30px;
  }
  .contactForm .input__outer {
    margin-bottom: 30px;
    width: 100%;
    max-width: unset;
  }
  .contactForm .check {
    margin-bottom: 35px;
  }
  .contactMessage {
    padding: 28px 20px;
    margin-bottom: 20px;
  }
  .contactMessage__close {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 440px) {
  h1 {
    font-size: 30px;
  }
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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