.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--colorPrimary);
}

.contact-section .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contact-section .title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--colorSecondary);
}

.contact-section .sub-title {
  color: white;
}

.contact-section .row {
  margin-top: 40px;
}

.contact-section .contact-button {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  border-radius: 100%;
  margin: 0 20px;
  background-color: var(--colorSecondary);
  border: 1px solid var(--colorBG);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-section .contact-button i {
  font-size: 70px;
  color: white;
}

@media (max-width: 768px) {
  .contact-section .title {
    text-align: center;
    font-size: 30px;
  }

  .contact-section .row {
    flex-wrap: wrap;
  }
  .contact-section .contact-button {
    margin: 20px;
    width: 50px;
    height: 50px;
  }

  .contact-section .contact-button i {
    font-size: 20px;
  }
}
