html {
  scroll-behavior: smooth;
}

body {
  background-color: #010101;
  z-index: -5;
  position: relative;
}

body.noscroll {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

input {
  outline: none;
}

.container {
  max-width: 1490px;
  width: 100%;
  margin: 0 auto;
}

header {
  height: 73px;
  width: 100%;
  backdrop-filter: blur(25.299999237060547px);
  background: #FFFFFF08;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 630px;
}

nav a {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 16px;
  line-height: 112.99999999999999%;
  letter-spacing: -0.03em;
  color: #FFFFFF87;
  transition: .6s;
}

nav a:hover {
  color: #FFFFFF;
}

nav span {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 16px;
  line-height: 112.99999999999999%;
  letter-spacing: -0.03em;
  color: #FFFFFF87;
}

.header_right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 225px;
}

.header_right_language {
  display: flex;
  align-items: center;
}

.header_right_language span {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 16px;
  line-height: 112.99999999999999%;
  letter-spacing: -0.03em;
  color: #FFFFFF87;
  transition: .6s;
  cursor: pointer;
}

.header_right_language span.active {
  font-weight: 500;
  color: #FFFFFF;
}

.header_right_language p {
  width: 1px;
  height: 11px;
  background-color: #FFFFFF66;
  margin: 0 9px;
}

.header_right_button {
  width: 154px;
  height: 45px;
  border: 1px solid #FFFFFF4A;
  border-radius: 33px;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  transition: .6s;
}

.header_right_button:hover {
  background: #FFFFFF3B;
}

.header_right_button span {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: block;
  margin-right: 10px;
}

.first {
  background-image: url(./img/img/main-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: -2;
  padding-bottom: 5px;
}

.main {
  height: calc(100vh - 73px);
}

.main_flex {
  height: calc(100vh - 270px);
  display: flex;
  justify-content: space-between;
  position: relative;
}

.main_flex h1 {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 45px;
  line-height: 111.00000000000001%;
  letter-spacing: -0.11em;
  color: #fff;
  padding-top: 144px;
  width: 535px;
  pointer-events: none;
  user-select: none;
}



.main_flex_haker {
  position: absolute;
  bottom: 0px;
  background-image: url(./img/img/haker.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1800px;
}

.image-background::before,
.image-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/img/haker.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.image-background::before {
  opacity: 0.7;
  transform: translate(-5px, -5px) skew(-1deg, -1deg);
  animation: glitch1 2s infinite linear alternate;
}

.image-background::after {
  opacity: 0.5;
  transform: translate(5px, 3px) skew(1deg, 1deg);

  animation: glitch2 3s infinite linear alternate;
}
footer a.first_logo{
  width: 110px;
  height: 23px;
  display: block;
}
footer .first_logo img{
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@keyframes glitch1 {
  from {
    transform: translate(-5px, -5px) skew(-1deg, -1deg);
  }

  to {
    transform: translate(-8px, -8px) skew(-2deg, -2deg);
  }
}

@keyframes glitch2 {
  from {
    transform: translate(5px, 3px) skew(1deg, 1deg);
  }

  to {
    transform: translate(8px, -4px) skew(-1deg, -1deg);
  }
}







.main_link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main_link_item {
  width: calc(100%/3);
  height: 197px;
  backdrop-filter: blur(24.200000762939453px);
  background: #0101012B;
  border: 1px solid #FFFFFF2E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 10s;
  position: relative;
}

.main_link_item p {
  position: absolute;
  width: 100%;
  height: 150%;
  z-index: 2;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.main_link_item p img {
  position: absolute;
  top: 100%;
  left: -10%;
  display: block;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: .2s;
  object-fit: cover;
  object-position: center;
}


.main_link_item:hover img {
  top: 0;
  opacity: 1;
}



.main_link_item span {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.03em;
  text-align: center;
  color: #FFFFFF;
  display: block;
  margin-top: 32px;
  position: relative;
  z-index: 3;
}

.main_link_item svg {
  position: relative;
  z-index: 3;
}

.main_link .main_link_item:nth-child(1),
.main_link .main_link_item:nth-child(3) {
  border-right: none;
  border-left: none;
  position: relative;
  z-index: 2;
}

.main_link .main_link_item:nth-child(1) {
  padding-left: calc((100% - 1490px)/2);
}

.main_link .main_link_item:nth-child(3) {
  padding-right: calc((100% - 1490px)/2);
}

.main_link .main_link_item:nth-child(1)::before,
.main_link .main_link_item:nth-child(3)::before {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  background-image: url(./img/icon/krestik.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: -6px;
  z-index: 2;

}

.main_link .main_link_item:nth-child(1)::after,
.main_link .main_link_item:nth-child(3)::after {
  position: absolute;
  content: '';
  width: 11px;
  height: 11px;
  background-image: url(./img/icon/krestik.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -6px;
  z-index: 2;
}

.main_link .main_link_item:nth-child(1)::after,
.main_link .main_link_item:nth-child(1)::before {
  right: -6px;
}

.main_link .main_link_item:nth-child(3)::after,
.main_link .main_link_item:nth-child(3)::before {
  left: -6px;
}

.second,
.third,
.fourth,
.fifth {
  position: relative;
  margin-top: 160px;
}

.fourth {
  margin-top: 100px;
}

.third {
  padding: 115px 0 150px 0;
}

.second::after {
  content: '';
  position: absolute;
  top: -120px;
  width: 100%;
  height: 334px;
  background-image: url(./img/img/second-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.second h2,
.third h2,
.fourth h2,
.fifth h2 {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 45px;
  line-height: 111.00000000000001%;
  letter-spacing: -0.11em;
  color: #fff;
  text-align: center;
  margin-bottom: 110px;
  pointer-events: none;
  user-select: none;
}

.fifth h2 {
  text-align: left;
  margin-bottom: 70px;
}

.third h2 {
  margin-bottom: 70px;
}

.fourth h2 {
  margin-bottom: 0px !important;
}

.fourth .tittle_animation {
  margin-bottom: 70px;
}

.second_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.second_flex.mobile {
  display: none;
}

.second_flex_item {
  width: calc(100%/3);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
  height: 434px;
  border: 1px solid #393939;
  transition: .6s;
  cursor: pointer;
  position: relative;
}

.second_flex_item-hover {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.6s ease;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.second_flex_item-hover::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/img/hover2.png);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 0.6s ease;
}

.second_flex_item:hover .second_flex_item-hover::after {
  opacity: 1;
  top: 0;
}

.second_flex_item span {
  text-align: center;
  display: block;
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 25px;
  line-height: 101%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 60px;
  padding-top: 37px;
  position: relative;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.second_flex_item a {
  position: absolute;
  bottom: 34px;
  width: 114px;
  height: 35px;
  border-radius: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #573C8D;
  gap: 6px;
  transition: .6s;
}

.second_flex_item:hover a {
  background: #573C8D69;
}

.second_flex_item a p {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 15px;
  line-height: 101%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}



.second_flex_item_dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #573C8D;
  opacity: 0;
  transition: .6s ease;
  z-index: 2;
}

.second_flex_item:hover .second_flex_item_dot {
  opacity: 1;
}

.dot_left-top {
  top: -2.5px;
  left: -2.5px;
}

.dot_right-top {
  top: -2.5px;
  right: -2.5px;
}

.dot_left-bottom {
  bottom: -2.5px;
  left: -2.5px;
}

.dot_right-bottom {
  bottom: -2.5px;
  right: -2.5px;
}

.second_flex .second_flex_item:nth-child(2) .dot_left-top {
  top: -2.5px;
  left: -3px;
}

.second_flex .second_flex_item:nth-child(2) .dot_left-bottom {
  bottom: -2.5px;
  left: -3px;
}

.second_flex .second_flex_item:nth-child(2) .dot_right-top {
  top: -2.5px;
  right: -3px;
}

.second_flex .second_flex_item:nth-child(2) .dot_right-bottom {
  bottom: -2.5px;
  right: -3px;
}

.second_flex .second_flex_item:nth-child(5) .dot_left-top {
  top: -2.5px;
  left: -3px;
}

.second_flex .second_flex_item:nth-child(5) .dot_left-bottom {
  bottom: -2.5px;
  left: -3px;
}

.second_flex .second_flex_item:nth-child(5) .dot_right-top {
  top: -2.5px;
  right: -3px;
}

.second_flex .second_flex_item:nth-child(5) .dot_right-bottom {
  bottom: -2.5px;
  right: -3px;
}

.third_flex {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.third_flex_left {
  width: calc(100%/3 - 8px);
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.third_flex_center {
  width: calc(100%/3 - 8px);
  position: relative;
  min-width: 318px;
}

.third_flex_center_img {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.third_flex_center_line {
  position: absolute;
  background-color: #5527A4;
  box-shadow: 0px 10px 20.6px 0px #5527A4;
  bottom: 374px;
  left: -18px;
  width: calc(100% + 36px);
  height: 7px;
  border-radius: 7px;
}

.third_flex_center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.third_flex_item {
  background: #1B1C21;
  border-radius: 15px;
  width: 100%;
  height: 220px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.third_flex_item span {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 20px;
  line-height: 151%;
  letter-spacing: -0.03em;
  color: #fff;
  pointer-events: none;
  user-select: none;
}

.fourth_flex {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.fourth_flex_item {
  border-radius: 15px;
  border: 1px solid;
  border-image-source: linear-gradient(3.58deg, #0D0D0D 46.72%, rgba(115, 115, 115, 0.37) 96.96%);
  display: flex;
  align-items: center;
  padding: 62px 20px 76px 20px;
  flex-direction: column;
  background-image: url(./img/img/fourth-bg_def.png);
  width: calc(50% - 6px);
  transition: .6s;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fourth_flex_item:hover {
  background-image: url(./img/img/fourth-bg.png);
}

.fourth_flex_item:hover .fourth_flex_item_button {
  background: rgba(255, 255, 255, 0.25);
}

.fourth_flex_item_icon {
  width: 78px;
  height: 78px;
  border: 1px solid #3B3B3B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
}

.fourth_flex_item_button {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 97%;
  color: #fff;
  height: 46px;
  font-family: 'IBM Plex Mono';
  font-weight: 500;
  font-size: 15px;
  line-height: 97%;
  text-align: center;
  width: 254px;
  transition: .6s;
}

.fourth_flex_item_tittle {
  font-family: 'IBM Plex Mono';
  font-weight: 500;
  font-size: 25px;
  line-height: 97%;
  text-align: center;
  color: #fff;
  margin: 38px 0 29px 0;
  pointer-events: none;
  user-select: none;
}

.fourth_flex_item p {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 15px;
  line-height: 129%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.64 !important;
  max-width: 315px;
  width: 100%;
  margin: 0 auto 90px auto;
  pointer-events: none;
  user-select: none;
}

.fifth_flex {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.fifth_flex_item {
  width: calc(100%/3 - 8px);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid;
  background-image: url(./img/img/fifth1.png);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  border-image-source: linear-gradient(3.58deg, #0D0D0D 46.72%, rgba(115, 115, 115, 0.37) 96.96%);
  height: 422px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 40px;
  transition: .3s;
}

.fifth_flex_item:hover {
  background-image: url(./img/img/fifth1-h.png);
}

.fifth_flex_item span {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 20px;
  line-height: 101%;
  letter-spacing: -0.03em;
  color: #fff;
  pointer-events: none;
  user-select: none;
}

.fifth_flex_item p {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 15px;
  line-height: 101%;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 18px;
  opacity: .55;
  pointer-events: none;
  user-select: none;
}

.fifth_flex .fifth_flex_item:nth-child(2) {
  background-image: url(./img/img/fifth2.png);
}

.fifth_flex .fifth_flex_item:nth-child(2):hover {
  background-image: url(./img/img/fifth2-h.png);
}

.fifth_flex .fifth_flex_item:nth-child(3) {
  background-image: url(./img/img/fifth3.png);
}

.fifth_flex .fifth_flex_item:nth-child(3):hover {
  background-image: url(./img/img/fifth3-h.png);
}

.fifth_flex .fifth_flex_item:nth-child(4) {
  background-image: url(./img/img/fifth4.png);
  width: calc(60% - 6px);
}

.fifth_flex .fifth_flex_item:nth-child(4):hover {
  background-image: url(./img/img/fifth4-h.png);
}

.fifth_flex .fifth_flex_item:nth-child(5) {
  background-image: url(./img/img/fifth5.png);
  width: calc(40% - 6px);
  box-shadow: 0px 26.65px 49.15px 0px #000000;
}

.fifth_flex .fifth_flex_item:nth-child(5):hover {
  background-image: url(./img/img/fifth5-h.png);
}

.last {
  margin-top: 30px;
  background-image: url(./img/img/last-bg1.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.last .container {
  height: 829px;
  padding-top: 230px;
}

.last_tittle {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 45px;
  line-height: 101%;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.93);
  pointer-events: none;
  user-select: none;
}

.last_subtittle {
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 45px;
  line-height: 101%;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.43);
  margin: 11px 0 40px 0;
  pointer-events: none;
  user-select: none;
}

.last span.hacking-animation__character {
  padding-left: 0px;
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  font-size: 17px;
  line-height: 250%;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.93);
  position: relative;
}


footer {
  height: 306px;
  width: 100%;
  padding-top: 55px;
}

footer .container {
  display: flex;
  justify-content: space-between;
}

.footer_item_left {
  width: 220px;
}

.footer_item_left p {
  margin: 50px 0 5px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 106%;
  color: #FFFFFF;
  opacity: .54;
  user-select: none;
}

.footer_item_left a:nth-child(3) {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 106%;
  color: #FFFFFF;
  opacity: .54;
  text-decoration: underline;
}

.footer_item_center {
  width: 450px;
  display: flex;
  justify-content: space-between;
}

.footer_item_center_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_item_center_item a {
  font-family: 'IBM Plex Mono';
  font-weight: 500;
  font-size: 16px;
  line-height: 112.99999999999999%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.footer_item_right .header_right_button {
  width: 273px;
  height: 45px;
}

.hacking-animation {
  height: 165px;
  position: relative;
  overflow: hidden;
  max-width: 380px;
}

.hacking-animation__text {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  font-size: 17px;
  line-height: 250%;
  letter-spacing: -0.03em;
  height: 210px;
  pointer-events: none;
  user-select: none;
  color: #FFFFFF;
}

.hacking-animation__character {
  animation: type 500ms linear;
  color: #fff;
  pointer-events: none;
  user-select: none;
}


@keyframes type {
  0% {
    background: #FFF;
    color: #FFF;
  }

  5% {
    background: transparent;
    color: #FFF;
  }

  100% {
    background: transparent;
    color: #fff;
  }

}


.main_flex_text {
  position: absolute;
  width: 100%;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 600px;
  letter-spacing: -0.04em;
  top: 0px;
  background-image: url(./img/img/main-bg-text1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  height: 976px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 780px;
  z-index: -1;
  left: -20px;
  overflow: hidden;
  transition: .5s;
}

#text1 {
  transform: translate(var(--offset-x, 0), var(--offset-y, 0));
  filter: hue-rotate(var(--offset-z));
  transition: transform .3s ease;
}

/*--
#text2 {
  transform: translate(var(--offset-x,0), var(--offset-y,0));
  filter: hue-rotate(30deg); 
  transition: transform .3s ease;
  left: -50px;
  display: none;
}
#text3 {
  transform: translate(var(--offset-x,0), var(--offset-y,0));
  filter: hue-rotate(20deg); 
  transition: transform .3s ease;
  display: none;
}


.main_flex_text::before,
.main_flex_text::after {
  content: "IDELETR";
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./img/img/main-bg-text1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 1;
}

.main_flex_text::before {
  z-index: -1;
  mix-blend-mode: difference;
  transform: translate(var(--offset-x1, 0), var(--offset-y1, 0));
  filter: hue-rotate(20deg);

}

.main_flex_text::after {
  z-index: -2;
  mix-blend-mode: multiply;
  transform: translate(var(--offset-x2, 0), var(--offset-y2, 0));
  filter: hue-rotate(-20deg);
}

--*/


.header_burger {
  display: none;
}

.second::after {
  display: none;
}

.second h2 {
  overflow: hidden;
  margin-bottom: 0px !important;
}

.tittle_animation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 110px;
}

.tittle_animation::after {
  content: "";
  background-color: #010101;
  width: 50%;
  left: 0;
  height: 120%;
  z-index: 2;
  position: absolute;
  top: 0;
}

.tittle_animation::before {
  content: "";
  background-color: #010101;
  width: 50%;
  right: 0;
  height: 120%;
  z-index: 2;
  position: absolute;
  top: 0;
}


.tittle_animation._animation::after {
  width: 50%;
  animation: text-animation 1s ease-in-out .5s forwards;
}

.tittle_animation._animation::before {
  width: 50%;
  animation: text-animation 1s ease-in-out .5s forwards;
}

@keyframes text-animation {
  0% {
    width: 50%;
  }

  100% {
    width: 0px;
  }
}

.second_flex_item span {
  opacity: 0;
  transform: translateY(-30px);
}

.second_flex_item._animation span {
  animation: title-animation 1s ease-in-out 1.5s forwards;
}

@keyframes title-animation {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.second_flex_item img {
  clip-path: inset(50% 100% 50% 0px);
}

.second_flex_item._animation img {
  animation: img-animation 1s ease-in-out 1.5s forwards;
}

@keyframes img-animation {
  0% {
    clip-path: inset(50% 100% 50% 0px);
  }

  100% {
    clip-path: inset(0% 0% 0% 0px);
  }
}

.second_flex_item a {
  clip-path: inset(50% round 50%);
}

.second_flex_item._animation a {
  animation: link-animation 1s ease-in-out 1.5s forwards;
}

@keyframes link-animation {
  0% {
    clip-path: inset(50% round 50%);
  }

  100% {
    clip-path: inset(0% round 0%);
  }
}


.second_flex_item .second_flex_item-hover {
  clip-path: inset(0% 0% 100% 0px);
}

.second_flex_item._animation .second_flex_item-hover {
  animation: box-animation 1.5s ease-in-out .5s forwards;
}



@keyframes border-animation {
  0% {
    border-color: transparent;
  }

  100% {
    border-color: #393939;
  }
}

@keyframes border-animation1 {
  0% {
    border-bottom-color: transparent;
  }

  100% {
    border-bottom-color: #393939;
  }
}

@keyframes border-animation3 {
  0% {
    border-bottom-color: transparent;
  }

  100% {
    border-bottom-color: #393939;
  }
}

@keyframes border-animation2 {
  0% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }

  100% {
    border-right-color: #393939;
    border-bottom-color: #393939;
    border-left-color: #393939;
  }
}

@keyframes border-animation4 {
  0% {}

  100% {}
}

@keyframes border-animation5 {
  0% {
    border-right-color: transparent;
    border-left-color: transparent;
  }

  100% {
    border-right-color: #393939;
    border-left-color: #393939;
  }
}

@keyframes border-animation6 {
  0% {}

  100% {}
}

.second_flex .second_flex_item._animation:nth-child(1) {
  animation: border-animation1 1s ease-in-out 1.5s forwards;
}

.second_flex .second_flex_item._animation:nth-child(3) {
  animation: border-animation3 1s ease-in-out 1.5s forwards;
}

.second_flex .second_flex_item._animation:nth-child(2) {
  animation: border-animation2 1s ease-in-out 1.5s forwards;
}

.second_flex .second_flex_item._animation:nth-child(4) {
  animation: border-animation4 1s ease-in-out 1.5s forwards;
}

.second_flex .second_flex_item._animation:nth-child(5) {
  animation: border-animation5 1s ease-in-out 1.5s forwards;
}

.second_flex .second_flex_item._animation:nth-child(6) {
  animation: border-animation6 1s ease-in-out 1.5s forwards;
}

.second_flex .second_flex_item:nth-child(1) {
  border-left-color: transparent;
  border-right: none;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.second_flex .second_flex_item:nth-child(1):hover {
  border-left: 1px solid #393939 !important;
  border-top: 1px solid #393939 !important;
}

.second_flex .second_flex_item:nth-child(3) {
  border-left: none;
  border-right-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.second_flex .second_flex_item:nth-child(3):hover {
  border-right: 1px solid #393939 !important;
  border-top: 1px solid #393939 !important;
}

.second_flex .second_flex_item:nth-child(2) {
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.second_flex .second_flex_item:nth-child(2):hover {
  border-top: 1px solid #393939 !important;
}

.second_flex .second_flex_item:nth-child(4) {
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-right: none;
  border-top: none;
}

.second_flex .second_flex_item:nth-child(4):hover {
  border-left: 1px solid #393939 !important;
  border-bottom: 1px solid #393939 !important;
}

.second_flex .second_flex_item:nth-child(6) {
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left: none;
  border-top: none;
}

.second_flex .second_flex_item:nth-child(6):hover {
  border-right: 1px solid #393939 !important;
  border-bottom: 1px solid #393939 !important;
}

.second_flex .second_flex_item:nth-child(5) {
  border-bottom-color: transparent;
  border-top: none;
  border-right-color: transparent;
  border-left-color: transparent;
}

.second_flex .second_flex_item:nth-child(5):hover {
  border-bottom-color: #393939 !important;
}

.third_flex_center {
  clip-path: inset(0% 0% 100% 0px);
}

.third_flex_center._animation {
  animation: box-animation 1.5s ease-in-out .5s forwards;
}

.third_flex_left .third_flex_item {
  clip-path: inset(0% 0% 100% 0px)
}

.third_flex_left._animation .third_flex_item {
  animation: box-animation 1.5s ease-in-out .5s forwards;
}

.third_flex_left .third_flex_item svg {
  clip-path: inset(0% 100% 0% 0px)
}

.third_flex_left._animation .third_flex_item svg {
  animation: svg-animation .6s ease-in-out 1.6s forwards;
}

.third_flex_left .third_flex_item span {
  clip-path: inset(0% 100% 0% 0px)
}

.third_flex_left._animation .third_flex_item span {
  animation: svg-animation .6s ease-in-out 1.6s forwards;
}

@keyframes box-animation {
  0% {
    clip-path: inset(0% 0% 100% 0px);
  }

  100% {
    clip-path: inset(0% 0% 0% 0px);
  }
}

@keyframes svg-animation {
  0% {
    clip-path: inset(0% 100% 0% 0px);
  }

  100% {
    clip-path: inset(0% 0% 0% 0px);
  }
}

.fourth_flex_item {
  clip-path: inset(50% 0% 50% 0px);
}

.fourth_flex_item._animation {
  animation: block-animation 1s ease-in-out .5s forwards;
}

.main_flex_haker {
  clip-path: inset(50% 0% 50% 0px);
  transform: scale(1.02) translateX(-50%);
}

.main_flex_haker._animation {
  animation: haker-animation 1s ease-in-out forwards;
}

.main_flex_text {
  clip-path: inset(0% 50% 0% 50%);
}

.main_flex_text._animation {
  animation: start-animation .7s ease-in-out .4s forwards;
}

.text1,
.text2 {
  clip-path: inset(50% 0% 50% 0px);
}

.text1._animation,
.text2._animation {
  animation: block-animation .5s ease-in-out .6s forwards;
}

@keyframes start-animation {
  0% {
    clip-path: inset(0% 50% 0% 50%);
  }

  100% {
    clip-path: inset(0% 0% 0% 0%);
  }
}

@keyframes haker-animation {
  0% {
    clip-path: inset(50% 0% 50% 0px);
  }

  80% {
    clip-path: inset(0% 0% 0% 0px);
  }

  100% {
    clip-path: inset(0% 0% 0% 0px);
    transform: scale(1) translateX(-50%);
  }
}

@keyframes block-animation {
  0% {
    clip-path: inset(50% 0% 50% 0px);
  }

  100% {
    clip-path: inset(0% 0% 0% 0px);
  }
}

.fourth_flex_item .fourth_flex_item_icon {
  clip-path: inset(50% round 50%);
}

.fourth_flex_item._animation .fourth_flex_item_icon {
  animation: round-animation .5s ease-in-out 1.2s forwards;
}

.fourth_flex_item._animation:hover .fourth_flex_item_icon {
  border-color: #9278A1;
}

@keyframes round-animation {
  0% {
    clip-path: inset(50% round 50%);
  }

  100% {
    clip-path: inset(0% round 0%);
  }
}

.fourth_flex_item .fourth_flex_item_button {
  clip-path: inset(50% round 50%);
}

.fourth_flex_item._animation .fourth_flex_item_button {
  animation: round-animation .5s ease-in-out 1.5s forwards;
}

.fourth_flex_item .fourth_flex_item_tittle {
  opacity: 0;
  transform: translateY(-30px);
}

.fourth_flex_item p {
  opacity: 0;
  transform: translateY(-30px);
}

.fourth_flex_item._animation p {
  animation: title-animation .5s ease-in-out 1.3s forwards;
}

.fourth_flex_item._animation .fourth_flex_item_tittle {
  animation: title-animation .5s ease-in-out 1.4s forwards;
}

.menu {
  display: none;
}

.menu.active {
  display: block;
  z-index: 99;
  height: 100svh;
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
}

.menu_wrap {
  background-image: url(./img/img/Menu.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 11px 0 25px 0;
  width: 100%;
}

.menu_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.menu_close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #FFFFFF33;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu_link {
  display: block;
  padding: 30px 0 25px 0;
  border-bottom: 1px solid #FFFFFF36;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  font-family: 'IBM Plex Mono';
  font-weight: 400;
  position: relative;
}

.menu_link::after {
  content: '';
  position: absolute;
  right: 17px;
  top: 32px;
  width: 12px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(./img/icon/arrow.svg);
}

.menu .header_right_button {
  display: flex !important;
  max-width: 390px;
  width: 100%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}

.menu .header_right_button.menu_button {
  margin-top: 35px;
}

.icon--mobile {
  display: none;
}

@media (max-width: 570px) {
  .main_link_item[data-type="reviews"] .icon--default {
    display: none;
  }

  .main_link_item[data-type="reviews"] .icon--mobile {
    display: inline;
  }
}



@media screen and (max-width: 1560px) {
  .container {
    padding: 0 35px;
    width: auto;
  }

  .main_flex_text {
    padding: 0 35px;
    width: 100%;
    font-size: 560px;
  }

  .last {
    background-position: top left;
    background-size: cover;
  }


}

@media screen and (max-width: 1440px) {
  .second_flex_item img {
    width: calc(100% - 60px);
  }

  .second_flex_item {
    height: 410px;
  }

  .third_flex_item {
    height: 200px;
  }

  .third_flex_center_line {
    bottom: 340px;
  }

  .last .container {
    height: 729px;
    padding-top: 130px;
  }

  .main_link_item {
    height: 160px;
  }

  .main_flex h1 {
    font-size: 40px;
    padding-top: 124px;
    width: 471px;
  }

  .main_flex_text {
    height: 833px;
    line-height: 650px;
    font-size: 530px;
  }

}

@media screen and (max-width: 1350px) {
  .main_flex_text {
    font-size: 500px;
    line-height: 620px;
  }

}

@media screen and (max-width: 1270px) {
  .main_flex_text {
    font-size: 470px;
    line-height: 620px;
    height: 733px;
  }

  .main_flex {
    height: calc(100vh - 235px);
  }

  .main_flex h1 {
    padding-top: 50px;
  }
}

@media screen and (max-width: 1210px) {
  .main_flex h1 {
    font-size: 35px;
    padding-top: 50px;
    width: 416px;
  }

  .main_flex_text {
    font-size: 440px;
    line-height: 600px;
    height: 703px;
    left: -10px;
  }

  .main_flex {
    height: calc(100vh - 205px);
  }

  .second_flex_item span {
    font-size: 20px;
  }

  .second_flex_item {
    height: 390px;
  }

  .second h2,
  .third h2,
  .fourth h2,
  .fifth h2 {
    font-size: 40px;
    margin-bottom: 80px;
  }

  .tittle_animation {
    margin-bottom: 80px;
  }

  .third_flex_item {
    height: 170px;
  }

  .third_flex_center_line {
    bottom: 290px;
  }

  .last .container {
    height: 529px;
    padding-top: 100px;
  }

  .main_link_item {
    height: 130px;
  }

  .last_tittle {
    font-size: 35px;
  }

  .last_subtittle {
    font-size: 35px;
    margin: 11px 0 30px 0;
  }

  .main_link_item span {
    font-size: 20px;
    margin-top: 25px;
  }

  .footer_item_center {
    width: 350px;
  }

  nav {
    width: 580px;
  }
}

@media screen and (max-width: 1100px) {
  .main_flex_text {
    font-size: 400px;
  }

  .main_flex h1 {
    font-size: 32px;
    padding-top: 50px;
    width: 380px;
  }

  nav {
    width: 500px;
  }
}

@media screen and (max-width: 1000px) {
  .main_flex_text {
    font-size: 350px;
    line-height: 520px;
    height: 588px;
  }

  .second_flex_item a p {
    font-size: 12px;
  }

  .main_link_item p img {
    transform: translate(-10%, -10%);
  }

  .fourth_flex_item_button {
    background-color: transparent;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .fourth_flex_item:hover .fourth_flex_item_button {
    background-color: transparent;
  }

  .main_flex h1 {
    font-size: 25px;
    padding-top: 40px;
    width: 300px;
  }

  .second_flex_item span {
    font-size: 17px;
    margin-bottom: 40px;
    padding-top: 25px;
  }

  .second_flex_item {
    height: 340px;
  }

  .second h2,
  .third h2,
  .fourth h2,
  .fifth h2 {
    font-size: 35px;
    margin-bottom: 50px;
  }

  .tittle_animation {
    margin-bottom: 50px;
  }

  .fourth .tittle_animation {
    margin-bottom: 50px;
  }

  .third_flex_item {
    height: 150px;
    padding: 15px;
  }

  .third_flex_center_line {
    bottom: 258px;
    left: -12px;
    width: calc(100% + 24px);
    height: 4px;
    border-radius: 4px;
  }

  .fourth_flex_item_tittle {
    font-size: 20px;
    margin: 30px 0 25px 0;
  }

  .fifth_flex_item {
    width: calc(100% / 2 - 8px);
    height: 350px;
  }

  .fifth_flex .fifth_flex_item:nth-child(1) {
    order: 1;
  }

  .fifth_flex .fifth_flex_item:nth-child(2) {
    order: 2;
  }

  .fifth_flex .fifth_flex_item:nth-child(3) {
    order: 3;
  }

  .fifth_flex .fifth_flex_item:nth-child(4) {
    order: 5;
    width: 100%;
  }

  .fifth_flex .fifth_flex_item:nth-child(5) {
    order: 4;
    width: calc(100% / 2 - 8px);
  }

  .second,
  .third,
  .fourth,
  .fifth {
    position: relative;
    margin-top: 120px;
  }

  .footer_item_center {
    width: 146px;
    order: 3;
  }

  .footer_item_center .footer_item_center_item:nth-child(1) {
    display: none;
  }

  .footer_item_left {
    width: 146px;
  }

  footer {
    height: 225px;
    position: relative;
  }

  .footer_item_left p {
    margin: 0;
    font-size: 12px;
    position: absolute;
    right: 35px;
    bottom: 20px;
  }

  .footer_item_left a:nth-child(3) {
    position: absolute;
    left: 35px;
    bottom: 20px;
  }

  .last_tittle {
    font-size: 30px;
  }

  .last_subtittle {
    font-size: 30px;
  }

  nav {
    display: none;
  }

  .header_right_button {
    display: none;
  }

  footer .header_right_button {
    display: flex;
  }

  .header_right {
    width: auto;
  }

  .main_flex_haker {
    width: 100%;
    height: 100%;
    max-width: inherit;
  }

  .header_burger {
    display: flex;
    margin-left: 23px;
  }

}

@media screen and (max-width: 900px) {
  .main_flex_text {
    font-size: 310px;
    line-height: 520px;
    height: 588px;
  }

}

@media screen and (max-width: 850px) {
  .second_flex_item {
    width: 50%;
  }
  .main_link_item{
    background-image: url(./img/img/link_bg_planshet.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .second_flex_item img {
    width: calc(100% - 50px);
  }

  @keyframes border-animation1 {
    0% {
      border-left-color: transparent;
      border-right: 1px solid transparent;
      border-top-color: transparent;
    }

    100% {
      border-left-color: #393939;
      border-right: 1px solid #393939;
      border-top-color: #393939;
      border-bottom-color: #393939;
    }
  }

  @keyframes border-animation3 {
    0% {
      border-left: 1px solid transparent;
      border-right-color: transparent;
    }

    100% {
      border-left: 1px solid #393939;
      border-right-color: #393939;
      border-bottom-color: #393939;
    }
  }

  @keyframes border-animation2 {
    0% {
      border-top-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
    }
  }

  @keyframes border-animation4 {
    0% {
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right: 1px solid transparent;
    }

    100% {
      border-bottom-color: #393939;
      border-right: 1px solid #393939;
    }
  }

  @keyframes border-animation5 {
    0% {
      border-right-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
    }

    100% {
      border-right-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
    }
  }

  @keyframes border-animation6 {
    0% {
      border-bottom-color: transparent;
    }

    100% {
      border-bottom-color: #393939;
      border-right-color: #393939;
    }
  }


  .second_flex .second_flex_item:nth-child(1) {
    border-left-color: transparent;
    border-right: 1px solid transparent;
    border-top-color: transparent;
  }

  .second_flex .second_flex_item:nth-child(2) {
    border-top-color: transparent;
    border-left: none;
  }

  .second_flex .second_flex_item:nth-child(3) {
    border-left: 1px solid transparent;
    border-right-color: transparent;
    border-top: none;
  }

  .second_flex .second_flex_item:nth-child(5) {
    border-bottom-color: transparent;
    border-top: none;
  }

  .second_flex .second_flex_item:nth-child(4) {
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right: 1px solid transparent;
    border-top: none;
  }

  .second_flex .second_flex_item:nth-child(6) {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left: none;
    border-top: none;
  }

  .second h2,
  .third h2,
  .fourth h2,
  .fifth h2 {
    font-size: 23px;
  }

  .third_flex_item span {
    font-size: 15px;
  }

  .third_flex_item {
    height: 140px;
  }

  .third_flex_item svg {
    transform: scale(.76);
  }

  .third {
    padding: 50px 0 80px 0;
  }

  .second,
  .third,
  .fourth,
  .fifth {
    margin-top: 80px;
  }

  .third_flex_center_line {
    bottom: 240px;
    left: -8px;
    width: calc(100% + 16px);
  }

  .third_flex {
    gap: 8px;
  }

  .third_flex_left {
    width: calc(100% / 3 - 5px);
    gap: 8px;
  }

  .fourth_flex_item {
    border-radius: 7px;
    border-image-source: linear-gradient(3.58deg, #0D0D0D 46.72%, rgba(115, 115, 115, 0.37) 96.96%);
    padding: 52px 20px 76px 20px;
    background-image: url(./img/img/fourth_bg_def-planshet.png);
    width: calc(50% - 4px);
  }

  .fourth_flex_item:hover {
    background-image: url(./img/img/fourth_bg-planshet.png);
  }

  .fourth_flex_item_icon {
    width: 52px;
    height: 52px;
  }

  .fourth_flex_item_icon svg {
    width: 14px;
    height: 14px;
  }

  .fourth_flex .fourth_flex_item:nth-child(2) svg {
    width: 16px;
    height: 16px;
  }

  .fourth_flex_item_tittle {
    font-size: 17px;
    margin: 25px 0 25px 0;
  }

  .fourth_flex_item p {
    margin: 0 auto 50px auto;
  }

  .fifth_flex_item {
    width: calc(100% / 2 - 4px);
    height: 330px;
    padding: 20px;
  }

  .fifth_flex {
    gap: 8px;
  }

  .fifth_flex .fifth_flex_item:nth-child(5) {
    order: 4;
    width: calc(100% / 2 - 4px);
  }

  .fifth_flex_item span {
    font-size: 17px;
  }

  .fifth_flex_item p {
    font-size: 14px;
    margin-top: 20px;
    min-height: 40px;
    max-width: 220px;
  }

  .main_link_item span {
    font-size: 15px;
    margin-top: 20px;
  }

  .main_link_item {
    height: 100px;
  }

  .last_tittle {
    font-size: 23px;
  }

  .last_subtittle {
    font-size: 23px;
  }

  .last .container {
    height: 429px;
    padding-top: 100px;
  }

  .last {
    background-image: url(./img/img/last-bg-pl.png);
  }

  .main_link .main_link_item:nth-child(1) svg {
    width: 13px;
    height: 12px;
  }

  .main_link .main_link_item:nth-child(2) svg {
    width: 14px;
    height: 12px;
  }

  .main_link .main_link_item:nth-child(3) svg {
    width: 34px;
    height: 11px;
  }

  .main_flex h1 {
    font-size: 23px;
    padding-top: 50px;
    width: 271px;
  }

  .main_flex {
    height: calc(100vh - 170px);
  }

  header {
    height: 50px;
  }

  .first_logo img {
    width: 65px;
    height: 14px;
  }

  .main_flex_text {
    font-size: 300px;
    line-height: 400px;
    height: 485px;
  }



}

@media screen and (max-width: 768px) {
  .second_flex_item {
    height: 320px;
  }

  .main_flex_text {
    font-size: 250px;
    height: 485px;
  }
  footer a.first_logo{
    width: 84px;
    height: 17px;
  }

}

@media screen and (max-width: 710px) {
  .main_flex h1 {
    width: 243px;
  }
}

@media screen and (max-width: 650px) {
  .second_flex {
    display: none;
  }

  .second_flex.mobile {
    display: block;
    padding-left: 16px;
    width: calc(100% - 16px);
  }

  .second_flex_item {
    width: 266px;
  }

  @keyframes border-animation1 {
    0% {
      border-top-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
    }
  }

  @keyframes border-animation3 {
    0% {
      border-top-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
      border-top: 1px solid #393939;
    }
  }

  @keyframes border-animation2 {
    0% {
      border-top-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
      border-left: 1px solid #393939;
    }
  }

  @keyframes border-animation4 {
    0% {
      border-top-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
      border-top: 1px solid #393939;
    }
  }

  @keyframes border-animation5 {
    0% {
      border-top-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
      border-top: 1px solid #393939;
    }
  }

  @keyframes border-animation6 {
    0% {
      border-top-color: transparent;
      border-left-color: transparent;
      border-bottom-color: transparent;
      border-right-color: transparent;
    }

    100% {
      border-top-color: #393939;
      border-left-color: #393939;
      border-bottom-color: #393939;
      border-right-color: #393939;
      border-top: 1px solid #393939;
      border-left: 1px solid #393939;
    }
  }

  .mobile .second_flex_item {
    border: 1px solid #393939;
    border-left-color: #393939;
    border-top-color: #393939;
  }

  .second_flex .second_flex_item:nth-child(1) {
    border-left-color: transparent;
    border-top-color: transparent;
  }

  .second_flex .second_flex_item:nth-child(2) {
    border-top-color: transparent;
  }

  .second_flex .second_flex_item:nth-child(3) {
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }

  .second_flex .second_flex_item:nth-child(4) {
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }

  .second_flex .second_flex_item:nth-child(5) {
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }

  .second_flex .second_flex_item:nth-child(6) {
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-right-color: transparent;
  }

  .mobile .second_flex_item .second_flex_item-hover::after {
    opacity: 0;
    top: 0;
  }

  .mobile .second_flex_item:hover .second_flex_item-hover::after {
    opacity: 1;
  }

  .second_flex_item_dot {
    opacity: 1;
  }

  .swiper-wrapper {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .container {
    padding: 0 16px;
  }

  .third_flex_center {
    min-width: 268px;
  }

  .fifth_flex_item span {
    max-width: 170px;
  }

  .footer_item_left {
    order: 1;
    width: 120px;
  }

  .footer_item_right {
    order: 2;
  }

  footer .container {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer_item_center {
    width: 100%;
    order: 3;
  }

  footer {
    height: auto;
    padding-bottom: 70px;
  }

  .footer_item_center .footer_item_center_item:nth-child(1) {
    display: flex;
  }

  .footer_item_left a:nth-child(3) {
    left: 16px;
  }

  .footer_item_left {
    right: 16px;
  }

  .main_flex_text {
    font-size: 220px;
    height: 495px;
  }

  .second_flex_item .second_flex_item_dot {
    opacity: 0;
  }

  .second_flex_item._animation .second_flex_item_dot {
    animation: dot-animation 0.3s ease-in-out 1.6s forwards;
  }

  @keyframes dot-animation {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}

@media screen and (max-width: 600px) {
  .main_flex_text {
    font-size: 250px;
  }
}

@media screen and (max-width: 575px) {
  .third_flex_left {
    width: calc(50% - 3px);
    gap: 6px;
  }

  .main_link .main_link_item:nth-child(3) svg {
    width: 24px;
    height: 16px;
  }

  .fifth_flex_item p {
    font-size: 15px;
    margin-top: 19px;
    min-height: 38px;
  }

  .fourth_flex_item_button {
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
  }

  .fourth_flex_item {
    border-radius: 15px;
  }

  .fourth_flex_item:hover .fourth_flex_item_button {
    background: rgba(255, 255, 255, 0.25);
  }

  .fourth_flex_item_tittle {
    font-size: 20px;
  }

  .third_flex {
    flex-wrap: wrap;
    gap: 20px 6px;
  }

  .third_flex_center {
    width: 100%;
    order: 3;
  }

  .third_flex .third_flex_left:nth-child(3) {
    margin-top: 30px;
  }

  .third_flex_center_line {
    display: none;
  }

  .fourth_flex {
    flex-wrap: wrap;
  }

  .fourth_flex_item {
    width: 100%;
  }

  .fifth_flex_item {
    width: 100% !important;
  }

  .fifth_flex_item span {
    font-size: 20px;
    max-width: 220px;
  }

  .footer_item_left p {
    right: initial;
    bottom: 40px;
    left: 16px;
  }

  footer {
    padding-bottom: 90px;
  }

  .main_link {
    flex-direction: column;
    gap: 8px;
  }

  .main_link_item {
    width: calc(100% - 32px);
    flex-direction: row-reverse;
    gap: 10px;
    height: 67px;
    border-top: 1px solid #FFFFFF2E !important;
    border-bottom: none !important;
    background-image: url(./img/img/bg-link.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-left: none !important;
    border-right: none !important;
  }

  .main_link_item::after,
  .main_link_item::before {
    display: none !important;
  }

  .main_link_item span {
    margin-top: 0px;
  }

  .last {
    background-image: url(./img/img/last-bg-m.png);
    background-position: center;
  }

  .main_link {
    padding-top: 510px;
  }

  .main_flex_text {
    display: none;
  }

  .first {
    background-image: url(./img/img/bg-main-m.png);
    background-position: top;
    background-size: 100%;
  }

  .main_flex_haker {
    display: none;
  }

  header {
    backdrop-filter: none;
    background: none;
  }

  .main_flex h1 {
    width: 100%;
    font-size: 40px;
    padding-top: 0px;
    line-height: 90%;
  }

  .main_flex {
    flex-direction: column;
    height: auto;
    gap: 18px;
  }

  .main_flex h1:nth-child(2) {
    font-size: 27px;
    color: rgba(255, 255, 255, 0.48);
  }

  .main .container {
    position: relative;
    height: 590px;
  }

  .main_flex {
    position: absolute;
    bottom: 0;
    left: 16px;
    width: calc(100% - 32px);
  }

  .main {
    position: relative;
    height: calc(100vh - 50px);
  }

  .main .main_link {
    padding-top: 40px;
  }

  .second::after {
    display: none;
  }

  .second {
    padding-top: 240px;
  }

  .third {
    padding: 0;
  }

  .first {
    z-index: 2;
    overflow: initial;
  }

  .fourth .tittle_animation {
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 40px;
  }

  .second h2,
  .third h2,
  .fourth h2,
  .fifth h2 {
    font-size: 40px;
    text-align: left;
    line-height: 90%;
  }

  .last .container {
    height: 309px;
    padding-top: 40px;
  }

  .last_tittle {
    font-size: 31px;
  }

  .last_subtittle {
    font-size: 31px;
    margin: 6px 0 25px 0;
    color: #fff;
  }

  .hacking-animation__text {
    font-size: 15px;
    line-height: 150%;
  }


  .last span.hacking-animation__character {
    font-size: 15px;
    line-height: 200%;
  }

  .hacking-animation {
    height: 190px;
  }

  .header_burger svg {
    width: 15px;
    height: 10px;
  }

  .header_burger {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    border: 1px solid #FFFFFF40;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header {
    height: 73px;
  }

  .main_link_item:hover p {
    display: none;
  }

  .main_link_item:nth-child(1) {
    order: 3;
  }

  .main_link_item:nth-child(2) {
    order: 1;
  }

  .main_link_item:nth-child(3) {
    order: 2;
  }

  .first_logo img {
    width: 86px;
    height: 18px;
  }

  .text1,
  .text2 {
    padding: 5px 0;
  }
  footer a.first_logo{
    width: 110px;
    height:23px;
  }
 
}

@media screen and (max-width: 450px) {
  .footer_item_right {
    width: 100%;
    height: 45px;
  }

  .footer_item_right .header_right_button {
    width: 100%;
    height: 45px;
  }

  .footer_item_left {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .main_link {
    padding-top: 410px;
  }

}