@charset "UTF-8";
.header__wrapper {
  display: flex;
  align-items: center;
  padding: 32px 0;
  justify-content: space-evenly;
}
.header__list {
  display: flex;
  gap: 50px;
  list-style: none;
}
.header__link {
  font-weight: 400;
  font-size: 32px;
  color: #000;
  text-decoration: none;
  list-style: none;
  transition: 0.3s;
  margin-bottom: 62px;
}
.header__link:hover {
  color: #635e6e;
}

.intro {
  text-decoration: none;
  padding-bottom: 121px;
}
.intro__wrapper {
  display: flex;
  align-items: center; /* Выравнивание по вертикали */
  justify-content: space-between;
  min-height: 100vh;
}
.intro__text {
  font-weight: 700;
  font-size: 128px;
  text-align: left; /* Текст слева */
  color: #191919;
  line-height: 1.1;
  margin-bottom: 40px;
  margin-left: 50px;
  padding-bottom: 103px;
}
.intro__link {
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  color: #fff;
  background-color: #191919;
  padding: 16px 27px 17px;
  width: 320px;
  height: 72px;
  border-radius: 50px;
  transition: 0.3s;
  margin-left: 52px;
  text-decoration: none;
}
.intro__link:hover {
  background-color: #333;
  transform: translateY(-5px);
}
.intro__right {
  flex: 1;
  max-width: 50%; /* Занимает половину ширины */
  display: flex;
  justify-content: flex-end; /* Картинка справа */
}
.intro__img {
  max-width: 100%;
  height: auto;
}

.info__wrapper {
  padding-left: 50px;
}
.info__title {
  display: flex;
  font-weight: 700;
  font-size: 64px;
  text-align: center;
  color: #000;
  padding-bottom: 43px;
}
.info__text {
  font-weight: 400;
  font-size: 32px;
  color: #191919;
}/*# sourceMappingURL=style.css.map */