/* Theme Styling for Global Elements only (header, footer, basic components) */
/* Variables Start */
:root {
  --primary-color: #3980A4;
  --primary-color-dark-variant: #122932;
  --secondary-color-orange: #FF4000;
  --secondary-color-yellow: #FFE874;
  --font-color: #202020;
  --link-color: #2F27AA;
  --neutral-color: #eeeeee;
  --white-color: #ffffff;
  --dark-grey-color: #717171;
  --border-color: #D6D6D6;
  --image-shadow: rgba(0, 0, 30px, -20px, #000);
}

/* Variables End */
/* Typography Start */
.custom-logo {
  filter: grayscale(1);
}

*, *::before, *::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body, main, section, div {
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.28;
  color: var(--font-color);
  position: relative;
}

@media (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 28px;
  margin: 0 0 10px;
}

h2 {
  font-size: 20px;
  margin-bottom: 16px;
}
h2:not(:first-child) {
  margin-top: 32px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

p {
  font-size: 1rem;
  margin: 8px 0 16px;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 300;
  transition: 0.15s;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 30px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
}
/* Typography End */
/* Call-to-Action Start -- Buttons */
/* Call-to-Action End */
/* Header Start */
@media (max-width: 767px) {
  #masthead {
    position: static;
  }
  #site-navigation .menu-page-nav-container {
    position: absolute;
    top: 46px;
    right: 0;
    width: 245px;
    min-height: 365px;
    max-height: 100%;
    padding: 35px;
    background-color: var(--white-color);
    /* box-shadow: 0px 8px 30px -20px #000; */
    box-shadow: -35px 40px 30px -50px #000;
    border-radius: 0px 0px 0px 20px;
    transform: translateX(100%);
    transition: 0.12s ease-in-out;
    z-index: 2;
  }
  #site-navigation svg rect {
    transition: 0.12s;
    transform-origin: center;
  }
  #site-navigation.nav__open .menu-page-nav-container {
    transform: translateX(0%);
  }
  #site-navigation.nav__open svg rect {
    y: 11.5;
  }
  #site-navigation.nav__open svg rect:first-child {
    transform: rotate(45deg);
  }
  #site-navigation.nav__open svg rect:last-child {
    transform: rotate(-45deg);
  }
}
#masthead,
#header__secondary {
  border-bottom: 1px solid var(--border-color);
}

#masthead .container.med,
#masthead .container.tiny {
  padding-top: 0;
  padding-bottom: 0;
}

#header__primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 0;
  min-height: 45px;
}
#header__primary img.custom-logo {
  height: 28px;
  width: auto;
}

#header__secondary .header__secondary-content {
  display: flex;
  justify-content: space-between;
}
#header__secondary p, #header__secondary span {
  text-align: center;
  padding: 10px 5px;
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}
#header__secondary span:first-child {
  text-align: left;
}
#header__secondary span:last-child {
  text-align: right;
}
#header__secondary .header__disclosure-toggle {
  text-decoration: underline;
}
#header__secondary #header__disclosure {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50px;
  right: 10px;
  max-width: 500px;
  margin: 0 0 0 10px;
  padding: 20px;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  box-shadow: 0px 0px 30px -30px #000;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 2;
}
#header__secondary #header__disclosure p {
  text-align: left;
}
#header__secondary #header__disclosure:before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  border-bottom: 7px solid var(--border-color);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: translateY(-100%);
}
@media (min-width: 768px) {
  #header__secondary #header__disclosure:before {
    right: 65px;
  }
}
#header__secondary #header__disclosure:after {
  content: "";
  position: absolute;
  top: 0.5px;
  right: 31px;
  border-bottom: 6px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transform: translateY(-100%);
}
@media (min-width: 768px) {
  #header__secondary #header__disclosure:after {
    right: 66px;
  }
}

#site-navigation ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  list-style: none;
  margin: 0;
  padding-left: 0;
}
#site-navigation ul li a {
  display: inline-block;
  text-decoration: none;
  padding: 0 10px 18px;
  font-size: 14px;
  color: var(--font-color);
}
#site-navigation ul li.current_page_item a {
  color: var(--primary-color);
}
#site-navigation ul > li a {
  font-size: 20px;
  font-weight: 300;
}

@media (min-width: 768px) {
  #header__primary {
    min-height: 55px;
  }
  #nav__toggle {
    display: none;
  }
  #site-navigation ul {
    flex-direction: row;
  }
  #site-navigation ul li a {
    display: inline;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 400;
  }
}
/* Header End */
/* General Body Start */
#page {
  overflow: hidden;
}

@media (max-width: 767px) {
  .logged-in #page {
    position: relative;
    top: 46px;
  }
}

.container {
  width: 100%;
  margin: auto;
  padding: 40px 20px;
  max-width: 1200px;
}
.container.tiny {
  max-width: 850px;
}
.container.sm {
  max-width: 1000px;
}
.container.med {
  max-width: 1200px;
}
.container.lg {
  max-width: 1400px;
}
@media (min-width: 768px) {
  .container {
    padding: 60px 20px;
  }
  .container.tiny {
    padding: 50px 20px;
  }
}

.center {
  text-align: center;
}

.cursor {
  cursor: pointer;
}

.bg-gray {
  background-color: var(--neutral-color);
}

.image {
  box-shadow: 0px 4px 30px -22px #000;
  border-radius: 5px;
}

.border-bottom, .border-top {
  position: relative;
}
.border-bottom:after, .border-top:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--border-color);
}
.border-bottom.contain, .border-top.contain {
  margin-bottom: 0;
}
.border-bottom.contain:after, .border-top.contain:after {
  left: 20px;
  right: 20px;
}
.border-top:after {
  top: 0;
}
.border-bottom {
  margin-bottom: 20px;
}
.border-bottom:after {
  bottom: 0;
}

.content.half {
  max-width: 650px;
}

.meta__last-updated {
  font-size: 14px;
}
.meta__last-updated span {
  color: var(--primary-color-dark-variant);
  font-weight: 500;
}

.cta__buttons.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cta__button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  margin: 8px 0;
  min-height: 40px;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.15s ease-in-out;
}
.cta__button.primary, .cta__button.wp-element-button,
.wp-block-button__link.primary,
.wp-block-button__link.wp-element-button {
  background-color: var(--primary-color-dark-variant);
  color: var(--white-color);
  border-radius: 0px;
  font-weight: 500;
  text-transform: uppercase;
}
.cta__button.primary:hover, .cta__button.wp-element-button:hover,
.wp-block-button__link.primary:hover,
.wp-block-button__link.wp-element-button:hover {
  background-color: var(--primary-color);
}
.cta__button.light,
.wp-block-button__link.light {
  background-color: transparent;
  color: var(--primary-color-dark-variant);
  border: 1px solid var(--primary-color-dark-variant);
}
.cta__button.light:hover,
.wp-block-button__link.light:hover {
  color: var(--white-color);
  background-color: var(--font-color);
  border: 1px solid var(--font-color);
}
.cta__button.dark,
.wp-block-button__link.dark {
  background-color: var(--font-color);
  color: var(--white-color);
}
.cta__button.dark:hover,
.wp-block-button__link.dark:hover {
  background-color: var(--primary-color-dark-variant);
}
.cta__button.sm,
.wp-block-button__link.sm {
  min-height: 30px;
}
.cta__button:hover,
.wp-block-button__link:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .el__link-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
}
#breadcrumbs {
  font-size: 12px;
  margin-bottom: 24px;
}
#breadcrumbs a {
  color: var(--font-color);
  font-weight: 200;
}
#breadcrumbs .last {
  font-weight: 600;
  color: var(--primary-color-dark-variant);
}

.wp-block-image {
  margin: 24px 0;
}

/* General Body End */
/* General Body - Hero Start */
#hero.theme-gradient {
  background: linear-gradient(295deg, var(--primary-color-dark-variant) 15%, var(--primary-color) 70%, #fff 125%);
}
#hero .container {
  z-index: 1;
}
#hero .abstract__hero {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0;
  object-fit: none;
  box-shadow: none;
  border-radius: 0px;
  margin: 0;
  z-index: 0;
}
@media (min-width: 768px) {
  #hero .abstract__hero {
    width: 100%;
    object-fit: cover;
  }
}

/* General Body - Hero End */
/* Footer Start */
#colophon {
  background-color: var(--primary-color-dark-variant);
}
#colophon div {
  color: var(--white-color);
}
#colophon .footer__left {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}
#colophon .footer__left p {
  margin-bottom: 8px;
}
#colophon .footer__left .company__logo {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  #colophon .footer__left {
    border-bottom: none;
  }
}
#colophon .footer__right p {
  margin-bottom: 16px;
}
#colophon p, #colophon a {
  font-size: 14px;
  font-weight: 200;
}
#colophon a {
  font-weight: 500;
  color: var(--white-color);
}
#colophon a:hover {
  text-decoration: none;
  color: var(--border-color);
}
#colophon .footer__right > div {
  padding-bottom: 10px;
}
#colophon .footer__right #company__nav-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  #colophon .footer__right #company__nav-legal {
    flex-wrap: nowrap;
    justify-content: start;
  }
}
#colophon .footer__right #company__nav-legal a {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
}
@media (min-width: 768px) {
  #colophon .footer__right #company__nav-legal a {
    padding: 0 16px 0 0;
  }
}
#colophon .footer__right .company__ad-disclosure h5 {
  margin-bottom: 8px;
}
#colophon .company__ad-disclosure p {
  font-size: 12px;
}

@media (min-width: 980px) {
  #colophon > .container {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 60px;
  }
}
/* Footer End */

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