@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
.white-text {
  color: white;
}

.horizontal-gradient, .hero .raised:after, .button.gradient-button, .content-section .button.small-gradient-button {
  background: rgb(33, 38, 98);
  background: -moz-linear-gradient(90deg, rgb(33, 38, 98) 11%, rgb(91, 94, 219) 100%);
  background: -webkit-linear-gradient(90deg, rgb(33, 38, 98) 11%, rgb(91, 94, 219) 100%);
  background: linear-gradient(90deg, rgb(33, 38, 98) 11%, rgb(91, 94, 219) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#212662",endColorstr="#5b5edb",GradientType=1);
}

.teal-gradient, .attendee-quote, .sidebar-title {
  background: rgb(57, 202, 199);
  background: -moz-linear-gradient(90deg, rgb(57, 202, 199) 37%, rgb(130, 255, 253) 100%);
  background: -webkit-linear-gradient(90deg, rgb(57, 202, 199) 37%, rgb(130, 255, 253) 100%);
  background: linear-gradient(90deg, rgb(57, 202, 199) 37%, rgb(130, 255, 253) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#39cac7",endColorstr="#82fffd",GradientType=1);
}

html, body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  color: #111741;
  font-optical-sizing: auto;
}
@media screen and (max-width: 991px) {
  html, body {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 16px;
  }
}

a {
  color: #5B5EDB;
}

img {
  max-width: 100%;
}

button {
  background: none;
  border: 0px;
  cursor: pointer;
}
button:focus:not(:focus-visible) {
  outline: 0px;
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1240px;
  }
}

.breadcrumb {
  background: transparent;
  padding: 0px 0px 12px;
}
.breadcrumb * {
  color: #111741;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 16px;
}
.breadcrumb *.active {
  color: #111741;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
}

strong {
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title.underline {
  border-bottom: 2px solid #82FFFD;
  padding-bottom: 0.2em;
}
.section-title.yellow-underline {
  border-bottom: 2px solid #f9be4d;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.8rem;
  }
}

.subpage .section-title {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #5B5EDB;
  padding-bottom: 12px;
}

.subpage .section-subtitle, .fc .fc-toolbar-title {
  font-size: 1rem;
  text-transform: uppercase;
  color: #0D7270;
  font-weight: 700;
}

.subpage-title {
  font-size: 2.1rem;
  font-weight: 400;
}

.small-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.large-text {
  font-size: 1.3rem;
}
@media screen and (max-width: 991px) {
  .large-text {
    font-size: 1.1rem;
  }
}

.small-text {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .small-text {
    font-size: 16px;
  }
}

.subpage .content-section p, .subpage .icon-list p, .subpage .content-section li {
  margin-bottom: 1.3rem;
  font-size: 18px;
  font-weight: 400;
}
.subpage .content-section p.large-text, .subpage .icon-list p.large-text, .subpage .content-section li.large-text {
  font-size: 1.2rem;
  font-weight: 300;
}
@media screen and (max-width: 1199px) {
  .subpage .content-section p.large-text, .subpage .icon-list p.large-text, .subpage .content-section li.large-text {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 991px) {
  .subpage .content-section p, .subpage .icon-list p, .subpage .content-section li {
    font-size: 16px;
  }
}

.image-text .button, .featured-link .button {
  font-size: 17px;
}
.image-text p, .featured-link p {
  font-size: 16px;
}

.alert {
  border-radius: 0px;
  border: 0px;
  margin-bottom: 0px;
}
.alert p {
  color: white;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .alert {
    display: none;
  }
  .alert p {
    font-size: 1.1rem;
  }
  .alert .button {
    font-size: 14px;
  }
}

.button {
  border: 2px solid currentColor;
  border-radius: 8px;
  display: inline-block;
  padding: 0.2em 0.75em;
  padding-right: 5em;
  position: relative;
  text-align: left;
}
.button:hover {
  text-decoration: none;
}
.button img {
  display: none;
}
.button svg {
  vertical-align: middle;
  position: absolute;
  right: 0.75em;
  width: 2em;
  margin-left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.button svg line {
  stroke: currentColor !important;
}
.button.small-button {
  padding: 0.05em 0.75em;
}
.button.large-button {
  font-size: 1.4rem;
}
.button.gradient-button, .content-section .button.small-gradient-button {
  border: 0px;
  color: white;
}
.button.gradient-button:hover, .content-section .button.small-gradient-button:hover {
  background: #3b3f96;
}
.button.blue-button {
  background: #82FFFD;
  color: #111741;
  border-color: transparent;
}
.button.blue-button:hover {
  background: #5cc2c1;
}
.button.white-button {
  color: white;
}
.button.white-button:hover {
  background: white;
  color: #111741;
  border-color: white;
}
@media screen and (max-width: 767px) {
  .button {
    padding-right: 3.5em;
  }
  .button svg {
    width: 1.4em;
  }
}

@media screen and (min-width: 991px) {
  .border-lg-right {
    border-right: 2px solid #5B5EDB;
  }
}

.caps {
  text-transform: uppercase;
}

.notch {
  clip-path: polygon(0 0, 0% 0, calc(100% - 4em) 0, 100% calc(0% + 4em), 100% 100%, 0% 100%, 0% 100%, 0% 0%, 0% 10%);
}

.notched {
  position: relative;
}

.white-notch {
  position: absolute;
  top: 0;
  right: 0;
  width: 14%;
  max-width: 70px;
}

.top-notch {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  padding-left: 9%;
  padding-top: 9%;
  overflow: hidden;
}
.top-notch:after {
  position: absolute;
  right: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: -500px;
  margin-top: -500px;
  border-left: 500px solid transparent;
  border-top: 500px solid white;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-0.3em);
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    width: 24%;
    min-width: 110px;
  }
  .navbar .navbar-brand img {
    width: 100%;
  }
  .navbar .collapse {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 999;
    background: white;
    box-shadow: 0px 29px 91px -2px;
  }
  .navbar .mobile-container {
    max-width: 767px;
    margin: 0 auto;
  }
}

.navbar-nav .nav-column {
  border-right: 1px solid #82FFFD;
}
.navbar-nav .nav-column:last-child {
  border-right: 0px;
}
.navbar-nav .nav-column a, .navbar-nav .nav-column span {
  color: white;
  display: block;
  position: relative;
  padding-left: 1.8em;
  font-size: 18px;
}
.navbar-nav .nav-column a svg, .navbar-nav .nav-column span svg {
  width: 1em;
  vertical-align: middle;
  left: 0.1em;
  position: absolute;
}
.navbar-nav .nav-column a svg line, .navbar-nav .nav-column span svg line {
  stroke: #82FFFD !important;
}
.navbar-nav .nav-column .nav-title {
  padding-left: 0.3em;
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: 0.04em;
}
.navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
}
.navbar-nav a {
  color: #111741;
}
@media screen and (min-width: 992px) {
  .navbar-nav.eyebrow-nav {
    flex-basis: min-content;
    flex-grow: 1;
  }
  .navbar-nav.eyebrow-nav .nav-item {
    position: relative;
    margin: 0 0.5em;
  }
  .navbar-nav.eyebrow-nav .nav-item a, .navbar-nav.eyebrow-nav .nav-item form {
    padding: 0px 4px;
    line-height: 1.2em;
    display: inline-block;
  }
  .navbar-nav.eyebrow-nav .nav-item a.button, .navbar-nav.eyebrow-nav .nav-item form.button {
    padding: 0.05em 0.75em;
  }
  .navbar-nav.eyebrow-nav .nav-item.nav-button:before, .navbar-nav.eyebrow-nav .nav-item:first-child:before {
    display: none;
  }
  .navbar-nav.eyebrow-nav .nav-item:before {
    position: absolute;
    content: "";
    left: -0.5em;
    height: 100%;
    width: 2px;
    background: #5B5EDB;
  }
  .navbar-nav .nav-item {
    margin: 0px 1em;
  }
  .navbar-nav .nav-item:last-child .link-wrapper:after {
    content: "|";
    position: absolute;
    color: #5B5EDB;
    right: -1em;
    top: 0.35em;
    font-size: 1.1em;
  }
  .navbar-nav .nav-item .link-wrapper {
    position: relative;
  }
  .navbar-nav .nav-item .link-wrapper:before {
    content: "|";
    position: absolute;
    color: #5B5EDB;
    left: -1em;
    top: 0.35em;
    font-size: 1.1em;
  }
  .navbar-nav .nav-item:first-child .link-wrapper:before {
    content: "";
  }
  .navbar-nav .megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    display: none;
    z-index: 99;
  }
  .navbar-nav .has-submenu .nav-link {
    position: relative;
    padding-left: 0px;
    padding-right: 0px;
  }
  .navbar-nav .has-submenu .nav-link:after {
    position: absolute;
  }
  .navbar-nav .has-submenu:focus-within .nav-link:after {
    content: "";
    background: #5B5EDB;
    position: absolute;
    height: 6px;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .navbar-nav .has-submenu:focus-within .megamenu {
    display: block;
  }
  .navbar-nav .has-submenu:hover .nav-link:after {
    content: "";
    background: #5B5EDB;
    position: absolute;
    height: 6px;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .navbar-nav .has-submenu:hover .megamenu {
    display: block;
  }
}

.eyebrow-nav {
  text-transform: none;
}
.eyebrow-nav li {
  font-size: 14px;
}
@media screen and (min-width: 1200px) {
  .eyebrow-nav li {
    font-size: 16px;
  }
}
.eyebrow-nav .nav-shop {
  font-weight: 700;
  color: #5B5EDB;
}
.eyebrow-nav .nav-search .search-toggle {
  cursor: pointer;
}
.eyebrow-nav .nav-search label {
  margin: 0;
}
.eyebrow-nav .nav-search form input {
  position: absolute;
  width: 0px;
  overflow: hidden;
  right: 0;
  top: 100%;
  opacity: 0;
  border: 2px solid #5B5EDB;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  transition: all 0.2s ease;
  padding: 4px 15px;
  z-index: 9;
  box-shadow: 0px 3px 22px -5px;
}
.eyebrow-nav .nav-search form input:focus {
  width: 220px;
  opacity: 1;
}

.mobile-nav .landing-link .nav-link {
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-nav button img {
  width: 19px;
}
.mobile-nav a {
  text-transform: uppercase;
  font-size: 20px;
  color: #111741;
}
.mobile-nav .secondary-nav {
  margin: 0.5rem 1rem;
  position: relative;
  border-bottom: 2px solid #5B5EDB;
}
.mobile-nav .secondary-nav:last-child {
  border-bottom: 0px;
  margin-bottom: 12px;
}
.mobile-nav .secondary-nav .nav-link {
  padding: 4px;
}
.mobile-nav .secondary-nav .submenu-toggle {
  position: absolute;
  right: 1rem;
  top: 0;
  padding: 1px 7px;
  background: white;
  border: 0px;
  cursor: pointer;
}
.mobile-nav .secondary-nav .active-button img {
  transform: rotate(45deg);
}
.mobile-nav .tertiary-nav {
  padding-bottom: 8px;
  display: none;
}
.mobile-nav .tertiary-nav a {
  display: block;
  text-transform: none;
  font-size: 16px;
  margin-left: 15px;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
  padding: 0px;
}
.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler:hover {
  background: transparent !important;
}

.navbar-toggler .icon-bar {
  width: 29px;
  height: 4px;
  transition: all 0.2s;
  background: #5B5EDB;
  display: block;
  margin-bottom: 5px;
}

.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
  margin-bottom: 3px;
}

.navbar-toggler .middle-bar {
  opacity: 0;
}

.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.closed .top-bar {
  transform: rotate(0);
  margin-bottom: 5px;
}

.navbar-toggler.closed .middle-bar {
  opacity: 1;
}

.navbar-toggler.closed .bottom-bar {
  transform: rotate(0);
}

.footer a {
  color: white;
}
.footer .logo {
  margin-bottom: 20px;
  display: inline-block;
}
.footer .footer-nav ul {
  list-style-type: none;
  padding: 10px 6px;
}
.footer .footer-nav ul a {
  font-size: 26px;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .footer .footer-nav ul {
    padding-top: 0px;
  }
}
.footer .footer-nav .col-md-6 {
  border-left: 1px solid #5B5EDB;
  padding-bottom: 30px;
}
.footer .footer-nav .col-md-6:last-child {
  border-right: 1px solid #5B5EDB;
}
@media screen and (max-width: 991px) {
  .footer .footer-nav .col-md-6 {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-nav .col-md-6 {
    border-left: 0px;
    border-right: 0px;
    padding-bottom: 0px;
  }
}
.footer .social-links a {
  font-size: 19px;
}
.footer .social-links a:hover {
  text-decoration: none;
}
.footer .social-links .fa-circle {
  color: #111741;
}
.footer .social-links .fab {
  color: white;
}
@media screen and (max-width: 1199px) {
  .footer .social-links .fa-stack {
    font-size: 19px;
    width: 2em;
  }
}
.footer .footer-signup p {
  color: white;
  font-size: 26px;
  font-weight: 300;
}
.footer .footer-signup form {
  width: 100%;
  max-width: 540px;
  margin: 0px auto 20px;
}
.footer .footer-signup input {
  margin-bottom: 15px;
  border: 2px solid #111741;
  background: transparent;
  color: white;
}
.footer .footer-signup input::placeholder {
  color: white;
  opacity: 0.8;
}
.footer .footer-signup .button {
  border: 0px;
  background: #111741;
  color: white;
  padding: 0.375rem 0.75rem;
  padding-right: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer .footer-signup .button .svg {
  width: 1.2em;
}
@media screen and (max-width: 767px) {
  .footer .footer-signup {
    padding-top: 30px !important;
  }
}
.footer .legal {
  background: #111741;
  color: white;
}
.footer .legal p {
  margin-bottom: 0px;
  line-height: 1em;
}
.footer .legal .legal-row {
  max-width: 767px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 18px;
}
.footer .legal .legal-row .legal-col {
  padding: 1px 25px;
  border-right: 2px solid white;
}
.footer .legal .legal-row .legal-col:last-child {
  border-right: 0px;
}
@media screen and (max-width: 767px) {
  .footer .legal .legal-row .legal-col {
    font-size: 16px;
    padding: 1px 15px;
    width: 50%;
    flex: 0 1 50%;
    margin-bottom: 14px;
  }
  .footer .legal .legal-row .legal-col:nth-child(even) {
    border-right: 0px;
  }
}
@media screen and (max-width: 545px) {
  .footer .legal .legal-row .legal-col {
    width: 100%;
    flex: 0 1 100%;
    margin-bottom: 14px;
    border-right: 0px;
  }
}

.hero {
  text-align: center;
}
.hero h1 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 5rem;
  margin-bottom: 4%;
}
@media screen and (max-width: 991px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}
.hero .container {
  background-position: center center;
  background-size: cover;
}
.hero .hero-content {
  padding-top: 18%;
  padding-bottom: 18%;
}
.hero .hero-content .button {
  min-width: 280px;
}
.hero .raised {
  display: inline-block;
  position: relative;
  transform: translateY(-0.3em);
  animation: fadeUp 3s;
}
.hero .raised:after {
  position: absolute;
  width: 100%;
  content: "";
  padding-top: 10px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  .hero .raised:after {
    padding-top: 8px;
  }
}

.gradient-card {
  padding: 30px;
}

.card-triptych .col-xl-4, .card-triptych .col-lg-4 {
  margin-bottom: 30px;
}
.card-triptych.home-triptych .gradient-card {
  border-radius: 12px;
  transform: translateY(-60px);
  padding: 40px 35px;
  padding-bottom: 120px;
  clip-path: polygon(0 0, 0% 0, calc(100% - 2em) 0, 100% calc(0% + 2em), 100% 100%, 0% 100%, 0% 100%, 0% 0%, 0% 10%);
  max-width: 290px;
  margin-bottom: 0px;
}
.card-triptych.home-triptych .gradient-card p {
  font-size: 20px;
}
.card-triptych.home-triptych .gradient-card .learn-more {
  padding: 0px 35px;
}
.card-triptych .gradient-card {
  padding: 40px 12px;
  padding-bottom: 30px;
  position: relative;
  margin: auto;
  margin-bottom: 30px;
}
.card-triptych .gradient-card p {
  font-size: 16px;
}
.card-triptych .gradient-card a {
  color: white;
}
.card-triptych .gradient-card a:hover {
  text-decoration: none;
}
.card-triptych .gradient-card a:hover .svg {
  transform: translateX(2px);
}
.card-triptych .gradient-card h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #82FFFD;
  padding-bottom: 4px;
  margin-bottom: 0.7em;
}
@media screen and (max-width: 767px) {
  .card-triptych .gradient-card {
    max-width: 100%;
    padding: 25px;
    padding-bottom: 43px;
  }
  .card-triptych .gradient-card h2 {
    padding-right: 30px;
  }
  .card-triptych .gradient-card .learn-more {
    bottom: 20px;
    left: 0px;
    padding: 0px 25px;
  }
}
.card-triptych .learn-more {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 0px 20px;
  bottom: 40px;
}
.card-triptych .learn-more .svg {
  float: right;
  width: 1.4em;
  padding-top: 5px;
  height: auto;
}
.card-triptych .learn-more .svg line {
  stroke: #82FFFD !important;
  stroke-width: 2.2px !important;
}

.home-search input {
  width: 100%;
  border: 2px solid #5B5EDB;
  border-radius: 8px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
}
.home-search button {
  width: 100%;
}

.top-searches {
  padding-left: 25%;
  position: relative;
}
.top-searches .small-title {
  margin-bottom: 0.3em;
}
.top-searches:after {
  position: absolute;
  top: 0;
  left: 10%;
  content: "";
  height: 100%;
  width: 2px;
  background: #5B5EDB;
}
.top-searches ul {
  padding-left: 0px;
}
.top-searches ul li {
  position: relative;
  list-style-type: none;
  padding-left: 1.5em;
  margin-bottom: 0.1em;
}
.top-searches ul li a {
  color: #111741;
}
.top-searches .svg {
  width: 1em;
  position: absolute;
  left: 0em;
  top: 0.2em;
}
.top-searches .svg line {
  stroke: #5B5EDB !important;
  stroke-width: 3px !important;
}
@media screen and (max-width: 767px) {
  .top-searches {
    padding-left: 0px;
    margin-top: 30px;
  }
  .top-searches:after {
    display: none;
  }
}

.news-listing .listing-item {
  margin-bottom: 30px;
}
.news-listing .listing-title {
  color: #0D7270;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.1em;
}
.news-listing .event-item {
  position: relative;
  padding-left: 90px;
}
.news-listing .event-item .listing-title {
  margin-bottom: 1rem;
}
.news-listing .event-item .date {
  position: absolute;
  left: 0;
  display: block;
  width: 71px;
  height: 70px;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.news-listing .event-item .date p {
  font-size: 16px;
  line-height: 1.1em;
  text-transform: uppercase;
  padding-top: 16px;
  letter-spacing: 0.05em;
}
.news-listing .event-item .date p span {
  font-size: 1.8em;
  font-weight: 600;
  display: block;
  padding-top: 2px;
}

.arrow-list .small-title, .download-list .small-title {
  font-weight: 400;
}
.arrow-list ul, .download-list ul {
  list-style-type: none;
  padding-left: 0px;
}
.arrow-list ul li, .download-list ul li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.arrow-list ul li a, .download-list ul li a {
  color: #111741;
}
.arrow-list ul li .svg, .download-list ul li .svg {
  width: 1.1em;
  position: absolute;
  left: 0;
  top: 0.15em;
}
.arrow-list ul li .svg.blue-arrow line, .download-list ul li .svg.blue-arrow line {
  stroke: #82FFFD !important;
}
.arrow-list ul li .svg line, .download-list ul li .svg line {
  stroke: #5B5EDB !important;
}

.quicklinks [class*=col] {
  padding-bottom: 5px !important;
}
.quicklinks [class*=col] .arrow-list {
  position: relative;
  border-bottom: 2px solid #5B5EDB;
}
.quicklinks [class*=col] .arrow-list .small-title {
  margin-bottom: 15px;
}
.quicklinks [class*=col]:last-child .arrow-list {
  border-bottom: 0px;
}
.quicklinks .mobile-expand .toggle-list {
  position: absolute;
  width: 24px;
  padding: 0px;
  right: 0;
  top: 0;
  background: none;
  border: 0px;
  cursor: pointer;
}
.quicklinks .mobile-expand .toggle-list.expanded img {
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .quicklinks .mobile-expand ul {
    display: none;
    margin-left: 15px;
  }
}
@media screen and (min-width: 768px) {
  .quicklinks .col-md-4 {
    border-right: 2px solid #5B5EDB;
  }
  .quicklinks .col-md-4 ul {
    display: block !important;
  }
  .quicklinks .col-md-4 .arrow-list {
    border-bottom: 0px;
  }
  .quicklinks .col-md-4:last-child {
    border-right: 0;
  }
}

.swirl-bg {
  background-repeat: no-repeat;
  background-size: 280px;
  background-position: bottom right;
}
@media screen and (max-width: 767px) {
  .swirl-bg {
    background-size: 190px;
  }
}

.subpage .content-section ul, .subpage .content-section ol {
  padding-left: 1em;
}
.subpage .content-section li {
  margin-bottom: 10px;
}

.content-section .button {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.content-section .small-gradient-button {
  font-size: 18px;
  padding-right: 3em;
}
.content-section .small-gradient-button svg {
  width: 1.4em;
}

@media screen and (max-width: 767px) {
  .subpage-header .title-container {
    padding: 0px;
  }
}

.subpage-banner {
  background-size: cover;
  background-position: left center;
  position: relative;
  border-top: 2px solid white;
}
.subpage-banner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #212662;
  opacity: 0.5;
}
.subpage-banner.horizontal-gradient:before, .subpage-banner.button.gradient-button:before, .content-section .subpage-banner.button.small-gradient-button:before {
  display: none;
}
.subpage-banner h1 {
  color: white;
  position: relative;
  z-index: 2;
}
.subpage-banner .white-notch {
  top: -2px;
}

.subpage-banner.member-banner hr {
  border-top: 2px solid #3acac7;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.subpage-banner.member-banner p {
  color: white;
  font-weight: 200;
  font-size: 24px;
}
.subpage-banner.member-banner .member-name {
  font-size: 30px;
}
.subpage-banner.member-banner .profile-image {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  .subpage-banner.member-banner .member-name {
    font-size: 1.3rem;
  }
  .subpage-banner.member-banner p {
    font-size: 18px;
  }
}

.sidebar-title {
  padding: 5px 15px;
}
.sidebar-title h2 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 0px;
  letter-spacing: 0.04em;
}

.sidebar-contact {
  margin-bottom: 3rem;
}
.sidebar-contact p {
  font-weight: 400;
  line-height: 1.3em;
  font-size: 18px;
}

.sidebar-address .address {
  padding: 5px 15px;
}

.sidebar-nav {
  margin-bottom: 3rem;
}
.sidebar-nav .group-heading {
  text-transform: uppercase;
}
.sidebar-nav .nav-group {
  padding: 8px 15px;
  border-bottom: 1px solid #5B5EDB;
  transition: background 0.2s ease;
}
.sidebar-nav .nav-group a {
  color: #111741;
}
.sidebar-nav .nav-group .current {
  font-weight: 700;
}
.sidebar-nav .nav-group .group-toggle {
  padding: 0px;
  cursor: pointer;
}
.sidebar-nav .nav-group .group-toggle img {
  width: 19px;
}
.sidebar-nav .nav-group.expanded {
  background: #f4f4f4;
}
.sidebar-nav .nav-group.expanded .group-toggle img {
  transform: rotate(45deg);
}
.sidebar-nav .nav-group .group-heading {
  position: relative;
  padding-right: 24px;
}
.sidebar-nav .nav-group .group-heading a {
  display: inline-block;
  line-height: 1.1em;
  font-size: 18px;
}
.sidebar-nav .nav-group .group-heading .group-toggle {
  position: absolute;
  top: 0;
  right: 0px;
}
.sidebar-nav .nav-group .group-list {
  display: none;
}
.sidebar-nav .nav-group .group-list ul {
  list-style-type: none;
  font-size: 17px;
  padding-left: 4px;
  padding-top: 6px;
}
.sidebar-nav .nav-group .group-list > ul {
  padding-top: 8px;
}
.sidebar-nav .nav-group .group-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 6px;
}
.sidebar-nav .nav-group .group-list .svg {
  width: 18px;
  position: absolute;
  left: 0;
}
.sidebar-nav .nav-group .group-list .svg line {
  stroke: #5B5EDB !important;
}

.sidebar-search {
  margin-bottom: 25px;
}
.sidebar-search .button {
  color: white;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.sidebar-search .form-group {
  margin-bottom: 16px;
}
.sidebar-search .custom-select {
  font-size: 16px;
  height: calc(2.25em + 2px);
  padding: 0.375em 1.75em 0.375em 0.75em;
}
.sidebar-search .form-control {
  padding: 0.375em 0.75em;
  font-size: 16px;
}

.profile-banner {
  color: white;
}
.profile-banner p {
  font-weight: 500;
}
.profile-banner a {
  color: white;
}
.profile-banner .title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05em;
  margin-bottom: 4px;
}
.profile-banner .name {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0px;
}
.profile-banner .blue-hr {
  margin: 5px auto 12px;
  border-top: 2px solid #82FFFD;
}

.faq-accordions .accordion .accordion-title h2, .faq-accordions .accordion .accordion-title h3 {
  text-transform: none;
}

.accordions .section-title {
  margin-bottom: 0px;
}

.accordion-footnote {
  margin-top: 30px;
}
.accordion-footnote p {
  margin-bottom: 0px;
  font-size: 16px;
}

.accordion {
  transition: background 0.2s ease;
  border-bottom: 1px solid #5B5EDB;
  padding: 8px;
}
.accordion:first-child {
  border-top: 1px solid #5B5EDB;
}
.accordion .accordion-title {
  position: relative;
  padding-right: 35px;
  padding-left: 10px;
  display: block;
  width: 100%;
  text-align: left;
}
.accordion .accordion-title h2, .accordion .accordion-title h3 {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0px;
  color: #111741;
}
.accordion .accordion-title img {
  position: absolute;
  right: 6px;
  top: 0.1em;
  width: 20px;
}
.accordion .accordion-content {
  display: none;
  padding: 10px;
}
.accordion .accordion-content .member-list p {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
}
.accordion .accordion-content .member-list a {
  color: #111741;
}
.accordion.expanded {
  background: #f4f4f4;
}
.accordion.expanded .accordion-title img {
  transform: rotate(45deg);
}
.accordion .resource-list .list-title {
  margin-top: 9px;
  font-size: 1rem;
  font-weight: 600;
}
.accordion .resource-list .list-description {
  margin-bottom: 12px;
}
.accordion .resource-list .list-item {
  position: relative;
  padding-left: 2em;
}
.accordion .resource-list .list-item a {
  color: #111741;
}
.accordion .resource-list .list-item a p {
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1rem;
}
.accordion .resource-list .list-item img {
  position: absolute;
  left: 0.2rem;
  width: 1.1rem;
  padding-top: 0.25rem;
}

.accordion .session-info p, .accordion .session-info span {
  font-size: 16px;
  line-height: 1.1rem;
}
.accordion .title-details {
  position: relative;
  font-size: 18px;
  padding-left: 90px;
  padding-right: 110px;
}
.accordion .title-details .time {
  position: absolute;
  left: 0;
}
.accordion .title-details .location {
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 991px) {
  .accordion .title-details {
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .accordion .title-details .time, .accordion .title-details .location {
    position: static;
    display: block;
  }
  .accordion .title-details .event-name {
    font-weight: 600;
    font-size: 18px;
  }
}
.accordion.event-accordion .section-subtitle {
  font-size: 18px;
  margin-bottom: 0px;
}
.accordion.event-accordion .location {
  text-transform: uppercase;
  font-style: italic;
}
.accordion.event-accordion .panelists {
  font-weight: 700;
}
.accordion.event-accordion .speakers {
  margin-bottom: 0.7em;
}

.two-column-accordion .section-title {
  margin-bottom: 0px;
  border-bottom: 0px;
}
.two-column-accordion .accordion .resource-list .list-item {
  padding-left: 1.5em;
}
.two-column-accordion .accordion .resource-list .list-item img {
  width: 0.9rem;
  padding-top: 0.1rem;
  left: 0.1rem;
}
.two-column-accordion .accordion .resource-list .list-item a p {
  font-size: 16px;
}

@media screen and (min-width: 1200px) {
  .subpage-events .listing-item {
    padding-left: 120px;
  }
  .subpage-events .listing-item .date {
    width: 90px;
    height: 90px;
  }
  .subpage-events .listing-item .date p {
    font-size: 1rem;
    padding-top: 19px;
  }
}

.image-quote .quote-image {
  border-radius: 32px;
}
.image-quote .quote {
  color: white;
  padding-left: 3rem;
  position: relative;
}
.image-quote .quote .quotation-mark {
  position: absolute;
  left: 0px;
  top: 0;
  width: 2rem;
}
.image-quote .attribution p {
  margin-bottom: 0px;
}

.image-slider .notched {
  margin: 15px;
}
.image-slider .notched .white-notch {
  width: 25%;
}

.slick-dots li button:before {
  font-size: 13px;
}

.slick-slider {
  padding: 0px 15px;
}
.slick-slider .slick-dots {
  left: 0;
}
.slick-slider .slick-prev:before, .slick-slider .slick-next:before {
  color: #111741;
  font-size: 26px;
}
.slick-slider .slick-prev {
  left: 0px;
}
.slick-slider .slick-next {
  right: 0px;
}
@media screen and (max-width: 767px) {
  .slick-slider .slick-dots {
    position: static;
  }
}

.tab-section .nav-tabs {
  border-bottom: 0px;
}
.tab-section .nav-link {
  border: 0px;
  border-bottom: 8px solid white;
  text-transform: uppercase;
}
.tab-section .nav-link.active {
  border-bottom: 8px solid #14afac;
}

.tab-content {
  color: white;
}
.tab-content a, .tab-content ul li a {
  color: white;
}

.member-cards .profile-card, .member-cards .accomodation-card, .accomodations .profile-card, .accomodations .accomodation-card {
  color: white;
  font-size: 14px;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
.member-cards .profile-card a, .member-cards .accomodation-card a, .accomodations .profile-card a, .accomodations .accomodation-card a {
  color: #82FFFD;
}
.member-cards .profile-card p, .member-cards .accomodation-card p, .accomodations .profile-card p, .accomodations .accomodation-card p {
  margin-bottom: 0px;
}
.member-cards .profile-card.accomodation-card, .member-cards .accomodation-card.accomodation-card, .accomodations .profile-card.accomodation-card, .accomodations .accomodation-card.accomodation-card {
  font-size: 17px;
}
.member-cards .profile-card.accomodation-card .name, .member-cards .accomodation-card.accomodation-card .name, .accomodations .profile-card.accomodation-card .name, .accomodations .accomodation-card.accomodation-card .name {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.member-cards .profile-card .name, .member-cards .accomodation-card .name, .accomodations .profile-card .name, .accomodations .accomodation-card .name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  border-bottom: 1px solid #82FFFD;
}
.member-cards .profile-card .member-contact, .member-cards .accomodation-card .member-contact, .accomodations .profile-card .member-contact, .accomodations .accomodation-card .member-contact {
  padding: 15px 0 25px;
}
.member-cards .profile-card .read-more, .member-cards .accomodation-card .read-more, .accomodations .profile-card .read-more, .accomodations .accomodation-card .read-more {
  color: white;
  font-size: 18px;
}
.member-cards .profile-card .read-more img, .member-cards .accomodation-card .read-more img, .accomodations .profile-card .read-more img, .accomodations .accomodation-card .read-more img {
  opacity: 0;
}
.member-cards .profile-card .read-more svg, .member-cards .accomodation-card .read-more svg, .accomodations .profile-card .read-more svg, .accomodations .accomodation-card .read-more svg {
  vertical-align: middle;
  width: 1.4rem;
  margin-right: 6px;
}
.member-cards .profile-card .read-more svg line, .member-cards .accomodation-card .read-more svg line, .accomodations .profile-card .read-more svg line, .accomodations .accomodation-card .read-more svg line {
  stroke: #82FFFD !important;
}

.profile-info .profile-section p {
  font-size: 16px;
}
.profile-info .profile-section .info-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
}

.featured-event {
  color: white;
}
.featured-event .event-title {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.featured-event .event-link {
  position: relative;
  padding-left: 1.9rem;
  padding-bottom: 10px;
}
.featured-event .event-link a {
  color: white;
}
.featured-event .event-link p {
  margin-bottom: 0px;
}
.featured-event .event-link .date {
  font-weight: 600;
}
.featured-event .event-link .svg {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.3rem;
}
.featured-event .event-link .svg line {
  stroke: #82FFFD !important;
}

.article-listing .filter-list {
  margin-bottom: 25px;
}
.article-listing .filter-list .filter {
  display: inline-block;
  color: white;
  background: #5B5EDB;
  padding: 0.1em 1em;
  border-radius: 7px;
  margin-right: 0.5em;
  font-size: 16px;
  margin-bottom: 0.5em;
}
.article-listing .filter-list .filter.active {
  background: #111741;
}
.article-listing .article-card {
  max-width: 400px;
  margin: 0 auto 20px;
}
.article-listing .article-card.no-summary .article-title {
  border-bottom: 0px;
  margin-bottom: 0px;
}
.article-listing .article-card.has-arrow-link {
  position: relative;
  padding-bottom: 30px;
}
.article-listing .article-card a .arrow-link {
  position: absolute;
  bottom: 25px;
  left: 1rem;
}
.article-listing .article-card a .arrow-link span {
  vertical-align: middle;
}
.article-listing .article-card a .arrow-link img, .article-listing .article-card a .arrow-link svg {
  vertical-align: middle;
  width: 20px;
  height: auto;
  margin-right: 10px;
}
.article-listing .article-card a .arrow-link img line, .article-listing .article-card a .arrow-link svg line {
  stroke: #82FFFD !important;
  stroke-width: 2.5px !important;
}
.article-listing .article-card p, .article-listing .article-card a {
  color: white;
  font-size: 16px;
}
.article-listing .article-card .author {
  font-weight: 600;
}
.article-listing .article-card .date {
  text-transform: uppercase;
}
.article-listing .article-card .article-title {
  border-bottom: 2px solid #82FFFD;
  padding-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  padding-right: 36px;
}

.pagination {
  justify-content: center;
  margin-top: 20px;
}
.pagination .page-link {
  border: 0px;
  color: #5B5EDB;
  font-size: 0.9rem;
  background: transparent;
}
.pagination .page-item.active .page-link {
  background-color: #5B5EDB;
  border: 0px;
  color: white;
}

.article-details .date {
  margin-bottom: 6px;
  margin-top: 6px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.article-details .share-link {
  font-size: 16px;
  font-weight: 700;
}
.article-details .share-link:hover {
  text-decoration: none;
  color: #14afac;
}
.article-details .share-link img {
  width: 17px;
  margin-left: 4px;
}
.article-details .share-link span, .article-details .share-link img {
  vertical-align: middle;
}

.tags {
  border-top: 1px solid #5B5EDB;
  padding-top: 10px;
}
.tags p {
  font-weight: 600;
  font-size: 18px;
}
.tags .tag {
  display: inline-block;
  color: white;
  background: #5B5EDB;
  padding: 0.1em 1em;
  border-radius: 7px;
  margin-right: 0.5em;
  font-size: 16px;
  margin-bottom: 0.5em;
}

.form-section, .contact-section {
  margin-bottom: 30px;
}
.form-section legend, .contact-section legend {
  color: white;
  font-size: 1rem;
}
.form-section label, .contact-section label {
  color: white;
}
.form-section input, .form-section textarea, .contact-section input, .contact-section textarea {
  background: transparent;
  border-color: #82FFFD;
  color: white;
  font-size: 18px;
}
.form-section input::placeholder, .form-section textarea::placeholder, .contact-section input::placeholder, .contact-section textarea::placeholder {
  color: white;
}
.form-section .form-group, .contact-section .form-group {
  margin-bottom: 0.5rem;
}
.form-section .custom-select, .contact-section .custom-select {
  background: transparent url("/img/select.svg") no-repeat right 0.75rem center;
  color: white;
  border-color: #82FFFD;
  font-size: 18px;
}
.form-section .custom-select option, .contact-section .custom-select option {
  color: black;
}
.form-section .checkbox, .contact-section .checkbox {
  padding-left: 20px;
}
.form-section .checkbox label, .contact-section .checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.form-section .checkbox label::before, .contact-section .checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  top: 2px;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.form-section .checkbox label::after, .contact-section .checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 0px;
  font-size: 11px;
  color: #555555;
}
.form-section .checkbox input[type=checkbox],
.form-section .checkbox input[type=radio], .contact-section .checkbox input[type=checkbox],
.contact-section .checkbox input[type=radio] {
  opacity: 0;
  z-index: 1;
}
.form-section .checkbox input[type=checkbox]:focus + label::before,
.form-section .checkbox input[type=radio]:focus + label::before, .contact-section .checkbox input[type=checkbox]:focus + label::before,
.contact-section .checkbox input[type=radio]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.form-section .checkbox input[type=checkbox]:checked + label::after,
.form-section .checkbox input[type=radio]:checked + label::after, .contact-section .checkbox input[type=checkbox]:checked + label::after,
.contact-section .checkbox input[type=radio]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}
.form-section .checkbox input[type=checkbox]:disabled + label,
.form-section .checkbox input[type=radio]:disabled + label, .contact-section .checkbox input[type=checkbox]:disabled + label,
.contact-section .checkbox input[type=radio]:disabled + label {
  opacity: 0.65;
}
.form-section .checkbox input[type=checkbox]:disabled + label::before,
.form-section .checkbox input[type=radio]:disabled + label::before, .contact-section .checkbox input[type=checkbox]:disabled + label::before,
.contact-section .checkbox input[type=radio]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.form-section .checkbox.checkbox-inline, .contact-section .checkbox.checkbox-inline {
  margin-top: 0;
}
.form-section .checkbox-custom input[type=checkbox]:checked + label::before,
.form-section .checkbox-custom input[type=radio]:checked + label::before, .contact-section .checkbox-custom input[type=checkbox]:checked + label::before,
.contact-section .checkbox-custom input[type=radio]:checked + label::before {
  background-color: #13afac;
  border-color: #13afac;
}
.form-section .checkbox-custom input[type=checkbox]:checked + label::after,
.form-section .checkbox-custom input[type=radio]:checked + label::after, .contact-section .checkbox-custom input[type=checkbox]:checked + label::after,
.contact-section .checkbox-custom input[type=radio]:checked + label::after {
  color: #fff;
}
.form-section input[type=checkbox].styled:checked + label:after,
.form-section input[type=radio].styled:checked + label:after, .contact-section input[type=checkbox].styled:checked + label:after,
.contact-section input[type=radio].styled:checked + label:after {
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  font-size: 14px;
}
.form-section input[type=checkbox] .styled:checked + label::before,
.form-section input[type=radio] .styled:checked + label::before, .contact-section input[type=checkbox] .styled:checked + label::before,
.contact-section input[type=radio] .styled:checked + label::before {
  color: #fff;
}
.form-section input[type=checkbox] .styled:checked + label::after,
.form-section input[type=radio] .styled:checked + label::after, .contact-section input[type=checkbox] .styled:checked + label::after,
.contact-section input[type=radio] .styled:checked + label::after {
  color: #fff;
}

.fc-toolbar-chunk {
  font-size: 16px;
}

.subpage-banner.conference-banner .banner-content {
  position: relative;
  z-index: 3;
  color: white;
  font-size: 1.2rem;
}
.subpage-banner.conference-banner .banner-content h1 {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2rem;
}
@media screen and (max-width: 576px) {
  .subpage-banner.conference-banner .banner-content h1 {
    font-size: 2.4rem;
  }
}
.subpage-banner.conference-banner .banner-content .button {
  font-size: 1rem;
  font-weight: 600;
  padding-top: 0.05em;
  padding-bottom: 0.05em;
}
.subpage-banner.conference-banner .banner-content .date {
  display: inline-block;
  border-bottom: 2px solid white;
  font-weight: 600;
  margin-bottom: 5px;
}

.attendee-quote .quote-image {
  border-radius: 32px;
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto 20px;
}
.attendee-quote .quote {
  position: relative;
  padding-left: 3.5rem;
}
.attendee-quote .quote img {
  position: absolute;
  width: 2.5rem;
  left: 0;
}

.sponsor-slider {
  margin-left: -10px;
  margin-right: -10px;
  padding: 0 0 15px 0;
}
.sponsor-slider .slick-track {
  display: flex;
}
.sponsor-slider .slick-dots {
  margin-top: 1.5rem;
}
.sponsor-slider .slick-dots li.slick-active button:before {
  color: #5B5EDB;
}
.sponsor-slider .sponsor-slide {
  position: relative;
  margin: 10px;
}
.sponsor-slider .sponsor-slide::before {
  content: "";
  padding-bottom: 100%;
  display: block;
}
.sponsor-slider .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.sponsor-slider .slick-track .slick-slide img {
  position: absolute;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sponsor-slider .slick-track .slick-slide .sponsor-level {
  margin-top: auto;
  padding: 4px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.sponsor-slider .slick-track .slick-slide .sponsor-level p {
  margin-bottom: 0px;
}

.contact-section input, .contact-section textarea, .contact-section .custom-select {
  max-width: 400px;
}
.contact-section .button {
  width: 240px;
  margin-top: 30px;
  padding-right: 3em;
}
.contact-section .button .svg {
  width: 1.5em;
}

.validation-summary-errors ul {
  margin-bottom: 0px;
  list-style-type: none;
  padding-left: 0px;
}
.validation-summary-errors ul li {
  margin-top: 0.8rem;
  padding: 0.375rem 0.75rem;
  background: #9f0101;
  color: white;
  border-radius: 5px;
}

.search-result {
  border-bottom: 2px solid #e9e9e9;
  padding-top: 10px;
  padding-bottom: 10px;
}
.search-result:first-child {
  border-top: 2px solid #e9e9e9;
}
.search-result .result-link {
  font-size: 1.1rem;
  color: #0f8381;
}
.search-result .result-category {
  font-size: 16px;
  font-weight: 500;
}
.search-result .result-preview p {
  font-size: 0.9rem;
  margin-top: 10px;
}

.career-results h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0px;
}
.career-results .arrow-link {
  color: #111741;
  font-weight: 500;
}
.career-results .arrow-link .svg {
  width: 20px;
  vertical-align: middle;
  margin-left: 15px;
}
.career-results .arrow-link .svg line {
  stroke: #5B5EDB !important;
  stroke-width: 3px !important;
}
.career-results .career-result {
  border-bottom: 2px solid #5B5EDB;
}
.career-results .career-result img {
  max-width: 180px;
  margin-bottom: 9px;
  width: 100%;
}
.career-results .career-result .summary {
  font-size: 16px;
}

.career-listing p {
  font-size: 18px;
}
.career-listing .small-title {
  font-size: 20px;
}
.career-listing .summary p {
  font-size: 16px;
}