.header {
  width: 100%;
  background-color: #fff;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  width: 120px;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__list-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-bottom: 4px;
}
.header__list-img {
  width: 24px;
  height: auto;
  display: block;
  transition: opacity 0.3s;
}
.header__list-img:hover {
  opacity: 0.7;
}

.fv__img {
  width: 100%;
}

.about {
  max-width: 800px;
  margin: 0 auto;
}
.about__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 60px;
}
.about__content {
  line-height: 1.8;
  font-size: 15px;
  color: #333;
}
.about__name {
  margin-bottom: 30px;
}
.about__info {
  margin-bottom: 30px;
}
.about__info address {
  font-style: normal;
}
.about__text {
  text-align: justify;
}

.works__title {
  text-align: center;
  margin-top: 3em;
  font-weight: 500;
  font-size: 36px;
}
.works__wrapper {
  margin: 0 auto;
  margin-top: 5em;
  width: 1000px;
}
.works__wrapper a {
  font-size: 24px;
  display: flex;
  justify-content: center;
  margin-top: 60px;
  text-decoration: underline;
}
.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.works__list img {
  width: 100%;
  height: auto;
  display: block;
}

.news__title {
  text-align: center;
  margin-top: 5em;
  font-weight: 500;
  font-size: 36px;
}
.news__wrapper {
  display: flex;
  justify-content: center;
  margin: 6em;
}
.news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 800px;
}
.news__item {
  display: flex;
  gap: 120px;
  padding: 10px 20px;
  line-height: 2.5;
  font-size: 18px;
  border-top: 1px solid rgba(111, 111, 111, 0.4588235294);
}
.news__item:last-child {
  border-bottom: 1px solid rgba(111, 111, 111, 0.4588235294);
}
.news a {
  font-size: 24px;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  text-decoration: underline;
}

.footer {
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-top: 18em;
}

.workspage .works {
  max-width: 1200px;
  margin: 0 auto;
}
.workspage .works__title {
  text-align: center;
  font-size: 28px;
  margin-top: 3em;
  margin-bottom: 5em;
}
.workspage .works__list {
  margin: auto 230px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 130px;
}
.workspage .works__img img {
  width: 100%;
  height: auto;
  display: block;
}
.workspage .works__name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}
.workspage .works__text {
  font-size: 12px;
  line-height: 1.6;
}

.newspage .news__title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 60px;
  font-weight: bold;
}
.newspage .news__list {
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
}
.newspage .news__item {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  gap: 105px;
}
.newspage .news__date {
  font-size: 14px;
}
.newspage .news__content {
  font-size: 14px;
}

.contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}
.contact__title {
  font-size: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__item {
  display: flex;
  align-items: flex-start;
}
.contact-form__label {
  width: 150px;
  text-align: left;
  font-size: 14px;
  padding-top: 10px;
}
.contact-form__input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}
.contact-form__input--textarea {
  height: 200px;
  resize: vertical;
}
.contact-form__actions {
  margin-top: 20px;
}
.contact-form__btn {
  background-color: #333;
  color: #fff;
  padding: 15px 80px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.3s;
}
.contact-form__btn:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */