@charset "UTF-8";
/* CSS Document */

.sec1 {
  width: 90%;
  max-width: 700px;
  margin: 200px auto 100px;
}

.sec1__p {
  font-weight: 900;
  font-family: var(--en);
  margin-bottom: 10px;
}

.sec1__h2 {
  font-size: 4rem;
  margin-bottom: 100px;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.CF7_table {
  display: block;
  text-align: left;
  margin-bottom: 50px;
}

.CF7_table tbody {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.CF7_table tbody tr {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.selectarea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.CF7_table tbody tr th {
  width: 100%;
}

.CF7_table tbody tr th span {
  font-size: 1.4rem;
  display: inline-block;
  padding: 2px 6px;
  border-radius: 5px;
  background: #232323;
  color: #EDE4CF;
  margin-left: 10px;
}

.CF7_table tbody tr td {
  width: 100%;
}

.CF7_table tbody tr td input[type="text"],
.CF7_table tbody tr td input[type="email"],
.CF7_table tbody tr td input[type="tel"] {
  width: 100%;
  padding: 24px 20px;
  background: #F6EFDC;
  border-radius: 15px;
}

.CF7_table tbody tr td textarea {
  width: 100%;
  height: 220px;
  resize: none;
  padding: 24px 20px;
  background: #F6EFDC;
  border-radius: 15px;
  vertical-align: top;
}

.CF7__check {
  margin-bottom: 40px;
}

input[type="submit"] {
  display: block;
  width: 280px;
  height: 60px;
  border-radius: 100px;
  border: solid 1px #232323;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

input[type="submit"]:hover {
  background-color: #232323;
  color: #EDE4CF;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: fit-content;
}

.wpcf7-list-item-label {
  display: flex;
  position: relative;
  align-items: center;
  gap: 5px;
}

.wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  background: #F6EFDC;
  border-radius: 5px;
}

.wpcf7-list-item-label::after {
  position: absolute;
  top: 3px;
  left: 5px;
  display: block;
  width: 8px;
  height: 13px;
  border-bottom: solid 3px #232323;
  border-right: solid 3px #232323;
  rotate: 45deg;
  transition: 0.4s;
  transition-timing-function: ease-out;
  clip-path: inset(0 100% 0 0);
}

input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  clip-path: inset(0 0 0 0);
}

.CF7__check a {
  margin: 0 -5px;
  color: #A59776;
  text-decoration: underline;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.CF7__check a:hover {
  opacity: 0.5;
}

input::placeholder,
textarea::placeholder {
  color: #CCBE9E;
}


@media (max-width: 1024px) {
  .sec1 {
    margin: 150px auto 75px;
  }

  .sec1__h2 {
    font-size: 3.5rem;
    margin-bottom: 75px;
  }

}


@media (max-width: 600px) {
  .sec1 {
    margin: 125px auto 50px;
  }

  .sec1__h2 {
    font-size: 3rem;
    margin-bottom: 60px;
  }

}