.contact {
  background: #d3dcd8;
  padding: 0 0 80px;
}

.contact__container {
  width: 1000px;
  margin: -32px auto;
  background-color: hsl(152, 100%, 97%);
  border-radius: 24px;
  z-index: 111;
}

.contact__header {
  text-align: center;
  margin-bottom: 40px;
  background-color: #0fe47e;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  margin: 32px 31px;
}

.contact__title {
  font-size: 32px;
  color: white;
  font-weight: 400;
  position: relative;
}

.contact__title::after {
  content: url(../images/sub-title-2.svg);
  position: absolute;
  left: 50%;
  transform: translate(-50%, -15%);
  z-index: 1;
}

.contact__content {
  text-align: center;
}

.contact__description {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  font-weight: 500;
  margin-bottom: 40px;
}

.contact__button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  cursor: pointer;
}

.contact__button-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #0fe47e;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.contact__button:hover {
  background: #0cd06f;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 0;
  }

  .contact__container {
    padding: 0 20px;
    border-radius: 0;
    margin: 0;
  }

  .contact__description {
    font-size: 14px;
    text-align: start;
  }
  .contact__button-text {
    font-size: 14px;
  }
}
