.header-section {
  background: url("../images/header.webp") no-repeat;
  background-size: cover;
  padding-top: 54px;
  padding-bottom: 70px;
}

.header-section .section-container {
  text-align: center;
  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;
}

.header-section .section-container .header__link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 90%;
}

.header-section .section-container .header__link-block p {
  font-family: "Avenir", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
}

.header-section .section-container .header__link-block a {
  text-decoration: underline;
  font-weight: 500;
  color: #ffffff;
}

.header-section .section-container .header__logo-block {
  margin-top: 25px;
  max-width: 184px;
  min-height: 109px;
  -o-object-fit: cover;
  object-fit: cover;
}

.header-section .section-container .header__logo-block img {
  width: 100%;
  height: auto;
}

.header-section .section-container .header_text-block {
  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;
}

.header-section .section-container .header_text-block h2 {
  font-family: "Avenir", sans-serif;
  font-size: 80px;
  line-height: 1.125;
  font-weight: 500;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#A848D4), to(#00E5FF));
  background: linear-gradient(180deg, #A848D4, #00E5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 27px 0 44px 0;
}

.header-section .section-container .header_text-block p {
  font-family: "Avenir", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: #ffffff;
  width: 37%;
}

.header-section .section-container .get_button {
  margin-top: 46px;
  border: 2px solid #4BE5B6;
  border-radius: 36.52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 1.8333;
  font-weight: 700;
  color: #4BE5B6;
  padding: 7px 24px;
  font-family: "Avenir", sans-serif;
}

@media screen and (max-width: 1024px) {
  .header-section .section-container {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .header-section .section-container .header_text-block h2 {
    font-size: 60px;
  }

  .header-section .section-container .header_text-block p {
    width: 80%;
  }
}

@media screen and (max-width: 520px) {
  .header-section .section-container .header_text-block h2 {
    font-size: 40px;
  }

  .header-section .section-container .header_text-block p {
    font-size: 14px;
  }
}