@charset "UTF-8";
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSans3-Regular.woff2") format("woff2"), url("../fonts/SourceSans3-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSans3-SemiBold.woff2") format("woff2"), url("../fonts/SourceSans3-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/SourceSans3-Bold.woff2") format("woff2"), url("../fonts/SourceSans3-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Podkova";
  src: url("../fonts/Podkova-Bold.woff2") format("woff2"), url("../fonts/Podkova-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Podkova";
  src: url("../fonts/Podkova-SemiBold.woff2") format("woff2"), url("../fonts/Podkova-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Podkova";
  src: url("../fonts/Podkova-Medium.woff2") format("woff2"), url("../fonts/Podkova-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bondrians";
  src: url("../fonts/Bondrians.woff2") format("woff2"), url("../fonts/Bondrians.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.podkova {
  font-family: "Podkova", sans-serif;
}

.source-sans-pro {
  font-family: "Source Sans Pro", sans-serif;
}

.bondrians {
  font-family: "Bondrians", sans-serif;
}

:root {
  --mobile-padding: 0 20px;
  --tablet-padding: 0 40px;
  --desktop-padding: 0 50px;
  --dark-blue: #083887;
  --blue: #2E75D3;
  --light-blue: #2E75D31A;
  --black: #505154;
  --orange: #EF9600;
}

.wrapper {
  padding: var(--mobile-padding);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wrapper {
    padding: var(--tablet-padding);
  }
}
@media (min-width: 1025px) {
  .wrapper {
    padding: var(--desktop-padding);
  }
}
@media (min-width: 1600px) {
  .wrapper {
    padding: 0;
  }
}

.mobile, .mobile-only {
  display: none;
}

.desktop, .desktop-only {
  display: none;
}

@media (max-width: 1023px) {
  .mobile, .mobile-only {
    display: block;
  }
  .desktop, .desktop-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile, .mobile-only {
    display: none;
  }
  .desktop, .desktop-only {
    display: block;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
.dark-blue {
  color: var(--dark-blue);
}

.banner__container {
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 100%);
  padding: 2px;
  border-radius: 15px;
  position: relative;
  margin: 0 0 29px;
  max-width: 1280px;
}
.banner__container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 49.72%, #083887 99.44%);
  border-radius: 13px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.banner__container .banner__wrapper {
  border-radius: 14px;
  background: white;
  padding: 50px 10px;
}

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: "Source Sans Pro", sans-serif;
  max-height: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 1023px) {
  html {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 68px;
  }
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overflow-x: hidden;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 65%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* Box sizing
--------------------------------------------- */
/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
  color: #505154;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin: 0;
  font-size: 17px;
  line-height: 22px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
  background: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul,
ol {
  margin: 0 0 1.5em 3em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

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

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a {
  text-decoration: none;
  color: inherit;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: flex;
  }
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
  display: block;
}

.post,
.page {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
  margin: 0 0 1.5em;
}

.widget select {
  max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

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

/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
  /*rtl:ignore*/
  float: left;
  /*rtl:ignore*/
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  /*rtl:ignore*/
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

section {
  overflow: hidden;
}

ul {
  font-size: 17px;
  line-height: 22px;
  margin: 0;
  padding-left: 12px;
  color: #505154;
}
ul li::marker {
  color: #FF6721;
}
ul li ul {
  list-style-type: "– ";
  margin-left: 0;
}
ul li ul li {
  padding-left: 4px;
}
ul li ul li::marker {
  font-weight: bold;
}

.__button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.__button a {
  font-size: 20px;
  line-height: 25px;
  border-radius: 32px;
  background: #2E75D3;
  font-weight: bold;
  color: #FFFFFF;
  padding: 14px 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.__button a:hover {
  background: #083887;
  color: white;
}
.__button.outline a {
  background: #FFF;
  border: 3px solid #083887;
  color: #083887;
  font-weight: 600;
}
.__button.outline a:hover {
  background: #083887;
  color: white;
}
.__button.download a {
  width: 100%;
  max-width: 696px;
  height: 90px;
  border-radius: 53px;
  padding: 18px 58px;
  text-align: left;
  font-weight: 600;
}
.__button.download a strong {
  font-weight: 900;
}
.__button.download a img {
  margin-right: 18px;
}

.subheader {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #EF9626;
  font-size: 18px;
}
.subheader .subheader_links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.subheader .subheader_links li {
  margin-right: 23px;
  padding: 9px 0;
}
.subheader .subheader_links li.active a {
  font-weight: bold;
}
.subheader .subheader_links li a {
  text-decoration: underline;
  color: #000000;
}
@media (max-width: 1023px) {
  .subheader {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .subheader li {
    text-align: center;
  }
  .subheader a {
    font-size: 14px;
  }
}

.hang-item {
  display: flex;
  gap: 1px;
  position: relative;
}
.hang-item span:first-child {
  position: absolute;
  left: -15px;
  text-align: right;
  width: 15px;
}

.reference p {
  font-size: 14px;
  line-height: 17px;
}

.triangle {
  transform: rotate(180deg);
  display: inline-block;
}

.nowrap {
  white-space: nowrap;
}

sub {
  bottom: -0.025em;
  font-weight: 600;
}

.underline {
  text-decoration: underline;
}

.mobile {
  display: none;
}
@media (max-width: 1023px) {
  .mobile {
    display: block;
  }
}

.desktop {
  display: block;
}
@media (max-width: 1023px) {
  .desktop {
    display: none;
  }
}

@media (max-width: 1023px) {
  ul {
    font-size: 18px;
    line-height: 22px;
    padding-left: 20px;
  }
  p {
    font-size: 18px;
    line-height: 22px;
  }
  .__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .__button a {
    font-size: 18px;
    line-height: 22px;
    background: #2E75D3;
    font-weight: bold;
    color: #FFFFFF;
    padding: 14px 32px;
    height: 53px;
  }
  .reference p, .references p {
    font-size: 14px;
    line-height: 17px;
  }
}
:root {
  --mobile-padding: 0 20px;
  --tablet-padding: 0 40px;
  --desktop-padding: 0 50px;
  --dark-blue: #083887;
  --blue: #2E75D3;
  --light-blue: #2E75D31A;
  --black: #505154;
  --orange: #EF9600;
}

.wrapper {
  padding: var(--mobile-padding);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wrapper {
    padding: var(--tablet-padding);
  }
}
@media (min-width: 1025px) {
  .wrapper {
    padding: var(--desktop-padding);
  }
}
@media (min-width: 1600px) {
  .wrapper {
    padding: 0;
  }
}

.mobile, .mobile-only {
  display: none;
}

.desktop, .desktop-only {
  display: none;
}

@media (max-width: 1023px) {
  .mobile, .mobile-only {
    display: block;
  }
  .desktop, .desktop-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile, .mobile-only {
    display: none;
  }
  .desktop, .desktop-only {
    display: block;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
.dark-blue {
  color: var(--dark-blue);
}

.banner__container {
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 100%);
  padding: 2px;
  border-radius: 15px;
  position: relative;
  margin: 0 0 29px;
  max-width: 1280px;
}
.banner__container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 49.72%, #083887 99.44%);
  border-radius: 13px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.banner__container .banner__wrapper {
  border-radius: 14px;
  background: white;
  padding: 50px 10px;
}

#masthead {
  position: relative;
}
#masthead .secondary-nav {
  background: #2e75d3;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  padding: 5px 0;
}
#masthead .secondary-nav .container {
  position: relative;
  justify-content: space-between;
  padding: 0 15px;
}
#masthead .secondary-nav .container .logo {
  position: absolute;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 30px;
  background: white;
  width: 182px;
  height: 66px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 99999;
}
#masthead .secondary-nav .container .logo img {
  width: 150px;
  height: 44px;
}
#masthead .secondary-nav .container .secondary-nav__links_mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  line-height: 18px;
  width: 100%;
}
#masthead .secondary-nav .container .secondary-nav__links_mobile .secondary-nav__intended {
  font-size: 8px;
  line-height: 11px;
  max-width: 57.5%;
}
#masthead .secondary-nav .container .secondary-nav__links_mobile .nav__links-btn {
  padding: 0 11px;
  background: white;
  border-radius: 35px;
  margin-left: 25px;
}
#masthead .secondary-nav .container .secondary-nav__links_mobile .nav__links-btn.contact-btn {
  display: none;
}
#masthead .secondary-nav .container .secondary-nav__links_mobile .nav__links-btn a {
  margin-right: 0;
}
#masthead .secondary-nav .container .secondary-nav__links_desktop {
  display: none;
}
#masthead .main-navigation {
  display: flex;
  justify-content: flex-end;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: #083887;
  background: #f0f6fd;
  position: relative;
}
@media (min-width: 1025px) {
  #masthead .main-navigation {
    background: white;
  }
}
#masthead .main-navigation .wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 31px;
}
#masthead .main-navigation .menu-toggle {
  background: transparent;
  border: none;
  padding: 18px 14px 15px 14px;
  max-height: 57.5px;
}
#masthead .main-navigation .menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #083887;
  color: #083887;
  font-weight: 600;
  margin: 4px 0;
  font-size: 8px;
  line-height: 11px;
}
#masthead .main-navigation .menu-toggle span:last-of-type {
  margin: 3px 0 0;
  width: initial;
  height: initial;
  background: transparent;
}
#masthead .main-navigation .menu-menu-1-container {
  position: absolute;
  width: 100%;
  left: 0px;
  background: white;
  top: 57.5px;
  z-index: 9999;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu {
  padding: 25px 0 10px;
  border-top: 1px solid #083887;
  background: #f0f6fd;
}
@media (min-width: 1025px) {
  #masthead .main-navigation .menu-menu-1-container .nav-menu {
    background: white;
  }
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-home {
  display: none;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item a {
  font-size: 20px;
  padding: 12px 18px;
  color: #2e75d3;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children {
  position: relative;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children > a {
  pointer-events: none;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children a {
  display: flex;
  align-items: center;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children a:after {
  content: "";
  position: absolute;
  right: 18px;
  background: url(../images/global/caret.webp) no-repeat;
  background-size: contain;
  width: 19px;
  height: 11px;
  transition: transform 0.3s ease-in-out;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children.focus .sub-menu {
  max-height: 500px;
  transition: max-height 0.5s ease-in-out;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children.focus a:after {
  transform: rotate(180deg);
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu {
  position: relative;
  box-shadow: none;
  float: initial;
  top: initial;
  left: initial;
  max-height: 0;
  overflow: hidden;
  transition: none;
  background: #ffffff;
  color: hsla(217, 89%, 28%, 0.6);
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item.current_page_item {
  background: #ffffff;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item.current_page_item a {
  color: #083887;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
  width: 100%;
  padding-left: 38px;
  display: block;
  color: #083887;
}
#masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item a:after {
  content: none;
}
#masthead .main-navigation .sub-menu__mobile {
  display: none;
  flex-direction: column;
}
#masthead .main-navigation .sub-menu__mobile .nav__links-link {
  padding: 18px 14px;
  font-size: 16px;
  line-height: 22px;
  background: #f0f6fd;
  color: #083887;
  border-top: 1px solid #083887;
}
#masthead .main-navigation .sub-menu__mobile .nav__links-link.resource {
  font-size: 20px;
  border-top: none;
}
#masthead .main-navigation .sub-menu__mobile .healtchare-site,
#masthead .main-navigation .sub-menu__mobile .register-for-updates {
  border-top: none;
  font-size: 20px;
  padding: 12px 18px;
  color: #2e75d3;
}
#masthead .main-navigation .sub-menu__mobile .nav__phone {
  display: none;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  text-decoration: underline;
  background: #083887;
  color: white;
  text-decoration: none;
}
#masthead .main-navigation .sub-menu__mobile .nav__phone a {
  padding: 18px 14px;
}
#masthead .main-navigation .sub-menu__mobile.visible {
  display: flex;
}
#masthead .main-navigation .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28.5px;
  width: 100%;
}
#masthead .main-navigation .container .nav__links-mobile {
  display: flex;
  gap: 32.5px;
}
#masthead .main-navigation .container .nav__links-mobile .nav__links-link {
  color: #2e75d3;
  font-size: 14px;
  line-height: 18px;
  text-decoration: underline;
  font-weight: 600;
}
@media (min-width: 1024px) {
  #masthead {
    position: relative;
  }
  #masthead .secondary-nav {
    background: #2e75d3;
    color: #fff;
    font-size: 13px;
    line-height: 18px;
    font-weight: 600;
    padding: 8px 0;
    margin-top: 0;
  }
  #masthead .secondary-nav .container {
    justify-content: flex-end;
    position: relative;
    padding: 0 20px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  #masthead .secondary-nav .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  #masthead .secondary-nav .container .logo {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: -8px;
    width: 304px;
    height: 123px;
  }
  #masthead .secondary-nav .container .logo img {
    width: 265px;
    height: 79px;
  }
  #masthead .secondary-nav .container .secondary-nav__intended {
    max-width: 272px;
    font-size: 12px;
    line-height: 13px;
    margin-right: 71px;
  }
  #masthead .secondary-nav .container .secondary-nav__links_mobile {
    display: none;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop div {
    margin-right: 29px;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-link {
    margin: 0 12px;
    position: relative;
    font-weight: normal;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-link:hover {
    text-decoration: underline;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-link:after {
    content: "|";
    position: absolute;
    right: -12.5px;
    pointer-events: none;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-link:last-child:after {
    content: none;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .secondary-nav__phone {
    margin-right: 7px;
    text-decoration: underline;
    font-weight: 600;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-btn {
    padding: 0 12px;
    border: 2px solid #fff;
    border-radius: 35px;
    margin-right: 29px;
  }
  #masthead .main-navigation {
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    line-height: 28px;
    width: 100%;
  }
  #masthead .main-navigation .sub-menu__mobile {
    display: none !important;
  }
  #masthead .main-navigation .menu-menu-1-container {
    position: relative;
    width: 100%;
    left: 0px;
    top: initial;
    background: #f0f6fd;
    display: flex;
    padding-left: 306px;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) and (min-width: 1025px) {
  #masthead .main-navigation .menu-menu-1-container {
    background: white;
  }
}
@media (min-width: 1024px) {
  #masthead .main-navigation .menu-menu-1-container .nav-menu {
    padding: 0;
    border-top: none;
    gap: 8px;
    justify-content: space-between;
    max-width: 972px;
    width: 100%;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item {
    margin: 0;
    padding: 18px 0;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item a {
    padding: 0;
    font-size: 20px;
    color: #083887;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item:last-of-type {
    margin-right: 0;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item:hover > ul, #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.focus > ul {
    left: 50% !important;
    transform: translateX(-50%);
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item:hover:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
    background: #ef9626;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item:hover .sub-menu .menu-item:hover:after {
    content: none;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current_page_item, #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current_page_ancestor, #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current-menu-ancestor {
    background: transparent;
    color: #083887;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current_page_item:after, #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current_page_ancestor:after, #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current-menu-ancestor:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 8px;
    background: #ef9626;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.current_page_ancestor .current_page_item:after {
    height: 0;
    background: transparent;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children {
    position: relative;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children a {
    display: initial;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children a:after {
    content: none;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children.last-of-type .sub-menu {
    max-width: 100%;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu {
    max-height: initial;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
    width: 248px;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item {
    width: 100%;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item.current_page_item:after, #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item.current_page_ancestor:after {
    content: none;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item.current_page_item {
    background: #ffffff;
    color: rgb(8, 56, 135);
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item a {
    width: 100%;
    padding-left: 0;
    display: block;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children .sub-menu .menu-item a:after {
    content: none;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children#menu-item-1396 .sub-menu {
    width: 198px;
    text-align: center;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children#menu-item-680 .sub-menu {
    width: 238px;
    text-align: center;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item .sub-menu {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item .sub-menu .menu-item {
    padding: 10px 0;
    opacity: 0.6;
    margin: 0;
    border-bottom: 1px solid rgba(44, 46, 51, 0.25);
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item .sub-menu .menu-item:last-child {
    border-bottom: none;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item .sub-menu .menu-item.current_page_item {
    opacity: 1;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item .sub-menu .menu-item:hover {
    opacity: 1;
  }
  #masthead .main-navigation .container {
    justify-content: flex-end;
    padding: 0 20px;
  }
  #masthead .main-navigation .container .nav__links-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-has-children {
    cursor: pointer;
  }
  #masthead .secondary-nav .container {
    width: 100%;
  }
  #masthead .secondary-nav .container .logo {
    top: -8px;
    left: 0;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop div {
    margin-right: 15px;
    display: flex;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-btn {
    white-space: nowrap;
    margin-right: 15px;
  }
}
@media (min-width: 1024px) {
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.menu-item-home {
    display: initial;
  }
  #masthead .secondary-nav {
    padding: 4px 0 3px;
    margin-top: 0;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop {
    max-width: 100%;
    align-items: center;
    padding-left: 340px;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop > div {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-btn {
    white-space: nowrap;
    margin-right: 15px;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-btn.contact-btn {
    margin-right: 0;
    height: 20px;
    display: flex;
    align-items: center;
    background: white;
    color: var(--dark-blue);
    padding: 0 20px;
    border: none;
    transition: all 0.3s ease;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-btn.contact-btn:hover {
    background: #083887;
    color: white;
  }
}
@media (min-width: 1440px) {
  #masthead .secondary-nav .container .logo {
    width: 304px;
    height: 123px;
    top: -8px;
    left: 20px;
  }
  #masthead .secondary-nav .container .logo img {
    width: 265px;
    height: 79px;
  }
}
@media (min-width: 1024px) and (max-width: 1450px) {
  #masthead .secondary-nav .container {
    padding-right: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1350px) {
  #masthead .secondary-nav .container .secondary-nav__links_desktop > div {
    align-items: center;
    justify-content: space-between;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop > div > div {
    display: flex;
    flex: 1;
  }
  #masthead .secondary-nav .container .secondary-nav__links_desktop .nav__links-link:after {
    display: none;
  }
  #masthead .secondary-nav .container .secondary-nav__intended {
    margin-right: 5vw;
  }
  #masthead .main-navigation .menu-menu-1-container {
    padding-left: 256px;
  }
  #masthead .main-navigation .wrapper {
    padding-right: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1350px) {
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item:last-of-type:hover > ul,
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item:last-of-type #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item.focus > ul {
    left: -140px !important;
    transform: none;
  }
}
@media (min-width: 550px) and (max-width: 1023px) {
  #masthead .secondary-nav .container .logo {
    top: 26px;
  }
}
@media (min-width: 1024px) and (max-height: 800px) {
  #masthead .secondary-nav {
    font-size: 11px;
  }
  #masthead .main-navigation .menu-menu-1-container .nav-menu .menu-item {
    padding: 12px 0;
  }
}
:root {
  --mobile-padding: 0 20px;
  --tablet-padding: 0 40px;
  --desktop-padding: 0 50px;
  --dark-blue: #083887;
  --blue: #2E75D3;
  --light-blue: #2E75D31A;
  --black: #505154;
  --orange: #EF9600;
}

.wrapper {
  padding: var(--mobile-padding);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wrapper {
    padding: var(--tablet-padding);
  }
}
@media (min-width: 1025px) {
  .wrapper {
    padding: var(--desktop-padding);
  }
}
@media (min-width: 1600px) {
  .wrapper {
    padding: 0;
  }
}

.mobile, .mobile-only {
  display: none;
}

.desktop, .desktop-only {
  display: none;
}

@media (max-width: 1023px) {
  .mobile, .mobile-only {
    display: block;
  }
  .desktop, .desktop-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile, .mobile-only {
    display: none;
  }
  .desktop, .desktop-only {
    display: block;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
.dark-blue {
  color: var(--dark-blue);
}

.banner__container {
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 100%);
  padding: 2px;
  border-radius: 15px;
  position: relative;
  margin: 0 0 29px;
  max-width: 1280px;
}
.banner__container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 49.72%, #083887 99.44%);
  border-radius: 13px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.banner__container .banner__wrapper {
  border-radius: 14px;
  background: white;
  padding: 50px 10px;
}

footer.site-footer {
  background: #083887;
  color: white;
  padding: 33px 40px 40px;
}
footer.site-footer .footer_container {
  display: flex;
  flex-direction: column;
  padding: 0 22px;
}
footer.site-footer .footer_container .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer.site-footer .footer_container .footer-logos .separator {
  margin: 0 52px;
  height: 59px;
  background-color: white;
  width: 1px;
}
footer.site-footer .footer_container .footer-logos a:first-of-type img {
  width: 200px;
}
footer.site-footer .footer_container .footer-logos a:last-of-type img {
  width: 161px;
}
footer.site-footer .footer_links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
footer.site-footer .footer_links ul {
  display: flex;
  list-style: none;
  padding: 0;
}
footer.site-footer .footer_links ul li a {
  text-decoration: underline;
  padding: 0 12px;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  color: white;
}
footer.site-footer .footer_links ul li a:after {
  content: "|";
  position: absolute;
  right: -2px;
}
@media (min-width: 1025px) {
  footer.site-footer .footer_links ul li a {
    text-decoration: none;
    font-weight: normal;
  }
  footer.site-footer .footer_links ul li a:hover {
    text-decoration: underline;
  }
}
footer.site-footer .footer_links ul li:last-of-type a:after {
  content: "";
}
footer.site-footer .footer_copy {
  margin-top: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
}
@media (min-width: 1025px) {
  footer.site-footer .footer_copy {
    font-size: 13px;
  }
  footer.site-footer .footer_copy br {
    display: none;
  }
}

@media (max-width: 1023px) {
  footer.site-footer {
    padding: 23px 0px 15px;
  }
  footer.site-footer .footer_container .footer-logos {
    flex-direction: column;
    gap: 17px;
  }
  footer.site-footer .footer_links ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 0;
  }
  footer.site-footer .footer_links ul li:nth-of-type(3) a:after {
    content: "";
  }
  footer.site-footer .footer_container .footer-logos .separator {
    display: none;
  }
}
@media (min-width: 441px) {
  footer.site-footer .footer_links ul li:nth-of-type(3) a:after {
    content: "|";
  }
}
@media (min-width: 441px) and (max-width: 565px) {
  footer.site-footer .footer_links ul li:nth-of-type(4) a:after {
    content: none;
  }
}
:root {
  --mobile-padding: 0 20px;
  --tablet-padding: 0 40px;
  --desktop-padding: 0 50px;
  --dark-blue: #083887;
  --blue: #2E75D3;
  --light-blue: #2E75D31A;
  --black: #505154;
  --orange: #EF9600;
}

.wrapper {
  padding: var(--mobile-padding);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wrapper {
    padding: var(--tablet-padding);
  }
}
@media (min-width: 1025px) {
  .wrapper {
    padding: var(--desktop-padding);
  }
}
@media (min-width: 1600px) {
  .wrapper {
    padding: 0;
  }
}

.mobile, .mobile-only {
  display: none;
}

.desktop, .desktop-only {
  display: none;
}

@media (max-width: 1023px) {
  .mobile, .mobile-only {
    display: block;
  }
  .desktop, .desktop-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile, .mobile-only {
    display: none;
  }
  .desktop, .desktop-only {
    display: block;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
.dark-blue {
  color: var(--dark-blue);
}

.banner__container {
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 100%);
  padding: 2px;
  border-radius: 15px;
  position: relative;
  margin: 0 0 29px;
  max-width: 1280px;
}
.banner__container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 49.72%, #083887 99.44%);
  border-radius: 13px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.banner__container .banner__wrapper {
  border-radius: 14px;
  background: white;
  padding: 50px 10px;
}

#isi {
  transition: top 0.3s ease-in-out;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.16);
  padding: 0 20px;
  position: relative;
}
#isi p,
#isi li {
  font-size: 20px;
  font-weight: 400;
  line-height: 25.14px;
  margin-bottom: 10px;
}
#isi ul {
  padding-left: 20px;
}
#isi ul li {
  list-style: none;
}
#isi ul li > p:first-of-type {
  margin-top: 10px;
}
#isi ul li::before {
  content: "•";
  color: var(--orange);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#isi ul li ul li::before {
  content: "—";
  color: var(--black);
  margin-left: -1.25em;
  margin-right: 5px;
}
#isi ul.sublist, #isi ul.list-el-side {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 1100px;
  gap: 0 20px;
}
@media (min-width: 1025px) {
  #isi ul.sublist, #isi ul.list-el-side {
    flex-direction: row;
  }
  #isi ul.sublist li, #isi ul.list-el-side li {
    width: calc(33% - 20px);
  }
}
@media (min-width: 1025px) {
  #isi ul.sublist.first {
    max-width: 710px;
    margin-bottom: 20px;
  }
  #isi ul.sublist.first li {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
  #isi ul.sublist.first li:nth-of-type(1) {
    order: 1;
  }
  #isi ul.sublist.first li:nth-of-type(2) {
    order: 3;
  }
  #isi ul.sublist.first li:nth-of-type(3) {
    order: 5;
  }
  #isi ul.sublist.first li:nth-of-type(4) {
    order: 2;
  }
  #isi ul.sublist.first li:nth-of-type(5) {
    order: 4;
  }
  #isi ul.sublist.second {
    max-width: 780px;
    margin-bottom: 20px;
  }
  #isi ul.sublist.second li {
    width: calc(50% - 20px);
    margin-bottom: 0;
  }
  #isi ul.sublist.second li:nth-of-type(1) {
    order: 1;
  }
  #isi ul.sublist.second li:nth-of-type(2) {
    order: 3;
  }
  #isi ul.sublist.second li:nth-of-type(3) {
    order: 5;
  }
  #isi ul.sublist.second li:nth-of-type(4) {
    order: 2;
  }
  #isi ul.sublist.second li:nth-of-type(5) {
    order: 4;
  }
  #isi ul.sublist.third {
    max-width: 932px;
    margin-bottom: 20px;
  }
  #isi ul.sublist.third li {
    margin-bottom: 0;
  }
  #isi ul.sublist.third li:nth-of-type(1) {
    order: 1;
  }
  #isi ul.sublist.third li:nth-of-type(2) {
    order: 4;
  }
  #isi ul.sublist.third li:nth-of-type(3) {
    order: 7;
  }
  #isi ul.sublist.third li:nth-of-type(4) {
    order: 10;
  }
  #isi ul.sublist.third li:nth-of-type(5) {
    order: 2;
  }
  #isi ul.sublist.third li:nth-of-type(6) {
    order: 5;
  }
  #isi ul.sublist.third li:nth-of-type(7) {
    order: 8;
  }
  #isi ul.sublist.third li:nth-of-type(8) {
    order: 11;
  }
  #isi ul.sublist.third li:nth-of-type(9) {
    order: 3;
  }
  #isi ul.sublist.third li:nth-of-type(10) {
    order: 6;
    white-space: nowrap;
  }
  #isi ul.sublist.third li:nth-of-type(11) {
    order: 9;
  }
  #isi ul.sublist.third li:nth-of-type(12) {
    order: 12;
  }
}
@media (min-width: 1025px) {
  #isi ul.list-el-side {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 20px;
  }
  #isi ul.list-el-side li {
    width: 100%;
    margin-bottom: 0;
  }
  #isi ul.list-el-side li:nth-child(1) {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  #isi ul.list-el-side li:nth-child(2) {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  #isi ul.list-el-side li:nth-child(3) {
    grid-column: 1/span 1;
    grid-row: 3/span 1;
  }
  #isi ul.list-el-side li:nth-child(4) {
    grid-column: 2/span 1;
    grid-row: 1/span 2;
  }
  #isi ul.list-el-side li:nth-child(5) {
    grid-column: 2/span 1;
    grid-row: 3/span 1;
  }
  #isi ul.list-el-side li:nth-child(6) {
    grid-column: 2/span 1;
    grid-row: 4/span 1;
  }
  #isi ul.list-el-side li:nth-child(7) {
    grid-column: 3/span 1;
    grid-row: 1/span 1;
  }
  #isi ul.list-el-side li:nth-child(8) {
    grid-column: 3/span 1;
    grid-row: 2/span 1;
  }
  #isi ul.list-el-side li:nth-child(9) {
    grid-column: 3/span 1;
    grid-row: 3/span 1;
  }
}
#isi .full__isi_container {
  padding: 12px 0 23px;
  position: relative;
}
#isi .full__isi_container .full__isi_wrapper {
  max-width: 1396px;
  margin: 0;
}
#isi .full__isi_container h2 {
  font-size: 20px;
  line-height: 1;
  color: #083887;
  margin-top: 0;
  margin-bottom: 6px;
}
#isi .full__isi_container h3 {
  font-size: 19px;
  line-height: 1;
  color: #083887;
  margin-bottom: 6px;
}
#isi .full__isi_container h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 25.14px;
  color: #083887;
  margin-top: 4px;
  margin-bottom: 4px;
}
#isi .full__isi_container .isi__tray {
  display: none;
}
#isi .full__isi_container a {
  font-weight: bold;
  color: #0070e0;
  text-decoration: underline;
}
@media (min-width: 1025px) {
  #isi .full__isi_container a {
    color: var(--dark-blue);
  }
}
#isi .full__isi_container p {
  line-height: -0.09px;
}
#isi .light-blue {
  color: #083887;
  font-weight: 600;
}
#isi.float__isi {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999;
  bottom: 0;
  overflow: hidden;
  max-height: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: max-height 0.3s ease-in-out;
  z-index: 99999;
}
#isi.float__isi .isi__tray {
  display: block;
  cursor: pointer;
}
#isi.float__isi.expanded {
  overflow: scroll;
  max-height: 100%;
}
#isi.float__isi.expanded .isi__tray:before {
  content: "collapse";
}
#isi.float__isi.expanded .isi__tray img {
  transform: rotate(180deg);
}
#isi.float__isi.hidden {
  top: 120vh;
}
#isi.float__isi .isi__tray {
  position: absolute;
  right: 20px;
  top: 15px;
  transition: all 0.5s ease-in-out;
  transform: rotate(0);
  display: flex;
  align-items: center;
  gap: 8px;
}
#isi.float__isi .isi__tray:before {
  content: "expand";
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: var(--orange);
}
#isi.float__isi .isi__tray img {
  height: 13px;
}
@media (min-width: 1025px) and (max-width: 1100px) {
  #isi.float__isi .isi__tray {
    right: 6px;
  }
}
#isi.float__isi .full__isi_container {
  padding-top: 40px;
}
@media (min-width: 768px) {
  #isi.float__isi .full__isi_container {
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  #isi.float__isi .full__isi_container {
    padding-top: 12px;
  }
}
#isi.float__isi .full__isi_container h2 {
  margin-bottom: 0;
}
#isi.float__isi .full__isi_container h3 {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  #isi.float__isi {
    max-height: 114px;
  }
  #isi.float__isi.expanded {
    padding-left: 10px;
  }
  #isi.float__isi::-webkit-scrollbar {
    width: 7px;
  }
  #isi.float__isi::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 10px;
  }
}
@media (min-width: 1025px) {
  #isi .dt-wrapper {
    display: flex;
    gap: 25px;
    margin-bottom: 17px;
  }
  #isi .dt-wrapper > div {
    flex: 1;
  }
  #isi .dt-wrapper > div:first-child {
    max-width: 516px;
    min-width: 400px;
  }
  #isi .dt-wrapper > div:first-child p:first-of-type {
    margin-top: 0;
  }
  #isi .full__isi_container {
    max-width: 1436px;
    margin: 0 auto;
    padding: 10px 0 23px 0;
  }
  #isi .full__isi_container h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 27.65px;
  }
  #isi .full__isi_container h3 {
    font-size: 23px;
  }
}
#isi .please-see-dt {
  font-weight: bold;
}
#isi .what-is-dt a {
  font-weight: normal;
  color: inherit;
  text-decoration: none;
}

.top__isi {
  max-height: 158px;
  transition: max-height 0.3s ease-in-out;
}
.top__isi.hidden {
  max-height: 0;
  overflow: hidden;
}
.top__isi.full {
  max-height: 700px;
}
.top__isi .top__isi_content {
  font-size: 20px;
  line-height: 1;
}
.top__isi .top__isi_content ul,
.top__isi .top__isi_content li,
.top__isi .top__isi_content p,
.top__isi .top__isi_content a {
  font-size: inherit;
  line-height: inherit;
}
.top__isi .top__isi_content ul.first {
  margin-top: 20px;
}
.top__isi .top__isi_content ul.second {
  margin-bottom: 20px;
}
.top__isi .top__isi_content .and {
  display: block;
  margin: 10px 0;
}
.top__isi .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  cursor: pointer;
}
.top__isi .top__isi_container {
  padding: 0 !important;
}
.top__isi .top__isi_wrapper {
  padding: 18px 15px;
}
.top__isi .top__isi_wrapper .top__isi-hidden {
  display: none;
}
.top__isi .top__isi_wrapper .top__isi-hidden.show {
  display: inline;
}
.top__isi .top__isi_wrapper h2 {
  font-size: 22px;
  line-height: 1;
  margin: 0;
  color: #083887;
  margin-bottom: 10px;
}
.top__isi .top__isi_wrapper p {
  font-size: 20px;
}
.top__isi .top__isi_wrapper p a {
  font-size: inherit;
}
.top__isi .top__isi_wrapper a {
  margin-left: 3px;
  color: #083887;
  text-decoration: underline;
  white-space: nowrap;
}
.top__isi .top__isi_wrapper a.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #isi ul.sublist.third {
    max-width: 792px;
  }
  #isi.float__isi.expanded {
    padding-left: 40px;
  }
}
@media (max-width: 768px) {
  #isi {
    padding: 0 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #isi {
    padding: 0 30px;
  }
}
@media (min-width: 1024px) and (max-height: 800px) {
  #isi p,
  #isi li {
    font-size: 18px;
    line-height: 22px;
  }
}
:root {
  --mobile-padding: 0 20px;
  --tablet-padding: 0 40px;
  --desktop-padding: 0 50px;
  --dark-blue: #083887;
  --blue: #2E75D3;
  --light-blue: #2E75D31A;
  --black: #505154;
  --orange: #EF9600;
}

.wrapper {
  padding: var(--mobile-padding);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .wrapper {
    padding: var(--tablet-padding);
  }
}
@media (min-width: 1025px) {
  .wrapper {
    padding: var(--desktop-padding);
  }
}
@media (min-width: 1600px) {
  .wrapper {
    padding: 0;
  }
}

.mobile, .mobile-only {
  display: none;
}

.desktop, .desktop-only {
  display: none;
}

@media (max-width: 1023px) {
  .mobile, .mobile-only {
    display: block;
  }
  .desktop, .desktop-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile, .mobile-only {
    display: none;
  }
  .desktop, .desktop-only {
    display: block;
  }
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
.dark-blue {
  color: var(--dark-blue);
}

.banner__container {
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 100%);
  padding: 2px;
  border-radius: 15px;
  position: relative;
  margin: 0 0 29px;
  max-width: 1280px;
}
.banner__container:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #EF9600 0%, #2E75D3 49.72%, #083887 99.44%);
  border-radius: 13px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}
.banner__container .banner__wrapper {
  border-radius: 14px;
  background: white;
  padding: 50px 10px;
}

.popupleave__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999999;
  display: none;
}
.popupleave__container.visible {
  display: block;
}
.popupleave__container .popupleave__content {
  max-width: 748px;
  margin: auto;
  padding: 59px 35px 34px;
  border-radius: 5px;
  background: #FFF;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.popupleave__container .popupleave__content .popupleave__close {
  position: absolute;
  top: 18px;
  right: 16px;
  cursor: pointer;
  background: none;
  border: none;
  color: #2C2E33;
  display: flex;
  gap: 3px;
}
.popupleave__container .popupleave__content .popupleave__close img {
  position: relative;
  top: -1px;
}
.popupleave__container .popupleave__content .popupleave__content__inner {
  text-align: center;
}
.popupleave__container .popupleave__content .popupleave__content__inner h2 {
  font-family: "Podkova", sans-serif;
  font-size: 40px;
  line-height: 42px;
  font-weight: bold;
  color: #083887;
  margin: 0;
  margin-bottom: 16px;
}
.popupleave__container .popupleave__content .popupleave__content__inner .popupleave__content__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.popupleave__container .popupleave__content .popupleave__content__inner .popupleave__content__buttons a {
  font-size: 22px;
  line-height: 25px;
  border-radius: 32px;
  background: #2E75D3;
  font-weight: 600;
  color: #FFFFFF;
  padding: 10px 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 150px;
  height: 52px;
}
.popupleave__container .popupleave__content .popupleave__content__inner .popupleave__content__buttons a:hover {
  background: #083887;
  color: white;
}
.popupleave__container .popupleave__content .popupleave__content__inner .popupleave__content__buttons button {
  font-size: 22px;
  line-height: 25px;
  border: none;
  background: none;
  text-decoration: underline;
  color: #083887;
  cursor: pointer;
  padding: 0;
}
.popupleave__container .popupleave__content.healthcare {
  max-width: 1186px;
  padding: 88px 20px 54px 20px;
  border-radius: 15px;
}
.popupleave__container .popupleave__content.healthcare h2 p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.popupleave__container .popupleave__content.healthcare h2 p:first-of-type {
  max-width: 800px;
  margin: 0 auto;
}
.popupleave__container .popupleave__content.healthcare .popupleave__content__buttons {
  gap: 26px;
  margin-top: 96px;
}
.popupleave__container .popupleave__content.healthcare .popupleave__content__inner .popupleave__content__buttons button {
  width: 246px;
  height: 76px;
  font-size: 20px;
  line-height: 25px;
  border-radius: 50px;
  background: #2E75D3;
  font-weight: 600;
  color: #FFFFFF;
  padding: 0 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  max-width: 100%;
}
.popupleave__container .popupleave__content.healthcare .popupleave__content__inner .popupleave__content__buttons button:hover {
  background: #083887;
  color: white;
}
@media (min-width: 768px) {
  .popupleave__container .popupleave__content.healthcare .popupleave__content__inner .popupleave__content__buttons button {
    width: 386px;
    height: 59px;
    border-radius: 32px;
  }
}
.popupleave__container .popupleave__content.healthcare .popupleave__content__inner .popupleave__content__buttons a {
  width: 246px;
  height: 76px;
  font-size: 20px;
  max-width: 100%;
  border-radius: 50px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .popupleave__container .popupleave__content.healthcare .popupleave__content__inner .popupleave__content__buttons a {
    width: 386px;
    height: 59px;
    border-radius: 32px;
  }
}

@media screen and (max-width: 767px) {
  .popupleave__container .popupleave__content {
    padding: 72px 30px 29px;
    max-width: 93%;
    margin: auto;
  }
  .popupleave__container .popupleave__content .popupleave__content__inner h2 {
    font-size: 28px;
    line-height: 32px;
  }
}
.card-item {
  position: relative;
}
.card-item:after {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  left: -10px;
  top: -10px;
  border-radius: 16.55px 0px 0px 0px;
  border: 16.55px solid #083887;
}
@media (min-width: 1025px) {
  .card-item:after {
    width: 100px;
    height: 100px;
    border-radius: 25px 0px 0px 0px;
    border: 25px solid #083887;
  }
}
.card-item:before {
  content: "";
  position: absolute;
  width: 65px;
  height: 65px;
  right: -10px;
  bottom: -10px;
  border-radius: 0px 0px 16.55px 0px;
  border: 16.55px solid #FFA500;
}
@media (min-width: 1025px) {
  .card-item:before {
    width: 100px;
    height: 100px;
    border-radius: 0px 0px 25px 0px;
    border: 25px solid #FFA500;
  }
}
.card-item .items {
  background: white;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 6.62px 0px rgba(0, 0, 0, 0.3490196078);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 22px;
}
.card-item .items p {
  font-size: 20px;
  font-weight: 400;
  line-height: 25.14px;
  margin-bottom: 0;
}
/*# sourceMappingURL=main.css.map */
