@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap);
:root {
  --red: #E20613;
  --rose: #D2005A;
  --purple: #A22E84;
  --purple-darker: #64488E;
  --blue: #334D7A;
  --blue-lighter: #426fbb;
  --grey: #2F4858;
  --light: #e5e5e5;
  --dark: #1d1d1d;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  z-index: 2;
}

body {
  overflow: overlay;
  color: #1d1d1d;
}

a {
  text-decoration: none;
}

.hero {
  height: 100vh;
  background: #64488e;
  background: linear-gradient(50deg, #64488e 0%, #d2005a 100%);
  align-items: center;
  display: flex;
  justify-content: center;
}
.hero__title {
  color: #e5e5e5;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 3rem;
}
.hero__description {
  font-size: 1.5rem;
  color: #e5e5e5;
  font-weight: 200;
  margin-bottom: 3rem;
}
.hero__btn {
  z-index: 10;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #e5e5e5;
  background-color: #b63494;
  width: auto;
  text-transform: uppercase;
  font-weight: 400;
  box-shadow: 0 5px 5px rgba(47, 72, 88, 0.1);
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: 0.3s;
  margin-top: 0.75rem;
}
.hero__btn i {
  opacity: 0;
  transition: 0.3s;
  margin-left: -0.75rem;
}
.hero__btn:hover {
  background-color: #c2379e;
  box-shadow: 0 5px 5px rgba(162, 46, 132, 0.1);
}
.hero__btn:hover i {
  opacity: 1;
  margin-left: 0.5rem;
}
.hero__arrow-bottom {
  position: absolute;
  bottom: 60px;
  left: calc(50% - 20px);
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  -webkit-animation: arrow-icon 1s infinite;
          animation: arrow-icon 1s infinite;
  cursor: pointer;
}
.hero__left, .hero__right {
  position: relative;
  flex: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__right {
  align-items: center;
}
.hero__left {
  z-index: 1;
}

.icons {
  position: absolute;
  top: 0;
  left: 40%;
  height: 100%;
  z-index: 1;
  align-items: center;
  transform: translate(-50%, -5%);
  display: flex;
  opacity: 0.05;
  font-size: 6rem;
  z-index: 1;
}
.icons__left, .icons__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icons__right {
  margin-left: -0.5rem;
}

iframe {
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(47, 72, 88, 0.3);
}

.icon {
  font-size: 9rem;
  -webkit-animation: linear turn-cogs 10s infinite;
          animation: linear turn-cogs 10s infinite;
  color: #e5e5e5;
}
.icon--big {
  -webkit-animation: linear turn-cogs-inverse 20s infinite;
          animation: linear turn-cogs-inverse 20s infinite;
  font-size: 18rem;
}

@-webkit-keyframes turn-cogs {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes turn-cogs {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes turn-cogs-inverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes turn-cogs-inverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes arrow-icon {
  0%, 100% {
    transform: translateY(0px);
  }
  80% {
    transform: translateY(5px);
  }
}
@keyframes arrow-icon {
  0%, 100% {
    transform: translateY(0px);
  }
  80% {
    transform: translateY(5px);
  }
}
.hero__container {
  width: 1280px;
  height: 75%;
  margin: auto 50px;
  background: #64488e;
  background: linear-gradient(50deg, #64488e 0%, #a22e84 35%, #d2005a 100%);
  box-shadow: 0 0 70px rgba(47, 72, 88, 0.15);
  display: flex;
  padding: 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.block__container {
  width: 1400px;
  height: 90%;
  min-height: 45vh;
  padding: 1.25rem 2rem;
  margin: auto;
}

@media (max-width: 1080px) {
  .hero__right {
    display: none;
  }

  .hero__left {
    width: 100%;
  }

  .modal-window > div {
    max-width: 80vw;
  }

  .row__text {
    text-align: justify;
  }
}
@media (max-width: 630px) {
  .hero__left {
    text-align: center;
    align-items: center;
  }

  .hero__container {
    padding: 3rem 2rem;
    margin: auto 25px;
  }
}
@media (max-width: 380px) {
  .btn {
    font-size: 12px !important;
  }
}
.block {
  min-height: 70vh;
  background-color: #e5e5e5;
  display: flex;
}
.block--blue {
  background-color: #334D7A;
  color: #e5e5e5;
}
.block--blue .grid__title::after,
.block--blue .row__title::after {
  background-color: #e5e5e5;
}
.block--blue .btn--outline {
  border-color: #e5e5e5;
  color: #e5e5e5;
  letter-spacing: 2;
}
.block--blue .btn--outline:hover {
  box-shadow: 0 5px 5px rgba(229, 229, 229, 0.05);
  background: rgba(229, 229, 229, 0.05) !important;
}
.block--blue .item {
  background-color: #e5e5e5 !important;
  box-shadow: 0 2px 5px rgba(29, 29, 29, 0.2);
}
.block--blue .important {
  color: #fa4a54;
}
.block--small {
  height: auto;
  min-height: 400px;
}
.block--small .block__container {
  min-height: 200px;
}
.block .item {
  background-color: #f1f1f1;
}

.row {
  text-align: justify;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.row__title {
  font-size: 1.2rem;
  padding-bottom: 0.25rem;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1rem;
}
.row__title::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 30%;
  background-color: #1d1d1d;
}
.row--btn {
  justify-content: center;
}
.row__text {
  line-height: 2;
  max-width: 1300px;
  font-weight: 300;
}

.btn {
  z-index: 10;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #e5e5e5;
  background: linear-gradient(50deg, #E20613 0%, #D2005A 50%, #A22E84 100%);
  background-size: 150%;
  background-position-x: 0;
  width: auto;
  font-weight: 400;
  box-shadow: 0 5px 5px rgba(47, 72, 88, 0.1);
  text-decoration: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: 0.3s;
  margin-top: 0.75rem;
  display: flex;
  border: none;
}
.btn i {
  opacity: 0;
  transition: 0.3s;
  margin-left: -0.75rem;
  line-height: inherit;
}
.btn--small {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
}
.btn--outline {
  background: none !important;
  border: 1px solid #E20613;
  color: #E20613;
}
.btn--blue {
  background: none !important;
  border-color: #334D7A;
  color: #334D7A;
}
.btn--uc {
  text-transform: uppercase;
}
.btn:hover {
  background-position-x: 50%;
  box-shadow: 0 5px 5px rgba(162, 46, 132, 0.1);
}
.btn:hover i {
  opacity: 1;
  margin-left: 0.5rem;
}

.grid {
  min-height: inherit;
  display: grid;
  grid-auto-flow: row dense;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: -webkit-max-content;
  grid-template-rows: max-content;
  gap: 1rem 2rem;
}
.grid__title {
  text-align: center;
  padding-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  font-weight: 400;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
}
.grid__title::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 30%;
  max-width: 60px;
  background-color: #1d1d1d;
}
.grid--row {
  grid-template-columns: 1fr;
}
.grid--row .row {
  margin-top: 1rem;
  font-size: 1.1rem;
  justify-content: center;
  text-align: center;
}
.grid--row .row__title {
  width: auto;
}

.row__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
}

.item {
  margin: 1rem;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(29, 29, 29, 0.03);
}
.item__logo {
  width: auto;
  max-width: 75%;
  height: auto;
  max-height: 75%;
}
.item:hover {
  transform: scale(1.05);
}

.important {
  color: #E20613;
  font-weight: 500;
}
.important.link:hover {
  text-decoration: underline;
}

abbr {
  cursor: help;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #3b588c;
  border-radius: 0;
}

.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.modal-window.visible {
  visibility: visible;
  opacity: 1;
  overflow: hidden;
  pointer-events: initial;
}
.modal-popup {
  width: 400px;
  position: relative;
  padding: 2em;
  background: white;
  border-radius: 1rem;
  margin: auto;
  overflow: hidden;
  transition: 0.3s ease-out;
}
.modal-popup > div:not(.modal-close) {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.modal-title {
  font-weight: 500;
  padding-bottom: 1rem;
}
.modal-close {
  font-size: 0.75rem;
  cursor: pointer;
  color: #aaa;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  text-decoration: none;
  transition: 0.1s;
  padding: 1rem 1.25rem;
}
.modal-close:hover {
  color: #1d1d1d;
}
.modal-register {
  visibility: hidden;
  opacity: 0;
}
.modal-content {
  position: relative;
}
.modal-box {
  transition: 0.3s;
  position: absolute;
}
.modal-box:nth-child(1) {
  transform: translateX(-50%);
}
.modal-box:nth-child(2) {
  transform: translateX(50%);
}
.modal-box:nth-child(2) i {
  margin-right: 1rem;
  color: #334D7A;
  cursor: pointer;
}
.modal-box.hidden {
  visibility: hidden;
  opacity: 0;
}
.modal-box.visible {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.input {
  padding: 0.5rem 0.75rem;
  border-radius: 0.3rem;
  font-size: 0.85rem;
  outline: none;
  background-color: currentColor;
  border: 1px currentColor solid;
  margin-bottom: 0.5rem;
  width: calc(50% - 1.8rem);
}
.input::-moz-placeholder {
  color: currentColor;
  opacity: 0.9;
}
.input:-ms-input-placeholder {
  color: currentColor;
  opacity: 0.9;
}
.input::placeholder {
  color: currentColor;
  opacity: 0.9;
}
.input:focus::-moz-placeholder {
  opacity: 0.6;
}
.input:focus:-ms-input-placeholder {
  opacity: 0.6;
}
.input:focus::placeholder {
  opacity: 0.6;
}
.input--outline {
  background-color: white;
  color: #1d1d1d;
}
.input--blue {
  color: #334D7A;
}
.input--blue:focus {
  border-color: rgba(51, 77, 122, 0.8);
}
.input--full {
  width: -webkit-fill-available;
}
.input--small {
  width: auto;
  margin-right: 0.5rem;
}
.input--error {
  border-color: #E20613 !important;
}

.label {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  font-size: 15px;
}
.label .input {
  width: 15px;
  height: 15px;
  padding: 0;
  margin: 0;
  margin-top: 1px;
  margin-right: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-color: #334D7A;
  background-size: cover;
  background-color: transparent;
  cursor: pointer;
}
.label .input:checked {
  background-color: #334D7A;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4Igp3aWR0aD0iNDgiIGhlaWdodD0iNDgiCnZpZXdCb3g9IjAgMCAyNCAyNCIKc3R5bGU9IiBmaWxsOiNmZmZmZmY7Ij48cGF0aCBkPSJNIDE5Ljk4MDQ2OSA1Ljk5MDIzNDQgQSAxLjAwMDEgMS4wMDAxIDAgMCAwIDE5LjI5Mjk2OSA2LjI5Mjk2ODggTCA5IDE2LjU4NTkzOCBMIDUuNzA3MDMxMiAxMy4yOTI5NjkgQSAxLjAwMDEgMS4wMDAxIDAgMSAwIDQuMjkyOTY4OCAxNC43MDcwMzEgTCA4LjI5Mjk2ODggMTguNzA3MDMxIEEgMS4wMDAxIDEuMDAwMSAwIDAgMCA5LjcwNzAzMTIgMTguNzA3MDMxIEwgMjAuNzA3MDMxIDcuNzA3MDMxMiBBIDEuMDAwMSAxLjAwMDEgMCAwIDAgMTkuOTgwNDY5IDUuOTkwMjM0NCB6Ij48L3BhdGg+PC9zdmc+");
}
.label--full {
  width: -webkit-fill-available;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.label--full .label {
  width: 25%;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.label--full .label--text {
  width: 50%;
}
.label--full input {
  margin-bottom: 0;
}
.label--full input[type=text] {
  padding: 0.2rem 0.3rem;
  margin-right: 0;
  width: -webkit-fill-available !important;
  width: 94%;
}

.snackbar__container {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  justify-content: center;
  display: flex;
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  top: -100px;
}
.snackbar__container .snackbar {
  pointer-events: initial;
  position: fixed;
  margin: 1rem 2rem 0;
  border-radius: 0.25rem;
  padding: 1.1rem;
  background-color: #e5e5e5;
  color: #1d1d1d;
  box-shadow: 0 3px 6px rgba(47, 72, 88, 0.1);
  text-align: center;
}
.snackbar__container.visible {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.tippy-box[data-theme~=error] {
  background-color: #E20613;
}
.tippy-box[data-theme~=error] > .tippy-arrow::before {
  border-left-color: #E20613;
  border-right-color: #E20613;
}

.liquids {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.fluids {
  width: 50%;
  height: 100%;
  position: absolute;
  right: -30px;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.fluids svg {
  background-color: #e469bd81;
  border: 1px solid #e469bd50;
  border-top: 0;
  -webkit-mask-image: linear-gradient(to top, transparent 10%, black 30%, black 70%, transparent 90%);
          mask-image: linear-gradient(to top, transparent 10%, black 30%, black 70%, transparent 90%);
}
