.contacts-page {
  display: flex;
  height: fit-content;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.about {
  display: flex;
  gap: 8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.logo img {
  height: auto;
  width: 20rem;
}

.contact-main {
  width: 30%;
}

.contact-main h6 {
  color: #bb9a54;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.contact-main h2 {
  color: #6d1346;
  margin-top: 0rem;
}

.general-contact {
  border: 1px solid grey;
}

.general-contact h1 {
  width: 100%;
  font-size: 1rem;
  text-align: center;
  background-color: #6d1346;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  color: white;
  margin-top: 0rem;
}

.general-contact p {
  color: #6d1346;
  font-weight: 800;
  padding-left: 1rem;
}
.general-contact h3 {
  color: #6d1346;
  padding-left: 1rem;
}
.contact-details {
  height: fit-content;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  box-sizing: border-box;
}

.contact-box {
  height: 10rem;
  width: 20rem;
  border: 1px solid grey;
}

.contact-box h4 {
  margin-top: 0rem;
  background-color: #6d1346;
  color: white;
  padding: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-box p {
  padding-left: 0.4rem;
  color: #6d1346;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-main {
    width: 100%;
  }
}
