/**
 * Screen sizes
 */
/**
  * Colors
  */
:root {
  --primary-color: #275ccb;
  --secondary-color: #45b29d;
  --heading-font: system-ui;
  --body-font: system-ui;
}

.subscribe {
  padding: 5rem 4rem;
  background: #275ccb;
  position: relative;
  margin-top: -8rem;
  margin-bottom: 8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 3rem;
  overflow: hidden;
  border-radius: 5px;
}
.subscribe h2 {
  color: white;
  margin: 0;
  flex: 1 1 350px;
  position: relative;
  z-index: 1;
}
.subscribe .gform_wrapper {
  flex: 1 1 350px;
  position: relative;
  z-index: 1;
}
.subscribe .gform_wrapper .gform_validation_errors {
  display: none;
}
.subscribe .gform_wrapper .gfield_validation_message {
  margin-top: 10px;
}
.subscribe .gform_wrapper form {
  display: flex;
  justify-content: center;
}
.subscribe .gform_wrapper form input[type=email] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin: 0;
  padding: 0.5rem 1rem;
}
.subscribe .gform_wrapper form .button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.subscribe .gform_footer.top_label {
  margin-top: 0;
}
.subscribe .gform_footer.top_label .button {
  background: #ea9c41 !important;
  color: #091a33 !important;
}
.subscribe svg {
  position: absolute;
  right: 2rem;
  transform: rotate(15deg);
}
