@import "utility.css";
*, *:after, *:before {
  box-sizing: border-box;
}

.color-red {
  color: #e4252a !important;
}

.bg-red {
  background-color: #e4252a !important;
}

.color-green {
  color: #00c252 !important;
}

.bg-green {
  background-color: #00c252 !important;
}

.color-purple {
  color: #3c318b !important;
}

.bg-purple {
  background-color: #3c318b !important;
}

.color-slate-darker {
  color: #1c2431 !important;
}

.bg-slate-darker {
  background-color: #1c2431 !important;
}

.color-slate {
  color: #576172 !important;
}

.bg-slate {
  background-color: #576172 !important;
}

.color-slate-light {
  color: rgba(87, 97, 114, 0.5) !important;
}

.bg-slate-light {
  background-color: rgba(87, 97, 114, 0.5) !important;
}

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

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

.bg-red-purple {
  background: linear-gradient(90deg, rgb(228, 37, 42) 0%, rgb(228, 37, 42) 20%, rgb(60, 49, 139) 100%);
}

.bg-purple-red {
  background: linear-gradient(90deg, rgb(60, 49, 139) 0, rgb(60, 49, 139) 20%, rgb(228, 37, 42) 100%);
}

html, body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  background: #dfe4ea;
  color: #1c2431;
  width: 100%;
  height: 100%;
  font-family: proxima-soft, sans-serif;
}

@media screen and (max-width: 1024px) {
  html, body {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: 10px;
  }
}
#main {
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1600px;
}

.nobr {
  white-space: nowrap;
}

.display1 {
  font-family: proxima-soft, sans-serif;
  font-weight: 600;
  font-size: 3.75vw;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-family: proxima-soft, sans-serif;
  font-weight: 300;
  font-size: 3.75vw;
  line-height: 1.125;
}

h2 {
  font-family: proxima-soft, sans-serif;
  font-weight: 400;
  font-size: 2.287em;
  line-height: 1.125;
  margin-bottom: 1em;
}

h2.big {
  font-size: 2.75em;
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2.25em;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2em;
  }
}
label {
  font-family: proxima-soft, sans-serif;
  font-weight: 600;
  font-size: 1.287em;
  line-height: 1.125;
  margin-bottom: 1em;
}

p {
  font-family: proxima-soft, sans-serif;
  font-weight: 400;
  font-size: 1.287em;
  line-height: 1.5;
  margin-bottom: 1em;
}

p.big {
  font-size: 1.25em;
}

@media screen and (min-width: 1600px) {
  .display1 {
    font-size: 4.2em;
  }
  h1 {
    font-size: 4.2em;
  }
}
@media screen and (max-width: 992px) {
  .display1 {
    font-size: 3em;
  }
  h1 {
    font-size: 3em;
  }
}
a {
  color: #e4252a;
  text-decoration: none;
}

a:hover {
  color: #ea5256;
}

.text-link:hover {
  transform: translateX(1em);
}

.btn {
  font-family: proxima-soft, sans-serif;
  font-weight: 400;
  font-size: 1.287em;
  line-height: 0;
  padding: 1em 1.5em;
  margin: 2em 0;
  border-radius: 2em;
  background: #e4252a;
  color: #fff;
}

.btn:hover {
  color: #fff;
  background: #ea5256;
}

.btn i {
  padding-left: 0.25em;
}

section {
  position: relative;
  padding: 5em 2em;
}

@media screen and (max-width: 768px) {
  section {
    padding: 5em 1em;
  }
}
#section-banner {
  padding: 0 5em;
}

#section-banner .logo {
  padding: 2.5em 1em;
}

.triggerModal, .triggerModal * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.triggerModal, .triggerOverlay {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 5000;
}

.triggerModal:checked + .triggerModal, .triggerModal:checked + .triggerModal .triggerOverlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.triggerOverlay {
  margin: 0;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.75);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}

.triggerModal aside {
  display: block;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  z-index: 6000;
  transition: padding 0.2s ease-in-out;
}

@media (min-width: 900px) {
  .triggerModal aside {
    margin: 90px auto 30px auto;
  }
}
.triggerExit {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  color: #e4252a;
  z-index: 6000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: pointer;
}

.triggerExit:before, .triggerExit:after {
  content: "";
  display: block;
  background: #e4252a;
  height: 25px;
  width: 4px;
  position: absolute;
  top: 12.5px;
  left: calc(50% - 2px);
  transform-origin: center;
  transition: ease ease-in-out 0.25s;
}

.triggerExit:before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.triggerExit:after {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.triggerExit:hover:before, .triggerExit:focus:before {
  transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.triggerExit:hover:after, .triggerExit:focus:after {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.triggerExit:focus + article, .triggerExit:hover + article {
  opacity: 0.5;
  transition: ease all 0.25s;
}

@media (min-width: 900px) {
  .triggerExit:focus + article, .triggerExit:hover + article {
    background: rgba(0, 0, 0, 0);
  }
  .triggerExit:hover + article > *, .triggerExit:focus + article > *, .triggerExit:hover + article * + *, .triggerExit:focus + article * + * {
    background: rgba(0, 0, 0, 0) !important;
  }
}
.trigger-embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 0;
  overflow: hidden;
  max-width: 100%;
}

.trigger-embed-container iframe, .trigger-embed-container object, .trigger-embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bc-card {
  padding: 2em 1em;
  background: #fff;
  border-radius: 1em;
  border: none;
}

@media screen and (max-width: 768px) {
  #section-news {
    margin-top: 5em;
    background: #fff;
  }
  #section-news .bc-card {
    padding: 0;
  }
}
#section-banner {
  background: #1c2431 url("../img/graphic-banner.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
  padding: 5em 12%;
}

@media screen and (max-width: 768px) {
  #section-banner {
    background-position: 77% center;
  }
}
.mobile-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, #1c2431, rgba(28, 36, 49, 0.8));
}

.logo {
  position: relative;
  z-index: 2;
}

.banner-message {
  z-index: 2;
  position: relative;
}

.banner-message .blob {
  position: absolute;
  top: -10%;
  left: -15%;
  width: 120%;
  height: 100%;
  background: url("../img/graphic-purpleblob1.svg");
  background-size: contain;
  background-position: center left;
  background-repeat: no-repeat;
  z-index: 1;
}

.banner-message .contents {
  position: relative;
  z-index: 2;
}

.featured-article {
  margin-bottom: 4em;
}

.featured-article .image {
  margin-bottom: 2em 0;
}

.featured-article .image img {
  width: 100%;
}

.small-article {
  display: block;
  margin: 1em 0 0 0;
  color: #3b4150;
  transition: ease all 0.25s;
}

.small-article img {
  min-width: 10em;
}

.small-article:hover {
  color: #576172;
}

#section-quotes {
  padding: 0;
}

#section-quotes .quotes-title, #section-quoteslider .quotes-title {
  padding: 5em;
  margin: 0;
}

#section-quotes .quotes, #section-quoteslider .quotes {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#section-quotes .quotes .quotes-inner-animate-left, #section-quoteslider .quotes .quotes-inner-animate-left {
  width: 182em;
  animation-name: ticker-left;
}

#section-quotes .quotes .quotes-inner-animate-right, #section-quoteslider .quotes .quotes-inner-animate-right {
  width: 208em;
  animation-name: ticker-right;
}

#section-quotes .quotes .quotes-inner:hover, #section-quoteslider .quotes .quotes-inner:hover {
  animation-play-state: paused;
}

#section-quotes .quotes .quotes-inner, #section-quoteslider .quotes .quotes-inner {
  width: 200%;
  padding: 4em 0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 90s;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

#section-quotes .quotes .quote, #section-quoteslider .quotes .quote {
  margin: 10em 2.5em 0;
  min-width: 26em;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  order: 0;
  position: relative;
  padding: 1em 3.5em;
  border-radius: 1em;
}

#section-quotes .quotes .quote .quote-avatar, #section-quoteslider .quotes .quote .quote-avatar {
  margin-right: 1em;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  margin: -10em 0 3em;
  width: 100%;
}

#section-quotes .quotes .quote .quote-text, #section-quoteslider .quotes .quote .quote-text {
  width: 100%;
  display: block;
}

#section-quoteslider {
  padding: 5em 0;
}

#section-quoteslider .quotes .quote {
  margin: 10em 5em 0;
  min-width: 26em;
}

@keyframes ticker-left {
  0% {
    transform: translateX(0);
    visibility: visible;
  }
  100% {
    transform: translateX(-217em);
  }
}
@keyframes ticker-right {
  0% {
    transform: translateX(-243em);
    visibility: visible;
  }
  100% {
    transform: translateX(0);
  }
}
.table-container {
  width: 100%;
  position: relative;
  margin-bottom: 3em;
}

table {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-family: proxima-soft, sans-serif;
}

table thead {
  background: rgba(255, 255, 255, 0.05);
}

table th, table td {
  font-size: 1em;
  padding: 1.5em;
}

table td {
  border-bottom: 3px solid #3c318b;
}

#tabbed-tables {
  margin-top: 5em;
}

@media screen and (min-width: 1200px) {
  th, td {
    font-size: 1em !important;
    padding: 1.25em 0.75em !important;
  }
}
@media screen and (min-width: 1300px) {
  th, td {
    font-size: 1em !important;
    padding: 1.25em 1.25em !important;
  }
}
@media screen and (max-width: 768px) {
  #tabbed-tables {
    overflow: hidden;
    margin-top: 4em;
  }
  .table-container {
    width: 100%;
    margin: 0.5em 0 2em -10%;
  }
  .table-container p {
    transform: translateX(10%);
  }
  .table-container:before, .table-container:after {
    content: "";
    position: absolute;
    width: 10%;
    height: 100%;
    top: 0;
    z-index: 1;
  }
  .table-container:before {
    left: -10%;
    background: linear-gradient(90deg, rgb(60, 49, 139), rgba(60, 49, 139, 0));
  }
  .table-container:after {
    right: -10%;
    background: linear-gradient(-90deg, rgb(60, 49, 139), rgba(60, 49, 139, 0));
  }
  .table-container .inner {
    padding: 0 10%;
    width: 120%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .table-container .inner::-webkit-scrollbar {
    display: none;
  }
  table {
    min-width: 55em;
  }
  table th, table td {
    padding: 1em;
  }
}
.slick-dots {
  position: absolute;
  top: -3.15em;
  margin: 0;
  padding: 0;
  left: 0;
  list-style: none;
  width: 100%;
  font-family: proxima-soft, sans-serif;
  letter-spacing: 0.5px;
}

.slick-dots li {
  padding: 0.75em 2em;
  float: left;
  border-radius: 0.5em 0.5em 0 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.slick-dots .slick-active {
  transform: translateY(-0.5em);
  padding: 1em 2em;
  border: 2px solid rgba(0, 0, 0, 0);
  border-bottom: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.slick-dots li img:nth-child(1) {
  display: block;
}

.slick-dots li img:nth-child(2) {
  display: none;
}

.slick-dots li.slick-active img:nth-child(1) {
  display: none;
}

.slick-dots li.slick-active img:nth-child(2) {
  display: block;
}

#section-flipcards {
  padding-top: 6em;
  padding-bottom: 2em;
}

.flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 1.5em;
}

.flip-card img {
  position: relative;
  width: 100%;
  height: 100%;
  transform: perspective(1000px) rotateY(180deg);
  transition: 0.5s;
  backface-visibility: hidden;
}

.flip-card img:nth-child(1) {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform: perspective(1000px) rotateY(0deg);
  backface-visibility: hidden;
}

.flip-card:hover img {
  transform: perspective(1000px) rotateY(360deg);
}

.flip-card:hover img:nth-child(1) {
  transform: perspective(1000px) rotateY(180deg);
}

#section-missed h2 i {
  font-size: 0.75em;
  width: 2em;
  height: 2em;
  text-align: center;
  line-height: 2;
  border-radius: 100%;
  color: #3c318b;
  margin-right: 0.25em;
  background: #dfe4ea;
  transform: translateY(-3px);
}

footer {
  width: 100%;
  float: left;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  flex-shrink: 0;
  z-index: -1;
  border-top: 1px solid rgba(223, 228, 234, 0.5);
}

footer .subscribe {
  position: relative;
  width: 100%;
  float: left;
}

footer .subscribe input[type=text] {
  width: 100%;
  float: left;
  padding: 0.55em 5em 0.55em 1em;
  background: rgba(223, 228, 234, 0.5);
  color: rgba(87, 97, 114, 0.5);
  border: 2px solid rgba(223, 228, 234, 0);
  transition: ease all 0.25s;
}

footer .subscribe input[type=text]:focus {
  color: #3b4150;
  border: 2px solid rgba(223, 228, 234, 0.5);
}

footer ::-webkit-input-placeholder {
  color: rgba(87, 97, 114, 0.5);
}

footer ::-moz-placeholder {
  color: rgba(87, 97, 114, 0.5);
}

footer :-ms-input-placeholder {
  color: rgba(87, 97, 114, 0.5);
}

footer :-moz-placeholder {
  color: rgba(87, 97, 114, 0.5);
}

footer .logo {
  width: 8em;
  display: inline-block;
}

footer #social ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

footer #social ul li {
  display: inline-block;
  list-style: none;
}

footer #social ul li a {
  padding: 0.25em;
  color: #576172;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  float: left;
  transition: ease all 0.25s;
}

footer #social ul li a:hover {
  transform: translate(0, -2px);
  color: #e4252a;
  text-decoration: none;
}

footer #social ul li i {
  font-size: 1.25em;
  vertical-align: middle;
}

footer #product-navigation ul {
  margin: 0;
  padding: 0;
}

footer #product-navigation ul li {
  display: inline-block;
  text-align: center;
}

footer #product-navigation ul li a {
  display: block;
  padding: 1em;
  font-size: 0.75em;
  color: rgba(87, 97, 114, 0.7);
  font-weight: 600;
  transition: ease all 0.25s;
}

footer #product-navigation ul li a:hover {
  transform: translate(0, -2px);
  color: #e4252a;
  text-decoration: none;
}

footer #bottom {
  position: relative;
  z-index: 1;
  font-size: 0.8em;
  text-transform: uppercase;
}

footer #bottom ul {
  margin: 0;
  padding: 0;
}

footer #bottom ul li {
  display: inline-block;
  text-align: center;
}

footer #bottom ul li a {
  display: block;
  padding: 1em;
  color: #3b4150 !important;
  font-weight: 600;
  transition: ease all 0.25s;
}

footer #bottom ul li a:hover {
  transform: translate(0, -2px);
  color: #e4252a;
  text-decoration: none;
}

footer #bottom .copyright {
  padding: 1em;
  display: block;
  color: #3b4150;
  font-weight: 600;
  transition: ease all 0.25s;
}

@media screen and (max-width: 768px) {
  footer #product-navigation ul li a {
    padding: 1em 0.5em;
  }
}
.form-container {
  max-width: 36em;
}