@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=IBM+Plex+Sans:wght@400;600&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside,
section {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "IBM Plex Mono", monospace;
  line-height: 16px;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #ffffff;
}

input,
button,
textarea {
  font-family: "IBM Plex Mono", monospace;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  font-family: "IBM Plex Mono", monospace;
}

.title {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.header {
  position: absolute;
  z-index: 9999;
  width: 100%;
  display: none;
}

.header__burger {
  display: block;
  position: relative;
  width: 25px;
  height: 18px;
  padding: 20px;
}

.header__burger::before, .header__burger::after,
.header__burger span {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #fff;
  left: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__burger::after {
  top: 16px;
}

.header__burger::before {
  top: 0;
}

.header__burger span {
  top: 8px;
}

.header__burger.active {
  z-index: 50;
}

.header__burger.active span {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header__burger.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.header__burger.active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.moon {
  width: 20px;
  height: 20px;
  border-radius: 82px;
  background: #222326;
  top: -1px;
  left: 0px;
  position: absolute;
}

.toggle--checkbox {
  display: none;
}

.toggle--checkbox:checked ~ .background {
  background: #fff;
}

.toggle--checkbox:checked + .toggle--label {
  background: #535350;
  border-color: #535350;
}

.toggle--checkbox:checked + .toggle--label .moon {
  opacity: 0;
}

.toggle--checkbox:checked + .toggle--label .toggle--label-background {
  left: 60px;
  width: 5px;
}

.toggle--checkbox:checked + .toggle--label .toggle--label-background:before {
  width: 5px;
  height: 5px;
  top: -25px;
}

.toggle--checkbox:checked + .toggle--label .toggle--label-background:after {
  width: 5px;
  height: 5px;
  left: -30px;
  top: 20px;
}

.toggle--checkbox:checked + .toggle--label:before {
  background: #fff;
  border-color: #fff;
  -webkit-animation-name: switch;
          animation-name: switch;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.toggle--checkbox:checked + .toggle--label:after {
  opacity: 1;
}

.toggle--label {
  width: 48px;
  height: 28px;
  background: #fff;
  border-radius: 100px;
  border: 5px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.toggle--label:before {
  -webkit-animation-name: reverse;
          animation-name: reverse;
  -webkit-animation-duration: 350ms;
          animation-duration: 350ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: all 350ms ease-in;
  transition: all 350ms ease-in;
  content: "";
  width: 20px;
  height: 20px;
  border: 5px solid #fff;
  top: -1px;
  left: 0px;
  position: absolute;
  border-radius: 82px;
  background: #fff;
  z-index: 3;
}

@-webkit-keyframes switch {
  0% {
    left: 0px;
  }
  100% {
    left: 20px;
    width: 20px;
  }
}

@keyframes switch {
  0% {
    left: 0px;
  }
  100% {
    left: 20px;
    width: 20px;
  }
}

@-webkit-keyframes reverse {
  0% {
    left: 20px;
    width: 20px;
  }
  100% {
    left: 8px;
  }
}

@keyframes reverse {
  0% {
    left: 20px;
    width: 20px;
  }
  100% {
    left: 8px;
  }
}

.wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
  background: #222326;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.aside {
  max-width: 288px;
  width: 100%;
  height: 100%;
  background: #161617;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  overflow-y: auto;
}

.aside__inner {
  padding: 40px 50px;
}

.aside__logo {
  margin-bottom: 100px;
}

.aside__logo img {
  width: 150px;
}

.menu__list {
  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;
}

.menu__item {
  margin-bottom: 50px;
  cursor: pointer;
}

.menu__link.active {
  color: #ffffff;
}

.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d3d3d4;
}

.menu__image {
  margin-right: 14px;
  font-size: 22px;
}

.switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.switcher__button {
  margin: 0 12px;
}

.intro {
  width: 100%;
  height: 100vh;
  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-bottom: 65px;
  padding-left: 288px;
  background: #161617;
}

.intro .main-img {
  position: absolute;
}

.intro #my-svg {
  max-width: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.intro img {
  position: absolute;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#main-svg:nth-child(1) {
  -webkit-animation-delay: 1;
          animation-delay: 1;
}

#main-svg:nth-child(2) {
  -webkit-animation-delay: 2;
          animation-delay: 2;
}

.portfolio {
  width: 100%;
  height: 100%;
  padding-left: 348px;
  margin-bottom: 65px;
}

.portfolio__inner {
  height: 100%;
}

.portfolio__title {
  margin-bottom: 54px;
}

.portfolio__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%;
  gap: 25px;
}

.button__more {
  margin-top: 40px;
  text-align: center;
  text-decoration: underline;
  font-size: 20px;
  cursor: pointer;
}

.port-item {
  max-width: 330px;
  background: #161617;
  border: 1px solid rgba(206, 206, 205, 0.2);
  border-radius: 2px;
  width: 100%;
  height: 284px;
}

.port-item__head img {
  height: 100%;
  max-width: 100%;
}

.port-item__body {
  padding: 20px;
}

.port-item__text {
  height: 100%;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #d3d3d4;
}

.team {
  width: 100%;
  height: 100%;
  padding-left: 348px;
}

.team__title {
  margin-bottom: 54px;
}

.team__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -70px;
}

.team__row {
  margin: 0 70px;
}

.team .team-row__title {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: #ffffff;
  position: relative;
  padding-left: 20px;
  margin-bottom: 28px;
}

.team .team-row .yellow::before {
  background: #fec84a;
}

.team .team-row .orange::before {
  background: #42b01d;
}

.team .team-row .blue::before {
  background: #0186ca;
}

.team .team-row .purple::before {
  background: #9a6dfd;
}

.team .team-row .green::before {
  background: #3b4f42;
}

.team .team-row__title::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

.team .team-row__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -70px;
}

.team .team-row__item {
  margin: 0 70px;
}

.team .team-item {
  max-width: 128px;
  width: 100%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
}

.team .team-item__image {
  padding: 14px;
  border: 1px solid #fec84a;
  border-radius: 50%;
  margin-bottom: 20px;
}

.team .team-item__image.yellow {
  border: 1px solid #fec84a;
}

.team .team-item__image.orange {
  border: 1px solid #42b01d;
}

.team .team-item__image.blue {
  border: 1px solid #0186ca;
}

.team .team-item__image.purple {
  border: 1px solid #9a6dfd;
}

.team .team-item__image.green {
  border: 1px solid #3b4f42;
}

.team .team-item__image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team .team-item__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #d3d3d4;
  text-align: center;
}

.about {
  width: 100%;
  height: 100%;
  padding-left: 348px;
  padding-bottom: 60px;
}

.about__title {
  margin-bottom: 50px;
}

.about__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 140px;
  margin-bottom: 40px;
}

.about__video {
  margin-right: 45px;
  height: 100%;
}

.about__video video {
  max-width: 330px;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__text {
  max-width: 480px;
}

.about__text p {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #d3d3d4;
}

.about__text p:not(:last-child) {
  margin-bottom: 10px;
}

.about__text p span {
  font-weight: 600;
  color: #fff;
}

.about__content {
  position: relative;
}

.about__main-text {
  max-width: 480px;
  margin-right: 95px;
}

.about__main-text p {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #d3d3d4;
}

.about__main-text p:not(:last-child) {
  margin-bottom: 10px;
}

.about__main-text p span {
  font-weight: 600;
  color: #fff;
}

.about .about__planet {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.about-content__inner {
  max-width: 545px;
}

.about-content__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-content__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #d3d3d4;
  margin-bottom: 25px;
}

.about-content__list {
  margin-bottom: 25px;
}

.about-content__item {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #d3d3d4;
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.about-content__item::before {
  content: "";
  width: 9px;
  height: 9px;
  left: 0;
  top: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
  background-color: #fff;
  border-radius: 50%;
}

.about-content__subtitle {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 25px;
}

.about-imp__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #da2d1f;
  position: relative;
  margin-bottom: 10px;
}

.about-imp__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #d3d3d4;
}

.official_verification {
  width: calc(100% - 148px);
  height: 100%;
  padding-left: 348px;
  padding-bottom: 45px;
}

.official_verification__title {
  margin-bottom: 70px;
}

.official_verification__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.official_verification__search {
  min-width: 80%;
  position: relative;
}

.official_verification__form input {
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 15px;
  width: 100%;
  border: 3px solid #A2A2A240;
}

.wrapper.light .status_resource_name {
  color: #646567;
}

.wrapper.light .status_icon svg {
  stroke: #646567;
}

.wrapper.light .status_icon svg > path {
  fill: #646567;
}

.official_verification_resource_valid_name,
.official_verification_resource_not_valid_name {
  font-weight: bold;
}

.wrapper.dark .official_verification__form input {
  border: 3px solid #FFFFFF4D;
  background: #222326;
  color: #ffffff;
}

.official_verification__form button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
}

.wrapper.dark .official_verification__form button  {
  background: #222326;
}

.official_verification__form button > svg > path {
  transition: all .3s ease-in-out;
}

.official_verification__form button:hover > svg > path {
  stroke: #c9c9c9;
}

.wrapper.dark .official_verification__form button:hover > svg > path {
  stroke: #171717;
}

.official_verification__form label {
  color: #646567;
  font-size: 13px;
}

.official_verification__response {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.official_verification__response > .official_verification__not_valid_response,
.official_verification__response > .official_verification__valid_response {
  text-align: center;
}

.official_verification__response > div.hidden {
  display: none;
}

.official_verification__response h3 {
  font-size: 30px;
  padding: 20px 0;
}


@media (max-width: 973px) {
  .official_verification__form label {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .official_verification {
    padding: 0 10px;
    margin-bottom: 40px;
    width: 100%;
  }
}

.media {
  width: 100%;
  height: 100%;
  padding-left: 348px;
}

.media__title {
  margin-bottom: 70px;
}

.media__row:not(:last-child) {
  margin-bottom: 70px;
}

.media-row:last-child .media-row__content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.media-row:last-child .media-row__subitem {
  opacity: 0;
}

.media-row__title {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 55px;
}

.media-row__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.media-row__row {
  max-width: 400px;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 30px;
}

.media-row__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.media-row__image {
  margin-right: 30px;
}

.media-row__image img {
  width: 53px;
  height: 53px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.media-row__link {
  display: block;
  font-family: Calibri;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 10px;
}

.media-row__subtitle {
  font-family: Calibri;
  font-size: 15px;
  line-height: 26px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #a2a2a2;
}

.media-row__subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.media-row__subitem-image {
  margin-right: 30px !important;
  width: 53px;
  height: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.media-row__subitem-image img {
  width: 31px;
  height: 28px;
  -o-object-fit: cover;
     object-fit: cover;
}

.media-row__subitem-inner a {
  display: block;
  font-family: Calibri;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 10px;
}

.media-row .media-row__inner a {
  display: block;
  font-family: Calibri;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 10px;
}

.media-row__subitem-link {
  font-family: Calibri;
  font-size: 13px;
  line-height: 26px;
  font-weight: 400;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.media-row-youtube .media-row__subitem {
  display: none;
}

.partners__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners__title {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 23px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.partners__item {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 200px;
}

.partners__item a {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners__item a img {
  background: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact {
  width: 100%;
  height: 100%;
  padding: 0 0 100px 348px;
}

.contact__title {
  margin-bottom: 54px;
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__response {
  margin-top: 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
}

.contact-form__label {
  cursor: pointer;
}

.contact-form__label.changing.active {
  display: block;
}

.contact-form input {
  background-color: #fff;
  height: 40px;
  width: 100%;
  padding: 12px;
  border-radius: 2px;
  border: 1px solid #535350;
  margin-bottom: 20px;
}

.contact-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border-radius: 2px;
  border: 1px solid #535350;
  background-color: #fff;
  margin-bottom: 20px;
  resize: none;
}

.contact-form__title {
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form__button {
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.1em;
  color: #080804;
  margin-bottom: 20px;
  border: 1px solid #535350;
  padding: 12px 22px;
  text-transform: uppercase;
  width: 100%;
}

.contact-form__button:hover {
  background-color: #080804;
  color: #fff;
}

.contact-from__select {
  margin-bottom: 20px;
}

.contact-from__select select {
  border: 1px solid #535350;
}

.copy {
  padding-left: 348px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.copy__text {
  margin-right: 20px;
}

.copy img {
  width: 30px;
  height: 30px;
}

.wrapper.dark {
  background: #222326;
}

.wrapper.dark .intro,
.wrapper.dark .aside {
  background: #161617;
}

.wrapper.dark .logo__dark,
.wrapper.dark .big-logo__dark {
  display: block;
}

.wrapper.dark .logo__light,
.wrapper.dark .big-logo__light {
  display: none;
}

.wrapper.dark .switcher__dark {
  color: #ffffff;
}

.wrapper.dark .switcher__light {
  color: rgba(255, 255, 255, 0.6);
}

.wrapper.dark .title {
  color: #fff;
}

.wrapper.dark .port-item__text {
  color: #d3d3d4;
}

.wrapper.dark .port-item {
  background: #161617;
  border: 1px solid rgba(206, 206, 205, 0.2);
}

.wrapper.dark .team .team-row__title {
  color: #fff;
}

.wrapper.dark .team .team-item__text {
  color: #d3d3d4;
}

.wrapper.dark .menu__link {
  color: #d3d3d4;
}

.wrapper.dark .menu__link.active {
  color: #ffffff;
}

.wrapper.dark .about__text p span {
  color: #fff;
}

.wrapper.dark .about-content__title,
.wrapper.dark .contact-form__title,
.wrapper.dark .copy__text {
  color: #ffffff;
}

.wrapper.dark .about-content__item,
.wrapper.dark .about-imp__text,
.wrapper.dark .about__text p {
  color: #d3d3d4;
}

.wrapper.dark .about-content__item::before {
  color: #fff;
}

.wrapper.dark .media-row__title {
  color: #ffffff;
  text-transform: uppercase;
}

.wrapper.light {
  background: #fff;
}

.wrapper.light .intro,
.wrapper.light .aside {
  background: #fff;
}

.wrapper.light .logo__light,
.wrapper.light .big-logo__light {
  display: block;
}

.wrapper.light .logo__dark,
.wrapper.light .big-logo__dark {
  display: none;
}

.wrapper.light .switcher__dark {
  color: rgba(8, 8, 4, 0.6);
}

.wrapper.light .switcher__light {
  color: #080804;
}

.wrapper.light .title {
  color: #080804;
}

.wrapper.light .port-item__text {
  color: #535350;
}

.wrapper.light .port-item {
  background: #f9f9f9;
  border: 1px solid #cececd;
}

.wrapper.light .team .team-row__title,
.wrapper.light .copy__text {
  color: #080804;
}

.wrapper.light .team .team-item__text {
  color: #535350;
}

.wrapper.light .menu__link {
  color: #535350;
}

.wrapper.light .menu__link.active {
  color: #080804;
}

.wrapper.light .about__main-text p span {
  color: #535350;
}

.wrapper.light .about-content__title {
  color: #535350;
}

.wrapper.light .about-content__item,
.wrapper.light .about-content__text,
.wrapper.light .about-imp__text,
.wrapper.light .about__text p,
.wrapper.light .about__main-text p,
.wrapper.light .media-row__link,
.wrapper.light .media-row__subitem-link {
  color: #535350;
}

.wrapper.light .about-content__item::before {
  border-left: 12px solid #535350;
}

.wrapper.light .media-row__title,
.wrapper.light .contact-form__title {
  color: #080804;
}

.wrapper.light .partners__title {
  color: #080804;
}

@media (max-width: 1766px) {
  .about-content__image {
    -webkit-filter: blur(2px);
            filter: blur(2px);
  }
}

@media (max-width: 1245px) {
  .about__head {
    padding-right: 50px;
  }
}

@media (max-width: 1110px) {
  .about__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about__video video {
    max-width: none;
  }
  .about__video {
    margin-bottom: 40px;
    margin-right: 0;
  }
  .about-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 973px) {
  .logo {
    width: 150px;
  }
  .media__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about__main-text {
    margin: 0 0 20px 0;
  }
  .about__content {
    -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;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 100px;
  }
  .aside__logo {
    margin-bottom: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 0;
  }
  .aside__inner {
    padding: 20px 25px;
  }
  .menu__item {
    margin-bottom: 35px;
  }
  .menu__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .switcher {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .intro {
    padding-left: 230px;
  }
  aside {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .aside.active {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    width: 100%;
    max-width: none;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .intro {
    padding-left: 0;
  }
  .header {
    display: block;
  }
  .header__burger {
    margin: 20px;
  }
  .wrapper.light .header__burger::before,
  .wrapper.light .header__burger::after,
  .wrapper.light .header__burger span {
    background-color: #161617;
  }
  .portfolio {
    padding: 0 10px;
  }
  .portfolio__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .title {
    text-align: center;
  }
  .team {
    padding: 0 10px;
  }
  .team__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 0;
  }
  .team-row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .team-row__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about {
    padding: 0 10px;
    margin-bottom: 40px;
  }
  .about__head {
    padding: 0;
  }
  .about__video video {
    max-width: 100%;
  }
  .media {
    padding-left: 0;
  }
  .media__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .partners__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .partners__title {
    text-align: center;
  }
  .about__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .media-row__title {
    text-align: center;
  }
  .media-row__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact {
    padding: 0 10px;
    margin-bottom: 50px;
  }
  .copy {
    padding: 0 10px;
  }
}

/*
     FILE ARCHIVED ON 04:35:46 Mar 05, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 09:01:35 Mar 05, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.495
  exclusion.robots: 0.018
  exclusion.robots.policy: 0.008
  esindex: 0.01
  cdx.remote: 44.709
  LoadShardBlock: 52.778 (3)
  PetaboxLoader3.datanode: 62.632 (4)
  PetaboxLoader3.resolve: 74.403 (2)
  load_resource: 93.962
*/
