*:focus {
  outline: 2px solid #1e3e64 !important;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
a:visited {
  color: #1e3e64;
  font-weight: 600;
  cursor: pointer;
}

a:hover {
  color: #008fc6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  margin: 0;
  margin-bottom: 1.5rem;
}

h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
}

.heading-text {
  font-family: "Montserrat", sans-serif;
}

body {
  font-size: 16px;
}

p {
/*   font-family: "Lato"; */
	font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1e3e64;
  margin: 0;
  margin-bottom: 1rem;
}

.entry-header {
  display: none;
}

.entry-content {
  padding: 0;
}

.text-center {
  text-align: center;
}

.img-fluid {
  width: 100%;
  height: auto;
}

/**
* FONT-SIZES
*/

.fs-14 {
  font-size: 0.875rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-36 {
  font-size: 2.25rem;
}

.fs-48 {
  font-size: 3rem;
}

.fw-bold,
.fs-bold {
  font-weight: 700;
}

/**
* COLORS
*/

.blue-text {
  color: #0061a1;
}

.dark-blue-text {
  color: #1e3e64;
}

.green-text {
  color: #008476;
}

.orange-text {
  color: #dd851f;
}

.purple-text {
  color: #721f79;
}

.white-text {
  color: white;
}

/**
* NAVBAR
*/

/* .navbar-separator {
  height: 20px;
  background: rgb(0, 97, 160);
  background: linear-gradient(
    42deg,
    rgba(0, 97, 160, 1) 0%,
    rgba(98, 82, 131, 1) 80%,
    rgba(142, 110, 125, 1) 100%
  );
  width: 100vw;
}

.firstline-nav {
  padding: 1rem 9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.firstline-nav a {
  margin-right: 1rem;
  color: #1e3e64;
  text-decoration: none;
}

.firstline-nav a.nav-link {
  font-family: "Montserrat", "Sans serif";
  margin-right: 1rem;
}

.firstline-nav a.nav-social {
  font-size: 1.5rem;
}

.firstline-nav a:last-child {
  margin-right: none;
}

.firstline-nav .nav-left {
  display: flex;
}

.firstline-nav .nav-left .nav-toggler {
  display: none;
}

.firstline-nav .nav-right img {
  width: 294px;
  height: 46px;
} */

/**
* FOOTER
*/

.firstline-footer {
  background: rgb(0, 97, 160);
  background: linear-gradient(
    42deg,
    rgba(0, 97, 160, 1) 0%,
    rgba(98, 82, 131, 1) 80%,
    rgba(142, 110, 125, 1) 100%
  );
  display: flex;
  justify-content: space-between;
  padding: 0px 9rem;
  font-family: "Montserrat", "Sans Serif";
}

.firstline-footer p {
  color: white;
}

.firstline-footer .footer-left {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: baseline;
}

.firstline-footer .footer-left > * {
  margin-bottom: 0.75rem;
}

.firstline-footer .footer-left img {
	width: auto;
	height: 69px;
}

.firstline-footer .footer-left a.text-link {
  font-size: 0.75rem;
}

.firstline-footer .footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: white;
  padding: 2rem 0;
  text-align: right;
}

.firstline-footer .footer-right p {
  font-size: 0.625rem;
  max-width: 58ch;
}

.firstline-footer .footer-right p:nth-child(2) {
  max-width: 100ch;
}

@media screen and (max-width: 1023px) {
  .firstline-footer {
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    border-top: 1px solid #d0d1d5;
  }

  .firstline-footer .footer-right {
    align-items: center;
    text-align: center;
    padding: 1rem;
  }
}

/**
* BUTTONS AND LINKS
*/

.button-wrapper {
  margin-top: 2rem;
}

.dark-blue-link {
  color: #1e3e64;
}

.dark-blue-link:is(:hover, :focus, :active) {
  color: #008fc6;
}

.firstline-button {
/*   font-family: "Lato", "Sans Serif"; */
	font-family: "Montserrat", sans-serif;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.button-arrow {
  border-bottom: 1px solid;
  padding-bottom: 0.25rem;
  padding-left: 0.25rem;
  line-height: 1.75rem;
}

.button-arrow i {
  margin-left: 0.75rem;
}

.button-background {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-bottom: none;
}

/* Background buttons */
.button-blue {
  background-color: #1e3e64;
  color: white;
}

.button-blue,
.button-blue:visited {
  background-color: #1e3e64;
  color: white;
}

.button-blue:is(:hover, :focus, :active) {
  background-color: #0061a1;
  color: white;
}

.button-yellow {
  background-color: #f0df68;
  color: black;
}

.button-yellow:is(:hover, :focus, :active) {
  background-color: #cec05b;
  color: black;
}

/* Text Buttons */

.button-dark-blue-text {
  color: #1e3e64;
  border-color: #1e3e64;
}

.button-dark-blue-text:is(:hover, :focus, :active) {
  color: #008fc6;
  border-color: #008fc6;
}

.button-green-text {
  color: #008476;
  border-color: #008476;
}

.button-green-text:is(:hover, :focus, :active) {
  color: #1e3e64;
  border-color: #1e3e64;
}

.button-orange-text {
  color: #dd851f;
  border-color: #dd851f;
}

.button-orange-text:is(:hover, :focus, :active) {
  color: #1e3e64;
  border-color: #1e3e64;
}

.button-purple-text {
  color: #721f79;
  border-color: #721f79;
}

.button-purple-text:is(:hover, :focus, :active) {
  color: #1e3e64;
  border-color: #1e3e64;
}

/**
* ROWS AND COLUMNS
*/

.navbar-separator {
  background: rgb(0, 97, 160);
  background: linear-gradient(
    42deg,
    rgba(0, 97, 160, 1) 0%,
    rgba(98, 82, 131, 1) 80%,
    rgba(142, 110, 125, 1) 100%
  );
  height: 20px;
  width: 100vw;
}

.vc_row {
  margin: unset;
}

.centered-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.centered-row .vc_row,
.right-row .vc_row,
.left-row .vc_row {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .centered-row .vc_row,
  .right-row .vc_row,
  .left-row .vc_row {
    display: block;
  }
}

.right-row {
  width: 90vw;
  display: flex;
  align-self: flex-end;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.left-row {
  width: 90vw;
  display: flex;
  align-self: flex-start;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.left-row,
.right-row {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

/* @media screen and (min-width: 1920px) {
  .right-row,
  .left-row {
    --right-margin-full: calc(100vw - 1536px);
    --right-margin: calc(var(--right-margin-full) / 2);
    width: calc(100vw - var(--right-margin));
  }
}

.centered-column {
  width: 80vw;
  max-width: 1536px;
}
 */
@media screen and (min-width: 1377px) {
  .right-row,
  .left-row {
    --right-margin-full: calc(100vw - 1320px);
    --right-margin: calc(var(--right-margin-full) / 2);
    width: calc(100vw - var(--right-margin));
  }
}

.centered-column {
  width: 80vw;
  max-width: 1320px;
}

@media screen and (max-width: 592px) {
  .centered-column {
    width: 100vw;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.entry-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/**
* BREADCRUMBS
*/

.breadcrumbs-container p,
.breadcrumbs-container a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  text-decoration: none;
  font-weight: 400;
}

.breadcrumbs-container a:is(:hover, :active, :focus) {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  text-decoration: underline;
  color: #1e3e64;
}

/**
* Carousel
*/

.partners-carousel-container {
  max-width: 80vw;
}

.partners-carousel-item {
  width: 260px;
  box-sizing: border-box;
  background-color: #721f79;
  padding: 2rem;
  margin: 1rem 1rem;
}

/* .partners-carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
} */

.partners-carousel-item.slick-slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.partners-carousel-item p:last-child {
  align-self: flex-end;
}

.partner-logo {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.partner-name {
  font-family: "Montserrat", sans serif;
  font-size: 1rem;
}

.partner-link {
  color: #f0df68;
  align-self: flex-end;
}

.partner-description p {
  color: white;
  overflow: hidden;
  font-size: 0.875rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.partner-link-container {
  flex: 1;
  display: flex;
  margin-bottom: 0;
}

.partner-link i {
  margin-left: 1rem;
}

.partner-link:hover {
  color: #cec05b;
}

.carousel-button {
  padding: 0px;
  line-height: unset;
  background-color: #f0df68;
  color: #707070;
  border: none;
  box-shadow: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
}

.carousel-button:is(:hover, :focus, :active) {
  background-color: #707070;
  color: #f0df68;
  border: none;
}

.carousel-button.left {
  position: absolute;
  left: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-button.right {
  position: absolute;
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.slick-dots li.slick-active button:before,
.slick-dots li button:before {
  color: #721f79;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/* .slick-dots li.slick-active button:before, .slick-dots li button:before {
    color: #721F79;
    content: "|||";
	opacity: 1;
}

.slick-dots li.slick-active button:before {
	font-size: 35px
}

.slick-dots li button:before {
    font-size: 22px;
} */

@media screen and (max-width: 670px) {
  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .carousel-button.left {
    left: -34px;
  }

  .carousel-button.right {
    position: absolute;
    right: -34px;
  }
}

/**
* Skip Links
**/

.skiplink-wrapper {
  width: 100%;
}

.skip-link {
  margin: 0px;
  font-weight: 600;
  padding: 5px 10px;
  color: white;
  position: absolute;
  top: -1000px;
  left: -1000px;
  height: 1px;
  width: 1px;
  background-color: #1e3e64;
}

.skip-link:focus {
  position: static !important;
  top: 0px !important;
  left: 0 !important;
  height: 100% !important;
  width: 100% !important;
  display: block;
}

/**
* 404
**/

.not-found__container {
  margin-left: auto;
  margin-right: auto;
  width: 80vw;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found__heading {
  margin-bottom: 2rem;
}

body.not-found__body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.not-found__body .site-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/**
* Partner spotlights
*/

.partner-spotlight-intro a,
.partner-spotlight-body a {
  color: #1e3e64;
}

.partner-spotlight-intro a:is(:hover, :focus, :active),
.partner-spotlight-body a:is(:hover, :focus, :active) {
  color: #008fc6;
}

.partner-spotlight-intro p {
  font-size: 1.125rem;
}

.d-none {
  display: none;
}

.partner-spotlight-img__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.partner-spotlight-img__wrapper .partner-spotlight-img__photo {
  max-width: 100%;
}

.partner-spotlight-img__wrapper .partner-spotlight-img__photo img {
  max-width: 100%;
  height: auto;
}

.partner-spotlight-img__wrapper .partner-spotlight-img__logo {
  width: 60%;
  max-width: 588px;
  margin-top: -40px;
}

/**
* PDF Links
*/
.pdfLink,
.pdfLink:visited {
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-decoration: underline;
}

.pdfLink.blue {
  color: #1e3e64;
}

.pdfLink:hover {
  color: white;
  opacity: 0.8;
}
.pdfLink.blue:hover {
  color: #008fc6;
  opacity: 1;
}

.pdfLink .pdfLinkIcon {
  width: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
