@charset "UTF-8";
.gotham-thin {
  font-family: "Gotham A", "Gotham B";
  font-style: normal;
  font-weight: 100;
}

.gotham-light {
  font-family: "Gotham A", "Gotham B";
  font-style: normal;
  font-weight: 300;
}

.gotham-book {
  font-family: "Gotham A", "Gotham B";
  font-style: normal;
  font-weight: 400;
}

.gotham-medium {
  font-family: "Gotham A", "Gotham B";
  font-style: normal;
  font-weight: 500;
}

.gotham-bold {
  font-family: "Gotham A", "Gotham B";
  font-style: normal;
  font-weight: 700;
}

.gotham-black {
  font-family: "Gotham A", "Gotham B";
  font-style: normal;
  font-weight: 800;
}

.btn {
  padding: 18px 20px;
  font-size: 1rem;
  line-height: 19px;
  font-weight: 500;
  color: #006F7E;
  border: 1px solid #006F7E;
  border-radius: 0;
  letter-spacing: 0.5px;
  max-width: 100%;
  white-space: normal;
}
.btn:hover {
  color: #fff;
  border-color: #006F7E;
  background-color: #006F7E;
}
.btn:hover i {
  color: #fff;
}
.btn i {
  display: none;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: inherit;
  vertical-align: middle;
  margin: -2px 0 0 20px;
}

#teal-hover {
  transition: all 0.3s ease-in-out;
}
#teal-hover:hover {
  background-color: #115d67;
  border-color: #115d67;
  color: #FFF;
}
#teal-hover:hover i {
  color: #FFF;
}

.btn-white {
  color: #fff;
  border-color: #fff;
  padding: 18px 20px 18px 30px;
}
.btn-white i {
  color: #bbd1d3;
  margin-left: 35px;
}

.btn-menu {
  float: right;
  color: #1D1B1F;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
  line-height: 44px;
}
.btn-menu:hover {
  color: #1D1B1F;
  text-decoration: none;
}
.btn-menu .closed {
  display: none;
}
.btn-menu .open {
  display: block;
}
.btn-menu.collapsed .open {
  display: none;
}
.btn-menu.collapsed .closed {
  display: block;
}
.btn-menu span {
  vertical-align: middle;
}
.btn-menu i, .btn-menu .close {
  font-size: 1.875rem;
  line-height: 29px;
  margin: 0 0 0 10px;
  vertical-align: middle;
  color: #006F7E;
}
.btn-menu .close {
  float: none;
  color: #88aeb3;
  opacity: 1;
  text-shadow: none;
  color: #006F7E;
}

/* Medical Information Request Form */
form {
  margin: 40px 0;
  max-width: 800px;
}
form > .row {
  margin: 0 0 40px;
}
form label {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 5px;
}
form label#file_field_label {
  line-height: 20px;
}
form label.force-align {
  height: 1.8rem;
}
form label span {
  color: #ec5800;
}
form input, form textarea, form select {
  border: 1px solid green;
  width: 100%;
  outline: none;
  color: #397981;
}
form input:focus {
  outline: none;
}
form input[type=text]:focus,
form input[type=tel]:focus,
form input[type=email]:focus,
form textarea:focus:focus,
form select:focus:focus {
  border: 3px solid #397981;
  outline: none;
}
form input, form select {
  position: relative;
  height: 50px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px;
  max-width: 400px;
  margin: 10px 0;
  box-sizing: border-box;
}
form select {
  background: #fff url("../img/select-arrow.png") no-repeat;
  background-position: right 12px center;
}
form .wpcf7-checkbox .wpcf7-list-item {
  width: 25%;
  display: inline-block;
  margin: 0;
}
form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label,
form .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  width: calc(100% - 40px);
  float: left;
  margin-bottom: 10px;
}
form .wpcf7-checkbox input,
form .wpcf7-radio input {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 12px 0 0;
  float: left;
}
form .wpcf7-checkbox input:checked {
  background: url("../images/checkbox.png") no-repeat;
  border: none;
}
form .wpcf7-radio input {
  border-radius: 20px;
}
form .wpcf7-radio input:checked {
  background: url("../images/radio.png") no-repeat;
  border: none;
}
form .wpcf7-radio .wpcf7-list-item.last .wpcf7-list-item-label {
  margin-bottom: 0;
}
form .checkbox-signature .wpcf7-list-item {
  width: 100% !important;
}
form .checkbox-signature .wpcf7-list-item .wpcf7-list-item-label {
  margin-bottom: 0;
}
form .row-signature,
form .row-contact-method {
  margin-bottom: 20px;
}
form input[type=submit], form button[type=submit] {
  position: relative;
  background: #125d67;
  color: #fff;
  font-weight: 600;
  height: auto;
  margin: 30px 0 25px;
  padding: 15px;
  text-transform: uppercase;
  width: 300px;
  display: block;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}
form button:disabled, form button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}
form .required-text,
form .field-error label {
  color: #ec5800;
}
form .field-error input, form .field-error textarea, form .field-error select {
  border-color: #ec5800;
}
form .row-usa,
form .row-canada,
form .row-europe,
form .row-switzerland,
form .row-israel,
form .field-province,
form .field-region,
form .field-postalcode {
  display: none;
}
form span.wpcf7-not-valid-tip {
  margin: 5px 0 0 0;
  color: #ec5800;
}

.wpcf7-response-output .wpcf7-validation-errors {
  padding: 0 15px;
  margin: 0;
}

.wpcf7-form-succcess-msg h2 {
  color: #115d67;
  margin-bottom: 20px;
}

.wpcf7-response-output,
div.wpcf7-validation-errors {
  border: none;
  color: #ec5800;
}

form input[type=email]:focus, form input[type=tel]:focus, form input[type=text]:focus, form select:focus:focus, form textarea:focus:focus {
  border: 3px solid #397981;
  outline: none;
}

.validation-error {
  border-color: #e65400 !important;
  color: #e65400 !important;
}

.spinner {
  background-color: #23282d;
  border: none;
  border-radius: 100%;
  display: inline-block;
  height: 24px;
  margin: 0 15px;
  opacity: 0.75;
  padding: 0;
  position: absolute;
  width: 24px;
  top: 50%;
  visibility: hidden;
  transform: translateY(-50%);
  right: 0;
}

.spinner.show {
  visibility: visible !important;
}

.spinner:before {
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-name: spin;
  animation-timing-function: linear;
  background-color: #fbfbfc;
  border: none;
  border-radius: 100%;
  content: "";
  height: 6px;
  left: 4px;
  position: absolute;
  top: 4px;
  transform-origin: 8px 8px;
  width: 6px;
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#uploadForm input, #uploadForm select {
  margin-bottom: 50px;
}

.error {
  border-color: red;
}

.error-message {
  color: red;
  font-size: 12px;
}

.field-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.field-wrap .field {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 639px) {
  .field-wrap .field {
    flex-basis: 100%;
  }
}
.field-wrap .field#file_field {
  flex-basis: 100%;
}

header {
  background-color: #115d67;
  display: block;
  width: 100%;
  font-family: "Gotham A", "Gotham B", "Gotham", Arial, sans-serif;
  height: 123px;
  padding: 45px 0 30px 0;
  box-sizing: border-box;
}
header .wrapper {
  display: block;
  margin: 0 auto;
  max-width: 1377px;
  width: 100%;
  padding: 0 60px;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  header .wrapper {
    padding: 0 30px;
  }
}
header .wrapper #logo {
  display: inline-block;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 146px;
}

nav.banner {
  background-color: #fff;
  padding: 0px 0 0px;
}
nav.banner .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
nav.banner .container .row-primary-nav {
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 15px;
  box-sizing: content-box;
  height: 86px;
}
nav.banner .container .row-primary-nav .col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav.banner .other-icons {
  float: right;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
nav.banner .other-icons li {
  padding: 0 5px;
  line-height: 14px;
}
nav.banner .other-icons li:first-child {
  padding-right: 3px;
}
nav.banner .other-icons li:first-child, nav.banner .other-icons li:last-child {
  border-right: none;
}
nav.banner .other-icons li:nth-child(2), nav.banner .other-icons li:last-child {
  padding: 0 12px;
}
nav.banner .other-icons li a {
  font-size: 0.875rem;
  color: #fff;
}
@media (max-width: 767px) {
  nav.banner .other-icons {
    float: none;
    display: block;
  }
  nav.banner .other-icons a {
    color: #fff;
  }
  nav.banner .other-icons .icon-twitter, nav.banner .other-icons .icon-linkedin {
    margin: 10px 18px 10px 18px;
    display: inline-block;
  }
  nav.banner .other-icons li:nth-child(2), nav.banner .other-icons li:last-child {
    padding: 0 5px;
  }
}
nav.banner .row-top-nav {
  margin: 0 0 0px;
  background-color: #115d67;
  padding: 11px 20px;
}
nav.banner .row-top-nav .col {
  max-width: 1140px;
  margin: 0 auto;
}
nav.banner .top-nav {
  float: right;
}
nav.banner .top-nav li {
  padding: 0 15px;
  border-right: 1px solid #88aeb3;
  line-height: 14px;
}
nav.banner .top-nav li:last-child {
  border-right: none;
}
nav.banner .top-nav li a {
  color: #d1e4e9;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav.banner .top-nav li a:hover {
  border-bottom: 1px solid;
  padding-bottom: 1px;
  text-decoration: none;
}
nav.banner .brand {
  float: left;
  margin: 0 40px 0 0;
}
nav.banner .brand .logo {
  width: 140px;
  left: 17px;
  position: relative;
}
nav.banner .primary-nav {
  float: left;
  margin: 35px 0 0;
}
nav.banner .primary-nav > li {
  display: none;
}
nav.banner .primary-nav > li.main-menu-item {
  display: block;
}
nav.banner .primary-nav .hide-nav-item {
  display: none !important;
}
nav.banner .primary-nav li {
  margin: 0 0 0 40px;
  line-height: 18px;
  padding: 0 12px 33px 0;
  position: relative;
}
nav.banner .primary-nav li a {
  color: #1D1B1F;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 18px;
}
nav.banner .primary-nav li a:hover {
  text-decoration: none;
  border-bottom: 2px solid #006F7E;
}
nav.banner .primary-nav li.current-menu-item a, nav.banner .primary-nav li.current-page-ancestor a {
  text-decoration: none;
  border-bottom: 2px solid #006F7E;
}
nav.banner .primary-nav li.current-menu-item .sub-menu a, nav.banner .primary-nav li.current-page-ancestor .sub-menu a {
  border-bottom: none !important;
}
nav.banner .primary-nav li .current-menu-item a {
  color: #E1F5F7;
  transition: all 0.3s ease;
}
nav.banner .primary-nav li .sub-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  top: 50px;
  background: #E1F5F7;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 340px;
}
nav.banner .primary-nav li .sub-menu li {
  padding: 15px 25px;
  margin: 0 0 0px 0;
  background-color: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid #fff;
}
nav.banner .primary-nav li .sub-menu li a {
  color: #006F7E;
  line-height: 22px;
}
nav.banner .primary-nav li .sub-menu li a:hover {
  color: #006F7E;
  transition: all 0.3s ease;
  border-bottom: none !important;
}
nav.banner .primary-nav li .sub-menu li:last-child {
  border-bottom: none;
}
nav.banner .primary-nav li .sub-menu li:hover {
  background-color: #C3EBF0;
  transition: all 0.3s ease;
}
nav.banner .primary-nav li .sub-menu li.current-menu-item a {
  color: #006F7E;
}
nav.banner .primary-nav li .sub-menu .sub-menu {
  display: none !important;
}
nav.banner .primary-nav li .sub-menu:after {
  display: none;
  position: absolute;
  top: -14px;
  left: 20px;
  width: 25px;
  height: 14px;
  background-image: url(/wp-content/themes/interceptpharma/dist/images/submenuarrow.png);
  background-repeat: no-repeat;
  content: "";
  background-size: 25px;
}
nav.banner .primary-nav li.menu-item-has-children .trigger {
  background-image: url(/wp-content/themes/interceptpharma/dist/images/arrow-down.png);
  background-size: 10px;
  background-position: right center;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 4px;
}

.breadcrumbs {
  background: #fff;
  color: #115d67;
  font-size: 1rem;
  line-height: 20px;
  padding: 6px 0;
  opacity: 1;
  position: absolute;
  width: 100%;
  top: -1px;
  z-index: 2;
  font-weight: 500;
  border-top: 1px solid #55C1D8;
}
.breadcrumbs a {
  color: #115d67;
}
.breadcrumbs.fixed {
  position: fixed;
  opacity: 1;
}

.hero {
  position: relative;
}
.hero img {
  width: 100%;
}
.hero .special {
  position: absolute;
  bottom: 50px;
  right: 180px;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  z-index: 10;
}
.hero .hero-content {
  position: absolute;
  bottom: 60px;
  max-width: 705px;
  padding: 0 15px;
}
.hero .hero-content span {
  color: #fff;
}
.hero .hero-content h1 {
  color: #fff;
  font-weight: 400;
  margin: 0;
}
.hero .hero-content p {
  color: #fff;
  margin: 0;
  font-size: 1.125rem;
  line-height: 23px;
}
.hero .hero-content.hero-bottom-75 {
  bottom: 75px;
}

@media (max-width: 500px) {
  .home .hero .hero-content p,
  .homepage-non-usa .hero .hero-content p {
    display: inline;
  }
  .home .hero .hero-content .home-hero-cta,
  .homepage-non-usa .hero .hero-content .home-hero-cta {
    display: block;
  }
}
.home .hero .hero-content span,
.homepage-non-usa .hero .hero-content span {
  font-size: 5.063rem;
}
@media (max-width: 1200px) {
  .home .hero .hero-content span,
  .homepage-non-usa .hero .hero-content span {
    font-size: 3.75rem;
  }
}
@media (max-width: 767px) {
  .home .hero .hero-content span,
  .homepage-non-usa .hero .hero-content span {
    font-size: 3.125rem;
  }
}

.home .hero-content,
.homepage-non-usa .hero-content,
.our-focus .hero-content {
  max-width: 575px;
}

.pbc .hero-content {
  max-width: 400px;
}

.clinical-trials .hero-content,
.our-research .hero-content {
  max-width: 850px;
}

.our-story .hero-content {
  max-width: 705px;
}

.careers .hero-content {
  max-width: 700px;
}

.locations .hero-content span {
  color: #115d67;
}

.bighero {
  width: 100%;
  height: 635px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  z-index: 3;
}
.bighero .wrapper {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  padding: 0;
}
.bighero .wrapper .newHero {
  position: absolute;
  width: 100%;
  height: 635px;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.bighero .wrapper .newHero img {
  object-fit: cover;
}
.bighero .wrapper .caption {
  position: absolute;
  right: 28%;
  bottom: 30px;
  color: #fff;
  font-size: 15px;
  z-index: 4;
}
.bighero .wrapper .copy {
  z-index: 5;
  position: relative;
  width: 100%;
  left: 60%;
  top: 80px;
  max-width: 390px;
}
.bighero .wrapper .copy h1 {
  font-size: 60px;
  line-height: 62px;
  color: #fff;
  font-weight: bold;
}
.bighero .wrapper .copy h1 span {
  color: #87D7E2;
}
.bighero .wrapper .copy p {
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  margin-top: 40px;
}
.bighero .wrapper .copy a {
  color: #fff;
  margin-top: 40px;
  transition: all 0.3s ease;
}
.bighero .wrapper .copy a button {
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 15px 30px;
  background: transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}
.bighero .wrapper .copy a:hover {
  color: #1b656f;
  transition: all 0.3s ease;
}
.bighero .wrapper .copy a:hover button {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #1b656f;
}
.bighero .wrapper .lowerLeft {
  height: 0;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  z-index: 100;
  bottom: -20px;
  padding: 0px 45px;
  width: 400px;
  height: 180px;
  backdrop-filter: blur(10px);
  background-color: rgba(33, 157, 177, 0.9);
  transform: skew(20deg, 0deg);
  left: -40px;
  padding-left: 80px;
  fill: rgba(33, 157, 177, 0.9);
}
.bighero .wrapper .lowerLeft h3 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
  max-width: 245px;
  margin: 20px 0;
  transform: skew(-20deg, 0deg);
  position: relative;
  left: 30px;
}
.bighero .wrapper .lowerLeft a {
  color: #fff;
  padding: 12px 15px;
  border: 1px solid #fff;
  display: block;
  width: 100%;
  max-width: 245px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  transition: all 0.3s ease;
  line-height: 22px;
  transform: skew(-20deg, 0deg);
}
.bighero .wrapper .lowerLeft a:hover {
  color: #2ca5ba;
  transition: all 0.3s ease;
  background-color: #fff;
}

.mobile-hero-swap {
  display: none;
  padding: 0px 0px;
}
.mobile-hero-swap .wrapper {
  padding: 174px 25px 10px 25px;
}
.mobile-hero-swap h1 {
  font-size: 50px;
  line-height: 50px;
  color: #181717;
  margin: 0 0 20px 0;
}
.mobile-hero-swap p {
  margin: 20px 0;
}
.mobile-hero-swap a {
  color: #006F7E;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.mobile-hero-swap a button {
  border: 0px solid #006F7E;
  color: #006F7E;
  font-size: 16px;
  text-align: center;
  padding: 0px;
  background: transparent;
  transition: all 0.3s ease;
  margin: 0px 0 0 0;
}
.mobile-hero-swap a:hover {
  background-color: #fff;
  color: #006F7E;
  transition: all 0.3s ease;
}
.mobile-hero-swap a:hover button {
  transition: all 0.3s ease;
  background-color: #fff;
  color: #006F7E;
}

footer {
  background: #ecf4f5;
  padding: 40px 0 40px;
}
footer .container {
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
  max-width: 1377px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  footer .container {
    padding: 0 30px;
  }
}
footer .footer-logo {
  width: 140px;
  margin: 0 60px 20px 0;
}
footer .footer-right {
  clear: both;
  margin: 0px 0 0 0;
  width: 100%;
}
footer .footer-nav {
  margin: 15px 0 15px;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
}
footer .footer-nav li {
  margin: 0 28px 5px 0;
  line-height: 14px;
  position: relative;
}
@media (max-width: 480px) {
  footer .footer-nav li {
    display: block;
    width: 100%;
  }
}
footer .footer-nav li a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #181717 !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  text-decoration: none;
}
footer .footer-nav li a:hover {
  border-bottom: 1px solid;
  padding-bottom: 0;
  text-decoration: none;
}
footer .footer-nav li:after {
  content: "|";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0px;
  right: -17px;
}
@media (max-width: 480px) {
  footer .footer-nav li:after {
    display: none;
  }
}
footer .footer-nav li:last-child:after {
  display: none;
}
footer .footer-copy {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
}
footer .footer-copy a {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #006f7e;
}
footer .footer-copy a {
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #181717 !important;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  text-decoration: none;
}
footer .footer-copy a:hover {
  border-bottom: 1px solid;
  padding-bottom: 0;
  text-decoration: none;
}
footer .footer-copy span {
  margin: 0 10px;
}
@media (max-width: 480px) {
  footer .footer-copy span {
    display: block;
    width: 100%;
  }
}
footer .footer-copy span.slide {
  float: right;
  display: inline-block;
}

.footer-social {
  margin: 80px 0 40px;
}
.footer-social .nav li {
  padding: 0 25px;
}
.footer-social .nav li a {
  font-size: 1.5rem;
}
.footer-social .nav li:last-child {
  border-right: none;
}

@media (max-width: 480px) {
  span.divider {
    display: none !important;
  }
}
body {
  margin: 0 !important;
  font-family: "Gotham A", "Gotham B", "Gotham", Arial, sans-serif;
  font-style: normal;
}

section.content {
  min-height: calc(100vh - 422px);
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #dae8eb);
}
section.content .wrapper {
  position: relative;
  min-height: calc(100vh - 422px);
  z-index: 10;
  background-repeat: no-repeat;
  background-size: 348px;
  padding: 100px 25px 80px;
  max-width: 1377px;
  padding: 0 60px;
  box-sizing: border-box;
  display: flex;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  section.content .wrapper {
    padding: 0 30px;
  }
}
section.content .wrapper h3 {
  font-weight: 400;
  color: #115d67;
  font-size: 26px;
  line-height: 32px;
  margin: 40px 0 10px 0;
}
section.content .wrapper p {
  margin: 20px 0 20px 0;
  font-size: 18px;
  line-height: 24px;
}
section.content .wrapper p strong {
  font-weight: 500;
}
section.content .wrapper a:link, section.content .wrapper a:active, section.content .wrapper a:visited {
  color: #44768e;
}
section.content .wrapper ul {
  padding-left: 15px;
  list-style: none;
}
section.content .wrapper ul li {
  margin: 0 0 20px;
  position: relative;
}
section.content .wrapper ul li:before {
  content: "•";
  position: absolute;
  left: -15px;
  font-size: 1.2rem;
  color: #a1c6cf;
}
section.content .wrapper ul li ul {
  padding-left: 18px;
  margin: 5px 0 0;
}
section.content .wrapper ul li ul li {
  margin: 0 0 5px;
}
section.content .wrapper ul li ul li:before {
  content: "—";
  left: -16px;
  font-size: 1.2rem;
}
section.content .wrapper ol {
  padding-left: 20px;
}
section.content .wrapper ol li {
  padding-left: 5px;
  margin: 0 0 20px;
}
section.content .wrapper hr {
  border-top: 2px solid #a1c6cf;
  margin: 30px 0;
}
section.content .wrapper .footnote {
  font-size: 16px;
  display: block;
}

.fade1 {
  -webkit-animation: fade 1s; /* Chrome, Safari, Opera */
  animation: fade 1s;
}

.enlarge-text {
  font-size: 120%;
}

.fade5 {
  -webkit-animation: fade 5s; /* Chrome, Safari, Opera */
  animation: fade 5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Standard syntax */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page .content,
.search .content,
.single .content {
  padding: 60px 0 0;
}
.page .content .main,
.search .content .main,
.single .content .main {
  overflow: auto;
}
.page .content .main img,
.search .content .main img,
.single .content .main img {
  max-width: 100%;
}
.page .content .main h1,
.search .content .main h1,
.single .content .main h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  margin: 0 0 20px;
  letter-spacing: 0px;
}
.page .content .main .panel-layout .textwidget p:last-child,
.search .content .main .panel-layout .textwidget p:last-child,
.single .content .main .panel-layout .textwidget p:last-child {
  margin: 0;
}
.page .content .main .employee-spotlight,
.search .content .main .employee-spotlight,
.single .content .main .employee-spotlight {
  border: 4px solid #115d67;
  padding: 15px 20px;
}

.page-template-template-page-cta-first .content {
  padding: 60px 0 0;
}

.page-template-template-page-no-hero .content {
  padding: 50px 0 0;
}
.page-template-template-page-no-hero .sidebar {
  padding-top: 25px;
}

.page-template-template-contact .content {
  padding: 60px 0 0;
}
.page-template-template-contact .content h2 {
  font-size: 1.875rem;
  line-height: 34px;
  font-weight: 400;
  color: green;
  margin: 0 0 20px;
}
.page-template-template-contact .content h2 span {
  font-size: 1.5rem;
  display: block;
  text-transform: capitalize;
}
.page-template-template-contact .content h3 {
  font-weight: 400;
  margin: 0 0 5px;
  color: #686158;
}
.page-template-template-contact .content a {
  word-wrap: break-word;
}
.page-template-template-contact .content a .d-break {
  display: block;
}

.our-story .video-thumb {
  width: 100%;
}

.patient-resources .table tr td:first-child {
  width: 10%;
}
.patient-resources .table tr td {
  padding: 0 20px 20px 0;
  border: none;
  min-width: 180px;
  word-break: break-word;
}
.patient-resources .table tr:last-child td {
  padding-bottom: 0;
}

.error404 .content {
  padding: 40px 0 0;
}
.error404 .content h2 {
  margin: 0 0 40px;
}
.error404 .content .search-form .search-field {
  border-color: green;
  border-radius: 0;
  color: green;
}
.error404 .content .search-form .search-submit {
  padding: 14px 20px;
  background: #115d67;
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-weight: 500;
}

.popover.bs-popover-top, .popover.bs-popover-bottom {
  background: #f3f3f4;
  border-radius: 0;
  border: 1px solid #a1c6cf;
  top: -5px !important;
  max-width: 225px;
}
.popover.bs-popover-top .popover-body, .popover.bs-popover-bottom .popover-body {
  color: green;
  font-size: 1rem;
  line-height: 22px;
  padding: 10px 10px 10px 12px;
}
.popover.bs-popover-top .arrow:after, .popover.bs-popover-top .arrow:before {
  border-width: 14px;
}
.popover.bs-popover-top .arrow:before {
  bottom: -29px;
  border-top-color: #a1c6cf;
}
.popover.bs-popover-top .arrow:after {
  bottom: -28px;
  border-top-color: #f3f3f4;
}
.popover.bs-popover-bottom {
  top: 5px !important;
}
.popover.bs-popover-bottom .arrow {
  top: -34px;
}
.popover.bs-popover-bottom .arrow:after, .popover.bs-popover-bottom .arrow:before {
  border-width: 14px;
}
.popover.bs-popover-bottom .arrow:before {
  bottom: -28px;
  border-bottom-color: #a1c6cf;
}
.popover.bs-popover-bottom .arrow:after {
  bottom: -29px;
  border-bottom-color: #f3f3f4;
}

.glossary {
  border-bottom: 1px dashed green;
  cursor: pointer;
}

.resources li span {
  font-style: italic;
}

.callout-borders {
  color: #006F7E;
  border-top: 2px solid #A2C6CE;
  border-bottom: 2px solid #A2C6CE;
  padding: 30px 0;
}
.callout-borders.padding-15 {
  padding: 15px 0;
}
.callout-borders .textwidget p {
  margin: 0;
  color: #006F7E;
  font-size: 1.75rem;
  line-height: 34px;
}
.callout-borders .textwidget p strong {
  font-weight: 500;
}
.callout-borders .textwidget p.font-24 {
  font-size: 1.5rem;
  line-height: 30px;
}
.callout-borders .textwidget p.b-color {
  color: green;
}
.callout-borders .textwidget h2 {
  margin: 0;
}
.callout-borders .textwidget h2 a {
  font-weight: 400;
  margin-left: 30px;
}

.locations .widget-contact h2 {
  text-transform: uppercase;
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 20px;
}
.locations .widget-contact h2 span {
  font-size: 1.5rem;
  display: block;
  text-transform: capitalize;
}
.locations .main a {
  word-break: break-word;
}
.locations .main h3 {
  color: #686158;
  font-style: normal;
  font-size: 1.875rem;
  line-height: 36px;
  font-weight: 500;
}

.benefits .row-benefits-widget > .panel-grid-cell:last-child .widget {
  margin-left: -20px;
}

.homepage-non-usa #intercept_header_svg, .homepage-non-usa #intercept_header_svg_m, .homepage-non-usa #r2hex7b, .homepage-non-usa #r1hex5b,
.page-template-index #intercept_header_svg,
.page-template-index #intercept_header_svg_m,
.page-template-index #r2hex7b,
.page-template-index #r1hex5b {
  visibility: hidden;
}
.homepage-non-usa .hero .hero-content h1, .homepage-non-usa .hero .hero-content p,
.page-template-index .hero .hero-content h1,
.page-template-index .hero .hero-content p {
  color: #115d67;
}
.homepage-non-usa .hb-svg-mobile,
.page-template-index .hb-svg-mobile {
  display: none;
}
@media (max-width: 992px) {
  .homepage-non-usa .hb-svg-mobile,
  .page-template-index .hb-svg-mobile {
    display: block;
    padding-bottom: 200px;
  }
}
@media (max-width: 767px) {
  .homepage-non-usa .hb-svg-mobile,
  .page-template-index .hb-svg-mobile {
    padding-bottom: 250px;
  }
}
@media (max-width: 992px) {
  .homepage-non-usa .hb-svg-desktop,
  .page-template-index .hb-svg-desktop {
    display: none;
  }
}

.veeva-code {
  text-align: right;
  font-size: 0.875rem;
}

.news-update-row {
  background-color: #115d67;
  margin-top: 24px;
}
@media (max-width: 992px) {
  .news-update-row {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .news-update-row {
    padding-right: 0;
  }
}
.news-update-row .news-update-block {
  color: #fff;
  padding: 30px;
}
.news-update-row .news-update-block p {
  font-size: 1.375rem;
  line-height: 27px;
}
.news-update-row .news-update-block a {
  color: #fff;
  font-size: 1.125rem;
  line-height: 20px;
  text-transform: uppercase;
}
.news-update-row .news-update-block h4 {
  font-size: 1.75rem;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
}

#float-hex {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
@media (max-width: 767px) {
  #float-hex {
    bottom: auto;
    top: 30px;
    right: 10px;
  }
  #float-hex img {
    max-width: 150px;
  }
}

.max60 {
  max-width: 70%;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
  margin: 0 !important;
}

.search-bar {
  padding: 50px 0 30px;
  display: none;
  background: #fff;
}
.search-bar .brand {
  float: left;
}
.search-bar .brand .logo {
  width: 146px;
}
.search-bar .fa-search {
  float: left;
  margin: 15px 29px 0 22px;
}
.search-bar .search-form {
  float: left;
  width: calc(100% - 240px);
}
.search-bar .search-form label {
  width: calc(100% - 215px);
  display: block;
}
.search-bar .search-form label .search-field {
  border: none;
  color: green;
  padding: 0 20px 0 0;
  width: 100%;
  line-height: 45px;
}
.search-bar .search-form .search-submit {
  padding: 0 25px 0 0;
  background: none;
  border: none;
  font-weight: 400;
  font-size: 1.188rem;
  color: #115d67;
  cursor: pointer;
}
.search-bar .search-form .search-submit:focus {
  box-shadow: none;
}
.search-bar .search-form i {
  font-size: 1.5rem;
  margin-top: -4px;
  margin-left: -8px;
  vertical-align: middle;
}
.search-bar button.close {
  float: left;
  outline: none;
  margin: 8px 0 0;
  cursor: pointer;
}

.search .content .main h1, .search .content .main h2 {
  font-size: 1.875rem;
  line-height: 36px;
  margin: 35px 0 0;
  padding-top: 35px;
  border-top: 2px solid #f0efee;
}
.search .content .main h1:first-of-type, .search .content .main h2:first-of-type {
  font-size: 2.625rem;
  line-height: 46px;
  margin: 0 0 40px;
  padding: 0;
  border-top: none;
}
.search .content .main h1:nth-of-type(2), .search .content .main h2:nth-of-type(2) {
  border-top: none;
  padding: 0;
}
.search .content .main h1 span, .search .content .main h2 span {
  color: green;
  font-weight: 400;
}
.search .content .main h1 a, .search .content .main h2 a {
  color: #115d67;
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.3px;
}
.search .content .main .bsearch_nav {
  margin: 0 0 30px;
}
.search .content .main .bsearch_nav .bsearch_nav_row1 {
  background: #f2f5f5;
}
.search .content .main .bsearch_nav .bsearch_nav_row2 td {
  padding-top: 10px;
}
.search .content .main .bsearch_nav tr td {
  text-align: left !important;
}
.search .content .main .bsearch_nav tr td:first-child {
  width: 67%;
}
.search .content .main .bsearch_nav tr td:last-child {
  width: 33%;
}
.search .content .main .bsearch_nav tr td a {
  color: #115d67;
  font-weight: 700;
}
.search .content .main .bsearch_date {
  display: none;
}
.search .content .main .bsearch_score {
  color: #88aeb3;
  font-weight: 500;
}
.search .content .main .bsearch_footer {
  text-align: left;
  margin: 35px 0 0;
  padding-top: 35px;
  border-top: 2px solid #f0efee;
  color: #115d67;
}

.home .breadcrumbs,
.homepage-non-usa .breadcrumbs {
  display: none;
}
.home .widget-rss,
.homepage-non-usa .widget-rss {
  background: #f0efee;
  padding: 30px 30px;
  margin-top: 20px;
}
.home .widget-rss__header,
.homepage-non-usa .widget-rss__header {
  font-size: 1.75rem;
  color: #115D75;
  text-transform: uppercase;
  font-weight: 700;
}
.home .widget-rss a,
.homepage-non-usa .widget-rss a {
  margin-bottom: 30px;
  position: relative;
  display: block;
}
.home .widget-rss a:hover,
.homepage-non-usa .widget-rss a:hover {
  color: #192D35;
  font-size: 1.25rem;
}
.home .widget-rss a:last-of-type,
.homepage-non-usa .widget-rss a:last-of-type {
  margin-bottom: 0;
}
.home .widget-rss a .newsroom-date,
.homepage-non-usa .widget-rss a .newsroom-date {
  color: #000;
  font-size: 1.375rem;
}
.home .widget-rss a .newsroom-date *,
.homepage-non-usa .widget-rss a .newsroom-date * {
  display: inline-block;
}
.home .widget-rss a .newsroom-copy,
.homepage-non-usa .widget-rss a .newsroom-copy {
  font-size: 1.375rem;
}
.home .widget-pbc,
.homepage-non-usa .widget-pbc {
  background: #115d67;
  padding: 50px 30px;
  margin-top: 20px;
  color: #fff;
}
.home .widget-pbc__header,
.homepage-non-usa .widget-pbc__header {
  font-size: 1.75rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}
.home .widget-pbc a,
.homepage-non-usa .widget-pbc a {
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  display: block;
}
.home .widget-pbc a:hover,
.homepage-non-usa .widget-pbc a:hover {
  font-size: 1.25rem;
}
.home .widget-pbc a:last-of-type,
.homepage-non-usa .widget-pbc a:last-of-type {
  margin-bottom: 0;
}
.home .widget-pbc .newsroom-copy,
.homepage-non-usa .widget-pbc .newsroom-copy {
  font-size: 1.375rem;
  margin-bottom: 30px;
}
.home .widget-home,
.homepage-non-usa .widget-home {
  min-height: 293px;
  padding: 20px 25px 10px;
  position: relative;
  margin: 0 auto;
}
.home .widget-home .icon-play,
.homepage-non-usa .widget-home .icon-play {
  width: 28px;
  display: inline-block !important;
}
.home .widget-home h3,
.homepage-non-usa .widget-home h3 {
  font-size: 1.125rem;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.home .widget-home p,
.homepage-non-usa .widget-home p {
  font-size: 1rem;
  line-height: 20px;
}
.home .widget-home a,
.homepage-non-usa .widget-home a {
  font-size: 0.75rem;
  line-height: 16px;
  text-transform: uppercase;
  position: absolute;
  bottom: 12px;
}
.home .widget-home a.fill-div,
.homepage-non-usa .widget-home a.fill-div {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}
.home .widget-home.widget-meet-ally,
.homepage-non-usa .widget-home.widget-meet-ally {
  background: url(../../assets/images/bg-our-story.png);
}
.home .widget-home.widget-meet-ally h3, .home .widget-home.widget-meet-ally p,
.homepage-non-usa .widget-home.widget-meet-ally h3,
.homepage-non-usa .widget-home.widget-meet-ally p {
  color: #fff;
  max-width: 190px;
}
.home .widget-home.widget-meet-ally img,
.homepage-non-usa .widget-home.widget-meet-ally img {
  display: block;
  max-width: 180px;
}
.home .widget-home.widget-meet-ally p,
.homepage-non-usa .widget-home.widget-meet-ally p {
  margin-bottom: 10px;
  max-width: 190px;
}
.home .widget-home.widget-meet-ally a,
.homepage-non-usa .widget-home.widget-meet-ally a {
  color: #fff;
  position: relative;
  bottom: 0;
  display: block;
}
.home .widget-home.widget-meet-ally a:hover,
.homepage-non-usa .widget-home.widget-meet-ally a:hover {
  text-decoration: underline;
}
.home .widget-home.widget-meet-ally .textwidget > div,
.homepage-non-usa .widget-home.widget-meet-ally .textwidget > div {
  position: absolute;
  bottom: 12px;
  width: 87%;
}
.home .widget-home.widget-guy-sitting,
.homepage-non-usa .widget-home.widget-guy-sitting {
  background: url(../images/85A0988_v2_edited.jpg);
  background-size: cover;
  background-color: #115d67;
}
.home .widget-home.widget-guy-sitting h3, .home .widget-home.widget-guy-sitting p, .home .widget-home.widget-guy-sitting a,
.homepage-non-usa .widget-home.widget-guy-sitting h3,
.homepage-non-usa .widget-home.widget-guy-sitting p,
.homepage-non-usa .widget-home.widget-guy-sitting a {
  color: #fff;
}
.home .widget-home.widget-guy-sitting p,
.homepage-non-usa .widget-home.widget-guy-sitting p {
  max-width: 185px;
}
.home .widget-home.widget-guy-sitting p,
.homepage-non-usa .widget-home.widget-guy-sitting p {
  color: #fff;
  max-width: 190px;
}
.home .widget-home.widget-ocaliva,
.homepage-non-usa .widget-home.widget-ocaliva {
  background: url(../../assets/images/home_widget_meet_ally.png);
}
.home .widget-home.widget-ocaliva h3, .home .widget-home.widget-ocaliva p,
.homepage-non-usa .widget-home.widget-ocaliva h3,
.homepage-non-usa .widget-home.widget-ocaliva p {
  color: #fff;
  max-width: 190px;
}
.home .widget-home.widget-ocaliva img,
.homepage-non-usa .widget-home.widget-ocaliva img {
  display: block;
  margin: 35px auto 40px;
  max-width: 180px;
}
.home .widget-home.widget-ocaliva p,
.homepage-non-usa .widget-home.widget-ocaliva p {
  margin-bottom: 10px;
  max-width: 190px;
}
.home .widget-home.widget-ocaliva a,
.homepage-non-usa .widget-home.widget-ocaliva a {
  color: #fff;
  position: relative;
  bottom: 7px;
  display: block;
}
.home .widget-home.widget-ocaliva a:hover,
.homepage-non-usa .widget-home.widget-ocaliva a:hover {
  text-decoration: underline;
}
.home .widget-home.widget-ocaliva .textwidget > div,
.homepage-non-usa .widget-home.widget-ocaliva .textwidget > div {
  position: absolute;
  bottom: 12px;
  width: 87%;
}
.home .widget-home.widget-news,
.homepage-non-usa .widget-home.widget-news {
  background: url(../../assets/images/med_info.png);
}
.home .widget-home.widget-news h3, .home .widget-home.widget-news p,
.homepage-non-usa .widget-home.widget-news h3,
.homepage-non-usa .widget-home.widget-news p {
  color: #fff;
  max-width: 190px;
}
.home .widget-home.widget-news img,
.homepage-non-usa .widget-home.widget-news img {
  display: block;
  margin: 35px auto 40px;
  max-width: 180px;
}
.home .widget-home.widget-news p,
.homepage-non-usa .widget-home.widget-news p {
  margin-bottom: 10px;
  max-width: 190px;
}
.home .widget-home.widget-news a,
.homepage-non-usa .widget-home.widget-news a {
  color: #fff;
  position: relative;
  bottom: 7px;
  display: block;
}
.home .widget-home.widget-news a:hover,
.homepage-non-usa .widget-home.widget-news a:hover {
  text-decoration: underline;
}
.home .widget-home.widget-news .textwidget > div,
.homepage-non-usa .widget-home.widget-news .textwidget > div {
  position: absolute;
  bottom: 12px;
  width: 87%;
}
.home .hero .hero-content,
.homepage-non-usa .hero .hero-content {
  margin-left: 15px;
}
.home .content,
.homepage-non-usa .content {
  padding: 0;
}
.home .content .main,
.homepage-non-usa .content .main {
  padding-left: 30px;
  padding-right: 30px;
}

/*# sourceMappingURL=main.css.map */
