/* Colors */
:root {
  --main-dark: #0A2234;
  --bg-grey: #F6F6F6;
  --main-paragraph: #0A2234A3;
  --main-blue: #0D4F78;
}

.wysiwyg-text-align-center > img {
  display: block; 
  margin: auto; 
}



  .category-home-card-title {
    color: var(--main-dark, #0B1E2E) !important;
    text-align: center !important;
    font-family: 'Source Sans 3';
    font-size: 34px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 100%;
    letter-spacing: 0.34px;
  }
  
  .home-promoted-article-title {
  		color: var(--main-dark, #0B1E2E);

      /* Desktop/H2 */
      font-family: 'Source Sans 3';
      font-size: 52px;
      font-style: normal;
      font-weight: 700;
      line-height: 100%; /* 52px */
      letter-spacing: 1.04px;
  }

html h1 {
  color: var(--main-dark, #0B1E2E);

  /* Desktop/H1 */
  font-family: 'Source Sans 3' !important;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 61.6px */
  letter-spacing: 0.56px;
  margin: 30px 0 !important; 
}

@media screen and (max-width: 600px) {
  html h1 {
    color: var(--main-dark, #0B1E2E);

    /* Mobile/H1 */
    font-family: 'Source Sans 3';
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 62.4px */
    letter-spacing: 0.52px;
  }
}

html h2 {
  color: var(--main-dark, #0B1E2E);

  /* Desktop/H2 */
  font-family: 'Source Sans 3' !important;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 52px */
  letter-spacing: 1.04px;
  margin: 20px 0 !important; 
}

@media screen and (max-width: 600px) {
  html h2 {
    color: var(--main-dark, #0B1E2E);

/* Mobile/H2 */
font-family: 'Source Sans 3';
font-size: 38px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 45.6px */
letter-spacing: 0.38px;
  }
}

html h3:not(.category-card-title):not(.search-results-title) {
  color: var(--main-dark, #0B1E2E);

  /* Desktop/H3 */
  font-family: 'Source Sans 3' !important;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 44px */
  letter-spacing: 0.44px;
  text-align: left; 
  margin: 20px 0 !important; 
}

html h4 {
  font-size: 16px;
}

html h6 {
  color: var(--main-dark, #0B1E2E);

    /* Desktop/H6 */
    font-family: 'Source Sans 3';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 20px */
    letter-spacing: 0.2px;
}

.navigation-item.active {
  border-radius: 2px 2px 0px 0px;
	color: var(--main-blue);
}

.child-menu-items {
  border-radius: 0px 0px 8px 8px;
  background: #FFF;
  box-shadow: 0px 4px 14px 0px rgba(23, 22, 28, 0.19);
}

.navigation-item:not(.active):hover {
  border-radius: 2px 2px 0px 0px;
	background: rgba(255, 255, 255, 0.15);
}

b, strong {
    font-weight: bolder !important;
}

blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
  margin: 5px 0 !important;
}

  .section-item-bullet {
    color: var(--main-blue, #006FD3);
    font-family: 'Source Sans 3';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    letter-spacing: 0.18px;
  	
  }
  
  .margin-left-m-15 {
  	margin-left: -15px; 
  	margin-top: 5px; 
  }
  
  .sub-menu-items {
  	color: var(--main-paragraph, #263B4E);
    font-family: 'Source Sans 3';
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 119%; /* 17.85px */
    letter-spacing: 0.15px;
  	text-align: left; 
  }
  
  
  .sub-menu-items:hover {
  	color: var(--main-blue, #006FD3);
    font-family: 'Source Sans 3';
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%; /* 17.85px */
    letter-spacing: 0.15px;
  text-align: left; 
  }
  
  .navigate-items-top {
    margin-top: -37px;
    z-index: 300;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
  }

/* Backgrounds */
.navigation-item::not(.active):hover  {
  border-radius: 2px 2px 0px 0px;
	background: rgba(255, 255, 255, 0.15);
}


.bg-blue {
  background: var(--main-dark);
}

.hover:border-blue-500 {
  border-color: var(--main-blue, #006FD3) !important;
}

.bg-grey {
  background: var(--bg-grey, #ebf5f8);
}

/* Layout */
.article-body {
  display: flow-root;
}
.article-body a {
  color: var(--main-blue);
  text-decoration: underline;
}
.article-body a:visited {
  color: $visited_link_color;
}
.article-body a:hover, .article-body a:active, .article-body a:focus {
  color: $hover_link_color;
}
.article-body img {
  height: auto;
  max-width: 100%;
}
.article-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figure.image {
  display: table;
  margin: 0 auto;
}
.article-body figure.image > img {
  display: block;
  width: 100%;
}
.article-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: darken($background_color, 5%);
}
.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}
[dir=rtl] .article-body ul,
[dir=rtl] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.article-body ul > ul,
.article-body ol > ol,
.article-body ol > ul,
.article-body ul > ol,
.article-body li > ul,
.article-body li > ol {
  margin: 0;
}
.article-body ul {
  list-style-type: disc;
}
.article-body :not(pre) > code {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.article-body pre {
  background: darken($background_color, 3%);
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.article-body blockquote {
  border-left: 1px solid #ddd;
  color: lighten($text_color, 20%);
  font-style: italic;
  padding: 0 15px;
}
.article-body > p:last-child {
  margin-bottom: 0;
}

.category-cards {
  margin-top: -150px;
}

@media screen and (max-width: 600px) {
  .category-cards {
  	margin-top: -75px;
	}
}

.category-cards a {
  min-height: auto !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .category-cards a {
    min-height: 340px;
    width: 100%;
  }
}

.section-menu-items {
  position: absolute;
  width: 100%;
  margin-top: -38px;
}

/* Form and instant search */

form[role="search"] {
  display: flex; 
  border-radius: 50px;
}

form[role="search"] input[type="submit"], #new_request input[type="submit"] {
  border-radius: 50px;
  color: #FFF;
  text-align: center;
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 14.4px */
  letter-spacing: 0.16px;
  background: var(--main-blue);
  padding: 14px 26px;
  cursor: pointer;
  transition: all 0.3s ease;
}
form[role="search"] input[type="submit"]:hover, #new_request input[type="submit"]:hover {
    background: #0A2234;
}

#query {
  width: 100%; 
  padding: 0 10px 0 30px;
  color: var(--main-paragraph, #263B4E);
  text-align: left;
  border-radius: 50px;

  /* Paragraph/Small */
  font-family: 'Source Sans 3';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.16px;
}

.footer-small {
  /* color: var(--light-theme-white, #FFF); */
  color: #FFFFFF8F;

  /* Paragraph/Small */
  font-family: 'Source Sans 3';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.16px;
}

/* Typography */

.search-results-title {
  color: var(--main-blue);
  font-family: Source Sans 3;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
}

.section-subtitle {
  color: var(--main-dark, #0B1E2E);

  /* Desktop/H4 */
  font-family: 'Source Sans 3';
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 34px */
  letter-spacing: 0.34px;
}

.category-title {
  color: #FFF;
  /* Desktop/H1 */
  font-family: 'Source Sans 3';
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 61.6px */
  letter-spacing: 0.56px;
}

.category-card-title {
  color: var(--main-blue) !important;
	text-align: left;
  /* Desktop/H5 */
  font-family: Source Sans 3;
  font-size: 24px;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.24px;
}

.navigation-item  {
    color: var(--main-blue);
    text-align: center;
    font-family: Source Sans 3;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
}

.category-card-description {
  color: var(--main-paragraph, #263B4E);

  /* Paragraph/Medium */
  font-family: Source Sans 3;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.18px;
}

.category-description {
  color: #EBF5F8 !important;

  /* Paragraph/Large */
  font-family: Source Sans 3;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}

.nano-hero-header {
    color: #FFF;
    text-align: center;

    /* Desktop/H1 */
    font-family: 'Source Sans 3';
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 61.6px */
    letter-spacing: 0.56px;
}

.promoted-article-title {
  color: var(--main-blue, #006FD3);

  /* Desktop/H5 */
  font-family: 'Source Sans 3';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.24px;
}

.related-articles-title {
  	color: var(--main-paragraph, #263B4E);

    /* Paragraph/Large */
    font-family: 'Source Sans 3';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 30px */
}

.article-aside-title {
  color: var(--main-paragraph, #263B4E);

  /* Paragraph/Large */
  font-family: 'Source Sans 3';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
}

.category-card-description {
  color: var(--main-paragraph, #263B4E);
  text-align: center;

  /* Paragraph/Medium */
  font-family: 'Source Sans 3';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.18px;
}


.article-body {
  color: var(--main-paragraph, #263B4E);

  /* Paragraph/Medium */
  font-family: 'Source Sans 3';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.18px;
}

.category-description,
.article-date-updated,
.breadcrumbs li,
.article-body,
.article-body * {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.category-card-title,
.category-card-description,
h3,
html h1 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.category-description,
.article-date-updated,
.category-card-description {
  color: var(--main-paragraph);
}

.article-date-updated {
  color: var(--main-paragraph);
  font-size: 16px;
  letter-spacing: 0.16px;
}

.breadcrumbs {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  flex: 0 0 auto;
}

.breadcrumbs li, #new_request a, .see-all-articles {
  color: var(--main-blue);
  font-size: 18px;
  letter-spacing: 0.18px;
}

.breadcrumbs li:not(:last-child)::after {
  content: '>';
  margin: 0 8px;
}

.breadcrumbs li:last-child {
	color: var(--main-paragraph, #263B4E);
}

@media screen and (max-width: 600px) {
  .breadcrumbs li {
    color: var(--main-blue);
    font-size: 13px;
    letter-spacing: 0.18px;
	}
}

.article-title,
h3 {
  color: var(--main-dark);
  text-align: center;
}

html .article-title {
 color: var(--main-dark, #0B1E2E);

  text-align: left !important; 
/* Desktop/H3 */
font-family: 'Source Sans 3';
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 44px */
letter-spacing: 0.44px;
  
}

/* Custom Classes */
.min-h-500 {
  min-height: 420px;
}

.min-h-300 {
  min-height: 250px; 
}

.min-h-600 {
  min-height: 450px;
}

@media screen and (max-width: 600px) {
  .min-h-300 {
    min-height: 700px;
  }
}

/* Body Styles */
body {
  font-family: 'Source Sans 3', sans-serif;
}

/* Special Styles */
.nano-blue-bg {
  width: 500px;
  height: 500px;
  margin: auto;
  border-radius: 50%;
  opacity: 0.6;
  background: var(--main-blue);
  filter: blur(100px);
  left: 50%; 
  transform: translate(-50%); 
}

.nano-primary-button {
  border-radius: 50px;
  background: var(--main-blue);
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14px;
  padding: 8px 18px;
  border: 1px solid var(--main-blue);
  transition: all 0.3s ease;
}

.nano-primary-button:hover {
	background: #0A2234;
  border: 1px solid #0A2234;
}

.nano-secondary-button {
  border-radius: 50px;
	border: 1px solid #0A2234;
  color: #0A2234;
  padding: 8px 18px;
  font-family: 'Source Sans 3';
  background: transparent; 
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14px;
  transition: all 0.3s ease;
}

.nano-secondary-button:hover {
  border: 1px solid var(--main-blue);
	background: var(--main-blue);
  color: #fff;
}

.pagination-list > li {
  border-radius: 4px;
	border: 1px solid #000;
  color: #000;
  padding: 8px 18px;
  font-family: 'Source Sans 3'; 
  background: transparent; 
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14px;
}

.header-container {
  padding: 15px 30px;
  border-radius: 0 0 24px 24px;
  background-color: #fff;
  color: #0A2234;
}

.logo {
  height: 18px;
}

.user-menu a {
  margin-bottom: 10px;
}
.user-menu a:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 767px) {
  .user-menu {
    padding: 10px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 10px;
  }
  .header-container {
    padding: 15px 20px;
  }
  .logo {
    height: 16px;
  }
  .user-name-icon {
    justify-content: center;
    margin-bottom: 12px;
  }
  .user-menu {
    box-shadow: none;
    background-color: transparent;
  }
}

.footer {
  padding: 0 20px 20px;
}

.footer-container {
  position: relative;
  overflow: hidden;
  background: #0D4F78;
  padding: 80px 80px 10px;
  border-radius: 50px;
  
}

html .footer-container.container {
  max-width: 1440px!important;
}

.footer-logo {
  height: 28px;
}

.footer-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: auto;
  object-fit: cover;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,.21);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-content-left {
  flex: 1;
  max-width: 500px;
}

.footer-content-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.footer-menu h6 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-menu .footer-links {
  margin-top: 20px;
}

.footer-menu .footer-links li a {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 240px;
}

.footer-bottom p, 
.footer-bottom a {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #FFFFFF !important;
}

@media screen and (min-width: 1200px) {
  .category-cards a.rounded {
    width: 28%;
  }
}

@media screen and (max-width: 1199px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  .footer-bottom {
    margin-top: 200px;
  }
  .footer-content-right {
    justify-content: flex-start;
  }
  .category-cards a.rounded {
    width: calc(50% - 16px);
  }
  #horizontal-menu > div {
    overflow: scroll;
  }
}

@media screen and (max-width: 1023px) {
  .footer {
    padding: 0;
  }
  .footer-container {
    border-radius: 0;
    padding: 40px 40px 10px;
  }
  .footer-bottom {
    margin-top: 100px;
  }
  
  .footer-content-left,
  .footer-content-right {
    max-width: 100%;
  }
  
}

@media screen and (max-width: 767px) {
  .footer-content-right {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    margin-bottom: 90px;
    margin-top: 40px;
  }
  .footer-bottom .footer-links {
    margin-bottom: 10px;
  }
  .footer-bottom .footer-links > li > a {
    padding: 0;
  }
  .main-banner {
    min-height: auto;
  }
  .category-cards a.rounded {
    width: 100%;
  }
  html .article-title {
    font-size: 34px !important;
  }
  .article-body iframe {
    width: 100%;
  }
  .article-page-left > div,
  .article-page-left > article {
    padding-left: 0;
    padding-right: 0;
  }
}

.category-cards a.rounded,
.section-cards a.block.rounded {
  border-radius: 32px;
  border-bottom: 3px solid #fff;
  transition: all 0.3s ease;
}

.category-cards a.rounded:hover,
.section-cards a.block.rounded:hover {
  border-color: var(--main-blue);
}

.attachment-icon {
  flex: 0 0 auto;
}