* {
  font-family: 'Cera Pro';
  font-size: 16px; }

h1,
h2,
h3 {
  font-family: 'Montserrat'; }

h2 {
  font-size: 44px; }

body {
  padding: 0;
  margin: 0;
  --lsd-duration: 30s; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth; }

@keyframes lsd {
  from {
    filter: hue-rotate(0deg); }
  to {
    filter: hue-rotate(360deg); } }

header {
  width: 100vw;
  overflow-x: hidden;
  height: calc(50vh - 60px); }
  header .background {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    object-fit: cover; }
  header .header-content {
    position: absolute;
    color: #000;
    width: 100vw;
    height: 44vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    header .header-content .logo-old {
      width: 300px;
      margin-bottom: 40px; }

@keyframes spin {
  0% {
    transform: rotate(10deg); }
  50% {
    transform: rotate(-30deg); }
  100% {
    transform: rotate(10deg); } }
    header .header-content .logo {
      font-size: 56px;
      animation-name: spin;
      animation-duration: 4000ms;
      animation-iteration-count: infinite;
      animation-timing-function: ease-in-out; }
    header .header-content h1 {
      margin-top: 0;
      font-size: 48px; }
    header .header-content .description {
      width: 500px;
      font-weight: 600; }
    header .header-content .buttons {
      margin-top: 30px; }
      header .header-content .buttons a {
        color: #000;
        text-decoration: none;
        margin: 10px;
        border: 1px solid #000;
        padding: 10px;
        border-radius: 3px; }
        header .header-content .buttons a i {
          margin-right: 2px; }
        header .header-content .buttons a:hover {
          cursor: pointer;
          background: #fff;
          color: #000; }

.panel {
  z-index: 100;
  position: sticky;
  position: -webkit-sticky;
  overflow-x: hidden;
  width: 100vw;
  height: 60px;
  top: 0;
  display: flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --bg: #fff;
  --fg: #000; }
  @media (max-width: 1779px) {
    .panel {
      background: var(--bg);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important; } }
  .panel .lang-changer {
    display: flex;
    margin-left: 40px; }
    .panel .lang-changer button {
      border: none;
      outline: none;
      cursor: pointer;
      font-weight: 800;
      background: none;
      color: var(--fg);
      margin-right: 20px;
      padding-left: 0;
      padding-right: 0;
      border-bottom: 2px solid rgba(255, 255, 255, 0); }
      .panel .lang-changer button.selected {
        color: var(--fg);
        border-bottom: 2px solid var(--fg); }
  .panel .contacts {
    display: flex;
    font-weight: 600;
    color: var(--fg); }
    .panel .contacts a {
      margin-right: 40px; }
      .panel .contacts a i {
        margin-right: 5px; }

section.intro {
  background: #fff;
  position: relative;
  width: 100vw;
  box-sizing: border-box;
  padding: 10vw calc(50vw - 400px); }

section.services {
  position: relative;
  background: #fff;
  padding: 10vw calc(50vw - 400px);
  box-sizing: border-box;
  width: 100vw;
  --offset: 200px; }

@keyframes in-wavy {
  0% {
    transform: scaleY(1.15); }
  50% {
    transform: scaleY(0.85); }
  100% {
    transform: scaleY(1.15); } }
  section.services .in-container {
    position: absolute;
    left: 0;
    top: calc(var(--offset) - 230px);
    height: 230px;
    width: 100vw; }
    section.services .in-container svg.in {
      transform-origin: bottom;
      animation: in-wavy 12s ease-in-out infinite;
      position: absolute;
      width: 100vw;
      left: 0;
      height: 200px;
      bottom: 0;
      mix-blend-mode: difference; }
      section.services .in-container svg.in.in-1 {
        animation-delay: 0s; }
        section.services .in-container svg.in.in-1 path {
          fill: rgba(255, 0, 0, 0.2) !important; }
      section.services .in-container svg.in.in-2 {
        animation-delay: -4s; }
        section.services .in-container svg.in.in-2 path {
          fill: rgba(0, 255, 0, 0.2) !important; }
      section.services .in-container svg.in.in-3 {
        animation-delay: -8s; }
        section.services .in-container svg.in.in-3 path {
          fill: rgba(0, 0, 255, 0.2) !important; }
  section.services .in-out-1 {
    position: absolute;
    width: 100vw;
    height: 60px;
    top: calc(var(--offset) - 60px);
    left: 0;
    background: linear-gradient(to bottom, #cbc9cd00, #cbc9cdff); }
  section.services .in-out-2 {
    position: absolute;
    width: 100vw;
    height: 500px;
    top: var(--offset);
    left: 0;
    background: linear-gradient(to bottom, #cbc9cdff, #fff); }
  section.services h2 {
    position: relative;
    z-index: 2;
    margin-top: 200px; }
  section.services .list {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    section.services .list .item {
      width: 150px;
      height: 150px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 40px;
      border-radius: 10px;
      transition: transform 0.3s ease;
      transform: translate(0, 0);
      position: relative;
      text-decoration: none;
      color: #000; }
      section.services .list .item .bg {
        animation: lsd var(--lsd-duration) linear infinite;
        transform: rotate(-10deg);
        filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0));
        position: absolute;
        left: -15px;
        top: -15px;
        width: 200px;
        height: 200px; }
        section.services .list .item .bg svg {
          transition: filter 0.3s ease, transform 0.3s ease;
          width: 100%;
          height: 100%; }
          section.services .list .item .bg svg path {
            fill: #ff6666 !important;
            transition: opacity 0.3s ease; }
        section.services .list .item .bg path {
          opacity: 0; }
      section.services .list .item:hover {
        color: #fff;
        font-weight: 600;
        transform: translate(0, -5px);
        cursor: pointer;
        z-index: 1; }
        section.services .list .item:hover .bg svg {
          transform: rotate(10deg);
          filter: drop-shadow(2px 5px 15px rgba(0, 0, 0, 0.2)); }
          section.services .list .item:hover .bg svg path {
            opacity: 1; }
      section.services .list .item img {
        width: 64px;
        height: 64px;
        position: relative; }
      section.services .list .item span {
        margin-top: 5px;
        text-align: center;
        position: relative; }

section.service {
  padding: 30px calc(50vw - 400px);
  margin-top: -40px;
  background: #fff;
  display: flex;
  position: relative; }
  section.service:nth-child(odd) .column.info {
    order: 2; }
  section.service:nth-child(odd) .column.blot {
    order: 1; }
  section.service .column {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px; }
    section.service .column.info {
      flex: 2;
      position: relative;
      z-index: 2; }
      section.service .column.info h3 {
        font-size: 24px; }
      section.service .column.info br {
        height: 8px;
        display: block;
        content: ' '; }
    section.service .column.blot {
      z-index: 1;
      flex: 1; }

@keyframes wobrotate {
  0% {
    transform: rotate(-30deg);
    filter: hue-rotate(0deg); }
  50% {
    transform: rotate(30deg);
    filter: hue-rotate(360deg); }
  100% {
    transform: rotate(-30deg);
    filter: hue-rotate(360deg); } }
      section.service .column.blot svg {
        position: absolute;
        animation: wobrotate var(--lsd-duration) ease-in-out infinite;
        animation-delay: calc(-5s - 2s * var(--index));
        width: 140%;
        margin-left: -20%;
        margin-right: -20%; }
        section.service .column.blot svg path {
          fill: hsl(calc(200deg * var(--index)), 80%, 90%) !important; }
      section.service .column.blot .changeicons {
        position: absolute;
        z-index: 3;
        width: 100%;
        text-align: center; }
        section.service .column.blot .changeicons i {
          display: none;
          opacity: 0;
          color: #fff;
          margin: 0;
          font-size: 96px;
          transition: opacity 0.3s ease; }

section.payment {
  position: relative;
  display: flex;
  width: 100vw;
  flex-wrap: wrap;
  box-sizing: border-box;
  overflow-x: hidden;
  background: #fff;
  padding: 10vw calc(50vw - 400px);
  --space: 100px; }
  section.payment svg {
    animation: lsd var(--lsd-duration) linear infinite;
    margin-left: -110px;
    width: 1104px;
    height: 635px;
    position: absolute;
    z-index: 1; }
  section.payment .column {
    z-index: 2;
    position: relative;
    margin: 0; }
    section.payment .column.col1 {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding-right: var(--space); }
      section.payment .column.col1 h2 {
        margin: 0; }
    section.payment .column.col2 {
      width: 372px; }
    section.payment .column.col3 {
      margin-top: var(--space);
      flex: 1;
      justify-content: flex-end;
      padding-right: var(--space); }
      section.payment .column.col3 img {
        width: 300px;
        float: right; }
    section.payment .column.col4 {
      width: 372px;
      margin-top: calc(var(--space) / 2); }
  section.payment h2 {
    margin-top: 0; }
  section.payment .cards {
    margin-top: 20px; }
    section.payment .cards i {
      font-size: 42px; }
  section.payment .contacts {
    margin-top: 20px; }
    section.payment .contacts .contact {
      margin-top: 10px;
      display: block; }
      section.payment .contacts .contact i {
        margin-right: 5px; }
  section.payment .field {
    background: #fff;
    margin-bottom: 10px;
    width: 350px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 10px; }
    section.payment .field button {
      float: none;
      padding: 0 5px;
      border: none;
      color: #ddd;
      border-radius: 0;
      background: #fff;
      font-size: 20px; }
      section.payment .field button:hover {
        background: #fff;
        color: #555; }
      section.payment .field button.selected {
        background: #fff;
        color: #000 !important; }
    section.payment .field i {
      margin-right: 5px; }
    section.payment .field.described {
      margin-bottom: 60px; }
    section.payment .field.area {
      align-items: flex-start;
      flex-direction: column; }
      section.payment .field.area textarea {
        border: none;
        outline: none;
        width: 100%;
        height: 300px;
        resize: none;
        padding: 0;
        margin-top: 10px; }
    section.payment .field label {
      white-space: nowrap; }
      section.payment .field label::after {
        content: ': ';
        margin-right: 10px; }
    section.payment .field input {
      width: 30px;
      border: none;
      outline: none;
      flex: 1; }
    section.payment .field .description {
      position: absolute;
      top: 50px;
      font-size: 13px;
      font-style: italic;
      margin-top: 5px;
      opacity: 0.4; }
  section.payment #error-box {
    color: #d32;
    margin-top: -10px;
    margin-bottom: 20px; }
    section.payment #error-box.invisible {
      display: none;
      padding: 0;
      margin: 0; }
  section.payment #send-feedback-sent {
    float: right; }
    section.payment #send-feedback-sent.hidden {
      display: none; }
  section.payment button {
    float: right;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background: #fff;
    padding: 10px;
    outline: none; }
    section.payment button.hidden {
      display: none; }
    section.payment button:hover {
      cursor: pointer;
      background: #000;
      border-color: #000;
      color: #fff; }

section.contacts {
  position: relative;
  display: flex;
  width: 100vw;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
  overflow-x: hidden;
  background: #fff;
  padding: 10vw calc(50vw - 400px);
  --space: 20px; }
  section.contacts svg {
    animation: lsd var(--lsd-duration) linear infinite;
    margin-top: -250px;
    margin-left: -300px;
    width: 1200px;
    height: 900px;
    position: absolute;
    z-index: 1;
    opacity: 0.5; }
  section.contacts .column {
    z-index: 2;
    position: relative;
    margin: 0; }
    section.contacts .column.col1 {
      width: 408px;
      padding-right: var(--space); }
      section.contacts .column.col1 h2 {
        margin: 0; }
      section.contacts .column.col1 .description {
        margin-top: 50px; }
    section.contacts .column.col2 {
      flex: 1; }
  section.contacts h2 {
    margin-top: 0; }
  section.contacts .cards {
    margin-top: 20px; }
    section.contacts .cards i {
      font-size: 42px; }
  section.contacts .contacts {
    margin-top: 20px; }
    section.contacts .contacts .contact {
      margin-top: 10px;
      display: block; }
      section.contacts .contacts .contact i {
        margin-right: 5px; }
  section.contacts .field {
    background: #fff;
    margin-bottom: 10px;
    width: 350px;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 10px; }
    section.contacts .field button {
      float: none;
      padding: 0 5px;
      border: none;
      color: #ddd;
      border-radius: 0;
      background: #fff;
      font-size: 20px; }
      section.contacts .field button:hover {
        background: #fff;
        color: #555; }
      section.contacts .field button.selected {
        background: #fff;
        color: #000 !important; }
    section.contacts .field i {
      margin-right: 5px; }
    section.contacts .field.described {
      margin-bottom: 60px; }
    section.contacts .field.area {
      align-items: flex-start;
      flex-direction: column; }
      section.contacts .field.area textarea {
        border: none;
        outline: none;
        width: 100%;
        height: 300px;
        resize: none;
        padding: 0;
        margin-top: 10px; }
    section.contacts .field label {
      white-space: nowrap; }
      section.contacts .field label::after {
        content: ': ';
        margin-right: 10px; }
    section.contacts .field input {
      width: 30px;
      border: none;
      outline: none;
      flex: 1; }
    section.contacts .field .description {
      position: absolute;
      top: 50px;
      font-size: 13px;
      font-style: italic;
      margin-top: 5px;
      opacity: 0.4; }
  section.contacts #error-box {
    color: #d32;
    margin-top: -10px;
    margin-bottom: 20px; }
    section.contacts #error-box.invisible {
      display: none;
      padding: 0;
      margin: 0; }
  section.contacts #send-feedback-sent {
    float: right; }
    section.contacts #send-feedback-sent.hidden {
      display: none; }
  section.contacts button {
    float: right;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    background: #fff;
    padding: 10px;
    outline: none; }
    section.contacts button.hidden {
      display: none; }
    section.contacts button:hover {
      cursor: pointer;
      background: #000;
      border-color: #000;
      color: #fff; }

.divider {
  width: 100vw;
  box-sizing: border-box;
  background: #fff;
  padding-left: calc(50vw - 400px);
  padding-right: calc(50vw - 400px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #eee; }

section.advantages {
  margin-top: 20px;
  line-height: 24px;
  padding: 10vw calc(50vw - 400px); }
  section.advantages h2 {
    margin-top: 0;
    margin-bottom: 60px; }
  section.advantages ul {
    padding-left: 40px; }
    section.advantages ul li {
      list-style-type: none;
      position: relative;
      min-height: 50px;
      margin-bottom: 10px; }
      section.advantages ul li i {
        position: absolute;
        left: -40px;
        top: 6px;
        font-size: 24px; }

footer {
  text-align: center;
  position: relative;
  background: #fff;
  padding: 10vw calc(50vw - 400px);
  padding-bottom: 40px;
  box-sizing: border-box;
  width: 100vw;
  --offset: 200px;
  animation: lsd var(--lsd-duration) linear infinite; }
  footer a {
    cursor: pointer;
    text-decoration: underline;
    color: #000; }
  footer .in-container {
    position: absolute;
    left: 0;
    top: calc(var(--offset) - 230px);
    height: 230px;
    width: 100vw; }
    footer .in-container svg.in {
      transform-origin: bottom;
      animation: in-wavy 8s ease-in-out infinite;
      position: absolute;
      width: 100vw;
      left: 0;
      height: 200px;
      bottom: 0;
      mix-blend-mode: difference; }
      footer .in-container svg.in.in-1 {
        animation-delay: 0s; }
        footer .in-container svg.in.in-1 path {
          fill: rgba(255, 0, 0, 0.2) !important; }
      footer .in-container svg.in.in-2 {
        animation-delay: -4s; }
        footer .in-container svg.in.in-2 path {
          fill: rgba(0, 255, 0, 0.2) !important; }
  footer .in-out-1 {
    position: absolute;
    width: 100vw;
    height: 60px;
    top: calc(var(--offset) - 60px);
    left: 0;
    background: linear-gradient(to bottom, #c4cbed00, #c4cbedff); }
  footer .in-out-2 {
    position: absolute;
    width: 100vw;
    height: 200px;
    top: var(--offset);
    left: 0;
    background: #c4cbed; }
  footer .info {
    margin-top: 50px;
    line-height: 30px;
    position: relative; }

.payed {
  width: 100vw;
  height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center; }
  .payed .card {
    width: 400px;
    height: 300px; }
    .payed .card h1 {
      font-size: 48px; }
    .payed .card .prop {
      display: flex; }
      .payed .card .prop .key {
        font-weight: 600; }
        .payed .card .prop .key::after {
          content: ': ';
          margin-right: 5px; }
    .payed .card a {
      margin-top: 20px;
      color: #000;
      cursor: pointer;
      display: block; }
