/*==================================
 ------------ FONTS -----------
==================================*/

@font-face {
  font-family: "CentraNo2";
  src: url("../fonts/CentraNo2/CentraNo2-Light.otf") format("opentype");
  font-weight: 300;
}

@font-face {
  font-family: "CentraNo2";
  src: url("../fonts/CentraNo2/CentraNo2-Reg.otf") format("opentype");
  font-weight: normal;
}

@font-face {
  font-family: "CentraNo2";
  src: url("../fonts/CentraNo2/CentraNo2-Medium.otf") format("opentype");
  font-weight: 500;
}

@font-face {
  font-family: "CentraNo2";
  src: url("../fonts/CentraNo2/CentraNo2-Bold.otf") format("opentype");
  font-weight: bold;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothicW05-Regular.eot");
  src: url("../fonts/CenturyGothicW05-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/CenturyGothicW05-Regular.woff2") format("woff2"),
    url("../fonts/CenturyGothicW05-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothicW05-Italic.eot");
  src: url("../fonts/CenturyGothicW05-Italic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/CenturyGothicW05-Italic.woff2") format("woff2"),
    url("../fonts/CenturyGothicW05-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothicW05-Bold.eot");
  src: url("../fonts/CenturyGothicW05-Bold.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/CenturyGothicW05-Bold.woff2") format("woff2"),
    url("../fonts/CenturyGothicW05-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../fonts/CenturyGothicW05-BoldItalic.eot");
  src: url("../fonts/CenturyGothicW05-BoldItalic.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/CenturyGothicW05-BoldItalic.woff2") format("woff2"),
    url("../fonts/CenturyGothicW05-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic Pro";
  src: url("../fonts/CenturyGothicPro.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic Pro";
  src: url("../fonts/CenturyGothicPro-Italic.otf");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Century Gothic Pro";
  src: url("../fonts/CenturyGothicPro-Bold.otf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic Pro";
  src: url("../fonts/CenturyGothicPro-BoldItalic.otf");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Primary-Bold";
  src: url("../fonts/ExpediaGroupPrimary-Bold.otf");
  font-weight: bold;
  font-style: normal;
}

/*==================================
------------ RESET CSS -----------
==================================*/
html,
body,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 10px;
}

nav ol,
nav ul:not(.list),
.list--reset ol,
.list--reset ul:not(.list) {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

small {
  font-size: 70%;
  line-height: normal;
}

select:empty {
  display: none;
}

*::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

*::-moz-placeholder {
  color: inherit;
  opacity: 0.3;
}

*:-ms-input-placeholder {
  color: inherit;
  opacity: 0.3;
}

/*---------- Animations ----------*/
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in.js--animate {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}

@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-100%);
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-top.js--animate {
  -webkit-animation-name: fade-in-top;
  animation-name: fade-in-top;
}

@keyframes fade-in-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fade-in-bottom.js--animate {
  -webkit-animation-name: fade-in-bottom;
  animation-name: fade-in-bottom;
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}

.fade-in-left.js--animate {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.fade-in-right.js--animate {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
}

@keyframes slide-in-top {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slide-in-top.js--animate {
  -webkit-animation-name: slide-in-top;
  animation-name: slide-in-top;
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slide-in-bottom.js--animate {
  -webkit-animation-name: slide-in-bottom;
  animation-name: slide-in-bottom;
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slide-in-left.js--animate {
  -webkit-animation-name: slide-in-left;
  animation-name: slide-in-left;
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.slide-in-right.js--animate {
  -webkit-animation-name: slide-in-right;
  animation-name: slide-in-right;
}

.animate {
  -webkit-animation-duration: 0.75s;
  -webkit-animation-fill-mode: both;
  animation-duration: 0.75s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  opacity: 0;
}

.animate.js--animate {
  opacity: 1;
}

/*==================================
--------- DEFAULT STYLES ---------
==================================*/
body {
  overflow-x: hidden;
  color: #212121;
  /* font-family: "Century Gothic", Georgia, Verdana, sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
}

/*---------- TYPOGRAPHY ----------*/
h1,
.h1 {
  font-size: 3.4rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #4248ed;
  font-weight: bold;
  /* letter-spacing: 1.02px; */
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

h2,
.h2 {
  font-size: 2.4rem;
  /* margin-bottom: 40px; */
  margin-bottom: 10px;
  line-height: 1.6;
  /* letter-spacing: 3.6px; */
  color: #4248ed;
  font-weight: bold;
  /* text-transform: uppercase; */
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

h3,
.h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.6;
  /* letter-spacing: 3px; */
  font-weight: bold;
  /* text-transform: uppercase; */
  color: #4248ed;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

h4,
.h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.6;
  color: #000000;
  /* letter-spacing: 2.4px; */
  font-weight: bold;
  /* text-transform: uppercase; */
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

h5,
.h5 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #212121;
  font-weight: bold;
}

h6,
.h6 {
  font-size: 1.4rem;
  /* letter-spacing: 2.1px; */
  /* text-transform: uppercase; */
  font-weight: bold;
}

.dark h1,
.dark .h1,
.dark h2,
.dark .h2,
.dark h3,
.dark .h3,
.dark h4,
.dark .h4,
.dark h5,
.dark .h5,
.dark h6,
.dark .h6 {
  color: #fff;
}

a {
  text-decoration: none;
  color: #4248ed;
  transition: all 0.2s ease-in-out;
}

a:hover {
  /* color: #58dfb8; */
  color: #020247;
}

p,
ul,
ol {
  line-height: 1.8;
}

.pane--content ul,
.pane--content ol,
p {
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

/*------------ COMMON ------------*/

img {
  max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  user-select: none;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  line-height: normal;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 1.4rem;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 153, 0.3);
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  border-width: 6px;
  border-color: rgba(0, 0, 153, 1);
}

input[type="radio"] + label:before {
  border-radius: 100%;
}

input::-ms-clear {
  display: none;
}

iframe {
  width: 100%;
}

/*------- HACKS AND FIXES -------*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*------------ LISTS ------------*/
.list {
  list-style-type: disc;
  padding-left: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.list--brand {
  padding-left: 0;
  list-style: none;
}

.list--brand li {
  position: relative;
  padding-left: 25px;
}

.list--brand li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  /* background: #58dfb8; */
  background: #4248ed;
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.list--brand li ~ li {
  margin-top: 10px;
}

.list--ordered {
  list-style-type: decimal;
}

.list--alpha {
  list-style-type: lower-alpha;
}

.list--roman {
  list-style-type: lower-roman;
}

.list--inside {
  list-style-position: inside;
}

/*------- BUTTONS / INPUTS -------*/
.input,
.textarea,
.dropdown,
.upload,
.submit,
.button {
  display: inline-block;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #000099;
  color: #000099;
  border-radius: 0;
  /* font-family: "Century Gothic", Georgia, Verdana, sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}

.input::-ms-clear,
.textarea::-ms-clear,
.dropdown::-ms-clear,
.upload::-ms-clear,
.submit::-ms-clear,
.button::-ms-clear {
  display: none;
}

.submit,
.button,
.upload,
.dropdown {
  cursor: pointer;
}

.textarea {
  width: 100%;
  resize: vertical;
}

.upload {
  line-height: 0;
}

.button {
  transition: 0.3s ease-in-out;
  padding: 15px 20px;
  line-height: 1;
  background: #4248ed;
  color: #fff;
  border-radius: 3px;
  /* font-family: "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  min-width: 216px;
  text-align: center;
  /* letter-spacing: 2.1px; */
  text-transform: uppercase;
}

.button:hover {
  background-color: #2169f9;
  color: #fff;
}

.button--inverted {
  background-color: #2169f9;
}

.button--inverted:hover {
  background: #000099;
}

.button--dark {
  color: #fff;
}

.button--dark:hover {
  background: #fff;
  color: #000099;
}

.button--more {
  color: #000099;
  padding: 0;
  border: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  /* letter-spacing: 2.1px; */
  background: transparent;
  min-width: auto;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  transition: all 0.2s ease-in-out;
}

.button--more:hover {
  background: transparent;
  /* color: #58dfb8; */
  color: #4248ed;
}

.dark .button--more:hover {
  color: #fff;
}

.button--more:after {
  font-family: q4-icons;
  margin-left: 10px;
  content: "\e913";
  font-size: 3rem;
  vertical-align: middle;
  font-weight: normal;
}

.dark .button--more:hover {
  color: #fff;
  background: none;
}

.dark .button--more:hover:before {
  margin-left: 10px;
}

.dropdown {
  padding: 14px 20px 14px 0;
  background: transparent url(../design/svg/arrow-down.svg) no-repeat right 0
    center;
  background-size: 9px 5px;
  color: #000099;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 16px;
  font-weight: bold;
  border: 0;
  border-bottom: 1px solid #000099;
  line-height: 1.1;
  min-width: 88px;
}

.dropdown::-ms-expand {
  display: none;
}

/*------------ TABLES ------------*/
.table {
  width: 100%;
  margin: 16px 0;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.table thead {
  color: #000099;
  font-size: 16px;
  font-weight: bold;
}

.table tbody {
  border-top: 2px solid #000099;
  border-bottom: 2px solid #000099;
}

.table thead th {
  text-align: left;
}

.table tbody tr ~ tr {
  border-top: 1px solid #f1f1f1;
}

.table th,
.table td,
.table tr > .grid_col {
  margin: 0;
  padding: 15px 0;
}

.table-wrapper {
  overflow-x: auto;
}

.table--headless tr:nth-child(even) {
  background-color: transparent;
}

.table--headless tr:nth-child(odd) {
  background-color: #f6f6f6;
}

.table--headless tr:first-child {
  background-color: #000099;
  text-align: left;
}

.table--headless tr:first-child td {
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .table--responsive thead {
    display: none;
  }

  .table--responsive tbody {
    border-top: 2px solid #000099;
    border-bottom: 2px solid #000099;
  }

  .table--responsive td {
    display: block;
  }

  .table--responsive td:before {
    content: attr(data-heading) ": ";
    font-weight: 700;
  }
}

/*--------- SPECIAL BOXES --------*/
.code {
  margin: 32px 0;
  padding: 20px 15px;
  background: #f6f6f6;
  border-left: 3px solid rgba(0, 111, 186, 0.5);
  font-family: monospace, serif;
  font-size: 1.4rem;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  overflow: hidden;
}

.code_comment {
  opacity: 0.5;
}

.quote {
  margin: 32px 0;
  padding: 20px 15px;
  background: #f6f6f6;
  border-left: 3px solid rgba(241, 175, 15, 0.5);
  font-size: 1.4rem;
  font-style: italic;
}

.quote p:before {
  margin-right: 5px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb1b";
}

.quote p:after {
  margin-left: 5px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb1c";
}

/*==================================
-------- Q4 Modules Icons ---------
==================================*/
.q4icons .q4icons_icon:before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eecd";
  font-size: 16px;
  vertical-align: middle;
  display: inline-block;
  padding-right: 5px;
}

.q4icons .module_rss-link .q4icons_icon:before,
.q4icons .module_link-rss .q4icons_icon:before {
  content: "\eefa";
}

.q4icons .module_add-to-calendar-reveal .q4icons_icon:before {
  content: "\ea5f";
  padding-right: 5px;
}

.q4icons [href$=".mp3"] .q4icons_icon:before,
.q4icons [href$=".wmv"] .q4icons_icon:before,
.q4icons [href$=".MP3"] .q4icons_icon:before,
.q4icons [href$=".WMV"] .q4icons_icon:before {
  content: "\e952";
}

.q4icons [href$=".xls"] .q4icons_icon:before,
.q4icons [href$=".xlsx"] .q4icons_icon:before,
.q4icons [href$=".csv"] .q4icons_icon:before,
.q4icons [href$=".XLS"] .q4icons_icon:before,
.q4icons [href$=".XLSX"] .q4icons_icon:before,
.q4icons [href$=".CSV"] .q4icons_icon:before {
  content: "\eeae";
}

.q4icons [href$=".mp4"] .q4icons_icon:before,
.q4icons [href$=".flv"] .q4icons_icon:before,
.q4icons [href$=".avi"] .q4icons_icon:before,
.q4icons [href$=".MP4"] .q4icons_icon:before,
.q4icons [href$=".FLV"] .q4icons_icon:before,
.q4icons [href$=".AVI"] .q4icons_icon:before {
  content: "\e95e";
}

.q4icons [href$=".pdf"] .q4icons_icon:before,
.q4icons [href$=".PDF"] .q4icons_icon:before {
  content: "\e900";
}

.q4icons .module_link-webcast .q4icons_icon:before,
.q4icons .module_webcast-link .q4icons_icon:before {
  content: "\e989";
}

.q4icons .module_link-news .q4icons_icon:before,
.q4icons .module_link-transcript .q4icons_icon:before {
  content: "\e99b";
}

.q4icons .module_link-presentation .q4icons_icon:before {
  content: "\e95c";
}

.q4icons .module_link-file .q4icons_icon:before {
  content: "\eb81";
}

.q4icons .module_link-sec .q4icons_icon:before {
  content: "\e9bb";
}

.q4icons .module_link-sec[href$=".pdf"] .q4icons_icon:before {
  content: "\ef3e";
}

.q4icons .module_link-sec[href$=".rtf"] .q4icons_icon:before {
  content: "\ef40";
}

.q4icons .module_link-sec[href$=".xls"] .q4icons_icon:before {
  content: "\ef41";
}

.q4icons .module_link-sec[href$=".zip"] .q4icons_icon:before {
  content: "\e9b9";
}

.q4icons [href^="tel:"] .q4icons_icon:before {
  font-size: 1.6rem;
  vertical-align: text-bottom;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea1d";
}

.q4icons [href^="mailto:"] .q4icons_icon:before {
  font-size: 1.6rem;
  vertical-align: text-bottom;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ea32";
}

/*==================================
----------- TOAST GRID -----------
==================================*/
.grid {
  list-style: none;
  margin-left: -20px;
}

.grid--alt {
  margin-left: -50px;
}

.grid--flex {
  margin-left: -20px;
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.grid--flex_column {
  flex-direction: column;
}

.grid--flex_row-reverse {
  flex-direction: row-reverse;
}

.grid--flex_column-reverse {
  flex-direction: column-reverse;
}

.grid--flex_justify-start {
  justify-content: flex-start;
  text-align: start;
}

.grid--flex_justify-center {
  justify-content: center;
  text-align: center;
}

.grid--flex_justify-end {
  justify-content: flex-end;
  text-align: end;
}

.grid--flex_align-top {
  align-items: flex-start;
}

.grid--flex_align-middle {
  align-items: center;
}

.grid--flex_align-bottom {
  align-items: flex-end;
}

.grid--flex_space-around {
  justify-content: space-around;
}

.grid--flex_space-between {
  justify-content: space-between;
}

.grid--flex .grid_col {
  display: block;
  margin-right: 0;
  flex: 0 0 auto;
}

.grid_col--1-of-1,
.grid_col--2-of-2,
.grid_col--3-of-3,
.grid_col--4-of-4,
.grid_col--5-of-5,
.grid_col--6-of-6,
.grid_col--7-of-7,
.grid_col--8-of-8,
.grid_col--12-of-12 {
  width: 100%;
}

.grid_col--1-of-2,
.grid_col--2-of-4,
.grid_col--3-of-6,
.grid_col--4-of-8,
.grid_col--6-of-12 {
  width: 50%;
}

.grid_col--1-of-3,
.grid_col--2-of-6,
.grid_col--4-of-12 {
  width: 33.33333%;
}

.grid_col--2-of-3,
.grid_col--4-of-6,
.grid_col--8-of-12 {
  width: 66.66667%;
}

.grid_col--1-of-4,
.grid_col--2-of-8,
.grid_col--3-of-12 {
  width: 25%;
}

.grid_col--3-of-4,
.grid_col--6-of-8,
.grid_col--9-of-12 {
  width: 75%;
}

.grid--flex .grid_col--1-of-1,
.grid--flex .grid_col--2-of-2,
.grid--flex .grid_col--3-of-3,
.grid--flex .grid_col--4-of-4,
.grid--flex .grid_col--5-of-5,
.grid--flex .grid_col--6-of-6,
.grid--flex .grid_col--7-of-7,
.grid--flex .grid_col--8-of-8,
.grid--flex .grid_col--12-of-12 {
  width: auto;
  flex-basis: 100%;
  max-width: 100%;
}

.grid--flex .grid_col--1-of-2,
.grid--flex .grid_col--2-of-4,
.grid--flex .grid_col--3-of-6,
.grid--flex .grid_col--4-of-8,
.grid--flex .grid_col--6-of-12 {
  width: auto;
  flex-basis: 50%;
  max-width: 50%;
}

.grid--flex .grid_col--1-of-3,
.grid--flex .grid_col--2-of-6,
.grid--flex .grid_col--4-of-12 {
  width: auto;
  flex-basis: 33.33333%;
  max-width: 33.33333%;
}

.grid--flex .grid_col--2-of-3,
.grid--flex .grid_col--4-of-6,
.grid--flex .grid_col--8-of-12 {
  width: auto;
  flex-basis: 66.66667%;
  max-width: 66.66667%;
}

.grid--flex .grid_col--1-of-4,
.grid--flex .grid_col--2-of-8,
.grid--flex .grid_col--3-of-12 {
  width: auto;
  flex-basis: 25%;
  max-width: 25%;
}

.grid--flex .grid_col--3-of-4,
.grid--flex .grid_col--6-of-8,
.grid--flex .grid_col--9-of-12 {
  width: auto;
  flex-basis: 75%;
  max-width: 75%;
}

.grid_col--push-1-of-1,
.grid_col--push-2-of-2,
.grid_col--push-3-of-3,
.grid_col--push-4-of-4,
.grid_col--push-5-of-5,
.grid_col--push-6-of-6,
.grid_col--push-7-of-7,
.grid_col--push-8-of-8,
.grid_col--push-12-of-12 {
  margin-left: 100%;
}

.grid_col--push-1-of-2,
.grid_col--push-2-of-4,
.grid_col--push-3-of-6,
.grid_col--push-4-of-8,
.grid_col--push-6-of-12 {
  margin-left: 50%;
}

.grid_col--push-1-of-3,
.grid_col--push-2-of-6,
.grid_col--push-4-of-12 {
  margin-left: 33.33333%;
}

.grid_col--push-2-of-3,
.grid_col--push-4-of-6,
.grid_col--push-8-of-12 {
  margin-left: 66.66667%;
}

.grid_col--push-1-of-4,
.grid_col--push-2-of-8,
.grid_col--push-3-of-12 {
  margin-left: 25%;
}

.grid_col--push-3-of-4,
.grid_col--push-6-of-8,
.grid_col--push-9-of-12 {
  margin-left: 75%;
}

.grid_col--pull-1-of-1,
.grid_col--pull-2-of-2,
.grid_col--pull-3-of-3,
.grid_col--pull-4-of-4,
.grid_col--pull-5-of-5,
.grid_col--pull-6-of-6,
.grid_col--pull-7-of-7,
.grid_col--pull-8-of-8,
.grid_col--pull-12-of-12 {
  margin-left: -100%;
}

.grid_col--pull-1-of-2,
.grid_col--pull-2-of-4,
.grid_col--pull-3-of-6,
.grid_col--pull-4-of-8,
.grid_col--pull-6-of-12 {
  margin-left: -50%;
}

.grid_col--pull-1-of-3,
.grid_col--pull-2-of-6,
.grid_col--pull-4-of-12 {
  margin-left: -33.33333%;
}

.grid_col--pull-2-of-3,
.grid_col--pull-4-of-6,
.grid_col--pull-8-of-12 {
  margin-left: -66.66667%;
}

.grid_col--pull-1-of-4,
.grid_col--pull-2-of-8,
.grid_col--pull-3-of-12 {
  margin-left: -25%;
}

.grid_col--pull-3-of-4,
.grid_col--pull-6-of-8,
.grid_col--pull-9-of-12 {
  margin-left: -75%;
}

.grid_col--1-of-5 {
  width: 20%;
}

.grid--flex .grid_col--1-of-5 {
  width: auto;
  flex-basis: 20%;
  max-width: 20%;
}

.grid_col--push-1-of-5 {
  margin-left: 20%;
}

.grid_col--pull-1-of-5 {
  margin-left: -20%;
}

.grid_col--2-of-5 {
  width: 40%;
}

.grid--flex .grid_col--2-of-5 {
  width: auto;
  flex-basis: 40%;
  max-width: 40%;
}

.grid_col--push-2-of-5 {
  margin-left: 40%;
}

.grid_col--pull-2-of-5 {
  margin-left: -40%;
}

.grid_col--3-of-5 {
  width: 60%;
}

.grid--flex .grid_col--3-of-5 {
  width: auto;
  flex-basis: 60%;
  max-width: 60%;
}

.grid_col--push-3-of-5 {
  margin-left: 60%;
}

.grid_col--pull-3-of-5 {
  margin-left: -60%;
}

.grid_col--4-of-5 {
  width: 80%;
}

.grid--flex .grid_col--4-of-5 {
  width: auto;
  flex-basis: 80%;
  max-width: 80%;
}

.grid_col--push-4-of-5 {
  margin-left: 80%;
}

.grid_col--pull-4-of-5 {
  margin-left: -80%;
}

.grid_col--1-of-6 {
  width: 16.66667%;
}

.grid--flex .grid_col--1-of-6 {
  width: auto;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.grid_col--push-1-of-6 {
  margin-left: 16.66667%;
}

.grid_col--pull-1-of-6 {
  margin-left: -16.66667%;
}

.grid_col--5-of-6 {
  width: 83.33333%;
}

.grid--flex .grid_col--5-of-6 {
  width: auto;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.grid_col--push-5-of-6 {
  margin-left: 83.33333%;
}

.grid_col--pull-5-of-6 {
  margin-left: -83.33333%;
}

.grid_col--1-of-7 {
  width: 14.28571%;
}

.grid--flex .grid_col--1-of-7 {
  width: auto;
  flex-basis: 14.28571%;
  max-width: 14.28571%;
}

.grid_col--push-1-of-7 {
  margin-left: 14.28571%;
}

.grid_col--pull-1-of-7 {
  margin-left: -14.28571%;
}

.grid_col--2-of-7 {
  width: 28.57143%;
}

.grid--flex .grid_col--2-of-7 {
  width: auto;
  flex-basis: 28.57143%;
  max-width: 28.57143%;
}

.grid_col--push-2-of-7 {
  margin-left: 28.57143%;
}

.grid_col--pull-2-of-7 {
  margin-left: -28.57143%;
}

.grid_col--3-of-7 {
  width: 42.85714%;
}

.grid--flex .grid_col--3-of-7 {
  width: auto;
  flex-basis: 42.85714%;
  max-width: 42.85714%;
}

.grid_col--push-3-of-7 {
  margin-left: 42.85714%;
}

.grid_col--pull-3-of-7 {
  margin-left: -42.85714%;
}

.grid_col--4-of-7 {
  width: 57.14286%;
}

.grid--flex .grid_col--4-of-7 {
  width: auto;
  flex-basis: 57.14286%;
  max-width: 57.14286%;
}

.grid_col--push-4-of-7 {
  margin-left: 57.14286%;
}

.grid_col--pull-4-of-7 {
  margin-left: -57.14286%;
}

.grid_col--5-of-7 {
  width: 71.42857%;
}

.grid--flex .grid_col--5-of-7 {
  width: auto;
  flex-basis: 71.42857%;
  max-width: 71.42857%;
}

.grid_col--push-5-of-7 {
  margin-left: 71.42857%;
}

.grid_col--pull-5-of-7 {
  margin-left: -71.42857%;
}

.grid_col--6-of-7 {
  width: 85.71429%;
}

.grid--flex .grid_col--6-of-7 {
  width: auto;
  flex-basis: 85.71429%;
  max-width: 85.71429%;
}

.grid_col--push-6-of-7 {
  margin-left: 85.71429%;
}

.grid_col--pull-6-of-7 {
  margin-left: -85.71429%;
}

.grid_col--1-of-8 {
  width: 12.5%;
}

.grid--flex .grid_col--1-of-8 {
  width: auto;
  flex-basis: 12.5%;
  max-width: 12.5%;
}

.grid_col--push-1-of-8 {
  margin-left: 12.5%;
}

.grid_col--pull-1-of-8 {
  margin-left: -12.5%;
}

.grid_col--3-of-8 {
  width: 37.5%;
}

.grid--flex .grid_col--3-of-8 {
  width: auto;
  flex-basis: 37.5%;
  max-width: 37.5%;
}

.grid_col--push-3-of-8 {
  margin-left: 37.5%;
}

.grid_col--pull-3-of-8 {
  margin-left: -37.5%;
}

.grid_col--5-of-8 {
  width: 62.5%;
}

.grid--flex .grid_col--5-of-8 {
  width: auto;
  flex-basis: 62.5%;
  max-width: 62.5%;
}

.grid_col--push-5-of-8 {
  margin-left: 62.5%;
}

.grid_col--pull-5-of-8 {
  margin-left: -62.5%;
}

.grid_col--7-of-8 {
  width: 87.5%;
}

.grid--flex .grid_col--7-of-8 {
  width: auto;
  flex-basis: 87.5%;
  max-width: 87.5%;
}

.grid_col--push-7-of-8 {
  margin-left: 87.5%;
}

.grid_col--pull-7-of-8 {
  margin-left: -87.5%;
}

.grid_col--1-of-12 {
  width: 8.33333%;
}

.grid--flex .grid_col--1-of-12 {
  width: auto;
  flex-basis: 8.33333%;
  max-width: 8.33333%;
}

.grid_col--push-1-of-12 {
  margin-left: 8.33333%;
}

.grid_col--pull-1-of-12 {
  margin-left: -8.33333%;
}

.grid_col--2-of-12 {
  width: 16.66667%;
}

.grid--flex .grid_col--2-of-12 {
  width: auto;
  flex-basis: 16.66667%;
  max-width: 16.66667%;
}

.grid_col--push-2-of-12 {
  margin-left: 16.66667%;
}

.grid_col--pull-2-of-12 {
  margin-left: -16.66667%;
}

.grid_col--5-of-12 {
  width: 41.66667%;
}

.grid--flex .grid_col--5-of-12 {
  width: auto;
  flex-basis: 41.66667%;
  max-width: 41.66667%;
}

.grid_col--push-5-of-12 {
  margin-left: 41.66667%;
}

.grid_col--pull-5-of-12 {
  margin-left: -41.66667%;
}

.grid_col--7-of-12 {
  width: 58.33333%;
}

.grid--flex .grid_col--7-of-12 {
  width: auto;
  flex-basis: 58.33333%;
  max-width: 58.33333%;
}

.grid_col--push-7-of-12 {
  margin-left: 58.33333%;
}

.grid_col--pull-7-of-12 {
  margin-left: -58.33333%;
}

.grid_col--10-of-12 {
  width: 83.33333%;
}

.grid--flex .grid_col--10-of-12 {
  width: auto;
  flex-basis: 83.33333%;
  max-width: 83.33333%;
}

.grid_col--push-10-of-12 {
  margin-left: 83.33333%;
}

.grid_col--pull-10-of-12 {
  margin-left: -83.33333%;
}

.grid_col--11-of-12 {
  width: 91.66667%;
}

.grid--flex .grid_col--11-of-12 {
  width: auto;
  flex-basis: 91.66667%;
  max-width: 91.66667%;
}

.grid_col--push-11-of-12 {
  margin-left: 91.66667%;
}

.grid_col--pull-11-of-12 {
  margin-left: -91.66667%;
}

.grid_col {
  box-sizing: border-box;
  display: inline-block;
  margin-right: -0.25em;
  min-height: 1px;
  padding-left: 20px;
  vertical-align: top;
}

.grid--alt .grid_col {
  padding-left: 50px;
}

@media (max-width: 480px) {
  .grid_col {
    display: block;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .grid_col[class*="grid_col--lg-"] {
    display: inline-block;
    margin-right: -0.24em;
  }

  .grid--flex .grid_col[class*="grid_col--lg-"] {
    display: block;
    margin-right: 0;
  }

  .grid_col.grid_col--lg-1-of-1 {
    width: 100%;
  }

  .grid--flex .grid_col.grid_col--lg-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }

  .grid_col.grid_col--lg-1-of-2,
  .grid_col.grid_col--lg-2-of-4 {
    width: 50%;
  }

  .grid--flex .grid_col.grid_col--lg-1-of-2,
  .grid--flex .grid_col.grid_col--lg-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }

  .grid_col.grid_col--lg-1-of-3 {
    width: 33.33333%;
  }

  .grid--flex .grid_col.grid_col--lg-1-of-3 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .grid_col.grid_col--lg-2-of-3 {
    width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--lg-2-of-3 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .grid_col.grid_col--lg-1-of-4 {
    width: 25%;
  }

  .grid--flex .grid_col.grid_col--lg-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }

  .grid_col.grid_col--lg-3-of-4 {
    width: 75%;
  }

  .grid--flex .grid_col.grid_col--lg-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .grid_col[class*="grid_col--lc-"] {
    display: inline-block;
    margin-right: -0.24em;
  }

  .grid--flex .grid_col[class*="grid_col--lc-"] {
    display: block;
    margin-right: 0;
  }

  .grid_col.grid_col--lc-1-of-1 {
    width: 100%;
  }

  .grid--flex .grid_col.grid_col--lc-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }

  .grid_col.grid_col--lc-1-of-2,
  .grid_col.grid_col--lc-2-of-4 {
    width: 50%;
  }

  .grid--flex .grid_col.grid_col--lc-1-of-2,
  .grid--flex .grid_col.grid_col--lc-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }

  .grid_col.grid_col--lc-1-of-3 {
    width: 33.33333%;
  }

  .grid--flex .grid_col.grid_col--lc-1-of-3 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .grid_col.grid_col--lc-2-of-3 {
    width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--lc-2-of-3 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .grid_col.grid_col--lc-1-of-4 {
    width: 25%;
  }

  .grid--flex .grid_col.grid_col--lc-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }

  .grid_col.grid_col--lc-3-of-4 {
    width: 75%;
  }

  .grid--flex .grid_col.grid_col--lc-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .grid_col[class*="grid_col--md-"] {
    display: inline-block;
    margin-right: -0.24em;
  }

  .grid--flex .grid_col[class*="grid_col--md-"] {
    display: block;
    margin-right: 0;
  }

  .grid_col.grid_col--md-1-of-1 {
    width: 100%;
  }

  .grid--flex .grid_col.grid_col--md-1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }

  .grid_col.grid_col--md-1-of-2,
  .grid_col.grid_col--md-2-of-4 {
    width: 50%;
  }

  .grid--flex .grid_col.grid_col--md-1-of-2,
  .grid--flex .grid_col.grid_col--md-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }

  .grid_col.grid_col--md-1-of-3 {
    width: 33.33333%;
  }

  .grid--flex .grid_col.grid_col--md-1-of-3 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .grid_col.grid_col--md-2-of-3 {
    width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--md-2-of-3 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .grid_col.grid_col--md-1-of-4 {
    width: 25%;
  }

  .grid--flex .grid_col.grid_col--md-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }

  .grid_col.grid_col--md-3-of-4 {
    width: 75%;
  }

  .grid--flex .grid_col.grid_col--md-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
}

@media (max-width: 480px) {
  .grid_col[class*="grid_col--sm-"] {
    display: inline-block;
    margin-right: -0.24em;
  }

  .grid--flex .grid_col[class*="grid_col--sm-"] {
    display: block;
    margin-right: 0;
  }

  .grid_col.grid_col--sm-1-of-2,
  .grid_col.grid_col--sm-2-of-4 {
    width: 50%;
  }

  .grid--flex .grid_col.grid_col--sm-1-of-2,
  .grid--flex .grid_col.grid_col--sm-2-of-4 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }

  .grid_col.grid_col--sm-1-of-3 {
    width: 33.33333%;
  }

  .grid--flex .grid_col.grid_col--sm-1-of-3 {
    width: auto;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }

  .grid_col.grid_col--sm-2-of-3 {
    width: 66.66667%;
  }

  .grid--flex .grid_col.grid_col--sm-2-of-3 {
    width: auto;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
  }

  .grid_col.grid_col--sm-1-of-4 {
    width: 25%;
  }

  .grid--flex .grid_col.grid_col--sm-1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }

  .grid_col.grid_col--sm-3-of-4 {
    width: 75%;
  }

  .grid--flex .grid_col.grid_col--sm-3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }

  .grid--flex .grid_col {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.grid_col--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.grid_col--d-first {
  float: left;
}

.grid--flex .grid_col--d-first {
  float: none;
  order: -1;
}

.grid_col--d-last {
  float: right;
}

.grid--flex .grid_col--d-last {
  float: none;
  order: 1;
}

.grid--no-gutter {
  margin-left: 0;
}

.grid--no-gutter .grid_col {
  padding-left: 0;
}

.grid--no-gutter .grid_col--span-all {
  margin-left: 0;
  width: 100%;
}

.grid--gutter {
  margin-left: -20px;
}

.grid--gutter .grid_col {
  padding-left: 20px;
}

.grid--gutter-40 {
  margin-left: -40px;
}

.grid--gutter-40 .grid_col {
  padding-left: 40px;
}

.grid--gutter-30 {
  margin-left: -30px;
}

.grid--gutter-30 .grid_col {
  padding-left: 30px;
}

.grid--no-space .grid_col {
  margin-right: 0;
}

.grid_col--ab {
  vertical-align: bottom;
}

.grid_col--am {
  vertical-align: middle;
}

/*==================================
--------- UTILITY CLASSES --------
==================================*/
.hidden:not([role="tabpanel"]) {
  display: none !important;
}

.hidden[role="tabpanel"] {
  display: none;
}

.disabled {
  opacity: 0.1;
  border-color: #212121;
  color: #212121;
  transition: none;
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

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

.vtop {
  vertical-align: top;
}

.vmiddle {
  vertical-align: middle;
}

.vbottom {
  vertical-align: bottom;
}

.right {
  float: right;
}

.left {
  float: left;
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.background--cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background--brand {
  background-color: #4248ed;
}

.background--alt-brand {
  background-color: rgba(182, 219, 255, 0.33);
}

.background--lightblue {
  background: #edf6ff;
}

.background--dark {
  background-color: #212121;
}

.background--light {
  background-color: #fff;
}

.background--grey {
  background-color: #f6f6f6;
}

.background--success {
  background-color: #23a217;
}

.background--error {
  background-color: #b72121;
}

.color--brand {
  color: #4248ed;
}

.color--dark {
  color: #212121;
}

.color--black {
  color: #000;
}

.color--grey {
  color: #f6f6f6;
}

.color--success {
  color: #23a217;
}

.color--error {
  color: #b72121;
}

.dark {
  color: #fff;
}

.dark a {
  color: #fff;
}

.dark .button--cta {
  color: #fff;
}

.size--14 {
  font-size: 1.4rem;
}

.size--18 {
  font-size: 1.8rem;
}

.size--20 {
  font-size: 2rem;
}

.no-margin {
  margin: 0;
}

/*==================================
--------- ACCESSIBILITY ----------
==================================*/
input:focus,
select:focus,
textarea:focus,
button:focus,
[href]:focus,
[tabindex]:focus,
[contentEditable="true"]:focus,
.module_add-to-calendar-reveal:focus,
a:focus,
input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
  outline-width: 2px;
  outline-style: dotted;
  outline-color: inherit;
}
.no-outline *:focus {
  outline: none;
}
.button:not(.dark):focus {
  outline-color: #4248ed;
}

[disabled],
[aria-disabled="true"],
[tabindex="-1"] {
  outline: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

#maincontent:focus {
  outline: 0px;
}

/*---------- Javascript ----------*/
.js--loading:after {
  position: relative;
  left: 50%;
  display: inline-block;
  margin: 10px 0 10px -25px;
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\eb27";
  font-size: 50px;
  font-size: 5rem;
  animation: spin 0.8s infinite linear;
}

.js--hidden:not([role="tabpanel"]) {
  display: none;
}

.js--hidden[role="tabpanel"] {
  display: none;
}

.js--visible {
  display: block;
}

.js--disabled {
  opacity: 0.3;
  transition: none;
  pointer-events: none;
}

.js--invalid input[type="text"],
.js--invalid select {
  border: 1px solid #b72121 !important;
}

.js--invalid input[type="checkbox"] {
  border-color: #b72121 !important;
}

/*==================================
----------- MODULE CSS -----------
==================================*/
/*-------- All Module CSS --------*/
.module_header,
.module_back-to-top,
.module_anchor-target,
.module_file-size,
.module_file-type,
.module_file-text {
  display: none;
}

.module_nav,
.module_location,
.module_speakers,
.module_body,
.module_not-found {
  margin-bottom: 10px;
}

.module_options {
  margin-bottom: 30px;
}

.module_links {
  margin-top: 15px;
}

.module_links ul {
  line-height: 1.2;
}

.module_error-container {
  margin-bottom: 30px;
  color: #b72121;
}

.module_add-to-calendar-reveal {
  color: #4248ed;
  cursor: pointer;
}

.module_add-to-calendar-reveal:focus {
  text-decoration: underline;
}

.module_add-to-calendar-list {
  display: none;
}

.module_add-to-calendar-list:after {
  content: "Select your Calendar";
  display: block;
  margin-top: 15px;
  font-size: 1.4rem;
  text-align: center;
}

.fancybox-container .module_add-to-calendar-list {
  padding: 0 30px;
}

.module_add-to-calendar-item {
  display: inline-block;
  margin: 0 10px;
}

.module_add-to-calendar-item--ics {
  display: none;
}

.module_add-to-calendar-link {
  font-size: 2.4rem;
}

.module_add-to-calendar.js--hidden {
  display: none;
}

.module_actions {
  margin-top: 20px;
}

.module_pager {
  margin-top: 20px;
  text-align: right;
}

.module_pager .pager-page {
  color: #000099;
  cursor: pointer;
}

.module_pager .pager-prev,
.module_pager .pager-page:not(:last-child) {
  margin-right: 10px;
}

.module_pager .pager-active {
  color: #2169f9;
  cursor: text;
  pointer-events: none;
  font-weight: 600;
}

.module_pager .pager-prev,
.module_pager .pager-next {
  color: #000099;
  cursor: pointer;
  font-size: 1.4rem;
}

.module_pager .pager-disabled {
  display: none;
}

.module_pager-more {
  margin-top: 40px;
}

/*test*/
.pager_list-item {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0;
}

.pager_list-item:not(:first-child) button {
  margin-left: 10px;
}

.pager_dots {
  margin-right: 5px;
  appearance: none;
  cursor: default;
  margin-left: 10px;
}

.pager-dots {
  display: inline-block;
  vertical-align: top;
  margin: 5px 0;
  margin-right: 5px;
  appearance: none;
  border: 1px solid #000099;
  color: #000099;
  background-color: #f1f1f1;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  padding: 0;
  line-height: 35px;
  text-align: center;
  cursor: default;
}

.pager_button {
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: #000099;
  font-family: inherit;
  font-size: 1.4rem;
}

.pager_button.js--active {
  color: #2169f9;
  cursor: text;
  pointer-events: none;
  font-weight: 600;
}

.pager_button.js--disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  display: none;
}

.pager_button [class^="q4-icon_"],
.pager_button [class*=" q4-icon_"] {
  color: inherit;
  font-size: 1rem;
  pointer-events: none;
}

.module_date-time {
  margin-bottom: 10px;
}

.module_error-container {
  display: block;
}

.module_error-container ul {
  padding-left: 18px;
  list-style-type: disc;
}

.module_error-container ul > li {
  line-height: 1.5;
}

.module_error-container > br {
  display: none;
}

.module_error-container > span {
  display: block;
  line-height: 1.5;
}

.module_error-container > span:before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ec6b";
  margin-right: 5px;
}

.module_headline {
  font-weight: normal;
  font-size: 2.2rem;
}

.module_image {
  display: inline-block;
  max-width: 30%;
  margin-bottom: 16px;
}

.module_image--right {
  float: right;
  margin-left: 32px;
}

.module_image--left {
  float: left;
  margin-right: 32px;
}

.module_introduction {
  margin-bottom: 35px;
}

.module_label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.module_label + .module_required {
  font-size: 1.4rem;
}

.module_links > *,
.module_links li,
.module_links .module_presentation {
  display: inline;
}

@media only screen and (max-width: 480px) {
  .module_links > *,
  .module_links li,
  .module_links .module_presentation {
    display: block;
  }
}

.module_links.module_links--stack > *,
.module_links.module_links--stack li,
.module_links.module_links--stack .module_presentation {
  display: block;
}

.module_link {
  display: inline-block;
  vertical-align: middle;
  margin: 10px 35px 0 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  text-transform: uppercase;
  /* letter-spacing: 1.96px; */
}

.module_link > .module_link-text,
.module_link > i,
.module_link > span {
  vertical-align: middle;
}

.module_link > i:before {
  display: block;
}

.module_link[style="DISPLAY:block;"],
.module_link[style="display: block;"] {
  display: inline-block !important;
}

.module_loader {
  display: inline-block;
  animation: spin 1s linear infinite;
}

.module_message {
  display: block;
  margin: 16px 0;
}

.module_message[style$="hidden;"],
.module_message:empty {
  display: none;
}

.module_message--success {
  color: #23a217;
}

.module_message--success:before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed71";
  margin-right: 5px;
}

.module_message--error {
  color: #b72121;
}

.module_message--error:before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed4f";
  margin-right: 5px;
}

.module_nav-link,
.module_nav .ModuleYearLink,
.module_nav-link:visited,
.module_nav .ModuleYearLink:visited {
  display: inline-block;
  margin-right: 5px;
  padding: 10px 20px;
  border: 2px solid #000099;
  color: #212121;
  font-weight: normal;
}

.module_nav-link.selected,
.module_nav-link.selected:visited,
.module_nav .ModuleYearLink.selected,
.module_nav .ModuleYearLink.selected:visited,
.module_nav-link:visited.selected,
.module_nav-link:visited.selected:visited,
.module_nav .ModuleYearLink:visited.selected,
.module_nav .ModuleYearLink:visited.selected:visited {
  background-color: #000099;
  color: #fff;
}

@media only screen and (max-width: 480px) {
  .module_nav-link,
  .module_nav .ModuleYearLink,
  .module_nav-link:visited,
  .module_nav .ModuleYearLink:visited {
    margin-bottom: 10px;
  }
}

.module_options-label,
.module_options-select {
  margin-right: 10px;
}

@media only screen and (max-width: 480px) {
  .module_options-label,
  .module_options-select,
  .module_options-submit {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.module_pager-more a {
  color: #212121;
}

.module_pager-more a[href] {
  color: #000099;
}

.module_reminder {
  margin-top: 30px;
}

.module_reminder .module_label {
  margin-right: 10px;
}

.module_reminder.js--reminded {
  display: none;
}

.module_required {
  color: #212121;
}

.module_required-text {
  font-size: 1.3rem;
  color: #212121;
}

.module_rss {
  float: right;
}

.module_speakers li {
  margin-bottom: 5px;
}

.module_title {
  text-align: center;
  position: relative;
}

.module_title--border_text {
  display: inline-block;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.module_title--border_right,
.module_title--border_left {
  position: absolute;
  top: calc(50% - 2px);
  background: #b6dbff;
  height: 2px;
  width: 50%;
}

.module_title--border_left {
  left: 0;
}

.module_title--border_right {
  right: 0;
}

.module_input[type="text"],
.module_input[type="email"],
.module_input[type="file"],
.module_dropdown,
.module textarea.module_input {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  max-width: none;
  padding: 12px 20px;
  border-radius: 0;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 0, 153, 0.3);
  background-color: white;
  font-style: italic;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  color: #000099;
}

.module_input[type="text"]::-ms-clear,
.module_input[type="email"]::-ms-clear,
.module_input[type="file"]::-ms-clear,
.module_dropdown::-ms-clear,
.module textarea.module_input::-ms-clear {
  display: none;
}

.module textarea.module_input {
  resize: vertical;
  min-height: 150px;
}

.module_input[type="file"],
.module_dropdown {
  cursor: pointer;
}

.module_input[type="file"] {
  line-height: 1;
}

.module_input--brand[type="text"] {
  display: inline-block;
  width: auto;
  padding: 15px 20px;
  border: 2px solid #000099;
  background: transparent;
}

.module_dropdown {
  background: #f6f6f6 url("../design/svg/q4-icon_chevron-down-black.svg")
    no-repeat right 20px center;
  background-size: 14px 14px;
}

.module_dropdown::-ms-expand {
  display: none;
}

.module-details .module_date-time {
  margin-bottom: 15px;
}

.module-tabs_nav {
  margin-bottom: 15px;
}

.module-tabs_link {
  font-size: 2rem;
  line-height: 1.2;
  color: #000000;
  font-weight: bold;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  display: inline-block;
  padding-bottom: 10px;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  margin-bottom: 15px;
  white-space: nowrap;
}

.dark .module-tabs_link {
  color: #fff;
}

.module-tabs_link.js--selected {
  /* border-color: #58dfb8; */
  border-color: #4248ed;
}

.module-tabs_link:not(:last-child) {
  margin-right: 60px;
}

@media only screen and (max-width: 1200px) {
  .module-tabs_link {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 1024px) {
  .module-tabs_link:not(:last-child) {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 768px) {
  .module-tabs_link {
    font-size: 1.6rem;
  }
  .module-tabs_link:not(:last-child) {
    margin-right: 15px;
  }
}

/*------- Captcha Component ------*/
.CaptchaContainer {
  display: none;
}

.CaptchaContainer table tr:nth-child(1) {
  display: none;
}

.CaptchaContainer table tr:nth-child(2) td {
  padding-bottom: 20px;
}

.CaptchaContainer table tr:nth-child(3) td {
  padding-bottom: 5px;
  font-size: 1.4rem;
}

.CaptchaContainer table tr:nth-child(3) td span {
  display: none !important;
}

.CaptchaContainer table tr:nth-child(4) span {
  display: none !important;
}

.CaptchaContainer table tr td {
  padding-right: 10px;
}

@media only screen and (max-width: 768px) {
  .CaptchaContainer table tr td {
    padding-right: 0;
  }
}

.CaptchaContainer input[type="text"] {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  max-width: none;
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  background-color: #f6f6f6;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 300;
}

.fancybox-container .CaptchaContainer table tr:nth-child(4) td {
  padding-bottom: 20px;
}

.fancybox-container .CaptchaContainer table tr td {
  padding-right: 0;
}

/*- Investment Calculator Widget -*/
.module-calculator_input:not(:last-of-type) {
  margin-bottom: 20px;
}

.module-calculator_input h4 {
  margin-bottom: 12px;
}

.module-calculator_input label {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.module-calculator_input input[type="checkbox"] + label {
  margin: 0;
}

.module-calculator_input-row {
  padding-bottom: 10px;
}

.module-calculator_input-row input[type="text"] {
  margin-top: 10px;
  max-width: 300px;
}

.module-calculator_input-row--other input[type="text"] {
  display: none;
}

.module-calculator_input-row--other input[type="text"].js--revealed {
  display: block;
}

@media screen and (min-width: 1024px) {
  .module-calculator_popup-container {
    min-width: 920px;
  }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  .module-calculator_popup-container .table thead {
    display: none;
  }

  .module-calculator_popup-container .table tbody {
    border-top: 2px solid #000099;
    border-bottom: 2px solid #000099;
  }

  .module-calculator_popup-container .table td {
    display: block;
  }

  .module-calculator_popup-container .table td:before {
    content: attr(data-heading) ": ";
    font-weight: bold;
  }
}

.module-calculator_info td:first-child:before {
  content: none;
}

/*- Committee Composition Widget -*/

.module-committee {
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.module-committee .module_item-container {
  border-top: 2px solid #000099;
  border-bottom: 2px solid #000099;
}

.module-committee .color--brand {
  /* color: #58dfb8; */
  color: #4248ed;
}

@media only screen and (max-width: 768px) {
  .module-committee .module_container--desktop {
    display: none;
  }
}

.module-committee .module_container--tablet {
  display: none;
}

@media only screen and (max-width: 768px) {
  .module-committee .module_container--tablet {
    display: block;
  }
}

.module-committee .module_header {
  display: block;
  color: #000099;
  font-size: 16px;
  font-weight: bold;
}

.module-committee .module_item ~ .module_item {
  border-top: 1px solid #f1f1f1;
}

.module-committee .grid_col {
  padding: 15px 0;
  text-align: center;
}

.module-committee .grid_col:first-child {
  text-align: left;
}

.module-committee_category.js--active .module_header i:before {
  content: "\edc2";
}

.module-committee_custom-role {
  margin-left: 5px;
}

.module-committee_bio {
  padding: 0 15px 20px;
  text-align: left;
}

.module-committee_bio p {
  margin: 0;
}

.module-committee_bio p:not(:last-of-type) {
  margin-bottom: 16px;
}

.module-committee_legend-container {
  padding: 0;
}

.module-committee_legend {
  display: inline-block;
  margin-right: 30px;
}

.module-committee_legend [class*="q4-icon_"] {
  margin-right: 5px;
}

/*----- Dividends Module -----*/
.module-dividends .highcharts-series-0 rect {
  fill: #000099;
}

.module-dividends .highcharts-series-1 rect {
  fill: #4248ed;
}

/*----- Download List Module -----*/
.module-downloads .module_nav {
  display: none;
}

.module-downloads .module_item {
  margin-bottom: 30px;
}

.module-downloads .module_item a {
  color: #000000;
  font-size: 1.8rem;
  line-height: 1.4;
  text-transform: none;
  font-weight: normal;
}

.module-downloads .module_item a:hover {
  color: #000000;
  font-weight: bold;
}

.module-downloads_thumbnail,
.module-downloads_description,
.module-downloads_date {
  display: none;
}

.module-downloads_title {
  position: relative;
}

.module-downloads_title-link {
  margin: 0;
}

.module-downloads .q4icons_icon {
  display: none;
}

.pane--content .module-downloads-corporate-standards .module_container--outer {
  max-width: 700px;
}

@media only screen and (max-width: 480px) {
  .pane--content .module-downloads-corporate-standards img {
    margin-bottom: 30px;
  }
}

.module-tabs--governance .grid {
  margin-left: -60px;
}

.module-tabs--governance .grid > .grid_col {
  padding-left: 60px;
}

.module-tabs--governance {
  margin-bottom: 200px;
}

.module-tabs--governance img {
  margin-bottom: -200px;
}

.module-html-governance .mobile {
  display: none;
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {
  .module-tabs--governance {
    margin-bottom: 0;
    margin-top: 70px;
    text-align: center;
  }

  .module-tabs--governance img {
    margin-bottom: 60px;
    margin-top: -150px;
  }

  .module-tabs--governance .grid {
    margin-left: -20px;
  }

  .module-tabs--governance .grid > .grid_col {
    padding-left: 20px;
  }

  .module-downloads .module_item a {
    font-size: 1.5rem;
  }

  .module-html-governance .mobile {
    display: block;
  }

  .module-html-governance p {
    font-size: 1.4rem;
  }
}

/*--------- Event Module ---------*/
.module-event .module_options {
  margin-bottom: 40px;
}

.module-event .module_location,
.module-event .module_speakers h4,
.module-event .module_body {
  display: none;
}

.module-event-latest.grid_col {
  padding-right: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-event-latest .module_container--content {
  margin-bottom: 50px;
  width: 100%;
}

.module-event-latest .button {
  margin-top: auto;
}

.module-event-latest .module_date-time {
  margin-bottom: 20px;
}

.module-event .module_item ~ .module_item {
  border-top: 1px solid rgba(0, 0, 153, 0.3);
  padding-top: 40px;
  margin-top: 40px;
}

.module-event-latest .module_item ~ .module_item {
  border-color: #fff;
}

@media only screen and (max-width: 768px) {
  .module-event-latest.grid_col {
    padding-left: 20px;
    padding-right: 20px;
    background: #000099;
    align-items: center;
  }
}

.module-event-details .module_speakers h4 {
  display: none;
}

.module-event-details .module_reminder-email.module_input {
  padding: 14px 20px;
}

@media only screen and (max-width: 768px) {
  .module-event-details .module_reminder .grid_col {
    margin-bottom: 20px;
  }
}

.module-event-calendar .module_container--content {
  display: flex;
  width: 100%;
}

.module-event-calendar_calendar-container,
.module-event-calendar_event-container {
  width: 50%;
  text-align: center;
  vertical-align: middle;
}

.module-event-calendar_calendar-container {
  padding-right: 20px;
}

.module-event-calendar_event-container {
  padding: 50px;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-event-calendar_splash [class*="q4-icon_"] {
  font-size: 4rem;
  line-height: 1;
  color: #000099;
}

.module-event-calendar_splash p {
  font-size: 1.4rem;
  line-height: 1.2;
}

.module-event-calendar_controls {
  padding: 15px;
  background-color: #000099;
  font-weight: bold;
  color: #fff;
}

.module-event-calendar_controls button {
  color: inherit;
  background-color: transparent;
  border: 0;
  padding: 5px 0;
}

.module-event-calendar_previous-month,
.module-event-calendar_month,
.module-event-calendar_next-month {
  display: inline-block;
}

.module-event-calendar_previous-month,
.module-event-calendar_next-month {
  cursor: pointer;
}

.module-event-calendar_previous-month {
  float: left;
}

.module-event-calendar_next-month {
  float: right;
}

.module-event-calendar_day-container {
  border-bottom: 1px solid rgba(0, 111, 186, 0.2);
  display: table;
  table-layout: fixed;
  width: 100%;
}

.module-event-calendar_week {
  display: table-row;
}

.module-event-calendar_days {
  display: table-row-group;
}

.module-event-calendar_days > div[role="row"] {
  display: table-row;
}

.module-event-calendar_day {
  display: table-cell;
  position: relative;
  width: 14.285%;
  margin: 0;
  padding: 8px 0 15px;
  border-top: 1px solid rgba(0, 111, 186, 0.2);
  border-left: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day.calendar-dow-6 {
  border-right: 1px solid rgba(0, 111, 186, 0.2);
}

.module-event-calendar_day--name {
  padding: 10px 0;
  border: none;
}

.module-event-calendar_day--today {
  background: #f6f6f6;
}

.module-event-calendar_day--event {
  cursor: pointer;
}

.module-event-calendar_day--event:after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: block;
  height: 4px;
  background-color: #000099;
}

.module-event-calendar_day--selected {
  background-color: #000099;
  color: #fff;
}

.module-event-calendar_day--selected:after {
  background-color: #fff;
}

.module-event-calendar_day--adjacent-month {
  color: rgba(51, 51, 51, 0.1);
  pointer-events: none;
}

.module-event-calendar_day--adjacent-month:after {
  content: none;
}

@media only screen and (max-width: 480px) {
  .module-event-calendar_day {
    display: inline-block;
  }
}

.module-event-calendar .module_item {
  padding: 0;
}

.module-event-calendar .module_date-time,
.module-event-calendar .module_headline {
  margin-bottom: 10px;
}

.module-event-calendar .module_add-to-calendar {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .module-event-calendar .module_container--content {
    display: block;
  }

  .module-event-calendar_calendar-container,
  .module-event-calendar_event-container {
    display: block;
    width: 100%;
  }

  .module-event-calendar_calendar-container {
    padding-right: 0;
  }

  .module-event-calendar_event-container {
    margin-top: 20px;
  }
}

/*---------- FAQ Module ----------*/

.module-accordion_item {
  padding: 0;
  border: 0;
}

.module-accordion_item ~ .module-accordion_item {
  border-top: 1px solid #b6dbff;
}

.module-accordion_trigger {
  color: #000099;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  /* letter-spacing: 2.4px; */
  line-height: 1.6;
  padding: 20px 30px 20px 0;
  position: relative;
  cursor: pointer;
}

.module-accordion_trigger:before {
  font-family: "q4-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ed5d";
  color: #2169f9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 14px;
}

.module-accordion_item.js--active .module-accordion_trigger:before {
  content: "\ed5e";
  color: #000099;
}

.module-accordion_toggle {
  padding-bottom: 20px;
  color: #212121;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.module-accordion_toggle p:first-child {
  margin-top: 0;
}

.module-accordion_toggle p:last-child {
  margin-bottom: 0;
}

.module-faq .toggle-all {
  margin-bottom: 20px;
}

.module-faq .toggle-all .button:before {
  content: "Show All";
}

.module-faq .toggle-all.js--active .button:before {
  content: "Hide All";
}

/*--- Financial Report Modules ---*/
.module-financial-year .button {
  margin-top: 30px;
}

.module-financial-year .module_cover {
  margin-bottom: 15px;
}

.module-financial-year .module_cover img {
  display: inline-block;
  border: 1px solid #000099;
}

.module-financial-year .module_item {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 15px;
}

.module-financial-year .module_item .q4icons_icon {
  display: none;
}

.module-financial-year .module_item ~ .module_item {
  border: none;
}

.module-financial-year .module_links {
  margin: 0;
}

.module-financial-year .module_link {
  margin: 0;
}

.module-financial-year .module-financial_year {
  text-align: center;
  margin-bottom: 35px;
}

.module-financial-quarter .module-accordion_trigger {
  cursor: text;
}

.module-financial-quarter .module-accordion_trigger:before {
  display: none;
}

.module-financial-quarter .module_links {
  margin: 0;
  padding: 0;
}

.module-financial-quarter .module_links > div {
  display: block;
}

.module-financial-table_header {
  color: #000099;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid #000099;
  position: relative;
}

.module-financial-table .slick-slider {
  position: static;
}

.module-financial-table_header-year-container {
  text-align: center;
}

.module-financial-table_header-year,
.module-financial-table_header-category.grid_col {
  padding: 20px 15px;
}

.module-financial-table_body-row ~ .module-financial-table_body-row {
  border-top: 1px solid #f1f1f1;
}

.module-financial-table_body-year-container {
  text-align: center;
}

.module-financial-table_body {
  border-bottom: 2px solid #000099;
}

.module-financial-table_body-year,
.module-financial-table_body-category.grid_col {
  padding: 15px 0;
}

.module-financial-table_body-category.grid_col {
  color: #000099;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.module-financial-table_item {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.module-financial-table_item ~ .module_item {
  margin-right: 5px;
}

.module-financial-table_item--empty {
  opacity: 0.1;
}

@media only screen and (max-width: 768px) {
  .module-financial-table_item {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .module-financial-table_item {
    margin: 5px;
  }
}

.module-financial-table .slick-slider {
  display: inline-block;
  padding: 0;
}

.module-financial-table .slick-slide:focus {
  outline: none;
}

.module-financial-table .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 10;
}

.module-financial-table .slick-prev {
  left: 10px;
}

.module-financial-table .slick-next {
  left: 35px;
}

.module-financial-table .slick-disabled {
  opacity: 0.1;
  cursor: default;
}

.module-financial-mashup .module_body {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

.module-financial-mashup .module_body > *:first-child,
.module-financial-mashup .module_body > style + p {
  margin-top: 0;
}

.module-financial-mashup .module_body:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  z-index: 1;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0.5) 0%,
    white 70%,
    white 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0.5) 0%,
    white 70%,
    white 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5) 0%,
    white 70%,
    white 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70ffffff', endColorstr='#ffffff', GradientType=0);
}

.module-financial-mashup h4 {
  margin-top: 16px;
}

.module-financial-mashup .module-financial-mashup_documents .module_links + h4 {
  margin-top: 30px;
}

.module-financial-mashup
  .module-financial-mashup_documents
  .module_links
  > div {
  background-color: #f6f6f6;
  padding: 15px;
  margin-bottom: 1px;
}

.module-financial-mashup
  .module-financial-mashup_documents
  .module_links
  .module_link {
  margin: 0;
}

.module-financial-mashup .q4-icon_chevron-right {
  font-size: 1rem;
  margin-left: 5px;
}

.module-financial-mashup .button {
  width: 100%;
  min-width: 100%;
}

.module-financial-mashup .button.js--selected {
  background: #000099;
  color: #fff;
}

@media only screen and (min-width: 769px) {
  .module-financial-mashup .module_options--mobile {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .module-financial-mashup .module_options--desktop {
    display: none;
  }
}

/* Latest Quarterly Result Widget */

.module-latest-quarter.grid_col {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.module-latest-quarter .module_container--content {
  margin-bottom: 30px;
  width: 100%;
}

.module-latest-quarter .button {
  margin-top: auto;
}

.module-latest-quarter .module_link {
  letter-spacing: 0;
  text-transform: none;
  font-size: 1.8rem;
  margin: 0;
}

.module-latest-quarter .module_links {
  margin: 0;
  padding: 30px 0;
}

.module-latest-quarter .module_links ~ .module_links {
  border-top: 1px solid #fff;
}

@media only screen and (max-width: 768px) {
  .module-latest-quarter.grid_col {
    background: #4248ed;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .module-latest-quarter.grid_col {
    align-items: center;
  }
}

/*------ Formbuilder Module ------*/
.module-form--custom .module_container--content {
  display: none;
}

.module-form--custom .module_container--content.js--visible {
  display: block;
}

.module-form .module_container--content {
  margin-left: -20px;
}

@media only screen and (max-width: 768px) {
  .module-form .module_container--content {
    margin-left: 0;
  }
}

.module-form .module_error-container li[style="visibility: hidden;"] {
  display: none;
}

.module-form .module_required {
  margin-left: 3px;
}

.module-form .module_container--captcha > div {
  margin: 0;
  padding: 0;
}

.module-form .module_container--captcha > div .ErrorMessage {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  color: #b72121;
}

.module-form
  .module_container--captcha
  > div
  .ErrorMessage[style="visibility: hidden;"] {
  display: none;
}

.module-form_item {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
}

.module-form_item > label,
.module-form_item legend {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.module-form_item legend {
  float: left;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.module-form_item legend ~ ul {
  clear: both;
  padding-left: 10px;
}

.module-form_item ul li:not(:last-of-type) {
  padding-bottom: 5px;
}

.module-form_item--document-request,
.module-form_item--are-you-an-investor {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .module-form_item {
    width: 100%;
    padding-left: 0;
  }
}

.module-form_error-text {
  color: #b72121;
}

.module-form_error-text[style="visibility:hidden;"] {
  display: none;
}

.module-form .CaptchaContainer {
  display: block;
}

.module-form .CaptchaContainer input[type="text"] {
  width: 100%;
}

.fancybox-slide--form .fancybox-content {
  margin: 10px auto;
  max-width: 1000px;
  width: 80% !important;
  height: calc(100% - 20px);
  overflow: visible;
}

.fancybox-slide--form_confirmation .fancybox-content {
  max-width: 700px;
}

.fancybox-slide--form .fancybox-button--close {
  display: none;
}

.module-form--meeting {
  padding: 0 20px !important;
}

.module-form--meeting .module_container--outer {
  padding: 0 !important;
}

.module-form--meeting_header {
  padding: 20px !important;
}

.module-form--meeting_header .module_container--outer {
  padding: 0 !important;
}

@media screen and (min-width: 769px) {
  .module-form--meeting_header {
    padding: 20px !important;
  }

  .module-form--meeting_header .grid {
    direction: rtl;
  }

  .module-form--meeting_header .grid .grid_col {
    direction: ltr;
  }
}

.module-form--meeting_header-intro {
  font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
  .module-form--meeting_header-intro {
    text-align: center;
  }
}

.module-form--meeting_header-intro h3 {
  margin: 0 0 10px 0;
  color: #fff;
  font-size: 2.6rem;
}

.module-form--meeting_header-intro p {
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .module-form--meeting_header-logo {
    text-align: center;
    margin-bottom: 10px;
  }
}

.module-form--meeting_header-logo span {
  font-size: 1.1rem;
  display: block;
}

.module-form--meeting_header-logo img {
  margin: 5px;
}

.module-form--meeting_footer {
  background-color: #000099;
  color: #fff;
  font-size: 1.3rem;
}

.module-form--meeting_footer img {
  margin-right: 20px;
  vertical-align: bottom;
}

.module-form--meeting .module_introduction {
  font-size: 1.3rem;
  margin: 0;
}

.module-form--meeting .module-form_item label,
.module-form--meeting .module-form_item legend {
  line-height: 15px;
  vertical-align: top;
}

.module-form--meeting .module-form_item--namehidden .module_input {
  margin-top: 20px;
}

.module-form--meeting .module-form_item--namehidden label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

@media only screen and (min-width: 769px) {
  .module-form--meeting .module-form_item--additional-information-optional {
    width: 75%;
  }
}

.module-form--meeting .module-form_item--date-request-optional {
  position: relative;
}

@media only screen and (min-width: 769px) {
  .module-form--meeting .module-form_item--date-request-optional {
    width: 25%;
  }
}

.module-form--meeting .module-form_item--date-request-optional:before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e921";
  position: absolute;
  right: 20px;
  bottom: calc(50% - 19px);
  color: #212121;
}

.module-form--meeting .module-form_item--current-shareholder {
  display: block;
}

.module-form--meeting .module-form_item--current-shareholder legend {
  margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder legend {
    display: block;
    float: none;
  }
}

.module-form--meeting .module-form_item--current-shareholder ul {
  display: inline-block;
  padding-left: 20px;
}

@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder ul {
    display: block;
    padding-left: 0;
    padding-top: 10px;
  }
}

.module-form--meeting .module-form_item--current-shareholder ul li {
  padding-left: 20px;
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 480px) {
  .module-form--meeting .module-form_item--current-shareholder ul li {
    padding-left: 0;
    padding-right: 20px;
  }
}

.module-form--meeting .module-form_item--consent-checkbox {
  width: 100%;
}

.module-form--meeting .module-form_item--consent-checkbox label {
  padding-left: 30px;
  position: relative;
}

.module-form--meeting .module-form_item--consent-checkbox label:before,
.module-form--meeting .module-form_item--consent-checkbox label:after {
  position: absolute;
  left: 0;
  top: 50% !important;
  transform: translateY(-50%);
}

.module-form--meeting .module-form_item--consent-checkbox label:after {
  left: 3px;
}

.module-form--meeting .module-form_itemCaptcha {
  position: relative;
  padding-left: 25px;
}

.module-form--meeting .module-form_itemCaptcha input[type="text"] {
  color: #212121;
}

.module-form--meeting .module_dropdown {
  color: #212121;
}

.module-form--meeting .module_input {
  color: #212121;
}

.module-form--meeting .module_required {
  display: none;
}

.module-form--meeting .module_actions {
  margin: 0 -20px;
  padding: 20px;
  background-color: #373737;
  text-align: right;
}

.module-form--meeting .module_actions .module_link {
  color: #fff;
  margin: 0 15px 0 0;
  text-decoration: none;
  text-transform: none;
  font-size: 1.4rem;
}

.module-form--meeting .module_actions [type="submit"][disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.module-form--meeting_confirmation {
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
  max-width: 520px;
  margin: auto;
}

.module-form--meeting_confirmation .module_container--inner:before {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e920";
  font-size: 4.6rem;
  color: #212121;
  display: block;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .module-form--meeting .module-form_item--namehidden .module_input {
    margin-top: 0;
  }
}

.module-glossary .module_header {
  display: block;
}

.module-glossary .module_header table {
  width: 100%;
  table-layout: fixed;
}

.module-glossary .module_header table a {
  color: #212121;
  font-weight: normal;
}

.module-glossary .module_header table a[href] {
  color: #000099;
}

/*---------- Job Modules ---------*/
.module-job-list_table-wrap {
  overflow-x: auto;
}

.module-job-details_description-container {
  margin-bottom: 35px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.module-job-details_description label {
  font-weight: normal;
}

.module-job-details_description input {
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  float: right;
  /* font-family: "Century Gothic", Georgia, Verdana, sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 0;
}

@media only screen and (max-width: 480px) {
  .module-job-details_description label:after {
    content: ":";
  }

  .module-job-details_description input {
    display: block;
    float: none;
    margin-top: 5px;
  }
}

.module-job-details .grid_col {
  padding: 15px 20px;
}

.module-job-application_table {
  display: block;
  width: 100%;
  margin-left: -20px;
  font-size: 0;
}

.module-job-application_table tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 20px;
  vertical-align: top;
  font-size: 1.6rem;
}

.module-job-application_table tr:last-child {
  margin-bottom: 0;
}

.module-job-application_table tr.module-job-application_cover-letter-text,
.module-job-application_table tr.module-job-application_resume-text {
  width: 100%;
}

.module-job-application_table tr td {
  display: block;
  position: relative;
}

.module-job-application_table tr label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 768px) {
  .module-job-application_table {
    margin-left: 0;
  }

  .module-job-application_table tr {
    width: 100%;
    padding-left: 0;
  }
}

.module-job-application .module_required {
  font-size: 1.4rem;
}

/*----- Miscellaneous Modules ----*/
.module-script {
  display: none;
}

.module-slideshow_ratio {
  padding-bottom: 56.25%;
  /* this should be changed with aspecRatio option in widget */
  position: relative;
}

.module-slideshow_viewer:not(.grid_col) {
  display: inline-block;
  width: 100%;
  max-width: 640px;
}

.module-slideshow_viewer:not(.grid_col):not(:last-child) {
  margin-bottom: 25px;
}

.module-slideshow_title {
  margin-bottom: 10px;
  display: none;
}

.module-slideshow .module_links > * + * {
  margin-top: 15px;
}

.module-slideshow_link {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.module-slideshow iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

.module-rss p + h2 {
  margin: 40px 0 30px;
}

/*------ Navigation Modules ------*/
.nav_close {
  display: none;
}

.nav_guide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media only screen and (max-width: 1024px) {
  .nav_guide {
    display: none;
  }
}

.nav a[tabindex="-1"]:focus {
  /* navigation needs this for accessibility purpose  */
  outline-width: 2px !important;
  outline-style: dotted !important;
  outline-color: inherit !important;
}

/*start header desktop navigation*/

.nav--main .level1 > li {
  margin: 0 20px;
  display: inline-block;
}

.nav--main .level1 > li > a {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  margin: 15px 0;
  border-bottom: 3px solid transparent;
}

/* .nav--main .level1 > li.selected > a,
.nav--main .level1 > li.expanded > a,
.nav--main .level1 > li:hover > a {
  border-color: #58dfb8;
} */

.nav--main .level1 > li.js--no-hover > a {
  border-color: transparent;
}

.nav--main .level2 {
  display: none;
  text-align: center;
  top: 100%;
  left: 0;
  right: 0;
  background: #000064;
  width: 100%;
  z-index: 9;
  position: relative;
  align-items: center;
}

.nav--main .level2:before {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1000%;
  width: 10000%;
}

.nav--main li.has-children.selected > .level2,
.nav--main li.has-children.expanded > .level2 {
  display: flex;
}

.nav--main .level2 > li {
  position: relative;
  display: inline-block;
}

.nav--main .level2 > li > a {
  color: #fff;
  font-size: 1.4rem;
  padding: 20px;
  display: inline-block;
  position: relative;
  line-height: normal;
}

.nav--main .level2 > li > a:hover {
  text-decoration: underline;
}

.nav--main .level2 > li.expanded > a,
.nav--main .level2 > li.selected > a {
  font-weight: bold;
  color: #fff;
}

.nav--main .level2 > li:hover > a {
  color: #fff;
}

.nav--main .level3 {
  display: none;
  position: absolute;
  text-align: center;
  top: 100%;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
  -webkit-box-shadow: 0px 6px 18px 0px rgba(0, 0, 153, 0.1);
  -moz-box-shadow: 0px 6px 18px 0px rgba(0, 0, 153, 0.1);
  box-shadow: 0px 6px 18px 0px rgba(0, 0, 153, 0.1);
  white-space: nowrap;
  z-index: 9;
}

.nav--main li.has-children:hover > .level3 {
  display: block;
}

.nav--main .level2 > li.has-children:hover > a:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 21px solid transparent;
  border-right: 21px solid transparent;
  border-top: 21px solid #010764;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 100%;
  z-index: 99;
}

.nav--main .level3 > li {
  display: inline-block;
}

.nav--main .level3 > li > a {
  color: #000099;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 25px;
  display: inline-block;
}

.nav--main .level3 > li.expanded > a,
.nav--main .level3 > li.selected > a {
  color: #4248ed;
}

.nav--main .level3 > li:hover > a {
  text-decoration: underline;
}

.nav--main-secondary .level1,
.nav--main-secondary .level1 > li {
  margin: 0;
  line-height: 0;
}

.nav--main-secondary .level1 > li > a {
  display: none;
}

@media only screen and (max-width: 1600px) {
  .nav--main .level2 > li:nth-last-child(-n + 2) .level3 {
    right: 0;
    left: auto;
    transform: none;
  }
}

@media only screen and (max-width: 768px) {
  .nav--main .level2 > li > a {
    font-size: 1.4rem;
  }
  .nav--main .level2 > li {
    position: static;
  }
  .nav--main .level3 {
    display: block;
    width: 100%;
    left: 0;
    transform: none;
  }
}

/*end header desktop navigation*/

/*start mobile nav*/

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

.nav--secondary li {
  display: block;
}

.nav--secondary a {
  font-size: 1.6rem;
  color: #000099;
  font-weight: bold;
  padding: 10px 0;
  display: block;
  line-height: 1.2;
}

.nav--secondary li.has-children > a:after {
  font-family: "q4-icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\edc2";
  color: #2169f9;
  margin-left: 8px;
  font-size: 1.2rem;
  font-weight: bold;
}

.nav--secondary .level2 {
  display: none;
  padding-left: 25px;
}

.nav--secondary .level1 > li.js--expanded .level2 {
  display: block;
}

.nav--secondary .level2 a {
  font-size: 1.4rem;
  color: #212121;
  padding: 8px 0;
}

.nav--secondary .level3 {
  display: none;
  padding-left: 25px;
}

.nav--secondary .level2 > li.js--expanded .level3 {
  display: block;
}

/*end mobile nav*/

.nav--sitemap {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.nav--sitemap a {
  display: inline-block;
}

.nav--sitemap .level1 {
  column-count: 3;
  column-gap: 20px;
}

.nav--sitemap .level1 > li {
  break-inside: avoid;
  display: block;
}

.nav--sitemap .level1 > li:not(:last-of-type) {
  margin-bottom: 35px;
}

.nav--sitemap .level1 > li > a,
.nav--sitemap .level1 > li > a:visited {
  margin-bottom: 15px;
  font-size: 2.4rem;
  color: #212121;
  text-transform: uppercase;
}

.nav--sitemap .level2 > li,
.nav--sitemap .level3 > li {
  padding: 5px 0;
}

.nav--sitemap .level2 > li > a,
.nav--sitemap .level3 > li > a {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
}

.nav--sitemap .level2 > li > a {
  margin-bottom: 5px;
}

.nav--sitemap .level3 > li {
  padding-left: 15px;
}

@media only screen and (max-width: 768px) {
  .nav--sitemap .level1 {
    column-count: 2;
  }
}

@media only screen and (max-width: 480px) {
  .nav--sitemap .level1 {
    column-count: auto;
    column-gap: normal;
  }
}

/*-------- News Module CSS -------*/
.module-news .module_options {
  margin-bottom: 40px;
}

.module-news .module_item ~ .module_item {
  border-top: 1px solid rgba(0, 0, 153, 0.3);
  padding-top: 40px;
  margin-top: 40px;
}

.module-news-latest:not(.module-media-news_latest) {
  background: url(../design/banner/banner-image-home-news.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.module-news-latest .module_container--content {
  margin-bottom: 50px;
  width: 100%;
}

.module-news-latest .module_item {
  padding: 0 20px;
  border: none;
  text-align: left;
  height: 100%;
}

.module-news-latest .module_item-wrap {
  height: 100%;
  padding: 40px 40px 50px;
  background: #fff;
  box-shadow: 2px 2px 11px #00000033;
  position: relative;
}

.module-news-latest .module_date-time {
  margin: 20px 0;
  font-weight: normal;
  color: #212121;
}

.module-news-latest .module_headline {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
}

.module-news-latest .module_shortbody {
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  line-height: 1.6;
}

.module-news-latest .module_links {
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: 30px;
}

.module-news-latest .module_link {
  margin: 0;
  font-size: 3rem;
}

.module-news-latest .slick-arrow:before {
  color: #000099;
  font-size: 60px;
}

.module-news-latest .slick-slider {
  padding: 0 80px;
}

@media only screen and (max-width: 768px) {
  .module-news-latest .module_headline {
    font-size: 2rem;
  }
}

.module-news-details .module_body a {
  word-break: break-all;
}

.module-news-details .module_view-all-link {
  display: inline-block;
  margin-bottom: 25px;
}

.module-news-details .module_body {
  display: inline-block;
  width: 100%;
}

.module-news-details .module_view-all-link--bottom {
  margin-top: 25px;
  margin-bottom: 0;
}

.module-news-details_category {
  display: none;
}

.module-news-details ul {
  margin: 16px 0;
  padding-left: 32px;
  list-style-type: disc;
}

.module-news-details ul li {
  line-height: 1.5;
}

.module-news-details .module_multimedia .module_link {
  margin: 0;
  display: block;
  font-weight: normal;
  text-transform: none;
}

.module-news-details .module_multimedia-caption {
  margin-bottom: 16px;
}

.module-news-details .module_multimedia-caption .module_file-text {
  display: block;
}

.module-news-details .module_multimedia-caption .module_file-resolution {
  display: none;
}

.module-news-details .module_multimedia-image {
  width: 100%;
  float: none;
}

.module-news-details .module_multimedia-size {
  margin-top: 10px;
}

.module-news-details .module_multimedia-size .module_file-size {
  display: inline;
}

.module-news-details .module_multimedia-size .module_file-resolution:before {
  content: "(";
}

.module-news-details .module_multimedia-size .module_file-resolution:after {
  content: ")";
}

@media only screen and (max-width: 1024px) {
  .module-news-details .module_multimedia-item {
    margin-bottom: 30px;
  }

  .module-news-latest .module_item-wrap {
    padding: 20px;
  }

  .module-news-latest .slick-arrow:before {
    font-size: 30px;
  }

  .module-news-latest .slick-slider {
    padding: 0 20px;
  }
}

/*------ Person List Module ------*/
.module-person span {
  display: block;
}

.module-person button {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0;
  background: transparent;
  border: none;
  margin: auto;
  overflow: visible;
}

.module-person .module-person_description,
.module-person .module-person_res-photo-container,
.module-person .module_comma {
  display: none;
}

.module-person .module_item {
  position: relative;
  padding: 0 0 50px 20px;
  border: none;
  text-align: center;
}

.module-person .module-person_wrap {
  cursor: pointer;
}

.module-person .module-person_photo-container {
  border-radius: 100%;
  width: 183px;
  height: 183px;
  margin: 0 auto 20px;
  cursor: pointer;
  position: relative;
}

.module-person--bod .module-person_photo-container {
  display: none;
}

.module-person .module-person_icon {
  position: absolute;
  bottom: 20px;
  right: 8px;
  max-width: 24px;
}

.module-person .module-person_photo-container img.module-person_photo {
  vertical-align: top;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  border-radius: 100%;
  object-fit: cover;
  transition: transform 0.2s;
}

.module-person .module-person_wrap:hover img.module-person_photo {
  transform: scale(1.1);
}

.module-person .module-person_name {
  display: block;
  font-size: 1.8rem;
  /* letter-spacing: 1.8px; */
  color: #212121;
  transition: all 0.2s ease-in-out;
}

.module-person--director .module-person_wrap:hover .module-person_name,
.module-person--bod .module-person_wrap:hover .module-person_name {
  color: #4248ed;
}

.module-person_title {
  font-size: 1.6rem;
  letter-spacing: 0;
  color: #000;
  font-weight: normal;
  text-transform: none;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  margin-top: 10px;
  display: block;
}

.fancybox-container .module-person .module-person_icon {
  display: none;
}

.fancybox-container .module-person .module_item {
  max-width: 1078px;
  padding: 20px 50px;
}

.fancybox-container
  .module-person
  .module-person_wrap:hover
  img.module-person_photo {
  transform: none;
}

@media only screen and (max-width: 768px) {
  .fancybox-container .module-person .module_item {
    padding: 0;
  }
}

.fancybox-container .module-person_photo-container,
.fancybox-container .module-person_name-container {
  display: inline-block;
  vertical-align: middle;
}

.fancybox-container .module-person_name-container {
  position: static;
  background: transparent;
  text-align: left;
  opacity: 1;
  visibility: visible;
  cursor: initial;
  max-width: calc(100% - 258px);
  display: inline-block;
  flex: 1;
}

.fancybox-container .module-person_name-container .h3 {
  position: static;
  transform: none;
}

.fancybox-container .module-person_name-container a {
  color: #212121;
}

.fancybox-container .module-person_photo-container {
  width: 258px;
  height: 258px;
  margin-right: 40px;
  cursor: inherit;
  margin-bottom: 0;
}

.fancybox-container .module-person_wrap {
  cursor: default;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

.fancybox-container .module-person_wrap.js--no-photo {
  max-width: none;
}

@media only screen and (max-width: 1024px) {
  .fancybox-container .module-person_wrap {
    display: block;
  }

  .fancybox-container .module-person_photo-container {
    margin-right: 15px;
    margin-bottom: 35px;
  }
  .fancybox-container .module-person_name-container {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .fancybox-container .module-person_photo-container {
    margin-right: 0;
    max-width: none;
  }
}

.fancybox-container .module-person_name {
  display: block;
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #000099;
  /* letter-spacing: 2.2px; */
  font-family: inherit;
}

.fancybox-container .module-person_title {
  font-size: 1.8rem;
  color: #000000;
  letter-spacing: 0;
}

.fancybox-container .module-person_description-container {
  margin-top: 20px;
}

.fancybox-container .module-person_description {
  display: block;
  text-align: left;
  color: #000000;
  font-size: 1.8rem;
}

.module-person-accordion .module-person_name {
  margin-right: 10px;
}

.module-person-accordion .module-person_title {
  font-size: 1.4rem;
  font-weight: normal;
}

.module-person-accordion .module_comma {
  display: none;
}

.module-person-accordion .module-person_description-container {
  padding: 15px;
}

.module-person-accordion .module-person_photo-container {
  float: left;
  margin: 0 25px 15px 0;
}

@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_photo-container {
    float: none;
    margin: 0 auto 15px auto;
    text-align: center;
  }
}

.module-person-accordion .module-person_photo-container img {
  display: block;
  margin: auto;
}

.module-person-accordion .module-person_description > *:first-child {
  margin-top: 0;
}

.module-person-accordion .module-person_res-photo-container > span {
  margin-right: 10px;
}

@media only screen and (max-width: 768px) {
  .module-person-accordion .module-person_res-photo-container > span {
    display: block;
    margin: 0 0 10px 0;
  }
}

.module-person-details .module_title {
  display: none;
}

.module-person-details .module_comma {
  display: none;
}

.module-person-details_photo-container,
.module-person-details_name-container {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.module-person-details_photo-container {
  max-width: 30%;
  margin-right: 40px;
}

@media only screen and (max-width: 768px) {
  .module-person-details_photo-container {
    margin-right: 15px;
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 480px) {
  .module-person-details_photo-container {
    margin-right: 0;
    max-width: none;
  }
}

.module-person-details_name {
  display: block;
  margin-bottom: 10px;
  font-size: 3.6rem;
  color: #000099;
}

.module-person-details_title {
  display: block;
  font-size: 2.4rem;
}

.module-person-details_description-container {
  margin-top: 40px;
}

.module-presentation .module_body {
  display: none;
}

/*------ Q4 Preview Toolbar ------*/
body.PreviewBody {
  margin: 0;
  background-position: 0;
}

body.PreviewBody .PreviewToolBar {
  position: fixed;
  top: 100%;
  bottom: auto;
  width: 100%;
  margin: 0;
  padding: 35px 20px;
  border: 0;
  background: #212121;
  font-size: 0;
  text-align: left;
  color: #fff;
  z-index: 100;
}

body.PreviewBody .PreviewToolBar.js--open {
  top: auto;
  bottom: 0;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 20px;
  background: #212121;
  transform: translate(0, -100%);
  font-size: 2.4rem;
  cursor: pointer;
}

body.PreviewBody .PreviewToolBar .PreviewTrigger.js--active i:before {
  content: "\ed6d";
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
body.PreviewBody .PreviewToolBar .PreviewDateControls {
  display: inline-block;
  vertical-align: middle;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
  font-size: 1.6rem;
  margin-right: 15px;
  line-height: 50px;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft {
  float: none;
}

body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before {
  content: "Select Preview Type:";
}

body.PreviewBody .PreviewToolBar .PreviewDateControls {
  float: right;
}

body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
  content: "Select Preview Date:";
}

body.PreviewBody .PreviewToolBar img {
  display: none;
}

body.PreviewBody .PreviewToolBar input[type="radio"],
body.PreviewBody .PreviewToolBar label,
body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
  display: inline-block;
  margin-right: 5px;
  /* font-family: "Century Gothic", Georgia, Verdana, sans-serif !important; */
  font-family: "CentraNo2", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  text-transform: uppercase;
  vertical-align: baseline;
}

body.PreviewBody .PreviewToolBar input[type="text"],
body.PreviewBody .PreviewToolBar select,
body.PreviewBody .PreviewToolBar input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 15px 20px;
  border: 0;
  border-radius: 0;
}

body.PreviewBody .PreviewToolBar label + input[type="radio"] {
  margin-left: 15px;
}

body.PreviewBody .PreviewToolBar input[type="text"] {
  min-width: 110px;
}

body.PreviewBody .PreviewToolBar select {
  padding: 15px 35px 15px 20px;
  background: #fff url("../design/svg/q4-icon_chevron-down-black.svg") no-repeat
    right 10px center;
  background-size: 14px 14px;
}

body.PreviewBody .PreviewToolBar select::-ms-expand {
  display: none;
}

body.PreviewBody .PreviewToolBar input[type="submit"] {
  background: #000099;
  color: #fff !important;
}

@media only screen and (max-width: 1024px) {
  body.PreviewBody .PreviewToolBar .PreviewFloatLeft,
  body.PreviewBody .PreviewToolBar .PreviewDateControls {
    display: block;
    float: none;
    margin-bottom: 15px;
  }

  body.PreviewBody .PreviewToolBar .PreviewFloatLeft:before,
  body.PreviewBody .PreviewToolBar .PreviewDateControls:before {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  body.PreviewBody .PreviewToolBar input[type="radio"],
  body.PreviewBody .PreviewToolBar label,
  body.PreviewBody .PreviewToolBar input[type="text"],
  body.PreviewBody .PreviewToolBar select,
  body.PreviewBody .PreviewToolBar input[type="submit"] {
    margin-bottom: 5px;
  }
}

/*-------- Search Modules --------*/
.module-search {
  position: relative;
  text-align: right;
}

.module-search_input[type="text"] {
  display: inline-block;
  width: 90%;
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  font-size: 1.4rem;
  margin: 0;
}

.module-search_button {
  position: absolute;
  top: 10px;
  right: 0;
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  background: transparent url("../design/svg/search-blue.svg");
  background-size: 100%;
  font-size: 0;
  cursor: pointer;
}

.module-search-result_link {
  margin-bottom: 15px;
}

.module-search-result_description {
  display: block;
  margin-bottom: 15px;
}

.module-search-result_description:after {
  content: "...";
}

.module-search-result_url {
  display: none;
}

.module-search-results {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}

.module-search-results .form_fields-right input {
  width: 100%;
  border-color: #000099;
  color: #979797;
}

.module-search-results .form_field {
  margin-bottom: 25px;
}

.module-search-results .form_field--date {
  position: relative;
}

.module-search-results .form_field--date:after {
  content: "\ea5f";
  position: absolute;
  top: 42px;
  right: 15px;
  font-family: "q4-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #000099;
  clear: both;
  display: table;
  font-size: 20px;
}

.module-search-results .form_field--search {
  margin-bottom: 35px;
}

.module-search-results .form_label {
  color: #212121;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 7px;
}

.module-search-results .form_select {
  color: #000099;
  font-size: 14px;
  width: 100%;
  border-color: #000099;
  display: block !important;
}

.module-search-results .form_select + .sbHolder {
  display: none;
}

.module-search-results .form_input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border: 1px solid #000099;
  border-radius: 0;
  box-shadow: none;
  padding: 13px;
  color: #212121;
  display: block;
}

.module-search-results_link {
  margin-bottom: 10px;
  display: inline-block;
}

.module-search-results_item {
  box-shadow: inset 0 1px 0 0 rgba(204, 201, 196, 0.3),
    inset 0 -1px 0 0 rgba(204, 201, 196, 0.3);
  padding: 30px 0;
}

.module-search-results_url,
.module-search-results_result a {
  word-wrap: break-word;
}

.module-search-results_url {
  display: none;
}

.module-search-results_result:after {
  content: "";
  display: table;
  clear: both;
}

.module-search-results_description {
  color: #212121;
  font-size: 14px;
}

.module-search-results_summary {
  color: #212121;
  font-size: 20px;
  line-height: 21px;
  text-shadow: 1px 1px #ffffff;
  font-weight: 400;
  margin: 0 0 30px;
}

.module-search-results_summary span {
  color: #000099;
}

.module-search-results_pager {
  float: right;
}

.module-search-results .pager_list {
  margin: 20px 0 0 0;
  padding: 0;
  list-style: none;
  text-align: right;
  display: flex;
  flex-wrap: wrap;
}

.module-search-results .pager_list-item {
  background-color: #eeeeee;
  margin: 1px 0;
  font-weight: 400;
  color: #939ba0;
  font-size: 13px;
  line-height: 17px;
  cursor: pointer;
  position: relative;
}

.module-search-results .pager_list-item a {
  display: block;
  color: #939ba0;
  transition: 0.3s ease-in-out;
  padding: 11px 6px;
}

.module-search-results .pager_list-item a.active,
.module-search-results .pager_list-item a:hover {
  color: #000099;
}

.module-search-results .pager_list-item--previous,
.module-search-results .pager_list-item--next {
  position: relative;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}

.module-search-results .pager_list-item--previous > a,
.module-search-results .pager_list-item--next > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 39px;
  text-align: center;
  background-color: #eeeeee;
}

.module-search-results .pager_list-item--previous > a:after,
.module-search-results .pager_list-item--next > a:after {
  content: "\edbe";
  font-family: "q4-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  color: #000099;
  vertical-align: top;
}

.module-search-results .pager_list-item--previous {
  transform: rotate(180deg);
}

.module-search-results .pager_list-item--next {
  margin-right: 25px;
}

.module-search-results .pager_text {
  display: none;
}

@media only screen and (max-width: 768px) {
  .module-search-results .form-fields-right .grid_col {
    padding-left: 0;
  }

  .module-search-results .form-fields--pages {
    margin-top: 25px;
    display: block;
    width: 100%;
  }

  .module-search-results .form-fields--search {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .module-search-results .form_field.form_field--date {
    overflow: auto;
  }
}

/*-------- SEC Module CSS --------*/
.module-sec .module_options-select {
  margin-right: 0;
}

.module-sec .module_header {
  display: block;
  width: 100%;
  color: #000099;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

.module-sec .module_header-text {
  padding: 15px 0;
}

.module-sec .module_container--content {
  border-bottom: 2px solid #000099;
  border-top: 2px solid #000099;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.module-sec .module_item ~ .module_item {
  border-top: 1px solid #f1f1f1;
}

.module-sec .module_item .grid_col {
  vertical-align: middle;
  padding: 15px 0;
  margin: 0;
}

.module-sec .module_item .module-sec_filing {
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .module-sec .module_options .grid_col:not(:first-child) {
    margin-top: 20px;
  }

  .module-sec .module_header {
    display: none;
  }

  .module-sec .module_header + .module_item {
    border-top: 2px solid #000099;
  }

  .module-sec .module_item {
    padding: 15px 0;
  }

  .module-sec .module_item:first-child {
    border-top: 2px solid #000099;
  }

  .module-sec .module_item:last-child {
    border-bottom: 2px solid #000099;
  }

  .module-sec .module_item .grid_col {
    padding: 0 5px;
  }

  .module-sec .module_item + .module_footer {
    border-bottom: 2px solid #000099;
  }
}

.module-sec_download-list-item {
  display: inline-block;
}

.module-sec_download-list .module_link {
  margin: 0;
}

.module-sec_download-list .q4icons_icon:before {
  font-size: 2.4rem;
}

@media only screen and (max-width: 768px) {
  .module-sec_date,
  .module-sec_filer,
  .module-sec_filing,
  .module-sec_description {
    margin-bottom: 15px;
  }
}

.module-sec-details_date,
.module-sec-details_description {
  margin-bottom: 15px;
}

.module-sec-details_download-list-item {
  display: inline-block;
}

.module-sec-details_download-list .module_link {
  margin: 0;
}

.module-sec-details_download-list .q4icons_icon:before {
  font-size: 2.4rem;
}

/*---- Accessibility Skip Link ---*/
.module-skip_link {
  position: absolute;
  top: -100px;
  left: 50%;
  padding: 15px 20px;
  background: transparent;
  color: white;
  transform: translate(-50%, 0);
  transition: 0.5s ease-in-out;
  z-index: 100;
}

.module-skip_link:focus,
.module-skip_link:active,
.module-skip_link:hover {
  top: 0;
  background: #000099;
  outline: 0;
}

.module-skip_link:visited {
  color: #fff;
}

.module-slider .module_container--outer {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.module-slider .module_container--inner {
  display: table-cell;
  vertical-align: middle;
  height: 390px;
}

.module-slider .slick-slider {
  padding: 0 40px;
}

.module-slider .slick-slider .slick-slide {
  float: none;
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}

.module-slider .slick-arrow:before {
  font-size: 30px;
}

.module-slider .module_add-to-calendar-reveal {
  color: #fff;
}

.module-slider .module-slider_title h1 {
  margin: 0;
}

.module-slider .module_loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.module-slider_description {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 10px;
}

.module-slider_description .module_date-time {
  font-size: inherit;
}

.module-slider_description p {
  margin: 10px 0;
}

.module-slider_description p:first-child {
  margin-top: 0;
  margin-bottom: 10px;
}

.module-slider_description .module_links {
  margin-top: 10px;
  margin-bottom: 0;
}

/*------ Stock Chart Widget ------*/
.module-stock-chart [data-highcharts-chart].js--hidden {
  display: block !important;
  max-height: 0;
  overflow: hidden;
}

.module-stock-chart .highcharts-legend-item:first-child path {
  stroke: #000099;
}

.module-stock-chart .highcharts-legend-item:first-child text {
  cursor: default !important;
}

.module-stock-chart .highcharts-series-0 {
  stroke: #000099;
}

.module-stock-chart .highcharts-series-0 path:first-child {
  stroke: #000099;
}

.module-stock-chart .highcharts-series-group .highcharts-series-2 path {
  stroke: #2169f9;
  stroke-width: 2px;
}

.module-stock-chart .highcharts-navigator rect {
  fill: rgba(0, 0, 153, 0.6);
}

.module-stock-chart .highcharts-navigator-handle {
  stroke: rgba(0, 0, 0, 0.05);
  fill: #f2f2f2;
  cursor: ew-resize;
}

.module-stock-chart .highcharts-navigator-handle-right rect,
.module-stock-chart .highcharts-navigator-handle-left rect {
  stroke-width: 0;
  fill: #000099;
}

.module-stock-chart .highcharts-navigator-handle-right path,
.module-stock-chart .highcharts-navigator-handle-left path {
  stroke: #fff;
}

.module-stock-chart .highcharts-highcharts-scrollbar g:first-of-type rect {
  fill: #000099;
  stroke: #000099;
}

.module-stock-chart .highcharts-range-selector {
  box-sizing: content-box;
}

.module-stock-chart .highcharts-range-input rect {
  stroke: #cccccc;
  fill: #f2f2f2;
}

.module-stock-chart .highcharts-button rect,
.module-stock-chart .highcharts-input-group rect {
  stroke-width: 0;
  fill: rgba(0, 0, 0, 0.05);
}

.module-stock-chart .highcharts-button text,
.module-stock-chart .highcharts-input-group text {
  fill: #212121;
}

.module-stock-chart .highcharts-container > svg > .highcharts-button {
  display: none;
}

/*------ Stock Header Module -----*/

.module-stock-header .module_container--content {
  padding: 100px 0 100px 100px;
  position: relative;
}

.module-stock-header_description1 {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.module-stock-header_stock-price {
  display: inline-block;
  margin-right: 10px;
  font-size: 6.5rem;
  font-weight: bold;
  line-height: 1.2;
  vertical-align: middle;
}

.module-stock-header_stock-price:before {
  content: "$";
}

.module-stock-header_change,
.module-stock-header_percent-change {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
  vertical-align: middle;
}

.module-stock-header_indicator {
  margin-right: 5px;
}

.module-stock-header_percent-change:before {
  content: "(";
}

.module-stock-header_percent-change .module-stock-header_indicator {
  display: none;
}

.module-stock-header_percent-change:after {
  content: ")";
}

.module-stock-header_volume {
  display: block;
  margin-bottom: 32px;
}

.module-stock-header_volume:before {
  content: "Volume ";
  font-weight: bold;
}

.module-stock-header_date {
  margin-top: 15px;
  margin-bottom: 5px;
}

.module-stock-header_description3,
.module-stock-header_date {
  display: block;
  font-size: 1.2rem;
}

.module-stock-header_volume-text {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .module-stock-header .module_container--content {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .module-stock-header.grid_col {
    background-image: url(../design/banner/Mask-Image-Mobile.jpg);
    margin: 0 -20px -70px -20px;
    width: calc(100% + 40px);
    padding: 0 20px;
  }

  .module-stock-header .module_container--content {
    padding: 60px 0;
  }

  .module-stock-header_stock-price {
    display: block;
    margin-right: 0;
  }
}

/*------ Stock Quote Module ------*/
.module-stock .module_options {
  margin-bottom: 30px;
}

.module-stock .module_container--content {
  border-top: 1px solid rgba(34, 34, 34, 0.2);
}

@media only screen and (max-width: 768px) {
  .module-stock.module-stock-historical .module-stock_empty {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .module-stock-historical .module_options-label,
  .module-stock-historical .module_options-select,
  .module-stock-historical .module_options-submit {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.module-stock .stock-historical-range .module_options > *:not(:last-of-type) {
  margin-bottom: 20px;
}

.module-stock_lookup-title {
  color: #000099;
  font-size: 16px;
  padding: 15px 0;
  margin: 0;
}

.module-stock_wrap {
  border-top: 2px solid #000099;
  border-bottom: 2px solid #000099;
}

.module-stock_label,
.module-stock_value {
  border-bottom: 1px solid #f1f1f1;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.module-stock_label > span,
.module-stock_value > span {
  display: block;
  padding: 15px 0;
}

.module-stock_up {
  color: #23a217;
}

.module-stock_down {
  color: #b72121;
}

.module-stock_label {
  font-weight: normal;
}

.module-stock_value .module-stock_price:before,
.module-stock_value .module-stock_high:before,
.module-stock_value .module-stock_low:before,
.module-stock_value .module-stock_open:before,
.module-stock_value .module-stock_close:before,
.module-stock_value .module-stock_week-low:before,
.module-stock_value .module-stock_week-high:before,
.module-stock_value .module-stock_previous-close:before {
  content: "$";
}

.module-stock_date {
  margin-top: 15px;
  font-style: italic;
  font-size: 1.4rem;
}

.module-stock_delay {
  margin-top: 15px;
  font-style: italic;
  font-size: 1.4rem;
  text-align: right;
}

@media only screen and (max-width: 480px) {
  .module-stock_delay {
    text-align: left;
    margin-top: 8px;
  }
}

/*- MailingList Subscribe Module -*/
.module-subscribe--no-ir-text .module_introduction .ir-text {
  display: none;
}

.module-subscribe_table {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.module-subscribe_table tbody {
  width: 100%;
  display: block;
}

.module-subscribe_form {
  font-size: 0;
}

.module-subscribe_form tr {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
  vertical-align: top;
  font-size: 1.6rem;
}

.module-subscribe_form tr:nth-child(even) {
  padding-left: 10px;
}

.module-subscribe_form tr:nth-child(odd) {
  padding-right: 10px;
}

.module-subscribe_form tr.module-subscribe_notes-text {
  margin: 0;
}

.module-subscribe_form tr.module-subscribe_notes-text,
.module-subscribe_form tr.module-subscribe_notes-input {
  display: block;
  width: 100%;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  .module-subscribe_form tr {
    width: 100%;
  }

  .module-subscribe_form tr:nth-child(even) {
    padding-left: 0;
  }

  .module-subscribe_form tr:nth-child(odd) {
    padding-right: 0;
  }
}

.module-subscribe_form td {
  display: block;
}

.module-subscribe_form label {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.module-subscribe_mailing-list tr.module-subscribe_list-header td {
  padding-bottom: 15px;
}

.module-subscribe_mailing-list tr table td {
  padding-bottom: 10px;
}

.module-subscribe_mailing-list tr table tr:last-child td {
  padding-bottom: 0;
}

.module-subscribe .module_required {
  font-size: 1.4rem;
}

.module-subscribe .CaptchaContainer {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .module-subscribe .CaptchaContainer {
    width: 100%;
  }
}

.module-subscribe_unsubscribe {
  display: none;
}

.page-media-email-alerts .module-subscribe_unsubscribe {
  display: block;
  margin-top: 30px;
}

/* MailingList Unsubscribe Module */

.module-unsubscribe_table {
  width: 50%;
}

@media only screen and (max-width: 768px) {
  .module-unsubscribe_table {
    width: 100%;
  }
}

.module-unsubscribe_table td {
  padding-right: 10px;
}

@media only screen and (max-width: 768px) {
  .module-unsubscribe_table td {
    padding-right: 0;
  }
}

.module-unsubscribe_table label {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.module-unsubscribe_table .module_input[type="text"],
.module-unsubscribe_table .module_input[type="email"] {
  background-color: #fff;
}

/*==================================
----------- LAYOUT CSS -----------
==================================*/
/*------- iframe layout CSS ------*/
.layout--iframe .pane--content .module {
  padding: 35px 0;
}

.layout--iframe .pane--content .module_container--outer {
  max-width: none;
}

/*==================================
------------ BLANK CSS -----------
==================================*/
/*-------- Layout Specific -------*/

.layout_footer {
  background: #fff;
}

@media only screen and (max-width: 1024px) {
  .layout.js--mobile {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
  }
}

.layout .layout_inner {
  position: relative;
  overflow-x: hidden;
}

/*--------- Pane Specific --------*/

.pane--header {
  position: relative;
  background-color: #000099;
  z-index: 10;
  border-top: 6px solid #000099;
}

.pane--header .module-logo img {
  padding: 30px 0 10px;
  max-width: 290px;
}

.pane--header .layout_toggle {
  display: none;
  font-size: 3rem;
  position: absolute;
  top: 0;
  min-width: 66px;
  right: 0;
  color: #fff;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.pane--header .layout_toggle i:focus {
  outline: none;
}

@media only screen and (max-width: 768px) {
  .pane--header .module-logo img {
    margin-bottom: 0;
    padding: 16px 0;
    vertical-align: middle;
    max-width: 161px;
  }

  .pane--header .layout_toggle {
    display: flex;
  }

  .pane--header .nav {
    display: none;
  }
}

.module-banner-image,
.pane--banner {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.page--home .pane--banner {
  min-height: 400px;
  background-image: url(../design/banner/home-video-placeholder.jpg);
  display: flex;
  align-items: center;
  height: 1px;
  text-align: center;
  position: relative;
}

.module-banner-video video {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: auto;
  object-fit: cover;
}

.page--leadership .pane--banner {
  min-height: 250px;
  background-image: url(../design/banner/banner-leadership.jpg);
}

.page--leadership .module-banner-image {
  min-height: 250px;
  background-image: url(../design/banner/banner-leadership2.jpg);
}

.page--inclusion-diversity .pane--banner {
  min-height: 250px;
  background-image: url(../design/banner/banner-inclusion-diversity.jpg);
  display: flex;
  align-items: center;
  height: 1px;
}

.page--corporate-standards .pane--banner {
  min-height: 250px;
  background-image: url(../design/banner/banner-corporate-standards.jpg);
}

.page--corporate-standards .module-downloads .module_item a {
  font-size: 1.7rem;
}

.page--corporate-standards .module_headline {
  font-size: 1.4rem;
}

.page--community-impact .pane--banner {
  min-height: 250px;
  background-image: url(../design/banner/banner-comminity-impact2.jpg);
  display: flex;
  align-items: center;
  height: 1px;
}

.section--investors .pane--banner {
  /*background-image: url('../doc_news/2023/05/Explore-image-extract.png');*/
  /*background-image: url('../doc_news/2025/03/newsdetailsbg.jpg');*/
  background-image: url("../doc_news/2025/03/GettyImages-1270904789-92.jpg");
  background-position: center 60%;
  height: 250px;
}

.section--investors-news-details .pane--banner {
  /*background-image: url('../doc_news/2023/05/Explore-image-extract.png');*/
  /*background-image: url('../doc_news/2025/03/newsdetailsbg.jpg');*/
  /*background-image: url('../images/banner/EXPLORE_Banner.png');*/
  background-image: url("../doc_multimedia/2025/5/19/Pool.png");
  background-position: center 40%;
  height: 250px;
}

.page--investors .pane--banner {
  background: transparent;
  height: auto;
}

.pane--banner .pane_inner {
  max-width: 1360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.pane--banner .grid--no-gutter {
  font-size: 0;
}

.pane--banner .grid_col > * {
  font-size: 1.6rem;
}

.pane--banner h2 {
  margin: 0;
}

.page--home .pane--banner .h2 {
  margin: 40px 0 0;
}

.pane--banner p {
  margin: 0;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

@media only screen and (max-width: 1024px) {
  .pane--banner .pane_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.module-overview-stock {
  position: relative;
  margin-top: 40px;
}

.module-overview-stock:before {
  content: "";
  background-image: url(../design/banner/Mask-Image.png);
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
}

.module-overview .module_container--content {
  padding-right: 100px;
}

@media only screen and (max-width: 1024px) {
  .module-overview .module_container--content {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .module-overview-stock {
    margin-top: 0;
  }

  .module-overview-stock:before {
    display: none;
  }

  .module-overview .module_container--content {
    padding: 0 0 60px 0;
  }

  .pane--banner img.logo {
    max-width: 70px;
  }

  .page--home .pane--banner .h2 {
    margin: 0;
  }
}

.pane--navigation {
  display: none;
  padding: 30px;
}

.pane--navigation .layout_toggle {
  color: #000099;
  font-size: 3rem;
}

@media only screen and (max-width: 1024px) {
  .pane--navigation {
    position: fixed;
    top: 6px;
    right: 0;
    transition: 0.5s ease-in-out;
    overflow-y: scroll;
    z-index: 120;
    background: #fff;
    display: block;
    left: 100%;
    bottom: 0;
  }

  .js--mobile .pane--navigation {
    top: 6px;
    left: 0;
  }
}

.pane--content .module {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pane--content .module_container--outer {
  max-width: 1360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}

.pane--content .module--full-width > .module_container--outer {
  max-width: 100%;
  padding: 0;
}

.pane--content .module--small-width > .module_container--outer {
  max-width: 1000px;
}

@media only screen and (max-width: 1024px) {
  .pane--content .module_container--outer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pane--content .module--full-width > .module_container--outer {
    padding: 0;
  }
}

.pane--content .module--thin {
  padding-top: 35px;
  padding-bottom: 35px;
}

.pane--content .module--thin-top {
  padding-top: 35px;
}

.pane--content .module--thin-bottom {
  padding-bottom: 35px;
}

.pane--content .module--thick {
  padding-top: 140px;
  padding-bottom: 140px;
}

.pane--content .module--thick-top {
  padding-top: 140px;
}

.pane--content .module--thick-bottom {
  padding-bottom: 140px;
}

@media only screen and (max-width: 1024px) {
  .pane--content .module--thick {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pane--content .module--thick-top {
    padding-top: 70px;
  }

  .pane--content .module--thick-bottom {
    padding-bottom: 70px;
  }
}

.pane--content .module--no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.pane--content .module--no-padding-top {
  padding-top: 0;
}

.pane--content .module--no-padding-bottom {
  padding-bottom: 0;
}

.pane--content .module-sitemap {
  padding-bottom: 35px;
}

.page--investors .pane--footer {
  padding-top: 60px;
  padding-bottom: 30px;
  font-size: 1.4rem;
}

.pane--footer .pane_inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--footer .module_title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 16px;
  /* letter-spacing: 3px; */
}

.pane--footer .module-subscribe {
  padding-bottom: 60px;
}

.pane--footer .module_error-container {
  margin-bottom: 20px;
}

.pane--footer .module_error-container ul {
  display: inline-block;
  text-align: left;
}

.pane--footer .module_error-container p {
  display: none;
}

.pane--footer .module_error-container li {
  margin-bottom: 10px;
}

.pane--footer .module_introduction {
  display: none;
}

.pane--footer .module-subscribe_email label,
.pane--footer .module-subscribe_list-header,
.pane--footer .module-subscribe_email .module_required,
.pane--footer .module-subscribe .CaptchaContainer {
  display: none;
}

.pane--footer .module-subscribe_form tbody {
  display: block;
}

.pane--footer .module-subscribe_form tr {
  width: 100%;
  margin: 0;
  padding: 0;
}

.pane--footer .module-subscribe_mailing-list {
  margin: 20px 0 10px;
}

.pane--footer .module-subscribe_mailing-list tr table tr {
  display: inline-block;
  width: 33.33%;
  vertical-align: top;
  padding-right: 10px;
}

.pane--footer .module-subscribe_list > td {
  padding: 0;
}

.pane--footer .module-subscribe p {
  padding-right: 35px;
}

.pane--footer .module-subscribe .module_input[type="text"],
.pane--footer .module-subscribe .module_input[type="email"] {
  width: calc(100% - 180px);
}

.pane--footer .module-subscribe .module_actions {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.pane--footer .module-subscribe .module_actions .button {
  min-width: 169px;
}

.pane--footer .module-subscribe_table-wrap {
  position: relative;
  max-width: 85%;
}

.pane--footer .module-subscribe_unsubscribe {
  display: block;
  padding-left: 24px;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.pane--footer .module-subscribe_unsubscribe a {
  color: #000099;
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  .pane--footer .module-subscribe_table-wrap {
    max-width: 100%;
  }

  .pane--footer .module-subscribe .module_input[type="text"],
  .pane--footer .module-subscribe .module_input[type="email"] {
    width: 100%;
  }

  .pane--footer .module-subscribe_mailing-list tr table tr {
    width: 100%;
    padding-right: 0;
  }

  .pane--footer .module-subscribe .module_actions {
    position: static;
    margin: 15px 0;
  }

  .pane--footer .module-subscribe .module_actions .button {
    width: 100%;
  }
}

/*start contact footer*/

.pane--footer .module-contact {
  padding-bottom: 60px;
}

.pane--footer .module-contact p {
  font-size: 1.4rem;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.pane--footer .module-contact a {
  font-weight: normal;
  color: #4248ed;
}

/*end contact footer*/

/*start nav footer*/

.pane--footer2 {
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  padding: 50px 0 40px 0;
}

.pane--footer2 .pane_inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pane--footer2 .nav {
  margin-bottom: 25px;
}

.pane--footer2 .nav li {
  padding: 15px 35px;
  display: inline-block;
  vertical-align: top;
}

.pane--footer2 .nav a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
}

.pane--footer2 .nav a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  .pane--footer2 .nav li {
    width: 33.33%;
    padding: 10px;
  }

  .pane--footer2 .nav a {
    font-size: 1.2rem;
  }
}

/*end nav footer*/

/*start quicklinks footer*/

.pane--footer2 .module-links li {
  display: inline-block;
}

.pane--footer2 .module-links li a {
  font-size: 1.2rem;
  /* letter-spacing: 0.12px; */
  vertical-align: middle;
}

.pane--footer2 .module-links li ~ li:before {
  content: "|";
  margin: 0 4px;
  font-size: 1.3rem;
  vertical-align: baseline;
}

/*end quicklinks footer*/

.pane--footer2 {
  background: #000099;
  position: relative;
}

.pane--footer2 .module-logo {
  width: 78px;
  height: 78px;
  background: #000099;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}

.copyright {
  font-size: 1.2rem;
  /* letter-spacing: 0.12px; */
  line-height: 1.6;
}

.copyright p {
  font-size: 1.2rem;
  /* letter-spacing: 0.12px; */
  margin-bottom: 30px;
}

.module-q4-credits {
  text-align: center;
  font-size: 1.2rem;
}

.module-q4-credits a {
  color: #fff;
}

/*--------- Page Specific --------*/
.page--no-alternating .pane--content {
  padding: 35px 0;
}

.page--no-alternating .module {
  padding-top: 35px;
  padding-bottom: 35px;
}

/*start IR Home*/

.module-brand-logos img {
  max-width: 988px;
  width: 100%;
}

.module-brand-logos img.mobile {
  display: none;
  width: auto;
  margin: auto;
  max-width: 100%;
}

@media only screen and (max-width: 1024px) {
  .module-brand-logos img.mobile {
    display: block;
  }

  .module-brand-logos img.desktop {
    display: none;
  }
}

.module-events-quarterly {
  background: linear-gradient(to right, #000099 50%, #4248ed 50%);
}

@media only screen and (max-width: 768px) {
  .module-events-quarterly {
    text-align: center;
  }

  .module-events-quarterly .grid--flex {
    background: none;
    margin: 0 -20px;
  }
}

.module-links-home {
  background: url(../design/banner/banner-image-home-quicklinks.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
}

.module-links-home:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 322px;
  height: 330px;
  background: url(../design/EGLogo_cropped.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.module-links-home .module_container--outer {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}

.module-links-home .module_title {
  padding-bottom: 10px;
  position: relative;
  padding-right: 30px;
  z-index: 1;
}

.module-links-home .module_title--border_bottom {
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: 0;
  position: absolute;
  width: 300px;
}

.module-links-home .module_container--inner {
  background: rgba(0, 0, 153, 0.7);
  padding: 100px 70px 80px;
  flex: 1;
  position: relative;
}

.module-links-home .module-links_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.module-links-home .module-links_list li {
  position: relative;
  padding-top: 110px;
  width: 25%;
  text-align: center;
}

.module-links-home .module-links_list a i {
  display: block;
  font-size: 7.5rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.module-links-home .module-links_list a {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  .module-links-home .module_container--inner {
    padding: 80px 40px 60px;
  }

  .module-links-home .module-links_list li {
    width: 50%;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .module-links-home .module_container--inner {
    padding: 80px 40px 60px;
  }

  .module-links-home .module_title {
    width: 100%;
    text-align: center;
  }

  .module-links-home .module_title:before {
    height: 100px;
    width: 1px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -105px;
  }

  .module-links-home .module-links_list li {
    width: 100%;
    max-width: 100%;
    padding: 45px 0 45px 80px;
    text-align: left;
  }

  .module-links-home .module-links_list a i {
    left: 0;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
  }
}

/*end IR Home*/

/*Media section*/
.page--media-header {
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
}

.page--media-header .pane--banner {
  display: none;
}

.page--media-header .pane--header {
  background: #000099;
}

.page--media-header .nav--main li a {
  color: #ffffff;
}

.page--media-header .nav--main .level1 > li.selected > a,
.page--media-header .nav--main .level1 > li.expanded > a,
.page--media-header .nav--main .level1 > li:hover > a {
  border-color: #ffffff;
}

.module-media-social_icons {
  margin: 30px 0;
}

.module-media-social_icons a {
  color: #6d7278;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.module-media-social_icons ul li {
  display: inline-block;
  margin: 20px 23px 0 23px;
}

.module-media-social_icons a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.module-media-social h1,
.module-media-social h3 {
  font-size: 20px;
  font-weight: bold;
  /* letter-spacing: 3px; */
  color: #4248ed;
  margin-bottom: 40px;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .module-media-social .module_container--inner .grid_col + .grid_col {
    margin-top: 60px;
  }
}

.module-news-latest.module-media-news_latest .slick-slider {
  padding: 0 45px;
}

@media only screen and (max-width: 767px) {
  .module-news-latest.module-media-news_latest .slick-slider {
    padding: 0 10px;
  }
}

.module-media-news {
  background: url(../design/banner/media-news-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}

.module-media-news_latest .slick-list {
  padding: 20px 0;
}

.module-media-news .tabs_nav {
  max-width: 470px;
  display: flex;
  margin: 0 auto 25px auto;
  justify-content: space-between;
}

.module-media-news .tabs_link {
  color: #4248ed;
  padding: 0 0 10px 0;
  border-bottom: 4px solid transparent;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  /* letter-spacing: 3px; */
  margin: 0;
}

.module-media-news .tabs_link.js--selected {
  border-color: #4248ed;
}

.module-media-news_latest .module_thumb {
  height: 150px;
  margin-bottom: 30px;
}

.module-media-news_latest .module_top-text {
  display: flex;
  justify-content: space-between;
}

.module-media-news_latest .module_top-text span {
  font-size: 13px;
  color: #000000;
}

.module-media-news_latest .module_top-text {
  margin-bottom: 25px;
}

.module-media-news_latest .module_headline {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

.module-media-news_latest .module_headline a:not(:hover) {
  color: #000000;
}

.module-media-news_latest .module_shortbody {
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  word-break: break-word;
}

.module-media-news_latest .slick-arrow:before {
  font-size: 40px;
}

.module-media-news .slick-dots li button {
  background: #4248ed;
}

.module-media-news_archive .module_container--widget {
  padding: 50px 80px;
  background: #ffffff;
  box-shadow: 0px 3px 10px #dddddd;
}

.module-media-news_archive .module_date-time {
  margin: 0;
  color: #000099;
  font-size: 13px;
  font-style: italic;
}

.module-media-news_archive .module_headline a:not(:hover) {
  color: #000099;
}

.module-media-news_archive .module_headline {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.module-media-news_archive .module_item {
  padding: 12px 0;
}

.module-media-news_archive .slick-list {
  padding: 10px 0;
}

.module-media-news_archive .slick-slider .slick-track {
  display: block;
}

/*
.module-media-news .tabs_item.js--hidden:not([role=tabpanel]){
display: block !important;
height: 0;
overflow: hidden;
}
*/
.module-media-news_archive .module_items-container {
  position: relative;
}

.module-media-news_archive .slick-dots {
  position: absolute;
  right: 0;
  top: 30px;
  bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
  z-index: 2;
}

.module-media-news_archive .slick-dots li {
  display: block;
  margin-right: 0;
}

.module-media-news_archive .slick-dots li button {
  border: 2px solid #ffffff;
  width: 12px;
  height: 12px;
  position: relative;
  background: #000099;
}

.module-media-news_archive .slick-dots li:not(.slick-active) button {
  opacity: 0;
}

.module-media-news_archive .slick-dots:before {
  content: "";
  background: #000099;
  width: 2px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
}

.module-media-news_archive .slick-prev {
  transform: rotate(90deg);
  right: 5px;
  top: 25px;
  bottom: auto;
  left: auto;
}

.module-media-news_archive .slick-next {
  transform: rotate(90deg);
  right: 5px;
  bottom: 5px;
  top: auto;
  left: auto;
}

.module-media-news_archive .slick-arrow:before {
  font-size: 14px;
}

.module-media-news_archive .module-search_input[type="text"] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #000099;
  padding: 14px 0;
  font-size: 12px;
  font-weight: bold;
  color: #000099;
  width: 300px;
  font-weight: 400;
  font-style: italic;
}

.module-media-news_archive .module-search {
  display: inline-block;
}

.module-media-news_archive .module_options {
  text-align: right;
}

.module-media-news_archive .module_options > * {
  display: inline-block;
  margin-left: 40px;
  vertical-align: bottom;
}

.module-news-details .module_body .image,
.module-news-details figure {
  max-width: 500px;
}

.module-news-details figure figcaption {
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: normal;
  margin: 16px 0;
}

.module-news-details .module-news_logo {
  max-width: 300px;
}

.module-news-details .gallery-carousel-nav {
  display: none;
}

.module-media-news_archive-links {
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
  padding: 15px 0;
}

.module-media-news_archive-links li {
  display: inline-block;
}

.module-media-news_archive-links a {
  font-weight: bold;
  font-size: 13px;
  margin: 10px;
}

@media only screen and (max-width: 1023px) {
  .module-media-news_archive .grid_col {
    width: 100%;
    display: block;
  }

  .module-media-news_archive .grid_col + .grid_col {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .module-media-news_archive .module_container--widget {
    padding: 50px 30px;
  }

  .module-media-news_archive .module_options {
    text-align: left;
  }

  .module-media-news_archive .module_options > * {
    margin-left: 0;
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .module-news-latest .slick-dots li {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .module-media-news .tabs_link {
    font-size: 16px;
  }

  .module-media-news_archive .module-search--news {
    width: 100%;
  }

  .module-media-news_archive .module-search_input[type="text"] {
    width: 100%;
  }
}

.module-blog-section {
  background: linear-gradient(to right, #0101cb 50%, #0718a7 50%);
}

.module-blog-section h1,
.module-blog-section h3 {
  font-size: 20px;
  /* letter-spacing: 3px; */
  margin-bottom: 16px;
  line-height: 1.2;
}

.module-blog-section p {
  font-weight: 400;
  font-size: 16px;
}

.module-blog-section .module_container--inner > .grid > .grid_col:first-child {
  padding-right: 80px;
}

.module-blog-section .module_container--inner > .grid > .grid_col:nth-child(2) {
  padding-left: 80px;
}

.module-media-contact p {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 15px 0;
}

.module-blog-section .module_thumb {
  width: 100%;
  height: 150px;
}

.module-blog-section .grid--no-gutter .grid--gutter-30 .grid_col {
  padding-left: 30px;
}

.module-blog-section .module_container--content {
  margin-top: 45px;
}

.module-blog-section .module_headline {
  font-size: 16px;
  font-weight: bold;
  line-height: 22px;
}

.module-blog-section .module_short-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.module-blog-section .module_item > div {
  height: 100%;
  background: rgba(40, 91, 237, 0.73);
}

.module-blog-section .module_item-warp {
  padding: 25px;
}

.module-blog-section .module-blog-section_careers .module_item + .module_item {
  margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
  .module-blog-section
    .module_container--inner
    > .grid
    > .grid_col:first-child {
    padding-left: 0;
    padding-right: 20px;
  }

  .module-blog-section
    .module_container--inner
    > .grid
    > .grid_col:nth-child(2) {
    padding-right: 0;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .module-blog-section .module-blog-section_tech .module_item + .module_item {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .pane--content .module.module-blog-section {
    background: transparent;
    padding: 0;
  }

  .module-blog-section
    .module_container--inner
    > .grid
    > .grid_col:first-child {
    background: #0101cb;
    padding: 40px 20px;
  }

  .module-blog-section
    .module_container--inner
    > .grid
    > .grid_col:nth-child(2) {
    background: #0718a7;
    padding: 40px 20px;
  }

  .pane--content .module-blog-section .module_container--outer {
    padding-left: 0;
    padding-right: 0;
  }
}

.module-subscribe--media {
  background: #0101cb;
  position: relative;
  z-index: 1;
}

.module-subscribe--media:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: url(../design/banner/media-subscribe.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.module-subscribe--media .module_container--inner,
.module-subscribe--media h2 {
  width: 50%;
  padding-right: 100px;
}

.module-subscribe--media h2 {
  text-align: left;
  font-size: 20px;
  /* letter-spacing: 3px; */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 50px;
}

.module-subscribe--media .module_introduction {
  display: none;
}

.module-subscribe--media .module-subscribe_form tr {
  width: 100%;
}

.module-subscribe--media .module-subscribe_form label {
  display: none;
}

.module-subscribe--media .module-subscribe_form tr:nth-child(even),
.module-subscribe--media .module-subscribe_form tr:nth-child(odd) {
  padding-left: 0;
  padding-right: 0;
}

.module-subscribe--media .module-subscribe_form .module_required {
  display: none;
}

.module-subscribe--media input[type="checkbox"] + label:before,
.module-subscribe--media input[type="radio"] + label:before {
  border-color: #ffffff;
}

.module-subscribe--media .module_required {
  color: #ffffff;
}

.module-subscribe--media .module_error-container,
.module-subscribe--media .module_message--error {
  color: #ffffff;
}

.module-subscribe--media .module_input[type="text"],
.module-subscribe--media .module_input[type="email"] {
  background: rgba(40, 91, 237, 0.73);
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  border: 0;
  padding: 15px 20px;
  font-style: normal;
}

@media only screen and (max-width: 1024px) {
  .module-subscribe--media .module_container--inner,
  .module-subscribe--media h2 {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .module-subscribe--media .module_container--inner,
  .module-subscribe--media h2 {
    width: 100%;
    padding-right: 0;
  }

  .pane--content .module.module-subscribe--media {
    padding-bottom: 370px;
  }

  .module-subscribe--media:before {
    height: 300px;
    width: 100%;
    left: 0;
    bottom: 0;
    top: auto;
  }
}

/*Media nav*/

@media only screen and (max-width: 1024px) {
  .module-media-nav--desktop {
    display: none;
  }
}

.module-media-social .eapps-instagram-feed-title-container {
  display: none;
}

.module-media-social_instagram {
  max-height: 1000px;
  overflow-y: auto;
}

/*START CORP HOME PAGE*/

.module-travel-partner .h2 i {
  font-size: 3rem;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 4px;
}

.module-travel-partner p {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.module-travel-partner .grid_col-wrap {
  display: inline-block;
}

.module-travel-partner .grid_col-wrap img {
  transition: transform 0.2s;
  max-width: 300px;
}

.module-travel-partner .grid_col-wrap.js--hover img {
  transform: scale(1.1);
}

/**/

.module-home-slider .slick-list {
  position: relative;
  top: -25px;
  margin-bottom: -50px;
  background-image: url(../design/logo-small.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 22%;
}

.module-home-slider .slick-slider {
  padding: 0;
}

.module-home-slider .slick-slide img {
  display: inline-block;
}

.module-home-slider .slick-arrow:before {
  font-size: 5rem;
  /* color: #58dfb8; */
  color: #4248ed;
}

.module-home-slider .slick-prev {
  left: calc(25% + 60px);
}

.module-home-slider .slick-next {
  right: calc(25% + 50px);
}

.module-home-slider .slick-dots {
  position: absolute;
  bottom: 90px;
  width: 100%;
  left: 0;
}

.module-home-slider .grid_col-inner {
  max-width: 460px;
  padding: 20px 60px;
  margin: auto;
}

.module-home-slider .module_item {
  padding: 30px 0;
}

.module-home-slider .grid_col:first-child {
  position: relative;
  top: -30px;
}

@media only screen and (max-width: 1180px) {
  .module-home-slider .slick-list {
    background-size: 25%;
  }
  .module-home-slider .slick-dots {
    bottom: 65px;
  }
  .module-home-slider .slick-prev {
    left: calc(25% + 20px);
  }
  .module-home-slider .slick-next {
    right: calc(25% + 20px);
  }
}

@media only screen and (max-width: 768px) {
  .module-home-slider .slick-slider {
    padding-bottom: 70px;
  }

  .module-home-slider .slick-list {
    position: relative;
    top: 0;
    margin-bottom: 0;
    padding: 50px 0 0;
  }

  .module-home-slider .slick-slide img {
    max-width: 150px;
  }

  .module-home-slider .module_item {
    padding: 0;
  }

  .module-home-slider .grid_col:first-child {
    top: 0;
  }

  .module-home-slider .slick-prev {
    left: 0;
  }

  .module-home-slider .slick-next {
    right: 0;
  }

  .module-home-slider .slick-arrow:before {
    font-size: 3rem;
  }

  .module-home-slider .slick-list {
    background: none;
  }
}

/**/

.module-home-cta {
  background-image: url(../design/banner/home-cta.jpg);
  background-repeat: no-repeat;
  background-position: center 45%;
  background-size: cover;
}

.module-home-cta .module_container--content {
  padding-bottom: 150px;
}

.module-home-cta img {
  max-width: 80px;
}

.module-home-cta h3 {
  font-size: 1.6rem;
}

.module-home-cta p {
  max-width: 265px;
  margin: 10px auto;
  font-size: 1.4rem;
}

.module-home-cta a i {
  font-size: 3rem;
}

@media only screen and (max-width: 1200px) {
  .module-home-cta {
    background-position: center 20%;
  }
}

@media only screen and (max-width: 768px) {
  .module-home-cta {
    background: none;
  }

  .module-home-cta .module_container--content {
    padding-bottom: 0;
  }

  .module-home-cta .grid_col ~ .grid_col {
    margin-top: 20px;
  }

  .module-home-cta .grid_col h2 {
    margin-bottom: 20px;
  }
}

/*END CORP HOME PAGE*/

/*START OUR STORY PAGE*/

.module-power-of_images {
  font-size: 0;
}

.module-power-of_image img {
  width: 100%;
}

.module-power-of_text .grid_col {
  padding-bottom: 70px;
}

.module-power-of_text p,
.module-power-of_text h4 {
  margin: 0;
}

.module-power-of_text .h2 {
  margin: 20px 0 0;
}

.module-power-of_text .separator {
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  margin: 0 5px 10px 5px;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #4248ed;
  font-weight: bold;
  /* letter-spacing: 3.6px; */
}

/**/

.module-tabs--story {
  min-height: 385px;
  position: relative;
}

.module-tabs--story p {
  font-size: 1.4rem;
  line-height: 2.2;
}

.module-tabs--story {
  margin-bottom: 60px;
}

.module-tabs--story .module-tabs_item--story {
  padding-right: 45px;
}

.module-tabs--story .module-tabs_image {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50% - 100px);
  border-bottom-right-radius: 200px;
  border-top-right-radius: 200px;
}

.module-tabs--story .module-tabs_item--first .module-tabs_image {
  background-image: url(../images/2020/tab-who-we-are-1.png);
}

.module-tabs--story .module-tabs_item--second .module-tabs_image {
  background-image: url(../images/2020/tab-who-we-are-2.png);
}

.module-tabs--story .module-tabs_item--third .module-tabs_image {
  background-image: url(../images/2020/tab-who-we-are-3.png);
}

@media only screen and (max-width: 1360px) {
  .module-tabs--story .module-tabs_item--story {
    padding-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .module-tabs--story .module-tabs_image {
    height: 300px;
    bottom: 0;
    top: auto;
    width: 100%;
  }

  .module.module-tabs--story {
    padding-bottom: 300px;
  }

  .module-tabs--story .module-tabs_nav {
    margin-bottom: 0;
    text-align: center;
  }
}

@media only screen and (max-width: 1024px) {
  .module-tabs--story .module-tabs_item p br {
    display: none;
  }
}

/**/

.module-tabs--years {
  min-height: 788px;
  position: relative;
}

.module-tabs--years h3 {
  margin-bottom: 30px;
}

.module-tabs--years p {
  font-size: 1.4rem;
  line-height: 2.2;
  margin-bottom: 25px;
}

.module-tabs--years .module-tabs_image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 100px);
  max-height: 570px;
  max-width: 800px;
}

.module-tabs--years .module-tabs_item--7 .module-tabs_image {
  max-width: 100%;
}

.module-tabs--years .module-tabs_image img.background {
  object-fit: cover;
  object-position: left top;
  width: 100%;
  height: 100%;
}

.module-tabs--years .module-tabs_image img.logo {
  position: absolute;
  left: -80px;
  top: 100px;
  z-index: 1;
}

.module-tabs--years .module-tabs_item .grid_col {
  padding-right: 5px;
}

.module-tabs--years .module-tabs_item .grid_col:last-child {
  height: 532px;
}

@media only screen and (max-width: 768px) {
  .module-tabs--years .module-tabs_image {
    height: auto;
    width: 100%;
    max-width: none;
    position: relative;
    margin: 0;
  }

  .module-tabs--years .module-tabs_item .grid_col {
    padding-bottom: 20px;
  }

  .module-tabs--years .module-tabs_nav {
    margin-bottom: 35px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }

  .module-tabs--years .module-tabs_image img.logo {
    position: static;
    margin: 20px auto;
    display: block;
  }
}

/*END OUR STORY PAGE*/

/*START LEADERSHIP PAGE*/

.module-person--leadership .module_item {
  width: 25%;
}

/* .module-person--travel .module_item {
  width: 25%;
} */

.module-person--leadership .module-person_photo-container {
  width: 147px;
  height: 147px;
}

.module-person--leadership .module-person_icon {
  bottom: 15px;
  right: 5px;
}

@media only screen and (max-width: 768px) {
  .module-person--leadership .module_item {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .module-person--leadership .module_item {
    width: 100%;
  }
}

/*END LEADERSHIP PAGE*/

/*START COMMUNITY IMPACT PAGE*/

@media only screen and (max-width: 768px) {
  .page--community-impact .module-latest-news-inclusion p {
    font-size: 1.2rem;
  }
  .page--community-impact .module-latest-news-inclusion .module_title {
    margin-bottom: 8px;
  }
}

/* .page--community-impact h2 {
  letter-spacing: 0.1em;
} */

.page--community-impact .js--hidden:not([role="tabpanel"]) {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.module-corporate-social {
  position: relative;
}

.module-corporate-social_image {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50% - 100px);
  border-bottom-right-radius: 200px;
  border-top-right-radius: 200px;
  background-image: url(../images/2021/corporate-social.png);
}

.module-corporate-social ul {
  padding: 0;
  list-style: none;
  margin-top: 50px;
}

.module-corporate-social ul li ~ li {
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .module.module-corporate-social {
    padding-bottom: 400px;
    padding-top: 0;
  }
  .module-corporate-social_image {
    height: 300px;
    bottom: 0;
    top: auto;
    width: 100%;
  }
}

/**/

.module-corporate-social-logos .grid_col-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  padding: 10px 20px;
}

.module-corporate-social-logos .grid_col ~ .grid_col .grid_col-inner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 95px;
  background: #d7d7d7;
}

@media only screen and (max-width: 768px) {
  .module-corporate-social-logos
    .grid_col:nth-child(2n + 1)
    .grid_col-inner:before {
    display: none;
  }
}

/**/

.module-tabs--pillars {
  min-height: 788px;
  position: relative;
}

.module-tabs--pillars .lowercase {
  text-transform: none;
}

.module-tabs--pillars .module-tabs_item .grid_col:last-child {
  height: 532px;
}

.module-tabs--pillars .module-tabs_item .module-tabs_slider-item {
  margin-top: 50px;
  margin-left: 2px;
  margin-right: 2px;
}

.module-tabs--pillars
  .module-tabs_item
  .module-tabs_slider-item
  .grid_col:last-child {
  height: auto;
}

.module-tabs--pillars .module-tabs_image {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 100px);
  max-height: 570px;
  max-width: 800px;
}

.module-tabs--pillars .module-tabs_image img.background {
  object-fit: cover;
  object-position: left top;
  width: 100%;
  height: 100%;
}

.module-tabs--pillars .module-tabs_link {
  white-space: normal;
  vertical-align: top;
}

.module-tabs--pillars .slick-slider {
  padding: 0 100px;
}

.module-tabs--pillars .slick-slide img {
  margin-left: auto;
}

.module-tabs--pillars .slick-arrow:before {
  font-size: 4rem;
  color: #4248ed;
}

.module-tabs--pillars .slick-dots {
  text-align: center;
  margin-top: 20px;
}

.module-tabs--pillars .slick-dots li button {
  background: rgba(0, 0, 253, 0.24);
  border: none;
  width: 15px;
  height: 15px;
}

.module-tabs--pillars .slick-dots li button {
  background: #4248ed;
}

.module-tabs--pillars .slick-slide > div:not([class]) {
  align-items: flex-start;
}

@media only screen and (max-width: 768px) {
  .module-tabs--pillars .slick-slider {
    padding: 0 50px;
  }
  .module-tabs--pillars .slick-slide img {
    margin-left: 0;
  }
  .module-tabs--pillars .module-tabs_image {
    height: auto;
    width: 100%;
    max-width: none;
    position: relative;
    margin: 0;
  }
  .module-tabs--pillars .module-tabs_image img.background {
    width: auto;
  }
}

/**/

.module-community-impact h2 {
  margin-bottom: 0;
}

.module-community-impact h5 {
  margin-top: 40px;
  text-transform: uppercase;
}

/**/

.module-employee-engagement {
  position: relative;
}

.module-employee-engagement .module_container--inner {
  position: relative;
  min-height: 354px;
}

.module-employee-engagement .module_container--inner:before {
  content: "";
  background: #fff;
  top: 0;
  height: 100%;
  left: calc(100% - 356px);
  position: absolute;
  display: block;
  width: 1000%;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
}

.module-employee-engagement h2 {
  position: absolute;
  top: 25px;
}

.module-employee-engagement h4 {
  margin-bottom: 0;
}

.module-employee-engagement img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

.module-employee-engagement .slick-prev {
  display: none !important;
}

.module-employee-engagement .slick-next {
  right: auto;
  left: 140px;
  top: auto;
  transform: none;
  bottom: 22px;
}

.module-employee-engagement .slick-dots li button {
  width: 15px;
  height: 15px;
}

.module-employee-engagement .slick-next:before {
  content: "\e913";
  font-size: 3rem;
}

.module-employee-engagement .slick-slider {
  padding: 0;
}

.module-employee-engagement .slick-list {
  overflow: unset;
}

.module-employee-engagement .slick-slide {
  position: relative;
  padding: 80px 0 35px 0;
  min-height: 354px;
}

.module-employee-engagement .slick-slide > div:not([class]) {
  align-items: flex-start;
  display: none;
}

.module-employee-engagement .slick-slide.slick-active > div:not([class]) {
  display: block;
}

.module-employee-engagement .slick-dots {
  position: absolute;
  bottom: 25px;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .module-employee-engagement h2 {
    position: static;
    padding-top: 35px;
    margin-bottom: 30px;
  }
  .module-employee-engagement .module_container--inner:before {
    display: none;
  }
  .module-employee-engagement .slick-slide {
    padding-top: 0;
    min-height: auto;
  }
  .module-employee-engagement img {
    position: static;
    margin-bottom: 50px;
  }
}

/*END COMMUNITY IMPACT PAGE*/

/*START INCLUSION AND DIVERSITY PAGE*/

/*.module-latest-news-inclusion .module_container--inner {
display: flex;
align-items: flex-start;
justify-content: center;
}*/

.module-latest-news-inclusion .module_container--content {
  background: rgba(0, 0, 153, 0.65);
  padding: 20px 20px 20px 40px;
  font-size: 1.4rem;
  display: inline-block;
  max-width: calc(100% - 220px);
  vertical-align: top;
}

.module-latest-news-inclusion .module_title {
  padding-right: 30px;
  position: relative;
  white-space: nowrap;
  padding-bottom: 8px;
  max-width: 215px;
  display: inline-block;
  vertical-align: top;
}

.module-latest-news-inclusion .module_title--border_bottom {
  background: #fff;
  min-width: 183px;
  bottom: 0;
  height: 1px;
  left: 0;
  display: block;
  position: absolute;
  width: calc(100% + 30px);
}

.module-latest-news-inclusion p {
  margin: 0;
  max-width: 500px;
}

@media only screen and (max-width: 768px) {
  .module-latest-news-inclusion .module_title {
    max-width: 100%;
  }
  .module-latest-news-inclusion {
    height: auto;
  }

  .module-latest-news-inclusion .module_container--inner {
    flex-wrap: wrap;
  }

  .module-latest-news-inclusion .module_container--content {
    padding: 10px;
    max-width: 100%;
  }
}

/**/

.module-tabs--vision {
  position: relative;
}

.module-tabs--vision .module_container--inner {
  position: relative;
  padding: 70px 0;
  min-height: 354px;
}

.module-tabs--vision .module_container--inner:before {
  content: "";
  background: #fff;
  top: 0;
  height: 100%;
  right: calc(100% - 350px);
  position: absolute;
  display: block;
  width: 1000%;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
}

.module-tabs--vision img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 30%;
  bottom: 0;
  margin: auto;
}

.module-tabs--vision p {
  font-size: 1.4rem;
  line-height: 2.2;
  max-width: 550px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .module-tabs--vision .module_container--inner:before {
    display: none;
  }

  .module-tabs--vision img {
    max-width: 100%;
    position: static;
    margin-bottom: 20px;
  }
}

/**/

.module-quote_container {
  position: relative;
  padding: 0 80px;
  text-align: left;
}

.module-quote_container:after,
.module-quote_container:before {
  content: "“";
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  /* color: #58dfb8; */
  color: #4248ed;
  font-size: 10rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 0.8;
  height: 35px;
}

.module-quote_container:after {
  content: "”";
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}

.module-quote .h3 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.module-quote .h6,
.module-quote .h4 {
  margin-top: 20px;
}

.module-quote .slick-slider {
  padding: 0;
}

.module-quote .slick-dots {
  margin-top: 30px;
}

@media only screen and (max-width: 1200px) {
  .module-quote_container {
    padding: 0 40px;
    font-size: 1.4rem;
  }

  .module-quote_container:after,
  .module-quote_container:before {
    font-size: 6rem;
  }
}

@media only screen and (max-width: 1024px) {
  .module-quote p {
    font-size: 1.4rem;
  }

  .module-quote .slick-slide {
    height: 100%;
  }

  .module-quote .slick-slide > div:not([class]) {
    align-items: flex-start;
  }
}

@media only screen and (max-width: 768px) {
  .module-quote img {
    margin-bottom: 20px;
  }
}

/**/

.module-tabs--inclusion .grid_col-wrap img {
  transition: transform 0.2s;
  margin-bottom: 20px;
}

.module-tabs--inclusion .grid_col-wrap.js--hover img {
  transform: scale(1.1);
}

.module-tabs--inclusion .module-tabs_link {
  color: #000099;
}

.module-tabs--inclusion h5 {
  color: #4248ed;
  margin-bottom: 70px;
}

.module-tabs--inclusion h4 {
  margin: 20px 0 35px;
  letter-spacing: 0;
  text-transform: none;
}

.module-tabs--inclusion .module-tabs_item--first p {
  color: #000099;
  margin-bottom: 50px;
}

.module-tabs--inclusion .module-tabs_item--second img {
  margin-top: 40px;
}

.module-tabs--inclusion .module-tabs_item--third h3 {
  font-size: 1.6rem;
  /* letter-spacing: 2.4px; */
  margin: 10px 0 40px;
}

.module-tabs--inclusion .module-tabs_item--third p {
  font-size: 1.4rem;
}

/**/

.module-how-we-foster {
  position: relative;
  overflow: hidden;
}

.module-how-we-foster h3 {
  margin-bottom: 50px;
}

.module-how-we-foster_left .grid_col-inner {
  padding-left: 35px;
  position: relative;
}

.module-how-we-foster_left .grid_col-inner .animate {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2px;
  height: 100%;
  /* background: #58dfb8; */
  background: #4248ed;
}

.module-how-we-foster_right .grid_col-inner {
  padding-left: 100px;
}

.module-how-we-foster_right .grid_col-inner:before {
  content: "";
  width: 55%;
  height: 100%;
  background: #000099;
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 400px;
}

.module-how-we-foster_right .h6 {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .module.module-how-we-foster {
    padding-bottom: 0;
  }

  .module-how-we-foster_right .grid_col-inner {
    position: relative;
    padding: 20px 0;
    margin-top: 20px;
  }

  .module-how-we-foster_right .grid_col-inner:before {
    width: calc(100% + 40px);
    left: -20px;
    border-bottom-left-radius: 200px;
  }
}

/**/

.module-how-we-take-care_left img {
  vertical-align: middle;
}

.module-how-we-take-care .second .module-how-we-take-care_left img {
  max-width: calc(100% - 94px);
}

.module-how-we-take-care .second .module-how-we-take-care_left .shape {
  vertical-align: top;
  margin-right: -120px;
  z-index: -1;
  margin-left: -7px;
}

.module-how-we-take-care_right p {
  margin-bottom: 40px;
  max-width: 320px;
}

@media only screen and (max-width: 768px) {
  .module-how-we-take-care h3 {
    margin-top: 20px;
  }

  .module-how-we-take-care_left img:not(.shape) {
    width: 100%;
  }
}

/**/

.module-hear-our-employees_top h2 {
  margin: 0;
}

.module-hear-our-employees_top li {
  display: inline-block;
  margin: 15px 20px 0;
  /* letter-spacing: 2.1px; */
  font-size: 1.4rem;
  font-weight: bold;
}

.module-hear-our-employees_bottom .h4 {
  font-size: 1.6rem;
  max-width: 180px;
  margin: 0 auto 30px;
}

.module-hear-our-employees_bottom .module_item ~ .module_item {
  margin-top: 20px;
}

.module-hear-our-employees_bottom em {
  display: block;
  font-size: 1.4rem;
  /* font-family: "Century Gothic Pro", "Century Gothic"; */
  font-family: "CentraNo2", sans-serif;
  max-width: 200px;
  margin: auto;
}

@media only screen and (max-width: 768px) {
  .module-hear-our-employees_bottom .grid_col ~ .grid_col {
    margin-top: 50px;
  }
}

/*END INCLUSION AND DIVERSITY PAGE*/

/*START TRAVEL WITH US PAGE*/

.module-travel-with-us p {
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4rem;
}

.module-travel-with-us .module_container--slider-1 {
  padding: 0;
}

.module-travel-with-us .module_container--slider-1 .slick-track {
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: none !important;
}

.module-travel-with-us .module_container--slider-1 .slick-slide {
  width: 14% !important;
  margin-top: 15px;
}

.module-travel-with-us .module_container--slider-1 .slick-slide img {
  transition: transform 0.2s;
}

.module-travel-with-us .module_container--slider-1 .slick-slide:hover img {
  transform: scale(1.1);
}

.module-travel-with-us
  .module_container--slider-1
  .slick-slide
  > div:not([class]) {
  padding: 10px 0;
  margin: 0 20px;
  border-bottom: 6px solid transparent;
  cursor: pointer;
}

.module-travel-with-us
  .module_container--slider-1
  .slick-slide.slick-current
  > div:not([class]) {
  border-color: #4248ed;
}

.module-travel-with-us .module_container--slider-2 {
  padding: 0 60px;
  max-width: 700px;
  margin: auto;
}

.module-travel-with-us .module_container--slider-2 .slick-list {
  top: -100px;
  margin-bottom: -70px;
}

.module-travel-with-us
  .module_container--slider-2
  .slick-slide
  > div:not([class]) {
  justify-content: center;
  align-items: flex-start;
}

.module-travel-with-us .module_container--slider-2 .slick-slide {
  height: 100%;
}

.module-travel-with-us .module_container--slider-2 .slick-slide img {
  margin: auto;
  max-width: 280px;
}

.module-travel-with-us
  .module_container--slider-2
  .slick-slide
  img:last-of-type {
  margin: 30px auto;
  max-width: 200px;
}

.module-travel-with-us .module_container--slider-2 p {
  max-width: 520px;
}

.module-travel-with-us .module_container--slider-2 .slick-arrow:before {
  font-size: 5rem;
  color: #4248ed;
}

@media only screen and (max-width: 1024px) {
  .module-travel-with-us p br {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .module.module-travel-with-us {
    padding-bottom: 100px;
  }

  .module-travel-with-us
    .module_container--slider-2
    .slick-slide
    img:last-of-type {
    margin: 20px auto;
    max-width: 150px;
  }

  .module-travel-with-us .module_container--slider-1 .slick-slide {
    width: 20% !important;
  }

  .module-travel-with-us .module_container--slider-1 .slick-track {
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .module-travel-with-us .module_container--slider-1 .slick-slide {
    width: 33.33% !important;
  }
}

@media only screen and (max-width: 480px) {
  .module-travel-with-us
    .module_container--slider-1
    .slick-slide
    > div:not([class]) {
    margin: 0 10px;
  }
}

/*END TRAVEL WITH US PAGE*/

/*START PARTNER WITH US PAGE*/

.module-unlock-potential {
  background: url(../design/banner/banner-partner-with-us.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: relative;
}

.module-unlock-potential p {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1350px) {
  .module.module-unlock-potential {
    padding-bottom: 130px;
  }
}

@media only screen and (max-width: 768px) {
  .module.module-unlock-potential {
    padding-bottom: 150px;
  }
}

/**/

.module-partner-with-us .grid_col {
  margin-bottom: 40px;
}

.module-partner-with-us .module_image {
  max-width: 100%;
  margin: 0;
  position: relative;
  margin-bottom: 20px;
}

.module-partner-with-us .module_image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  padding: 15px;
  bottom: 0;
  color: #fff;
  font-weight: bold;
  word-break: break-all;
  background: #000099;
  border-top-left-radius: 160px;
  border-top-right-radius: 160px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0;
}

.module-partner-with-us .module_item:hover .module_image-overlay {
  opacity: 1;
  visibility: visible;
}

.module-partner-with-us img {
  display: block;
  margin: 0 auto;
  max-width: 142px;
}

.module-partner-with-us a {
  font-size: 1.8rem;
  /* letter-spacing: 2.7px; */
}

.module-partner-with-us p {
  color: #000;
  max-width: 345px;
  margin: 16px auto;
}

.module-partner-with-us--2 .module_title {
  margin-bottom: 60px;
}

/**/

.module-the-power-of-platform {
  background: url(../design/banner/banner-the-power-of-platform.jpg);
  background-repeat: no-repeat;
  background-position: center 70%;
  background-size: cover;
}

@media only screen and (max-width: 1024px) {
  .module.module-the-power-of-platform {
    padding-bottom: 140px;
  }
}

/*END PARTNER WITH US PAGE*/

.module-story-1 p {
  line-height: 1.5;
}

@media only screen and (max-width: 1100px) {
  .module-story-1 p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

#btnRefresh {
  position: fixed;
  bottom: 100px;
  left: 0;
}
.module_logo-tiles {
  width: 600px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .module_logo-tiles {
    width: 100%;
  }
}

/*CR - https://app.asana.com/0/1198304929135125/1201936445025722/f*/
.page--impact-sustainability .pane--banner {
  background-image: url(../doc_downloads/2022/impact_sustainability/Victoria-Cagliero-iswanto-arif-FWCUZqXCrUs-unsplash-1.png);
  min-height: 250px;
  display: flex;
  align-items: center;
  height: 1px;
}
.module-latest-news-impact {
  text-align: center;
}

.module-latest-news-impact .module_container--content {
  background: rgba(0, 0, 153, 0.65);
  padding: 20px 20px 20px 40px;
  font-size: 1.4rem;
  display: inline-block;
  max-width: calc(100% - 50%);
  vertical-align: top;
  text-align: left;
}

.module-latest-news-impact .module_title {
  padding-right: 30px;
  position: relative;
  white-space: nowrap;
  padding-bottom: 8px;
  max-width: 215px;
  display: inline-block;
  vertical-align: top;
  color: #ffffff !important;
}

.module-latest-news-impact .module_title--border_bottom {
  background: #fff;
  min-width: 183px;
  bottom: 0;
  height: 1px;
  left: 0;
  display: block;
  position: absolute;
  width: calc(100% + 30px);
}

.module-latest-news-impact p {
  margin: 0;
  max-width: 500px;
}
.open-world_image {
  padding: 30px;
  width: 40%;
}
.open-world-text {
  font-size: 21px;
  line-height: 36px;
  text-align: left;
  padding-left: 25px;
  padding-right: 50px;
}

@media only screen and (max-width: 768px) {
  .open-world-text {
    text-align: inherit;
    padding-left: 20px;
    padding-right: 20px;
  }
  .open-world_image {
    padding: 0px;
  }

  .module-latest-news-impact .module_title {
    max-width: 100%;
  }
  .module-latest-news-impact {
    height: auto;
  }

  .module-latest-news-impact .module_container--inner {
    flex-wrap: wrap;
  }

  .module-latest-news-impact .module_container--content {
    padding: 10px;
    max-width: 100%;
  }
}
.module-latest-news-impact_slider .slick-arrow {
  display: none !important;
}
@media only screen and (max-width: 2000px) {
  ul.level1 {
    width: 100% !important;
  }
}

/*our commitment*/
.module-tabs--commitment {
  background: #f2edeb;
}
@media (min-width: 1025px) {
  .pane--content .module.module-tabs--commitment {
    padding-bottom: 270px;
  }
}
@media (min-width: 1250px) {
  .module-tabs--commitment .padding-left {
    margin-left: -100px;
    width: 40%;
  }
  .commitment-stats {
    width: 80%;
    position: relative;
    left: 6%;
  }
}
@media (min-width: 769px) {
  .module-tabs--commitment .module-tabs_nav {
    margin-left: 90px;
    margin-right: 20px;
  }
  .commitment-stats .grid_col {
    padding-left: 100px;
  }
}

.module-tabs--commitment .module-tabs_link.js--selected {
  border-color: #4248ed;
  font-weight: bold;
  /* font-family: "Primary-Bold" !important; */
}

.module-tabs--commitment .module-tabs_link {
  font-weight: normal;
  /* font-family: "Primary-Bold" !important; */
}
.module-tabs--commitment .module-tabs_nav {
  margin-top: 20px;
  margin-bottom: 35px;
}
.module-tabs--commitment h3 {
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  text-transform: none;
  letter-spacing: 0;
  /* font-family: "Primary-Bold" !important; */
}
.module-tabs--commitment .text-highlights {
  font-weight: 700;
  font-size: 60px;
  color: #706d6d;
  position: relative;
}
/*.module-tabs--commitment .text-highlights sup{
position: absolute;
top: 25px;
font-size: 22px;
}*/

@media (max-width: 850px) and (min-width: 501px) {
  .module-tabs--commitment .module-tabs_link {
    font-size: 14px;
  }
}
@media (max-width: 500px) and (min-width: 380px) {
  .module-tabs--commitment .module-tabs_link {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .module-tabs--commitment .module-tabs_nav {
    margin-bottom: 35px;
    text-align: center;
  }
  .commitment-stats {
    text-align: center;
  }
  .module-tabs--commitment .grid.text-commitment {
    display: flex;
    flex-direction: column-reverse;
  }
}

.text-commitment img {
  width: 400px;
}
/*connecting community*/
@media (min-width: 1025px) {
  .module-our-community {
    margin-top: -200px;
  }
}
.module-community_container {
  /*padding-top:30px;*/
  padding-bottom: 20px;
}
.module-our-community .module-title {
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  /* text-transform: uppercase; */
  /* letter-spacing: 0.1em; */
  padding-top: 30px;
  /* font-family: "Primary-Bold" !important; */
}
.module-community_container h4 {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  /* letter-spacing: normal; */
  line-height: 29px;
  /* font-family: "Primary-Bold" !important; */
}
.module-community_container p {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: #ffffff;
}
.module-our-community .slick-dots li button {
  background: white;
}
.community-dots-active button {
  opacity: 1 !important;
}
.module-our-community.module-tabs--vision .module_container--inner:before {
  content: "";
  background: #fff;
  top: 0;
  height: 100%;
  left: calc(100% - 350px);
  position: absolute;
  display: block;
  width: 1000%;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 200px;
}

.module-our-community img {
  border-radius: 50%;
  /*height:382px;*/
  position: relative;
  z-index: 10;
}

.background--community {
  /*background-color:#4248ED;*/
  background: linear-gradient(90deg, #4248ed 71%, transparent 29%) no-repeat;
}

.module-our-community.module-tabs--vision p {
  max-width: max-content;
}
.module-our-community .slick-slide > div:not([class]) {
  display: block;
}
@media (max-width: 1800px) and (min-width: 1601px) {
  .background--community {
    background: linear-gradient(90deg, #4248ed 72%, transparent 28%) no-repeat;
  }
}
@media (max-width: 1600px) and (min-width: 1550px) {
  .background--community {
    background: linear-gradient(90deg, #4248ed 76%, transparent 40%) no-repeat;
  }
}
@media (max-width: 1551px) and (min-width: 1400px) {
  .background--community {
    background: linear-gradient(90deg, #4248ed 78%, transparent 40%) no-repeat;
  }
}
@media (max-width: 1401px) and (min-width: 1201px) {
  .background--community {
    background: linear-gradient(90deg, #4248ed 80%, transparent 40%) no-repeat;
  }
}
@media (max-width: 1201px) and (min-width: 1025px) {
  .background--community {
    background: linear-gradient(90deg, #4248ed 80%, transparent 20%) no-repeat;
  }
  .module-community_container p {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .module-our-community .grid_col {
    width: 100%;
  }
  .module-our-community {
    text-align: center;
  }
  .module-our-community .slick-slide img {
    display: inline-block;
  }
  .background--community {
    background-color: #4248ed;
  }
}

.module-our-community .module_container--slider .slick-arrow:before {
  font-size: 30px;
}

.module-our-community .module_container--slider .slick-prev {
  left: calc(-7% + 60px);
}

.module-our-community .module_container--slider .slick-next {
  right: calc(29% + 60px);
}

@media only screen and (max-width: 768px) {
  .module-our-community .module_container--slider .slick-prev {
    left: 0;
  }
  .module-our-community .module_container--slider .slick-next {
    right: 0;
  }
}

@media only screen and (max-width: 1025px) {
  .module-our-community .module_container--slider .slick-prev {
    left: calc(-4% + 20px);
  }
  .module-our-community .module_container--slider .slick-next {
    right: calc(-4% + 20px);
  }
}

/*Human rights*/
.human-rights_image img {
  width: calc(100% - 100px);
}
.module-human-rights .module_container--outer {
  margin-left: 0;
  padding-left: 0px;
  margin-right: 0px;
  padding-right: 0px;
  max-width: none;
}

.module-human-rights .slick-slider {
  padding: 0px;
}
.module-human-rights .slick-dots li button {
  background: #0009f7;
}
.human-rights-dots-active button {
  opacity: 1 !important;
}
@media (min-width: 1400px) {
  .module-human-rights_container {
    width: 60%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .module-human-rights_container {
    width: 92%;
  }
}

@media (min-width: 1025px) and (max-width: 1399px) {
  .module-human-rights_container {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .module-human-rights .grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .module-open-world .grid {
    display: flex;
    flex-direction: column-reverse;
  }
  .module-human-rights_container {
    padding: 15px;
    text-align: center;
    margin: -10px 15px 15px 15px;
  }
}
.module-human-rights .module_container--slider .slick-arrow:before {
  font-size: 30px;
}

.module-human-rights .module_container--slider .slick-prev {
  left: calc(-14% + 60px);
}

.module-human-rights .module_container--slider .slick-next {
  right: calc(34% + -20px);
}

@media only screen and (max-width: 768px) {
  .module-human-rights .module_container--slider .slick-prev {
    left: 0 !important;
  }
  .module-human-rights .module_container--slider .slick-next {
    right: 0;
  }
  .module-human-rights .module-title {
    text-align: center;
  }
}

/*@media only screen and (max-width: 1180px){
.module-human-rights .module_container--slider .slick-prev {
left: calc(-17% + 20px);
}
.module-human-rights  .module_container--slider .slick-next {
right: calc(0% + 20px);
}
}*/

@media (min-width: 1026px) and (max-width: 1180px) {
  .module-human-rights .module_container--slider .slick-next {
    right: calc(-31% + 20px);
  }
}

/*Global impact report*/
.module-global-report .module_title {
  /* letter-spacing: 0.1em !important; */
  padding-bottom: 20px;
}
.module-global-report .report-sub-title {
  font-weight: 700;
  font-size: 32px;
  color: #686868;
  text-transform: none;
}
.module-global-report h4 {
  font-weight: 700;
  font-size: 16px;
  color: #212121;
  text-transform: none;
  letter-spacing: 0px;
  /*white-space:pre;*/
}
.module-global-report .title-border {
  width: 20%;
  color: #bbbbbb;
}
.module-global-report .module-resources {
  align-items: inherit;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .module-global-report .report-sub-title {
    font-size: 22px;
  }
}
@media (min-width: 1025px) {
  .module-our-community .module_container.module_container--inner {
    height: 356px;
  }
  .module-our-community img {
    height: 356px;
    width: 355px;
  }
}
/* .module-tabs--commitment .module_title {
  font-family: "Primary-Bold" !important;
}
.module-human-rights .module-title {
  font-family: "Primary-Bold" !important;
}
.module-global-report .module_title {
  font-family: "Primary-Bold" !important;
}
.module-latest-news-impact .module_title {
  font-family: "Primary-Bold" !important;
} */

/*End of CR - https://app.asana.com/0/1198304929135125/1201936445025722/f*/

/*CR - open world pages https://app.asana.com/0/1198304929135125/1201689032170233/f*/

.page-open-world h1 {
  text-align: left;
}
.page-open-world .dark h2 {
  color: #ffffff !important;
}
.page-open-world .text-center h2.module_title {
  text-align: center;
}
.page-open-world ul.slick-dots {
  text-align: center;
}
.module-incubator .module_item {
  padding-right: 50px;
}
.module-incubator table {
  width: 90%;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .module-incubator .module_item {
    padding-right: 0px;
    padding-bottom: 40px;
  }
  .module-incubator table {
    width: 100%;
  }
}
.module-incubator table tr {
  height: 32px;
  border-bottom: 0.75px solid #c8c8c8;
}
.module-incubator table tr td {
  vertical-align: middle;
}
.page-open-world .module-program {
  position: relative;
}
.module-program h2 {
  text-align: left;
}
.page-open-world .module-program img.program-img-left {
  position: relative;
  left: 0;
  max-height: 500px;
}
/*.module-program .module_container.module_container--outer {
max-width: none;
padding-left: 0;
}*/

.module-program .program-text-right {
  max-width: 748px;
  padding: 0px 60px;
}
.module-benefits {
  position: relative;
}

.module-benefits.module-tabs--commitment .module-tabs_nav {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 20px 35px 35px;
}
@media (min-width: 1250px) {
  .module-benefits.module-tabs--commitment .padding-left {
    margin-left: -50px;
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .module-benefits.module-tabs--commitment .module-tabs_nav {
    flex-direction: column;
    justify-content: flex-start;
  }
  .module-benefits.module-tabs--commitment .module-tabs_link.js--selected {
    border-color: transparent;
    color: #4248ed;
  }
}

@media screen and (min-width: 1025px) {
  .pane--content .module.module-benefits.module-tabs--commitment {
    padding-bottom: 105px;
  }
}

.module-benefits.module-tabs--commitment .module-tabs_link {
  margin: 0 15px 20px;
  font-size: 18px;
}
@media screen and (max-width: 850px) and (min-width: 501px) {
  .module-benefits.module-tabs--commitment .module-tabs_link {
    font-size: 18px;
  }
}

.module-eligibility h2.module_title {
  text-align: left;
}
/*.module-pathways-program .module-downloads-governance_right {
padding-left: 40px;
}
@media screen and (max-width: 768px) {
.module-pathways-program .module-downloads-governance_right {
    padding-left: 20px;
}
}
.module-pathways-program .module_container--inner {
padding-top: 50px;
}*/

.module-test img {
  max-width: 231px;
}
.module-test .slick-arrow {
  color: #4248ed;
  top: 18%;
}
.module-test .slick-arrow:before {
  font-size: 4.7rem;
}
.module-test .module_item {
  width: 90% !important;
  margin-left: auto;
  margin-right: auto;
}
.module-test .testimonial-text {
  padding-left: 40px;
}
.module-test .module-quote_container {
  padding: 0 35px;
}
.module-test .module-quote_container:after,
.module-test .module-quote_container:before {
  color: #4248ed;
  font-size: 3.6rem;
}
.module-test .module-quote_container:after {
  bottom: -20px;
}
.module-test .module-quote_attribution {
  padding-left: 35px;
}
.PageOpenWorldFormIframe #btnRefresh {
  display: none !important;
}

.fancybox-slide--form .t-and-c.fancybox-content {
  height: calc(100% - 500px);
}
.t-and-c_button {
  width: 100%;
  padding: 20px 0;
  text-align: right;
}
.button-disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.4;
}

.module-prog-details {
  background: -moz-linear-gradient(left, #000e93 50%, #0009f7 50%);
  background: -webkit-linear-gradient(left, #000e93 50%, #0009f7 50%);
  background: linear-gradient(to right, #000e93 50%, #0009f7 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000E93', endColorstr='#0009F7', GradientType=0);
}

.module-prog-details_left {
  padding-right: 35px;
}
.module-prog-details_right {
  padding-left: 55px;
}

@media screen and (max-width: 768px) {
  .pane--content .module-prog-details {
    background: #0009f7;
    padding-top: 0px;
  }
  .pane--content .module-prog-details .module_container--outer {
    padding: 0;
  }
  .pane--content .module-prog-details .grid {
    margin: 0;
  }
  .module-prog-details .module-prog-details_left {
    padding: 40px 20px 20px 20px;
    background: #000e93;
  }
  .module-prog-details_right {
    padding-left: 20px;
    padding-top: 40px;
  }
}
.module-app {
  background: #f2edeb;
}

.module-app ol {
  counter-reset: item;
  padding-top: 15px;
}
.module-app li {
  display: block;
  min-height: 60px;
  position: relative;
  z-index: 5;
  padding-left: 50px;
  margin-bottom: 10px;
}
.module-app li:before {
  content: " ";
  height: 38px;
  width: 38px;
  background-color: #4248ed;
  border-radius: 50px;
  position: absolute;
  top: -12%;
  left: 0;
  z-index: 0;
  content: counter(item) " ";
  counter-increment: item;
  color: #fff;
  font-size: 24px;
  z-index: 5;
  text-align: center;
}

@media screen and (max-width: 450px) {
  .module-app li:before {
    top: 0;
  }
}
/*.pane--content .module.module-eligibility {
padding: 0;
margin-top: 70px;
margin-bottom: 70px
}*/

.module_item--default-img-1 .module_thumb {
  background-image: url("../doc_news/2023/05/Explore-image-extract.png") !important;
}

.module-eligibility .module_item .module-community_container {
  padding-top: 36px;
}
.grid-elig {
  display: flex;
}
@media screen and (max-width: 768px) {
  .grid-elig {
    display: block;
  }
}
.background-elig {
  background-image: url("../images/eligibility/victoria_widen_-_Expedia_Cares_1_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.module-prog-details_left .button {
  color: #4248ed;
  background-color: #ffffff;
}

.module-prog-details_left .button:hover,
.module-prog-details_left .button:focus {
  color: #ffffff;
  background-color: #2169f9;
}

.module-app ol:before {
  content: " ";
  background-image: url("../images/eligibility/application-bg.png");
  background-size: 300px;
  width: 300px;
  height: 300px;
  display: inline-block;
  float: right;
}

@media screen and (max-width: 1024px) {
  .module-app ol:before {
    margin-top: 50px;
    background-size: 200px;
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .module-app ol:before {
    display: none;
  }
}

.prog-ul {
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.program-startups-container {
  padding-bottom: 0px !important;
}

.program-startups-information-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: -70px;
}
.program-startups-container h2 {
  display: flex;
  margin-bottom: -9px !important;
}

.program-startups-information-container img {
  position: relative;
  top: -40px;
}

.program-startups-information-container p {
  width: 50%;
}

.module-program-list .module_container--items {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 30px;
}
.module-program-list .module_item {
  border: solid 1px #4248ed4d;
  padding: 40px;
  border-radius: 20px;
  width: 95%;
  /*margin: 15px;*/
}

/*.module-program-list h3 {
font-weight: 700;
font-size: 20px;
line-height: 24px;
color: #212121;
text-transform: capitalize;
letter-spacing: 0px;
}*/

.module-program-list h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #212121;
  text-transform: none;
  letter-spacing: 0px;
  margin-bottom: 8px;
}

.module-program-list .module_item-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 30px;
  /*justify-content: space-between;*/
  height: 130px;
}

.module-program-list .item-header-logo .Flywallet {
  width: 80%;
}

.module-program-list .item-header-logo .Eyes {
  width: 90%;
  margin-bottom: 10px;
}

.module-program-list .item-header-logo .iAccess {
  width: 50%;
}

/*.module-program-list .item-header-logo .Wheel {
width: 50%;
}*/

.module-program-list .item-header-logo .rentABLE {
  max-width: 120%;
  margin-bottom: 20px;
}

.module-program-list .item-header-logo .Global {
  width: 70%;
}

.module-program-list .item-header-logo .Handiscover {
  margin-bottom: 20px;
}

.module_item .description-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 29px;
}

@media screen and (max-width: 768px) {
  .module-program-list .module_container--items {
    grid-template-columns: 1fr;
  }
  .program-startups-information-container {
    flex-direction: column;
  }
  .program-startups-information-container p {
    width: 100%;
    margin-bottom: 50px;
  }

  .program-startups-information-container img {
    display: flex;
    width: 80%;
    align-self: center;
  }
}

.our-experts-module .module_title {
  text-align: start;
}

.our-experts-module .experts-row > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.our-experts-module .expert {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 380px;
  margin-bottom: 18px;
}

.our-experts-module .expert .expert-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.our-experts-module .expert .expert-company {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #4248ed;
  margin: 8px 0px;
}

.our-experts-module .expert .expert-description {
  text-align: center;
  min-height: 60px;
  max-width: 240px;
}

.our-experts-module .expert .mentor-img {
  border-radius: 100%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.our-experts-module .our-experts-top-container {
  margin-bottom: 80px;
}

.program-partners-container {
  padding: 64px;
  background: #f9fafb;
  border-radius: 16px;
}

.program-partners-container h2,
.program-partners-container p {
  text-align: center;
}

.program-partners-container .partners-logos-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .our-experts-module .experts-row > div {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 500px) {
  .our-experts-module .experts-row > div {
    grid-template-columns: 1fr;
  }
}

.PageOpenWorldAcceleratorPrograms .pane--footer {
  background-color: #e5f3ff;
  margin-bottom: -16px;
}

.program-startup-footer-container {
  padding: 100px 40px;
}

.program-startup-footer-container .upper-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-startup-footer-container .upper-links p {
  margin: 0px;
}

.program-startup-footer-container .upper-links span {
  margin: 0px 10px;
}

.program-startup-footer-container .bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-startup-footer-container .bottom-links p {
  text-align: center;
}

.expert .divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.Abhinav.Tripathi,
.Clarissa.Soong,
.Heidi.Moore,
.Kasia.Jawien,
.Neil.Chatterjee,
.Pim.de.Schepper,
.Steven.Gong,
.Ganesh.Baskaran,
.Tom.Barkan-Benkler {
  border-left: 1px solid #4248ed4d;
  border-right: 1px solid #4248ed4d;
  padding: 0px 60px;
}

@media screen and (max-width: 768px) {
  .Monica.May,
  .Aarzoo.Gupta,
  .Angelique.Miller,
  .Pim.de.Schepper,
  .Clarissa.Soong,
  .Orla.Lee,
  .Heidi.Moore,
  .Michael.Savage,
  .Ann.Manning,
  .Toby.Willis,
  .Ibrahim.Zananiri,
  .Rachel.Nichols,
  .Pablo.Sala,
  .Neil.Chatterjee,
  .Steven.Gong,
  .Yousra.Magouri {
    border-left: none;
    border-right: none;
    padding: 0px;
  }

  .Brad.Zabroski,
  .David.Barmaz,
  .Abhinav.Tripathi,
  .Kasia.Jawien,
  .Ramki.Vaidyanathan,
  .Hisham.Mohamed,
  .Syamala.Udarapu,
  .Ganesh.Baskaran,
  .Geraldine.G\..de.Guzman,
  .Monica.May,
  .Orla.Lee,
  .Pim.de.Schepper,
  .Tom.Barkan-Benkler {
    border-left: 1px solid #4248ed4d;
    border-right: none;
    padding: 0px 60px;
  }
}

@media screen and (max-width: 500px) {
  .Michael.Savage,
  .Pablo.Sala,
  .Rachel.Nichols,
  .Tom.Barkan-Benkler,
  .Ramki.Vaidyanathan,
  .Toby.Willis,
  .David.Barmaz,
  .Yousra.Magouri,
  .Heidi.Moore,
  .Steven.Gong,
  .Abhinav.Tripathi,
  .Syamala.Udarapu,
  .Angelique.Miller,
  .Pim.de.Schepper,
  .Kasia.Jawien,
  .Ann.Manning,
  .Monica.May,
  .Brad.Zabroski,
  .Neil.Chatterjee,
  .Hisham.Mohamed,
  .Geraldine.G\..de.Guzman,
  .Aarzoo.Gupta,
  .Orla.Lee,
  .Ganesh.Baskaran,
  .Ibrahim.Zananiri {
    border-left: none;
    border-right: none;
    padding: 0px;
  }

  .program-partners-container .partners-logos-container {
    flex-direction: column;
    align-items: center;
  }

  .program-startup-footer-container .upper-links {
    flex-direction: column;
  }

  .program-startup-footer-container .upper-links span {
    display: none;
  }
}

.program-startup-nav {
  height: 57px;
  background-color: #000064;
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-startup-nav nav {
  width: 700px;
  display: flex;
  justify-content: space-between;
}

.program-startup-nav a {
  color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
}

.program-startup-nav a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .program-startup-nav {
    height: auto;
    position: absolute;
    width: 100%;
  }
  .program-startup-nav nav {
    width: auto;
  }
  .program-startup-nav a {
    font-size: 12px;
    margin: 5px;
    line-height: 12px;
  }
}

.module-program-list .module_item:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.techne-infiniti {
  width: 160px;
}

.tourism-cares {
  width: 130px;
}
.page-open-world .nav--main .level2 > li:first-child > a {
  font-weight: bold;
}
.page--programs .nav--main .level2 > li:last-child > a {
  font-weight: bold;
}
/* end of CR - open world pages https://app.asana.com/0/1198304929135125/1201689032170233/f*/

/* 00458753 */
.accordion--header {
  font-weight: bold;
  padding: 0 0 20px 0;
  font-size: 20px;
}
.accordion--header:hover {
  cursor: pointer;
}
.toggle-child {
  margin-bottom: 80px;
}
/* 00458753 end */

/*CR - https://q4websystems.atlassian.net/browse/ACR-25648*/

.module-accelerator-intro h1 {
  text-transform: uppercase;
}

.program-numbers_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 30px;
}

.program-numbers_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  margin-bottom: 18px;
  border-right: 1px solid #c4c4c4;
  padding-top: 25px;
}

.program-numbers_item .program-numbers_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.program-numbers_item .divider {
  border-left: 1px solid #4248ed4d;
  border-right: 1px solid #4248ed4d;
  padding: 0px 60px;
}

.program-numbers_item .program-numbers_content h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 58.85px;
  color: #4248ed;
}

.program-numbers_item .program-numbers_content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  padding: 0px 10px;
}

.button.accelerator-button {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  /* letter-spacing: 1.5px; */
  text-align: left;
  border-radius: 50px;
  padding: 14px 24px 14px 24px;
}

.module-testimonial.background--community {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 75px;
  margin-bottom: 75px;
  background: linear-gradient(270deg, #4248ed 73%, transparent 27%) no-repeat;
}

.testimonial-container .testimonial-img img {
  height: 100%;
}

.module-testimonial .module-community_container p {
  /* font-family: "Century Gothic", sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0em;
}

.module-testimonial .testimonial-container .slick-prev {
  left: calc(29% + 60px);
  top: 75%;
}

.module-testimonial .testimonial-container .slick-next {
  right: calc(-7% + 60px);
  top: 75%;
}

.module-testimonial .module_item {
  position: relative;
}

.module-testimonial .module-testimonial_dots {
  position: absolute;
  right: 30%;
  bottom: 50px;
}

.pane--content .module.module-next-accelerator {
  background: #f2edeb;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 75px;
}

/*   .demo-day_videos{
      width: 90%;
      margin: 0 auto;
  }*/

.module-accelerator-demo h2 .ModuleTitle,
.module-program-numbers h2 .ModuleTitle {
  /* font-family: "Century Gothic", sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  /* letter-spacing: 0.1em; */
}

.module-accelerator-demo .slick-slide {
  margin: 0px 20px;
}

.demo-day_videos {
  margin: 0 auto;
  width: 90%;
}

.demo-day_videos img {
  margin: 0 auto;
}

.demo-day_videos .slick-prev {
  left: -30px;
}

.demo-day_videos .slick-next {
  right: -30px;
}

.demo-day_videos .slick-prev:before {
  content: url("../images/2023/08/Arrow-prev.svg");
}

.demo-day_videos .slick-next:before {
  content: url("../images/2023/08/Arrow-next.svg");
}

.module-accelerator-partnerships h2 .ModuleTitle {
  /* font-family: "century gothic", sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
  /* letter-spacing: 0.1em; */
  color: #0009f7;
}

.module-accelerator-partnerships p.intro-text.text-center {
  margin-bottom: 50px;
}

.module-accelerator-partnerships h4 {
  /* font-family: "century gothic", sans-serif; */
  font-family: "CentraNo2", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0em;
  margin: 25px 0px;
  text-transform: initial;
}

.module-accelerator-partnerships p.text-center {
  width: 55%;
  margin: 25px auto;
}

.module-accelerator-partnerships.module-program-list .module_container--items {
  margin: 50px 0px;
}

.module-accelerator-partnerships .item-website-link,
.module-accelerator-partnerships a {
  text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
  .module-testimonial.background--community {
    padding-top: 75px;
    padding-bottom: 75px;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .program-numbers_container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .module-testimonial.background--community {
    background: #4248ed;
  }

  .module-testimonial .grid-elig {
    display: block;
  }

  .module-testimonial .grid_col {
    width: 100%;
  }

  .module-testimonial .testimonial-img img {
    margin: 0 auto;
  }

  .module-testimonial .testimonial-container .slick-next {
    right: 0;
    top: 50%;
  }

  .module-testimonial .testimonial-container .slick-prev {
    left: 0;
    top: 50%;
  }

  .module-testimonial .module-testimonial_dots {
    position: unset;
    right: unset;
    bottom: unset;
  }
}

@media only screen and (max-width: 768px) {
  .program-numbers_container {
    grid-template-columns: 1fr 1fr;
  }

  .program-numbers_item {
    border-right: unset;
  }

  .module-accelerator-partnerships p.text-center {
    width: unset;
  }
}

@media only screen and (max-width: 480px) {
  .program-numbers_container {
    grid-template-columns: 1fr;
  }
}

/*testimonial image responsiveness*/

/*@media (max-width: 1800px) and (min-width: 1601px) {
.module-testimonial.background--community {
background: linear-gradient(90deg, #4248ED 72%, transparent 28%) no-repeat; }
}*/
@media (max-width: 1600px) and (min-width: 1550px) {
  .module-testimonial.background--community {
    background: linear-gradient(270deg, #4248ed 79%, transparent 27%) no-repeat;
  }
}
@media (max-width: 1551px) and (min-width: 1400px) {
  .module-testimonial.background--community {
    background: linear-gradient(270deg, #4248ed 79%, transparent 27%) no-repeat;
  }
}
@media (max-width: 1401px) and (min-width: 1201px) {
  .module-testimonial.background--community {
    background: linear-gradient(
        to left,
        #4248ed calc(100% - 250px),
        transparent 0%
      )
      no-repeat;
  }
}
@media (max-width: 1201px) and (min-width: 1025px) {
  .module-testimonial.background--community {
    background: linear-gradient(
        to left,
        #4248ed calc(100% - 225px),
        transparent 0%
      )
      no-repeat;
  }
}

.module-taap-translations a {
  display: block;
  margin-bottom: 10px;
}
/*Case 00730301*/
.pane--footer2 .pane_inner {
  max-width: 1075px;
}

/* 00652374 */
.module-downloads-market-policies .corporate_list {
  padding-left: 35px !important;
}
@media (max-width: 1024px) {
  .module-downloads-market-policies .corporate_list {
    padding-left: 20px !important;
    margin-top: 35px;
  }
}
.market-logos img {
  height: 110px;
  margin-right: 20px;
}
.page--market-policies .pane--banner {
  min-height: 250px;
  /* background-image: url('../images/2024/05/RF_eyeem-100131054-p-170850611.jpg');
  background-position: center 12%; */
  /* background-image: url('../images/2024/05/BEX_OOH_GLIMPSES_3-0_TOKYO_SKYLINE_JOAO_CANZIANI_2349_EGRT2301_V1.jpg');
  background-position: center; */
  background-image: url("../images/2024/05/RF_Stocksy_shutter13.jpeg");
  background-position: center 80%;
}
.policy-table {
  width: 100%;
}
.policy-table td {
  border: 1px solid #000;
  vertical-align: middle;
}
.policy_container .module_headline {
  text-align: center;
}
/* 00652374 end */

.evergreen .evergreen-container--outer,
.pane--content div.evergreen-grid-container {
  max-width: 1300px;
}

.evergreen .evergreen-dropdown {
  border: 0;
  border-bottom: 1px solid;
}
