.projects .hero {
  height: 100vh;
  position: relative;
  bottom: 0;
}

.projects .hero .backGround {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    165.02deg,
    #3f3e3e -13.02%,
    #181818 38.65%,
    #181818 100%
  );
  z-index: -2;
}

.projects .hero .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 30px;
  min-height: 550px;
  height: 80%;
  color: #ffffff;
  z-index: 4;
}

.projects .hero .container h2 {
  font-family: var(--open-sans);
  font-weight: 800;
  line-height: 50px;
  font-size: 40px;
  padding: 0;
  margin-bottom: 23px;
}

.projects .hero .container p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 25px;
}

.projects .hero .container .heroButton {
  display: flex;
  align-items: center;
}

.projects .hero .container .heroButton .line {
  background-color: #ffffff;
  height: 2px;
  margin-left: -30px;
  width: 100%;
}

@-webkit-keyframes ButtonMove {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 5px;
  }
  100% {
    margin-top: 0;
  }
}

@keyframes ButtonMove {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 5px;
  }
  100% {
    margin-top: 0;
  }
}

.projects .hero .button_container {
  position: relative;
  width: 54px;
  height: 54px;
  margin-right: 5px;
  margin-left: 20px;
}

.projects .hero .button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.projects .hero .button img {
  width: 17px;
  height: 22px;
  -webkit-animation: ButtonMove infinite 1s;
  animation: ButtonMove infinite 1s;
}

.projects .hero .button_back {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  top: 5px;
  left: 5px;
  z-index: -1;
}

.projects .list {
  position: relative;
}

.projects .list .container {
  padding: 65px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (min-width: 750px) {
  .projects .hero .container {
    margin: auto;
    padding: 0 50px;
    max-width: calc(var(--global_container_width) + 100px);
  }

  .projects .hero .container h2 {
    font-size: 70px;
    line-height: 70px;
    max-width: 400px;
    margin-bottom: 35px;
  }

  .projects .hero .container p {
    margin-bottom: 102px;
    font-size: 20px;
    line-height: 25px;
    max-width: 470px;
  }

  .projects .hero .heroButton {
    width: 200%;
    transform: translateX(-50%);
  }

  .projects .hero .button_container {
    width: 71px;
    height: 71px;
  }

  .projects .hero .button_container .button {
    width: 71px;
    height: 71px;
  }
  .projects .hero .button_container .button img {
    width: 22px;
    height: 29px;
  }

  .projects .hero .button_container .button_back {
    width: 71px;
    height: 71px;
  }

  .projects .list .container {
    margin: auto;
    padding: 150px 50px 150px 50px;
    max-width: calc(var(--global_container_width) + 100px);
    align-items: flex-start;
  }

  .projects .list .project_block__black:nth-child(2n) {
    margin-top: 50px;
  }
}
