/* * Header */

.header {
  padding-bottom: 20px;
  text-align: center;
  padding-top: 20px;
  background-color: #123525;
}

.logo-image {
  width: 90px;
}

/* * Company */

.company {
  padding: 80px 0;
  text-align: center;
}

.company-block {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.company-text-block {
  max-width: 800px;
}

.company-title {
  padding: 20px 0;
  line-height: 64px;
  font-weight: 700;
  font-size: 32px;
  color: #525252;
  max-width: 800px;
  margin: 0 auto;
}

.company-banner {
  max-width: 300px;
  border-radius: 30px;
  margin-top: 20px;
}

/* * About  */

.about {
  background-color: #c6cdc6;
  padding-bottom: 40px;
}

.about-text-block {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #3e3e3e;
}

.about-title,
.services-title {
  padding: 40px 0;
  text-align: center;
}

/* * Services */

.services-list {
  margin-bottom: 40px;
  text-align: center;
}

.services-list li {
  padding: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e9e9e9;
}

.services-item-title {
  font-weight: 700;
  color: #000;
}

.services-title-list {
  margin-top: 20px;
  padding-top: 10px;
}

/* * Footer */

.footer {
  margin-top: 60px;
  background: #d4d0d0;
  padding: 30px 0;
  font-size: 16px;
}

.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 100px;

  @media (max-width: 768px) {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 50px;
  }
}

.footer-contacts-block {
  min-width: 300px;
}

.footer-contacts {
  color: #167430;
  transition: 0.3s ease;
  font-weight: 600;
}

.footer-contacts:hover {
  color: #0b5c22;
}
