@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Roboto&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 {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: 'Inter', sans-serif;
  background-color: #EEEEEE;
}

input, button, textarea {
  font-family: inherit;
}

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: 400;
  margin: 5px;
  color: #111111;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

[class*="__container"] {
  max-width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  [class*="__container"] {
    max-width: 1312px;
  }
}

@media (max-width: 1312px) {
  [class*="__container"] {
    max-width: 992px;
  }
}

@media (max-width: 991.98px) {
  [class*="__container"] {
    max-width: 750px;
  }
}

@media (max-width: 767.98px) {
  [class*="__container"] {
    max-width: none;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  font-weight: 500;
  font-size: 18px;
  line-height: 21,78px;
}

.header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: EEEEEE;
  z-index: 2;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 15px;
}

.header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  z-index: 3;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header__button {
  border: 2px solid #DF00A1;
  color: #DF00A1;
}

.header__button img {
  margin: 0 0 0 10px;
}

.header__burger {
  display: none;
  position: relative;
  z-index: 3;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  font-size: 18px;
  line-height: 21,78px;
  font-weight: 500;
  border-radius: 12px;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu__list {
  position: relative;
  z-index: 2;
}

.menu a {
  margin: 0 30px 0 0;
  color: #111111;
}

@media (max-width: 767.98px) {
  body.lock {
    overflow: hidden;
  }
  .header__logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header__button {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header__burger {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: block;
    position: relative;
    margin: 0 20px;
    width: 23px;
    height: 16px;
  }
  .header__burger::before, .header__burger::after,
  .header__burger span {
    content: '';
    background-color: #000000;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.3s ease 0s;
    transition: 0.3s ease 0s;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger::after {
    bottom: 0;
  }
  .header__burger span {
    top: 6.5px;
  }
  .header__burger.active::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 6px;
  }
  .header__burger.active::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    bottom: 8px;
  }
  .header__burger.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    padding: 110px 0 0 0;
    display: block;
    overflow: auto;
    -webkit-transition: 0.3s ease 0s;
    transition: 0.3s ease 0s;
  }
  .menu__link {
    display: block;
    padding: 10px 20px;
  }
  .menu.active {
    top: 0;
  }
}

@media (max-width: 479.98px) {
  .header__button-img {
    display: none;
  }
  .header__button {
    padding: 6px;
  }
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
    overflow: hidden;
  }
}

.main {
  padding: 130px 0 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.powered__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.powered__text-midle {
  font-weight: 500;
  font-size: 16px;
  line-height: 19,36px;
  color: #DF00A1;
  text-transform: uppercase;
}

.powered__text-title {
  padding: 70px 0 30px;
  font-size: 72px;
  font-weight: 300;
  line-height: 87,14px;
  text-shadow: -1px -1px 1px #3EFFB9, -1px -1px 1px #FFFFFF;
}

.powered__button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 40px 0;
}

.powered__left-img {
  width: 100%;
}

.right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-pink {
  background-color: #DF00A1;
  color: #FFFFFF;
  margin: 0 20px 0 0;
}

.button-white {
  background-color: none;
  color: #111111;
  border: 2px solid #111111;
}

.news__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.news__card-padding {
  padding: 0 0 160px 0;
}

.news__card-card {
  padding: 20px 0 0;
  max-width: 192px;
  border-top: 2px solid #111111;
}

.news__card-img {
  width: 100%;
}

.news__card-title {
  padding: 20px 0;
  font-size: 18px;
  line-height: 21,78px;
  font-weight: 500;
}

.news__card-data {
  font-size: 18px;
  line-height: 21,78px;
  padding: 0 0 20px 0;
}

.news__card-text {
  font-size: 16px;
  line-height: 24px;
  color: #555555;
}

@media (max-width: 991.98px) {
  .powered__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .powered__text-title {
    font-size: 56px;
    line-height: 67,77px;
    text-align: center;
  }
  .powered__button-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .news__card {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding: 0 0 90px;
  }
}

@media (max-width: 767.98px) {
  .news__card-card {
    max-width: 150px;
  }
}

@media (max-width: 479.98px) {
  .news__card {
    -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;
    padding: 0 0 50px 0;
  }
  .news__card-card {
    max-width: 250px;
    margin: 0 0 50px 0;
  }
  .powered__text-title {
    font-size: 40px;
    line-height: 50px;
  }
}

.information {
  background-color: #111111;
}

.information__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.information__item {
  padding: 0 0 0 20px;
  border-left: 2px solid #555555;
  max-width: 450px;
  margin: 0 10px 0 0;
  background-color: #111111;
}

.information__item2 {
  padding: 0 0 0 20px;
  border-left: 2px solid #555555;
  max-width: 450px;
  margin: 0 10px 0 0;
}

.information__img2 {
  display: none;
}

.information__title {
  font-weight: 500;
  font-size: 18px;
  line-height: 21,78px;
  color: #FFFFFF;
  padding: 20px 0;
}

.information__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #CCCCCC;
}

@media (max-width: 767.98px) {
  .information {
    background-color: rgba(0, 0, 0, 0);
  }
  .information__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .information__item-padding {
    padding: 0 0 0 10px;
    border-left: 2px solid #555555;
  }
  .information__item-padding2 {
    padding: 0 0 0 10px;
    background-color: #FFFFFF;
    border-left: 2px solid #111111;
  }
  .information__item {
    padding: 32px;
    border: none;
  }
  .information__item2 {
    padding: 32px;
    border: none;
    background-color: #FFFFFF;
  }
  .information__img1 {
    display: none;
  }
  .information__img2 {
    display: block;
  }
  .white__title {
    color: #111111;
  }
  .white__text {
    color: #777777;
  }
}

@media (max-width: 479.98px) {
  .information__title {
    font-size: 16px;
  }
  .information__text {
    font-size: 14px;
  }
}

.featured__container {
  padding: 120px 15px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.featured__img-cont {
  width: 90%;
  margin: 30px 0;
}

.featured-img {
  width: 100%;
}

@media (max-width: 991.98px) {
  .disp-none {
    display: none;
  }
  .featured__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 90px 15px;
  }
}

@media (max-width: 479.98px) {
  .disp-none {
    display: none;
  }
}

@media (max-width: 375px) {
  .featured__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 15px;
  }
}

.crypto__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px;
  background-color: #FFFFFF;
}

.crypto__title {
  font-weight: 300;
  font-size: 56px;
  line-height: 67,77px;
}

.crypto__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: 32px 0;
  color: #555555;
}

.button-crypto {
  background-color: #FFFFFF;
  border: none;
  width: 160px;
}

.crypto__title-info {
  color: #111111;
  font-size: 18px;
  line-height: 21,78px;
  font-weight: 500;
}

.crypto__text-info {
  font-weight: 400;
  font-style: 16px;
  line-height: 24px;
  color: #555555;
}

.crypto__item {
  margin: 80px 0 0;
}

@media (max-width: 1024px) {
  .crypto__container {
    padding: 60px;
  }
  .crypto__title {
    font-size: 40px;
  }
  .crypto__text {
    font-size: 14px;
  }
  .crypto__item {
    margin: 60px 0 0;
  }
}

@media (max-width: 767.98px) {
  .crypto__container {
    padding: 40px;
  }
  .crypto__title {
    font-size: 30px;
  }
  .crypto__text {
    font-size: 12px;
  }
  .crypto__title-info {
    font-size: 14px;
    padding: 0 0 20px 0;
  }
  .crypto__text-info {
    font-style: 12px;
  }
  .crypto__item {
    margin: 40px 0 0;
    padding: 0;
  }
}

@media (max-width: 479.98px) {
  .crypto__img {
    display: none;
  }
  .crypto__container {
    display: block;
  }
}

.press__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 120px 0 110px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.press__card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 485px;
          flex: 1 1 485px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 0 0 10px 0;
}

@media (max-width: 991.98px) {
  .press__card-pos1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .press__card-pos2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .press__card {
    max-width: 600px;
    margin: auto;
  }
}

@media (max-width: 767.98px) {
  .press__container {
    padding: 90px 0 80px 0;
  }
  .press__card {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 485px;
            flex: 1 1 485px;
  }
}

@media (max-width: 479.98px) {
  .press__card-pos1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .press__card-pos2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.asset__color {
  background-color: #3EFFB9;
}

.button-img {
  margin: 0 0 0 10px;
}

.asset__container {
  padding: 0 15px 120px 15px;
  border-bottom: 2px solid #111111;
}

@media (max-width: 767.98px) {
  .asset__container {
    padding: 0 15px 60px 15px;
    border-bottom: 2px solid #111111;
  }
}

@media (max-width: 479.98px) {
  .asset__container {
    padding: 0 15px 30px 15px;
    border-bottom: 2px solid #111111;
  }
}

.gallery__container {
  padding: 120px 15px;
  border-bottom: 2px solid #111111;
}

.grid__templates {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -ms-grid-rows: (176px)[4];
      grid-template-rows: repeat(4, 176px);
  gap: 32px;
}

.grid__item {
  position: relative;
}

.grid__item img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.grid__item1 {
  grid-column: span 1;
  grid-row: span 2;
}

.grid__item2 {
  grid-column: span 1;
  grid-row: span 1;
}

.grid__item3 {
  grid-column: span 2;
  grid-row: span 2;
}

.grid__item4 {
  grid-column: span 1;
  grid-row: span 1;
}

.grid__item5 {
  grid-column: span 2;
  grid-row: span 2;
}

.grid__item6 {
  grid-column: span 2;
  grid-row: span 1;
}

.grid__item7 {
  grid-column: span 1;
  grid-row: span 1;
}

.grid__item8 {
  grid-column: span 1;
  grid-row: span 1;
}

@media (max-width: 767.98px) {
  .grid__templates {
    -ms-grid-columns: (minmax(170px, 1fr))[2];
        grid-template-columns: repeat(2, minmax(170px, 1fr));
    -ms-grid-rows: (176px)[4];
        grid-template-rows: repeat(4, 176px);
    gap: 24px;
  }
  .grid__item3, .grid__item6, .grid__item7, .grid__item8 {
    display: none;
  }
  .grid .gallery__container {
    padding: 60px 15px;
  }
}

@media (max-width: 479.98px) {
  .gallery__container {
    padding: 30px 15px;
  }
  .grid__templates {
    -ms-grid-rows: (100px)[4];
        grid-template-rows: repeat(4, 100px);
  }
}

.right__povewred2 {
  padding: 120px 0;
}

.powered__container2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 75px 0 0;
  border-bottom: 2px solid #111111;
}

@media (max-width: 767.98px) {
  .left__powered2 {
    display: none;
  }
  .powered__container2 {
    display: block;
    padding: 45px 0 0;
  }
  .right__povewred2 {
    padding: 60px 0;
  }
}

@media (max-width: 479.98px) {
  .right__povewred2 {
    padding: 30px 0;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 140px 15px;
}

.footer__box-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #555555;
}

.footer__title-text {
  padding: 32px 0;
  font-size: 20px;
  line-height: 20px;
}

.footer__title-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.footer__part-lists {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 29%;
          flex: 0 0 29%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.lists__title {
  font-size: 16px;
  line-height: 19,36px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.lists__item {
  font-size: 20px;
  gap: 20px;
  line-height: 20px;
}

.lists__item li {
  margin: 10px 0;
}

.lists__link {
  color: #333333;
}

@media (max-width: 767.98px) {
  .lists__title {
    cursor: pointer;
    position: relative;
    padding: 0 0 0 20px;
  }
  .lists__item {
    display: none;
  }
  .lists__title::before,
  .lists__title::after {
    content: '';
    width: 10px;
    background-color: #111111;
    position: absolute;
    top: 8px;
    height: 1px;
    -webkit-transition: 0.3s ease 0s;
    transition: 0.3s ease 0s;
  }
  .lists__title::before {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    left: 0;
  }
  .lists__title::after {
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
    left: 8px;
  }
  .lists__title.active-title::before {
    -webkit-transform: rotate(-40deg);
            transform: rotate(-40deg);
  }
  .lists__title.active-title::after {
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
  }
  .footer__part-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 60px 15px;
  }
  .footer__box-title {
    padding: 0 0 40px 0;
  }
}

@media (max-width: 479.98px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
  }
}
