body {
  position: relative;
}

.wpcf7 .form-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #f5f5f5;
  font-family: "Lato", sans-serif;
}
.wpcf7 .form-wrapper .form-group,
.wpcf7 .form-wrapper .form-field label {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wpcf7 .form-wrapper .form-field label {
  gap: 8px;
}
.wpcf7 .form-wrapper .form-field label span {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 768px) {
  .wpcf7 .form-wrapper .form-field label span {
    font-size: 16px;
  }
}
.wpcf7 .form-wrapper .form-field label input {
  max-height: 51px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding: 20px 12px;
  border-radius: 6px;
  background-color: #ffffff;
  border: 1px solid transparent;
  outline: none;
}
.wpcf7 .form-wrapper .form-field label input::-moz-placeholder {
  opacity: 0.6;
  color: #333333;
}
.wpcf7 .form-wrapper .form-field label input::placeholder {
  opacity: 0.6;
  color: #333333;
}
.wpcf7 .form-wrapper .form-input__checkbox label {
  display: flex;
  gap: 12px;
}
.wpcf7 .form-wrapper .form-input__checkbox label input[type=checkbox] {
  flex: 1 0 auto;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #ffffff;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  transition: transform 120ms ease-in-out;
  display: grid;
  place-content: center;
}
.wpcf7 .form-wrapper .form-input__checkbox label input[type=checkbox]::before {
  content: "";
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: transform 120ms ease-in-out;
  background-color: CanvasText;
  -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
          clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.wpcf7 .form-wrapper .form-input__checkbox label input[type=checkbox]:checked {
  background-color: #ffffff;
  border-color: #ffffff;
}
.wpcf7 .form-wrapper .form-input__checkbox label input[type=checkbox]:checked::before {
  transform: scale(1);
}
.wpcf7 .form-wrapper .form-input__checkbox label span {
  font-family: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 768px) {
  .wpcf7 .form-wrapper .form-input__checkbox label span {
    font-size: 16px;
  }
}
.wpcf7 .form-wrapper .form-error-container {
  display: none;
}

.form-button,
.form-footer .form-btn__submit {
  display: flex;
  width: 100%;
  min-height: 48px;
  padding: 14px 20px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  background-color: #ffffff;
  border-radius: 50px;
  border: none;
  outline: none;
  color: #000;
  /* btn md */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}
.form-button:hover, .form-button:focus, .form-button:active,
.form-footer .form-btn__submit:hover,
.form-footer .form-btn__submit:focus,
.form-footer .form-btn__submit:active {
  color: #ffffff;
  background: var(--e-global-color-accent);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.16);
}

.form-modal__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 120ms ease-in-out;
}
.form-modal__wrapper .form-modal {
  position: relative;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  border-radius: 12px;
  background-color: #ffffff;
}
.form-modal__wrapper .form-modal .form-modal__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.form-modal__wrapper .form-modal .form-modal__info h3,
.form-modal__wrapper .form-modal .form-modal__info p {
  margin: 0;
}
.form-modal__wrapper .form-modal .form-modal__info-icon {
  width: 64px;
  height: 64px;
}
.form-modal__wrapper .form-modal .form-modal__info-icon svg {
  width: 100%;
  height: 100%;
}
.form-modal__wrapper .form-modal .form-modal__info-title {
  color: #333;
  text-align: center;
  /* h3 */
  font-family: "Lato", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 46.8px */
}
@media (max-width: 768px) {
  .form-modal__wrapper .form-modal .form-modal__info-title {
    font-size: 24px;
  }
}
.form-modal__wrapper .form-modal .form-modal__info-desc {
  color: #333;
  text-align: center;
  /* body md */
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
}
.form-modal__wrapper .form-modal .form-modal__action {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.3em;
  text-decoration: none;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action-btn .form-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action-btn .form-modal__icon svg {
  width: 100%;
  height: 100%;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action--download {
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-secondary);
  transition: all 120ms ease-in-out;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action--download:hover {
  background-color: #9c27cd;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action--submit {
  min-height: auto;
  border: none;
  padding: 0;
  color: var(--e-global-color-primary);
  box-shadow: none;
}
.form-modal__wrapper .form-modal .form-modal__action .form-modal__action--submit:hover, .form-modal__wrapper .form-modal .form-modal__action .form-modal__action--submit:focus, .form-modal__wrapper .form-modal .form-modal__action .form-modal__action--submit:active {
  color: #9c27cd;
  background-color: transparent;
}
.form-modal__wrapper .form-modal .form-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #333333;
  transition: color 120ms ease-in-out;
  z-index: 100;
}
.form-modal__wrapper .form-modal .form-modal__close svg {
  width: 100%;
  height: 100%;
}
.form-modal__wrapper .form-modal .form-modal__close:hover {
  color: #000000;
}
@media (max-width: 768px) {
  .form-modal__wrapper .form-modal {
    gap: 32px;
  }
}
.form-modal__wrapper.form-modal--show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
@media (max-width: 768px) {
  .form-modal__wrapper {
    padding: 0 16px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  margin: 1rem 0 0.5rem;
  border: none;
  border-bottom: 2px solid;
}

body.form-modal--show {
  overflow: hidden;
}

.sn-notify {
  font-size: 14px;
  font-family: "Lato", sans-serif;
}
.sn-notify a {
  color: var(--e-global-color-primary);
  text-decoration: none;
}
.sn-notify a:hover {
  font-size: 14px;
  text-decoration: none;
  color: var(--e-global-color-text);
}/*# sourceMappingURL=styles.css.map */