@font-face {
  font-family: "Roboto";
  src: url(../../assets/fonts/Roboto/Roboto-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url(../../assets/fonts/Roboto/Roboto-LightItalic.ttf) format("truetype");
  font-style: italic;
  font-weight: light;
}

@font-face {
  font-family: "Roboto";
  src: url(../../assets/fonts/Roboto/Roboto-Regular.ttf) format("truetype");
  font-style: normal;
}

* {
  box-sizing: border-box;
  color: unset;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

main {
  padding: 100px 0 0;
}

.faq-container,
.contact-container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 30px;
}

.title {
  font-size: 34px;
  margin: 0 0 40px;
  text-align: center;
}

/* Contact */

.contact-container .title {
  margin-bottom: 25px;
}

.under-title {
  font-size: 14px;
  text-align: center;
  color: #7b7b7b;
}

.inner-contact {
  margin: 75px 0;
  display: flex;
  align-items: flex-start;
}

.contact-info-container {
  min-width: 300px;
  width: 35%;
}

.contact-info-container h3,
form.contact h3 {
  font-size: 22px;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 25px 0;
  padding: 0;
}

.contact-infos .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info .info-image {
  width: 50px;
  padding: 15px;
  height: 50px;
  border-radius: 50px;
  background-color: #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info .info-image img {
  width: 100%;
}

.contact-info a,
.contact-info span,
.contact-info address {
  font-size: 16px;
  font-style: normal;
  color: black;
}

.social-media-icons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  align-items: center;
}

.social-media-icons li a {
  width: 40px;
  height: 40px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  color: #cecece;
  transition: all 0.3s;
}

.social-media-icons li a:hover {
  color: white;
}

.social-media-icons li a.fb:hover {
  background-color: #3b5999;
}

.social-media-icons li a.x:hover {
  background-color: #000;
}

.social-media-icons li a.ig:hover {
  background-color: #f52129;
}

.social-media-icons li a.yt:hover {
  background-color: #f00;
}

form.contact {
  width: 75%;
}

form.contact h3 {
  margin-bottom: 25px;
}

form.contact .two-forms {
  display: flex;
  gap: 25px;
  width: 100%;
  margin-bottom: 25px;
}

form.contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  border: none;
}

form.contact .form-group label {
  font-size: 14px;
  color: #7b7b7b;
}

form.contact .form-group input,
form.contact .form-group textarea {
  border-radius: 10px;
  border: 1px solid #cdcdcd;
  width: 100%;
  outline: none;
  padding: 10px;
}

form.contact .form-group textarea {
  height: 120px;
  resize: none;
}

form.contact input[type="submit"] {
  padding: 12px 50px;
  border: none;
  border-radius: 10px;
  display: block;
  margin: 50px auto 0;
  cursor: pointer;
  transition: all 0.3s;
}

form.contact input[type="submit"]:hover {
  background-color: #1f2937;
  color: white;
}

/* FAQ */

.faq-container {
  background-color: #f8f8f8;
  border-radius: 20px;
  margin-bottom: 60px;
}

.faq {
  padding-bottom: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 0;
  color: unset;
  padding: 0;
  border: none;
  transition: all 0.3s;
}

.faq-question h3 {
  font-size: 20px;
}

.faq-question i {
  transition: all 0.3s;
}

.faq .faq-question:focus ~ .faq-answer {
  display: inline-block;
}

.faq .faq-question:focus i {
  transform: rotate(45deg);
}

.faq-question i {
  width: 15px;
  height: 17px;
}

.faq-question i img {
  width: 15px;
}

.faq-answer {
  display: none;
  margin: 20px 0;
}

@media screen and (max-width: 992px) {
  .inner-contact {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .contact-info-container {
    width: 100%;
    order: 1;
  }

  form.contact {
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .two-forms {
    flex-direction: column;
  }
}
