@font-face {
  font-family: 'Montserrat Regular';
  src: url('../fonts/montserrat-regular.otf') format('opentype');
}

@font-face {
  font-family: 'Montserrat Italic';
  src: url('../fonts/montserrat-italic.otf') format('opentype');
}

@font-face {
  font-family: 'Montserrat SemiBold';
  src: url('../fonts/montserrat-semibold.otf') format('opentype');
}

@font-face {
  font-family: 'Montserrat Bold';
  src: url('../fonts/montserrat-bold.otf') format('opentype');
}

@font-face {
  font-family: 'Montserrat SemiBold Italic';
  src: url('../fonts/montserrat-semibold-italic.otf') format('opentype');
}

body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  min-width: 375px;
  width: 100%;
  position: relative;
}

@media (min-width: 1280px) {

  body {
    font-size: 15px;
  }
}

 h1,
.h1 {
  color: #000000;
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 30px;
}

 h2,
.h2 {
  color: #000000;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.25px;
  margin-bottom: 24px;
}

 h3,
.h3 {
  color: #000000;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.25px;
  margin-bottom: 18px;
}

 h4,
.h4 {
  color: #000000;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.25px;
  margin-bottom: 12px; /* ??? */
}

 h5,
.h5 {
  color: #000000;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {

   h1,
  .h1 {
    font-size: 48px;
    line-height: 58px;
  }

   h2,
  .h2 {
    font-size: 24px;
    line-height: 32px;
  }

   h3,
  .h3 {
    font-size: 20px;
    line-height: 26px;
  }

   h4,
  .h4 {
    font-size: 17px;
    line-height: 24px;
  }

  h5,
  .h5 {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (min-width: 1280px) {

   h1,
  .h1 {
    font-size: 48px;
    line-height: 58px;
  }

   h2,
  .h2 {
    font-size: 30px;
    line-height: 40px;
  }

   h3,
  .h3 {
    font-size: 24px;
    line-height: 32px;
  }

   h4,
  .h4 {
    font-size: 18px;
    line-height: 26px;
  }

/*
   h5,
  .h5 {
    font-size: 16px;
    line-height: 22px;
  }
*/
}

a {
  color: #06263d;
  text-decoration: underline;
}

a:hover {
  color: #d62222;
}

img {
  width: 100%;
}

section {
  background-color: #ffffff;
  position: relative;
  padding-top: 60px;
  padding-bottom: 90px;
}

@media (min-width: 1024px) {

  section {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}

p {
  margin-bottom: 12px;
}

ul, ol {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style: none;
}

ol {
  padding-left: 30px;
}


/* font */

.bold {
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
}

.semibold {
  font-family: 'Montserrat SemiBold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 600;
}

.italic {
  font-family: 'Montserrat Italic', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-style: italic;
}

.semibold-italic {
  font-family: 'Montserrat SemiBold Italic', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.sm {
  font-size: 13px;
}

.lg {
  font-size: 15px;
  line-height: 21px;
}

.lg p {
  margin-top: 15px;
  margin-bottom: 15px;
}

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

@media (min-width: 1280px) {

  .lg {
    font-size: 16px;
    line-height: 22px;
  }

  .lg p {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .lg .list-item::before {
    font-size: 24px;
    line-height: 24px;
  }
}

.red {
  color: #d62222;
}

.blue {
  color: #06263d;
}

.gray {
  color: #6d7073;
}


/* background */

.bg-white {
  background-color: #ffffff;
}

.bg-light-gray {
  background-color: #f2f5f7;
}

.bg-dark-blue {
  background-color: #06263d;
}

.bg-gradient-light-gray-top {
  background: linear-gradient(0deg, #ffffff 0%, #f2f5f7 100%);
}

.bg-gradient-light-gray-bottom {
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f7 100%);
}


/* margin */

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

.mt-6 {
  margin-top: 6px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-42 {
  margin-top: 42px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

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

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

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

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

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

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

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


/* width */

.width-10 {
  width: 10%;
}

.width-20 {
  width: 20%;
}

.width-30 {
  width: 30%;
}

.width-40 {
  width: 40%;
}

.width-50 {
  width: 50%;
}

.width-60 {
  width: 60%;
}

.width-70 {
  width: 70%;
}

.width-80 {
  width: 80%;
}

.width-90 {
  width: 90%;
}

.width-100 {
  width: 100%;
}


/* utility */

.block {
  display: block;
}

.relative {
  position: relative;
}


/* Element - List */

.list .list-item {
  position: relative;
  padding-left: 30px;
}

.list .list-item::before {
  content: "▪";
  color: #000000;
  font-size: 20px;
  line-height: 20px;
  display: inline-block;
  position: absolute;
  left: 9px;
}

.list .list-item.no-bullet::before {
  content: "";
}

.list .list .list-item::before {
  content: "•";
  font-size: 30px;
  line-height: 20px;
}

ol.list > .list-item {
  padding-left: 9px;
}

ol.list .list-item::before {
  content: "";
}

ol.list .list-item::marker {
  font-family: 'Montserrat SemiBold', 'Helvetica', 'Arial', sans-serif;
}

ol.list .list-item.marker-bold::marker {
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
}

ol.list-secondary .list-item::marker {
  color: #d62222;
  font-weight: 700;
}

@media (min-width: 1280px) {

  .list .list-item::before {
    font-size: 22px;
    line-height: 22px;
  }
}

.list.list-primary .list-item::before {
  color: #06263d;
}

.list.list-secondary .list-item::before {
  color: #d62222;
}


/* Element - Button */

 .btn,
a.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.5px;
}

@media (min-width: 1280px) {

   .btn,
  a.btn {
    font-size: 14px;
    line-height: 20px;
  }
}

 .btn-primary,
a.btn-primary {
  color: #ffffff;
  background-color: #06263d;
  padding: 12px 36px;
}

 .btn-primary:hover,
a.btn-primary:hover {
  background-color: #d62222;
}

 .btn-secondary,
a.btn-secondary {
  color: #06263d;
  background-color: transparent;
  border: 2px solid #06263d;
  padding: 10px 34px;
}

 .btn-secondary:hover,
a.btn-secondary:hover {
  color: #ffffff;
  background-color: #06263d;
}

 .btn-sm,
a.btn-sm {
  padding: 9px 18px;
  letter-spacing: 1px;
  font-size: 11px;
}

 .btn-more,
a.btn-more {
  color: #d62222;
  border-color: transparent;
  transition: margin-left 0.2s ease-out;
}

 .btn-more-sm,
a.btn-more-sm {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
}

 .btn-more-sm img,
a.btn-more-sm img {
  width: 10px;
}

 .btn-icon,
a.btn-icon {
  display: inline-flex;
  align-items: center;
}

 .btn-icon img,
a.btn-icon img {
  width: 12px;
  height: auto;
  margin-left: 6px;
}

button.btn-primary:disabled,
button.btn-primary:disabled:hover {
  color: #e0e2e6;
  background-color: #c0c6ce;
  cursor: auto !important;
  outline: none !important;
}

button.btn-primary.btn-loading {
  position: relative;
  padding-left: 48px;
}

button.btn-primary.btn-loading::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 15px;
  width: 24px;
  height: 24px;
  background: url('../img/icon-spinner.svg') center center no-repeat;
  background-size: 24px 24px;
}


/* Element - Field */

.field label {
  display: block;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.field label span {
  color: #d62222;
}

.field input,
.field textarea {
  background-color: #f2f5f8;
  border: none;
  border-bottom: 1px solid #c0c6ce;
  line-height: 36px;
  padding: 0 12px 1px 12px;
  width: 100%;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #d62222;
}

.form-group .help-block li {
  color: #6d7073;
  font-size: 11px;
  line-height: 18px;
  margin-top: 3px;
}

.form-group .help-block.with-errors li {
  color: #d62222;
}


/* Element - Checkbox */

.field-checkbox {
  position: relative;
}

.field-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #06263d;
  background-color: #ffffff;
  pointer-events: none;
}

.field-checkbox label {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0;
  text-transform: none;
  padding-left: 30px;
}

.field-checkbox input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.field-checkbox:hover input[type='checkbox'] ~ .checkmark {
  background-color: white;
}

.field-checkbox input[type='checkbox']:checked ~ .checkmark {
  background-color: #06263d;
}

.field-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.field-checkbox input[type='checkbox']:checked ~ .checkmark:after {
  display: block;
}

.field-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* Element - Table */

.table {
  border-top: 1px solid #e0e2e6;
  width: 100%;
}

.table td {
  border-bottom: 1px solid #e0e2e6;
  vertical-align: top;
  padding: 15px 12px 9px 12px;
}

/* .table td p:last-child {
  margin-bottom: 0;
} */

.table-sm {
  font-size: 13px;
  line-height: 20px;
}

.table-sm .list .list-item {
  padding-left: 18px;
}

.table-sm .list .list-item::before {
  left: 0px;
}

.table-sm p {
  margin-bottom: 6px;
}

@media (min-width: 1280px) {

  .table-sm .list .list-item::before {
    font-size: 20px;
    line-height: 20px;
  }
}


/* Element - Subtitle */

.subtitle {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 42px;
}

@media (min-width: 1024px) {

  .subtitle {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 48px;
  }
}

@media (min-width: 1024px) {

  .subtitle {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 60px;
  }
}


/* Element - Title Center */

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

.title-center::before {
  content: '';
  background-color: #3e4041;
  display: block;
  height: 2px;
  position: relative;
  top: 15px;
  width: 100%;
  z-index: 1;
}

@media (min-width: 1280px) {

  .title-center::before {
    top: 18px;
  }
}

.title-center .title {
  background-color: #ffffff;
  display: inline-block;
  padding: 0 12px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {

  .title-center .title {
    padding: 0 18px;
  }
}


/* Element - Badge */

.badge {
  display: inline-block;
  background-color: #c0c6ce;
  border-radius: 9px;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  font-size: 8px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  min-width: 60px;
  padding: 0 10px;
}

@media (min-width: 1280px) {

  .badge {
    border-radius: 11px;
    font-size: 9px;
    line-height: 22px;
    padding: 0 12px;
  }
}

.badge-primary {
  background-color: #06263d;
  color: #ffffff;
}

.badge-secondary {
  background-color: #d62222;
  color: #ffffff;
}


/* Element - Meta */

.meta {
  color: #6d7073;
}


/* Element - Disclosures */

.disclosures {
  border-radius: 6px;
  color: #5a5c5e;
  font-size: 13px;
  padding: 30px 30px 18px 30px;
  margin-top: 60px;
}

.disclosures h4 {
  color: #5a5c5e;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 768px) {

  .disclosures {
    padding: 36px 42px 30px 42px;
  }
}


/* COMPONENT - MOBILE MENU */

.btn-navbar-toggle {
  background-color: transparent;
  border: 1px solid #06263d;
  color: #06263d;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  padding: 12px 18px;
}

.btn-navbar-toggle:hover {
  background-color: transparent;
}

.btn-navbar-toggle:focus {
  outline: 0px;
}

.menu-icon {
  padding-left: 4px;
  padding-right: 12px;
}

.icon-bar {
  background-color: #06263d;
  display: block;
  margin-bottom: 4px;
  width: 16px;
  height: 2px;
}

.icon-bar:last-child {
  margin-bottom: 0;
}

.navbar-collapse {
  display: none;
  overflow-x: visible;
  z-index: 11;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {

  .navbar-collapse {
    position: absolute;
    left: 0;
    width: 100%;
  }
}

@media (min-width: 768px) {

  .navbar-collapse {
    display: block;
  }

  .navbar-collapse.collapse {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    padding-bottom: 0px;
    overflow: visible !important;
  }
}


/* COMPONENT HEADER */

.header {
/*   background-color: #f2f5f7; */
  background-color: #ffffff;
  padding: 0 18px;
}

.header-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-content .logo {
  width: 48px;
}

.header-content .logo a {
  display: block;
}

@media (max-width: 767px) {

  .header-nav {
    width: 100%;
  }

  .header-nav .menu {
    background-color: #ffffff;
  }

  .header-nav .menu .menu-item {
    border-top: 1px solid #f2f5f7;
    padding: 12px 18px;
  }

  .header-nav .menu .menu-item:first-child {
    padding-top: 15px;
  }

  .header-nav .menu .menu-item:last-child {
    border-bottom: 1px solid #f2f5f7;
    padding-bottom: 15px;
  }

  .header .connect-button {
    display: none;
  }
}

.header-nav .menu-item a,
.footer-nav .menu-item a {
  display: block;
  color: #06263d;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  text-decoration: none;
}

.header-nav .menu-item a {
  font-size: 12px;
}

.header-nav .menu-item a:hover,
.footer-nav .menu-item a:hover {
  color: #d62222;
}

@media (min-width: 768px) {

  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 12px 18px;
    z-index: 10;
  }

  .header .navbar-button {
    display: none;
  }

  .header-nav .menu {
    display: flex;
  }

  .header-nav .menu-item {
    margin-left: 20px;
  }

  .header-nav .menu-item a {
    line-height: 30px;
  }

  .header-nav .menu-item:last-child {
    display: none;
  }

  .header .connect-button a {
    display: block;
    background-color: #06263d;
    color: #ffffff;
    border-radius: 15px;
    font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 15px;
  }

  .header .connect-button a:hover {
    background-color: #d62222;
  }
}

@media (max-width: 1023px) {

  .header-nav .menu-item:first-child {
    display: none;
  }

  .header-nav .menu-item:nth-child(2) {
    margin-left: 0;
  }
}

@media (min-width: 1024px) {

  .header {
    padding: 12px 30px;
  }

  .header-nav .menu-item {
    margin-left: 22px;
  }

  .header-nav .menu-item:first-child {
    margin-left: 0;
  }

  .header-nav .menu-item a {
    font-size: 14px;
  }
}

@media (min-width: 1280px) {

  .header {
    padding: 18px 60px;
  }

  .header-nav .menu-item {
    margin-left: 24px;
  }

  .header-nav .menu-item a {
    font-size: 16px;
  }

  .footer-nav .menu-item a {
    font-size: 12px;
  }

  .header .connect-button a {
    font-size: 13px;
    padding: 0 20px;
  }
}


/* COMPONENT FOOTER */

/* footer main */

.footer-main {
/*  border-top: 2px solid #f2f5f7; */
/*  background-color: #e6eaed; */
  background-color: #f2f5f7;
/*  background-color: #ffffff; */
  padding: 36px 0 60px 0;
}

.footer-main .logo a {
  display: block;
  width: 48px;
}

.footer-nav .menu {
  margin-top: 6px;
  margin-bottom: 24px;
}

.footer-social .icon-social {
  display: block;
  width: 24px;
  margin-left: 12px;
}

.footer-social svg {
  fill: #06263d;
}

.footer-social .icon-social svg {
  fill: #06263d;
}

.footer-social .icon-social:hover svg {
  fill: #d62222;
}

@media (max-width: 767px) {

  .footer {
    text-align: center;
  }

  .footer-main {
    padding: 60px 0 42px 0;
  }

  .footer-main .logo a {
    display: inline-block;
  }

  .footer-nav .menu-item {
    padding: 6px;
  }

  .footer-social .icon-social {
    display: inline-block;
    margin: 0 6px;
  }
}

@media (min-width: 768px) {

  .footer-nav .menu,
  .footer-social {
    display: flex;
    justify-content: flex-end;
  }

  .footer-nav .menu-item {
    margin-left: 18px;
  }
}

@media (max-width: 1023px) {

  .footer-nav .menu-item:first-child {
    display: none;
  }
}

@media (min-width: 1024px) {

  .footer-main .logo a {
    width: 54px;
  }
}

@media (min-width: 1280px) {

  .footer-main .logo a {
    width: 60px;
  }
}

/* footer legal */

.footer-legal {
  border-top: 1px solid #dadee2;
  background-color: #f2f5f7;
/*  background-color: #e6ecef; */
/*  background-color: #06263d; */
/*  background-color: #ffffff; */
  padding: 12px 0;
}

.footer-legal,
.footer-legal a {
  color: #86939d;
  font-size: 11px;
}

.footer-legal .locations span {
  color: #d62222;
}

.footer-legal .links a {
  text-decoration: underline;
  padding-left: 12px;
}

.footer-legal .links a:hover {
  color: #06263d;
}

@media (max-width: 767px) {

  .footer-legal,
  .footer-legal a {
    line-height: 24px;
  }
}

@media (min-width: 768px) {

  .footer-legal .group {
    display: flex;
  }

  .footer-legal .copyright,
  .footer-legal .locations,
  .footer-legal .links {
    width: 33.33%;
  }

  .footer-legal .locations {
    text-align: center;
  }

  .footer-legal .links {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    text-align: right;
  }
}

/* COMPONENT - BACKGROUND VIDEO */

.bg-video {
  background-color: transparent;
  overflow: hidden;
  position: relative;
}

.bg-video #background-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}


/* COMPONENT - BACKGROUND IMAGE */

.bg-image {
  position: relative;
}

.bg-image-01 {
  background: url('../img/bg-cover-01.jpg') center bottom no-repeat #f2f5f7;
  background-size: cover;
}


/* COMPONENT SHARE */

.share .share-options {
  display: flex;
}

.share .share-item {
  margin-right: 12px;
}

.share .share-item:last-child {
  margin-right: 0;
}

.share .share-item svg {
  color: #c0c6ce;
  width: 22px;
  height: 22px;
}

.share .share-item:hover svg {
  color: #6d7073;
/*   color: #d62222; */
}

.share .share-item a {
  display: block;
}


/* COMPONENT ACTIONS */

@media (max-width: 1023px) {

  .actions {
    display: flex;
    flex-wrap: wrap;
  }

  .page-actions .action {
    margin-right: 12px;
    margin-bottom: 12px;
  }

  .page-actions .action:last-child {
    margin-right: 0;
  }
}

@media (min-width: 1024px) {

  .page-actions .action .btn {
    min-width: 120px;
    margin-bottom: 12px;
  }
}


/* COMPONENT - PAGE */

.page-title {
  padding-bottom: 18px;
  position: relative;
  max-width: 920px;
}

.page-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background-color: #d62222;
}

.page-title h1 {
  margin-block: 18px;
}

.page-title .page-description {
  font-size: 16px;
}

@media (min-width: 768px) {

  .page-title .page-description {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {

  .page-title .page-description {
    font-size: 18px;
  }
}

.page-subtitle {
/*   color: #3e4041; */
  color: #6d7073;
  margin-top: 24px;
}

.page h2 {
  margin-top: 30px;
}

.section-page-header.bg-video,
.section-page-header.bg-image {
  padding-top: 120px;
  padding-bottom: 30px;
}

.section-page-header.bg-video #background-video {
  height: 480px;
}

@media (min-width: 768px) {

  .section-page-header.bg-video,
  .section-page-header.bg-image {
    padding-bottom: 42px;
  }
}

@media (min-width: 1024px) {

  .page-title {
    padding-bottom: 24px;
  }

  .page-title:after {
    width: 48px;
    height: 4px;
  }

  .page-subtitle {
    margin-top: 36px;
    margin-bottom: 12px;
  }

  .section-page-header.bg-video,
  .section-page-header.bg-image {
    padding-top: 150px;
  }

  .section-page-header.bg-video #background-video {
    height: 600px;
  }
}

@media (min-width: 1280px) {

  .page-subtitle {
    margin-top: 42px;
    margin-bottom: 24px;
  }

  .section-page-header.bg-video {
    padding-top: 180px;
    padding-bottom: 72px;
  }
}


/* PAGE - HOME */

/* home-typography */

.page-home h2,
.page-home .h2 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-home h3,
.page-home .h3 {
  margin-bottom: 24px;
}

.page-home h4,
.page-home .h4 {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 1024px) {

  .page-home h2,
  .page-home .h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .page-home h4,
  .page-home .h4 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {

  .page-home h2,
  .page-home .h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 30px;
  }

  .page-home h3,
  .page-home .h3 {
    letter-spacing: 0.5px;
  }
}

/* home-header */

.page-home .header {
/*   background-color: transparent; */
/*   background-color: #ffffff; */
}

/* home-footer */

.page-home .footer-main {
/*   border-top: 2px solid #f2f5f7; */
/*   background-color: #e6eaed; */
/*   background-color: #f2f5f7; */
/*   background-color: #ffffff; */
}

.page-home .footer-legal {
/*   border-top: 1px solid #e6ecef; */
/*   background-color: #f2f5f7; */
/*   background-color: #e6ecef; */
/*   background-color: #06263d; */
/*   background-color: #ffffff; */
}

/* home-hero */

.page-home .section-hero {
  padding-top: 150px;
  padding-bottom: 180px;
}

.page-home .hero .logo {
  display: flex;
  align-items: center;
  padding-left: 9px;
}

.page-home .hero .logo-img {
  width: 78px;
  flex-shrink: 0;
}

.page-home .hero .logo-divider {
  background-color: #06263d;
  flex-shrink: 0;
  width: 1px;
  height: 90px;
  margin-left: 18px;
  margin-right: 18px;
}

.page-home .hero .logo-text {
  color: #06263d;
  font-family: 'Montserrat Italic', 'Helvetica Italic', 'Arial Italic', italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.25px;
}

.page-home .hero h1 {
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 66px;
  letter-spacing: -0.25px;
  margin-top: 72px;
  max-width: 900px;
}

.page-home .section-hero .scroll {
  position: absolute;
  bottom: 24px;
  width: 90px;
  margin-left: 12px;
}

@media (min-width: 768px) {

  .page-home .section-hero {
    padding-top: 160px;
    padding-bottom: 180px;
  }

  .page-home .hero .logo-img {
    width: 84px;
  }

  .page-home .hero .logo-divider {
    width: 1.5px;
    height: 96px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .page-home .hero .logo-text {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0.5px;
  }
}

@media (min-width: 1024px) {

  .page-home .section-hero {
    padding-top: 200px;
    padding-bottom: 240px;
  }

  .page-home .hero .logo-img {
    width: 96px;
  }

  .page-home .hero .logo-divider {
    width: 1.5px;
    height: 108px;
    margin-left: 24px;
    margin-right: 22px;
  }

  .page-home .hero .logo-text {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 1280px) {

  .page-home .section-hero {
    padding-top: 240px;
    padding-bottom: 300px;
  }

  .page-home .hero .logo-img {
    width: 150px;
  }

  .page-home .hero .logo-divider {
    width: 2px;
    height: 172px;
    margin-left: 34px;
    margin-right: 32px;
  }

  .page-home .hero .logo-text {
    font-size: 36px;
    line-height: 48px;
  }

  .page-home .section-hero .scroll {
    position: absolute;
    bottom: 48px;
    width: 110px;
  }
}

.page-home .section-hero #background-video {
  height: 540px;
}

@media (min-width: 768px) {

  .page-home .section-hero #background-video {
    height: 540px;
  }
}

@media (min-width: 1024px) {

  .page-home .section-hero #background-video {
    height: 660px;
  }
}

@media (min-width: 1280px) {

  .page-home .section-hero #background-video {
    height: 840px;
  }
}

/* home-intro */

.intro-header {
  font-size: 22px;
  line-height: 34px;
  border-left: 3px solid #d62222;
  padding: 12px 0 12px 30px;
  margin-bottom: 24px;
}

.intro-header span {
  color: #d62222;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
}

.intro-list {
  padding-left: 18px;
}

.intro-list span {
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
}

.intro-list .list-item {
  margin-bottom: 12px;
}

.intro-list .list .list-item::before {
  left: 3px;
}

@media (min-width: 768px) {

  .intro-header {
    font-size: 24px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {

  .intro-header {
    padding: 12px 54px 12px 36px;
    margin-bottom: 0;
  }

  .intro-list {
    padding-left: 30px;
  }

  .intro-list .title {
    margin-left: 24px;
  }

  .intro-list .list-item {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
  }
}

@media (min-width: 1280px) {

  .intro-header {
    border-left: 4px solid #d62222;
    font-size: 30px;
    line-height: 44px;
    padding: 12px 72px 12px 54px;
  }

  .intro-list .list-item {
    font-size: 18px;
    line-height: 26px;
    padding-left: 26px;
    margin-bottom: 18px;
  }

  .intro-list .list .list-item::before {
    font-size: 24px;
    line-height: 26px;
  }
}

/* home-focus */

.section-focus .card {
  background-color: #ffffff;
  border-left: 3px solid #d62222;
  height: 100%;
  padding: 36px 30px 30px 36px;
}

@media (min-width: 1024px) {

  .section-focus .card {
    padding: 42px 24px 36px 30px;
  }
}

@media (min-width: 1280px) {

  .section-focus .card {
    padding: 42px 36px;
  }
}

.focus-item {
  display: flex;
  flex-direction: column;
}

.focus-item .card-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.focus-item .card-header .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.focus-item .card-header .title {
  color: #06263d;
  margin-left: 18px;
  margin-bottom: 0;
}

.focus-item .card-content {
  border-top: 2px dotted #e0e2e6;
}

.focus-item .card-content .title {
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  margin-top: 24px;
  padding-bottom: 12px;
}

.focus-item .card-content .description {
  margin-top: 30px;
}

.focus-item .card-content .list-item {
  color: #3e4041;
  font-size: 14px;
  margin-bottom: 6px;
}

/* @media (min-width: 1024px) and (max-width: 1279px) {

  .focus-item .card-content .list-item {
    font-size: 13px;
    margin-bottom: 3px;
    padding-left: 15px;
  }

  .focus-item .card-content .list.list-secondary .list-item::before {
    font-size: 18px;
    line-height: 18px;
    left: 0;
  }
} */

@media (min-width: 768px) {

}

@media (min-width: 1024px) {

  .focus-item .card-header {
    min-height: 52px;
  }
}

@media (min-width: 1280px) {

  .focus-item .card-header {
    min-height: 64px;
  }

  .focus-item .card-header .icon {
    width: 54px;
    height: 54px;
  }

  .focus-item .card-header .title {
    margin-left: 24px;
  }

  /* .focus-item .use-cases .list {
    column-count: 2;
  } */
}

.section-focus .focus-item-text {
  border-left: 4px solid #06263d;
  padding: 18px 12px 18px 30px;
}

.section-focus .focus-item-text .title {
  color: #000000;
  font-size: 22px;
  line-height: 34px;
}

@media (min-width: 768px) {

  .section-focus .focus-item-text {
    padding: 18px 12px 18px 36px;
  }
}

@media (min-width: 1024px) {

  .section-focus .focus-item-text {
    padding: 24px 42px 24px 48px;
  }
}


@media (min-width: 1280px) {

  .section-focus .focus-item-text {
    padding: 18px 42px 18px 48px;
  }

  .section-focus .focus-item-text .title {
    font-size: 30px;
    line-height: 42px;
  }
}

/* home-beliefs */

.section-beliefs .conclusion {
  border-left: 3px solid #d62222;
  font-size: 22px;
  line-height: 34px;
  margin-top: 24px;
  padding: 12px 24px 12px 30px;
}

.beliefs-list .title {
  text-transform: uppercase;
  margin-bottom: 30px;
}

.beliefs-list .list-item .beliefs-item {
  display: flex;
  border-top: 2px dotted #e0e2e6;
  font-size: 16px;
  line-height: 24px;
  padding: 24px 6px 24px 12px;
  position: relative;
  transition: 0.2s background-color ease-out;
}

.beliefs-list .list-item:hover .beliefs-item {
  background-color: #f9fafb;
}

.beliefs-list .list-item:last-child .beliefs-item {
  border-bottom: 2px dotted #e0e2e6;
}

.beliefs-item .number {
  flex-shrink: 0;
  color: #ffffff;
  background-color: #06263d;
  font-family: 'Montserrat SemiBold', 'Helvetica', 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  text-align: center;
  margin-right: 18px;
  margin-left: 6px;
  width: 26px;
  height: 26px;
}

.beliefs-item .bold {
  display: block;
  color: #d62222;
  margin-bottom: 6px;
}

@media (min-width: 768px) {

  .beliefs-list .list-item .beliefs-item {
    padding: 24px 12px;
  }

  .beliefs-item .number {
    margin-right: 24px;
  }
}

@media (min-width: 1280px) {

  .beliefs-list .list-item .beliefs-item {
    font-size: 18px;
    line-height: 26px;
  }

  .section-beliefs .conclusion {
    border-left: 4px solid #d62222;
    font-size: 30px;
    line-height: 44px;
    margin-top: 72px;
    margin-left: 84px;
    padding: 6px 0 6px 48px;
  }
}

/* home-portfolio */

.section-portfolio .status {
  color: #000000;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  padding-left: 18px;
  position: relative;
}

.section-portfolio .status::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  background-color: #3aa969;
  border-radius: 50%;
  position: absolute;
  top: 8px;
}

/* pulse animation */

@-webkit-keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

.section-portfolio .status::before {
  -webkit-animation: pulse 2s infinite ease-in-out;
  -o-animation: pulse 2s infinite ease-in-out;
  -ms-animation: pulse 2s infinite ease-in-out;
  -moz-animation: pulse 2s infinite ease-in-out;
  animation: pulse 2s infinite ease-in-out;
}

@media (max-width: 1023px) {

  .section-portfolio .portfolio-table {
    overflow: scroll;
  }
}

.section-portfolio .table-header,
.section-portfolio .table-content {
  width: 912px;
}

@media (min-width: 1280px) {

  .section-portfolio .table-header,
  .section-portfolio .table-content {
    width: 1176px;
  }
}

.section-portfolio .table-header {
  display: flex;
  border-bottom: 1px solid #d62222;
  color: #d62222;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-size: 9px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding-bottom: 12px;
}

@media (min-width: 1280px) {

  .section-portfolio .table-header {
    font-size: 10px;
  }
}

.portfolio-item {
  display: flex;
  align-items: center;
  border-bottom: 2px dotted #e0e2e6;
  font-size: 12px;
  line-height: 16px;
  padding: 24px 0;
}

.portfolio-item .icon {
  display: block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: 0 auto;
}

.portfolio-logo {
  flex-shrink: 0;
  width: 18%;
}

.portfolio-logo img {
  max-width: 140px;
}

@media (min-width: 1280px) {

  .portfolio-logo img {
    max-width: 160px;
  }
}

.portfolio-description {
  flex-shrink: 0;
  width: 24%;
}

.portfolio-location {
  flex-shrink: 0;
  width: 11%;
}

.portfolio-year {
  flex-shrink: 0;
  width: 8%;
}

.portfolio-domain {
  flex-shrink: 0;
  width: 15%;
}

.portfolio-stage {
  flex-shrink: 0;
  width: 10%;
}

.portfolio-website {
  flex-shrink: 0;
  width: 8%;
  text-align: center;
}

.portfolio-career {
  flex-shrink: 0;
  width: 6%;
  text-align: center;
}

.portfolio-item .portfolio-description {
  font-size: 11px;
  line-height: 16px;
  padding-right: 18px;
}

.portfolio-item .portfolio-domain {
  padding-right: 12px;
}

@media (min-width: 1280px) {

  .portfolio-item {
    font-size: 13px;
    line-height: 20px;
    padding: 24px 0;
  }

  .portfolio-item  .portfolio-description {
    font-size: 12px;
    line-height: 18px;
  }

  .portfolio-item .portfolio-domain {
    padding-right: 18px;
  }

  .portfolio-item .icon {
    width: 22px;
    height: 22px;
    line-height: 22px;
  }
}

/* home-insights */

.page-home .section-insights .item-excerpt {
  display: none;
}

/* home-interviews */

.page-home .section-interviews {
  padding-bottom: 12px;
}

@media (min-width: 1024px) and (max-width: 1279px) {

  .page-home .section-interviews .col-xl-3:last-child {
    display: none;
  }
}

/* home-news */

.page-home .section-news h2 {
  margin-top: 0;
}

@media (min-width: 1024px) and (max-width: 1279px) {

  .page-home .section-news .col-xl-3:last-child {
    display: none;
  }
}

@media (min-width: 1024px) {

  .page-home .section-news {
    padding-top: 60px;
  }
}

/* home-team */

/*
.section-team {
  padding-bottom: 0;
}
*/

.section-team .section-header .title {
  margin-bottom: 48px;
}

.section-team .row-no-gap {
  border-top: 2px dotted #e0e2e6;
  border-left: 2px dotted #e0e2e6;
}

.team-item {
  cursor: pointer;
  border-bottom: 2px dotted #e0e2e6;
  border-right: 2px dotted #e0e2e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 42px 24px 36px 24px;
  height: 100%;
}

.team-item .photo {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  overflow: hidden;
  margin-bottom: 18px;
}

@media (min-width: 1024px) {

  .team-item .photo {
    width: 108px;
    height: 108px;
  }
}

@media (min-width: 1280px) {

  .team-item {
    padding: 48px 24px 48px 24px;
  }

  .team-item .photo {
    width: 120px;
    height: 120px;
  }
}

.team-item .title {
  color: #000000;
  margin-bottom: 6px;
}

.team-item:hover .title {
  color: #06263d;
}

.team-item .position {
  color: #3e4041;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 12px;
}

.team-item .position {
  color: #6d7073;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 12px;
}

@media (min-width: 1280px) {

  .team-item .position {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 18px;
  }
}

.team-item .icon-link {
  color: #06263d;
  display: block;
  width: 20px;
}

.team-item .icon-link:hover {
  color: #0077b5;
}

@media (min-width: 1280px) {

  .team-item .icon-link {
    width: 22px;
  }
}

/* home-about */

.about-item {
  border-top: 2px dotted #e0e2e6;
  padding: 24px 6px;
}

.about-item .item-title {
  margin-bottom: 0;
  padding-bottom: 18px;
}

.about-group-1 .content {
  font-size: 16px;
  line-height: 24px;
}

.about-group-2 {
  border-bottom: 2px dotted #e0e2e6;
}

@media (max-width: 767px) {

  .about-item .item-title {
    border-bottom: 2px solid #d62222;
  }

 .about-group-2 .item-title {
    margin-bottom: 24px;
  }
}

@media (min-width: 768px) {

  .about-item {
    padding: 24px 6px;
  }

  .about-item .item-title {
    padding-top: 6px;
    padding-bottom: 24px;
  }

  .about-group-1 .content {
    border-left: 2px solid #d62222;
    padding: 6px 0 6px 42px;
  }
}

@media (min-width: 1024px) {

  .about-item {
    padding: 36px 12px;
  }

  .about-item .item-title {
    padding-bottom: 30px;
  }

  .about-group-1 .content {
    font-size: 20px;
    line-height: 28px;
    border-left: 3px solid #d62222;
    padding: 6px 0 6px 42px;
  }

  .about-group-2 {
    font-size: 16px;
    line-height: 24px;
    padding-right: 42px;
  }

  .about-subitem {
    padding-right: 12px;
  }
}

@media (min-width: 1280px) {

  .about-group-1 .content {
    font-size: 22px;
    line-height: 30px;
  }

  .about-subitem {
    padding-right: 18px;
  }
}

.about-group .title {
  margin-bottom: 12px;
}

.about-item .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {

  .about-group .group-item {
    margin-bottom: 24px;
  }

  .about-group .group-item:last-child {
    margin-bottom: 12px;
  }
}

@media (min-width: 768px) {

  .about-group .group {
    display: flex;
    margin: 0 -12px;
  }

  .about-group .group-item {
    width: 25%;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 12px;
  }
}

@media (min-width: 1280px) {

  .about-group .group-item {
    padding-right: 54px;
  }

  .about-item > .title {
    padding-bottom: 15px;
    margin-bottom: 24px;
  }

  .about-group .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 15px;
  }
}

/* home-framework */

.section-framework .title-center {
  margin-bottom: 12px;
}

.section-framework .title-center .title {
  background-color: #f2f5f7;
  text-transform: uppercase;
}

.framework-item {
  background: #ffffff;
  height: 100%;
  padding: 24px 24px 24px 26px;
  position: relative;
}

.framework-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.framework-item .number {
  position: absolute;
  bottom: 12px;
  right: 24px;
  color: #edf1f4;
  color: #c0c6ce;
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
}

.framework-item .title {
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
  color: #d62222;
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.framework-item .list {
  margin-bottom: 42px;
}

.framework-item .list-item {
  color: #3e4041;
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 6px;
  padding-left: 24px;
}

.framework-item .list-item::before {
  font-size: 16px;
  line-height: 16px;
  left: 0;
}

@media (min-width: 768px) {

  .framework-item .list-item {
    font-size: 12px;
    line-height: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {

  .framework-item {
    padding: 18px;
  }

  .framework-item .title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
  }

  .framework-item .number {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (min-width: 1024px) {

  .framework-item .list {
    margin-bottom: 60px;
  }
}

@media (min-width: 1280px) {

  .framework-item {
    padding: 30px 24px 24px 36px;
  }

  .framework-item .number {
    bottom: 18px;
    right: 30px;
  }

  .framework-item .title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 18px;
  }

  .framework-item .list {
    margin-bottom: 60px;
  }

  .framework-item .list-item {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 9px;
    padding-left: 18px;
  }

  .framework-item .list-item::before {
    font-size: 20px;
    line-height: 20px;
  }
}

/* home-connect */

/*
.section-connect .section-header .title {
  margin-bottom: 48px;
}
*/


/* PAGE - INSIGHTS & NEWS */

/* insights&news-typography */

.page-insights-news h2 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (min-width: 1024px) {

  .page-insights-news h2 {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (min-width: 1280px) {

  .page-insights-news h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}

/* elements */

/* .page-insights-news .action {
  margin-top: 24px;
  margin-bottom: 24px;
}

@media (min-width: 1280px) {

  .page-insights-news .action {
  margin-top: 30px;
  margin-bottom: 30px;
} */


/* research */

.page-insights-news .section-research {
  padding-bottom: 12px;
}

@media (min-width: 1024px) {

  .page-insights-news .section-research {
    padding-top: 72px;
  }
}

.research-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.research-item a {
  text-decoration: none;
}

.research-item .item-thumbnail {
  font-size: 48px;
  line-height: 54px;
  font-size: 42px;
  line-height: 50px;
  min-height: 180px;
  border-bottom: none;
  padding: 30px 24px;
}

.research-item .thumbnail-secondary {
  background: url('../img/thumbnail-insights-secondary.jpg') center bottom no-repeat #333333;
  background-size: cover;
  border: 1px solid #333333;
}

.research-item .item-header .item-title {
  color: #ffffff;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}

.research-item .item-header .item-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: #d62222;
}

.research-item .item-header .item-type {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
}

.research-item .item-content {
  background: #ffffff;
  border: 1px solid #dadee2;
  border-top: none;
  padding: 20px 24px 24px 30px;
}

.research-item .item-excerpt {
  color: #000000;
  font-size: 14px;
  margin-bottom: 12px;
}

.research-item .item-meta {
  font-size: 13px;
  margin-bottom: 12px;
}

.research-item:hover .btn-more img {
  margin-left: 9px;
}

@media (min-width: 768px) {

  .research-item,
  .research-item a,
  .research-item .item-content {
    height: 100%;
  }

  .research-item a,
  .research-item .item-content {
    display: flex;
    flex-direction: column;
  }

  .research-item .item-content .link {
    margin-top: auto;
  }
}

@media (min-width: 1024px) {

  .research-item .item-thumbnail {
    min-height: 228px;
  }
}

@media (min-width: 1280px) {

  .research-item .item-thumbnail {
    padding: 30px 36px;
  }

  .research-item .item-content {
    padding: 20px 30px 24px 36px;
  }
}

/* insights */

.page-insights-news .section-insights {
  padding-bottom: 12px;
}

.page-insights-news .section-insights h2 {
  margin-top: 0;
}

@media (min-width: 1024px) {

  .page-insights-news .section-insights {
    padding-top: 60px;
  }
}

/* insights - item */

.insights-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.insights-item a {
  text-decoration: none;
}

.insights-item .item-thumbnail {
  font-size: 48px;
  line-height: 54px;
  font-size: 42px;
  line-height: 50px;
  min-height: 180px;
  border-bottom: none;
  padding: 30px 24px;
}

.insights-item .thumbnail-primary {
  background: url('../img/thumbnail-insights-primary.jpg') center bottom no-repeat #06263d;
  background-size: cover;
  border: 1px solid #06263d;
}

.insights-item .item-header .item-date {
  color: #ffffff;
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  position: relative;
}

.insights-item .item-header .item-date:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: #d62222;
}

.insights-item .item-header .item-title {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
}

/* .insights-item .item-header .date {
  font-size: 20px;
} */

.insights-item .item-content {
  background: #ffffff;
  border: 1px solid #dadee2;
  border-top: none;
  padding: 20px 24px 24px 30px;
}

.insights-item .item-excerpt {
  color: #000000;
  font-size: 14px;
  margin-bottom: 12px;
}

.insights-item .item-meta {
  font-size: 13px;
  margin-bottom: 12px;
}

.insights-item:hover .btn-more img {
  margin-left: 9px;
}

@media (min-width: 768px) {

  .insights-item,
  .insights-item a,
  .insights-item .item-content {
    height: 100%;
  }

  .insights-item a,
  .insights-item .item-content {
    display: flex;
    flex-direction: column;
  }

  .insights-item .item-content .link {
    margin-top: auto;
  }
}

@media (min-width: 1024px) {

  .insights-item .item-thumbnail {
    min-height: 228px;
  }
}

@media (min-width: 1280px) {

  .insights-item .item-thumbnail {
    padding: 30px 54px 30px 36px;
  }

  .insights-item .item-content {
    padding: 20px 30px 24px 36px;
  }
}

/* interviews */

.page-insights-news .section-interviews {
  padding-bottom: 12px;
}

.page-insights-news .section-interviews h2 {
  margin-top: 0;
}

@media (min-width: 1024px) {

  .page-insights-news .section-interviews {
    padding-top: 60px;
  }
}

/* news */

@media (min-width: 1024px) {

  .page-insights-news .section-news {
    padding-top: 60px;
  }
}

.page-insights-news .section-news h2 {
  margin-top: 0;
}

.page-insights-news .news-item .link {
  display: none;
}

/* news - item */

.news-item a {
  text-decoration: none;
}

.news-item .item-thumbnail {
  border: 1px solid #dadee2;
  border-bottom: none;
  position: relative;
}

.news-item .item-details {
  background: #f3f5f7;
  border-left: 1px solid #dadee2;
  border-right: 1px solid #dadee2;
  padding: 12px 24px 18px 24px;
}

.news-item .item-excerpt {
  border-top: 1px solid #dadee2;
  color: #000000;
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 24px;
  padding-top: 15px;
}

.news-item .item-content {
  background: #ffffff;
  border: 1px solid #dadee2;
  border-top: none;
  padding: 20px 24px 24px 24px;
}

.news-item .item-title {
  margin-bottom: 12px;
}

.news-item .item-meta {
  font-size: 13px;
  /* margin-bottom: 12px; */
}

.news-item .item-meta .meta-location {
  margin-bottom: 3px;
}

.news-item .meta-event {
  color: #000000;
  font-size: 14px;
  font-family: 'Montserrat Bold', 'Helvetica', 'Arial', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.news-item .meta-description {
  color: #000000;
  font-size: 12px;
}

.news-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.news-item .link {
  display: none;
}

.news-item:hover .btn-more img {
  margin-left: 9px;
}

.news-item .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 3px;
  color: #ffffff;
  line-height: 18px;
  min-width: auto;
  margin-right: 6px;
  padding: 0 6px;
}

@media (min-width: 768px) {

  .news-item,
  .news-item a,
  .news-item .item-content {
    height: 100%;
  }

  .news-item a,
  .news-item .item-content {
    display: flex;
    flex-direction: column;
  }

  .news-item .item-content .item-meta {
    margin-top: auto;
  }
}

@media (min-width: 1280px) {

  .news-item h4,
  .news-item .h4 {
    font-size: 17px;
    line-height: 23px;
  }
}


/* PAGE - INSIGHTS SINGLE */

.page-insights-single {
  line-height: 1.75;
}

.page-insights-single .page-subtitle {
  position: absolute;
  top: 6px;
  font-size: 16px;
  color: #d62222;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.75px;
}

.page-insights-single h2 {
  margin-top: 60px;
  margin-bottom: 24px;
}

.page-insights-single h2+.subtitle {
  font-size: 18px;
  /* line-height: 26px; */
  margin-top: -12px;
  margin-bottom: 24px;
}

.page-insights-single h3,
.page-insights-single h4 {
  margin-top: 18px;
}

.page-insights-single .share .title {
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
}

.page-insights-single .page-actions .share,
.page-insights-single .page-actions .actions {
  margin-top: 30px;
}

.page-insights-single .actions-content .note {
  margin-top: 48px;
}

.page-insights-single .info {
  font-size: 16px;
  margin-top: 42px;
}

.page-insights-single .meta {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-top: 42px;
  margin-bottom: 24px;
}

.page-insights-single .meta-item {
  color: #3e4041;
}

.page-insights-single .section-page-content {
  padding-top: 30px;
}

.page-insights-single .list-featured {
  border-bottom: 1px solid #e0e2e6;
  margin-bottom: 42px;
}

.page-insights-single .list-featured .list-item {
  border-top: 1px solid #e0e2e6;
  font-size: 16px;
  padding: 24px 6px 24px 30px;
}

.page-insights-single .list-featured .list-item::before {
  font-size: 24px;
  line-height: 1.35;
  left: 9px;
}

.page-insights-single .key {
  border-top: 2px dotted #e0e2e6;
  padding-top: 12px;
}

.page-insights-single .key-item {
  border-bottom: 2px dotted #e0e2e6;
  padding-bottom: 36px;
  margin-bottom: 36px;
}

.page-insights-single .key-item-group {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.page-insights-single .key-item .link {
  margin-top: 18px;
}

.page-insights-single .outcome {
  background-color: #f6f7f9;
  border-left: 3px solid #e0e6eb;
  border-left: 3px solid #d62222;
  margin-top: 24px;
  margin-bottom: 36px;
  padding: 24px 24px 18px 30px;
}

.page-insights-single .text-featured {
  background-color: #f6f7f9;
  padding: 30px 24px 24px 30px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.page-insights-single .text-featured-sm {
  background-color: #f6f7f9;
  border-left: 4px solid #dfe4e8;
  padding: 18px 24px 18px 30px;
  margin-top: 24px;
  margin-bottom: 36px;
}

.page-insights-single .text-featured>h3,
.page-insights-single .text-featured>h4 {
  margin-top: 0;
}

.page-insights-single .text-info {
  border-left: 3px solid #06263d;
}

.page-insights-single .chart,
.page-insights-single .image {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-insights-single .chart-item img {
  border: 2px solid #dfe4e8;
}

.page-insights-single .company-logo {
  width: 120px;
  margin-bottom: 12px;
}

.page-insights-single .note {
  color: #6d7073;
  border-top: 1px solid #c0c6ce;
  font-size: 12px;
  margin-top: 30px;
  padding-top: 18px;
}

.page-insights-single .btn-more:hover img {
  margin-left: 9px;
}

.page-insights-single .thesis {
  background-color: #edf1f4;
  font-size: 16px;
  padding: 12px 24px 12px 60px;
  position: relative;
}

.page-insights-single .thesis::after {
  content: "";
  display: block;
  position: absolute;
  width: 36px;
  top: 0;
  left: 0;
  bottom: 0;
  background: url('../img/icon-arrow-right.svg') center center no-repeat #d62222;
  background-size: 24px 24px;
}

.page-insights-single .narrative-type,
.page-insights-single .company-logo {
  background-color: #f6f7f9;
  width: 30%;
}

.page-insights-single .narrative-details,
.page-insights-single .company-details {
  background-color: #ffffff;
  width: 70%;
}

.page-insights-single .divider {
  border-bottom: 2px dotted #e0e2e6;
  margin-top: 36px;
  margin-bottom: 36px;
}

.page-insights-single .end {
  background-color: #d62222;
  width: 36px;
  height: 3px;
  margin-top: 42px;
}

@media (min-width: 768px) {

  .page-insights-single h3,
  .page-insights-single h4 {
    margin-top: 24px;
  }

  .page-insights-single .text-featured {
    padding: 36px 24px 30px 30px;
  }

  .page-insights-single .table td {
    padding: 18px 12px 12px 18px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {

  .page-insights-single .page-actions .actions-content {
    display: flex;
    justify-content: space-between;
  }

  .page-insights-single .page-actions .actions {
    margin-top: 48px;
  }
}

@media (min-width: 1024px) {

  .page-insights-single .page-actions {
    position: relative;
  }

  .page-insights-single .page-actions .share,
  .page-insights-single .page-actions .share .title {
    margin-top: 0;
  }

  .page-insights-single .page-actions .actions-content {
    position: absolute;
    top: 42px;
    z-index: 3;
  }

  .page-insights-single .info .italic {
    padding-left: 30px;
  }

  .page-insights-single .page-subtitle {
    font-size: 17px;
  }

  .page-insights-single .section-page-content {
    padding-top: 42px;
  }

  .page-insights-single .featured {
    padding-left: 30px;
  }

  .page-insights-single .list-featured {
    margin-bottom: 60px;
  }

  .page-insights-single .list-featured .list-item {
    font-size: 18px;
    padding: 24px 6px 24px 32px;
  }

  .page-insights-single .text-featured {
    padding: 36px 24px 30px 36px;
    margin-top: 30px;
    margin-bottom: 42px;
  }

  .page-insights-single .outcome {
    padding: 24px 24px 15px 42px;
    margin-top: 30px;
    margin-bottom: 42px;
  }

  .page-insights-single .end {
    width: 42px;
  }
}

@media (min-width: 1280px) {

  .page-insights-single .page-subtitle {
    font-size: 18px;
  }

  .page-insights-single .section-page-content {
    padding-top: 60px;
  }

  .page-insights-single .key-item {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-insights-single .text-featured {
    padding: 42px 24px 36px 42px;
  }

  .page-insights-single .table td {
    padding: 24px 18px 18px 24px;
  }

  .page-insights-single .narrative-type,
  .page-insights-single .company-logo {
    width: 25%;
  }

  .page-insights-single .narrative-details,
  .page-insights-single .company-details {
    width: 75%;
  }
}


/* insights-24-02 */

.insights-24-02 .link-item-group {
  text-align: center;
}

.insights-24-02 .item-podcast .btn {
  margin-top: 12px;
}

.insights-24-02 .title-chart {
  margin-bottom: -12px;
}

@media (min-width: 768px) {

  .insights-24-02 .item-podcast {
    padding-left: 24px;
  }
}


/* insights-24-03 */

/* .insights-24-03 .narrative-type {
  width: 20%;
}

.insights-24-03 .narrative-details {
  width: 80%;
} */


/* insights-24-11 */

.float-right-50 {
  position: relative;
  margin-bottom: 24px;
  z-index: 10;
}

@media (min-width: 1024px) {

  .float-right-50 {
    float: right;
    width: 288px;
    margin-left: 24px;
    padding-top: 6px;
    margin-bottom: 18px;
  }
}

@media (min-width: 1280px) {

  .float-right-50 {
    width: 396px;
  }
}

/* insights-25-06 */

.page-insights-single .table td.company-logo {
  padding: 18px 0;
}

@media (min-width: 1280px) {

  .page-insights-single .table td.company-logo {
    vertical-align: middle;
  }
}


/* PAGE - RESEARCH SINGLE */

.page-research-single {
  line-height: 1.75;
}

.page-research-single h2 {
  margin-top: 42px;
  margin-bottom: 24px;
}

.page-research-single .page-subtitle {
  position: absolute;
  top: 6px;
  font-size: 16px;
  color: #d62222;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.75px;
}

.page-research-single .share .title,
.page-research-single .subscribe .title {
  font-family: 'Montserrat Regular', 'Helvetica', 'Arial', sans-serif;
  font-weight: 400;
}

.page-research-single .page-actions .share,
.page-research-single .actions {
  margin-top: 30px;
}

.page-research-single .info {
  font-size: 16px;
  margin-top: 42px;
}

.page-research-single .meta {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-top: 42px;
  margin-bottom: 24px;
}

.page-research-single .meta-item {
  color: #3e4041;
}

.page-research-single .section-page-content {
  padding-top: 30px;
}

.page-research-single .intro {
  font-size: 18px;
  border-top: 1px solid #e0e2e6;
  padding: 30px 12px 18px 12px;
}

.page-research-single .list-featured {
  border-top: 1px solid #e0e2e6;
  border-bottom: 1px solid #e0e2e6;
  padding: 36px 6px 24px 6px;
  margin-bottom: 30px;
}

.page-research-single .list-featured .list-item {
  font-size: 16px;
}

.page-research-single .list-featured .list-item::before {
  left: 6px;
}

.page-research-single .end {
  background-color: #d62222;
  width: 36px;
  height: 3px;
  margin-top: 42px;
}

.page-research-single .note {
  padding-left: 30px;
}

.page-research-single .note p {
  font-size: 11px;
  color: #666666;
  margin-top: 3px;
  margin-bottom: 3px;
}

@media (min-width: 768px) and (max-width: 1023px) {

  .page-research-single .page-actions .actions-content {
    display: flex;
    justify-content: space-between;
  }

  .page-research-single .page-actions .actions {
    margin-top: 48px;
  }
}

@media (min-width: 1024px) {

  .page-research-single .page-actions {
    position: relative;
  }

  .page-research-single .page-actions .share {
    margin-top: 0;
  }

  .page-research-single .page-actions .actions-content {
    position: absolute;
    top: 42px;
    max-width: 150px;
    z-index: 3;
  }

  .page-research-single .page-subtitle {
    font-size: 17px;
  }

  .page-research-single .end {
    width: 42px;
  }
}

@media (min-width: 1280px) {

  .page-research-single .page-subtitle {
    font-size: 18px;
  }

  .page-research-single .key-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}


.image.image-social {
  margin-top: 0;
  margin-right: 36px;
}

.company-social {
  position: absolute;
  top: 0;
  right: 12px;
}

.company-social .icon-social {
  display: block;
  width: 30px;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .image.image-social {
    margin-right: 45px;
  }

  .company-social .icon-social {
    width: 36px;
  }
}

@media (min-width: 1280px) {
  .image.image-social {
    margin-right: 48px;
  }

  .company-social .icon-social {
    width: 36px;
  }
}

.company-superlogic .icon-social svg {
  fill: #1d4fc6;
}

.company-superlogic .icon-social:hover svg {
  fill: #d62222;
}


/* PAGE - INVESTOR */

.section-investor-login form .action {
  margin-top: 22px;
}

.section-investor-login .field input {
  line-height: 42px;
}

@media (min-width: 768px) {

  .section-investor-login {
    padding-top: 180;
    padding-bottom: 420px;
  }
}


/* COMPONENT - DOWNLOAD FORM */

.download-form {
  background: url('../img/bg-download.jpg') center center no-repeat #e6eaed;
  background-size: cover;
  padding: 6px 30px 48px 30px;
  margin-top: 42px;
  margin-bottom: 36px;
}

.download-form .form-content {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.download-form .field input {
  background-color: #ffffff;
}

@media (min-width: 1024px) {

  .download-form {
    padding: 12px 30px 60px 30px;
  }

  .download-form .disclamer {
    color: #5a5c5e;
    font-size: 12px;
  }
}

@media (min-width: 1280px) {

  .download-form {
    padding: 24px 30px 72px 30px;
  }
}


/* COMPONENT - MODAL */

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.fade.in {
  opacity: 1;
}

.modal.fade .modal-window {
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  -webkit-transform: translate(0, -32px);
  -ms-transform: translate(0, -32px);
  -o-transform: translate(0, -32px);
  transform: translate(0, -32px);
}

.modal.in .modal-window {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal-window {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  padding: 18px !important;
}

.modal-window {
  background-color: #ffffff;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  cursor: auto;
  position: relative;
  max-width: 480px;
  margin: 24px auto;
}

.modal-window.modal-widget {
  padding: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: #000000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

button.modal-close {
  border-radius: 50%;
  cursor: pointer;
  display: block;
  border: 0;
  background: url("../img/x.svg") center no-repeat #e6ecef;
  background-size: 15px 15px;
  width: 30px;
  height: 30px;
  padding: 0;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 101;
}

.modal-close:hover {
  background: url("../img/x-white.svg") center no-repeat #06263d;
  background-size: 15px 15px;
}

@media (min-width: 1024px) {

  .modal-window {
    max-width: 720px;
    margin: 60px auto;
  }
}

@media (min-width: 1280px) {

  .modal-window {
    max-width: 960px;
    margin: 90px auto;
  }
}


/* COMPONENT - MODAL | Bio */

.modal-bio .modal-header {
  background-color: #f3f5f7;
  padding: 30px 18px 24px 18px;
}

.modal-bio .modal-content {
  padding: 30px 24px 18px 24px;
}

.modal-bio .photo {
  border-radius: 50%;
  width: 136px;
  height: 136px;
  overflow: hidden;
  margin: 0 auto;
}

@media (min-width: 1024px) {

  .modal-bio .photo {
    width: 154px;
    height: 154px;
  }
}

.modal-bio .title {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 3px;
}

.modal-bio .position {
  color: #6d7073;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}

.modal-bio .social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.modal-bio .social a {
  color: #06263d;
  width: 22px;
  margin: 0 6px;
}

.modal-bio .social a:hover {
  color: #0077b5;
}

.modal-bio p {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {

  .modal-bio .modal-window {
    display: flex;
  }

  .modal-bio .modal-header {
    width: 30%;
    flex-grow: 0;
    padding: 42px 24px 36px 24px;
  }

  .modal-bio .modal-content {
    width: 70%;
    flex-grow: 0;
    padding: 42px 42px 36px 42px;
  }
}


/* COMPONENT - MODAL | Subscribe */

.modal-subscribe .modal-window {
  max-width: 480px;
}

.modal-subscribe .modal-header {
  background-color: #f3f5f7;
  padding: 24px 30px 6px 30px;
}

.modal-subscribe .modal-content {
  padding: 24px 30px 30px 30px;
}

@media (min-width: 768px) {

  .modal-subscribe .modal-header {
    padding: 24px 42px 6px 42px;
  }

  .modal-subscribe .modal-content {
    padding: 24px 42px 42px 42px;
  }
}


/* COMPONENT - MODAL | Submit */

.modal-submit .modal-window {
  max-width: 480px;
}

.modal-submit .modal-header {
  background-color: #f3f5f7;
  padding: 24px 30px 6px 30px;
}

.modal-submit .modal-content {
  padding: 24px 30px 30px 30px;
}

@media (min-width: 768px) {

  .modal-submit .modal-header {
    padding: 24px 42px 6px 42px;
  }

  .modal-submit .modal-content {
    padding: 24px 42px 42px 42px;
  }
}


/* COMPONENT - MODAL | Download */

/* .modal .actions-download a.btn {
  margin-bottom: 12px;
  margin-right: 12px;
}

.modal .actions-download a.btn:last-child {
  margin-right: 0;
} */


/* UTILITY */

.is-visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.fade-bottom {
  position: relative;
}

.fade-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
}