/*
$primary-font: 'Primary-font', sans-serif;
$secondary-font: 'Secondary-font', sans-serif;
$tertiary-font: 'Tertiary-font', sans-serif;
$primary-heading-font: 'Primary-heading-font', sans-serif;
$secondary-heading-font: 'Secondary-heading-font', sans-serif;
*/
.btn {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 250ms ease-out;
}
.btn:hover {
  text-decoration: none;
}
.btn .m-icon {
  margin-left: -15px;
}
.btn.btn-purple {
  color: #ffffff;
  background-color: #5D0F68;
  border-color: #5D0F68;
}
.btn.btn-purple:hover {
  color: #ffffff;
  background-color: #7E518A;
  border-color: #7E518A;
}
.btn.btn-transparent {
  background-color: #7E518A;
  color: #ffffff;
  border-color: #7E518A;
}
.btn.btn-transparent:hover {
  background-color: #ffffff;
  color: #1F1F1F;
  border-color: #ffffff;
}
.btn.btn-orange {
  color: #5D0F68;
  background-color: #f7921d;
  border-color: #f7921d;
}
.btn.btn-orange:hover {
  color: #1F1F1F;
  background-color: #FCBA75;
  border-color: #FCBA75;
}
.btn.btn-blue {
  color: #ffffff;
  background-color: #11679b;
  border-color: #11679b;
}
.btn.btn-blue:hover {
  color: #ffffff;
  background-color: #2E71A2;
  border-color: #2E71A2;
}
.btn.btn-white {
  color: #1F1F1F;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn.btn-white:hover {
  color: #1F1F1F;
  background-color: #FFE6CB;
  border-color: #FFE6CB;
}

/* MH INTRA ALERT SCSS */
#mh-alert__section {
  position: relative;
  z-index: 99 !important;
  margin-bottom: 1rem;
}

.mh-alert__ip-section {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}
.mh-alert__wrapper {
  padding: 3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  border-radius: 100px;
}
.mh-alert__wrapper.red {
  background-color: #E26E55;
}
.mh-alert__wrapper.red__icon {
  background-color: #EEA790;
}
.mh-alert__wrapper.orange {
  background-color: #F9A64A;
}
.mh-alert__wrapper.green {
  background-color: #95cb64;
}
.mh-alert__icon.orange {
  background-color: #FCBA75;
}
.mh-alert__icon.red {
  background-color: #EEA790;
}
.mh-alert__icon.green {
  background-color: rgba(226, 240, 212, 0.4117647059);
}
.mh-alert__icon {
  padding: 0.8rem;
  border-radius: 50px;
  font-size: 1.3rem;
  margin: 3px;
}
.mh-alert__title {
  color: #1F1F1F;
  line-height: 1.1;
  padding: 0.5rem 0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin: 0;
  text-decoration: none;
  transition: all 250ms ease-out;
}
.mh-alert__title:hover {
  color: #1F1F1F;
  text-decoration: underline;
}
.mh-alert__title.no-link {
  cursor: not-allowed;
}
.mh-alert__title.no-link:hover {
  color: #1F1F1F;
  text-decoration: none !important;
}
.mh-alert__text-wrapper {
  display: flex;
  align-items: center;
  padding: 0rem;
  width: 100%;
}
.mh-alert__text-wrapper .flex-grow-1 {
  padding-left: 1rem;
  display: flex;
  align-items: center;
}
.mh-alert__close {
  padding: 0.75rem;
  margin-right: 0.5rem;
  z-index: 2;
  font-size: 1.2rem;
  cursor: pointer;
}

.mh-alert__section {
  transition: all 0.4s ease-in;
  display: block;
  background-color: rgb(0, 4, 46);
  opacity: 0;
  height: 0%;
  max-height: 0px;
}
.mh-alert__section.active {
  position: relative !important;
  height: 100%;
  opacity: 1;
  max-height: 100%;
}

/* Icons Styling */
.m-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 3px;
}

.icon-blue {
  background-color: #11679b;
}

.icon-heart:before {
  border-radius: 25px;
  padding: 8px;
  background-color: #5D0F68;
  color: #ffffff;
  font-size: 14px;
}

.icon-orange {
  background-color: #f7921d;
}

.icon-white {
  background-color: #ffffff;
  transition: all 250ms ease-out;
}
.icon-white:hover {
  background-color: #f7921d;
  transition: all 250ms ease-out;
}

.icon-purple {
  background-color: #5D0F68;
}

.icon-transparent {
  background-color: #7E518A;
}

.inline-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.inline-menu > li {
  display: inline-block;
}
.inline-menu ul {
  list-style: none;
}

.ms-trim > :first-child, .my-trim > :first-child {
  margin-top: 0;
}

.ms-trim-important > :first-child, .my-trim-important > :first-child {
  margin-top: 0 !important;
}

.me-trim > :last-child, .my-trim > :last-child {
  margin-bottom: 0;
}

.me-trim-important > :last-child, .my-trim-important > :last-child {
  margin-bottom: 0 !important;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background-color: #F6F2EE;
  color: #1f1f1f;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin: 1rem 0;
  color: #1F1F1F;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

hr {
  margin: 0 0 1.5rem 0;
  opacity: 0.9;
  color: #e6dbcd;
}

figure {
  margin: 2rem 0;
}
figure figcaption {
  color: #6c757d;
  margin-top: 1em;
  font-size: 0.9em;
}

a {
  transition: all 0.2s ease-in-out;
  text-underline-offset: 0.1em;
}
a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 1439px) {
  .container {
    max-width: 95%;
  }
}

.alignright {
  float: right;
  margin: 10px;
}

.alignleft {
  float: left;
  margin: 10px;
}

.n-term {
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #5D0F68;
  padding: 5px 12px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.n-term:hover {
  color: #ffffff !important;
  background-color: #7E518A;
  border-color: #7E518A;
  text-decoration: none !important;
}

#skiplink-container {
  text-align: left;
}
#skiplink-container a {
  position: absolute;
  left: -10000px;
  overflow: hidden;
  width: 250px;
  z-index: 9999;
  display: inline-block;
}
#skiplink-container a:focus, #skiplink-container a:active {
  position: static;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
  text-decoration: underline;
}

#ieWarning {
  display: none;
  padding: 15px;
  font-family: sans-serif;
  font-size: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(241, 196, 15, 0.9);
  color: #000;
}
#ieWarning strong {
  display: block;
  margin-bottom: 15px;
}
#ieWarning i {
  float: left;
  font-size: 55px;
  margin: 2px 25px 0 0;
  color: #000;
}
#ieWarning p {
  margin: 0;
}
#ieWarning p a {
  color: #000;
}
#ieWarning p a:hover, #ieWarning p a:focus {
  text-decoration: none;
}
#ieWarning.is-visible {
  display: block;
}

#mobile-menu-toggle {
  display: none;
}
#mobile-menu-toggle + label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: inline-block;
  width: 32px;
  height: 23px;
  box-sizing: content-box;
  border: 0 solid transparent;
  z-index: 1050;
  line-height: 23px;
  white-space: nowrap;
  background: transparent;
  border-radius: 0;
}
#mobile-menu-toggle + label span {
  display: inline-block;
  position: absolute;
  left: 100%;
  margin-top: 1px;
  transition: color 0.25s;
  margin-left: 0;
}
#mobile-menu-toggle + label span::before, #mobile-menu-toggle + label span::after {
  content: "";
  display: inline-block;
  min-width: 10px;
  width: 6.4px;
}
#mobile-menu-toggle + label i, #mobile-menu-toggle + label::before, #mobile-menu-toggle + label::after {
  position: absolute;
  left: 0;
  display: block;
  will-change: transform, background-color;
  width: 32px;
  height: 3px;
  border-radius: 0;
  transition: transform 0.25s, background-color 0.25s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  outline: 1px solid transparent;
}
#mobile-menu-toggle + label i {
  top: 10px;
  font-size: 0;
  color: transparent;
  line-height: 0;
}
#mobile-menu-toggle + label::before, #mobile-menu-toggle + label::after {
  content: "";
}
#mobile-menu-toggle + label::before {
  top: 0;
}
#mobile-menu-toggle + label::after {
  bottom: 0;
}
#mobile-menu-toggle + label:hover {
  cursor: pointer;
}
#mobile-menu-toggle:checked + label i {
  transform: scaleX(0.001);
}
#mobile-menu-toggle:checked + label::before {
  transform: translateY(10px) rotate(45deg);
}
#mobile-menu-toggle:checked + label::after {
  transform: translateY(-10px) rotate(-45deg);
}
#mobile-menu-toggle + label i, #mobile-menu-toggle + label::before, #mobile-menu-toggle + label::after {
  background-color: #5D0F68;
}
#mobile-menu-toggle:hover + label i, #mobile-menu-toggle:hover + label::before, #mobile-menu-toggle:hover + label::after {
  background-color: #7E518A;
}
.primary-menu {
  /* Current menu item style without effecting the sub menu */
  /**Menu Breakpoint Refinements**/
}
.primary-menu li {
  padding: 3rem 0;
}
.primary-menu li a:not(.sub-menu li a) {
  color: #5D0F68;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  border-radius: 30px;
  padding: 0.5rem 1rem;
}
.primary-menu li a:not(.sub-menu li a), .primary-menu li a:not(.sub-menu li a):visited {
  color: #5D0F68;
  text-decoration: none;
}
.primary-menu li a:not(.sub-menu li a):hover, .primary-menu li a:not(.sub-menu li a):focus, .primary-menu li a:not(.sub-menu li a):visited:hover, .primary-menu li a:not(.sub-menu li a):visited:focus {
  color: #ffffff;
  background-color: #5D0F68;
}
.primary-menu li a:not(.sub-menu li a):active, .primary-menu li a:not(.sub-menu li a):visited:active {
  background-color: #5D0F68;
  color: #ffffff;
  border-radius: 30px;
}
.primary-menu .current-menu-item > a:not(.sub-menu li a) {
  color: #ffffff;
  background-color: #5D0F68;
}
.primary-menu .current-menu-item > a:not(.sub-menu li a):visited {
  color: #ffffff;
}
.primary-menu .btn-call a {
  color: #1F1F1F;
  font-size: 16px;
}
.primary-menu .btn-call.current-menu-item {
  background-color: transparent !important;
  padding: 0;
}
.primary-menu .menu-item-has-children > a:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  margin-left: 0.5em;
}
.primary-menu .menu-item-has-children > a:hover:after {
  transform: rotate(180deg);
}
.primary-menu .current-menu-ancestor > a:not(.sub-menu li a) {
  color: #ffffff !important;
  background-color: #5D0F68;
}
.primary-menu .menu-item-has-children {
  position: relative;
  /* Menu items has children hover state*/
}
.primary-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  z-index: 1;
  left: 0;
  background: #fdf7ef;
  min-width: 250px;
  padding: 0;
  margin-top: 48px;
  box-shadow: 2px 0 15px 0 rgba(0, 0, 0, 0.2);
  transition: all 250ms ease-out;
}
.primary-menu .menu-item-has-children .sub-menu li {
  border-bottom: 1px solid #e6dbcd;
  padding: 0;
  margin: 0 !important;
  position: relative;
  transition: all 250ms ease-out;
}
.primary-menu .menu-item-has-children .sub-menu li a {
  color: #5D0F68;
  font-weight: bold;
  font-size: 16px;
  padding: 0.5rem 2.5rem 10px 1rem;
  line-height: 1.2;
  text-decoration: none;
  display: block;
}
.primary-menu .menu-item-has-children .sub-menu li a:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  margin-left: 0.25em;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.primary-menu .menu-item-has-children .sub-menu li:hover {
  color: #ffffff;
  background-color: #5D0F68;
  border-radius: 0;
  transition: all 250ms ease-out;
}
.primary-menu .menu-item-has-children .sub-menu li:hover a {
  color: #ffffff !important;
  border-radius: none;
  background-color: none;
}
.primary-menu .menu-item-has-children .sub-menu li:hover .sub-menu {
  display: block;
  position: absolute;
  left: 100%;
  top: -48px;
  padding-top: 0;
}
.primary-menu .menu-item-has-children .sub-menu li:hover .sub-menu li a {
  color: #5D0F68 !important;
}
.primary-menu .menu-item-has-children .sub-menu li:hover .sub-menu li:hover a {
  color: #ffffff !important;
}
.primary-menu .menu-item-has-children .sub-menu li:hover .sub-menu .current-menu-item {
  background-color: #5D0F68;
}
.primary-menu .menu-item-has-children .sub-menu li:hover .sub-menu .current-menu-item a {
  color: #ffffff !important;
}
.primary-menu .menu-item-has-children .sub-menu li:last-child {
  border-bottom: none;
}
.primary-menu .menu-item-has-children .sub-menu .current-menu-item {
  background-color: #5D0F68;
}
.primary-menu .menu-item-has-children .sub-menu .current-menu-item a {
  color: #ffffff !important;
}
.primary-menu .menu-item-has-children:hover .sub-menu li a {
  background-color: none;
}
.primary-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}
.primary-menu .menu-item-has-children:hover > .sub-menu li {
  color: #5D0F68;
}
.primary-menu .menu-item-has-children:hover > .sub-menu li a {
  color: #5D0F68;
}
@media (min-width: 992px) and (max-width: 1130px) {
  .primary-menu li {
    padding: 2rem 0;
  }
  .primary-menu li a {
    font-size: 14px !important;
    padding: 0.4rem !important;
  }
  .primary-menu li .sub-menu {
    margin-top: 32px !important;
  }
  .primary-menu .btn-call a {
    font-size: 12px !important;
  }
  .primary-menu .btn-call a:before {
    display: none !important;
  }
}
@media (min-width: 1131px) and (max-width: 1360px) {
  .primary-menu li a {
    font-size: 16px !important;
    padding: 0.5rem 0.6rem !important;
  }
  .primary-menu .btn-call a {
    font-size: 14px !important;
  }
  .primary-menu .btn-call a:before {
    display: none !important;
  }
}

.mobile-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.mobile-menu-wrap {
  position: relative;
  height: 0;
  z-index: 999;
}
@media only screen and (min-width: 992px) {
  .mobile-menu-wrap {
    display: none;
  }
}
.mobile-menu, .mobile-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-menu:first-child {
  border-top: 1px solid #E6DBCD;
}
.mobile-menu a {
  display: block;
  background: #F6F2EE;
  color: #5D0F68;
  text-decoration: none;
  font-weight: bold;
  padding: 1em 1.5em;
  border-bottom: solid 1px #E6DBCD;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  background: #F6F2EE;
  color: #5D0F68;
}
.mobile-menu .sub-menu a {
  background: #F6F2EE;
  color: #5D0F68;
  font-weight: bold;
  padding-left: 40px;
}
.mobile-menu .sub-menu a:hover, .mobile-menu .sub-menu a:focus {
  background: #F6F2EE;
  color: #5D0F68;
}
.mobile-menu__link-wrap {
  position: relative;
}
.mobile-menu__sub-menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #F6F2EE;
  border: none;
  outline: none;
  -webkit-appearance: none;
  border-left: solid 1px #E6DBCD;
  border-bottom: 1px solid #E6DBCD;
  width: 4em;
  color: #5D0F68;
}
.mobile-menu__sub-menu-toggle.open {
  background: #F6F2EE;
}

.primary-footer {
  background-color: #f3ebe1;
}
.primary-footer__top {
  color: #ffffff;
  padding-top: 5rem;
  background: linear-gradient(104.92deg, #5d0f68 0%, #480d51 77.42%, #330b39 100%);
}
.primary-footer__top a {
  color: #ffffff;
}
.primary-footer__top h1,
.primary-footer__top h2,
.primary-footer__top h3,
.primary-footer__top h4,
.primary-footer__top h5,
.primary-footer__top h6 {
  color: #ffffff;
}
.primary-footer__top .container {
  position: relative;
  z-index: 9;
}
.primary-footer__top .ind-top-rap {
  bottom: 0;
  margin-bottom: -50px;
  margin-top: -50px;
  width: 100%;
}
.primary-footer__top .right-circles {
  position: absolute;
  right: 0;
  top: 0;
}
.primary-footer__top-col1 .btn-transparent {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
  padding: 10px 30px 10px 25px;
  border-radius: 50px;
}
.primary-footer__top-col1 .btn-transparent .m-icon {
  padding: 7px;
  width: 50px;
  height: 50px;
}
.primary-footer__top-col1 .socials a i {
  border-radius: 50%;
  margin-right: 5px;
}
.primary-footer__top-col1 .socials a i:before {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-out;
}
.primary-footer__top-col1 .socials a i:hover:before {
  background-color: #ffffff;
  color: #5D0F68;
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .primary-footer__top-col1 {
    margin-bottom: 2rem;
  }
}
.primary-footer__top-col2 .footer-nav {
  padding-left: 0;
}
.primary-footer__top-col2 .footer-nav li {
  list-style-type: none;
}
.primary-footer__top-col2 .footer-nav li a {
  color: #ffffff;
  font-weight: bold;
  line-height: 1.8;
  font-size: 18px;
}
.primary-footer__top-col2 .footer-nav li a:hover {
  color: #ffffff;
  text-decoration: none;
}
.primary-footer__top-col2 hr {
  color: #ffffff;
  opacity: 0.2;
  max-width: 80%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .primary-footer__top-col2 {
    margin-bottom: 2rem;
  }
}
.primary-footer__top-col3 .loc-content, .primary-footer__top-col4 .loc-content {
  min-height: 185px;
}
@media only screen and (max-width: 767px) {
  .primary-footer__top-col3 .loc-content, .primary-footer__top-col4 .loc-content {
    margin-bottom: 1rem;
  }
}
.primary-footer__top-col3 .loc-content h4, .primary-footer__top-col4 .loc-content h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 18px;
}
.primary-footer__top-col3 .loc-content p, .primary-footer__top-col4 .loc-content p {
  color: #cebfd7;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
}
.primary-footer__top-col3 .loc-content a, .primary-footer__top-col4 .loc-content a {
  color: #cebfd7;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.6;
  text-decoration: none;
}
.primary-footer__top-col3 .loc-content a:hover, .primary-footer__top-col4 .loc-content a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .primary-footer__top-col3, .primary-footer__top-col4 {
    margin-bottom: 2rem;
  }
}
.primary-footer__top-col4 h4 {
  margin-top: 0;
}
.primary-footer__top .btn-member-login {
  background-color: #5d0f68;
  border: none;
}
.primary-footer__bottom {
  padding-top: 3rem;
  position: relative;
  z-index: 5;
}
.primary-footer__bottom a {
  color: #1F1F1F;
}
.primary-footer__bottom .copyright-txt {
  color: #1F1F1F;
  font-weight: bold;
  margin-bottom: 0;
}
.primary-footer__bottom .footer-bottom-menu {
  margin-bottom: 0.5rem;
}
.primary-footer__bottom .footer-bottom-menu li:after {
  content: "|";
  margin-left: 5px;
}
.primary-footer__bottom .footer-bottom-menu li:last-child:after {
  content: "";
}
.primary-footer__bottom .ack-logo {
  width: auto;
  height: 100px;
  margin-right: 3rem;
}
@media only screen and (max-width: 767px) {
  .primary-footer__bottom .ack-logo {
    margin-right: 1rem;
    height: 75px;
  }
}
.primary-footer__bottom .acc-logo {
  width: auto;
  height: 65px;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.primary-footer__privacy {
  background-color: #5D0F68;
  padding: 1.5rem;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}
.primary-footer__privacy p {
  margin-bottom: 0;
}
.primary-footer__privacy a {
  color: #ffffff;
  text-decoration: underline;
}

.header-wrapper .header-top-bar {
  background-color: #5D0F68;
  color: #ffffff;
}
.header-wrapper .header-top-bar .container-fluid {
  position: relative;
  z-index: 9999;
}
.header-wrapper .header-top-bar a {
  color: #e4dce9;
  text-decoration: none;
  font-weight: bold;
}
@media only screen and (max-width: 575px) {
  .header-wrapper .header-top-bar a {
    font-size: 12px;
    line-height: 1.2;
  }
}
.header-wrapper .header-top-bar .search-icons {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #e4dce9;
}
@media only screen and (max-width: 575px) {
  .header-wrapper .header-top-bar .search-icons {
    font-size: 12px;
    margin-right: 25px;
  }
}
.header-wrapper .header-top-bar .search-icons:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-wrapper .header-top-bar .m-menu-i1 {
  display: flex;
  align-items: center;
  transition: none;
}
.header-wrapper .header-top-bar .m-menu-i1:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.header-wrapper .header-top-bar .header-right-shape {
  right: -100px;
  top: -50px;
  width: 600px;
}
.header-wrapper .header-top-bar .donate-btn {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media only screen and (max-width: 575px) {
  .header-wrapper .header-top-bar .donate-btn {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
    padding-right: 30px;
    margin: 0 !important;
  }
}
.header-wrapper .primary-header {
  background-color: #F6F2EE !important;
  position: relative;
  z-index: 9999;
}
@media only screen and (max-width: 991px) {
  .header-wrapper .primary-header {
    padding: 5px 0;
  }
}
.header-wrapper .primary-header__logo {
  width: 260px;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .header-wrapper .primary-header__logo {
    width: 135px;
  }
}
.header-wrapper .primary-header .primary-menu .btn-call {
  padding: 0;
}
.header-wrapper .primary-header .primary-menu .btn-call a {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 250ms ease-out;
  background-color: #f7921d;
  color: #1f1f1f;
}
.header-wrapper .primary-header .primary-menu .btn-call a:before {
  content: "\f095";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  margin-right: 10px;
  color: #ffffff;
  background-color: #fcba75;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.header-wrapper .primary-header .primary-menu .btn-call a:hover {
  background-color: #fcba75;
  color: #1F1F1F;
  text-decoration: none;
}
.header-wrapper .header_left_curve {
  --big-circle-r: 175px;
  --card-color: #fff;
  opacity: 0.1;
  --pillar-size: 35px;
  background: radial-gradient(circle at 100% 0%, transparent var(--big-circle-r), var(--card-color) calc(var(--big-circle-r) + 1px)) 0px var(--pillar-size)/calc(100% - var(--pillar-size)) 100% no-repeat;
  width: 500px;
  width: 400px;
  min-height: 218px;
  position: absolute;
  left: 0;
  top: -35px;
  z-index: 1;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  z-index: 99;
}
.search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.search-modal__modal {
  position: relative;
  background: white;
  padding: 2em;
  width: 100%;
  max-width: 600px;
}
.search-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  color: #ffffff;
  background-color: #5D0F68;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.75em;
  width: 1.75em;
  border: none;
  outline: none;
}
.search-modal__form {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px;
}
.search-modal .search-form {
  display: flex;
  flex: 1;
  align-items: center;
}
.search-modal .search-form label {
  flex: 1;
}
.search-modal .search-form .search-icon-pre {
  display: none;
}
.search-modal .search-form .search-field {
  border: none;
  outline: none;
  -webkit-appearance: none;
  padding: 1em 0;
  font-size: 1.5em;
  width: 100%;
}
.search-modal .search-form .search-field::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #6c757d;
}
.search-modal .search-form .search-field::-moz-placeholder { /* Firefox 19+ */
  color: #6c757d;
}
.search-modal .search-form .search-field:-ms-input-placeholder { /* IE 10+ */
  color: #6c757d;
}
.search-modal .search-form .search-field:-moz-placeholder { /* Firefox 18- */
  color: #6c757d;
}
.search-modal .search-form .search-field::-webkit-search-decoration, .search-modal .search-form .search-field::-webkit-search-cancel-button, .search-modal .search-form .search-field::-webkit-search-results-button, .search-modal .search-form .search-field::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search-modal .search-form .search-submit {
  border: none;
  background: none;
}
.search-modal .search-form .search-submit i {
  font-size: 1.4em;
  font-weight: bold;
  color: #1F1F1F;
}
.search-modal__button {
  border: none;
  background: none;
  outline: none;
  padding: 1.5em;
}
.search-modal__icon {
  font-size: 1.5em;
}

.breadcrumbs {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  line-height: 1.2;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: #ffffff;
  font-weight: bold;
}
.breadcrumbs i {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0;
}
.breadcrumbs__separator {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
}
.breadcrumbs span {
  white-space: nowrap;
}

.accordion .accordion-item {
  border: none;
}
.accordion .accordion-item + .accordion-item {
  margin-top: 1em;
}
.accordion .accordion-item .accordion-header {
  margin: 0;
}
.accordion .accordion-item .accordion-button {
  border: 1px solid #E6DBCD;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  background-color: #ffffff;
  color: #5D0F68;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease-out;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #5D0F68;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid #5D0F68;
}
.accordion .accordion-item .accordion-button:not(.collapsed):after {
  content: "\f068";
  font-family: "Font Awesome 6 pro";
  background-image: none;
  color: #ffffff;
}
.accordion .accordion-item .accordion-button:after {
  content: "+";
  font-family: "Font Awesome 6 pro";
  background-image: none;
  color: #5D0F68;
}
.accordion .accordion-item .accordion-button:hover {
  background-color: #5D0F68;
  color: #ffffff;
  border: 1px solid #5D0F68;
  transition: all 0.3s ease-in;
}
.accordion .accordion-item .accordion-button:hover:after {
  color: #ffffff;
}
.accordion:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.light-purple {
  border: solid 1px #5D0F68 !important;
  border-radius: 20px;
  background-color: rgba(206, 191, 215, 0.3) !important;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .light-purple {
    display: flex;
  }
}
.light-purple__icon {
  flex: none;
  margin-right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.light-purple__content blockquote {
  font-size: 22px;
  font-weight: bold;
  color: #5d0f68;
  line-height: 1.3;
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
}
.light-purple__content blockquote cite {
  font-size: 16px;
  font-style: normal;
}

.info-notice {
  border: solid 1px #e6dbcd;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .info-notice {
    display: flex;
  }
}
.info-notice__icon {
  flex: none;
  margin-right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.info-notice__content blockquote {
  font-size: 22px;
  font-weight: bold;
  color: #5d0f68;
  line-height: 1.3;
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
}
.info-notice__content blockquote cite {
  font-size: 16px;
  font-style: normal;
}

/** Profiles Block Styling **/
.profiles-block .info-notice__icon {
  width: 150px;
  height: 150px;
  margin-right: 2rem;
}
.profiles-block .info-notice__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar {
  /** 
  Rich text Links Styling
  **/
  /**
  Sidebar Free text block styling
  **/
  /**
  Sidebar Free text block styling
  **/
  /**
  Sibling Page Styling
  **/
}
.sidebar .print_share .btn-share {
  margin-right: 20px;
}
.sidebar .print_share .btn-share,
.sidebar .print_share .btn-print {
  background-color: #ebe3e7;
  font-size: 16px;
  font-weight: bold;
  width: 150px;
  text-align: left;
  position: relative;
  margin-bottom: 1rem;
}
.sidebar .print_share .btn-share:hover,
.sidebar .print_share .btn-print:hover {
  background-color: #5D0F68;
  color: #ffffff;
}
.sidebar .print_share .btn-share:hover .m-icon,
.sidebar .print_share .btn-print:hover .m-icon {
  background-color: #ffffff;
  color: #5D0F68;
}
.sidebar .print_share .btn-share .right-arrow,
.sidebar .print_share .btn-print .right-arrow {
  font-size: 14px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .print_share .btn-share .m-icon,
.sidebar .print_share .btn-print .m-icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.sidebar .sb-related-links {
  background: linear-gradient(135.05deg, #330b39 0%, #5d0f68 100%);
  border-radius: 15px;
  padding: 2rem;
}
@media only screen and (max-width: 575px) {
  .sidebar .sb-related-links {
    padding: 1rem;
  }
}
.sidebar .sb-related-links h4 {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 1rem;
  margin-top: 0;
}
.sidebar .sb-related-links .link-list li a {
  color: #1F1F1F;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
  padding-right: 40px;
  border-radius: 50px;
  background-color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  transition: all 250ms ease-out;
}
.sidebar .sb-related-links .link-list li a:hover {
  color: #ffffff;
  background-color: #8b6497;
  transition: all 250ms ease-out;
}
.sidebar .sb-related-links .link-list li a .icon-purple {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  padding: 10px;
}
.sidebar .sb-related-links .link-list li a .right-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.sidebar .rt-with-links {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #E6DBCD;
  padding: 2rem;
}
@media only screen and (max-width: 575px) {
  .sidebar .rt-with-links {
    padding: 1rem;
  }
}
.sidebar .rt-with-links h4 {
  color: #1F1F1F;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 1rem;
  margin-top: 0;
}
.sidebar .rt-with-links p {
  color: #1F1F1F;
  font-weight: normal;
  letter-spacing: 0;
  margin-bottom: 1rem;
  margin-top: 0;
}
.sidebar .rt-with-links li {
  margin-bottom: 0.5rem;
}
.sidebar .rt-with-links .link-list li a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
  padding-right: 40px;
  border-radius: 50px;
  background-color: #5D0F68;
  margin-bottom: 0.5rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  transition: all 250ms ease-out;
}
.sidebar .rt-with-links .link-list li a:hover {
  color: #ffffff;
  background-color: #8b6497;
  transition: all 250ms ease-out;
}
.sidebar .rt-with-links .link-list li a:hover .icon-purple {
  background-color: #5D0F68;
  transition: all 250ms ease-out;
}
.sidebar .rt-with-links .link-list li a .icon-purple {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  background-color: #8b6497;
  padding: 10px;
}
.sidebar .rt-with-links .link-list li a .right-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.sidebar .bg-green {
  background: linear-gradient(131.61deg, #aed68a 0%, #95cb64 100%);
}
.sidebar .bg-green .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
  transition: all 250ms ease-out;
}
.sidebar .bg-green .link-list li a .m-icon {
  background-color: #7ac142;
  transition: all 250ms ease-out;
}
.sidebar .bg-green .link-list li a:hover {
  color: #1F1F1F;
  background-color: #e2f0d4;
  transition: all 250ms ease-out;
}
.sidebar .bg-green .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .bg-blue {
  background: linear-gradient(138.44deg, #71bddf 0%, #5eb7dc 100%);
}
.sidebar .bg-blue .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
  transition: all 250ms ease-out;
}
.sidebar .bg-blue .link-list li a .m-icon {
  background-color: #40b0d7;
  transition: all 250ms ease-out;
}
.sidebar .bg-blue .link-list li a:hover {
  color: #1F1F1F;
  background-color: #daecf7;
  transition: all 250ms ease-out;
}
.sidebar .bg-blue .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .bg-purple {
  background: linear-gradient(135.05deg, #330b39 0%, #5d0f68 100%);
  color: #ffffff;
}
.sidebar .bg-purple h4 {
  color: #ffffff;
}
.sidebar .bg-purple p {
  color: #ffffff;
}
.sidebar .bg-purple a {
  color: #ffffff;
}
.sidebar .bg-purple li {
  color: #ffffff;
}
.sidebar .bg-purple .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
}
.sidebar .bg-purple .link-list li a .m-icon {
  background-color: #5D0F68;
  transition: all 250ms ease-out;
}
.sidebar .bg-purple .link-list li a:hover {
  color: #1F1F1F;
  background-color: #cebfd7;
  transition: all 250ms ease-out;
}
.sidebar .bg-purple .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .bg-pink {
  background: linear-gradient(131.61deg, #eebcc3 0%, #e594a4 100%);
  color: #1F1F1F;
}
.sidebar .bg-pink .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
}
.sidebar .bg-pink .link-list li a .m-icon {
  background-color: #e594a4;
  transition: all 250ms ease-out;
}
.sidebar .bg-pink .link-list li a:hover {
  color: #1F1F1F;
  background-color: #F3D1D6;
  transition: all 250ms ease-out;
}
.sidebar .bg-pink .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .bg-orange {
  background: linear-gradient(125.26deg, #F89727 0%, #FDB360 100%);
  color: #1F1F1F;
}
.sidebar .bg-orange .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
}
.sidebar .bg-orange .link-list li a .m-icon {
  background-color: #f7921d;
  transition: all 250ms ease-out;
}
.sidebar .bg-orange .link-list li a:hover {
  color: #1F1F1F;
  background-color: #FFE6CB;
  transition: all 250ms ease-out;
}
.sidebar .bg-orange .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .bg-navy {
  background: linear-gradient(125.26deg, #11679b 0%, #6487b1 100%);
  color: #1F1F1F;
}
.sidebar .bg-navy h4 {
  color: #ffffff;
}
.sidebar .bg-navy p {
  color: #ffffff;
}
.sidebar .bg-navy a {
  color: #ffffff;
}
.sidebar .bg-navy li {
  color: #ffffff;
}
.sidebar .bg-navy .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
}
.sidebar .bg-navy .link-list li a .m-icon {
  background-color: #11679b;
  transition: all 250ms ease-out;
}
.sidebar .bg-navy .link-list li a:hover {
  color: #1F1F1F;
  background-color: #CBD3E4;
  transition: all 250ms ease-out;
}
.sidebar .bg-navy .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .bg-red {
  background: linear-gradient(125.26deg, #E99379 0%, #EEA790 100%);
  color: #1F1F1F;
}
.sidebar .bg-red .link-list li a {
  color: #1F1F1F;
  background-color: #ffffff;
}
.sidebar .bg-red .link-list li a .m-icon {
  background-color: #E99379;
  transition: all 250ms ease-out;
}
.sidebar .bg-red .link-list li a:hover {
  color: #1F1F1F;
  background-color: #F6D1C1;
  transition: all 250ms ease-out;
}
.sidebar .bg-red .link-list li a:hover .m-icon {
  background-color: #ffffff;
  color: #1F1F1F;
}
.sidebar .sb-text-block {
  background: linear-gradient(125.26deg, #F89727 0%, #FDB360 100%);
  border-radius: 15px;
  padding: 2rem;
}
@media only screen and (max-width: 575px) {
  .sidebar .sb-text-block {
    padding: 1rem;
  }
}
.sidebar .sb-text-block .sb-ft-link {
  color: #1F1F1F;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
  padding-right: 40px;
  border-radius: 50px;
  background-color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 16px;
  line-height: 1.2;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: all 250ms ease-out;
}
.sidebar .sb-text-block .sb-ft-link:hover {
  color: #1F1F1F;
  background-color: #f8971d;
  transition: all 250ms ease-out;
}
.sidebar .sb-text-block .sb-ft-link:hover .m-icon {
  background-color: #ffffff;
  color: #f7921d;
  transition: all 250ms ease-out;
}
.sidebar .sb-text-block .sb-ft-link .m-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  padding: 10px;
}
.sidebar .sb-text-block .sb-ft-link .right-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.sidebar .sb_newsletter_subscribe {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid #E6DBCD;
}
@media only screen and (max-width: 575px) {
  .sidebar .sb_newsletter_subscribe {
    padding: 1rem;
  }
}
.sidebar .sb_newsletter_subscribe .btn {
  padding-right: 15px;
}
.sidebar .sb-sibling-pages .link-list li {
  position: relative;
}
.sidebar .sb-sibling-pages .link-list li a {
  padding-left: 20px;
}
.sidebar .sb-sibling-pages .link-list li a:after {
  content: "\f054";
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  margin-left: 0.25em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.pagination .page-numbers {
  border: solid 1px #dee2e6;
  background: white;
  width: 3em;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers + .page-numbers {
  border-left: 0;
}
.pagination .page-numbers.prev {
  width: auto;
  padding: 0 1em;
}
.pagination .page-numbers.next {
  width: auto;
  padding: 0 1em;
}
.resources__letters {
  cursor: default;
}
.resources__letter {
  outline: none;
  border: none;
  -webkit-appearance: none;
  background: none;
  display: inline-block;
  padding: 0.25em 0.45em;
  font-size: 1.25em;
  text-transform: uppercase;
  cursor: default;
}
.resources__letter.has-resources {
  color: white;
}
.resources__letter.has-resources:hover {
  background-color: #5D0F68;
}
.resources__group.hidden {
  display: none;
}
.resources__search {
  border-bottom: solid 1px;
}
.resources__search-input {
  border: none;
  outline: none;
  -webkit-appearance: none;
  padding: 0.5em 0 0.5em 0.5em;
  font-size: 1.125em;
}

.resource__icon {
  font-size: 1em;
  width: 30px;
  flex: none;
}
.resource.hidden {
  display: none;
}

.select-field {
  background: #6c757d;
  position: relative;
  color: white;
}
.select-field__icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-field__select {
  color: inherit;
  border: none;
  outline: none;
  padding: 0.85em 4em 0.85em 2.5em;
  -webkit-appearance: none;
  position: relative;
  z-index: 1;
  background: transparent;
  min-width: 240px;
}
.select-field__caret {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-slider {
  position: relative;
}
.slick-slider .slick-dots li button, .slick-slider .slick-next, .slick-slider .slick-prev {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
}
.slick-slider .slick-next, .slick-slider .slick-prev {
  position: absolute;
  width: 35px;
  height: 35px;
  z-index: 1;
  transform: translateY(-50%);
  text-indent: -99999px;
}
.slick-slider .slick-next:after, .slick-slider .slick-prev:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.slick-slider button.slick-prev.slick-arrow {
  background: none;
}
.slick-slider button.slick-next.slick-arrow {
  background: none;
}
.slick-slider .slick-prev {
  left: 10px;
  background: none;
}
.slick-slider .slick-prev:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' fill='currentColor'><path d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 278.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z'/></svg>");
  background-color: #ffffff;
  border: 1px solid #e7d4bd;
  border-radius: 25px;
  width: 35px;
  height: 35px;
}
.slick-slider .slick-next {
  right: 0;
  left: 50px !important;
}
.slick-slider .slick-next:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'><path d='M342.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L274.7 256 105.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/></svg>");
  background-color: #ffffff;
  border: 1px solid #e7d4bd;
  border-radius: 25px;
  width: 35px;
  height: 35px;
}
.slick-slider .slick-dots {
  position: absolute;
  z-index: 1;
  list-style: none;
  padding: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.slick-slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-slider .slick-dots li button {
  text-indent: -9999px;
  width: 12px;
  height: 12px;
  overflow: hidden;
  display: block;
  background: black;
  border-radius: 50%;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: #5D0F68;
}

.card-slider-section {
  background-color: #F6F2EE;
}
.card-slider-section .slick-list {
  margin-right: calc((-100vw + 100%) / 2);
}
.card-slider-section__container {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .card-slider-section__container .section-content {
    margin-bottom: 2rem;
  }
}
.card-slider-section__slider.slick-slider {
  position: initial;
}
.card-slider-section__card {
  min-height: 500px !important;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
@media (max-width: 500px) {
  .card-slider-section__card {
    min-height: 450px !important;
  }
}
.card-slider-section__card h4 {
  font-size: 26px;
}
.card-slider-section__card:nth-child(1), .card-slider-section__card:nth-child(4), .card-slider-section__card:nth-child(7), .card-slider-section__card:nth-child(10), .card-slider-section__card:nth-child(13), .card-slider-section__card:nth-child(16) {
  background: #FDD09E;
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/home_tile_bg_1.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.card-slider-section__card:nth-child(2), .card-slider-section__card:nth-child(5), .card-slider-section__card:nth-child(8), .card-slider-section__card:nth-child(11), .card-slider-section__card:nth-child(14), .card-slider-section__card:nth-child(17) {
  background: #FCBA75;
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/home_tile_bg_2.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.card-slider-section__card:nth-child(3), .card-slider-section__card:nth-child(6), .card-slider-section__card:nth-child(9), .card-slider-section__card:nth-child(12), .card-slider-section__card:nth-child(15), .card-slider-section__card:nth-child(18) {
  background: #FBB061;
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/home_tile_bg_3.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
.card-slider-section__card .card-link {
  z-index: 2;
  text-decoration: none;
  position: absolute;
  bottom: 35%;
}
@media (max-width: 1780px) {
  .card-slider-section__card .card-link {
    bottom: 30%;
  }
}
@media (max-width: 1285px) {
  .card-slider-section__card .card-link {
    bottom: 25%;
  }
}
@media (max-width: 1200px) {
  .card-slider-section__card .card-link {
    bottom: 35%;
  }
}
@media (max-width: 850px) {
  .card-slider-section__card .card-link {
    bottom: 30%;
  }
}
@media (max-width: 600px) {
  .card-slider-section__card .card-link {
    bottom: 50%;
  }
}
@media (max-width: 500px) {
  .card-slider-section__card .card-link {
    bottom: 35%;
  }
}
.card-slider-section__card .card-link .icon-white {
  padding: 5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #1F1F1F;
}
.card-slider-section__card-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.card-slider-section__card-shape .ind-card-shape {
  width: 100%;
}

.home-hero {
  position: relative;
  z-index: 99;
}
.home-hero__cont {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  min-height: 55rem;
  background-size: cover;
  display: flex;
  align-items: top;
  justify-content: center;
  padding-top: 5rem;
}
@media only screen and (max-width: 991px) {
  .home-hero__cont {
    min-height: 45rem;
    background-position: right;
  }
}
@media only screen and (max-width: 767px) {
  .home-hero__cont {
    padding: 3rem;
  }
  .home-hero__cont .row {
    margin-top: auto;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .home-hero__cont {
    padding: 4rem 2rem 2rem 2rem;
    min-height: 40rem;
  }
}
@media (max-width: 400px) {
  .home-hero__cont {
    padding: 2rem;
  }
}
.home-hero__cont-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-top: 0;
  line-height: 1.2;
}
@media only screen and (max-width: 991px) {
  .home-hero__cont-title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-hero__cont-title {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .home-hero__cont-title {
    font-size: 1.6rem;
  }
}
.home-hero__cont-desc {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .home-hero__cont-desc {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .home-hero__cont-desc {
    font-size: 14px;
  }
}
.home-hero__cont-shape {
  position: relative;
  margin-top: -20%;
  z-index: 1;
  width: 100%;
}
.home-hero__cont-shape .ind-top-rap {
  width: 100%;
}
.home-hero__cont .service-search {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 99;
  /* Tab content */
}
.home-hero__cont .service-search__wrapper {
  border-radius: 30px;
  background-color: #f3ebe1;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.35);
  padding: 10px;
}
.home-hero__cont .service-search__wrapper .search_buttons {
  background-color: #5D0F68;
  margin: 0;
  padding: 10px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 450px) {
  .home-hero__cont .service-search__wrapper .search_buttons {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
}
.home-hero__cont .service-search__wrapper .search_buttons .search_label {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  margin-right: 10px;
}
.home-hero__cont .service-search__wrapper .search_buttons .tabs-dropdown {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #5D0F68;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'><path d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.75em auto;
}
.home-hero__cont .service-search__wrapper .search_buttons .tabs-dropdown:focus-within {
  outline: none;
}
@media (max-width: 450px) {
  .home-hero__cont .service-search__wrapper .search_buttons .tabs-dropdown {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.home-hero__cont .service-search__wrapper .tabs {
  list-style: none;
  position: relative;
  margin: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .home-hero__cont .service-search__wrapper .tabs {
    display: none;
  }
}
.home-hero__cont .service-search__wrapper .tabs .active-tab {
  background-color: #ffffff;
  border: none;
  position: relative;
  color: #5D0F68;
  font-weight: bold;
  border-radius: 30px;
}
.home-hero__cont .service-search__wrapper .tabs li {
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  border-radius: 30px;
  font-weight: bold;
  padding: 5px 15px;
  margin-right: 5px;
  transition: all 250ms ease-out;
}
.home-hero__cont .service-search__wrapper .tabs li:hover {
  background-color: #7e518a;
  color: #ffffff;
  border-radius: 30px;
  transition: all 250ms ease-out;
}
@media only screen and (min-width: 768px) {
  .home-hero__cont .service-search__wrapper .tabs-dropdown {
    display: none;
  }
}
.home-hero__cont .service-search .tabs-content {
  padding: 0;
  padding-top: 10px;
  list-style: none;
  margin: 0;
}
.home-hero__cont .service-search .tabs-content li {
  display: none;
}
.home-hero__cont .service-search .tabs-content .service-search-form {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  padding: 10px 20px;
  padding-right: 10px;
  border-radius: 30px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 465px) {
  .home-hero__cont .service-search .tabs-content .service-search-form {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
  }
  .home-hero__cont .service-search .tabs-content .service-search-form i {
    display: none;
  }
}
.home-hero__cont .service-search .tabs-content .service-search-form input {
  width: 100%;
  border: none;
  height: 40px;
}
.home-hero__cont .service-search .tabs-content .service-search-form input:focus-visible {
  outline: none;
}
.home-hero__cont .service-search .tabs-content .service-search-form button {
  border-radius: 20px;
  background-color: #f9a64a;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
  color: #1F1F1F;
  cursor: pointer;
  transition: all 250ms ease-out;
}
.home-hero__cont .service-search .tabs-content .service-search-form button:hover {
  background-color: #fcba75;
  color: #1F1F1F;
}
@media (max-width: 465px) {
  .home-hero__cont .service-search .tabs-content .service-search-form button {
    width: 100%;
  }
}
.home-hero__cont .service-search .tabs-content .facetwp-type-proximity {
  box-sizing: border-box;
  font-weight: bold;
  opacity: 1;
  border: none;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 0;
  width: 100%;
  padding: 0;
}
.home-hero__cont .service-search .tabs-content .facetwp-type-proximity .facetwp-input-wrap {
  width: 100%;
  padding: 0;
}
.home-hero__cont .service-search .tabs-content .facetwp-type-proximity input {
  border: none;
}
.home-hero__cont .service-search .tabs-content .facetwp-type-proximity select {
  border: none;
  display: none;
}
.home-hero__cont .service-search .tabs-content .facetwp-type-proximity .locate-me {
  display: none;
}
.home-hero__cont .service-search .tabs-content .facetwp-type-proximity .location-results {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.35);
  padding: 15px;
  opacity: 1;
  margin-top: 12px;
}
.home-hero__cont .service-search .tabs-content .facetwp-facet-filter_by_region {
  box-sizing: border-box;
  line-height: 1;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 0;
  width: 100%;
}
.home-hero__cont .service-search .tabs-content .facetwp-facet-filter_by_region .fs-wrap {
  width: 95%;
  border: none;
  opacity: 1;
}
.home-hero__cont .service-search .tabs-content .facetwp-facet-filter_by_region .fs-label-wrap {
  border: none;
  padding: 0;
}
.home-hero__cont .service-search .tabs-content .facetwp-facet-filter_by_region .fs-dropdown {
  padding: 15px;
  border: none;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.35);
  margin-top: 20px;
}
.home-hero__cont .service-search .tabs-content .facetwp-facet-filter_by_region .fs-dropdown .fs-search {
  display: none;
}
.home-hero__cont .popular-terms {
  margin-top: 20px;
}
@media only screen and (max-width: 575px) {
  .home-hero__cont .popular-terms {
    display: none;
  }
}
.home-hero__cont .popular-terms .popular-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .home-hero__cont .popular-terms .popular-label {
    font-size: 14px;
    margin-right: 5px;
  }
}
.home-hero__cont .popular-terms .popular-term {
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-radius: 19px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-weight: bold;
  padding: 7px 20px;
  font-size: 14px;
  margin: 2px;
  line-height: 1.2;
  text-decoration: none;
  display: inline-block;
}
.home-hero__cont .popular-terms .popular-term:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 767px) {
  .home-hero__cont .popular-terms .popular-term {
    padding: 5px 10px;
    font-size: 10px;
    display: inline-block;
  }
}

.card-slider-section__container .section-content .content-title {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0;
}
.card-slider-section__container .section-content .gc-slick-arrows .slick-prev {
  top: 18rem;
  transform: translateY(0);
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid #E6DBCD;
  transition: all 250ms ease-out;
}
.card-slider-section__container .section-content .gc-slick-arrows .slick-prev i {
  font-size: 14px;
}
.card-slider-section__container .section-content .gc-slick-arrows .slick-prev:hover {
  background: #f7921d;
  transition: all 250ms ease-out;
}
.card-slider-section__container .section-content .gc-slick-arrows .slick-next {
  top: 18rem;
  left: 100px;
  transform: translateY(0);
  width: 35px;
  height: 35px;
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid #E6DBCD;
  transition: all 250ms ease-out;
}
.card-slider-section__container .section-content .gc-slick-arrows .slick-next i {
  font-size: 14px;
}
.card-slider-section__container .section-content .gc-slick-arrows .slick-next:hover {
  background: #f7921d;
  transition: all 250ms ease-out;
}
.card-slider-section__container__slider__card {
  position: relative;
}
.card-slider-section__container__slider__card-shape:after {
  content: "/wp-content/themes/marathon-health/assets/images/shapes/home_tile_bg_1.svg";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  opacity: 0.5;
  z-index: 1;
}

.image-text-section {
  color: #ffffff;
}
.image-text-section__cont-row {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #5D0F68;
  margin-left: 65px;
  padding: 3rem 3rem 3rem 0;
}
@media only screen and (max-width: 991px) {
  .image-text-section__cont-row {
    margin-left: 0;
    padding: 0;
    border-radius: 30px;
  }
}
.image-text-section__cont-row .m-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 575px) {
  .image-text-section__cont-row .m-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
}
.image-text-section__cont-row .title {
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 0;
}
@media only screen and (max-width: 575px) {
  .image-text-section__cont-row .title {
    font-size: 32px;
  }
}
.image-text-section__cont-row .number-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
}
.image-text-section__cont-row .number-title .mh_prepend {
  margin-right: -10px;
}
.image-text-section__cont-row .number-title .mh_append {
  margin-left: -5px;
}
@media only screen and (max-width: 575px) {
  .image-text-section__cont-row .number-title {
    position: absolute;
    top: 10px;
    left: 75px;
    font-size: 32px;
  }
}
.image-text-section__cont-row .img-copy {
  margin-left: -65px;
}
@media only screen and (min-width: 992px) {
  .image-text-section__cont-row .img-copy {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    mask-image: url("/wp-content/themes/marathon-health/assets/images/shapes/left-image-mask.svg");
    -webkit-mask-image: url("/wp-content/themes/marathon-health/assets/images/shapes/left-image-mask.svg");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    position: relative;
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-position: center right;
    -webkit-mask-position: center right;
  }
}
@media only screen and (max-width: 991px) {
  .image-text-section__cont-row .img-copy {
    background-image: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .image-text-section__cont-row .img-copy {
    margin-left: 0;
  }
}
.image-text-section__cont-row .img-copy .copy-img-asset {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.image-text-section__cont-row .img-copy .img-copy-dots {
  position: absolute;
  top: 0;
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .image-text-section__cont-row .img-copy .img-copy-dots {
    display: none;
  }
}
.image-text-section__cont-row .img-copy .img-copy-stripes {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
@media only screen and (max-width: 575px) {
  .image-text-section__cont-row .img-copy .img-copy-stripes {
    max-width: 250px;
  }
}
.image-text-section .image-copy-section-wave {
  position: absolute;
  width: 100%;
  margin-top: -20rem;
  z-index: -1;
}

.our-services__cont-col1 {
  position: relative;
  z-index: 2;
}
.our-services__cont-col1 .super-title {
  color: #11679b;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 24px;
}
@media only screen and (max-width: 991px) {
  .our-services__cont-col1 {
    margin-bottom: 1rem;
  }
}
.our-services__cont-col1 .title {
  font-size: 36px;
}
@media only screen and (max-width: 575px) {
  .our-services__cont-col1 .title {
    font-size: 32px;
  }
}
.our-services__cont-col2 {
  position: relative;
  z-index: 2;
}
.our-services__cont-col2-list .ind-service {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 20px;
  margin: 5px;
  display: block;
  width: 48%;
  float: left;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: #1F1F1F;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 250ms ease-out;
}
@media only screen and (max-width: 767px) {
  .our-services__cont-col2-list .ind-service {
    width: 100%;
    margin-left: 0;
  }
}
.our-services__cont-col2-list .ind-service .ir-chevron {
  color: #1F1F1F;
  font-size: 16px;
  position: absolute;
  right: 20px;
}
.our-services__cont-col2-list .ind-service .m-icon {
  width: 40px;
  height: 40px;
}
.our-services__cont-col2-list .ind-service:hover {
  background-color: #11679b;
  color: #ffffff;
}
.our-services__cont-col2-list .ind-service:hover .ir-chevron {
  color: #ffffff;
}
.our-services__cont-col2-list .ind-service:hover .m-icon {
  background-color: #4c7ba9;
}
.our-services .services_dots {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 1;
}

.home-news .news_sec_stripes {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
}
@media (min-width: 385px) {
  .home-news__cont .news-header {
    display: flex;
    justify-content: space-between;
  }
}
.home-news__cont-title {
  font-size: 18px;
}
.home-news__cont .btn:hover {
  text-decoration: none;
}
.home-news__cont a {
  text-decoration: none;
}
.home-news__cont a:hover {
  text-decoration: underline;
  color: #1F1F1F;
}
.home-news__cont .featured-post-block .post-inner-cont {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  border-radius: 15px;
  background-color: #ffffff;
}
.home-news__cont .featured-post-block .post-inner-cont .post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.home-news__cont .featured-post-block .post-inner-cont .post-title-link {
  color: #1F1F1F !important;
}
.home-news__cont .featured-post-block .post-inner-cont .post-title-link:hover {
  color: #1F1F1F !important;
}
.home-news__cont .featured-post-block .post-inner-cont .fp-title {
  font-size: 36px !important;
  margin-top: 0;
}
@media only screen and (max-width: 575px) {
  .home-news__cont .featured-post-block .post-inner-cont .fp-title {
    font-size: 32px !important;
  }
}
.home-news__cont .home-posts-block .posts-inner {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 575px) {
  .home-news__cont .home-posts-block .posts-inner {
    margin-bottom: 1rem;
  }
}
.home-news__cont .home-posts-block .posts-inner .post-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
}
.home-news__cont .home-posts-block .posts-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.post-pub-meta {
  font-size: 14px;
}

.home-manual-tiles__cont-col1 .col1-inner-wrapper {
  border-radius: 25px;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.home-manual-tiles__cont-col1 .col1-inner-wrapper .super-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
}
.home-manual-tiles__cont-col1 .col1-inner-wrapper .logo-img {
  max-width: 225px;
}
.home-manual-tiles__cont-col1 .col1-inner-wrapper .title {
  font-size: 36px;
}
@media only screen and (max-width: 575px) {
  .home-manual-tiles__cont-col1 .col1-inner-wrapper .title {
    font-size: 32px;
  }
}
.home-manual-tiles__cont-col1 .bg-blue {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(138.44deg, #71bddf 0%, #5eb7dc 100%);
}
.home-manual-tiles__cont-col1 .bg-blue .btn:hover {
  color: #1F1F1F;
  background-color: #daecf7;
  border-color: #daecf7;
}
.home-manual-tiles__cont-col1 .bg-green {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(131.61deg, #aed68a 0%, #95cb64 100%);
}
.home-manual-tiles__cont-col1 .bg-green .btn:hover {
  color: #1F1F1F;
  background-color: #e2f0d4;
  border-color: #e2f0d4;
}
.home-manual-tiles__cont-col1 .bg-pink {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(131.61deg, #eebcc3 0%, #e594a4 100%);
}
.home-manual-tiles__cont-col1 .bg-pink .btn:hover {
  color: #1F1F1F;
  background-color: #f3d1d6;
  border-color: #f3d1d6;
}
.home-manual-tiles__cont-col1 .bg-orange {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(125.26deg, #fbb061 0%, #fdd09e 100%);
}
.home-manual-tiles__cont-col1 .bg-orange .btn:hover {
  color: #1F1F1F;
  background-color: #ffe6cb;
  border-color: #ffe6cb;
}
.home-manual-tiles__cont-col1 .bg-purple {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(135.05deg, #330b39 0%, #5d0f68 100%);
  color: #ffffff;
}
.home-manual-tiles__cont-col1 .bg-purple .title {
  color: #ffffff;
}
.home-manual-tiles__cont-col1 .bg-purple .btn:hover {
  color: #1F1F1F;
  background-color: #cebfd7;
  border-color: #cebfd7;
}
.home-manual-tiles__cont-col1 .bg-navy {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(125.26deg, #11679b 0%, #6487b1 100%);
  color: #ffffff;
}
.home-manual-tiles__cont-col1 .bg-navy .title {
  color: #ffffff;
}
.home-manual-tiles__cont-col1 .bg-navy .btn:hover {
  color: #1F1F1F;
  background-color: #cbd3e4;
  border-color: #cbd3e4;
}
.home-manual-tiles__cont-col1 .bg-red {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-stripes.svg"), linear-gradient(125.26deg, #e99379 0%, #eea790 100%);
}
.home-manual-tiles__cont-col1 .bg-red .btn:hover {
  color: #1F1F1F;
  background-color: #f6d1c1;
  border-color: #f6d1c1;
}
.home-manual-tiles__cont-col2 .col2-inner-wrapper {
  border-radius: 25px;
  background-repeat: no-repeat;
  background-position: right bottom;
}
.home-manual-tiles__cont-col2 .col2-inner-wrapper .super-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
}
.home-manual-tiles__cont-col2 .col2-inner-wrapper .logo-img {
  max-width: 225px;
}
.home-manual-tiles__cont-col2 .col2-inner-wrapper .title {
  font-size: 36px;
}
.home-manual-tiles__cont-col2 .bg-blue {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(138.44deg, #71bddf 0%, #5eb7dc 100%);
}
.home-manual-tiles__cont-col2 .bg-blue .btn:hover {
  color: #1F1F1F;
  background-color: #daecf7;
  border-color: #daecf7;
}
.home-manual-tiles__cont-col2 .bg-green {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(131.61deg, #aed68a 0%, #95cb64 100%);
}
.home-manual-tiles__cont-col2 .bg-green .btn:hover {
  color: #1F1F1F;
  background-color: #e2f0d4;
  border-color: #e2f0d4;
}
.home-manual-tiles__cont-col2 .bg-pink {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(131.61deg, #eebcc3 0%, #e594a4 100%);
}
.home-manual-tiles__cont-col2 .bg-pink .btn:hover {
  color: #1F1F1F;
  background-color: #f3d1d6;
  border-color: #f3d1d6;
}
.home-manual-tiles__cont-col2 .bg-orange {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(125.26deg, #fbb061 0%, #fdd09e 100%);
}
.home-manual-tiles__cont-col2 .bg-orange .btn:hover {
  color: #1F1F1F;
  background-color: #ffe6cb;
  border-color: #ffe6cb;
}
.home-manual-tiles__cont-col2 .bg-purple {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(135.05deg, #330b39 0%, #5d0f68 100%);
  color: #ffffff;
}
.home-manual-tiles__cont-col2 .bg-purple .title {
  color: #ffffff;
}
.home-manual-tiles__cont-col2 .bg-purple .btn:hover {
  color: #1F1F1F;
  background-color: #cebfd7;
  border-color: #cebfd7;
}
.home-manual-tiles__cont-col2 .bg-navy {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(125.26deg, #11679b 0%, #6487b1 100%);
  color: #ffffff;
}
.home-manual-tiles__cont-col2 .bg-navy .title {
  color: #ffffff;
}
.home-manual-tiles__cont-col2 .bg-navy .btn:hover {
  color: #1F1F1F;
  background-color: #cbd3e4;
  border-color: #cbd3e4;
}
.home-manual-tiles__cont-col2 .bg-red {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(125.26deg, #e99379 0%, #eea790 100%);
}
.home-manual-tiles__cont-col2 .bg-red .btn:hover {
  color: #1F1F1F;
  background-color: #f6d1c1;
  border-color: #f6d1c1;
}

.image-right-section__cont-row {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background: linear-gradient(125.26deg, #fbb061 0%, #fdd09e 100%);
}
@media only screen and (min-width: 992px) {
  .image-right-section__cont-row {
    margin-right: 65px;
    margin-left: 0;
    padding: 3rem;
    padding-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .image-right-section__cont-row {
    border-radius: 30px;
    margin-left: 5px;
    margin-right: 5px;
  }
}
.image-right-section__cont-row .image-right-section__cont-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.image-right-section__cont-row .image-right-section__cont-item .super_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.image-right-section__cont-row .image-right-section__cont-item h3 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0;
}
@media only screen and (max-width: 575px) {
  .image-right-section__cont-row .image-right-section__cont-item h3 {
    font-size: 32px;
  }
}
.image-right-section__cont-row .image-right-section__cont-item p {
  font-size: 16px;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) {
  .image-right-section__cont-row .img-copy {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mask-image: url("/wp-content/themes/marathon-health/assets/images/shapes/right-image-mask.svg");
    -webkit-mask-image: url("/wp-content/themes/marathon-health/assets/images/shapes/right-image-mask.svg");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    mask-size: cover;
    -webkit-mask-size: cover;
    position: relative;
    right: -60px;
  }
}
@media only screen and (max-width: 991px) {
  .image-right-section__cont-row .img-copy {
    background-image: none !important;
  }
}
.image-right-section__cont-row .img-copy .copy-right-img {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.image-right-section__cont-row .img-copy .img-right-dots {
  position: absolute;
  z-index: 99;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 575px) {
  .image-right-section__cont-row .img-copy .img-right-dots {
    max-width: 100px;
  }
}
.image-right-section__cont-row .img-copy .img-left-shape {
  position: absolute;
  left: 75px;
  top: 20px;
}
.image-right-section .image-copy-section-wave {
  position: absolute;
  bottom: -100px;
  right: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

main {
  min-height: 500px;
}

@media only screen and (max-width: 991px) {
  #content {
    margin-top: 3rem !important;
  }
}

.banner-custom-height {
  min-height: 550px;
}

.our-services__header .reset-filter .facetwp-facet {
  margin-bottom: 0;
}
.our-services__header .category {
  display: none !important;
}
.our-services__header-filters {
  flex-wrap: wrap;
  justify-content: space-between;
}
.our-services__header-filters .facetwp-facet {
  margin-bottom: 20px;
}
.our-services__header .by_index .facetwp-type-alpha {
  border-radius: 15px;
  background-color: #5D0F68;
  padding: 15px 25px;
  justify-content: space-between;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .our-services__header .by_index .facetwp-type-alpha {
    display: flex;
    flex-wrap: wrap;
    font-size: 20px;
  }
}
.our-services__header .by_index .facetwp-type-alpha .facetwp-alpha {
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.5;
  color: #ffffff;
}
.our-services__header .by_index .facetwp-type-alpha .available {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}
.our-services__header .by_index .facetwp-type-alpha .available:hover {
  text-decoration: none;
}
.our-services__header .by_index .facetwp-alpha[data-id="#"] {
  display: none;
}
.our-services__body .service-item-wrap .alpha-heading {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
}
.our-services__body .service-item-wrap .ind-service {
  box-sizing: border-box;
  border: 1px solid #E6DBCD;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 15px 25px;
  transition: all 250ms ease-out;
}
.our-services__body .service-item-wrap .ind-service:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-out;
}
.our-services__body .service-item-wrap .ind-service .service-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  color: #5D0F68;
  margin-bottom: 0.5rem;
}
.our-services__body .service-item-wrap .ind-service a {
  text-decoration: none;
}

/** Facetwp Filters Styling **/
.facetwp-type-fselect .fs-wrap {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  font-weight: bold;
  opacity: 1;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .facetwp-type-fselect .fs-wrap {
    width: 100%;
  }
}
.facetwp-type-fselect .fs-wrap:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: bold;
  right: 15px;
  position: absolute;
  top: 40%;
}
.facetwp-type-fselect .fs-wrap .fs-label-wrap {
  padding: 10px 15px;
  border: 0;
  border-radius: 10px;
}
.facetwp-type-fselect .fs-wrap .fs-arrow {
  display: none;
}
.facetwp-type-fselect .fs-wrap .fs-dropdown {
  padding: 15px;
  border: 1px solid #e6dbcd;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.35);
  margin-top: 1px;
  opacity: 1;
  width: auto;
}
.facetwp-type-fselect .fs-wrap .fs-dropdown .fs-search {
  display: none;
}
.facetwp-type-fselect .fs-wrap.fs-open:after {
  content: "\f077";
}

@media only screen and (max-width: 991px) {
  .by_search {
    width: 100%;
  }
}
.facetwp-type-search {
  position: relative;
}
.facetwp-type-search:before {
  content: "\f002";
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  margin-right: 10px;
  position: absolute;
  font-weight: bold;
  z-index: 9;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
}
@media only screen and (max-width: 991px) {
  .facetwp-type-search .facetwp-input-wrap {
    width: 100%;
  }
  .facetwp-type-search .facetwp-input-wrap .facetwp-search {
    width: 100%;
    min-width: 100%;
  }
}

.facetwp-search {
  box-sizing: border-box;
  width: 300px;
  border: 1px solid #e6dbcd;
  border-radius: 30px;
  background-color: #ffffff;
  padding: 12px 25px;
  padding-left: 35px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .facetwp-search {
    width: 100%;
  }
}
.facetwp-search input:focus-within {
  outline: none;
}
.facetwp-search input:focus-visible {
  outline: none;
}

.facetwp-type-proximity {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  font-weight: bold;
  opacity: 0.9;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  padding: 11px 15px;
  width: auto;
}
.facetwp-type-proximity input {
  border: none;
}
.facetwp-type-proximity input:focus {
  outline: none;
}
.facetwp-type-proximity input::-moz-placeholder {
  color: #1F1F1F;
  font-weight: bold;
}
.facetwp-type-proximity input::placeholder {
  color: #1F1F1F;
  font-weight: bold;
}
.facetwp-type-proximity select {
  border: none;
}

.facetwp-type-reset {
  margin-bottom: 0;
}
.facetwp-type-reset .facetwp-reset {
  border-radius: 20px;
  background-color: #f9a64a;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
  color: #1f1f1f;
  cursor: pointer;
  transition: all 250ms ease-out;
}
.facetwp-type-reset .facetwp-reset:hover {
  background-color: #fcba75;
  color: #1f1f1f;
}
@media only screen and (max-width: 575px) {
  .facetwp-type-reset .facetwp-reset {
    margin-top: 20px;
  }
}

/** 
 Rich text block Styling
**/
.rich_text .section-title {
  margin-top: 0;
}
.rich_text ul li {
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
}
.rich_text table {
  border-collapse: collapse;
  width: 100%;
  margin: 2rem 0 1rem 0;
}
.rich_text table tr:nth-child(odd) {
  background-color: #cebfd7;
  border: 1px solid #5d0f68;
}
.rich_text table tr:nth-child(even) {
  background-color: #ffffff;
}
.rich_text table th,
.rich_text table td {
  text-align: left;
  padding: 1rem;
  vertical-align: top;
}
.rich_text blockquote {
  font-size: 22px;
  font-weight: bold;
  color: #5d0f68;
  line-height: 1.3;
  padding-left: 40px;
  position: relative;
  margin-bottom: 0;
}
.rich_text blockquote cite {
  font-size: 16px;
  font-style: normal;
}

/**
Full width image Styling
**/
.full_width_image figure figcaption {
  color: #1F1F1F;
}

/** 
Video Embed Styling
*/
.mh-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.mh-embed-container iframe,
.mh-embed-container object,
.mh-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
Custom Links Styling
**/
.ip_custom_links .custom_link {
  border: 1px solid #5D0F68;
  border-radius: 40px;
  padding: 15px 15px 15px 20px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
  color: #1F1F1F;
  background-color: #EBE3E7;
}
@media only screen and (max-width: 991px) {
  .ip_custom_links .custom_link {
    max-width: 100%;
  }
}
.ip_custom_links .custom_link:hover {
  background-color: #5D0F68;
  color: #ffffff;
}
.ip_custom_links .custom_link .link-icon {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  color: #5D0F68;
  background-color: #ffffff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/**
Internal Page Publications Styling
**/
.ip-publications .img-col img {
  width: auto;
  height: 225px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 165px;
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .ip-publications .img-col {
    margin-bottom: 25px;
  }
}

/**
Individual News Post Styling
**/
.news_post_wrap .post-thumbnail {
  border-radius: 15px;
}
.news_post_wrap .post-thumbnail img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.news_post_wrap a {
  text-decoration: none;
}
.news_post_wrap a:hover {
  text-decoration: underline;
  color: #1F1F1F;
}
.news_post_wrap a .post-title {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0;
}

/**
 Locations Page template Styling
**/
.mh_locations .location_wrapper {
  box-sizing: border-box;
  border: 1px solid #E6DBCD;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .mh_locations .location_wrapper__header {
    max-width: 50%;
  }
}
.mh_locations .location_wrapper__header-icon .m-icon {
  margin-bottom: 0.5rem;
  background-color: #5D0F68;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh_locations .location_wrapper__header-title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
}
.mh_locations .location_wrapper__header-link {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  position: relative;
  padding-left: 10px;
  padding-right: 45px;
  color: #1F1F1F;
}
.mh_locations .location_wrapper__header-link:hover {
  background-color: #ffe6cb;
  color: #1F1F1F;
  border-color: #ffe6cb;
}
.mh_locations .location_wrapper__header-link .right-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.mh_locations .location_wrapper__header-link .icon-orange {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh_locations .location_wrapper__body-text {
  line-height: 1.8;
}
.mh_locations .location_wrapper__body p {
  line-height: 1.8;
}
.mh_locations .location_wrapper__body a {
  text-decoration: underline;
  color: #1F1F1F;
}
.mh_locations .location_wrapper__body a:hover {
  text-decoration: none;
}

.locations_map .facetwp-type-map {
  margin-bottom: 0;
}
.locations_map .facetwp-map-filtering {
  display: none;
}

/**
 Individual Locations Page template Styling
**/
.ind_location_info {
  box-sizing: border-box;
  border: 1px solid #E6DBCD;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 2rem;
}
.ind_location_info .location_content .ind_location_info__icon .m-icon {
  margin-bottom: 0.5rem;
  background-color: #5D0F68;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind_location_info .location_content__address h3 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
}
.ind_location_info .location_content__address p {
  line-height: 1.8;
}
.ind_location_info .location_content__contact h3 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
}
.ind_location_info .location_content__contact p {
  line-height: 1.8;
}
.ind_location_info .location_content__contact a {
  color: #1F1F1F;
}
.ind_location_info .location_content__feedback {
  max-width: 70%;
}
.ind_location_info .location_content__feedback h3 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
}
.ind_location_info .location_content__feedback p {
  line-height: 1.8;
}
.ind_location_info .location_content .icon-orange {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind_location_info__image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
  border-radius: 15px;
}
.ind_location_info__location-map .acf-map {
  width: 100%;
  height: 500px;
  /* Fixes potential theme css conflict. */
}
.ind_location_info__location-map .acf-map img {
  max-width: inherit !important;
}
.ind_location_info .btn-link {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  position: relative;
  padding-left: 10px;
  color: #1F1F1F;
  padding-right: 45px;
}
.ind_location_info .btn-link:hover {
  background-color: #ffe6cb;
  color: #1F1F1F;
}
.ind_location_info .btn-link .right-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/** 
Gravity forms Styling
**/
.gform_wrapper input,
.gform_wrapper select,
.gform_wrapper textarea {
  border: 1px solid #E6DBCD;
}
.gform_wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 512 512'><path d='M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%;
  background-size: 0.75em auto;
}
.gform_wrapper select:focus {
  outline: none;
}
.gform_wrapper label {
  color: #1F1F1F;
}
.gform_wrapper .btn {
  padding: 10px 35px 10px 20px;
  position: relative;
  color: #1F1F1F;
}
.gform_wrapper .btn i {
  font-size: 14px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

/**
Coloured tiles grid styling
**/
.coloured_tiles_grid .items_manual_grid__item {
  background-repeat: no-repeat;
  background-position: right bottom;
  border: none;
  border-radius: 15px;
  padding: 0;
}
.coloured_tiles_grid .items_manual_grid__item h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}
.coloured_tiles_grid .items_manual_grid__item .img_wrapper .manual-tile-img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  width: 100%;
}
.coloured_tiles_grid .items_manual_grid__item .body_wrapper p {
  margin-bottom: 1rem;
}
.coloured_tiles_grid .items_manual_grid__item .m_tile_link {
  text-decoration: none;
  color: #1F1F1F;
}
.coloured_tiles_grid .items_manual_grid__item .m_tile_link .m-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 250ms ease-out;
}
.coloured_tiles_grid .super-title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
}
.coloured_tiles_grid .bg-white {
  background-color: #ffffff;
  border: 1px solid #e6dbcd;
}
.coloured_tiles_grid .bg-blue {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(138.44deg, #71bddf 0%, #5eb7dc 100%);
}
.coloured_tiles_grid .bg-blue .btn:hover {
  color: #1F1F1F;
  background-color: #daecf7;
  border-color: #daecf7;
}
.coloured_tiles_grid .bg-green {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(131.61deg, #aed68a 0%, #95cb64 100%);
}
.coloured_tiles_grid .bg-green .btn:hover {
  color: #1F1F1F;
  background-color: #e2f0d4;
  border-color: #e2f0d4;
}
.coloured_tiles_grid .bg-pink {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(131.61deg, #eebcc3 0%, #e594a4 100%);
}
.coloured_tiles_grid .bg-pink .btn:hover {
  color: #1F1F1F;
  background-color: #f3d1d6;
  border-color: #f3d1d6;
}
.coloured_tiles_grid .bg-orange {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(125.26deg, #fbb061 0%, #fdd09e 100%);
}
.coloured_tiles_grid .bg-orange .btn:hover {
  color: #1F1F1F;
  background-color: #ffe6cb;
  border-color: #ffe6cb;
}
.coloured_tiles_grid .bg-purple {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(135.05deg, #330b39 0%, #5d0f68 100%);
  color: #ffffff;
}
.coloured_tiles_grid .bg-purple .title {
  color: #ffffff;
}
.coloured_tiles_grid .bg-purple .btn:hover {
  color: #1F1F1F;
  background-color: #cebfd7;
  border-color: #cebfd7;
}
.coloured_tiles_grid .bg-navy {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(125.26deg, #11679b 0%, #6487b1 100%);
  color: #ffffff;
}
.coloured_tiles_grid .bg-navy .title {
  color: #ffffff;
}
.coloured_tiles_grid .bg-navy .btn:hover {
  color: #1F1F1F;
  background-color: #cbd3e4;
  border-color: #cbd3e4;
}
.coloured_tiles_grid .bg-red {
  background-image: url("/wp-content/themes/marathon-health/assets/images/shapes/manual-grid-dots.svg"), linear-gradient(125.26deg, #e99379 0%, #eea790 100%);
}
.coloured_tiles_grid .bg-red .btn:hover {
  color: #1F1F1F;
  background-color: #f6d1c1;
  border-color: #f6d1c1;
}

/** 404 Page not found page **/
.not-found-page .breadcrumbs {
  color: #1F1F1F;
}
.not-found-page .breadcrumbs a {
  color: #1F1F1F;
}
.not-found-page .breadcrumbs a i {
  color: #1F1F1F;
}
.not-found-page .breadcrumbs .breadcrumbs__separator i {
  color: #1F1F1F;
}

/** Search results Page Styling **/
.search-archive .search-wrapper {
  background-color: #ffffff;
  display: block;
  border-radius: 0;
  transition: all 250ms ease-out;
}
.search-archive .search-wrapper:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-out;
}
.search-archive .search-wrapper a {
  text-decoration: none;
}
.search-archive .search-wrapper h3 {
  margin: 0;
}
.search-archive .search-wrapper p {
  color: #1F1F1F;
}
.search-archive .search-wrapper hr {
  margin-bottom: 10px;
}
.search-archive .search-wrapper .search-cat span {
  color: #1F1F1F;
}
.search-archive .search-wrapper .relevanssi-query-term {
  background-color: #f7921d;
  padding: 2px 3px;
  font-weight: bold;
}
.search-archive .facetwp-type-pager {
  margin-top: 20px;
}

.ip-hero-banner {
  position: relative;
  z-index: 5;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 15px;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .ip-hero-banner {
    min-height: 475px;
  }
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 1199px) {
  .ip-hero-banner {
    background-size: cover;
    background-position: top center;
  }
}
.ip-hero-banner .background-overlay {
  background-repeat: no-repeat no-repeat;
  background-position: right;
  background-size: cover;
  z-index: 99;
  position: absolute;
  height: 100%;
  width: 65%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media (max-width: 1200px) {
  .ip-hero-banner .background-overlay {
    width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  .ip-hero-banner .background-overlay {
    width: 85%;
  }
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay {
    width: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: -webkit-fill-available;
  }
}
.ip-hero-banner .background-overlay.bg-blue {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/Blue/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%2311679B' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%2311679B' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Banner---Blue' transform='translate(-36.000000, -512.000000)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/Blue/Default' transform='translate(36.000000, 512.000000)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503.000000, 281.500000) scale(-1, 1) rotate(-90.000000) translate(-503.000000, -281.500000) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-blue {
    background-image: url("data:image/svg+xml,%3Csvg width='510px' height='253px' viewBox='0 0 510 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='9.68426274%25' x2='50%25' y2='98.5633639%25' id='linearGradient-1'%3E%3Cstop stop-color='%2311679B' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%2311679B' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Medium-(Between-768-and-991px)' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0,4.65820312 C7.55338542,2.08007812 26.8867187,0.791015625 58,0.791015625 C189.322266,0.791015625 278.537109,83 434.011719,83 C465.346354,83 490.675781,81.2832031 510,77.8496094 C510,194.616536 510,253 510,253 C510,253 340,253 0,253 L0,4.65820312 Z' id='Path-2-Copy' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .background-overlay.bg-purple {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/Purple/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%235D0F68' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%235D0F68' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Internal-Content-Page-With-Content-Blocks-Copy' transform='translate(-36.000000, -512.000000)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/Purple/Default' transform='translate(36.000000, 512.000000)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503.000000, 281.500000) scale(-1, 1) rotate(-90.000000) translate(-503.000000, -281.500000) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-purple {
    background-image: url("data:image/svg+xml,%3Csvg width='510px' height='253px' viewBox='0 0 510 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy 2%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='linearGradient-1'%3E%3Cstop stop-color='%235D0F68' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%235D0F68' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Medium-(Between-768-and-991px)' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0,4.65820312 C7.55338542,2.08007812 26.8867187,0.791015625 58,0.791015625 C189.322266,0.791015625 278.537109,83 434.011719,83 C465.346354,83 490.675781,81.2832031 510,77.8496094 C510,194.616536 510,253 510,253 C510,253 340,253 0,253 L0,4.65820312 Z' id='Path-2-Copy-2' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .background-overlay.bg-green {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/Green/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%23AED68A' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23AED68A' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Banner---Green' transform='translate(-36, -512)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/Green/Default' transform='translate(36, 512)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503, 281.5) scale(-1, 1) rotate(-90) translate(-503, -281.5)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-green {
    background-image: url("data:image/svg+xml,%3Csvg width='511px' height='253px' viewBox='0 0 511 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy 8%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='99.2706512%25' id='linearGradient-1'%3E%3Cstop stop-color='%23AED68A' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23AED68A' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0.971907162,3.8671875 C8.52529258,1.2890625 27.8586259,0 58.9719072,0 C190.294173,0 279.509017,82.2089844 434.983626,82.2089844 C466.318261,82.2089844 491.647688,80.4921875 510.971907,77.0585937 C510.971907,193.825521 510.971907,252.208984 510.971907,252.208984 C510.971907,252.208984 340.971907,252.208984 0.971907162,252.208984 L0.971907162,3.8671875 Z' id='Path-2-Copy-8' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .background-overlay.bg-navy {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/LightBlue/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%2371BDDF' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%2371BDDF' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Banner---Light-Blue' transform='translate(-36, -512)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/LightBlue/Default' transform='translate(36, 512)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503, 281.5) scale(-1, 1) rotate(-90) translate(-503, -281.5)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-navy {
    background-image: url("data:image/svg+xml,%3Csvg width='511px' height='253px' viewBox='0 0 511 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy 9%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='linearGradient-1'%3E%3Cstop stop-color='%2371BDDF' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%235EB7DC' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0.971907162,3.8671875 C8.52529258,1.2890625 27.8586259,0 58.9719072,0 C190.294173,0 279.509017,82.2089844 434.983626,82.2089844 C466.318261,82.2089844 491.647688,80.4921875 510.971907,77.0585937 C510.971907,193.825521 510.971907,252.208984 510.971907,252.208984 C510.971907,252.208984 340.971907,252.208984 0.971907162,252.208984 L0.971907162,3.8671875 Z' id='Path-2-Copy-9' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .background-overlay.bg-pink {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/Pink/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%23EEBCC3' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23EEBCC3' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Banner---Pink' transform='translate(-36, -512)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/Pink/Default' transform='translate(36, 512)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503, 281.5) scale(-1, 1) rotate(-90) translate(-503, -281.5)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-pink {
    background-image: url("data:image/svg+xml,%3Csvg width='511px' height='253px' viewBox='0 0 511 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy 10%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='linearGradient-1'%3E%3Cstop stop-color='%23EEBCC3' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23E594A4' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0.971907162,3.8671875 C8.52529258,1.2890625 27.8586259,0 58.9719072,0 C190.294173,0 279.509017,82.2089844 434.983626,82.2089844 C466.318261,82.2089844 491.647688,80.4921875 510.971907,77.0585937 C510.971907,193.825521 510.971907,252.208984 510.971907,252.208984 C510.971907,252.208984 340.971907,252.208984 0.971907162,252.208984 L0.971907162,3.8671875 Z' id='Path-2-Copy-10' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .background-overlay.bg-orange {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/Orange/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%23FBB061' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23FBB061' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Banner---Orange' transform='translate(-36, -512)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/Orange/Default' transform='translate(36, 512)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503, 281.5) scale(-1, 1) rotate(-90) translate(-503, -281.5)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-orange {
    background-image: url("data:image/svg+xml,%3Csvg width='511px' height='253px' viewBox='0 0 511 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy 11%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='linearGradient-1'%3E%3Cstop stop-color='%23FDD09E' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23FBB061' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0.971907162,3.8671875 C8.52529258,1.2890625 27.8586259,0 58.9719072,0 C190.294173,0 279.509017,82.2089844 434.983626,82.2089844 C466.318261,82.2089844 491.647688,80.4921875 510.971907,77.0585937 C510.971907,193.825521 510.971907,252.208984 510.971907,252.208984 C510.971907,252.208984 340.971907,252.208984 0.971907162,252.208984 L0.971907162,3.8671875 Z' id='Path-2-Copy-11' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .background-overlay.bg-red {
  background-image: url("data:image/svg+xml,%3Csvg width='1040px' height='413px' viewBox='0 0 1040 413' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EBanner/Red/Default%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='25.2710459%25' id='linearGradient-1'%3E%3Cstop stop-color='%23E99379' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23E99379' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Desktop---Banner---Red' transform='translate(-36, -512)' fill='url(%23linearGradient-1)' fill-rule='nonzero'%3E%3Cg id='Banner/Red/Default' transform='translate(36, 512)'%3E%3Cpath d='M470.87,-182.225236 C594.828333,-102.923491 649.37,-66.2464342 800.5,-57.919751 L800.5,820.5 L205.5,820.5 L205.5,-253.200297 C205.5,-253.200297 291.775,-277.783838 424.063333,-209.386083 L470.87,-182.225236 Z M423.7,-209.545455 L418.5,-212.5 C433.3,-205.015152 448.7,-196.348485 464.5,-186.5 C450.5,-195.166667 436.9,-202.848485 423.7,-209.545455' id='Shape' transform='translate(503, 281.5) scale(-1, 1) rotate(-90) translate(-503, -281.5)'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .background-overlay.bg-red {
    background-image: url("data:image/svg+xml,%3Csvg width='511px' height='253px' viewBox='0 0 511 253' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EPath 2 Copy 12%3C/title%3E%3Cdefs%3E%3ClinearGradient x1='50%25' y1='0%25' x2='50%25' y2='100%25' id='linearGradient-1'%3E%3Cstop stop-color='%23EEA790' stop-opacity='0.7' offset='0%25'%3E%3C/stop%3E%3Cstop stop-color='%23E99379' offset='100%25'%3E%3C/stop%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M0.971907162,3.8671875 C8.52529258,1.2890625 27.8586259,0 58.9719072,0 C190.294173,0 279.509017,82.2089844 434.983626,82.2089844 C466.318261,82.2089844 491.647688,80.4921875 510.971907,77.0585937 C510.971907,193.825521 510.971907,252.208984 510.971907,252.208984 C510.971907,252.208984 340.971907,252.208984 0.971907162,252.208984 L0.971907162,3.8671875 Z' id='Path-2-Copy-12' fill='url(%23linearGradient-1)'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  }
}
.ip-hero-banner .bg-green .left-col .breadcrumbs,
.ip-hero-banner .bg-navy .left-col .breadcrumbs,
.ip-hero-banner .bg-pink .left-col .breadcrumbs,
.ip-hero-banner .bg-orange .left-col .breadcrumbs,
.ip-hero-banner .bg-red .left-col .breadcrumbs {
  color: #1F1F1F;
}
.ip-hero-banner .bg-green .left-col .breadcrumbs i,
.ip-hero-banner .bg-navy .left-col .breadcrumbs i,
.ip-hero-banner .bg-pink .left-col .breadcrumbs i,
.ip-hero-banner .bg-orange .left-col .breadcrumbs i,
.ip-hero-banner .bg-red .left-col .breadcrumbs i {
  color: #1F1F1F;
}
.ip-hero-banner .bg-green .left-col .breadcrumbs span,
.ip-hero-banner .bg-navy .left-col .breadcrumbs span,
.ip-hero-banner .bg-pink .left-col .breadcrumbs span,
.ip-hero-banner .bg-orange .left-col .breadcrumbs span,
.ip-hero-banner .bg-red .left-col .breadcrumbs span {
  color: #1F1F1F;
}
.ip-hero-banner .bg-green .left-col .breadcrumbs a,
.ip-hero-banner .bg-navy .left-col .breadcrumbs a,
.ip-hero-banner .bg-pink .left-col .breadcrumbs a,
.ip-hero-banner .bg-orange .left-col .breadcrumbs a,
.ip-hero-banner .bg-red .left-col .breadcrumbs a {
  color: #1F1F1F;
}
.ip-hero-banner .bg-green .left-col .title,
.ip-hero-banner .bg-navy .left-col .title,
.ip-hero-banner .bg-pink .left-col .title,
.ip-hero-banner .bg-orange .left-col .title,
.ip-hero-banner .bg-red .left-col .title {
  color: #1F1F1F !important;
}
.ip-hero-banner .bg-green .left-col .ip-hero-banner__desc,
.ip-hero-banner .bg-navy .left-col .ip-hero-banner__desc,
.ip-hero-banner .bg-pink .left-col .ip-hero-banner__desc,
.ip-hero-banner .bg-orange .left-col .ip-hero-banner__desc,
.ip-hero-banner .bg-red .left-col .ip-hero-banner__desc {
  color: #1F1F1F !important;
}
.ip-hero-banner .bg-green .left-col p,
.ip-hero-banner .bg-navy .left-col p,
.ip-hero-banner .bg-pink .left-col p,
.ip-hero-banner .bg-orange .left-col p,
.ip-hero-banner .bg-red .left-col p {
  color: #1F1F1F !important;
}
.ip-hero-banner .ip_banner_bl_stripes {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner .ip_banner_bl_stripes {
    display: none;
  }
}
.ip-hero-banner .background-overlay-dots {
  position: absolute;
  bottom: 0;
  right: 0;
}
.ip-hero-banner__cont {
  position: relative;
  z-index: 99;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner__cont {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .ip-hero-banner__cont .row {
    min-height: 475px;
  }
}
.ip-hero-banner__cont .row .left-col {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .ip-hero-banner__cont .row .left-col {
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner__cont .row .left-col {
    justify-content: end !important;
    padding: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .ip-hero-banner__cont .row .left-col .breadcrumbs {
    font-size: 14px;
  }
  .ip-hero-banner__cont .row .left-col .breadcrumbs i {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575px) {
  .ip-hero-banner__cont .row .left-col p {
    font-size: 14px;
  }
}
.ip-hero-banner__cont .row .left-col .title {
  color: #ffffff;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .ip-hero-banner__cont .row .left-col .title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .ip-hero-banner__cont .row .left-col .title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner__cont .row .left-col .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .ip-hero-banner__cont .row .left-col .title {
    font-size: 28px;
  }
}
.ip-hero-banner__cont .row .left-col .ip_banner_btn {
  background-color: #ffffff;
  color: #1F1F1F;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  padding: 20px 25px;
  border-radius: 15px;
  margin-right: 25px;
  text-decoration: none;
  width: 300px;
  position: relative;
  display: flex;
  align-items: center;
}
.ip-hero-banner__cont .row .left-col .ip_banner_btn .right-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.ip-hero-banner.solid {
  min-height: 350px;
}
@media only screen and (max-width: 767px) {
  .ip-hero-banner.solid {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ip-hero-banner.solid .ip-hero-banner__cont {
    padding-top: 0;
  }
}

.items_manual_grid__item {
  padding: 30px;
  border: 1px solid #e6dbcd;
  background-color: #ffffff;
  border-radius: 15px;
  transition: all 250ms ease-out;
}
.items_manual_grid__item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-out;
}
.items_manual_grid__item .mg_media_icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.items_manual_grid__item .mg_media_icon.medium {
  width: 80px;
  height: 80px;
}
.items_manual_grid__item .mg_media_icon.large {
  width: 100px;
  height: 100px;
}
.items_manual_grid__item .mg_icon_wrapper {
  display: inline-block;
}
.items_manual_grid__item .mg_icon_wrapper .mg_icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.items_manual_grid__item .body_wrapper h4 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0;
}
.items_manual_grid__item .body_wrapper p {
  margin: 0;
}
.items_manual_grid__item .body_wrapper .m_tile_link {
  text-decoration: none;
  color: #1F1F1F;
}
.items_manual_grid__item .body_wrapper .m_tile_link .m-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 250ms ease-out;
}

.news-archive .featured-post {
  background-color: #ffffff;
  border-radius: 30px;
  border: 1px solid #E6DBCD;
}
.news-archive .featured-post .title {
  color: #1F1F1F !important;
  text-decoration: none;
}
.news-archive .featured-post .title:hover {
  text-decoration: underline;
  color: #1F1F1F !important;
}
.news-archive .featured-post .img-col {
  padding-left: 0;
}
@media only screen and (min-width: 992px) {
  .news-archive .featured-post .img-col {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    mask-image: url("/wp-content/themes/marathon-health/assets/images/shapes/left-image-mask.svg");
    -webkit-mask-image: url("/wp-content/themes/marathon-health/assets/images/shapes/left-image-mask.svg");
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    position: relative;
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-position: center right;
    -webkit-mask-position: center right;
  }
}
@media only screen and (max-width: 991px) {
  .news-archive .featured-post .img-col {
    background-image: none !important;
  }
}
.news-archive .featured-post .img-col a .news-fp-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
.news-archive .filter_items .facetwp-facet {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .news-archive .filter_items .facetwp-type-fselect {
    margin-bottom: 20px;
  }
}
.news-archive .filter_items .facetwp-type-fselect .fs-wrap .fs-dropdown {
  width: 100%;
}
.news-archive .filter_items .facetwp-type-reset {
  margin-bottom: 0;
  margin-left: 1rem;
}
@media only screen and (max-width: 767px) {
  .news-archive .filter_items .facetwp-type-reset {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.news-archive .stories_grid .posts-inner .news_post_wrap .post-thumbnail {
  border-radius: 15px;
}
.news-archive .stories_grid .posts-inner .news_post_wrap .post-thumbnail a img {
  border-radius: 15px;
}
.news-archive .stories_grid .posts-inner .news_post_wrap .post-title-link {
  color: #1F1F1F !important;
}
.news-archive .stories_grid .posts-inner .news_post_wrap .post-title-link:hover {
  color: #1F1F1F !important;
}

.facetwp-type-pager {
  margin-bottom: 0;
  margin-top: 3rem;
}
.facetwp-type-pager .facetwp-pager {
  text-align: center;
}
.facetwp-type-pager .facetwp-pager .facetwp-page {
  box-sizing: border-box;
  border: 1px solid #e6dbcd;
  background-color: #ffffff;
  padding: 5px 12px;
  color: #1F1F1F;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
}
.facetwp-type-pager .facetwp-pager .facetwp-page:hover {
  background-color: #5D0F68;
  color: #ffffff;
}
.facetwp-type-pager .facetwp-pager .facetwp-page.active {
  background-color: #5D0F68;
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .ne-pub-date {
    display: block;
    margin-top: 10px;
  }
}

.mh_jobs__sidebar .facetwp-facet {
  margin-bottom: 20px;
}
.mh_jobs__sidebar .facetwp-type-search .facetwp-input-wrap {
  width: 100%;
}
.mh_jobs__sidebar .facetwp-type-search .facetwp-input-wrap .facetwp-search {
  width: 100%;
  min-width: 100%;
  padding: 20px 30px;
  border-radius: 50px;
}
.mh_jobs__sidebar .facetwp-type-search:before {
  right: 0;
  left: auto;
  background-color: #f9a64a;
  color: #1F1F1F;
  padding: 10px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  font-weight: regular;
  width: 45px;
  height: 45px;
  text-align: center;
}
.mh_jobs__sidebar .facetwp-type-fselect {
  width: 100%;
  min-width: 100%;
}
.mh_jobs__sidebar .facetwp-type-fselect .fs-wrap {
  width: 100%;
}
.mh_jobs__sidebar .facetwp-type-fselect .fs-label-wrap {
  padding: 15px 20px;
}
.mh_jobs__sidebar .facetwp-type-fselect .fs-dropdown {
  width: 100%;
  padding: 10px;
}
.mh_jobs__sidebar .facetwp-type-fselect i {
  color: #5D0F68;
  font-size: 14px;
  margin-right: 0.5rem;
}
.mh_jobs__main .main-title {
  margin-top: 0;
  font-size: 36px;
  font-weight: bold;
}
.mh_jobs__main .facetwp-type-radio {
  margin-bottom: 20px;
}
.mh_jobs__main .facetwp-type-radio .facetwp-radio {
  background: none !important;
  border: none;
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
  background-color: #ffffff;
  color: #1F1F1F;
  text-decoration: none;
  transition: all 250ms ease-out;
}
.mh_jobs__main .facetwp-type-radio .facetwp-counter {
  display: none;
}
.mh_jobs__main .facetwp-type-radio .facetwp-radio.checked {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  background-color: #5D0F68 !important;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms ease-out;
}
@media (max-width: 380px) {
  .mh_jobs__main .facetwp-type-radio .facetwp-radio.checked {
    font-size: 12px;
    padding: 5px 15px;
  }
}
.mh_jobs__main .facetwp-type-radio .facetwp-radio {
  font-size: 16px;
  font-weight: bold;
  color: #1F1F1F;
  margin-bottom: 10px;
  background-color: #ffffff !important;
  border: 1px solid #E6DBCD;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms ease-out;
}
.mh_jobs__main .facetwp-type-radio .facetwp-radio:hover {
  background-color: #5D0F68 !important;
  border-color: #5D0F68 !important;
  color: #ffffff;
}
@media (max-width: 380px) {
  .mh_jobs__main .facetwp-type-radio .facetwp-radio {
    font-size: 12px;
    padding: 5px 15px;
  }
}
.mh_jobs__main .facetwp-type-radio div[data-value=headspace]:hover {
  background-color: #aed68a !important;
  border-color: #aed68a !important;
  color: #1F1F1F;
}
.mh_jobs__main .facetwp-type-radio div[data-value=marathon-health]:hover {
  background-color: #f7921d !important;
  border-color: #f7921d !important;
  color: #1F1F1F;
}
.mh_jobs__main .job_wrapper {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #E6DBCD;
  transition: all 250ms ease-out;
}
.mh_jobs__main .job_wrapper:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-out;
}
.mh_jobs__main .job_wrapper .mh_organisation.marathon-health {
  font-size: 14px;
  font-weight: bold;
  color: #1F1F1F;
  margin-bottom: 10px;
  background-color: #f7921d;
  padding: 5px 15px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms ease-out;
}
.mh_jobs__main .job_wrapper .mh_organisation.headspace {
  font-size: 14px;
  font-weight: bold;
  color: #1F1F1F;
  margin-bottom: 10px;
  background-color: #aed68a;
  padding: 5px 15px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms ease-out;
}
.mh_jobs__main .job_wrapper .date {
  font-size: 14px;
  letter-spacing: 0;
  margin: 0.5rem 0;
}
.mh_jobs__main .job_wrapper .title {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #5D0F68;
}
.mh_jobs__main .job_wrapper .job_meta {
  margin-bottom: 0.5rem;
}
.mh_jobs__main .job_wrapper i {
  font-size: 14px;
  color: #5D0F68;
  margin-right: 0.5rem;
}
.mh_jobs__main .job_wrapper .mh_location,
.mh_jobs__main .job_wrapper .mh_classification,
.mh_jobs__main .job_wrapper .mh_emp_type {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
}
.mh_jobs__main .job_wrapper .btn-purple {
  color: #ffffff;
  background-color: #5D0F68;
  border-color: #5D0F68;
}
.mh_jobs__main .job_wrapper .btn-purple:hover {
  background-color: #f7921d;
  color: #1F1F1F;
  border-color: #f7921d;
}
.mh_jobs__main .job_wrapper .btn-white {
  color: #5D0F68;
  background-color: #ffffff;
  border-color: #5D0F68;
}
.mh_jobs__main .job_wrapper .btn-white:hover {
  background-color: #f7921d;
  color: #1F1F1F;
  border-color: #f7921d;
}
@media only screen and (max-width: 767px) {
  .mh_jobs__main .job_wrapper .btn-white {
    margin-left: 0 !important;
    margin-top: 1rem;
  }
}

/** Single Job Page Styles **/
.single-job a {
  font-weight: bold;
  color: #5D0F68;
}
.single-job .job-details {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid #E6DBCD;
  transition: all 250ms ease-out;
}
.single-job .job-details:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease-out;
}
.single-job .job-details .con_email {
  word-wrap: break-word;
}
.single-job .btn-share:hover .right-arrow, .single-job .btn-print:hover .right-arrow {
  color: #ffffff !important;
}
.single-job .mh_organisation.marathon-health {
  font-size: 14px;
  font-weight: bold;
  color: #1F1F1F;
  margin-bottom: 10px;
  background-color: #f7921d;
  padding: 5px 15px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms ease-out;
}
.single-job .mh_organisation.headspace {
  font-size: 14px;
  font-weight: bold;
  color: #1F1F1F;
  margin-bottom: 10px;
  background-color: #aed68a;
  padding: 5px 15px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 250ms ease-out;
}
.single-job .date {
  font-size: 16px;
  letter-spacing: 0;
  margin: 0.5rem 0;
}
.single-job .title {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  color: #5D0F68;
}
.single-job .job_meta {
  margin-bottom: 0.5rem;
}
.single-job .job-meta {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .single-job .job-meta .ne-pub-date {
    display: block;
  }
}
.single-job i {
  font-size: 16px;
  color: #5D0F68;
  margin-right: 0.5rem;
}
.single-job .mh_location,
.single-job .mh_classification,
.single-job .mh_emp_type {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.4;
}
.single-job .btn-purple {
  color: #ffffff;
  background-color: #5D0F68;
  border-color: #5D0F68;
}
.single-job .btn-purple:hover {
  color: #5D0F68;
  background-color: white;
  border-color: #5D0F68;
}
.single-job .btn-white {
  color: #5D0F68;
  background-color: #ffffff;
  border-color: #5D0F68;
}
.single-job .ip_custom_links {
  margin-top: 2rem;
}
.single-job .ip_custom_links .custom_link {
  padding: 15px 15px 15px 30px;
  font-size: 18px;
}
.single-job .ip_custom_links .custom_link:hover {
  background-color: #f7921d;
  color: #1F1F1F;
  border: 1px solid #E6DBCD;
}
.single-job .ip_custom_links .custom_link .link-icon {
  margin-right: 0;
}
.single-job .ip_custom_links .custom_link:first-child {
  background-color: #5D0F68;
  color: #ffffff;
}
.single-job .ip_custom_links .custom_link:first-child:hover {
  background-color: #f7921d;
  color: #1F1F1F;
  border-color: #f7921d;
}
.single-job .sidebar_links {
  margin-top: 2rem;
}
.single-job .sidebar_links .custom_link {
  padding: 15px 15px 15px 30px;
  font-size: 16px;
  border: 1px solid #5D0F68;
  width: 100%;
  display: block;
  border-radius: 50px;
  margin-bottom: 15px;
  text-decoration: none;
  text-align: center;
}
.single-job .sidebar_links .custom_link:hover {
  background-color: #f7921d !important;
  color: #1F1F1F;
  border-color: #f7921d !important;
}
.single-job .sidebar_links .links:first-child {
  background-color: #5D0F68;
  color: #ffffff !important;
  border-radius: 50px;
}
.single-job .sidebar_links .links:first-child:hover {
  background-color: #f7921d;
  color: #1F1F1F;
  border-color: #f7921d;
}
.single-job .sidebar_links .links:first-child .custom_link {
  padding: 15px 15px 15px 30px;
  font-size: 16px;
  border: 1px solid #5D0F68;
  color: #ffffff;
  width: 100%;
  display: block;
  border-radius: 50px;
  margin-bottom: 15px;
  text-decoration: none;
  text-align: center;
}
.single-job .sidebar_links .links:first-child .custom_link:hover {
  background-color: #f7921d !important;
  color: #1F1F1F;
  border-color: #f7921d !important;
}
