/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  background-color: #fff;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/*********************
BREAKPOINTS
*********************/
/*********************
 BOOTSTRAP BREAKPOINTS
 *********************/
/*********************
 BREAKPOINTS: Usage
 *********************/
/*
 @include breakpoint(breakpointname) {
     ==== STYLES ====    
 }
 */
.table {
  display: table;
}

.table-full {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
}

.table-full:after {
  content: "";
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

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

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

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

.v-align-top {
  vertical-align: top;
}

.v-align-middle {
  vertical-align: middle;
}

.v-align-bottom {
  vertical-align: bottom;
}

.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

ul.inline-block-group {
  list-style: none;
  padding-left: initial;
}

ul.inline-block-group li {
  display: inline-block;
  vertical-align: middle;
}

.case-upper {
  text-transform: uppercase;
}

.case-lower {
  text-transform: lowercase;
}

.case-proper {
  text-transform: capitalize;
}

.m-auto {
  margin: auto;
}

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

.center-block {
  display: block;
  margin: 0 auto;
}

.bp-rel {
  position: relative;
}

.o-hidden {
  overflow: hidden;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.mobile-only {
  display: block;
}

.tablet-up {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  /* 1 */
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
 EXAMPLE Media Queries for Responsive Design.
 These examples override the primary ('mobile first') styles.
 Modify as content requires.
 ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
 Print styles.
 Inlined to avoid the additional HTTP request:
 https://www.phpied.com/delay-loading-your-print-css/
 ========================================================================== */
@media print {

  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

@font-face {
  font-family: "econ-sans-light";
  src: url("../fonts/econsans/EconSansOS-Light.woff2") format("woff2"), url("../fonts/econsans/EconSansOS-Light.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "econ-sans";
  src: url("../fonts/econsans/EconSansOS-Regular.woff2") format("woff2"), url("../fonts/econsans/EconSansOS-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "econ-sans-medium";
  src: url("../fonts/econsans/EconSansOS-Medium.woff2") format("woff2"), url("../fonts/econsans/EconSansOS-Medium.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "econ-sans-bold";
  src: url("../fonts/econsans/EconSansOS-Bold.woff2") format("woff2"), url("../fonts/econsans/EconSansOS-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "avenir-black";
  src: url("../fonts/avenir/Linotype-AvenirLTPro-Black.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "avenir-heavy";
  src: url("../fonts/avenir/Linotype-AvenirLTPro-Heavy.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "avenir-light";
  src: url("../fonts/avenir/Linotype-AvenirLTPro-Light.otf") format("opentype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "barlow-bold";
  src: url("../fonts/barlow/BarlowCondensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BarlowCondensedSemiBold';
  src: url("../fonts/barlow/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "barlow-medium";
  src: url("../fonts/barlow/BarlowCondensed-Medium.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "barlow-regular";
  src: url("../fonts/barlow/BarlowCondensed-Regular.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 28px;
  font-family: "Arial";
  color: #303030;
  margin: 0;
  padding: 0;
  font-family: "avenir-light", "econ-sans", sans-serif;
  position: relative;
}

body.overflow-hidden {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

* {
  outline: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site {
  overflow-x: hidden;
  opacity: 0;
}

.site-content {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section.mh-100 {
  min-height: 100%;
}

.container {
  height: 100%;
  max-width: 100em;
  margin: 0 auto;
}

@media only screen and (max-width: 414px) {
  .container.text-card {
    padding: 0 !important;
  }
}

.container.container-xl {
  max-width: none;
}

.container.container-l {
  max-width: 63.125em;
}

@media only screen and (max-width: 1440px) {
  .container.container-l {
    max-width: 56.25em;
  }
}

.container.container-m {
  max-width: 49.375em;
}

@media only screen and (max-width: 1440px) {
  .container.container-m {
    max-width: 46.875em;
  }
}

.container.container-s {
  max-width: 56.25em;
}

.container .sub-container {
  height: 100%;
  margin: 0 auto;
  max-width: 75em;
}

.container .sub-container.sub-container-med {
  max-width: 84.375em;
}

.container .sub-container.sub-container-lar {
  max-width: 93.75em;
}

@media screen and (max-width: 1150px) {
  .container.container-l {
    max-width: 100%;
    padding: 0 3.125em;
  }

  .container.container-m {
    max-width: 100%;
    padding: 0 7.5em;
  }
}

@media screen and (max-width: 820px) {
  .container.container-l {
    max-width: 100%;
    padding: 0 3.125em;
  }

  .container.container-m {
    max-width: 100%;
    padding: 0 5.625em;
  }
}

@media screen and (max-width: 768px) {
  .container.container-l {
    padding: 0 1.25em;
  }

  .container.container-m {
    padding: 0 2.5em;
  }
}

@media screen and (max-width: 767px) {
  .container.container-l {
    padding: 0 20px;
  }

  .container.container-m {
    padding: 0 20px;
  }
}

@media screen and (max-width: 414px) {
  .container.container-l.full-width {
    padding: 0;
  }

  .container.container-l .two-col-content .text-content-col {
    margin-left: 35px;
    margin-right: 25px;
  }

  .container.container-m {
    margin-left: 45px;
    margin-right: 35px;
    padding: 0;
  }

  .container.container-m.full-width {
    margin: 0;
  }

  .container.container-m.medium-width {
    padding: 0 10px;
    margin: 0;
  }
}

@media screen and (max-width: 414px) and (max-width: 414px) {
  .container.container-m .section-content-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

h1 {
  font-size: 4.6875em;
  line-height: 1;
  margin: 0;
  font-family: 'BarlowCondensedSemiBold';
}

@media only screen and (max-width: 500px) {
  h1 {
    font-size: 3.125em;
  }
}

h2 {
  font-size: 3.125em;
  line-height: 1.24;
  margin: 0;
  font-family: 'BarlowCondensedSemiBold';
}

h3 {
  font-size: 1.75em;
  line-height: 1.2;
  margin: 0;
}

h4 {
  font-size: 1.5em;
  line-height: 1.2;
  margin: 0;
}

p {
  font-size: 1.1em;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1440px) {
  p {
    font-size: 1em;
  }
}

@media (max-width: 414px) {
  p {
    font-size: 13px;
  }
}

p.text-bold {
  font-family: "avenir-black";
}

a {
  font-family: "avenir-light", "econ-sans", sans-serif;
  color: #333333;
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  /*width: 100%;*/
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gp-img img {
  height: auto !important;
}

video {
  outline: none;
  border: 0;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

table {
  width: 100%;
  background-color: #ffffff;
  border-collapse: collapse;
  color: #000000;
}

.italic {
  font-style: italic !important;
}

.mt-0 {
  margin-top: 0em !important;
}

.mt-100 {
  margin-top: 6.25em;
}

.mt-50 {
  margin-top: 3.125em;
}

.mb-100 {
  margin-bottom: 6.25em;
}

.mb-50 {
  margin-bottom: 3.125em;
}

.mb-44 {
  margin-bottom: 44px !important;
}

.mb-25 {
  margin-bottom: 1.5625em;
}

.mb-22 {
  margin-bottom: 1.375em !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.custom-pl {
  padding-left: 6.875em !important;
}

@media screen and (max-width: 1440px) {
  .custom-pl {
    padding-left: 2.5em !important;
  }
}

@media screen and (max-width: 1159px) {
  .custom-pl {
    padding-left: 6.2em !important;
  }
}

@media screen and (max-width: 1024px) {
  .custom-pl {
    padding-left: 1.875em !important;
  }
}

@media screen and (max-width: 767px) {
  .custom-pl {
    padding-left: 2.25em !important;
  }
}

.pr-0 {
  padding-right: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-100 {
  padding-top: 6.25em;
}

.pt-50 {
  padding-top: 3.125em;
}

.pb-100 {
  padding-bottom: 6.25em;
}

.pb-50 {
  padding-bottom: 3.125em;
}

.color-ligth-green {
  color: #cddb6f !important;
}

.color-white {
  color: #fff !important;
}

.bg-light-blue {
  padding-top: 3.875em;
  padding-bottom: 3.875em;
  margin-top: 3.875em;
  margin-bottom: 3.875em;
  background-color: #dff3fd;
}

@media only screen and (max-width: 820px) {
  .bg-light-blue {
    padding-top: 1.875em;
    padding-bottom: 1.875em;
    margin-top: 1.875em;
    margin-bottom: 1.875em;
  }
}

.bg-light-blue .plus-para {
  margin-bottom: 1.25em;
}

@media only screen and (max-width: 414px) {
  .bg-light-blue .two-col-content .col-container.text-content-col {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .bg-light-blue .two-col-content .col-container.image-content-col {
    width: 100 !important;
  }
}

@media only screen and (max-width: 820px) {
  .bg-light-blue .two-col-content {
    margin-bottom: 0 !important;
  }
}

.section-hero iframe {
  pointer-events: none;
  width: 100%;
  height: 100%;
}


iframe {
  width: 100%;
  height: 100%;
}



.ui-selectmenu-menu {
  z-index: 999999999 !important;
}

.image-banner {
  margin-top: 3.125em;
  margin-bottom: 3.125em;
}

@media only screen and (max-width: 1440px) {
  .image-banner {
    margin-left: 1.875em;
  }
}

@media only screen and (max-width: 1366px) {
  .image-banner {
    margin-left: 2.1875em;
  }
}

@media only screen and (max-width: 820px) {
  .image-banner {
    margin-left: 2.5em;
  }
}

@media only screen and (max-width: 768px) {
  .image-banner {
    margin-left: 1.875em;
  }
}

@media only screen and (max-width: 767px) {
  .image-banner {
    margin-left: 3.4375em;
  }
}

@media only screen and (max-width: 414px) {
  .image-banner {
    margin-left: 0;
  }
}

.image-banner.fixed-height {
  height: 16.0625em;
}

.image-banner.indent {
  margin-left: 1.875em;
}

.section-heading {
  /*margin-top: 6.875em;*/
  /*margin-top: 100px;*/
  margin-bottom: 3.125em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .section-heading {
    margin: 0 auto 1.875em;
    padding-top: 0;
  }
}

.section-heading.video-section {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-heading.video-section .heading-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-heading.video-section .logo-wrap {
  width: 15.1875em;
  height: 5.0625em;
}

@media only screen and (max-width: 414px) {
  .section-heading.video-section .logo-wrap {
    width: 85px;
    height: 30px;
  }
}

.section-heading .heading-icon {
  margin-right: 1.4375em;
}

.section-heading .heading-icon img,
.section-heading .heading-icon svg {
  width: 3.125em;
  height: 3.125em;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 820px) {

  .section-heading .heading-icon img,
  .section-heading .heading-icon svg {
    width: 3.4375em;
    height: 3.4375em;
  }
}

@media only screen and (max-width: 768px) {

  .section-heading .heading-icon img,
  .section-heading .heading-icon svg {
    width: 2.5em;
    height: 2.5em;
  }
}

@media only screen and (max-width: 414px) {

  .section-heading .heading-icon img,
  .section-heading .heading-icon svg {
    width: 2.1875em;
    height: 2.1875em;
  }
}

@media only screen and (max-width: 768px) {
  .section-heading .heading-icon {
    margin-right: 0.9375em;
  }
}

@media only screen and (max-width: 414px) {
  .section-heading .heading-icon {
    margin-right: 0.625em;
  }
}

.section-heading .heading-text {
  border-left: 4px solid #027BD2;
  padding: 0.3125em 0 0.3125em 1.875em;
}

@media only screen and (max-width: 767px) {
  .section-heading .heading-text {
    padding: 0.3125em 0 0.3125em 1.25em;
  }
}

@media only screen and (max-width: 414px) {
  .section-heading .heading-text {
    border-left: 3px solid #027BD2;
    padding: 0.3125em 0 0.3125em 0.625em;
  }
}

.section-heading .heading-text h2 {
  color: #027BD2;
}

@media only screen and (max-width: 767px) {
  .section-heading .heading-text h2 {
    font-size: 2.5em;
  }
}

@media only screen and (max-width: 414px) {
  .section-heading .heading-text h2 {
    font-size: 30px;
  }
}

.p-head {
  font-weight: bold;
  font-style: italic;
}

.section-content.navbar {
  margin: auto;
}

@media only screen and (max-width: 414px) {
  .section-content.navbar {
    background: white;
  }
}

.section-content.section-text {
  margin-bottom: 2.75em;
}

@media only screen and (max-width: 414px) {
  .section-content.section-text {
    margin-bottom: 1.875em;
  }
}

.section-content .title-text {
  margin-bottom: 2.5em;
}

.section-content .title-text .bold-text {
  font-family: 'BarlowCondensedSemiBold';
  font-size: 22px;
}

@media only screen and (max-width: 1440px) {
  .section-content .title-text {
    margin-left: 1.875em;
  }
}

@media only screen and (max-width: 1366px) {
  .section-content .title-text {
    margin-left: 2.1875em;
  }
}

@media only screen and (max-width: 820px) {
  .section-content .title-text {
    margin-left: 2.5em;
    margin-bottom: 1.25em;
  }
}

@media only screen and (max-width: 768px) {
  .section-content .title-text {
    margin-left: 1.875em;
  }
}

@media only screen and (max-width: 767px) {
  .section-content .title-text {
    margin-left: 3.4375em;
  }
}

@media only screen and (max-width: 414px) {
  .section-content .title-text {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.section-content .title-text.ml-0 {
  margin-left: 0;
}

.section-content.w-900 {
  max-width: 56.25em;
  margin: 0 auto;
}

.section-content .section-content-subtitle {
  margin-bottom: 3.125em;
}

@media screen and (max-width: 767px) {
  .section-content .section-content-subtitle {
    margin-bottom: 1.875em;
  }
}

@media screen and (max-width: 414px) {
  .section-content .section-content-subtitle {
    margin-left: 45px;
    margin-right: 35px;
    padding: 0;
  }
}

.section-content .section-content-subtitle.section-content-subtitle-2 {
  margin-bottom: 1.875em;
}

@media screen and (max-width: 767px) {
  .section-content .section-content-subtitle.section-content-subtitle-2 {
    margin-bottom: 1.875em;
    margin-left: 2.375em;
  }
}

@media screen and (max-width: 767px) {
  .section-content .section-content-subtitle.section-content-subtitle-2 {
    margin-left: 0;
  }
}

.section-content .section-content-subtitle .subtitle {
  padding-top: 1.25em;
}

.section-content .section-content-subtitle .subtitle.reduce-padding {
  padding-top: 0;
}

@media (max-width: 767px) {
  .section-content .section-content-subtitle .subtitle {
    padding-top: 0;
  }
}

.section-content .section-content-subtitle h2 {
  border-bottom: 3px solid #000;
  font-size: 1.875em;
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .section-content .section-content-subtitle h2.extra-margin {
    margin-left: 44px !important;
  }
}

@media screen and (max-width: 768px) {
  .section-content .section-content-subtitle h2.extra-margin {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .section-content .section-content-subtitle h2 {
    font-size: 1.5625em;
  }
}

.section-content .section-content-subtitle .subtitle-2 {
  font-size: 1.5625em;
  border-bottom: none;
  text-transform: none;
}

.section-content .section-content-subtitle.carousel-title {
  padding: 0 6.875em;
}

@media only screen and (max-width: 1440px) {
  .section-content .section-content-subtitle.carousel-title {
    padding: 0 3.75em;
  }
}

@media only screen and (max-width: 1366px) {
  .section-content .section-content-subtitle.carousel-title {
    padding: 0 5em;
  }
}

@media only screen and (max-width: 919px) {
  .section-content .section-content-subtitle.carousel-title {
    padding: 0;
  }
}

@media only screen and (max-width: 820px) {
  .section-content .section-content-subtitle.carousel-title {
    margin-right: 2.5em;
    margin-left: 2.5em;
  }
}

.section-content .section-content-title {
  margin: 3.75em 0 2.5em;
}

.section-content .section-content-title .sontent-title-1 {
  margin-top: 1.875em;
}

.section-content .section-content-title h3 {
  color: #000;
  font-family: "barlow-regular";
}

.section-content .image-banner {
  margin: 2.5em 0;
  height: 360px;
  -o-object-fit: initial;
  object-fit: initial;
}

@media only screen and (max-width: 991px) {
  .section-content .image-banner {
    height: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .section-content .image-banner {
    margin-top: 0;
    margin-bottom: 1.875em;
  }
}

.section-content .plus-para {
  font-family: "avenir-light";
  line-height: 1.7;
  padding-left: 1.875em;
  position: relative;
  margin-bottom: 1.25em;
}

@media screen and (max-width: 767px) {
  .section-content .plus-para {
    margin-bottom: 1.25em;
  }
}

.section-content .plus-para.visible {
  visibility: visible !important;
  opacity: 1 !important;
}

.section-content .plus-para .plus-para-title {
  font-family: "avenir-black";
}

.section-content .plus-para::before {
  content: "+";
  color: #37A7DB;
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  font-family: "avenir-black";
}

.section-content .number-para .number-para-count {
  color: #37A7DB;
}

.section-content .number-para-indented {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-content .number-para-indented .number-para-count {
  color: #37A7DB;
  margin-right: 1.25em;
}

.section-content .green-icon-content {
  position: relative;
  margin-bottom: 2.75em;
}

@media only screen and (max-width: 414px) {
  .section-content .green-icon-content {
    margin-bottom: 1.875em;
  }
}

@media only screen and (max-width: 414px) {
  .section-content .green-icon-content.indent {
    padding-top: 20px;
  }
}

.section-content .green-icon-content.icon-indented {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-content .green-icon-content.icon-indented .green-icon-image {
  margin-right: 1.25em;
  position: static;
  left: 0;
}

@media (max-width: 767px) {
  .section-content .green-icon-content.icon-indented .green-icon-image {
    margin-right: 10px;
  }
}

.section-content .green-icon-content.icon-indented .green-icon-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.section-content .green-icon-content .green-icon-image {
  position: absolute;
  left: -10%;
  width: 75px;
  height: 75px;
  min-width: 75px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 414px) {
  .section-content .green-icon-content .green-icon-image {
    min-width: 35px !important;
    width: 35px;
    height: 35px;
    margin: 0;
  }
}

.section-content .green-icon-content .green-icon-image img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 414px) {
  .section-content .green-icon-content .green-icon-image img {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .section-content .green-icon-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .section-content .green-icon-content .green-icon-image {
    margin-right: 1.25em;
    position: static;
    left: 0;
  }

  .section-content .green-icon-content .green-icon-text {
    width: 90% !important;
  }
}

@media only screen and (max-width: 767px) {
  .section-content .green-icon-content .green-icon-text {
    width: 80%;
  }
}

.section-content .image-banner-with-text {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.section-content .image-banner-with-text.image-banner-horizontal .image-banner-text {
  width: 23.125em;
}

@media only screen and (max-width: 767px) {
  .section-content .image-banner-with-text.image-banner-horizontal .image-banner-text {
    width: 100%;
  }
}

.section-content .image-banner-with-text.image-banner-horizontal.banner-text-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: auto !important;
}

.section-content .image-banner-with-text.image-banner-horizontal.banner-text-bottom {
  min-height: 21.875em;
}

.section-content .image-banner-with-text.image-banner-horizontal.banner-text-bottom .image-banner-text {
  width: 100% !important;
}

.section-content .image-banner-with-text .image-banner-text {
  width: 100%;
  padding: 2.1875em;
  background: rgba(60, 118, 157, 0.63);
}

.section-content .image-banner-with-text .image-banner-text p {
  color: #fff;
}

.section-content .image-banner-with-text .image-banner-text .image-banner-title p {
  line-height: 1;
  font-size: 3.75em;
}

.section-content .image-banner-with-text .image-banner-text .image-banner-content p {
  font-size: 1.25em;
}

.section-content .three-image-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.125em;
  margin-bottom: 3.125em;
}

@media screen and (max-width: 767px) {
  .section-content .three-image-col {
    margin: 1.875em 0 2.1875em;
  }
}

.section-content .three-image-col .image-item {
  margin-left: 10px;
  width: 33.33%;
}

.section-content .three-image-col .image-item:first-child {
  margin-left: 0;
}

.section-content .boxed-paragraph {
  border: 1px solid #2a8e68;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3.75em;
  margin-bottom: 3.75em;
}

@media only screen and (max-width: 767px) {
  .section-content .boxed-paragraph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.section-content .boxed-paragraph .boxed-paragraph-text {
  width: 75%;
  padding: 2.1875em 0.9375em 2.1875em 2.1875em;
}

@media only screen and (max-width: 767px) {
  .section-content .boxed-paragraph .boxed-paragraph-text {
    width: 100%;
    padding: 20px;
  }
}

.section-content .boxed-paragraph .boxed-paragraph-text p {
  color: #2a8e68;
  font-size: 1.25em;
}

@media only screen and (max-width: 767px) {
  .section-content .boxed-paragraph .boxed-paragraph-text p {
    font-size: 16px;
  }
}

.section-content .boxed-paragraph .boxed-paragraph-image {
  width: 25%;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .section-content .boxed-paragraph .boxed-paragraph-image {
    width: 100%;
  }
}

.section-content .blue-table .blue-table-title {
  margin-top: 0;
  text-align: center;
  margin-bottom: 1.3125em;
}

.section-content .blue-table .blue-table-title h4 {
  font-size: 1em;
}

.section-content .blue-table .blue-table-content {
  margin: 0 auto;
  width: 90%;
}

@media screen and (max-width: 1150px) {
  .section-content .blue-table .blue-table-content {
    width: 100%;
  }
}

.section-content .blue-table .blue-table-content .blue-table-wrapper {
  margin-bottom: 2.1875em;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px #afdbf0 solid;
  border-bottom: none;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item:first-child {
  border-radius: 0.625em 0.625em 0 0;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item:last-child {
  border-radius: 0 0 0.625em 0.625em;
  border-bottom: 1px #afdbf0 solid;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 33.33%;
  border-right: 1px #afdbf0 solid;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell.two-col-center {
  width: 66%;
  text-align: center;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell:last-child {
  border-right: none;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell.multiple-cell p {
  border-bottom: 1px #afdbf0 solid;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell.multiple-cell p:last-child {
  border-bottom: none;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell.two-col-center {
  width: 66%;
  text-align: center;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell p {
  padding: 15px 15px 15px 40px;
}

@media only screen and (max-width: 767px) {
  .section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-cell p {
    padding: 10px;
  }
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-first-col {
  width: 40%;
  border-right: 1px #afdbf0 solid;
}

.section-content .blue-table .blue-table-content .blue-table-wrapper .blue-table-item .blue-table-second-col {
  width: 60%;
}

.section-content .blue-table .blue-table-content .source-text {
  text-align: center;
  font-size: 0.875em;
}

.section-content .normal-table .normal-table-title {
  margin-top: 3.75em;
  text-align: center;
  margin-bottom: 2.5em;
}

.section-content .normal-table .normal-table-title p {
  font-size: 1.25em;
}

.section-content .normal-table .normal-table-content {
  margin: 0 auto;
  width: 80%;
}

@media screen and (max-width: 1150px) {
  .section-content .normal-table .normal-table-content {
    width: 100%;
  }
}

.section-content .normal-table .normal-table-content .normal-table-wrapper {
  margin-bottom: 2.1875em;
}

.section-content .normal-table .normal-table-content .normal-table-wrapper .normal-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px #000 solid;
  border-bottom: none;
}

.section-content .normal-table .normal-table-content .normal-table-wrapper .normal-table-item:last-child {
  border-bottom: 1px #000 solid;
}

.section-content .normal-table .normal-table-content .normal-table-wrapper .normal-table-item .normal-table-cell {
  padding: 0.3125em;
}

.section-content .normal-table .normal-table-content .normal-table-wrapper .normal-table-item .normal-table-first-col {
  width: 40%;
  border-right: 1px #000 solid;
}

.section-content .normal-table .normal-table-content .normal-table-wrapper .normal-table-item .normal-table-second-col {
  width: 60%;
}

.section-content .normal-table .normal-table-content .source-text {
  margin-top: 2.1875em;
  text-align: center;
}

.section-content .two-col-infinity {
  background-image: url(../images/infinity-double-loop@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60%;
  min-height: 21.875em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .section-content .two-col-infinity {
    width: 100%;
  }
}

.section-content .two-col-infinity .col-text-infinity {
  padding: 2.1875em;
  width: 50%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .section-content .two-col-infinity .col-text-infinity {
    padding: 20px;
  }
}

.section-content .two-col-infinity .col-text-infinity h3 {
  color: #193d6a;
  font-family: "barlow-bold";
}

.section-content .two-col-infinity .col-text-infinity span {
  color: #193d6a;
  line-height: 1;
}

.section-content .two-col-infinity .col-text-infinity p {
  margin-top: 0.9375em;
  line-height: 1;
  color: #193d6a;
}

.section-content .three-col-infinity {
  background-image: url(../images/earth@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 65%;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .section-content .three-col-infinity {
    width: 100%;
  }
}

.section-content .three-col-infinity .three-col-title {
  text-align: center;
  margin-bottom: -20px;
}

.section-content .three-col-infinity .three-col-title img {
  width: 1.875em;
  margin-top: 3.125em;
}

.section-content .three-col-infinity .three-col-title p {
  margin-top: 1.875em;
}

.section-content .three-col-infinity .three-col-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 18.75em;
  background-image: url(../images/Infinity-tripple-loop@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-content .three-col-infinity .three-col-content .col-text-infinity {
  padding: 1.5625em 1.25em;
  width: 33%;
  text-align: center;
}

.section-content .three-col-infinity .three-col-content .col-text-infinity.center-col {
  margin: 0 1.25em;
}

.section-content .three-col-infinity .three-col-content .col-text-infinity h3 {
  color: #193d6a;
  font-family: "barlow-bold";
}

.section-content .three-col-infinity .three-col-content .col-text-infinity span {
  color: #193d6a;
  line-height: 1;
}

.section-content .three-col-infinity .three-col-content .col-text-infinity p {
  line-height: 1;
  color: #193d6a;
  padding-bottom: 0.3125em;
  border-bottom: 1px solid #193d6a;
}

.two-col-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 3.125em;
  margin-top: 3.125em;
}

@media only screen and (max-width: 767px) {
  .two-col-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 1.875em 0;
    padding: 0 0.625em;
  }
}

.two-col-content.chart-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.two-col-content.chart-container .chart-wrapper {
  width: 50%;
}

@media only screen and (max-width: 1440px) {
  .two-col-content.chart-container .chart-wrapper iframe {
    width: 593px !important;
    height: 400px !important;
  }
}

@media screen and (max-width: 1023px) {
  .two-col-content.chart-container .chart-wrapper iframe {
    width: 100% !important;
  }
}

@media only screen and (max-width: 414px) {
  .two-col-content.chart-container .chart-wrapper iframe {
    width: 334px !important;
    height: 400px !important;
    margin: 0 auto;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .two-col-content.chart-container .chart-wrapper {
    width: 100%;
  }
}

.two-col-content.chart-container .chart-wrapper:first-child {
  margin-right: 0.9375em;
}

@media only screen and (max-width: 767px) {
  .two-col-content.chart-container .chart-wrapper:first-child {
    margin-right: 0;
    margin-bottom: 0.9375em;
  }
}

.two-col-content.chart-container .chart-wrapper .flourish-credit {
  display: none;
}

.two-col-content.reverse-col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .two-col-content.reverse-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.two-col-content.reverse-col .text-content-col {
  padding-right: 0 !important;
}

@media only screen and (max-width: 767px) {
  .two-col-content.reverse-col .text-content-col {
    padding-bottom: 0 !important;
  }
}

.two-col-content.reverse-col .image-content-col {
  padding-right: 2.5em;
  padding-left: 2.5em;
  overflow: hidden;
}

.two-col-content.reverse-col .image-content-col img {
  height: 100%;
  width: auto;
}

@media (max-width: 768px) {
  .two-col-content.reverse-col .image-content-col {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .two-col-content.reverse-col .image-content-col {
    padding-right: 0;
    padding-bottom: 40px;
  }
}

.two-col-content.fluid-col .col-container {
  width: auto;
}

.two-col-content.fluid-col .col-container.image-content-col {
  overflow: hidden;
}

.two-col-content.fluid-col .col-container.image-content-col img {
  -o-object-fit: fill;
  object-fit: fill;
}

.two-col-content.text-card-content {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.two-col-content.text-card-content.reverse-col .text-content-col {
  padding-left: 2.5em;
}

@media only screen and (max-width: 991px) {
  .two-col-content.text-card-content.reverse-col .text-content-col {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .two-col-content.text-card-content.reverse-col .text-content-col {
    padding-left: 0px;
    padding-top: 1.875em;
  }
}

.two-col-content.text-card-content.equal-parts .col-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: unset !important;
}

.two-col-content.text-card-content.equal-parts .col-container .text-card-container {
  margin-left: 1.5em;
}

@media screen and (max-width: 414px) {
  .two-col-content.text-card-content.equal-parts .col-container .text-card-container {
    margin-left: 0;
  }
}

.two-col-content.text-card-content.equal-parts .col-container:first-child {
  padding-right: 0 !important;
}

@media screen and (max-width: 820px) {
  .two-col-content.text-card-content.equal-parts .col-container:first-child {
    padding-right: 10px !important;
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  .two-col-content.text-card-content.equal-parts .col-container:first-child {
    padding-right: 10px !important;
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 414px) {
  .two-col-content.text-card-content.equal-parts .col-container:first-child {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.two-col-content.text-card-content .text-content-col {
  width: 40% !important;
}

@media only screen and (max-width: 767px) {
  .two-col-content.text-card-content .text-content-col {
    width: 100% !important;
  }
}

.two-col-content.text-card-content .image-content-col {
  width: 60% !important;
  padding-right: 0 !important;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .two-col-content.text-card-content .image-content-col {
    padding-bottom: 0 !important;
    width: 100% !important;
  }
}

.two-col-content .col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  .two-col-content .col-container {
    width: 100%;
  }
}

.two-col-content .col-container.text-content-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-right: 6.25em !important;
  width: 90%;
}

@media only screen and (max-width: 1440px) {
  .two-col-content .col-container.text-content-col {
    padding-right: 5em !important;
  }
}

@media only screen and (max-width: 991px) {
  .two-col-content .col-container.text-content-col {
    padding-right: 20px !important;
  }
}

@media only screen and (max-width: 820px) {
  .two-col-content .col-container.text-content-col {
    padding-left: 20px !important;
    padding-right: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .two-col-content .col-container.text-content-col {
    padding-right: 20px !important;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .two-col-content .col-container.text-content-col {
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 1.875em;
  }
}

.two-col-content .col-container.image-content-col {
  overflow: hidden;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 2.5em;
  margin-left: -0.3125em;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

@media only screen and (max-width: 1024px) {
  .two-col-content .col-container.image-content-col {
    padding-right: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 820px) {
  .two-col-content .col-container.image-content-col {
    padding-right: 20px;
    width: 60%;
  }
}

@media only screen and (max-width: 768px) {
  .two-col-content .col-container.image-content-col {
    height: 100%;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
}

@media only screen and (max-width: 767px) {
  .two-col-content .col-container.image-content-col {
    width: 100% !important;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 414px) {
  .two-col-content .col-container.image-content-col {
    padding-right: 20px;
    width: 100%;
  }
}

.two-col-content .col-container.image-content-col.image-col-with-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (max-width: 1024px) {
  .text-wrap-desktop .image-content-col {
    width: 50% !important;
  }
}

@media only screen and (max-width: 767px) {
  .text-wrap-desktop .image-content-col {
    width: 100% !important;
  }
}

@media only screen and (max-width: 414px) {
  .text-wrap-desktop {
    display: none !important;
  }
}

.text-wrap-mobile {
  display: none;
}

@media only screen and (max-width: 414px) {
  .text-wrap-mobile {
    margin: 2.1875em auto;
    display: block;
  }
}

.text-wrap-mobile img {
  max-width: 35%;
  margin-right: 10px;
}

@media only screen and (max-width: 414px) {
  .text-wrap-mobile img {
    margin-right: 15px;
  }
}

.text-wrap-mobile p {
  margin: 0 30px;
  margin-left: calc(20px + 2.375em);
}

@media only screen and (max-width: 414px) {
  .text-wrap-mobile p {
    margin-right: 35px;
  }
}

.interactive {
  /*background: #ecefe9;*/
  margin-bottom: 3.875em;
  margin-top: 3.875em;
  position: relative;
  z-index: 99999;
}

@media screen and (max-width: 767px) {
  .interactive {
    margin: 2.5em 0;
  }
}

.interactive.understanding {
  background-color: #fef4f3;
}

/*.interactive.chart-intro {
  padding: 3.125em 0 4.375em !important;
}*/
@media screen and (max-width: 767px) {
  .interactive.chart-intro {
    padding: 1.09375em !important;
  }
}

.interactive.chart-intro .skip-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 30px;
  position: relative !important;
}

.interactive.chart-intro .drag-item-btn {
  margin: 0 !important;
  padding: 3.125em 0;
}

@media screen and (max-width: 1367px) and (min-width: 1024px) {
  .interactive {
    width: 100vw;
    position: relative;
  }
}

@media only screen and (max-width: 414px) {
  .interactive .f_chart11 .chart11-content .chart11-bar-group .bar-item .bar-year-label {
    -webkit-transform: translate(-18px, 10px);
    transform: translate(-18px, 10px);
  }
}

.interactive .feature-interactive .f_interactive-inner {
  padding: 0 0 1.25em !important;
}

.interactive .feature-interactive .f_disc {
  margin: 40px auto 0 !important;
}

.interactive #chart11 {
  width: 100%;
  max-width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .interactive #chart11 {
    padding: 1.09375em !important;
  }
}

@media only screen and (max-width: 820px) {
  .interactive #chart11 .feature-interactive .interactive-header h2 {
    font-size: 2em !important;
  }
}

@media only screen and (max-width: 820px) {
  .interactive #chart11 .feature-interactive .interactive-header p {
    font-size: 1.25em !important;
  }
}

.interactive #chart11 .feature-interactive .f_interactive-inner {
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.interactive #chart11 .feature-interactive .f_interactive-inner .f_chart11 .chart-control-wrap {
  position: relative;
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
}

.interactive .chart-title {
  font-family: 'BarlowCondensedSemiBold';
  font-size: 1.125em;
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
}

.interactive .chart1-detail {
  width: 100%;
}

@media screen and (max-width: 414px) {
  .interactive .chart1-detail {
    margin: 30px auto 0 !important;
  }
}

.interactive .chart1-fact-score {
  margin-left: 10px;
  text-align: center;
}

.interactive .fact-bar-text {
  font-size: 0.875em;
}

.interactive #table2 .reverse-list {
  padding: 0 15px;
}

.interactive #table2 {
  max-width: 1600px;
  margin: 0 auto;
}

@media only screen and (max-width: 1440px) {
  .interactive #table2 {
    max-width: 1380px !important;
  }
}

@media only screen and (max-width: 1366px) {
  .interactive #table2 {
    max-width: 1200px !important;
  }
}

@media only screen and (max-width: 820px) {
  .interactive #table2 {
    padding: 20px;
  }
}

@media only screen and (max-width: 414px) {
  .interactive #table2 {
    padding: 1.25em;
  }
}

@media only screen and (max-width: 1000px) {
  .interactive #table2 .interactive-wrap {
    max-width: 90vw;
  }

  .interactive #table2 .circle-data-btm {
    margin: 0 !important;
  }
}

@media only screen and (max-width: 1400px) {
  .interactive #table2 .interactive-wrap {
    max-width: 90vw;
  }

  .interactive #table2 .circle-inner {
    padding: 10px;
  }

  .interactive #table2 p {
    line-height: 1.3;
    font-size: inherit;
  }

  .interactive #table2 .circle-data-btm {
    margin: 0 !important;
  }
}

@media only screen and (max-width: 1920px) and (min-width: 1440px) {
  .interactive #table2 .interactive-wrap {
    width: 1000px !important;
  }

  .interactive #table2 .reverse-list {
    -ms-grid-columns: (175px)[6];
    grid-template-columns: repeat(6, 175px);
  }

  .interactive #table2 .item-circle {
    width: 180px;
    height: 180px;
  }

  .interactive #table2 .item-circle .circle-inner {
    padding: 10px;
  }

  .interactive #table2 .item-circle .circle-inner .circle-data-header {
    margin-bottom: 10px;
  }

  .interactive #table2 .item-circle .circle-inner .list-data p {
    line-height: 1;
    font-size: 26px;
    margin-bottom: 0;
    font-size: inherit;
  }

  .interactive #table2 .item-circle .circle-inner .list-data-box .list-data {
    font-size: 26px;
    font-family: 'BarlowCondensedRegular';
  }

  .interactive #table2 .item-circle .circle-inner .list-cate p {
    line-height: 1;
    font-size: 15px;
  }

  .interactive #table2 .circle-data-btm {
    margin: 0 !important;
  }
}

.interactive #chart1,
.interactive #table2 {
  margin: 0 auto;
}

@media only screen and (max-width: 1440px) {

  .interactive #chart1,
  .interactive #table2 {
    max-width: 1380px !important;
  }
}

@media only screen and (max-width: 1366px) {

  .interactive #chart1,
  .interactive #table2 {
    max-width: 1200px !important;
  }
}

@media only screen and (max-width: 414px) {

  .interactive #chart1,
  .interactive #table2 {
    padding: 40px 20px !important;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .skip-btn,
  .interactive #table2 .skip-btn {
    margin-right: 3.125em;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .skip-btn,
  .interactive #table2 .skip-btn {
    margin-right: 0;
  }

  .interactive .chart1-fact-score {
    text-align: right;
  }
}

.interactive #chart1 .drag-item-btn,
.interactive #table2 .drag-item-btn {
  margin: 3.125em auto;
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-btn,
  .interactive #table2 .drag-item-btn {
    margin: 60px auto 0;
  }
}

.interactive #chart1 .drag-item-btn a span,
.interactive #table2 .drag-item-btn a span {
  font-size: 20px;
}

.interactive #chart1 .drag-item-list,
.interactive #table2 .drag-item-list {
  margin: 3.125em auto 2.5em;
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-list .dragme:last-child,
  .interactive #table2 .drag-item-list .dragme:last-child {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-list .dragme,
  .interactive #table2 .drag-item-list .dragme {
    margin-left: 5px;
  }
}

@media only screen and (max-width: 768px) {

  .interactive #chart1 .drag-item-list .dragme,
  .interactive #table2 .drag-item-list .dragme {
    width: 7.1875em;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-list .dragme .drag-item,
  .interactive #table2 .drag-item-list .dragme .drag-item {
    padding: 0.625em;
  }
}

@media only screen and (max-width: 768px) {

  .interactive #chart1 .drag-item-list .dragme .drag-item,
  .interactive #table2 .drag-item-list .dragme .drag-item {
    padding: 0.625em;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.interactive #chart1 .drag-item-list .dragme .drag-item p,
.interactive #table2 .drag-item-list .dragme .drag-item p {
  font-family: "Avenir", sans-serif !important;
  font-size: 1.125em !important;
  color: #ffffff !important;
  font-weight: 100 !important;
  line-height: 1.3;
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {

  .interactive #chart1 .drag-item-list .dragme .drag-item p,
  .interactive #table2 .drag-item-list .dragme .drag-item p {
    font-size: 0.875em !important;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-list .dragme .drag-item p,
  .interactive #table2 .drag-item-list .dragme .drag-item p {
    font-size: 0.75em;
  }
}

@media only screen and (max-width: 1366px) {

  .interactive #chart1 .drag-item-list,
  .interactive #table2 .drag-item-list {
    width: 100% !important;
    padding: 0 6%;
  }
}

@media only screen and (max-width: 1200px) {

  .interactive #chart1 .drag-item-list,
  .interactive #table2 .drag-item-list {
    padding: 0 13%;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-list,
  .interactive #table2 .drag-item-list {
    padding: 0 3.125em;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-list,
  .interactive #table2 .drag-item-list {
    padding: 0 15px;
    margin: 3.75em auto;
  }
}

.interactive #chart1 .f_interactive-inner,
.interactive #table2 .f_interactive-inner {
  position: relative;
  padding: 3.75em 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .f_interactive-inner,
  .interactive #table2 .f_interactive-inner {
    padding: 3.125em 0 0;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .f_interactive-inner .interactive-header h2,
  .interactive #table2 .f_interactive-inner .interactive-header h2 {
    font-size: 2.25em;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .f_interactive-inner .interactive-header p,
  .interactive #table2 .f_interactive-inner .interactive-header p {
    font-size: 1.25em;
  }
}

.interactive #chart1 .drag-item-area .ico-sort,
.interactive #table2 .drag-item-area .ico-sort {
  position: relative;
  top: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  font-family: "Avenir", sans-serif;
  font-size: 18px;
  width: 4.375em;
  height: 4.375em;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.interactive #chart1 .drag-item-area .ico-sort.sort-low,
.interactive #table2 .drag-item-area .ico-sort.sort-low {
  left: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.interactive #chart1 .drag-item-area .ico-sort.sort-high,
.interactive #table2 .drag-item-area .ico-sort.sort-high {
  right: 0;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-area .ico-sort.sort-high,
  .interactive #table2 .drag-item-area .ico-sort.sort-high {
    margin-left: 25px;
  }
}

@media only screen and (max-width: 768px) {

  .interactive #chart1 .drag-item-area .ico-sort.sort-high,
  .interactive #table2 .drag-item-area .ico-sort.sort-high {
    margin-left: 15px;
  }
}

.interactive #chart1 .drag-item-area .di-area-inner,
.interactive #table2 .drag-item-area .di-area-inner {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 50px;
}

@media only screen and (max-width: 1440px) {

  .interactive #chart1 .drag-item-area .di-area-inner,
  .interactive #table2 .drag-item-area .di-area-inner {
    width: 100%;
    max-width: 100%;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-area .di-area-inner,
  .interactive #table2 .drag-item-area .di-area-inner {
    padding: 0;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere-preset .drophere-text span,
  .interactive #table2 .drag-item-area .di-area-inner .drophere-preset .drophere-text span {
    font-size: 0.625em;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere-preset .drophere-text p,
  .interactive #table2 .drag-item-area .di-area-inner .drophere-preset .drophere-text p {
    font-size: 0.625em !important;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere-preset .drophere-text::before,
  .interactive #table2 .drag-item-area .di-area-inner .drophere-preset .drophere-text::before {
    width: 2.5em;
    height: 2.5em;
    margin-bottom: 0 !important;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere-preset .drophere-text::before,
  .interactive #table2 .drag-item-area .di-area-inner .drophere-preset .drophere-text::before {
    width: 2.1875em;
    height: 2.1875em;
  }
}

.interactive #chart1 .drag-item-area .di-area-inner .drophere,
.interactive #table2 .drag-item-area .di-area-inner .drophere {
  position: relative;
  width: 9.375em;
  min-width: 9.375em;
  height: 9.375em;
  border-radius: 50%;
  background-color: #ffffff;
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere,
  .interactive #table2 .drag-item-area .di-area-inner .drophere {
    margin-left: 1.5625em !important;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere,
  .interactive #table2 .drag-item-area .di-area-inner .drophere {
    width: 6.25em;
    min-width: 6.25em;
    height: 6.25em;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere,
  .interactive #table2 .drag-item-area .di-area-inner .drophere {
    width: 5em;
    min-width: 5em;
    height: 5em;
  }
}

@media only screen and (max-width: 768px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere,
  .interactive #table2 .drag-item-area .di-area-inner .drophere {
    margin-left: 0.9375em !important;
  }
}

@media only screen and (max-width: 820px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere .drag-item,
  .interactive #table2 .drag-item-area .di-area-inner .drophere .drag-item {
    padding: 0;
  }
}

.interactive #chart1 .drag-item-area .di-area-inner .drophere .drag-item p,
.interactive #table2 .drag-item-area .di-area-inner .drophere .drag-item p {
  font-family: "Avenir", sans-serif !important;
  font-size: 1.125em !important;
  color: #ffffff !important;
  font-weight: 100 !important;
  line-height: 1.3;
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere .drag-item p,
  .interactive #table2 .drag-item-area .di-area-inner .drophere .drag-item p {
    font-size: 0.75em !important;
  }
}

@media only screen and (max-width: 1024px) {

  .interactive #chart1 .drag-item-area .di-area-inner .drophere .drag-item br,
  .interactive #table2 .drag-item-area .di-area-inner .drophere .drag-item br {
    height: 0 !important;
  }
}

#interactive-pop .popup-item-btn .btn-close-pop {
  position: relative !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  height: auto !important;
}

#interactive-pop .popup-item-btn .btn-close-pop span {
  position: relative !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 0.625em 1.875em !important;
}

@media only screen and (max-width: 1366px) {
  #interactive-pop .popup-item-btn .btn-close-pop span {
    font-size: 1em;
  }
}

#interactive-pop .chart1-selected {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 1.875em !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .chart1-selected {
    margin: 0 auto 1.25em !important;
  }
}

#interactive-pop .chart1-selected .drag-item {
  padding: 1.25em !important;
  width: 8.75em !important;
  height: 8.75em !important;
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .chart1-selected .drag-item {
    width: 8.125em !important;
    height: 8.125em !important;
  }
}

@media only screen and (max-width: 1366px) {
  #interactive-pop .chart1-selected .drag-item {
    margin: 0 0.625em !important;
  }
}

@media only screen and (max-width: 1024px) {
  #interactive-pop .chart1-selected .drag-item {
    width: 7.5em !important;
    height: 7.5em !important;
  }
}

#interactive-pop .chart1-selected .drag-item .drag-item-order {
  margin-bottom: 0.4375em;
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .chart1-selected .drag-item .drag-item-order {
    margin-bottom: 0.3125em;
    font-size: 1.5em !important;
  }
}

@media only screen and (max-width: 1366px) {
  #interactive-pop .chart1-selected .drag-item .drag-item-order {
    margin-bottom: 0 !important;
  }
}

@media only screen and (max-width: 1024px) {
  #interactive-pop .chart1-selected .drag-item .drag-item-order {
    font-size: 1.25em !important;
  }
}

#interactive-pop .chart1-selected .drag-item p {
  font-family: "Avenir", sans-serif !important;
  font-size: 0.875em !important;
  color: #ffffff !important;
  font-weight: 100 !important;
  line-height: 1.3;
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .chart1-selected .drag-item p {
    font-size: 0.75em !important;
  }
}

@media only screen and (max-width: 1366px) {
  #interactive-pop .chart1-selected .drag-item p {
    font-size: 0.625em !important;
  }
}

#interactive-pop .pop-container {
  height: auto !important;
  margin: 0 auto !important;
  border-radius: 20px !important;
  background: #ecefe9 !important;
}

#interactive-pop .pop-container .pop-content {
  padding: 2.5em !important;
}

#interactive-pop .pop-container .pop-content .chart-title {
  margin-bottom: 1.25em !important;
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .pop-container .pop-content .chart-title {
    font-size: 1.125em;
  }
}

@media only screen and (max-width: 1024px) {
  #interactive-pop .pop-container .pop-content .chart-title {
    margin-bottom: 0.625em !important;
  }
}

#interactive-pop .pop-container .f_chart11 .chart11-content .chart11-bar-group .bar-item .bar-year-label {
  -webkit-transform: translate(-10px, 10px);
  transform: translate(-10px, 10px);
}

#interactive-pop .pop-container .chart1-source .chart-title {
  margin-bottom: 1.25em !important;
  font-family: 'BarlowCondensedSemiBold';
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .pop-container .chart1-source .chart-title {
    margin-bottom: 0.9375em !important;
  }
}

#interactive-pop .pop-container .chart1-source .chart1-detail {
  width: 100%;
  margin: 30px auto;
  max-width: 600px;
}

@media only screen and (max-width: 1024px) {
  #interactive-pop .pop-container .chart1-source .chart1-detail .score-text {
    font-size: 1em;
  }
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .pop-container .chart1-source .chart1-detail {
    margin: 1.25em auto !important;
  }
}

@media only screen and (max-width: 1366px) {
  #interactive-pop .pop-container .chart1-source .chart1-detail {
    margin: 1.25em auto 0 !important;
  }
}

#interactive-pop .pop-container .chart1-source .chart1-detail .chart-fact-item+.chart1-fact-item {
  margin-top: 0.625em !important;
}

#interactive-pop .pop-container .chart1-source .chart1-detail .fact-bar-group {
  position: relative;
  width: 100%;
  height: 1.5625em;
}

@media only screen and (max-width: 1440px) {
  #interactive-pop .pop-container .chart1-source .chart1-detail .fact-bar-group {
    height: 1.25em !important;
  }
}

#interactive-pop .pop-container .chart1-source .chart1-detail .fact-bar-text {
  font-size: 1em;
}

@media only screen and (max-width: 1024px) {
  #interactive-pop .pop-container .chart1-source .chart1-detail .fact-bar-text {
    font-size: 0.75em;
  }
}

#interactive-pop .pop-container .chart1-source .chart1-detail .f_disc {
  margin: 0 auto;
}

.full-chart-container {
  width: 100%;
  margin-bottom: 3.125em;
}

.full-chart-container .flourish-credit {
  display: none !important;
}

.chapter__5 .single-content-carousel-container .slick-list {
  max-height: 540px;
  height: 540px !important;
}

@media only screen and (max-width: 1440px) {
  .chapter__5 .single-content-carousel-container .slick-list {
    max-height: 605px;
    height: 605px !important;
  }
}

@media only screen and (max-width: 1366px) {
  .chapter__5 .single-content-carousel-container .slick-list {
    max-height: 500px;
    height: 500px !important;
  }
}

@media only screen and (max-width: 820px) {
  .chapter__5 .single-content-carousel-container .slick-list {
    max-height: 700px;
    height: 700px !important;
  }
}

@media only screen and (max-width: 414px) {
  .chapter__5 .single-content-carousel-container .slick-list {
    max-height: 800px;
    height: 800px !important;
  }
}

.chapter__6 .two-col-content .col-container.image-content-col {
  padding-right: 0 !important;
}

.chapter__6 .two-col-content .col-container.text-content-col {
  padding-right: 3.125em !important;
}

@media (max-width: 767px) {
  .chapter__6 .two-col-content .col-container.text-content-col {
    padding-right: 0 !important;
  }
}

.chapter__4 .two-col-content.text-card-content .col-container:first-child {
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .chapter__7 .container-m:last-child {
    margin-bottom: 0 !important;
    padding: 0;
  }
}

.bar-graph-component {
  margin: 3.75em auto 2.1875em;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component {
    width: 100%;
  }
}

.bar-graph-component .bar-graph-container {
  height: 35em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1023px) {
  .bar-graph-component .bar-graph-container {
    height: 28em;
  }
}

@media screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container {
    height: 20em;
  }
}

.bar-graph-component .bar-graph-container .graph-scale-container {
  height: 90%;
  width: 10%;
  border-right: 2px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bar-graph-component .bar-graph-container .graph-scale-container .scale-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container .graph-scale-container .scale-item {
    font-size: 10px;
  }
}

.bar-graph-component .bar-graph-container .graph-scale-container .scale-item:first-child .scale-item-dot {
  top: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.bar-graph-component .bar-graph-container .graph-scale-container .scale-item:last-child .scale-item-dot {
  top: unset;
  bottom: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.bar-graph-component .bar-graph-container .graph-scale-container .scale-item .scale-item-dot {
  right: -8%;
  top: -50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0.625em;
  height: 0.625em;
  border-radius: 50%;
  border: 2px solid #000;
  position: absolute;
  background-color: #fff;
}

.bar-graph-component .bar-graph-container .graph-content-container {
  width: 90%;
  height: 90%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #000;
  padding: 0 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container {
    padding: 0 0.625em;
  }
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 20%;
  margin: 0 1.25em;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container {
    margin: 0 0.625em;
  }
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar {
  height: 100%;
  width: 1.75em;
  border-radius: 0.625em 0.625em 0 0;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.lb-1 {
  height: 92%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.lb-2 {
  height: 70%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.lb-3 {
  height: 85%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.lb-4 {
  height: 98%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.lb-5 {
  height: 95%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.lb-6 {
  height: 90%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.b-1 {
  height: 10%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.b-2 {
  height: 15%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.b-3 {
  height: 19%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.b-4 {
  height: 23%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.b-5 {
  height: 40%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.b-6 {
  height: 45%;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.graph-bar-lb {
  background-color: #37a7db;
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar.graph-bar-b {
  background-color: #193d6a;
}

@media screen and (max-width: 1023px) {
  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar {
    width: 1.25em;
  }
}

@media screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-bar-container .categories-bar-container .graph-bar {
    width: 0.625em;
  }
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-label-container {
  padding: 0 1.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-label-container {
    padding: 0 0.625em;
  }
}

.bar-graph-component .bar-graph-container .graph-content-container .graph-categories-label-container .categories-label-container {
  margin: 0 1.25em;
  width: 20%;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-label-container .categories-label-container {
    margin: 0 0.625em;
  }

  .bar-graph-component .bar-graph-container .graph-content-container .graph-categories-label-container .categories-label-container p {
    font-size: 10px;
  }
}

.bar-graph-component .graph-legend-container {
  width: 90%;
  margin-left: auto;
  padding-top: 2.1875em;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .graph-legend-container {
    width: 100%;
    padding-top: 10px;
  }
}

.bar-graph-component .graph-legend-container .source-text {
  font-size: 10px;
  line-height: 15px;
}

.bar-graph-component .graph-legend-container .legend-wrapper {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .bar-graph-component .graph-legend-container .legend-wrapper {
    padding-bottom: 10px;
  }
}

.bar-graph-component .graph-legend-container .legend-wrapper .legend-text-bar {
  width: 50%;
  text-align: center;
}

.bar-graph-component .graph-legend-container .legend-wrapper .legend-text-bar .legend-bar {
  height: 0.3125em;
  width: 100%;
  margin-bottom: 0.625em;
}

.bar-graph-component .graph-legend-container .legend-wrapper .legend-text-bar .legend-bar.graph-bar-lb {
  background-color: #37a7db;
}

.bar-graph-component .graph-legend-container .legend-wrapper .legend-text-bar .legend-bar.graph-bar-b {
  background-color: #193d6a;
}

.bar-graph-component .graph-legend-container .source-text {
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.text-card-blue {
  width: 100%;
  padding: 2.1875em;
  background: #ebf7ff;
}

.text-card-blue.bg-dark-blue {
  background-color: #1e6ab7;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.text-card-blue.bg-dark-blue p {
  color: #fff;
  line-height: 1.5;
}

.text-card-blue.bg-dark-blue .text-card-content p {
  font-size: 1.25em;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.bg-dark-blue .text-card-content p {
    font-size: 1em;
  }
}

.text-card-blue.bg-dark-blue .text-card-content p.text-bold {
  color: #61cbf4;
}

.text-card-blue.green-outline {
  background-color: #fff;
  border: 1px solid #2B8E68;
}

.text-card-blue.green-outline.outline {
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.green-outline.outline {
    width: 100%;
    margin: 0 auto;
  }
}

.text-card-blue.green-outline.outline .text-card-content p {
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.green-outline.outline .text-card-content p {
    font-size: 1.25em;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .text-card-blue.green-outline {
    width: calc(80% - 20px);
    margin: 0 auto;
  }
}

.text-card-blue.green-outline p {
  line-height: 1.7;
}

.text-card-blue.green-outline .text-card-title p {
  color: #2B8E68;
}

@media screen and (max-width: 767px) {
  .text-card-blue.green-outline .text-card-title p {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 414px) {
  .text-card-blue.green-outline .text-card-title p {
    font-size: 3em !important;
  }
}

.text-card-blue.green-outline .text-card-content p {
  font-size: 1em;
  color: #2B8E68;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.green-outline .text-card-content p {
    font-size: 1em;
  }
}

@media screen and (max-width: 767px) {
  .text-card-blue.green-outline .text-card-content p {
    font-size: 0.875em;
  }
}

.text-card-blue.bg-white {
  background-color: #fff;
  border: 1px solid #1e6ab7;
}

.text-card-blue.bg-white.outline {
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.bg-white.outline {
    width: 100%;
    margin: 0 auto;
  }
}

.text-card-blue.bg-white.outline .text-card-content p {
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.bg-white.outline .text-card-content p {
    font-size: 1.25em;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .text-card-blue.bg-white {
    width: calc(80% - 20px);
    margin: 0 auto;
  }
}

.text-card-blue.bg-white p {
  line-height: 1.7;
}

.text-card-blue.bg-white .text-card-title p {
  color: #006ab7;
}

@media screen and (max-width: 414px) {
  .text-card-blue.bg-white .text-card-title p {
    font-size: 3em !important;
  }
}

.text-card-blue.bg-white .text-card-content p {
  font-size: 1em;
  color: #1e6ab7;
}

@media screen and (max-width: 1023px) {
  .text-card-blue.bg-white .text-card-content p {
    font-size: 1em;
  }
}

.text-card-blue p {
  color: #006ab7;
}

.text-card-blue .text-card-title p {
  line-height: 1;
  font-size: 3.75em !important;
  margin-bottom: 0.3125em !important;
}

@media screen and (max-width: 1024px) {
  .text-card-blue .text-card-title p {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 414px) {
  .text-card-blue .text-card-title p {
    font-size: 3em !important;
  }
}

.text-card-blue .text-card-content p {
  font-size: 1.25em;
  margin-bottom: 0 !important;
}

.image-text-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 3.125em;
  margin-top: 3.125em;
}

@media screen and (max-width: 767px) {
  .image-text-card {
    margin: 3.125em 0;
  }
}

.image-text-card .image-container {
  width: 55%;
  margin-right: 1.5em;
  overflow: hidden;
}

.image-text-card .image-container.wide {
  width: 70%;
}

.image-text-card .image-container img {
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .image-text-card .image-container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    min-height: unset !important;
    height: 12.5em;
    -webkit-transform: scale(1.2) !important;
    transform: scale(1.2) !important;
  }
}

@media only screen and (max-width: 414px) {
  .image-text-card .image-container {
    margin-top: 3.4375em !important;
    width: 100% !important;
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
    margin-bottom: 0;
  }
}

.image-text-card .text-card-container {
  width: 45%;
}

@media only screen and (max-width: 767px) {
  .image-text-card .text-card-container {
    width: 100%;
    margin-top: 3.125em;
  }
}

.image-text-card .text-card-container.solid-bg {
  width: 55%;
}

@media only screen and (max-width: 767px) {
  .image-text-card .text-card-container.solid-bg {
    width: 100%;
    margin-top: 1.875em;
  }
}

@media only screen and (max-width: 414px) {
  .image-text-card .text-card-container.solid-bg {
    width: 100%;
    margin-top: 15px;
    padding: 0;
  }
}

@media only screen and (max-width: 414px) {
  .image-text-card .text-card-container {
    padding: 30px 0;
    margin-top: 0;
  }
}

.image-text-card.reverse-col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .image-text-card.reverse-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.image-text-card.reverse-col .image-container {
  margin-right: 0;
  width: 55%;
}

.image-text-card.reverse-col .text-card-container {
  margin-right: 1.5em;
}

@media only screen and (max-width: 767px) {
  .image-text-card.reverse-col .text-card-container {
    width: 100%;
    margin-bottom: 1.5625em;
  }
}

@media only screen and (max-width: 414px) {
  .image-text-card.reverse-col .text-card-container {
    margin-right: 0 !important;
  }
}

.image-text-card.bigger-image .image-container {
  min-height: 21.875em;
  overflow: hidden;
}

.image-text-card.bigger-image .image-container.bigger-container {
  min-height: 25em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1366px) {
  .image-text-card.bigger-image .image-container.bigger-container {
    min-height: 28.125em;
  }
}

.image-text-card.bigger-image .image-container img {
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1366px) {
  .image-text-card.bigger-image .image-container img {
    height: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .image-text-card.bigger-image .image-container {
    min-height: 18.75em;
  }
}

@media screen and (max-width: 1023px) {
  .image-text-card.bigger-image .image-container {
    min-height: 17.5em;
  }
}

.image-text-card.bigger-image .text-card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .image-text-card.bigger-image.tablet-longer .image-container img {
    height: 100%;
  }
}

.image-text-card.image-wrapped {
  display: block;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.image-text-card.image-wrapped .image-container {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  float: right;
  margin: 0 0 1.5em 1.5em;
}

.image-text-card.image-wrapped.float-left .image-container {
  float: left;
  margin: 0 1.5em 1.5em 0;
}

@media screen and (max-width: 1199px) {

  .image-text-card.image-wrapped,
  .image-text-card.centered-vertically {
    width: 100% !important;
    -webkit-transform: none !important;
    transform: none !important;
    left: unset !important;
  }
}

@media screen and (max-width: 767px) {
  .image-text-card.image-wrapped {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .image-text-card.image-wrapped .image-container {
    float: none;
    margin: 4.125em 0 2.75em !important;
  }
}

@media screen and (max-width: 414px) {
  .image-text-card.image-wrapped.indent {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 414px) {
  .image-text-card.image-wrapped.indent p {
    margin-left: 2.375em;
  }
}

.image-text-card.centered-vertically {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .image-text-card.centered-vertically {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .image-text-card.centered-vertically .image-container {
    float: none;
    margin: 1.875em 0;
  }
}

@media only screen and (max-width: 767px) {
  .image-text-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 414px) {
  .image-text-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 1023px) {
  .image-text-card:not(.bigger-image) {
    position: relative;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.new-qoute-container {
  margin-top: 3.125em;
  margin-bottom: 3.125em;
}

.new-qoute-container.reduce-margin {
  margin-bottom: 1.0625em;
}

@media only screen and (max-width: 767px) {
  .new-qoute-container {
    width: 100%;
    margin-top: 1.875em;
    margin-bottom: 1.875em;
  }
}

.new-qoute-container.desktop {
  display: block;
}

@media only screen and (max-width: 767px) {
  .new-qoute-container.desktop {
    display: none;
  }
}

.new-qoute-container.mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .new-qoute-container.mobile {
    display: block;
  }
}

.new-qoute-container .new-qoute-text {
  margin-bottom: 2.5em;
  position: relative;
  padding-left: 5.9375em;
}

@media only screen and (max-width: 414px) {
  .new-qoute-container .new-qoute-text {
    padding-left: 60px;
  }
}

@media screen and (max-width: 767px) {
  .new-qoute-container .new-qoute-text {
    margin-bottom: 1.875em;
  }
}

.new-qoute-container .new-qoute-text::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../images/icon02.png) no-repeat;
  background-size: cover;
  width: 3.125em;
  height: 2em;
}

.new-qoute-container .new-qoute-text h3 {
  font-size: 1.875em;
  font-family: "barlow-bold";
  color: #A7C13F;
}

@media (max-width: 767px) {
  .new-qoute-container .new-qoute-text h3 {
    font-size: 22px;
  }
}

.new-qoute-container .new-qoute-author {
  padding-left: 5.9375em;
}

.new-qoute-container .new-qoute-author p {
  line-height: 1.5;
  font-weight: 1000;
}

@media only screen and (max-width: 414px) {
  .new-qoute-container .new-qoute-author {
    padding-left: 60px;
  }
}

.center-quote-container {
  width: 100%;
  margin-left: auto;
  margin-bottom: 3.125em;
  margin-top: 3.125em;
}

@media only screen and (max-width: 767px) {
  .center-quote-container {
    width: 100%;
  }
}

@media only screen and (max-width: 414px) {
  .center-quote-container {
    margin-top: 1.875em;
    margin-bottom: calc(1.875em + 0.625em);
  }
}

.center-quote-container .center-quote-text {
  position: relative;
}

.center-quote-container .center-quote-text h3 {
  font-size: 1.875em;
  font-family: "barlow-bold";
  color: #006ab7;
  text-align: center;
}

@media (max-width: 767px) {
  .center-quote-container .center-quote-text h3 {
    font-size: 22px;
  }
}

.qoute-container {
  padding: 1.875em 5em;
  border-top: 2px solid #80bca5;
  border-bottom: 2px solid #80bca5;
  text-align: center;
}

.qoute-container .qoute-text {
  margin-bottom: 2.5em;
  position: relative;
}

.qoute-container .qoute-text::before {
  content: "";
  position: absolute;
  left: -7%;
  background: url(../images/icon02.png) no-repeat;
  background-size: cover;
  width: 3.125em;
  height: 2em;
}

.qoute-container .qoute-text::after {
  content: "";
  position: absolute;
  right: -7%;
  background: url(../images/icon02.png) no-repeat;
  background-size: cover;
  width: 3.125em;
  height: 2em;
}

.qoute-container .qoute-text h3 {
  font-size: 1.875em;
  font-family: "barlow-bold";
  color: #A7C13F;
}

.horizontal-divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.horizontal-divider .bar {
  width: 50%;
  height: 0.9375em;
}

.horizontal-divider .blue-bar {
  background-color: #dff3fd;
}

.horizontal-divider .green-bar {
  background-color: #eef5e0;
}

.button-tabset {
  width: 90%;
  margin: 3.75em auto 1.0625em;
}

@media screen and (max-width: 767px) {
  .button-tabset {
    margin-top: 1.875em;
  }
}

.button-tabset .tabset-outer-wrapper {
  overflow-y: hidden;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .button-tabset .tabset-outer-wrapper {
    overflow-x: scroll;
  }
}

.button-tabset .tabset-button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .button-tabset .tabset-button-container {
    width: 800px;
    padding-left: 32%;
    padding-right: 32%;
  }
}

.button-tabset .tabset-button-container .tabset-button-wrapper {
  padding-bottom: 3.125em;
  position: relative;
  width: 100%;
  margin: 0 2.1875em;
}

@media screen and (max-width: 820px) {
  .button-tabset .tabset-button-container .tabset-button-wrapper {
    margin-right: 0.625em;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .button-tabset .tabset-button-container .tabset-button-wrapper {
    margin: 0 0.375em;
  }
}

.button-tabset .tabset-button-container .tabset-button-wrapper:hover .tabset-button {
  background-color: #193d6a;
}

.button-tabset .tabset-button-container .tabset-button-wrapper:hover .tabset-button .tabset-button-text p,
.button-tabset .tabset-button-container .tabset-button-wrapper:hover .tabset-button .tabset-button-text small {
  color: #fff;
}

.button-tabset .tabset-button-container .tabset-button-wrapper:hover .tabset-button .tabset-button-text p {
  margin-bottom: 0 !important;
}

.button-tabset .tabset-button-container .tabset-button-wrapper:first-child {
  margin-left: 0;
}

.button-tabset .tabset-button-container .tabset-button-wrapper:last-child {
  margin-right: 0;
}

.button-tabset .tabset-button-container .tabset-button-wrapper.active-tab .tabset-button {
  background-color: #193d6a;
}

.button-tabset .tabset-button-container .tabset-button-wrapper.active-tab .tabset-button .tabset-button-text p,
.button-tabset .tabset-button-container .tabset-button-wrapper.active-tab .tabset-button .tabset-button-text small {
  color: #fff;
}

.button-tabset .tabset-button-container .tabset-button-wrapper.active-tab .tabset-button-arrow {
  display: block;
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1.5625em 0.9375em;
  background-color: #fff;
  border-radius: 0.625em;
  cursor: pointer;
}

@media screen and (max-width: 414px) {
  .button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button {
    padding: 0.625em 0;
  }
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button .tabset-button-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button .tabset-button-text p {
  font-size: 1.25em;
  margin: 0 !important;
}

@media screen and (max-width: 414px) {
  .button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button .tabset-button-text p {
    font-size: 1.1em;
  }
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button .tabset-button-text p,
.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button .tabset-button-text small {
  line-height: 1;
}

@media screen and (max-width: 414px) {
  .button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button .tabset-button-text small {
    font-size: 12px;
  }
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button-arrow {
  display: none;
  position: absolute;
  left: 50%;
  bottom: -1px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button-arrow .arrow {
  width: 0px;
  height: 0px;
  position: relative;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 25px solid #37A7DB;
}

.button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button-arrow .arrow::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 23px solid #fff;
  top: 2.5px;
  left: -50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button-arrow .arrow {
    border: none;
  }

  .button-tabset .tabset-button-container .tabset-button-wrapper .tabset-button-arrow .arrow::before {
    content: none;
  }
}

.button-tabset .tabset-content-container {
  padding: 3.125em 3.75em;
  border: 1px solid #37A7DB;
  background-color: #fff;
  overflow: hidden;
}

@media only screen and (max-width: 820px) {
  .button-tabset .tabset-content-container {
    padding: 2.8125em !important;
  }
}

@media only screen and (max-width: 767px) {
  .button-tabset .tabset-content-container {
    padding: 15px;
    position: relative;
    overflow: visible;
  }

  .button-tabset .tabset-content-container::before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 25px solid #37A7DB;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
  }

  .button-tabset .tabset-content-container::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 23px solid #fff;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
  }
}

@media only screen and (max-width: 414px) {
  .button-tabset .tabset-content-container {
    padding: 1.25em !important;
  }
}

.button-tabset .tabset-content-container .tabset-content-wrapper {
  display: none;
}

.button-tabset .tabset-content-container .tabset-content-wrapper .section-content-subtitle {
  margin-bottom: 2.1875em;
}

.button-tabset .tabset-content-container .tabset-content-wrapper .section-content-subtitle h2 {
  font-size: 1.625em;
}

@media only screen and (max-width: 414px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .section-content-subtitle {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0.9375em;
  }
}

@media only screen and (max-width: 414px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .section-content-subtitle .subtitle-2 {
    font-size: 13px;
  }
}

.button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content {
  margin: 0 !important;
}

.button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container {
  width: 50%;
}

@media only screen and (max-width: 414px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container {
    width: 100% !important;
  }
}

.button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container:first-child {
  padding-right: 3.125em !important;
}

@media only screen and (max-width: 1366px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container:first-child {
    width: 60%;
  }
}

@media only screen and (max-width: 820px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container:first-child {
    padding-right: 1.875em !important;
    padding-left: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container:first-child {
    padding-right: 0 !important;
    padding-bottom: 1.875em !important;
  }
}

.button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container:last-child {
  padding-right: 0 !important;
}

@media only screen and (max-width: 1366px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container:last-child {
    width: 40%;
  }
}

.button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content .col-container.image-content-col {
  height: 18.4375em;
}

@media only screen and (max-width: 414px) {
  .button-tabset .tabset-content-container .tabset-content-wrapper .two-col-content {
    padding: 0;
  }
}

.button-tabset .tabset-content-container .tabset-content-wrapper.active-tab {
  display: block;
}

.side-tabset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 63.125em;
  margin: 0 auto 3.125em;
}

@media only screen and (max-width: 1440px) {
  .side-tabset {
    max-width: 56.25em;
  }
}

@media screen and (max-width: 1150px) {
  .side-tabset {
    max-width: 100%;
    padding: 0 3.125em;
  }
}

@media screen and (max-width: 820px) {
  .side-tabset {
    max-width: 100%;
    padding: 0 3.125em;
  }
}

@media screen and (max-width: 768px) {
  .side-tabset {
    padding: 0 1.25em;
  }
}

@media screen and (max-width: 767px) {
  .side-tabset {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 414px) {
  .side-tabset {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.875em 2.1875em 1.875em 2.8125em;
    background-color: #f1f1f2;
    width: 100%;
  }
}

.side-tabset .side-tabset-button-container {
  width: 25%;
  margin-right: 1.875em;
  padding: 1.875em 2.1875em;
  padding-left: 0;
}

@media only screen and (max-width: 820px) {
  .side-tabset .side-tabset-button-container {
    width: 35%;
  }
}

@media only screen and (max-width: 414px) {
  .side-tabset .side-tabset-button-container {
    padding: 0;
    width: 100%;
  }
}

.side-tabset .side-tabset-button-container .side-tabset-button-title {
  display: inline-block;
  border-bottom: 1px solid #000;
  margin-bottom: 2.5em;
}

@media only screen and (max-width: 414px) {
  .side-tabset .side-tabset-button-container .side-tabset-buttons-desktop {
    display: none;
  }
}

.side-tabset .side-tabset-button-container .side-tabset-buttons-mobile {
  display: none;
}

@media only screen and (max-width: 414px) {
  .side-tabset .side-tabset-button-container .side-tabset-buttons-mobile {
    display: block;
    margin-bottom: 1.875em;
  }
}

@media only screen and (max-width: 767px) {
  .side-tabset .side-tabset-button-container .side-tabset-buttons-mobile {
    margin-bottom: 0;
  }
}

.side-tabset .side-tabset-button-container .side-tabset-buttons-mobile .ui-selectmenu-button {
  background-color: transparent;
  height: 70px;
  width: 100%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  border: 2px #006ab7 solid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.side-tabset .side-tabset-button-container .side-tabset-buttons-mobile .ui-selectmenu-button .ui-selectmenu-icon {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
  margin-top: 10px;
}

.side-tabset .side-tabset-button-container .side-tabset-buttons-mobile .ui-selectmenu-button span {
  font-family: "avenir-black";
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  cursor: pointer;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper.active-tab .side-tabset-button-line {
  background-color: #006ab7;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper.active-tab .side-tabset-button-text p {
  color: #006ab7;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper:hover .side-tabset-button-line {
  background-color: #006ab7;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper:hover .side-tabset-button-text p {
  color: #006ab7;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper .side-tabset-button-line {
  width: 5px;
  height: auto;
  background-color: #81b5db;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper .side-tabset-button-text {
  padding: 0.9375em 0;
  width: 90%;
}

.side-tabset .side-tabset-button-container .side-tabset-button-wrapper .side-tabset-button-text p {
  color: #bfbdbd;
}

.side-tabset .side-tabset-content-container {
  width: 75%;
  border-radius: 1.25em;
  padding: 2.6875em 2.1875em;
  background-color: #f1f1f2;
}

.side-tabset .side-tabset-content-container.side-tabset-country {
  padding: 1.25em 2.1875em 2.5em;
}

.side-tabset .side-tabset-content-container .plus-para {
  margin-bottom: 1.25em;
  visibility: visible !important;
  opacity: 1 !important;
}

.side-tabset .side-tabset-content-container .title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.5em;
}

.side-tabset .side-tabset-content-container .title-wrap h2 {
  color: #006ab7;
  line-height: 1;
  font-size: 2.5em;
}

@media only screen and (max-width: 414px) {
  .side-tabset .side-tabset-content-container .title-wrap h2 {
    font-size: 2em;
  }
}

.side-tabset .side-tabset-content-container .title-wrap .flag-img {
  height: auto;
  width: 40px;
  margin-left: 10px;
}

@media only screen and (max-width: 414px) {
  .side-tabset .side-tabset-content-container .title-wrap .flag-img {
    width: 35px;
  }
}

.side-tabset .side-tabset-content-container .para-text {
  margin-bottom: 2.25em;
}

@media only screen and (max-width: 991px) {
  .side-tabset .side-tabset-content-container {
    width: 100%;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .side-tabset .side-tabset-content-container {
    width: 100%;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .side-tabset .side-tabset-content-container {
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 414px) {
  .side-tabset .side-tabset-content-container {
    padding: 0 !important;
  }
}

.side-tabset .side-tabset-content-container .side-tabset-content-title {
  display: inline-block;
  border-bottom: 1px solid #000;
  margin-bottom: 2.5em;
}

.side-tabset .side-tabset-content-container .side-tabset-content-wrapper {
  display: none;
}

.side-tabset .side-tabset-content-container .side-tabset-content-wrapper.active-tab {
  display: block;
}

.side-tabset .side-tabset-content-container .side-tabset-content-wrapper .image-banner {
  margin-bottom: 0;
}

.indent {
  margin-bottom: 2.5em;
}

@media only screen and (max-width: 1440px) {
  .indent {
    margin-left: 1.875em;
  }
}

@media only screen and (max-width: 1366px) {
  .indent {
    margin-left: 2.1875em;
  }
}

@media only screen and (max-width: 820px) {
  .indent {
    margin-left: 2.5em;
    margin-bottom: 1.25em;
  }
}

@media only screen and (max-width: 768px) {
  .indent {
    margin-left: 1.875em;
  }
}

@media only screen and (max-width: 767px) {
  .indent {
    margin-left: 2.375em;
    margin-bottom: 0.625em;
  }
}

@media only screen and (max-width: 414px) {
  .indent {
    margin: 0;
  }
}

.indent.ml-0 {
  margin-left: 0;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 1.0625em;
}

.slick-dots li {
  margin: 0 0.4375em;
  background-color: #dddddd;
  width: 0.9375em;
  height: 0.9375em;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slick-dots li:first-child {
  margin-left: 0;
}

.slick-dots li:last-child {
  margin-right: 0;
}

.slick-dots li.slick-active {
  background-color: #006ab7;
}

.slick-dots li button {
  opacity: 0;
  width: 0.9375em;
  height: 0.9375em;
  cursor: pointer;
}

@media only screen and (max-width: 414px) {
  #side-tabset-menu {
    width: 344px;
  }
}

.body-content {
  /*padding-bottom: 8.75em;*/
  min-height: 100%;
}

@media screen and (max-width: 1599px) {
  .indented-content {
    padding-left: 2.25em !important;
  }
}

@media screen and (max-width: 1024px) {
  .indented-content {
    padding-left: 6.25em !important;
  }

  .indented-content .two-col-content.text-card-content.equal-parts .col-container:first-child {
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .indented-content {
    padding-left: 3.5em !important;
  }
}

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

.two-column-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.two-column-img .image-banner {
  width: 50%;
  height: auto;
}

.two-column-img .image-banner:first-child {
  margin-right: 15px;
}

.carousel-align {
  padding-left: 10px;
}

@media screen and (max-width: 1440px) {
  .carousel-align {
    padding-left: 40px;
  }
}

@media screen and (max-width: 1366px) {
  .carousel-align {
    padding-left: 46px;
  }
}

@media screen and (max-width: 1024px) {
  .carousel-align {
    padding-left: 28px;
  }
}

@media screen and (max-width: 820px) {
  .carousel-align {
    padding: 0 126px;
  }
}

@media screen and (max-width: 414px) {
  .carousel-align {
    padding-left: 60px;
  }
}

.boxed-title h3 {
  font-size: 1.5em !important;
}

.side-tabset-content-container .para-text {
  margin-bottom: 1.75em !important;
}

.side-tabset-content-container .plus-para {
  margin-bottom: 1.25em !important;
}

.flourish-footer-text {
  text-align: center !important;
}

.one-align-padding {
  padding-left: 0.4em;
}

.bg-light-green {
  padding-top: 3.875em;
  padding-bottom: 3.875em;
  margin-top: 3.875em;
  background-color: #EEF5E0;
}

@media screen and (max-width: 820px) {
  .bg-light-green {
    padding: 2em 0;
    margin-top: 2em;
  }
}

#chart1,
#chart1 .f_interactive-inner {
  padding: 0 !important;
}

.f_disc {
  text-align: center;
}

@media screen and (max-width: 414px) {
  .f_disc {
    margin: 20px auto 0 !important;
  }
}

@media (max-width: 767px) {
  .mobile-remove-margin {
    margin-left: 0 !important;
    padding-right: 0;
  }
}

.header-container {
  background-color: #fff;
  position: relative;
  z-index: 100;
}

.header-container .header-wrapper,
.header-container .subheader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.75em 2em;
  max-width: 100em;
  margin: 0 auto;
}

.header-container .header-wrapper {
  background: white;
  position: relative;
}

.header-container .header-wrapper::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background: white;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header-container .header-menu,
.header-container .header-logo {
  position: relative;
  z-index: 1;
}

.header-container .header-menu {
  background-color: #fff;
}

.header-container .header-menu__mobile-wrapper {
  display: none;
}

.header-container .header-logo {
  max-width: 7em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-container .header-logo img {
  width: 100%;
}

.header-container .menu-item {
  color: rgb(13, 13, 13);
  font-size: 0.875em;
  font-family: "econ-sans-light", sans-serif;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.header-container .menu-item:hover {
  border-bottom: 1px solid #d7d7d7;
}

.header-container .menu-item:not(:last-child) {
  margin-right: 2.5em;
}

.header-container .bggray {
  background-color: rgb(242, 242, 242);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}

.header-container .nav__mobile-bg {
  position: fixed;
  top: 0;
  overflow: hidden;
  width: 14.375em;
  height: 100vh;
  right: -100vw;
  background: white;
  z-index: 100;
  -webkit-box-shadow: 4px 2px 16px 0px #d1d1d1;
  box-shadow: 4px 2px 16px 0px #d1d1d1;
}

.header-container #toggle-sponsored-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "econ-sans-medium", sans-serif;
  font-size: 0.875em;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
}

.header-container #toggle-sponsored-text span {
  width: 20px;
  height: 20px;
  padding: 2px;
  margin-left: 4px;
}

.header-container #toggle-sponsored-text .tooltip-container {
  position: absolute;
  height: auto;
  width: 56.25em;
  background: black;
  padding: 1em 1.5em;
  letter-spacing: initial;
  top: 2.5em;
  color: white;
  font-size: 94%;
  left: -0.625em;
  display: none;
  font-family: "avenir-light", "econ-sans", sans-serif;
}

.header-container #toggle-sponsored-text .tooltip-container::before {
  border-left: 6px solid rgba(255, 255, 255, 0);
  border-right: 6px solid rgba(255, 255, 255, 0);
  border-bottom: 6px solid black;
  top: -6px;
  z-index: 1;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 1.25em;
  display: block;
}

.header-container #toggle-sponsored-text:hover .tooltip-container {
  display: block;
}

.header-container #sponsored-text-container {
  display: none;
}

.header-container .sponsor-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-container .sponsor-wrapper p {
  font-family: "econ-sans-medium", sans-serif;
  font-size: 0.875em;
  margin: 0 0.5625em 0;
}

.header-container .sponsor-wrapper .multiple-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-container .sponsor-wrapper .multiple-logo .client-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 4.75em;
}

.header-container .sponsor-wrapper .multiple-logo .client-logo img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .header-container .header-menu {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 14.375em;
    position: fixed;
    top: 0;
    right: -100vw;
    padding: 6.25em 2.25em 2.5em;
    z-index: 101;
  }

  .header-container .header-menu .header-wrapper {
    position: relative;
  }

  .header-container .header-menu a {
    font-size: 0.9375em;
    font-weight: bold;
    padding: 0.875em 0;
  }

  .header-container .header-menu__mobile-wrapper {
    z-index: 101;
    display: block;
  }

  .header-container .nav__burger {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333333;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .header-container .nav__burger:not(:last-child) {
    margin-bottom: 5px;
  }

  .header-container .nav__burger:first-child {
    -webkit-transform-origin: 3px 0px;
    transform-origin: 3px 0px;
  }

  .header-container .nav__burger:last-child {
    -webkit-transform-origin: 4px 2px;
    transform-origin: 4px 2px;
  }

  .header-container .nav__footer {
    background: black;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.625em 1.5em 2.25em;
  }

  .header-container .nav__footer a {
    font-size: 0.75em;
    text-transform: uppercase;
    padding: 0.875em 0;
    color: white;
    font-family: "econ-sans-bold", sans-serif;
  }

  .header-container .nav__overlay {
    background: rgba(0, 0, 0, 0.239);
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform-origin: right;
    transform-origin: right;
    z-index: 99;
    display: none;
  }

  .header-container.active-mobile .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header-container.active-mobile .header-menu__mobile-wrapper {
    position: fixed;
    right: 1.25em;
  }

  .header-container.active-mobile .nav__burger:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header-container.active-mobile .nav__burger:nth-child(2) {
    opacity: 0;
  }

  .header-container.active-mobile .nav__burger:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.section-footer {
  background-color: rgb(13, 13, 13);
  border-top: 0.4em solid #e3120b;
  padding: 2em 3.75em;
  z-index: 99999;
  position: relative;
  margin-top: auto;
}

.section-footer .ec-footer {
  max-width: 100em;
  margin: 0 auto;
}

.section-footer .footer-flex {

  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0px;
  margin: 0px;
  justify-content: left;
  text-align: left !important;
}

.section-footer .footer-item {
  color: #fff;
  font-size: 0.8125em;
  text-decoration: none;
}

.section-footer .footer-item.top-link {
  font-family: "econ-sans-medium", sans-serif;
  font-size: 0.875em;
}

.section-footer ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.section-footer ul li:hover {
  border-bottom: 1px solid #d7d7d7;
}

.section-footer ul li:not(:last-child) {
  margin-right: 2em;
}

.section-footer .top-links-wrapper {
  border-bottom: 1px solid rgb(179, 179, 179);
}

.section-footer .bottom-links-wrapper {
  margin-top: 1em;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.section-footer .bottom-links-wrapper .footer-item {
  color: rgb(179, 179, 179);
}

.section-footer .copyright {
  font-size: 0.8125em;
  color: rgb(179, 179, 179);
}

.section-footer .copyright p {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .section-footer {
    padding-right: 1.25em;
    padding-left: 1.25em;
  }

  .section-footer .bottom-links-wrapper .footer-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .section-footer .bottom-links-wrapper .footer-flex li {
    padding: 0.625em 0;
  }

  .section-footer .footer-item,
  .section-footer .footer-item.top-link,
  .section-footer .copyright {
    font-size: 0.9375em;
  }
}



@media screen and (max-width: 980px) {
  .section-footer .bottom-links-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center !important;
  }

  .section-footer .footer-flex {
    justify-content: center;
    text-align: center !important;
    margin-bottom: 20px;
  }

  .section-footer .bottom-links-wrapper .footer-flex li {
    padding: 4px 0;
  }

}


.btn__wrapper {
  background-color: #f2f2f2;
  text-align: center;
  padding: 10px 0;
}

.btn__wrapper a {
  text-decoration: underline;
}

.back-to-top-btn {
  color: #000;
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  -webkit-transition: 0.45s;
  transition: 0.45s;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 600px) {
  .back-to-top-btn {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .back-to-top-btn {
    font-size: 14px;
  }
}

.section-hero {
  height: 100vh;
  background-color: #1c1f32;
}

@media only screen and (max-width: 1024px) {
  .section-hero {
    height: 100vh;
  }
}

.section-hero .container {
  padding: 0 !important;
}

.section-hero .hero {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1023px) {
  .section-hero .hero {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 87px;
  }
}

.section-hero .hero .hero-earth-container {
  position: absolute;
  left: 12%;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 13%;
  z-index: -1;
}

@media only screen and (max-width: 1366px) {
  .section-hero .hero .hero-earth-container {
    top: 8%;
  }
}

@media only screen and (max-width: 1023px) {
  .section-hero .hero .hero-earth-container {
    top: 50%;
    left: 0;
  }
}

.section-hero .hero .hero-earth-container #earth-hero {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.section-hero .hero .hero-content-container {
  /*padding: 0 5.625em;
  margin-top: 8em;*/
  padding-left: 4em;
  top: 55%;
  transform: translateY(-50%);
  position: absolute;
}

@media only screen and (max-width: 991px) and (max-height: 1024px) {
  .section-hero .hero .hero-content-container {
    margin-top: 87px;
  }
}

@media only screen and (max-width: 991px) and (max-height: 850px) {
  .section-hero .hero .hero-content-container {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .section-hero .hero .hero-content-container {
    padding: 0 1.25em;
  }
}

@media only screen and (max-width: 1023px) {
  .section-hero .hero .hero-content-container .hero-heading-wrapper {
    width: 100%;
    margin-top: -150px;
  }
}

.section-hero .hero .hero-content-container .hero-heading-wrapper h2 {
  color: #a8c23f;
  font-size: 3.125em;
}

@media only screen and (max-width: 500px) {
  .section-hero .hero .hero-content-container .hero-heading-wrapper h2 {
    font-size: 30px;
  }
}

.section-hero .hero .hero-content-container .hero-heading-wrapper h1 {
  text-transform: uppercase;
  color: #a8c23f;
  font-size: 4.1875em;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .section-hero .hero .hero-content-container .hero-heading-wrapper h1 {
    font-size: 3.125em;
  }
}

.section-hero .hero .hero-content-container .hero-heading-logo-wrapper {
  display: none;
  margin-top: 50px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1023px) {
  .section-hero .hero .hero-content-container .hero-heading-logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 1.25em;
    bottom: 1.25em;
    margin-top: 1.25em;
  }
}

@media screen and (max-width: 767px) {
  .section-hero .hero .hero-content-container .hero-heading-logo-wrapper {
    position: unset;
  }
}

.section-hero .hero .hero-content-container .hero-heading-logo-wrapper .fixed-logo {
  width: 11.25em;
}

.section-hero .hero .hero-logo-container {
  position: absolute;
  padding: 0.625em;
  bottom: 0.625em;
  right: 0.625em;
  width: 11.25em;
  opacity: 0;
  margin-right: 1.6875em;
}

.section-hero .hero .hero-logo-container .fixed-logo img {
  width: 100%;
}

@media only screen and (max-width: 1440px) {
  .section-hero .hero .hero-logo-container {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-hero .hero .hero-logo-container {
    width: 10em;
  }
}

@media only screen and (max-width: 414px) {
  .section-hero .hero .hero-logo-container {
    margin-left: 0.3125em;
    margin-right: 0;
    -webkit-transform: translate(0px, -25vh) !important;
    transform: translate(0px, -25vh) !important;
  }
}

.preloader {
  width: 100vw;
  height: 100vh;
  background-color: #1c1f32;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1501;
  opacity: 0;
}

.preloader.preloader-hide {
  pointer-events: none;
  display: none;
}

.preloader .container {
  padding: 0;
}

.preloader .container .section-content {
  height: 100%;
}

.preloader .container .section-content .preloader-container {
  position: relative;
  overflow: hidden;
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.5625em;
  margin: 0 auto;
}

.preloader .container .section-content .preloader-container .iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

@media only screen and (max-width: 991px) {
  .preloader .container .section-content .preloader-container .iframe-container {
    top: 10%;
  }
}

.preloader .container .section-content .preloader-container .prealoader-content-container {
  width: 100%;
  padding-top: 2.5em;
}

@media only screen and (max-width: 991px) {
  .preloader .container .section-content .preloader-container .prealoader-content-container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.preloader .container .section-content .preloader-container .prealoader-content-container .heading-wrapper {
  font-size: 80%;
}

@media only screen and (max-width: 991px) {
  .preloader .container .section-content .preloader-container .prealoader-content-container .heading-wrapper {
    width: 100%;
    margin-top: 30px;
  }
}

.preloader .container .section-content .preloader-container .prealoader-content-container .heading-wrapper h2 {
  color: #a8c23f;
}

@media only screen and (max-width: 991px) {
  .preloader .container .section-content .preloader-container .prealoader-content-container .heading-wrapper h2 {
    font-size: 30px;
  }
}

.preloader .container .section-content .preloader-container .prealoader-content-container .heading-wrapper h1 {
  text-transform: uppercase;
  color: #a8c23f;
}

@media only screen and (max-width: 991px) and (max-height: 800px) {
  .preloader .container .section-content .preloader-container .prealoader-content-container .heading-wrapper h1 {
    font-size: 40px;
  }
}

.preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper {
  margin-top: 7.5em;
}

@media only screen and (max-width: 991px) {
  .preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper {
    margin-top: 0px;
    margin-bottom: 50px;
  }
}

.preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper .progress-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper .progress-text-wrapper span {
  font-weight: bold;
  font-size: 20px;
}

.preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper .progress-text-wrapper .progress-text,
.preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper .progress-text-wrapper span {
  font-family: "barlow-regular";
  color: #a8c23f;
}

.preloader .container .section-content .preloader-container .prealoader-content-container .loader-progress-wrapper .progress-bar {
  width: 0%;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  height: 3px;
  background-color: #a8c23f;
}

@media only screen and (max-width: 768px) {
  .preloader .container .section-content .preloader-container {
    width: 100%;
    overflow: visible;
  }

  .preloader .container .section-content .preloader-container .iframe-container {
    -webkit-transform: none;
    transform: none;
  }
}

.logo-header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  opacity: 0;
  max-height: 3.75em;
  z-index: 999999;
}

@media only screen and (max-width: 1024px) {
  .logo-header-section.logo-header-desktop {
    display: none;
  }
}

.logo-header-section.logo-header-mobile {
  display: none;
}

.logo-header-section.logo-header-mobile .logo-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.9375em;
}

@media only screen and (max-width: 768px) {
  .logo-header-section.logo-header-mobile .logo-header-container {
    padding: 0 0.9375em;
  }
}

@media only screen and (max-width: 767px) {
  .logo-header-section.logo-header-mobile .logo-header-container {
    padding: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .logo-header-section.logo-header-mobile {
    display: block;
  }
}

.logo-header-section .logo-header-container {
  padding: 0 1.875em 0.1875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*padding-right: 3.125em;*/
}

@media only screen and (max-width: 1440px) {
  .logo-header-section .logo-header-container {
    padding-left: 0;
  }

}

@media only screen and (max-width: 1024px) {
  .logo-header-section .logo-header-container {
    display: none;
  }
}

.logo-header-section .logo-header-container .logo-wrapper {
  width: 16.875em;
  height: 4.0625em;
  padding: 0.3125em 0 !important;
}

@media only screen and (max-width: 1440px) {
  .logo-header-section .logo-header-container .logo-wrapper {
    padding: 0.3125em 0 0 !important;
  }
}

@media (max-width: 1600px) {
  .logo-header-section .logo-header-container .logo-wrapper {
    width: 12.5em;
  }
}

.logo-header-section .logo-header-container .logo-wrapper img {
  -o-object-fit: cover;
  object-fit: cover;
}

.logo-header-section .logo-header-container .logo-wrapper.one-logo {
  padding-bottom: 0.625em;
  margin-left: 25px;
}

.nav-bar {
  margin-right: 25px;
}

@media only screen and (max-width: 1440px) {
  .logo-header-section .logo-header-container .logo-wrapper.one-logo {
    margin-left: 0.9375em;
  }

  .logo-header-section .logo-header-container {
    padding-right: 0.9375em;
  }

  .nav-bar {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .logo-header-section .logo-header-container .logo-wrapper.one-logo {
    margin-left: 0.375em;
  }
}

.logo-header-section .logo-header-container .logo-wrapper.one-logo img {
  padding-bottom: 3px;
}

.logo-header-section .logo-header-container .logo-wrapper.three-logo {
  width: 5.3125em;
  height: 2.8125em;
  padding-bottom: 0.3125em;
}

@media only screen and (max-width: 820px) {
  .logo-header-section .logo-header-container .logo-wrapper.three-logo {
    width: 6.25em;
  }
}

@media only screen and (max-width: 768px) {
  .logo-header-section .logo-header-container .logo-wrapper.three-logo {
    width: 5.625em;
  }
}

.logo-header-section .logo-header-container .logo-wrapper.l-logo {
  text-align: center;
}

.logo-header-section .logo-header-container .logo-wrapper.l-logo img {
  width: 6.25em;
}

.logo-header-section .logo-header-container .logo-wrapper img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 0 center;
  object-position: 0 center;
}

.logo-header-section .logo-header-container .link-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 10%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-header-section .logo-header-container .link-nav .link-wrap {
  margin: 0 5px;
  margin-right: 15px;
}

@media screen and (max-width: 767px) {
  .logo-header-section .logo-header-container .link-nav .link-wrap {
    margin-right: 0.375em;
  }
}

@media (max-width: 1440px) {
  .logo-header-section .logo-header-container .link-nav {
    width: 11%;
  }
}

@media (max-width: 1024px) {
  .logo-header-section .logo-header-container .link-nav {
    width: 45%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .logo-header-section .logo-header-container .link-nav {
    margin-right: 0.375em;
  }
}

.logo-header-section .logo-header-container .link-nav a {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-header-section .logo-header-container .link-nav a .download-icon {
  width: 24px;
  /*  height: 11px;*/
  margin: 0 0 0 2px;
}

.logo-header-section .logo-header-container .link-nav a .play-icon {
  width: 24px;
  /*height: 14px;*/
  margin: 0 0 0 2px;
}

@media (max-width: 1440px) {
  .logo-header-section .logo-header-container .link-nav a {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .logo-header-section .logo-header-container .link-nav a {
    font-size: 9px;
  }
}

.logo-header-section .logo-header-container .link-nav a img {
  -o-object-fit: contain;
  object-fit: contain;
}

.logo-header-section .logo-header-container .link-nav .link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .logo-header-section .logo-header-container .link-nav .link-wrap:first-child {
    width: 5em;
    margin-right: 0.625em;
  }

  .logo-header-section .logo-header-container .link-nav .link-wrap:last-child {
    width: 3.75em;
  }
}

.floating-logo-section {
  width: 100%;
  pointer-events: all;
  cursor: pointer;
  position: relative;
  z-index: 99999;
  padding: 0 3.75em 1.5625em;
  margin: 50px 0 0 0px !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}

.floating-logo-section.active {
  opacity: 1;
  visibility: visible;
}

.hero-logo-container {
  opacity: 1;
  visibility: visible;
}

.hero-logo-container.active {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 1440px) {
  .floating-logo-section {
    padding: 0 0.9375em 1.5625em 0.9375em;
  }
}

@media only screen and (max-width: 1024px) {
  .floating-logo-section {
    padding: 1.25em;
    background: #f7f7f7;
  }
}

@media only screen and (max-width: 767px) {
  .floating-logo-section {
    padding: 0.9375em;
  }
}

.floating-logo-section .container .section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.floating-logo-section .container .section-content .fixed-button-container .btn-download {
  background-color: #006ab7;
  color: #fff;
  padding: 1em 1.5em;
  border: none;
  border-radius: 30px;
}

@media only screen and (max-width: 767px) {
  .floating-logo-section .container .section-content .fixed-button-container .btn-download {
    font-size: 0.8em;
  }
}

.floating-logo-section .container .section-content .fixed-button-container .fixed-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.floating-logo-section .container .section-content .fixed-button-container .fixed-button .social-btn {
  width: 41px;
  height: 41px;
  margin-right: 0.625em;
}

.floating-logo-section .container .section-content .fixed-button-container .fixed-button .social-btn img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .floating-logo-section .container .section-content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .floating-logo-section .container .section-content .fixed-button-container {
    display: block;
  }
}

.floating-logo-section .container .fixed-logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.floating-logo-section .container .fixed-logo-container .fixed-logo {
  width: 160px;
  z-index: 1000;
}

@media only screen and (max-width: 767px) {
  .floating-logo-section .container .fixed-logo-container .fixed-logo {
    width: 10em;
  }
}

.sticky-navbar {
  z-index: 1500;
  max-height: 110px;
  height: 110px;
  position: relative;
  z-index: 9999999;
  max-width: 1400px;
  width: 71%;
  margin: 0 auto;
  overflow: visible;
}

@media screen and (max-width: 1023px) {
  .sticky-navbar {
    width: 100%;
    left: 0;
    max-width: unset;
  }
}

@media screen and (max-width: 414px) {
  .sticky-navbar {
    max-height: 74px;
    height: 74px;
  }
}

.sticky-navbar::after {
  content: "";
  position: absolute;
  background: white;
  top: 0;
  right: 0;
  left: 50%;
  width: 110vw;
  height: 50px;
  -webkit-transform: translate(-50%, 60px);
  transform: translate(-50%, 60px);
}

@media screen and (max-width: 414px) {
  .sticky-navbar::after {
    height: 30px;
    -webkit-transform: translate(-50%, 44px);
    transform: translate(-50%, 44px);
  }
}

.sticky-navbar .container {
  padding: 0;
}

.sticky-navbar .section-content {
  padding-left: 1.25em;
  padding-right: 1.25em;
}

@media (max-width: 1440px) {
  .sticky-navbar .section-content {
    padding-left: 2.25em;
    padding-right: 2.25em;
  }
}

@media screen and (max-width: 1023px) {
  .sticky-navbar .section-content {
    background-color: #fff;
  }
}

.sticky-navbar .section-content .nav-bar-mobile {
  display: none;
  padding: 0 1.5625em;
  background-color: #006ab7;
  max-height: 100%;
  height: 100px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 414px) {
  .sticky-navbar .section-content .nav-bar-mobile {
    height: 74px;
  }
}

.sticky-navbar .section-content .nav-bar-mobile::after {
  content: "";
  position: absolute;
  background: white;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 40px;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
}

@media screen and (max-width: 1024px) {
  .sticky-navbar .section-content .nav-bar-mobile::after {
    -webkit-transform: translateY(63px);
    transform: translateY(63px);
  }
}

@media screen and (max-width: 820px) {
  .sticky-navbar .section-content .nav-bar-mobile::after {
    display: none;
  }
}

@media screen and (max-width: 414px) {
  .sticky-navbar .section-content .nav-bar-mobile::after {
    height: 30px;
    -webkit-transform: translateY(44px);
    transform: translateY(44px);
  }
}

.sticky-navbar .section-content .nav-bar-mobile .left-tri {
  position: absolute;
  top: 2px;
  left: -1px;
  width: 61.25px;
  height: 61.25px;
  background: white;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.sticky-navbar .section-content .nav-bar-mobile .left-tri::before {
  content: "";
  background: #006ab7;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  -webkit-transform: translate(70%, -55%);
  transform: translate(70%, -55%);
}

.sticky-navbar .section-content .nav-bar-mobile .right-tri {
  position: absolute;
  top: 2px;
  right: -3px;
  width: 61.25px;
  height: 61.25px;
  background: white;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.sticky-navbar .section-content .nav-bar-mobile .right-tri::before {
  content: "";
  background: #006ab7;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  -webkit-transform: translate(-70%, -55%);
  transform: translate(-70%, -55%);
}

@media screen and (max-width: 414px) {

  .sticky-navbar .section-content .nav-bar-mobile .left-tri,
  .sticky-navbar .section-content .nav-bar-mobile .right-tri {
    width: 44px;
    height: 45px;
    top: 0px;
  }

  .sticky-navbar .section-content .nav-bar-mobile .left-tri::before,
  .sticky-navbar .section-content .nav-bar-mobile .right-tri::before {
    -webkit-transform: translate(-78%, -55%);
    transform: translate(-78%, -55%);
  }

  .sticky-navbar .section-content .nav-bar-mobile .right-tri {
    right: -1px;
  }

  .sticky-navbar .section-content .nav-bar-mobile .right-tri::before {
    -webkit-transform: translate(-78%, -55%);
    transform: translate(-78%, -55%);
  }

  .sticky-navbar .section-content .nav-bar-mobile .left-tri {
    left: -0.5px;
  }

  .sticky-navbar .section-content .nav-bar-mobile .left-tri::before {
    -webkit-transform: translate(78%, -55%);
    transform: translate(78%, -55%);
  }
}

@media only screen and (max-width: 1024px) {
  .sticky-navbar .section-content .nav-bar-mobile {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .sticky-navbar .section-content .nav-bar-mobile {
    width: 80%;
  }
}

.sticky-navbar .section-content .nav-bar-mobile #navbar-dropdown {
  max-height: 61.25px;
  height: 61.25px;
  position: relative;
}

.sticky-navbar .section-content .nav-bar-mobile .ui-selectmenu-button {
  background-color: transparent;
  max-height: 61.25px;
  height: 61.25px;
  width: 100%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  /* margin: 0 auto; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 500px) {
  .sticky-navbar .section-content .nav-bar-mobile .ui-selectmenu-button {
    max-height: 100%;
    height: 100%;
    padding: 1em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.sticky-navbar .section-content .nav-bar-mobile .ui-selectmenu-button .ui-selectmenu-icon {
  background-image: url("../images/caret-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.sticky-navbar .section-content .nav-bar-mobile .ui-selectmenu-button span {
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .sticky-navbar .section-content .navbar-slider-wrapper {
    display: none;
  }
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 9.375em;
  padding: 0.3125em 1.5625em;
  background-color: #006ab7;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 99%;
  margin: 0 auto;
  position: relative;
  left: 25px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider {
    left: 0;
  }
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider::after {
  content: "";
  position: absolute;
  background: white;
  top: 0;
  right: 0;
  left: 50%;
  width: 110vw;
  height: 50px;
  -webkit-transform: translate(-50%, 60px);
  transform: translate(-50%, 60px);
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .left-tri {
  position: absolute;
  left: 0;
  width: 60px;
  height: 60px;
  background: white;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .left-tri::before {
  content: "";
  background: #006ab7;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  -webkit-transform: translate(70%, -55%);
  transform: translate(70%, -55%);
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .right-tri {
  position: absolute;
  right: -1px;
  width: 60px;
  height: 60px;
  background: white;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .right-tri::before {
  content: "";
  background: #006ab7;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  -webkit-transform: translate(-70%, -55%);
  transform: translate(-70%, -55%);
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-arrow {
  width: 5%;
  -webkit-transition: opacity 0.3 ease;
  transition: opacity 0.3 ease;
  opacity: 1;
  cursor: pointer;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-arrow.prev-arrow {
  text-align: left;
  position: absolute;
  left: 4%;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-arrow.next-arrow {
  text-align: right;
  position: absolute;
  right: 4%;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-arrow.slick-disabled {
  opacity: 0;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-arrow svg {
  width: 1.25em;
  height: 1.25em;
  fill: #fff;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel {
  margin: 0 auto;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel {
    width: 80%;
  }
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel .navbar-menu-item {
  text-align: center;
  cursor: pointer;
  font-size: 0.875em;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel .navbar-menu-item.active-menu {
  position: relative;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel .navbar-menu-item.active-menu::before {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 90%;
  height: 0.25em;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel .navbar-menu-item p {
  color: #fff;
  margin: 0.9375em 0.3125em;
}

.sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel .navbar-menu-item:not(:last-child) {
  margin-right: 1.875em;
}

@media (max-width: 1440px) {
  .sticky-navbar .section-content .navbar-slider-wrapper .navbar-slider .navbar-slider-carousel .navbar-menu-item:not(:last-child) {
    margin-right: 1.25em;
  }
}

.sticky-navbar .nav-white-spacer {
  width: 100%;
  height: 6.25em;
  background-color: #fff;
}

.chapter.active {
  display: block;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

@media only screen and (max-width: 1024px) {
  .chapter {
    padding-bottom: 3.75em;
  }
}

@media only screen and (max-width: 767px) {
  .chapter {
    padding-bottom: 40px;
  }

  .chapter__1 .second-para {
    margin-top: 1.875em;
  }

  .chapter__2 .mb-0-mob {
    margin-bottom: 0;
  }

  .chapter__3 .mb-44 {
    margin-bottom: 1.875em !important;
  }

  .chapter__3 .equal-parts {
    margin-bottom: 2.1875em;
  }

  .chapter__3 .pt-20 {
    padding-top: 0 !important;
  }

  .chapter__4 .pt-20 {
    padding-top: 0 !important;
  }

  .chapter__4 .image-banner {
    margin-top: 1.875em;
    margin-bottom: 1.875em;
    max-width: calc(100% - 2.0625em);
  }

  .chapter__4 .second-para {
    margin-top: 1.875em;
  }

  .chapter__5 .mt-50 {
    margin-top: 1.875em;
  }

  .chapter__5 .mb-50 {
    margin-bottom: 1.875em;
  }

  .chapter__7 .section-content-subtitle-2 {
    margin-left: 0;
  }

  .chapter__8 .acknowledgement {
    margin-top: 3.125em;
  }
}

.chapter__5 .center-quote-text {
  margin-left: 0;
}

.download-container {
  border: 1px solid #d3d3d3;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 6.25em;
}

@media only screen and (max-width: 820px) {
  .download-container {
    margin: 2em;
  }
}

@media screen and (max-width: 767px) {
  .download-container {
    padding: 1.25em !important;
    text-align: center;
  }
}

@media screen and (max-width: 414px) {
  .download-container {
    margin: 2em 0 0;
  }
}

.download-container .download-text {
  font-family: "barlow-bold";
  font-size: 1.5em;
  color: #006ab7;
}

.download-container p {
  margin: 1em 0;
}

.download-container .download-btn {
  background: #006ab7;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50px;
  padding: 10px 30px;
  color: white;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  font-size: 0.8em;
}

.indicator {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.indicator .text {
  color: white;
  margin-bottom: 0.625em;
}

.indicator svg {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.extra-margin {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .extra-margin.chapter__5 {
    margin-left: 0;
  }
}

@media screen and (max-width: 1440px) {
  .extra-margin {
    margin-left: 32px;
  }
}

@media screen and (max-width: 1024px) {
  .extra-margin {
    margin-left: 32px;
  }
}

@media screen and (max-width: 767px) {
  .extra-margin {
    margin-left: 24px;
  }
}

@media screen and (max-width: 420px) {
  .extra-margin {
    margin-left: 8.5px;
  }
}

.extra-padding {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .extra-padding {
    padding-left: 20px !important;
  }
}

@media screen and (max-width: 768px) {
  .extra-padding {
    padding-left: 18px;
  }
}

.boxed {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 8.25em 1fr;
  grid-template-columns: 8.25em 1fr;
  color: #fff;
  margin: 3.875em 0;
}

@media screen and (max-width: 767px) {
  .boxed {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin: 1.875em 0;
  }

  .boxed__left {
    display: none;
  }
}

.boxed__left .boxed__header {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.boxed__left .boxed__header .heading-icon img,
.boxed__left .boxed__header .heading-icon svg {
  width: 3.125em;
  height: 3.125em;
}

.boxed__header {
  background-color: #295480;
  height: 132px;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .boxed__header {
    padding: 30px;
  }
}

@media screen and (max-width: 414px) {
  .boxed__header {
    height: auto;
  }
}

.boxed__title {
  border-left: 1px solid #fff;
}

.boxed__title h3 {
  font-family: 'BarlowCondensedSemiBold';
  font-size: 2.5em;
  color: #fff;
}

@media screen and (max-width: 414px) {
  .boxed__title h3 {
    font-size: 1.875em;
  }
}

.boxed__content {
  background-color: #213B66;
  border-left: 1px solid #fff;
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .boxed__content {
    padding: 30px;
  }
}

.boxed__content:not(:nth-child(2)) {
  padding-top: 0;
}

.boxed__content.is-empty {
  height: calc(100% - 132px);
}

.boxed__content h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.boxed__content .two-col-content {
  margin: 0 0 2.75em;
}

.boxed__content .two-col-content .col-container.text-content-col {
  padding-right: 2em !important;
  padding-left: 0 !important;
}

.boxed__content .two-col-content .col-container.image-content-col {
  padding-right: 0 !important;
}

.boxed__content .two-col-content.reverse-col .col-container.text-content-col {
  padding-left: 2em !important;
  padding-right: 0 !important;
}

.boxed__content .plus-para::before {
  color: #fff;
}

.boxed__right {
  background-color: #213B66;
}

.map-disclaimer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 12px;
  margin-bottom: 16px;
  line-height: 20px;
}

@media screen and (max-width: 414px) {
  .map-disclaimer {
    font-size: 10px;
    line-height: 15px;
  }
}

@media screen and (max-width: 767px) {
  .map-wrapper {
    margin-bottom: 0.625em;
  }
}

.map {
  background-image: url("../images/chapter-4/map.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 43.75em;
}

@media screen and (max-width: 1440px) {
  .map {
    margin-bottom: -60px;
  }
}

@media screen and (max-width: 1023px) {
  .map {
    height: 550px;
  }
}

@media screen and (width: 768px) {
  .map {
    margin-bottom: -30px;
  }
}

@media screen and (max-width: 767px) {
  .map {
    background-position: 0 185px;
    background-image: url("../images/chapter-4/map.jpg"), -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e2e2e2));
    background-image: url("../images/chapter-4/map.jpg"), linear-gradient(to bottom, #fff, #e2e2e2);
    height: 300px;
    margin-bottom: 1em;
  }
}

.map__title {
  text-align: center;
  font-family: 'BarlowCondensedSemiBold';
  height: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 768px) {
  .map__title p {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .map__title {
    background: #e2e2e2;
  }
}

.map__subtitle {
  display: block;
  position: absolute;
  bottom: 10px;
  line-height: 1;
  font-family: "avenir-light", "econ-sans", sans-serif;
  font-size: 14px;
}

.map__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "avenir-light";
  max-width: 20.625em;
  margin-top: 5px;
  text-transform: capitalize;
  background: url("../images/angle-down.svg"), #fff;
  background-repeat: no-repeat;
  background-position: 95%;
  background-size: 12px;
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .map__select {
    display: block;
    font-size: 16px;
    max-width: 17.5em;
    margin: 10px auto 0;
  }
}

.map__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .map__tabs {
    -webkit-box-orient: vertical;
    /*-webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;*/
    background: #e2e2e2;
    justify-content: space-between;
    padding: 0 10px;
  }
}

.map__tab {
  height: 43px;
  max-width: 20.625em;
  padding: 0 1.875em;
  background-color: #fff;
  border-radius: 0.625em;
  outline: none;
  font-family: "avenir-bold", "econ-sans", sans-serif;
  border: 1px solid #868686;
  color: #868686;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}

.map__tab:first-child {
  margin-right: 1em;
}

@media screen and (max-width: 767px) {
  .map__tab:first-child {
    margin-right: 0;
    margin-bottom: 0.5em;
    width: 49%;
    max-width: 49%;
  }

  .map__tab {
    height: 90px;
    width: 49%;
    padding: 0 10px;
  }

  .map__content {
    display: none;
  }
}

.map__tab.active,
.map__tab:hover {
  background-color: #006ab7;
  color: #fff;
}

.map__content {
  position: relative;
  height: calc(100% - 136px);
}

@media screen and (max-width: 1024px) and (min-width: 1024px) {
  .map__content {
    height: calc(100% - 190px);
  }
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
  .map__content {
    height: calc(100% - 160px);
  }
}

.map__point {
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

.map__point.active .map__dot,
.map__point:hover .map__dot {
  -webkit-transform: scale(1.7);
  transform: scale(1.7);
}

.map__point.active .map__dot span,
.map__point:hover .map__dot span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  opacity: 0;
}

.map__point.active .map__dot span:nth-child(1),
.map__point:hover .map__dot span:nth-child(1) {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-animation-name: hotspotRipple1;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: hotspotRipple1;
  -moz-animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: hotspotRipple1;
  -ms-animation-duration: 1s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  animation-name: hotspotRipple1;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.map__point.active .map__dot span:nth-child(2),
.map__point:hover .map__dot span:nth-child(2) {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-animation-name: hotspotRipple2;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: hotspotRipple2;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
  -ms-animation-name: hotspotRipple2;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: ease-in-out;
  animation-name: hotspotRipple2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.map__dot {
  position: relative;
  width: 0.625em;
  height: 0.625em;
  background-color: #000;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

@media screen and (min-width: 1600px) {
  .map__dot {
    width: 0.875em;
    height: 0.875em;
  }
}

.map__country {
  font-size: 0.75em;
  text-transform: capitalize;
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .map__country {
    visibility: hidden !important;
    pointer-events: none;
  }
}

.map__overview {
  background-color: #006ab7;
  padding: 1.25em 1em;
  border-radius: 10px;
  position: absolute;
  width: 15em;
  top: 35%;
  right: 2em;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.map__overview h3,
.map__overview p {
  color: #fff;
  font-weight: 800;
  /*font-family: "avenir-bold", "econ-sans", sans-serif;*/
}

.map__overview p {
  font-size: 1.125em;
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .map__overview {
    padding: 1em;
    top: 50%;
    right: 0;
    max-width: 12.5em;
  }
}

@media screen and (max-width: 767px) {
  .map__overview {
    max-width: 8.125em;
  }

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

  .map__overview.mobile-only {
    display: block;
    position: relative;
    -webkit-transform: none !important;
    transform: none !important;
    width: 100%;
    max-width: none;
    margin-bottom: 16px;
  }
}

.map__overview-title {
  text-align: center;
  text-transform: capitalize;
}

.map__overview-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin: 1em 0;
}

@media screen and (max-width: 1023px) {
  .map__overview-title h3 {
    font-size: 1.5em;
  }

  .map__overview-title::after {
    margin: 0.875em 0;
  }
}

@media screen and (max-width: 767px) {
  .map__overview-title h3 {
    font-size: 1em;
  }

  .map__overview-title p {
    font-size: 0.8125em;
  }
}

.map__overview-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map__desc {
  margin-top: 16px;
  display: none;
}

.map__desc.is-active {
  display: block;
}

.map__desc p {
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  font-size: 15px !important;
}

.map__desc p.blue {
  color: #61cbf4;
  font-size: 18px !important;
  font-family: "avenir-black", "econ-sans", sans-serif;
}

@media screen and (max-width: 768px) {
  .map__desc p {
    font-size: 12px !important;
  }

  .map__desc p.blue {
    font-size: 16px !important;
  }
}

@-webkit-keyframes hotspotRipple1 {
  from {
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  to {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

@keyframes hotspotRipple1 {
  from {
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  to {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

@-webkit-keyframes hotspotRipple2 {
  from {
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  to {
    width: 400%;
    height: 400%;
    opacity: 0;
  }
}

@keyframes hotspotRipple2 {
  from {
    width: 100%;
    height: 100%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  to {
    width: 400%;
    height: 400%;
    opacity: 0;
  }
}

@media (min-width: 320px) {
  .map__point[data-country=japan] {
    top: 26%;
    left: 60%;
  }

  .map__point[data-country=china] {
    top: 34%;
    left: 43%;
  }

  .map__point[data-country=mongolia] {
    top: 7%;
    left: 36%;
  }

  .map__point[data-country=timor-leste] {
    top: 79%;
    left: 41%;
  }

  .map__point[data-country=indonesia] {
    top: 73%;
    left: 40%;
  }

  .map__point[data-country=philippines] {
    top: 56%;
    left: 43%;
  }

  .map__point[data-country=brunei] {
    top: 62%;
    left: 39%;
  }

  .map__point[data-country=singapore] {
    top: 66%;
    left: 28%;
  }

  .map__point[data-country=malaysia] {
    top: 61%;
    left: 26%;
  }

  .map__point[data-country=cambodia] {
    top: 54%;
    left: 30%;
  }

  .map__point[data-country=vietnam] {
    top: 51%;
    left: 34%;
  }

  .map__point[data-country=thailand] {
    top: 50%;
    left: 29%;
  }

  .map__point[data-country=laos] {
    top: 46%;
    left: 33%;
  }

  .map__point[data-country=myanmar] {
    top: 44%;
    left: 25%;
  }

  .map__point[data-country=bangladesh] {
    top: 39%;
    left: 21%;
  }

  .map__point[data-country=bhutan] {
    top: 33%;
    left: 25%;
  }

  .map__point[data-country=nepal] {
    top: 30%;
    left: 17%;
  }

  .map__point[data-country=india] {
    top: 41%;
    left: 17%;
  }

  .map__point[data-country="sri lanka"] {
    top: 56%;
    left: 15%;
  }

  .map__point[data-country=maldives] {
    top: 62%;
    left: 9%;
  }

  .map__point[data-country=pakistan] {
    top: 32%;
    left: 6%;
  }

  .map__point[data-country=afghanistan] {
    top: 26%;
    left: 1%;
  }
}

@media (min-width: 768px) {
  .map__point[data-country=japan] {
    top: 13%;
    left: 60%;
  }

  .map__point[data-country=china] {
    top: 19%;
    left: 45%;
  }

  .map__point[data-country=mongolia] {
    top: 2%;
    left: 41%;
  }

  .map__point[data-country=timor-leste] {
    top: 79%;
    left: 45%;
  }

  .map__point[data-country=indonesia] {
    top: 68%;
    left: 43%;
  }

  .map__point[data-country=philippines] {
    top: 44%;
    left: 46%;
  }

  .map__point[data-country=brunei] {
    top: 58%;
  }

  .map__point[data-country=singapore] {
    top: 59%;
    left: 30%;
  }

  .map__point[data-country=malaysia] {
    top: 53%;
    left: 28%;
  }

  .map__point[data-country=cambodia] {
    top: 43%;
    left: 32%;
  }

  .map__point[data-country=vietnam] {
    top: 41%;
    left: 37%;
  }

  .map__point[data-country=thailand] {
    top: 39%;
    left: 31%;
  }

  .map__point[data-country=laos] {
    top: 35%;
    left: 34%;
  }

  .map__point[data-country=myanmar] {
    top: 31%;
    left: 28%;
  }

  .map__point[data-country=bangladesh] {
    top: 24%;
    left: 24%;
  }

  .map__point[data-country=bhutan] {
    top: 18%;
    left: 27%;
  }

  .map__point[data-country=nepal] {
    top: 15%;
    left: 19%;
  }

  .map__point[data-country=india] {
    top: 28%;
    left: 19%;
  }

  .map__point[data-country="sri lanka"] {
    top: 45%;
    left: 17%;
  }

  .map__point[data-country=maldives] {
    top: 53%;
    left: 11%;
  }

  .map__point[data-country=pakistan] {
    top: 15%;
    left: 8%;
  }

  .map__point[data-country=afghanistan] {
    top: 10%;
    left: 4%;
  }
}

@media (min-width: 992px) {
  .map__point[data-country=japan] {
    top: 18%;
    left: 60%;
  }

  .map__point[data-country=china] {
    top: 23%;
    left: 44%;
  }

  .map__point[data-country=mongolia] {
    top: 3%;
    left: 39%;
  }

  .map__point[data-country=timor-leste] {
    top: 90%;
    left: 46%;
  }

  .map__point[data-country=indonesia] {
    top: 81%;
    left: 44%;
  }

  .map__point[data-country=philippines] {
    top: 51%;
    left: 46%;
  }

  .map__point[data-country=brunei] {
    top: 66%;
    left: 41%;
  }

  .map__point[data-country=singapore] {
    top: 71%;
    left: 32%;
  }

  .map__point[data-country=malaysia] {
    top: 63%;
    left: 29%;
  }

  .map__point[data-country=cambodia] {
    top: 54%;
    left: 34%;
  }

  .map__point[data-country=vietnam] {
    top: 49%;
    left: 37%;
  }

  .map__point[data-country=thailand] {
    top: 49%;
    left: 31%;
  }

  .map__point[data-country=laos] {
    top: 38%;
    left: 35%;
  }

  .map__point[data-country=myanmar] {
    top: 40%;
    left: 30%;
  }

  .map__point[data-country=bangladesh] {
    top: 32%;
    left: 25%;
  }

  .map__point[data-country=bhutan] {
    top: 19%;
    left: 27%;
  }

  .map__point[data-country=nepal] {
    top: 16%;
    left: 19%;
  }

  .map__point[data-country=india] {
    top: 37%;
    left: 19%;
  }

  .map__point[data-country="sri lanka"] {
    top: 57%;
    left: 18%;
  }

  .map__point[data-country=maldives] {
    top: 63%;
    left: 11%;
  }

  .map__point[data-country=pakistan] {
    top: 24%;
    left: 9%;
  }

  .map__point[data-country=afghanistan] {
    top: 11%;
    left: 5%;
  }
}

@media screen and (min-width: 1200px) {
  .map__point[data-country=japan] {
    top: 18%;
    left: 60%;
  }

  .map__point[data-country=china] {
    top: 23%;
    left: 44%;
  }

  .map__point[data-country=mongolia] {
    top: 3%;
    left: 39%;
  }

  .map__point[data-country=philippines] {
    top: 49%;
    left: 45%;
  }

  .map__point[data-country=timor-leste] {
    top: 78%;
    left: 45%;
  }

  .map__point[data-country=indonesia] {
    top: 69%;
    left: 44%;
  }

  .map__point[data-country=brunei] {
    top: 58%;
    left: 41%;
  }

  .map__point[data-country=singapore] {
    top: 60%;
    left: 32%;
  }

  .map__point[data-country=malaysia] {
    top: 54%;
    left: 31%;
  }

  .map__point[data-country=cambodia] {
    top: 46%;
    left: 33%;
  }

  .map__point[data-country=vietnam] {
    top: 42%;
    left: 37%;
  }

  .map__point[data-country=thailand] {
    top: 41%;
    left: 31%;
  }

  .map__point[data-country=laos] {
    top: 36%;
    left: 34%;
  }

  .map__point[data-country=myanmar] {
    top: 34%;
    left: 28%;
  }

  .map__point[data-country=bangladesh] {
    top: 26%;
    left: 25%;
  }

  .map__point[data-country=bhutan] {
    top: 19%;
    left: 27%;
  }

  .map__point[data-country=nepal] {
    top: 16%;
    left: 19%;
  }

  .map__point[data-country=india] {
    top: 30%;
    left: 19%;
  }

  .map__point[data-country=pakistan] {
    top: 19%;
    left: 9%;
  }

  .map__point[data-country=afghanistan] {
    top: 11%;
    left: 5%;
  }

  .map__point[data-country="sri lanka"] {
    top: 48%;
    left: 17%;
  }

  .map__point[data-country=maldives] {
    top: 54%;
    left: 10%;
  }
}

@media screen and (min-width: 1600px) {
  .map__point[data-country=japan] {
    top: 23%;
  }

  .map__point[data-country=china] {
    top: 23%;
    left: 44%;
  }

  .map__point[data-country=mongolia] {
    top: 3%;
    left: 39%;
  }

  .map__point[data-country=philippines] {
    top: 58%;
    left: 46%;
  }

  .map__point[data-country=timor-leste] {
    top: 91%;
    left: 46%;
  }

  .map__point[data-country=indonesia] {
    top: 82%;
  }

  .map__point[data-country=brunei] {
    top: 69%;
    left: 41%;
  }

  .map__point[data-country=singapore] {
    top: 72%;
    left: 33%;
  }

  .map__point[data-country=malaysia] {
    top: 66%;
    left: 31%;
  }

  .map__point[data-country=cambodia] {
    top: 55%;
    left: 34%;
  }

  .map__point[data-country=vietnam] {
    top: 52%;
    left: 38%;
  }

  .map__point[data-country=thailand] {
    top: 49%;
    left: 32%;
  }

  .map__point[data-country=laos] {
    top: 43%;
    left: 35%;
  }

  .map__point[data-country=myanmar] {
    top: 40%;
    left: 29%;
  }

  .map__point[data-country=bangladesh] {
    top: 31%;
  }

  .map__point[data-country=bhutan] {
    top: 22%;
  }

  .map__point[data-country=nepal] {
    top: 16%;
    left: 19%;
  }

  .map__point[data-country=india] {
    top: 30%;
    left: 19%;
  }

  .map__point[data-country=pakistan] {
    top: 22%;
    left: 11%;
  }

  .map__point[data-country=afghanistan] {
    top: 15%;
  }

  .map__point[data-country="sri lanka"] {
    top: 56%;
    left: 17%;
  }

  .map__point[data-country=maldives] {
    top: 62%;
  }
}

.section-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 2.8125em;
}

.section-video iframe,
.section-video object,
.section-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
  cursor: pointer;
}

.single-content-carousel-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item {
    padding-top: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .carousel-desktop {
    display: none;
  }
}

.single-content-carousel-container.desktop .single-content-carousle-item .carousel-mobile {
  display: none;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .carousel-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
  }

  .single-content-carousel-container.desktop .single-content-carousle-item .carousel-mobile .title-text {
    margin-left: 0;
  }
}

.single-content-carousel-container.desktop .single-content-carousle-item .carousel-desktop.equal-parts .col-container,
.single-content-carousel-container.desktop .single-content-carousle-item .carousel-mobile.equal-parts .col-container {
  width: unset;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 2.5em 0 0 !important;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.single-content-carousel-container.desktop .single-content-carousle-item .carousel-mobile.equal-parts .col-container {
  padding: 0 !important;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .carousel-mobile.equal-parts .col-container {
    margin: 0;
  }
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .col-container {
    padding: 0 !important;
  }
}

.single-content-carousel-container.desktop .single-content-carousle-item .col-container:first-child {
  padding-right: 1.875em !important;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .col-container:first-child {
    padding: 0 !important;
    margin-bottom: 1.25em !important;
    margin-top: 0 !important;
  }
}

.single-content-carousel-container.desktop .single-content-carousle-item .col-container:last-child {
  padding-right: 0 !important;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .col-container:last-child {
    margin-bottom: 0 !important;
  }
}

@media only screen and (max-width: 820px) {
  .single-content-carousel-container.desktop .single-content-carousle-item .image-content-col.image-col-with-text {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.single-content-carousel-container.desktop .single-content-carousle-item .image-content-col .img-wrapper {
  height: 15.625em;
}

@media only screen and (max-width: 820px) {
  .single-content-carousel-container.desktop {
    display: none;
  }
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.single-content-carousel-container.tablet {
  display: none !important;
}

@media only screen and (max-width: 820px) {
  .single-content-carousel-container.tablet {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.tablet {
    display: none !important;
  }
}

.single-content-carousel-container.tablet .two-col-content {
  padding: 0 0.9375em !important;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.single-content-carousel-container.tablet .two-col-content .col-container {
  width: 50%;
}

@media (max-width: 767px) {
  .single-content-carousel-container.tablet .two-col-content .col-container {
    width: 100%;
  }
}

.single-content-carousel-container.tablet .two-col-content .col-container.reverse {
  padding-bottom: 0 !important;
  padding-top: 40px !important;
}

.single-content-carousel-container.tablet .two-col-content .col-container:first-child {
  padding-left: 0 !important;
  padding-right: 0.9375em !important;
}

@media (max-width: 767px) {
  .single-content-carousel-container.tablet .two-col-content .col-container:first-child {
    padding-right: 0 !important;
  }
}

.single-content-carousel-container.tablet .two-col-content .col-container:last-child {
  padding-left: 0.9375em !important;
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .single-content-carousel-container.tablet .two-col-content .col-container:last-child {
    padding-left: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.tablet .two-col-content .col-container {
    padding: 0 !important;
  }
}

.single-content-carousel-container.tablet .two-col-content .col-container:first-child {
  padding-right: 0 !important;
}

.single-content-carousel-container.tablet .two-col-content .col-container:last-child {
  padding-right: 0 !important;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container.tablet .two-col-content .image-content-col {
    width: 100% !important;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }
}

@media only screen and (max-width: 820px) {
  .single-content-carousel-container.tablet .two-col-content .image-content-col.image-col-with-text {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.single-content-carousel-container.tablet .two-col-content .image-content-col .img-wrapper {
  height: 15.625em;
}

.single-content-carousel-container.tablet .two-col-content.reverse-col .col-container:first-child {
  padding-right: 0 !important;
  padding-left: 0.9375em !important;
}

.single-content-carousel-container.tablet .two-col-content.reverse-col .col-container:last-child {
  padding-right: 0.9375em !important;
  padding-left: 0 !important;
}

@media screen and (max-width: 1023px) {
  .single-content-carousel-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .single-content-carousel-container .single-content-arrow {
    margin-top: 3.75em;
  }
}

.single-content-carousel-container .single-content-arrow {
  width: 1.875em;
  height: 1.875em;
  cursor: pointer;
  position: absolute;
  top: 50%;
}

.single-content-carousel-container .single-content-arrow.prev-arrow {
  left: -60px;
}

@media (max-width: 767px) {
  .single-content-carousel-container .single-content-arrow.prev-arrow {
    left: 0;
  }
}

.single-content-carousel-container .single-content-arrow.next-arrow {
  right: -60px;
}

@media (max-width: 767px) {
  .single-content-carousel-container .single-content-arrow.next-arrow {
    right: 0;
  }
}

.single-content-carousel-container .single-content-carousel {
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .single-content-carousel-container .single-content-carousel {
    width: 80%;
  }
}

.single-content-carousel-container .single-content-carousel .single-content-carousle-item .two-col-content {
  padding: 0px 0.625em 3.125em;
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container .single-content-carousel .single-content-carousle-item .two-col-content {
    padding-bottom: 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  .single-content-carousel-container .single-content-carousel .single-content-carousle-item {
    padding: 15px;
  }
}

@media only screen and (max-width: 414px) {
  .single-content-carousel-container .single-content-carousel .single-content-carousle-item {
    padding: 0 !important;
  }
}

@media only screen and (max-width: 414px) {
  .chapter__1 .single-content-carousel-container .slick-list {
    max-height: 540px;
    height: 540px !important;
  }
}

@media only screen and (max-width: 1279px) {
  .nav-bar {
    padding-right: 0.9375em
  }
}

@media only screen and (max-width: 700px) {
  .interactive .chart-title {
    font-size: 1.5em
  }
}