header {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.header__btn {
  display: none;
  align-items: center;
  text-align: center;
  font-family: "AppleGothic";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #ffffff;
  background: #019ee2;
  border-radius: 35px;
  padding: 20px 30px;
  border: 2px solid #019ee2;
  transition: all 0.1s ease-in;
}
.header__btn:hover {
  background: rgba(1, 158, 226, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  border-color: #fff;
}
@media (max-width: 530px) {
  .header__btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
@media (max-width: 460px) {
  .header__btn {
    font-size: 14px;
    padding: 7px 15px;
  }
}

.home .header__btn {
  display: inline-flex;
}
