.about-top {
  text-align: center;
  padding: 184px 0 64px 0;
  background: url(/img/top-bg.svg) bottom center no-repeat,
    linear-gradient(90deg, #eafff1 0%, #e0f6ff 100%);
}
.about-top__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-top__h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  margin-bottom: 32px;
  color: #000;
}
.about-top__link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 340px;
  background: linear-gradient(180deg, #fff 0%, #f3f3fd 100%);
  box-shadow: 0px 7px 11px rgba(0, 0, 0, 0.06), inset 0px 0px 8px #fff;
  border-radius: 120px;
  padding: 20px 40px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.2s;
}
.about-top__link:hover {
  background: #1ca345;
  box-shadow: 0px 7px 11px rgba(28, 163, 69, 0.24);
  color: #fff;
}
@media (max-width: 1000px) {
  .about-top {
    padding: 108px 0 54px;
    background: linear-gradient(90deg, #eafff1 0%, #e0f6ff 100%);
  }
  .about-top__h1 {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.4;
  }
  .about-top__link {
    padding: 20px 40px;
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 500px) {
  .about-top__h1 {
    font-weight: 500;
    font-size: 6.875vw;
    line-height: 1.4;
    margin: 0 0 16px;
  }
  .about-top__link{
    padding: 20px 16px;
    line-height: 24px;
    font-size: 14px;
  }
}
