@charset "UTF-8";
/* CSS Document */
.section-top {
  padding: 10px 35px 40px;
  text-align: left;
}
.section-top h2 {
  margin: 0 auto 25px;
  max-width: 600px;
}
.section-top p {
  text-align: left;
  font-size: 1.3rem;
  margin: 0 auto;
  max-width: 600px;
}
@media(min-width: 960px) {
  .section-top {
    padding: 40px 75px 40px 75px;
    max-width: 900px;
  }
  .section-top__title-message {
    max-width: 600px;
    margin: 0 auto;
  }
  .section-top h2 {
    display: inline-block;
  }
  .section-top p {
    display: inline-block;
    padding-left: 50px;
    font-size: 1.3rem;
  }
}
.form-wrapper {
  padding: 40px 35px 100px;
  max-width: 900px;
}
.contact-form {
  text-align: left; 
  margin: 0 auto;
  max-width: 600px;
}
.contact-form p {
  margin-bottom: 60px;
  font-size: 1.3rem;
}
.contact-form label {
  display: block;
  margin-bottom: 10px;
}
.contact-form__name,
.contact-form__mail {
  display: block;
  height: 40px;
  width: 94%;
  background-color: #fffffb;
  border: solid 0.75px #737373;
  padding: 0 10px;
  font: inherit;
}
.contact-form__mail {
  font-size: 1.4rem;
}
.contact-form__mail__note {
  font-size: 1.2rem;
}
.contact-form__name:focus,
.contact-form__mail:focus {
  outline: solid 1px #737373;
}
.contact-form__textarea {
  display: block;
  height: 250px;
  width: 96%;
  background-color: #fffffb;
  border: solid 0.75px #737373;
  padding: 5px;
  font: inherit;
}
.contact-form__textarea:focus {
  outline: solid 1px #737373;
}
.contact-form__privcy-policy {
  margin-top: 0;
}
input[type=checkbox] {
  display: none;
}
.label-checkbox:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 10px;
  width: 12px;
  height: 12px;
  border: solid 1px #282728;
  border-radius: 3px;
}
.label-checkbox {
  position: relative;
  left: -10px;
}
.label-checkbox:before {
  position: absolute;
  content: "";
  top: 7px;
  left: 15px;
  width: 3px;
  height: 7px;
  border-right: solid 2px #fffffb;
  border-bottom: solid 2px #fffffb;
  transform: rotate(36deg);
  opacity: 0;
}
input[type=checkbox]:checked + .label-checkbox:after {
  background-color:#575757;
}
input[type=checkbox]:checked + .label-checkbox:before {
  opacity: 1;
  z-index: 5;
}
.contact-form__privcy-policy__sentence {
  position: relative;
  top: 0;
  left: 20px;
}
.drawer_open {
  text-decoration: underline;
  cursor: pointer;
}
.drawer_open:hover {
  opacity: 0.5;
}
.drawer {
  display: none;
  height: 150px;
  width: 100%;
  margin-bottom: 10px;
}
.drawer__content {
  background-color: #fffffb;
  padding: 14px;
  border: solid 0.75px #282728;
  position: relative;
  top: 10px;
}
.drawer__content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.drawer_close {
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
@media(min-width: 960px) {
  .drawer {
    width: 98%;
  }
}
.contact-form__submit {
  text-align: center;
  padding-top: 60px;
}
.contact-form__submit input {
  font-family: inherit;
  font-size: 1.3rem;
  background-color: #fffffb;
  color: #282728;
  border-radius: 5%;
  border: solid 0.75px #282728;
  width: 80px;
  height: 30px;
}
@media(min-width: 960px) {
  .form-wrapper {
    padding: 35px 75px 200px 75px;
  }
  .contact-form {
    max-width: 600px;
    padding-left: 15px;
    margin: 0 auto;
  }
}