/*=============================================
=            IMPORT ALL THE THINGS            =
=============================================*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,700");
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/*==============================
=            Colors            =
==============================*/
/*=====  End of Colors  ======*/
/*==================================
=            Typography            =
==================================*/
/*=====  End of Typography  ======*/
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 1.125em;
}

@media all and (min-width: 1700px) {
  body {
    font-size: 1.5em;
  }
}

@media all and (max-width: 991px) {
  body {
    font-size: 1em;
  }
}

@media all and (max-width: 767px) {
  body {
    font-size: 0.8em;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 3em;
  line-height: 1.1;
  margin-bottom: 0.5em;
  font-weight: 700;
  text-transform: uppercase;
}

@media all and (max-width: 767px) {
  h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
  }
}

h1 {
  letter-spacing: 1px;
}

h2 {
  font-size: 2.5em;
}

h3 {
  font-size: 1.5em;
  color: #9D9D9C;
  letter-spacing: 1px;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.1em;
}

p {
  font-weight: 300;
  line-height: 1.556em;
}

a {
  color: #E52E84;
}

a:hover {
  text-decoration: none;
  color: #9a1352;
}

span, strong {
  font-weight: 700;
}

.sub-heading {
  color: #E52E84;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.222em;
  letter-spacing: 1px;
  margin: 0;
  padding: 0;
}

.ssc-big-bg-text {
  color: #fafafa;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  font-size: 20em;
  white-space: nowrap;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: -10%;
  position: absolute;
  bottom: 5%;
  z-index: -1;
  pointer-events: none;
}

@media all and (max-width: 767px) {
  .ssc-big-bg-text {
    font-size: 10em;
  }
}

.ssc-companies-text {
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #9D9D9C;
}

.ssc-button-container {
  display: table;
  margin: 0 auto;
}

.ssc-button {
  border: none;
  display: inline-block;
  color: #FFFFFF;
  padding: 1.1em 1.2em;
  font-size: 0.889em;
  background-color: #364694;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.25s ease-in-out;
  margin: 1.3em 0;
}

.ssc-button:hover {
  background-color: #2f3d81;
  color: #FFFFFF;
}

.ssc-button:hover:after {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.ssc-button:after {
  content: '';
  background: url("../img/ssc_icon_arrow_white.svg") no-repeat;
  height: 10px;
  width: 20px;
  position: relative;
  display: inline-block;
  margin-left: 10px;
  -webkit-animation: bounce 1s ease-in-out infinite;
          animation: bounce 1s ease-in-out infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.ssc-button.ssc-button--green {
  background-color: #BBD4A7;
}

.ssc-button.ssc-button--green:hover {
  background-color: #aecc96;
}

.ssc-button.ssc-button--turquoise {
  background-color: #4E91AA;
}

.ssc-button.ssc-button--turquoise:hover {
  background-color: #468299;
}

.ssc-button.ssc-button--blue {
  background-color: #364694;
}

.ssc-button.ssc-button--blue:hover {
  background-color: #2f3d81;
}

.ssc-button.ssc-button--pink {
  background-color: #E52E84;
}

.ssc-button.ssc-button--pink:hover {
  background-color: #de1c77;
}

.ssc-button.ssc-button--orange {
  background-color: #EA8B0E;
}

.ssc-button.ssc-button--orange:hover {
  background-color: #d27d0d;
}

.ssc-button.ssc-button--yellow {
  background-color: #EDE68D;
  color: #000000;
}

.ssc-button.ssc-button--yellow:hover {
  background-color: #eae177;
}

.ssc-button.ssc-button--yellow:after {
  background: url("../img/ssc_icon_arrow.svg") no-repeat;
}

.ssc-button.ssc-button--purple {
  background-color: #C794BE;
}

.ssc-button.ssc-button--purple:hover {
  background-color: #be83b4;
}

.ssc-button.ssc-button--red {
  background-color: #E74914;
}

.ssc-button.ssc-button--red:hover {
  background-color: #d04212;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.admin-bar #header {
  top: 32px;
}

#header {
  background: #000000;
  padding: 15px;
  color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

@media all and (max-width: 767px) {
  #header .ssc-sm-col {
    display: none;
  }
}

#header .ssc-sm-container .ssc-sm-container--icon {
  display: inline-block;
  max-width: 30px;
  margin-right: 5px;
}

#header .ssc-sm-container img {
  max-width: 100%;
}

#header .ssc-logo {
  max-width: 360px;
  min-width: 200px;
}

@media all and (max-width: 767px) {
  #header .ssc-logo {
    padding-top: 3px;
  }
}

#header .ssc-menu-button {
  cursor: pointer;
}

#header .ssc-menu-button #bar-1 {
  transition: all 0.3s ease-in-out;
}

#header .ssc-menu-button #bar-1.animate {
  -webkit-transform: rotate(45deg) translate(1px, -4px);
          transform: rotate(45deg) translate(1px, -4px);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 30px;
}

#header .ssc-menu-button #bar-2 {
  transition: all 0.3s ease-in-out;
}

#header .ssc-menu-button #bar-2.animate {
  width: 0%;
}

#header .ssc-menu-button #bar-3 {
  transition: all 0.3s ease-in-out;
}

#header .ssc-menu-button #bar-3.animate {
  -webkit-transform: rotate(-45deg) translate(-3px, 4px);
          transform: rotate(-45deg) translate(-3px, 4px);
  width: 30px;
  -webkit-transform-origin: 0 75%;
          transform-origin: 0 75%;
}

footer {
  padding-bottom: 40px;
}

footer .ssc-logo-footer {
  width: 80%;
}

@media all and (max-width: 767px) {
  footer .ssc-logo-footer {
    width: 90%;
    margin-left: 5%;
  }
}

footer .ssc-eu-logo-footer {
  position: relative;
  margin: 0 auto;
  width: 70%;
}

@media all and (max-width: 767px) {
  footer .ssc-eu-logo-footer {
    margin-left: 20%;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

footer p {
  font-size: 0.7em;
  color: #9D9D9C;
}

@media all and (max-width: 767px) {
  footer p {
    font-size: 1em;
  }
}

footer ul {
  list-style-type: none;
  float: right;
}

@media all and (max-width: 767px) {
  footer ul {
    float: none;
    text-align: center;
  }
}

footer ul li {
  display: inline-block;
  margin-left: 10px;
}

footer ul li a {
  font-size: 0.7em;
  color: #E52E84;
}

footer ul li a:hover {
  color: #9a1352;
}

@media all and (max-width: 767px) {
  footer ul li a {
    font-size: 1em;
  }
}

#ssc-menu {
  padding: 0;
  margin: 0;
  top: 60px;
  left: 0;
  right: 0;
  height: calc(100vh - 60px);
  background: rgba(78, 145, 170, 0.95);
  z-index: -3;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

@media all and (max-width: 767px) {
  #ssc-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }
}

#ssc-menu.menu-open {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}

#ssc-menu .container {
  min-height: calc(100vh - 60px);
}

@media all and (max-width: 767px) {
  #ssc-menu .container {
    min-height: calc(100vh - 55px);
  }
}

#ssc-menu .container .row {
  min-height: calc(100vh - 60px);
}

@media all and (max-width: 767px) {
  #ssc-menu .container .row {
    min-height: calc(100vh - 55px);
  }
}

#ssc-menu ul {
  list-style: none;
}

#ssc-menu ul .menu-item {
  margin: 1em 0;
  -webkit-transform: translate(-40px, 0);
          transform: translate(-40px, 0);
  opacity: 0;
  transition: all 0.2s ease-out;
}

#ssc-menu ul .menu-item.animate-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#ssc-menu ul .menu-item a {
  font-size: 2em;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
}

#ssc-menu ul .menu-item a:hover {
  padding-left: 20px;
  color: #BBD4A7;
}

#ssc-menu ul .sub-menu li {
  margin: 0.5em 0;
}

#ssc-menu ul .sub-menu li a {
  font-size: 1.5em;
  margin-left: 1em;
  font-weight: 300;
}

.ssc-text-container {
  padding-top: 100px;
  padding-bottom: 140px !important;
  background-size: cover;
}

@media all and (max-width: 1280px) and (min-width: 768px) {
  .ssc-text-container {
    margin-bottom: 20px !important;
  }
}

.ssc-single-roster {
  padding: 1.111em 0;
}

.ssc-slider-container {
  position: relative;
}

.ssc-slider {
  margin: 0 5%;
}

.ssc-slider .ssc-slider-image-container {
  padding: 2.222em;
}

@media all and (max-width: 767px) {
  .ssc-slider .ssc-slider-image-container {
    padding: 1.111em;
  }
}

.ssc-slider .ssc-slider-image-container .ssc-slider-img {
  margin-right: auto;
}

.ssc-slide-text-content {
  padding: 40px;
}

@media all and (max-width: 767px) {
  .ssc-slide-text-content {
    padding: 20px;
  }
}

.ssc-slider-arrow-container {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  cursor: pointer;
}

@media all and (max-width: 767px) {
  .ssc-slider-arrow-container {
    width: 30px;
  }
}

@media all and (max-width: 767px) {
  .ssc-slider-arrow-container img {
    width: 15px;
  }
}

.ssc-slider-arrow-container:hover img {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.ssc-slider-arrow-container.ssc-slider-arrow-container-prev img {
  -webkit-animation: bounce-prev 1s ease-in-out infinite;
          animation: bounce-prev 1s ease-in-out infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.ssc-slider-arrow-container.ssc-slider-arrow-container-prev:hover img {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.ssc-slider-arrow-container.ssc-slider-arrow-container-next {
  right: 0;
}

.ssc-slider-arrow-container.ssc-slider-arrow-container-next img {
  -webkit-animation: bounce-next 1s ease-in-out infinite;
          animation: bounce-next 1s ease-in-out infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.ssc-slider-arrow-container.ssc-slider-arrow-container-next:hover img {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.ssc-slider-arrow-container .row {
  height: 100%;
}

@-webkit-keyframes bounce-next {
  0% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  50% {
    -webkit-transform: translateX(5px) scale(1.2);
            transform: translateX(5px) scale(1.2);
  }
  100% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
}

@keyframes bounce-next {
  0% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
  50% {
    -webkit-transform: translateX(5px) scale(1.2);
            transform: translateX(5px) scale(1.2);
  }
  100% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
  }
}

@-webkit-keyframes bounce-prev {
  0% {
    -webkit-transform: translateX(0px) rotate(180deg) scale(1.2);
            transform: translateX(0px) rotate(180deg) scale(1.2);
  }
  50% {
    -webkit-transform: translateX(5px) rotate(180deg) scale(1.2);
            transform: translateX(5px) rotate(180deg) scale(1.2);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(180deg) scale(1.2);
            transform: translateX(0px) rotate(180deg) scale(1.2);
  }
}

@keyframes bounce-prev {
  0% {
    -webkit-transform: translateX(0px) rotate(180deg) scale(1.2);
            transform: translateX(0px) rotate(180deg) scale(1.2);
  }
  50% {
    -webkit-transform: translateX(5px) rotate(180deg) scale(1.2);
            transform: translateX(5px) rotate(180deg) scale(1.2);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(180deg) scale(1.2);
            transform: translateX(0px) rotate(180deg) scale(1.2);
  }
}

.slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center !important;
}

.slick-dots li {
  display: inline-block;
  list-style: none;
  height: 10px;
  width: 10px;
  background-color: #9D9D9C;
  margin-right: 5px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

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

.slick-dots li button {
  display: none;
}

/*=============================
=            Video            =
=============================*/
#ssc-video-slider {
  background-color: #fafafa;
  position: relative;
  z-index: 1;
}

#ssc-video-slider .ssc-slider-video-container {
  padding: 2em;
}

#ssc-video-slider .ssc-slider {
  z-index: 1;
}

/*=====  End of Video  ======*/
#ssc-infographic .ssc-infographic-image-container {
  background: #E52E84;
  background: linear-gradient(to right, #E52E84 0%, #C794BE 100%);
  color: #FFFFFF;
  position: relative;
  text-align: center;
}

#ssc-infographic .ssc-infographic-icons {
  position: relative;
  width: 100%;
  height: 100%;
  clear: both;
  -webkit-animation: hover-film 5s ease-in-out infinite;
          animation: hover-film 5s ease-in-out infinite;
}

#ssc-infographic h4 {
  margin-bottom: 2.222em;
}

#ssc-infographic .ssc-infographic-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}

@media all and (max-width: 767px) {
  #ssc-infographic .ssc-infographic-arrow {
    display: none;
  }
}

#ssc-infographic .ssc-infographic-arrow img {
  width: 60%;
  -webkit-animation: bounce 1s ease-in-out infinite;
          animation: bounce 1s ease-in-out infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  transition: all 0.3s ease-in-out;
}

#ssc-infographic .ssc-infographic-arrow img:hover {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

@-webkit-keyframes hover-film {
  0% {
    -webkit-transform: translate(0, -2.888em);
            transform: translate(0, -2.888em);
  }
  50% {
    -webkit-transform: translate(0, -2em);
            transform: translate(0, -2em);
  }
  100% {
    -webkit-transform: translate(0, -2.888em);
            transform: translate(0, -2.888em);
  }
}

@keyframes hover-film {
  0% {
    -webkit-transform: translate(0, -2.888em);
            transform: translate(0, -2.888em);
  }
  50% {
    -webkit-transform: translate(0, -2em);
            transform: translate(0, -2em);
  }
  100% {
    -webkit-transform: translate(0, -2.888em);
            transform: translate(0, -2.888em);
  }
}

@-webkit-keyframes hover {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes hover {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.ssc-archive .ssc-archive-content {
  background-color: #C794BE;
  position: relative;
  padding-top: 100%;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease-in-out;
  margin-top: 30px;
}

.ssc-archive .ssc-archive-content img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ssc-archive .ssc-archive-content:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.ssc-archive .ssc-archive-content:hover .ssc-archive-content-hover {
  opacity: 1;
}

.ssc-archive .ssc-archive-content .ssc-archive-content-hover {
  position: absolute;
  left: 2%;
  top: 2%;
  height: 96%;
  width: 96%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: all 0.25s ease-in-out;
  z-index: 1;
}

@media all and (max-width: 767px) {
  .ssc-archive .ssc-archive-content .ssc-archive-content-hover {
    opacity: 1;
  }
}

.ssc-archive .ssc-archive-content .ssc-archive-content-hover .ssc-archive-content-hover-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 100%;
  padding: 3.333em;
}

.ssc-archive .ssc-archive-content .ssc-archive-content-hover h3 {
  font-size: 18px;
}

.ssc-archive .ssc-archive-content .ssc-archive-content-hover p {
  font-size: 14px;
  line-height: 1.3;
  color: #9D9D9C;
}

.ssc-archive .ssc-archive-content .ssc-single-image-container .ssc-single-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 70%;
}

.ssc-text-image-container {
  padding: 50px 0px;
}

.ssc-text-image-container .ssc-text-content {
  padding: 1.111em;
}

#ssc-partners .ssc-partner-text {
  margin: 2.222em;
}

#ssc-partners hr {
  border: 3px solid #000000;
  margin: 3.333em 0;
}

#ssc-partners .ssc-logo-text {
  font-weight: 700;
}

#ssc-partners .ssc-logo-row-one {
  margin-bottom: 3.333em;
}

#ssc-partners .ssc-partner-logo-container {
  transition: all 0.2s ease-in-out;
}

@media all and (max-width: 767px) {
  #ssc-partners .ssc-partner-logo-container {
    margin-bottom: 1.111em;
    padding: 1.111em;
  }
}

#ssc-partners .ssc-partner-logo-container:hover {
  -webkit-transform: scale(1.09);
          transform: scale(1.09);
}

#ssc-partners .ssc-partner-logo-container img {
  position: relative;
  margin: 0 auto;
  display: block;
}

#ssc-partners .ssc-partner-logo-container .rs-logo {
  max-width: 50%;
}

#ssc-partners .ssc-partner-logo-container .ms-logo {
  max-width: 50%;
}

#ssc-partners .ssc-partner-logo-container .fis-logo {
  max-width: 90%;
}

#ssc-partners .ssc-partner-logo-container .hbg-logo {
  max-width: 80%;
}

#ssc-partners .ssc-partner-logo-container .cp-logo {
  max-width: 80%;
}

#ssc-timeline {
  padding: 50px 0px;
}

#ssc-timeline #ssc-panzoom .parent {
  background-color: #000000;
}

#ssc-timeline #ssc-panzoom .ssc-buttons {
  -webkit-transform: translateY(-120%);
          transform: translateY(-120%);
  z-index: 1;
  position: relative;
}

#ssc-timeline #ssc-panzoom .ssc-buttons .ssc-button {
  margin: 0px 5px;
  padding: 1.1em 1.2em;
  line-height: 1;
  outline: none;
}

#ssc-timeline #ssc-panzoom .ssc-buttons .ssc-button:after {
  display: none;
}

#ssc-loop {
  background-color: #17174b;
  color: #FFFFFF;
}

#ssc-loop img {
  margin: 0 auto;
  position: relative;
}

.ssc-contact-container h3 {
  margin-top: 30px;
}

#ssc-press p {
  margin: 0;
  color: #FFFFFF;
}

#ssc-press a {
  transition: all 0.3s ease-in-out;
}

#ssc-press a:hover .ssc-press-single {
  background-color: #366476;
}

#ssc-press a:hover .ssc-press-arrow {
  -webkit-animation-play-state: running;
          animation-play-state: running;
  opacity: 0.4;
}

#ssc-press .press-title {
  color: #BBD4A7;
}

#ssc-press .ssc-press-single-col {
  margin-bottom: 30px;
}

#ssc-press .ssc-press-single {
  background-color: #4E91AA;
  padding: 2.222em;
  margin-bottom: 30px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}

#ssc-press .ssc-press-arrow {
  position: absolute;
  bottom: 1.111em;
  right: 1.111em;
  width: 30%;
  z-index: 1;
  opacity: 0.1;
  -webkit-animation: bounce 1s ease-in-out infinite;
          animation: bounce 1s ease-in-out infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  transition: all 0.3s ease-in-out;
}

@media all and (max-width: 767px) {
  #ssc-press .ssc-press-arrow {
    width: 10%;
  }
}

@media all and (max-width: 991px) {
  .ssc-single-page {
    padding: 0;
  }
}

@media all and (max-width: 991px) {
  .ssc-single-page .ssc-left-col {
    padding: 0;
  }
}

.ssc-single-page .ssc-left-container {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 50%;
}

@media all and (max-width: 991px) {
  .ssc-single-page .ssc-left-container {
    position: relative;
    top: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 1.111em;
  }
}

@media all and (max-width: 991px) {
  .ssc-single-page .ssc-left-container--roster {
    padding-bottom: 80%;
  }
}

.ssc-single-page .ssc-single-left-container {
  position: relative;
  height: 100%;
  max-width: 50%;
  margin: 0 auto;
}

.ssc-single-page .ssc-single-left-container .ssc-single-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media all and (max-width: 991px) {
  .ssc-single-page .ssc-single-left-container .ssc-single-image {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.ssc-single-page .ssc-single-left-container--roster {
  position: absolute;
  bottom: 20px;
  max-width: 80%;
  width: 80%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  padding: 2.222em;
  height: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media all and (max-width: 991px) {
  .ssc-single-page .ssc-single-left-container--roster {
    position: relative;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 1.111em;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-bottom: 1em;
  }
}

.ssc-single-page .ssc-single-left-container--roster h4 {
  font-size: 1em;
}

.ssc-single-page .ssc-single-left-container--roster p {
  font-size: 0.7em;
  margin-bottom: 0.2em;
}

.ssc-single-page .ssc-single-content {
  padding: 2.222em;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}

.ssc-single-page h2, .ssc-single-page h3 {
  font-size: 1.2em;
  margin-top: 2.222em;
  color: #9D9D9C;
}

.ssc-single-page .excerpt {
  font-weight: 700;
}

.ssc-single-page .other-posts-row {
  margin-top: 2.222em;
}

.ssc-single-page .other-posts {
  display: block;
  background-color: #E52E84;
  color: #FFFFFF;
  padding: 1.111em;
  font-size: 0.8em;
  margin-bottom: 0.1em;
  transition: all 0.2s ease-in-out;
}

.ssc-single-page .other-posts:hover {
  background-color: #b1165f;
}

.ssc-single-page .other-posts.prev-post {
  text-align: right;
}

#ssc-narrative {
  height: calc(100vh - 63px);
  padding: 0px;
}

#ssc-narrative .wrapper {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

#ssc-narrative .wrapper .panzoom-timeline {
  height: 100%;
}

#ssc-narrative .narrative-bg {
  max-width: 4790px;
}

#ssc-narrative .ssc-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  opacity: 0;
}

@media all and (max-width: 1200px) {
  #ssc-narrative .ssc-buttons {
    opacity: 1;
  }
}

#ssc-narrative .ssc-buttons button:after {
  display: none;
}

#ssc-narrative .ssc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 9;
}

@media all and (max-width: 1200px) {
  #ssc-narrative .ssc-overlay {
    display: none;
  }
}

#ssc-narrative .ssc-overlay .ssc-choose {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #364694;
  padding: 2.222em;
}

#ssc-narrative .ssc-overlay .ssc-choose button {
  cursor: pointer;
}

#ssc-narrative .ssc-next-part {
  position: fixed;
  right: 2.222em;
  bottom: 2.222em;
  z-index: 9;
  background-color: #364694;
  padding: 1.1em 1.2em;
  opacity: 0;
  cursor: pointer;
  display: none;
}

#ssc-narrative .ssc-next-part.step-1 {
  display: block;
}

#ssc-narrative .ssc-next-part .ssc-next-part-button {
  width: 20px;
  height: 10px;
  transition: all 0.5s ease-in-out;
}

.page-template-page-narrative {
  font-size: 1.3em !important;
}

.sp-scroll-bar {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 5%;
  width: 10px;
  height: 90%;
  border-radius: 5px;
}

.sp-scroll-bar:hover {
  background: blue;
  background: rgba(255, 255, 255, 0.1);
}

.sp-scroll-bar .sp-scroll-handle {
  position: absolute;
  width: 100%;
  height: 50px;
  border-radius: inherit;
  background: gray;
  background: rgba(0, 0, 0, 0.7);
}

.sp-scroll-bar .sp-scroll-handle:hover {
  background: black;
}

.show-path {
  display: block !important;
}

.wrapper {
  font-size: 1.3em;
}

@media all and (min-width: 1700px) {
  .wrapper {
    font-size: 1.3em;
  }
}

.wrapper .ssc-steps {
  z-index: 100;
  position: absolute;
  color: #FFFFFF;
  width: 500px;
}

.wrapper .ssc-step-1 {
  width: 700px;
  top: 170px;
  left: 560px;
}

.wrapper .ssc-step-2 {
  top: 100px;
  left: 1460px;
}

.wrapper .ssc-step-2 .ssc-infographic-icons {
  -webkit-animation: hover-globe 5s ease-in-out infinite;
          animation: hover-globe 5s ease-in-out infinite;
  width: 120%;
  margin-top: -270px;
  margin-left: -90px;
}

.wrapper .ssc-step-3 {
  top: 135px;
  left: 2160px;
  width: 800px;
}

.wrapper .ssc-step-globe {
  top: 195px;
  left: 4040px;
  width: 380px;
  -webkit-animation: hover-globe 5s ease-in-out infinite;
          animation: hover-globe 5s ease-in-out infinite;
}

.wrapper .ssc-step-4 {
  top: 650px;
  left: 3800px;
  width: 700px;
}

.wrapper .ssc-step-4 .heading-2 {
  margin-left: 40px;
}

.wrapper .ssc-step-4 .heading-3 {
  margin-left: 80px;
}

.wrapper .ssc-step-4 .heading-4 {
  margin-left: 120px;
}

.wrapper .ssc-step-4 .heading-5 {
  margin-left: 160px;
}

.wrapper .ssc-step-5 {
  width: 460px;
  top: 1090px;
  left: 4170px;
  text-align: center;
}

.wrapper .ssc-step-6 {
  top: 1650px;
  left: 4130px;
  text-align: center;
}

.wrapper .ssc-step-6 h3 {
  font-size: 6em;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.wrapper .ssc-step-7 {
  top: 2050px;
  left: 3970px;
  text-align: center;
}

.wrapper .ssc-step-7 h3 {
  font-size: 6em;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.wrapper .ssc-step-8 {
  top: 2420px;
  left: 3590px;
  text-align: center;
}

.wrapper .ssc-step-8 h3 {
  font-size: 6em;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.wrapper .ssc-step-9 {
  top: 2490px;
  left: 2800px;
  text-align: center;
}

.wrapper .ssc-step-10 {
  top: 2490px;
  left: 1870px;
  text-align: center;
}

.wrapper .ssc-step-10 #arrows {
  fill: #C794BE;
  width: 273px;
  margin-bottom: 10px;
}

.wrapper .ssc-step-10 #arrows #arrow-up {
  -webkit-animation: arrow-up 5s ease-in-out infinite;
          animation: arrow-up 5s ease-in-out infinite;
}

.wrapper .ssc-step-10 #arrows #arrow-down {
  -webkit-animation: arrow-down 5s ease-in-out infinite;
          animation: arrow-down 5s ease-in-out infinite;
}

.wrapper .ssc-step-11 {
  top: 2490px;
  left: 1310px;
  text-align: center;
}

.wrapper .ssc-step-11 #hand {
  fill: #C794BE;
  width: 250px;
  margin-bottom: 10px;
  -webkit-animation: arrow-down 5s ease-in-out infinite;
          animation: arrow-down 5s ease-in-out infinite;
}

.wrapper .ssc-step-12 {
  top: 2490px;
  left: 760px;
  text-align: center;
}

.wrapper .ssc-step-12 img {
  width: 200px;
  margin-bottom: 10px;
}

.wrapper .ssc-step-13 {
  top: 1640px;
  left: 1246px;
  width: 810px;
  background-color: #4E91AA;
  border-radius: 20px;
  text-align: center;
}

.wrapper .ssc-step-13 p {
  padding: 50px;
  padding-top: 20px;
  margin-bottom: 0px;
}

.wrapper .ssc-step-13 h2 {
  margin-bottom: 0px;
}

.wrapper .ssc-step-13 img {
  max-width: 200px;
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
}

.wrapper .ssc-step-13 .header {
  position: relative;
  background-color: #364694;
  padding: 50px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.wrapper .ssc-step-13 .header:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  height: 30px;
  width: 30px;
  background-color: #364694;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.wrapper .ssc-step-14 {
  top: 1890px;
  left: 100px;
  text-align: center;
}

.wrapper .ssc-step-15 {
  top: 1710px;
  left: 80px;
  text-align: center;
}

.wrapper .ssc-step-16 {
  top: 1400px;
  left: 150px;
  text-align: center;
}

.wrapper .ssc-step-17 {
  top: 980px;
  left: 610px;
  width: 380px;
}

.wrapper .ssc-step-17 #lamp {
  fill: #364694;
  overflow: auto;
}

.wrapper .ssc-step-17 #lamp .light {
  -webkit-animation: light 5s ease-in-out infinite;
          animation: light 5s ease-in-out infinite;
}

.wrapper .ssc-step-17 #lamp .arrow {
  -webkit-animation: arrows 4s ease-in-out infinite;
          animation: arrows 4s ease-in-out infinite;
  -webkit-transform-origin: center 45%;
          transform-origin: center 45%;
}

.wrapper .ssc-step-17 #lamp .bg {
  fill: #4E91AA;
}

.wrapper .ssc-step-18 {
  top: 1000px;
  left: 1200px;
  width: 680px;
  text-align: center;
}

.wrapper .ssc-step-19 {
  top: 1000px;
  left: 2400px;
  text-align: center;
}

.wrapper .ssc-step-20 {
  top: 1000px;
  left: 3050px;
  text-align: center;
}

.wrapper .ssc-step-21 {
  top: 930px;
  left: 3560px;
  width: 300px;
}

.wrapper .ssc-step-21 #rocket_1 {
  fill: #FFFFFF;
}

.wrapper .ssc-step-21 #rocket {
  fill: #FFFFFF;
  -webkit-animation: rocket 2s ease-in-out infinite;
          animation: rocket 2s ease-in-out infinite;
}

.wrapper .ssc-step-21 #cloud {
  -webkit-animation: cloud 0.2s linear infinite;
          animation: cloud 0.2s linear infinite;
}

.wrapper .ssc-step-21 #cloud .cloud-1 {
  -webkit-animation: cloud-1 0.5s linear infinite;
          animation: cloud-1 0.5s linear infinite;
}

.wrapper .ssc-step-21 #cloud .cloud-2 {
  -webkit-animation: cloud-2 0.5s linear infinite;
          animation: cloud-2 0.5s linear infinite;
}

@-webkit-keyframes light {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

@keyframes light {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes arrows {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359.9deg);
            transform: rotate(359.9deg);
  }
}

@keyframes arrows {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359.9deg);
            transform: rotate(359.9deg);
  }
}

@-webkit-keyframes rocket {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  45% {
    -webkit-transform: translate(0px, -5px);
            transform: translate(0px, -5px);
  }
  50% {
    -webkit-transform: translate(0px, -5px);
            transform: translate(0px, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes rocket {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  45% {
    -webkit-transform: translate(0px, -5px);
            transform: translate(0px, -5px);
  }
  50% {
    -webkit-transform: translate(0px, -5px);
            transform: translate(0px, -5px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes cloud {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0.5px, 0px);
            transform: translate(0.5px, 0px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes cloud {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0.5px, 0px);
            transform: translate(0.5px, 0px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@-webkit-keyframes hover-globe {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes hover-globe {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@-webkit-keyframes arrow-down {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes arrow-down {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@-webkit-keyframes arrow-up {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@keyframes arrow-up {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

/*=====  End of IMPORT ALL THE THINGS  ======*/
body {
  margin-top: 60px;
}

@media all and (max-width: 767px) {
  body {
    margin-top: 55px;
  }
}

section {
  padding: 150px 0px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

@media all and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
}

.ssc-text--white {
  color: #FFFFFF;
}

.ssc-text--black {
  color: #000000;
}

.ssc-divider-bottom {
  position: relative;
}

.ssc-divider-bottom:after {
  content: '';
  position: absolute;
  z-index: 0;
  bottom: -1px;
  left: 0;
  display: block;
  background: url("../img/ssc_divider_bottom.svg") bottom left no-repeat;
  background-size: cover;
  width: 100%;
  height: 18vh;
}

.ssc-divider-top {
  position: relative;
}

.ssc-divider-top:before {
  content: '';
  position: absolute;
  z-index: 0;
  top: -1px;
  left: 0;
  display: block;
  background: url("../img/ssc_divider_top.svg") top right no-repeat;
  background-size: cover;
  width: 100%;
  height: 18vh;
}

.ssc-overlap-bottom {
  padding-bottom: 250px;
  margin-bottom: -10vh;
}

@media all and (max-width: 767px) {
  .ssc-overlap-bottom {
    padding-bottom: 100px !important;
    margin-bottom: -4vh;
  }
}

.ssc-no-padding {
  padding: 0;
}

.container, .container-fluid {
  position: relative;
  z-index: 1;
}

.ssc-box-shadow {
  box-shadow: 0px 0px 2.222em rgba(0, 0, 0, 0.3);
}

@media all and (max-width: 767px) {
  .ssc-box-shadow {
    box-shadow: 0px 0px 1.111em rgba(0, 0, 0, 0.3);
  }
}

.ssc-background--green {
  background-color: #BBD4A7 !important;
  color: #FFFFFF !important;
}

.ssc-background--green .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--turquoise {
  background-color: #4E91AA !important;
  color: #FFFFFF !important;
}

.ssc-background--turquoise .sub-heading {
  color: #BBD4A7 !important;
}

.ssc-background--turquoise .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--blue {
  background-color: #364694 !important;
  color: #FFFFFF !important;
}

.ssc-background--blue .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--pink {
  background-color: #E52E84 !important;
  color: #FFFFFF !important;
}

.ssc-background--pink .sub-heading {
  color: #000000 !important;
}

.ssc-background--pink .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--orange {
  background-color: #EA8B0E !important;
  color: #FFFFFF !important;
}

.ssc-background--orange .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--yellow {
  background-color: #EDE68D !important;
}

.ssc-background--yellow .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--purple {
  background-color: #C794BE !important;
  color: #FFFFFF !important;
}

.ssc-background--purple .ssc-companies-text {
  color: #FFFFFF !important;
}

.ssc-background--red {
  background-color: #E74914 !important;
  color: #FFFFFF !important;
}

.ssc-background--red .ssc-companies-text {
  color: #FFFFFF !important;
}
