@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap");

* {
  margin: 0%;
}

body {
  background: #f8fafb;
}

.contact {
  margin: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-family: "Poppins", sans-serif;
  font-size: 50px;
  font-weight: bolder;
  color: #333333;
  margin-bottom: 30px;
}

.row {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #1f2228;
  border-radius: 8px;
}

.column_form {
  background: #191e62;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.title_form {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: #fff;
  font-weight: bolder;
}

form {
  width: 90%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin: 10px;
}

input {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid white;
  outline: none;
  border-radius: 8px;
  color: #fff;
}

input::placeholder {
  color: #f8fafb;
}

textarea {
  width: 100%;
  background: transparent;
  border: 1px solid white;
  outline: none;
  border-radius: 8px;
  color: #fff;
  padding: 12px;
}

textarea::placeholder {
  color: #f8fafb;
}

.button_form {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.btn_form {
  padding: 10px;
  width: 16vh;
  border-radius: 8px;
  border: none;
  font-weight: bold;
}

.column_info {
  background: #1f2228;
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
}

.button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  height: 20vh;
}

.btn {
  padding: 12px;
  width: 19vh;
  border-radius: 8px;
  border: none;
}

.info {
  color: #f8fafb;
  background: #191e62;
}

.doc {
  background: #05f6a7;
  color: #030303;
}

.compte_info {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 60%;
  padding: 10px;
}

.compte_info img {
  width: 35px;
}

.faq {
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-container {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.title_faq {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: bolder;
  color: #333333;
}

.row_faq {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 8px;
}

.column_faq {
  width: 46%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.column_tag {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 12vh;
}

.column_tag h4 {
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-size: 15px;
}

.column_tag P {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #333333;
}

@media screen and (min-width: 1800px) {
  .service-container {
    width: 65%;
  }
}
@media screen and (max-width: 1000px) {
  .row {
    width: 75%;
  }

  .title_form {
    font-size: 20px;
  }

  form {
    height: 35vh;
  }

  .service-container {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  .row {
    width: 75%;
  }

  .title_form {
    font-size: 20px;
  }

  form {
    height: 30vh;
  }
}

@media screen and (max-width: 700px) {
  .row {
    width: 89%;
  }

  .title_form {
    font-size: 20px;
  }

  form {
    width: 97%;
  }

  .column_info {
    padding: 20px;
  }

  .button {
    padding: 10px;
    height: 15vh;
  }

  .btn {
    width: 15vh;
  }

  .faq {
    padding: 50px;
  }

  .column_faq {
    width: 47%;
    height: 70vh;
  }

  .column_tag {
    height: 15vh;
  }
}

@media screen and (max-width: 600px) {
  .row {
    width: 95%;
  }

  .column_form {
    padding: 20px;
  }

  .title_form {
    font-size: 18px;
  }

  form {
    height: 25vh;
    margin: 10px;
    gap: 20px;
  }

  input {
    width: 100%;
    padding: 10px;
  }

  .column_info {
    padding: 15px;
  }

  .btn {
    padding: 12px;
    width: 15vh;
  }

  .faq {
    padding: 40px;
  }

  .service-container {
    width: 95%;
  }

  .column_faq {
    width: 47%;
    height: 70vh;
  }

  .column_tag {
    height: 20vh;
  }
}

@media screen and (max-width: 500px) {
  .contact {
    margin: 40px;
  }

  .title {
    font-size: 40px;
  }

  .row {
    width: 100%;
  }

  .column_form {
    padding: 15px;
    width: 100%;
    gap: 20px;
    border-radius: 10px;
  }
  textarea {
    width: 100%;
  }

  .title_form {
    font-size: 17px;
  }
  .column_info {
    display: none;
  }
  .faq {
    padding: 30px;
  }
  .service-container {
    width: 98%;
  }
  .row_faq {
    width: 100%;
    flex-direction: column;
  }
  .column_faq {
    width: 100%;
    height: 45vh;
  }

  .column_tag {
    height: 10vh;
  }
}

@media screen and (max-width: 400px) {
  .contact {
    margin: 10px;
  }

  .title {
    font-size: 35px;
  }

  .row {
    width: 100%;
  }

  .column_form {
    padding: 10px;
  }

  .title_form {
    font-size: 17px;
  }

  .column_info {
    padding: 10px;
  }

  .btn {
    padding: 8px;
    width: 15vh;
  }

  .compte_info {
    width: 75%;
    padding: 10px;
  }

  .compte_info img {
    width: 25px;
  }

  .faq {
    padding: 10px;
  }

  .service-container {
    width: 100%;
  }

  .row_faq {
    width: 100%;
    flex-direction: column;
  }

  .column_faq {
    width: 100%;
    height: 50vh;
  }

  .column_tag {
    height: 12vh;
  }
}

@media screen and (max-width: 300px) {
  .title {
    font-size: 30px;
  }

  .compte_info {
    width: 75%;
    padding: 10px;
  }

  .compte_info img {
    width: 20px;
  }

  .column_faq {
    width: 100%;
    height: 75vh;
  }

  .column_tag {
    height: 18vh;
  }
}
