/* Contact section */

.contact {
  /* min-height: 50vh; */
  background-color: var(--gray-2);
  padding: 50px 0;
  /* display: none; */
}

.contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* min-height: inherit; */
  gap: 30px;
}

.get-in-touch {
  /* background: #000; */
  flex: 1;
  padding: 20px;
}

.get-in-touch h3,
.contact-info h3 {
  font-size: 41px;
  line-height: 44px;
  font-weight: 400;
  margin-bottom: 20px;
}
.get-in-touch p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.get-in-touch .phone {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin-top: 20px;
}

.contact-info {
  /* background-color: pink; */
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  padding: 0 20px;
}

.contact-info h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 5px;
}
.contact-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 20px;
}

.phone,
.mail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 5px;
}
.mail {
  margin-top: -10px;
}
.social-icons {
  display: flex;
  gap: 20px;
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  width: 21px;
  height: 21px;
}
.social-icons a img {
  object-fit: contain;
}

/* media query */
@media screen and (max-width: 800px) {
  .contact {
    padding-top: 40px;
  }
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: start;
    justify-content: center;
  }
}
@media screen and (max-width: 520px) {
 
  .get-in-touch p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
  .get-in-touch .phone {
    font-size: 20px;
    line-height: 24px;
    margin: 0 auto;
    display: block;
    font-weight: 400;
  }
  .get-in-touch h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    line-height: 30px;
    font-weight: 600;
    /* margin-top: -100px; */
  }
  .contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    /* margin-top: -100px; */
    font-weight: 600;
  }

  .contact-info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .get-in-touch p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
