.gform_wrapper .gform_title {
  text-align: center;
  font-size: 3rem;
  text-transform: uppercase;
}
.gform_wrapper .hidden_label label {
  display: none;
}
.gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.gform_wrapper .gform_fields .gfield--width-half {
  grid-column: span 6;
}
.gform_wrapper .gform_footer {
  margin-top: 1rem;
  text-align: center;
}
.gform_wrapper .gform_footer input {
  background-color: #fff;
  color: #cc3333;
  border: 2px solid #cc3333;
  width: 100%;
  transition: all 0.5s;
}
.gform_wrapper .gform_footer input:hover {
  background-color: #cc3333;
  color: #fff;
}

.modal {
  position: fixed;
  display: none;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.modal .modal--wrap {
  background-color: rgba(51, 51, 51, 0.5);
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.modal .modal--wrap .modal--content {
  position: relative;
  background-color: #fff;
  padding: 3rem;
  min-width: 288px;
  max-width: 600px;
  width: 100%;
  border-radius: 0px;
  font-size: 1.25rem;
  border: 2px solid #f1f1f1;
  box-shadow: 0 0 25px 3px rgba(25, 36, 78, 0.5);
}
@media (max-height: 400px) {
  .modal .modal--wrap .modal--content {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .modal .modal--wrap .modal--content {
    max-width: 90vw;
  }
}
.modal .modal--wrap .modal--content .modal--close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #f1f1f1;
  color: #333;
  cursor: pointer;
}
.modal .modal--wrap .modal--content figure {
  max-width: 800px;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  margin: auto;
}
.modal .modal--wrap .modal--content figure video,
.modal .modal--wrap .modal--content figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}
.modal .modal--wrap .modal--content .aligncenter {
  margin-top: 0;
  margin-bottom: 0;
}
.modal .modal--wrap .modal--content h2 {
  font-size: clamp(2.5rem, 2.5vw, 3.5rem);
}
.modal .modal--wrap .modal--content .btn {
  background-color: #ffffff;
  color: #cc3333;
  font-size: 24px;
  font-weight: 500;
  border: 2px solid #cc3333;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 12px;
  display: inline-block;
  transition: all ease 0.3s;
  padding: 10px 15px;
  width: 100%;
  text-transform: uppercase;
}/*# sourceMappingURL=theme.css.map */