* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  padding: 14px 20px 15px;
  font-family: "Gilroy", Tahoma, Geneva, sans-serif;
  color: #fafafa;
  background-color: #000000;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 251px;
  height: 40px;
}
.header__buttonGroup {
  display: flex;
}
.header__button + .header__button {
  margin-left: 10px;
}
.button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
}
.button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  height: 50px;
  padding: 0 30px;
  font-family: "Gilroy", Tahoma, Geneva, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #fafafa;
  background-color: #333333;
  border-radius: 24px;
  cursor: pointer;
  text-decoration: none;
}
.button__link_bright {
      margin-right: 20px;
  color: #000000;
  background-color: #50f000;
}
.button__link:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}
.content {
  padding: 20px 52px 90px;
  font-size: 24px;
}
.content__title {
  margin: 0;
  padding-bottom: 30px;
  font-weight: 900;
  font-size: 56px;
  font-family: "Gilroy", Tahoma, Geneva, sans-serif;
  line-height: 1.3;
  text-transform: uppercase;
}
.content__article {
  font-size: 24px;
  font-family: "Gilroy", Tahoma, Geneva, sans-serif;
  line-height: 1.3;
  font-weight: 200;
}
.content__paragraph + .content__paragraph {
  margin-top: 20px;
  font-family: "Gilroy", Tahoma, Geneva, sans-serif;
}
.content__image {
  width: 100%;
  min-width: 300px;
  height: 100%;
}
.content__image_mob {
  margin: 30px auto 0;

}

.footer {
  display: flex;
  justify-content: space-between;
}
.footer__iconsGroup {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__iconsGroup_wrapped {
  gap: 0px;
}
@media screen and (max-width: 900px) {
  body {
    padding: 14px 8px 30px;
  }
  .header__logo {
    width: 116px;
    height: 18px;
  }
  .header__button + .header__button {
    margin-left: 5px;
  }
  .button__link {
    min-width: 55px;
    height: 20px;
    padding: 0 10px;
    font-size: 16px;
    font-size: 10px;
  }
  .content {
    padding: 0 0 72px;
  }
  .content__title {
    padding-top: 10px;
    font-size: 24px;
  }
  .content__article {
    font-size: 16px;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .footer__iconsGroup_wrapped {
    flex-wrap: wrap;
    justify-content: center;
  }
}
