.contact-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.02em;
  text-align: left;
  padding-bottom: 15px;
}
.contact-content-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 50px 0;
}
.contact-box-warp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-box {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
}
.contact-icon-cicrle {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  justify-content: center;
  align-items: center;
}

.contact-icon-img {
  width: 18px;
  height: 18px;
}
.contact-info-social-icons {
  display: flex;
  gap: 30px;
}
@media (min-width: 768px) {
  .contact-box-warp {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 50px 0;
    width: 100%;
  }
  .contact-box {
    flex-direction: column;
  }
  .contact-box-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
