/* ===== Health Professionals Hub ===== */
/* REF
:root {
  --global-transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
  --thin-border: 3px solid #F25F4D;
  --thick-border: 5px solid #F25F4D;
  --main-color: #5a1fac;
  --dark-color: #2B015C;
  --accent-color: #f25f4d;
  --nectar-accent-color: #5a1fac;
  --nectar-extra-color-1: #f25f4d;
  --nectar-extra-color-2: #ffffff;
  --nectar-extra-color-3: #333333;
}
*/
/* ===== Text Stylings ===== */
body .container-wrap .h2-style *,
body .container-wrap h2,
#ajax-content-wrap .container-wrap .nectar-inherit-h2 {
  font-size: 50px;
  font-family: graphik-bold;
  font-weight: 600;
  color: var(--nectar-accent-color);
  line-height: 1;
  text-transform: uppercase;
  margin: 0px;
}
body .container-wrap .h3-style *,
body .container-wrap .different-h3 h3 {
  font-size: 30px;
  line-height: 1;
  font-family: 'graphik-bold';
  text-transform: none;
}
body .container-wrap .big-text h3 {
  font-size: 40px;
  line-height: 1.2;
}
body .container-wrap .big-text .wpb_wrapper p {
  font-size: 25px;
  line-height: 1.5;
  strong {
    font-family: 'graphik-semibold';
    font-weight: 500;
    font-size: 30px;
  }
}
body .container-wrap .medium-text * {
  font-size: 20px;
  line-height: 1.5;
}
body .container-wrap .medium-weight .wpb_wrapper h3,
body .container-wrap .medium-weight .wpb_wrapper p {
  font-family: 'graphik-medium';
  font-weight: 400;
}
body .container-wrap .uppercase-text * {
  text-transform: uppercase;
}
body .container-wrap .semi-bold * { 
  font-family: 'graphik-semibold';
  font-weight: 500;
}
body .container-wrap .purple-text * {
  color: var(--nectar-accent-color) !important;
}
body .container-wrap .orange-text *,
body .container-wrap .orange-text {
  color: var(--nectar-extra-color-1) !important;
}
body .container-wrap .white-text * {
  color: var(--nectar-extra-color-2) !important;
}
.large-purple-list ul li,
.large-purple-list ol li {
  font-size: 20px;
  line-height: 1.5;
  font-family: 'graphik-semibold';
  color: var(--nectar-accent-color);
}
body .container-wrap a.nectar-button.wide-btn {
  width: 100%;
  text-align: center;
}
/* ===== Inline WF7 ===== */
body .container-wrap .inline-form-wrap {
  .wpcf7-form fieldset{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    br {
      display: none;
    }
    > * {
      flex: 1;
      margin: 0;
      padding: 0;
    }
    > p {
      flex: 4;
    }
    .wpcf7-form-control.wpcf7-text {
      font-family: 'graphik-regular';
      font-size: 18px;
      padding: 10px 15px;
      border: none;
      background-color: var(--nectar-extra-color-2);
      color: #000;
      border-radius: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      transition: var(--global-transition);
      border: 4px solid var(--nectar-extra-color-2);
      /* Placeholder color */
      &::placeholder {
        color: #999;
        opacity: 1; /* Firefox */
      }
      &:focus {
        outline: none;
        border-color: var(--accent-color);
      }
    }
    .wpcf7-form-control.wpcf7-submit {
      background-color: var(--accent-color);
      color: var(--nectar-extra-color-2);
      padding: 10px 20px;
      font-family: 'graphik-semibold';
      font-weight: 500;
      text-transform: uppercase;
      font-size: 18px;
      line-height: 1;
      width: 100%;
      border: none;
      border-radius: 0;
      cursor: pointer;
      margin-top: 15px;
      transition: var(--global-transition);
      &:hover {
        transform: translateY(-3px);
        background-color: var(--accent-color) !important;
        opacity: 1;
      }
    }
  }
}
/* ===== Responsive ===== */
@media screen and (max-width: 999px) {
  /* ===== Text Stylings ===== */
  body .container-wrap .main-content .h1-style *,
  body .container-wrap .main-content h1,
  #ajax-content-wrap .container-wrap .main-content .nectar-inherit-h1 {
    font-size: min(44px, 10vw) !important;
    line-height: 1 !important;
    text-transform: uppercase;
    margin: 0px;
  }
  body .container-wrap .main-content .h2-style *,
  body .container-wrap .main-content h2,
  #ajax-content-wrap .container-wrap .main-content .nectar-inherit-h2 {
    font-size: min(36px, 8vw) !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    margin: 0px;
  }
  body .container-wrap .main-content .h3-style *,
  body .container-wrap .main-content .different-h3 h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  body .container-wrap .main-content .big-text h3 {
    font-size: 27px;
    line-height: 1.2;
  }
  body .container-wrap .main-content .big-text .wpb_wrapper p {
    font-size: 18px;
    line-height: 1.5;
  }
  body .container-wrap .main-content p {
    font-size: 16px;
    line-height: 1.4;
  }
  /* ===== Images ===== */
  body .container-wrap .mobile-left {
    text-align: left !important;
  }
  body .container-wrap .small-mobile-margin .wpb_column {
    margin-bottom: 20px !important;
  }
}