/*--------------------------------------------------------------

# Modal : pop-up

--------------------------------------------------------------*/
.modal {
  display: none;
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none!important;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
#modal-btn {
  display: block;
  position: relative;
}
#modal-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 96px;
  transform: translate(0, -50%);
}
.modal-content {
  width: 100%;
  margin: 10% auto;
  max-width: 720px;
  background: #000;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2) ,0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: var(--modal-duration);
}
.modal-header {
  padding: 0 .3em;
  text-align: right;
  font-size: 2em;
  line-height: 1;
  color: #FFF;
}
.modal-header .close:hover {
  cursor: pointer;
}
/*--------------------------------------------------------------

# FAQ

--------------------------------------------------------------*/
.schema-faq {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 2rem 0;
}
.schema-faq-section {
  padding: .5em 2em .5em 3em;
  background: #242E9F;
  cursor: pointer;
}
.schema-faq-section.active {
  padding: 1em 2em 1.5em 5em;
}
.schema-faq-question {
  display: block;
  position: relative;
  font-size: 24px;
  font-weight: 400 !important;
  line-height: 70px;
  cursor: pointer;
}
.schema-faq-question .fa-arrow {
  position: absolute;
  top: 50%;
  left: -2.5rem;
  transform: translate(0, -50%);
}
.schema-faq-question .fa-arrow i {
  padding: .5rem;
  border-radius: 100%;
  color: #030F91;
  background: #FFF;
}
.schema-faq-question .fa-arrow i:before {
  font-size: 1rem;
}
.schema-faq-question .fa-circle-arrow-right,
.schema-faq-question .fa-circle-arrow-down {
  align-items: center;
  justify-content: center;
  min-height: 30px;
  min-width: 30px;
  font-size: 1.5rem;
}
.schema-faq-answer {
  margin-top: 1em;
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
}
@media only screen and (min-width:1083px) {
  .schema-faq-section {
      padding: 1em 2em 1em 5em;
  }
}
/*--------------------------------------------------------------

# CF7

--------------------------------------------------------------*/
body .is-layout-constrained >:where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
}
input,
button,
textarea,
select {
  width: 100%;
  margin-top: .5rem;
  max-width: 100%;
}
.wpcf7-inline-wrapper {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.wpcf7-inline-wrapper .wpcf7-inline-field {
  display: table-cell;
  width: 50%;
  padding: 0 .5rem;
  vertical-align: top;
}
.form {
  border-radius: 1rem;
  box-shadow: 6px 5px 6px rgba(0, 0, 0, 0.25);
}
.wpcf7-form label {
  font-weight: 500;
}
.wpcf7-form input,
.wpcf7-form textarea {
  border: none;
  border-radius: 1rem;
}
input[type="submit"] {
  width: auto!important;
  padding: 1em 1.6rem;
  color: #ED6787;
  background: #FFF;
}
.wpcf7-inline-wrapper.right p input {
  float: right;
}
input,
button,
textarea,
select {
  padding: 1rem;
  border: 1px solid var(--wp--preset--color--contrast);
  background-color: var(--wp--preset--color--base);
}
.wpcf7-inline-wide {
  margin: 0;
}
.wpcf7-inline-wrapper {
  margin: .5rem 0;
}
input::placeholder,
textarea::placeholder {
  color: #000;
  opacity: 1;
}
.wpcf7 p {
  margin: 0;
  line-height: 1;
}
.wpcf7-inline-wrapper .wpcf7-inline-field:first-child {
  padding-left: 0;
}
.wpcf7-inline-wrapper .wpcf7-inline-field:last-child {
  padding-right: 0;
}
.wpcf7 form.sent .wpcf7-response-output {
  margin: 2rem 0;
  border: none;
  background: var(--wp--preset--color--base);
}
.wpcf7-response-output {
  color: green;
}
@media screen and (max-width: 400px) {
  .wpcf7-inline-wrapper .wpcf7-inline-field{
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
  }  
}