html {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

html,
html body {
  overflow-x: hidden;
}
html body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.hijack-scroll-horizontal {
  overflow-x: initial;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

html.hijack-scroll-horizontal body {
  overflow-x: initial;
}

.theme-content,
.theme-scroll-container .scroll-section {
  padding-left: 25px;
  padding-right: 25px;
}

.theme-content:first-child,
.theme-scroll-container .scroll-section:first-child {
  padding-top: 25px;
}

@media (min-width: 768px) {
  .theme-content,
  .theme-scroll-container .scroll-section {
    padding-left: 45px;
    padding-right: 45px;
  }

  .theme-content:first-child,
  .theme-scroll-container .scroll-section:first-child {
    padding-top: 45px;
  }
}

@media (min-width: 992px) {
  .theme-content,
  .theme-scroll-container .scroll-section {
    padding: 60px;
  }

  .theme-content:first-child,
  .theme-scroll-container .scroll-section:first-child {
    padding-top: 60px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-content,
  .theme-scroll-container .scroll-section {
    padding: 70px;
  }

  .theme-content:first-child,
  .theme-scroll-container .scroll-section:first-child {
    padding-top: 70px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-content,
  .theme-scroll-container .scroll-section {
    padding: 80px;
  }

  .theme-content:first-child,
  .theme-scroll-container .scroll-section:first-child {
    padding-top: 100px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-content,
  .theme-scroll-container .scroll-section {
    padding: 90px;
  }

  .theme-content:first-child,
  .theme-scroll-container .scroll-section:first-child {
    padding-top: 90px;
  }
}

.theme-wysiwyg-content .body-content,
.theme-wysiwyg-content .section-wrapper {
  height: 100%;
}

.theme-wysiwyg-content .body-content {
  -webkit-column-width: 730px;
  column-width: 730px;
  -webkit-column-gap: 190px;
  column-gap: 190px;
}

.theme-wysiwyg-content .body-content > * {
  max-width: 730px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

.theme-scroll-container .scroll-section {
  margin-bottom: 50px;
}

.theme-scroll-container .scroll-section:last-child {
  margin-bottom: 0;
}

.theme-scroll-container.scroll-menu-pushed {
  padding-bottom: 61px;
}

.theme-scroll-container.scroll-submenu-pushed {
  padding-bottom: 120px;
}

@media (min-width: 768px) {
  .scroll-section {
    margin-bottom: 70px;
  }
}

@media (min-width: 992px) {
  .theme-scroll-container {
    overflow: visible;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }

  .theme-scroll-container .scroll-section {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    white-space: normal;
    margin: 0;
    position: relative;
    min-height: 600px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }

  .theme-scroll-container.scroll-menu-pushed {
    padding-bottom: 0;
    padding-left: 72px;
  }

  .theme-scroll-container.scroll-submenu-pushed {
    padding-bottom: 0;
    padding-left: 144px;
  }
}

@media (min-width: 1500px) {
  .theme-scroll-container.scroll-submenu-pushed {
    padding-left: 400px;
  }
}

.theme-hero {
  position: relative;
  overflow: hidden;
  height: 150vh;
}

@media (min-width: 768px) {
  .theme-hero {
    min-width: 100vw !important;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

@media (min-width: 992px) {
  .theme-hero {
    min-width: calc(100vw - 72px) !important;
  }
}

.theme-hero .hero-identity {
  position: relative;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  will-change: transform;
  margin-bottom: 25px;
}

.theme-hero .hero-logo {
  width: 110px;
  height: auto;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .theme-hero .hero-logo {
    width: 120px;
  }
}

@media (min-width: 992px) {
  .theme-hero .hero-logo {
    width: 130px;
    margin-bottom: 35px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-hero .hero-logo {
    width: 140px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-hero .hero-logo {
    margin-bottom: 38px;
    width: 145px;
    margin-bottom: 42px;
  }
}

.theme-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-size: cover;
  background-position: 36% 50%;
  -webkit-transform: scale(1.4) translateY(0);
  transform: scale(1.4) translateY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  background-image: url(../images/content/picture-hero-lg.jpg);
}

@media (min-width: 768px) {
  .theme-hero .hero-background {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    background-position: 84% 50%;
  }
}

@media (min-width: 992px) {
  .theme-hero .hero-background {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background-position: 100%;
  }
}

@media (min-width: 992px) {
  .theme-hero .theme-scroll-intent {
    position: absolute;
    margin: 0;
    top: 58px;
    right: 28%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-hero .theme-scroll-intent {
    top: 67px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-hero .theme-scroll-intent {
    top: 77px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-hero .theme-scroll-intent {
    top: 86px;
  }
}

.theme-scroll-intent {
  position: relative;
  color: #00358d;
  font-family: Exo, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.theme-scroll-intent span {
  font-size: 10px;
}

.theme-scroll-intent:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 48px;
  background-image: url(../images/arrow-scroll-intent-vertical-2x.png);
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 3px;
  -webkit-animation: bounce-vertical 1.4s ease-in-out infinite;
  animation: bounce-vertical 1.4s ease-in-out infinite;
}

@media (min-width: 992px) {
  .theme-scroll-intent span {
    font-size: 12px;
    vertical-align: middle;
  }

  .theme-scroll-intent:before {
    width: 78px;
    height: 16px;
    margin-right: 15px;
    background-image: url(../images/arrow-scroll-intent-horizontal-2x.png);
    vertical-align: middle;
    -webkit-animation-name: bounce-horizontal;
    animation-name: bounce-horizontal;
  }
}

@-webkit-keyframes bounce-vertical {
  0%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  30% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
}

@keyframes bounce-vertical {
  0%,
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  30% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
  }
}

@-webkit-keyframes bounce-horizontal {
  0%,
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  30% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes bounce-horizontal {
  0%,
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  30% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.theme-icon-circle {
  width: 64px;
  height: 64px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 18px;
}

.theme-icon-circle:after,
.theme-icon-circle:before,
.theme-icon-circle span {
  content: '';
  display: block;
  border: 1px solid #00358d;
  border-radius: 100%;
}

.theme-icon-circle:before {
  width: 64px;
  height: 64px;
}

.theme-icon-circle:after {
  width: 50px;
  height: 50px;
}

.theme-icon-circle:after,
.theme-icon-circle:before,
.theme-icon-circle img,
.theme-icon-circle span,
.theme-icon-circle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.theme-icon-circle span {
  display: none;
  width: 78px;
  height: 78px;
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
  transform: translateX(-50%) translateY(-50%) scale(0);
  opacity: 0;
  z-index: 1;
}

.theme-icon-circle img,
.theme-icon-circle svg {
  z-index: 1;
}

.theme-icon-circle.circle-single:after {
  display: none;
}

.theme-icon-circle.icon-small {
  width: 30px;
  height: 30px;
  margin-right: 16px;
}

.theme-icon-circle.icon-small:before {
  width: 30px;
  height: 30px;
}

.theme-icon-circle.icon-small:after {
  width: 22px;
  height: 22px;
}

.theme-icon-circle[class*='icon--'] {
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}

.theme-icon-circle.icon--phone {
  background-image: url(../images/icons/icon-phone.svg);
}

.theme-icon-circle.icon--fax {
  background-image: url(../images/icons/icon-fax.svg);
}

.theme-icon-circle.icon--mail {
  background-image: url(../images/icons/icon-mail.svg);
}

.theme-link,
.theme-more .more-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #00358d;
  font-family: Exo, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  width: 100%;
}

.theme-link.link-inline,
.theme-more .link-inline.more-link {
  display: inline;
  width: auto;
}

.theme-link.link-underlined,
.theme-link .link-underlined,
.theme-more .link-underlined.more-link,
.theme-more .more-link .link-underlined {
  text-decoration: underline;
}

.theme-link.link-lowercase,
.theme-link .link-lowercase,
.theme-more .link-lowercase.more-link,
.theme-more .more-link .link-lowercase {
  text-transform: none;
}

.theme-link .theme-icon-circle svg,
.theme-more .more-link .theme-icon-circle svg {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  transform: translateX(-50%) translateY(-50%) scale(1);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.theme-link .theme-icon-circle:after,
.theme-more .more-link .theme-icon-circle:after {
  background-color: #fff;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.theme-link .theme-icon-circle.animate-active span,
.theme-more .more-link .theme-icon-circle.animate-active span {
  display: block;
  -webkit-animation: circle-pulse 0.8s ease-out;
  animation: circle-pulse 0.8s ease-out;
}

.theme-link:focus,
.theme-link:focus .link-underlined,
.theme-link:hover,
.theme-link:hover .link-underlined,
.theme-more .more-link:focus,
.theme-more .more-link:focus .link-underlined,
.theme-more .more-link:hover,
.theme-more .more-link:hover .link-underlined {
  text-decoration: none;
}

.theme-link:focus .theme-icon-circle svg,
.theme-link:hover .theme-icon-circle svg,
.theme-more .more-link:focus .theme-icon-circle svg,
.theme-more .more-link:hover .theme-icon-circle svg {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(0.85);
  transform: translateX(-50%) translateY(-50%) scale(0.85);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.theme-link:focus .theme-icon-circle:after,
.theme-link:hover .theme-icon-circle:after,
.theme-more .more-link:focus .theme-icon-circle:after,
.theme-more .more-link:hover .theme-icon-circle:after {
  background-color: #e8f0fb;
}

.theme-link.link-hover-squared,
.theme-more .link-hover-squared.more-link {
  padding: 11px;
  -webkit-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
}

.theme-link.link-hover-squared.with-icon-circle,
.theme-more .link-hover-squared.with-icon-circle.more-link {
  padding-right: 22px;
}

.theme-link.link-hover-squared:focus,
.theme-link.link-hover-squared:hover,
.theme-more .link-hover-squared.more-link:focus,
.theme-more .link-hover-squared.more-link:hover {
  background-color: #e8f0fb;
}

.theme-link.link-hover-squared .theme-icon-circle:after,
.theme-link.link-hover-squared .theme-icon-circle:before,
.theme-more .link-hover-squared.more-link .theme-icon-circle:after,
.theme-more .link-hover-squared.more-link .theme-icon-circle:before {
  background-color: transparent;
}

@media (min-width: 768px) {
  .theme-link,
  .theme-more .more-link {
    width: auto;
  }

  .theme-link.link-hover-squared,
  .theme-more .link-hover-squared.more-link {
    margin-left: -11px;
  }
}

@-webkit-keyframes circle-pulse {
  0%,
  to {
    opacity: 0;
  }

  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  70% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
  }

  to {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

@keyframes circle-pulse {
  0%,
  to {
    opacity: 0;
  }

  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  70% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
  }

  to {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.theme-back {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.theme-back:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  margin-right: 12px;
  background: url(../images/icons/icon-arrow.svg) no-repeat 50%;
  background-size: 36px auto;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#world {
  cursor: pointer;
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
}

#world,
#world-globe {
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  will-change: transform;
}

#world-globe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  -webkit-transform: scale(1) translateX(0) translateY(0);
  transform: scale(1) translateX(0) translateY(0);
}

#world-globe-halo,
#world-globe-pole {
  display: block;
  position: absolute;
  width: 520px;
  height: 520px;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50% 50%;
  pointer-events: none;
}

#world-globe-pole {
  background-color: #fff;
}

#world-globe-halo {
  background-image: radial-gradient(
    ellipse at center,
    transparent 41%,
    transparent 42%,
    #000 100%
  );
  -webkit-box-shadow: 0 2px 15px 0 #6d9ad2,
    0 2px 60px 0 rgba(109, 153, 209, 0.6), 0 2px 50px 40px #fff,
    inset -10px 20px 30px 0 #6d99ce, 0 0 20px 20px #fff;
  box-shadow: 0 2px 15px 0 #6d9ad2, 0 2px 60px 0 rgba(109, 153, 209, 0.6),
    0 2px 50px 40px #fff, inset -10px 20px 30px 0 #6d99ce, 0 0 20px 20px #fff;
}

#world-globe-doms-container,
#world-globe-markers-container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
}

#world-globe-doms-container > div {
  position: absolute;
  background-image: url(../images/interactive/diffuse.jpg);
  overflow: hidden;
  will-change: transform;
}

#world-globe-markers-container > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  background: #fff url(../images/interactive/pinpoint.svg) no-repeat 50%;
  background-size: auto 0;
  border-radius: 50%;
  -webkit-filter: drop-shadow(0 0 10px #000);
  filter: drop-shadow(0 0 10px #000);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  will-change: transform;
}

#world-globe-markers-container > div:after,
#world-globe-markers-container > div:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  will-change: transform;
  -webkit-animation: pulse 2s ease-out infinite;
  animation: pulse 2s ease-out infinite;
}

#world-globe-markers-container > div:after {
  width: 25px;
  height: 25px;
  margin-top: -12.5px;
  margin-left: -12.5px;
}

#world-globe-markers-container > div:nth-child(0n):before {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#world-globe-markers-container > div:nth-child(0n):after {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#world-globe-markers-container > div:nth-child(1n):before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

#world-globe-markers-container > div:nth-child(1n):after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

#world-globe-markers-container > div:nth-child(2n):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#world-globe-markers-container > div:nth-child(2n):after {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#world-globe-markers-container > div:nth-child(3n):before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

#world-globe-markers-container > div:nth-child(3n):after {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

#world-globe-markers-container > div:nth-child(4n):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

#world-globe-markers-container > div:nth-child(4n):after {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

#world-globe-markers-container > div:nth-child(5n):before {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

#world-globe-markers-container > div:nth-child(5n):after {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

#world-globe-markers-container > div.is-selected {
  border-radius: 0;
  width: 34px;
  height: 34px;
  margin-left: -17px;
  margin-top: -30px;
  background-color: hsla(0, 0%, 100%, 0);
  background-size: auto 100%;
  -webkit-transition: all 0.2s ease-in 1s;
  transition: all 0.2s ease-in 1s;
  -webkit-transition-property: border-radius, width, height, margin-left,
    margin-top, background-size, background-color;
  transition-property: border-radius, width, height, margin-left, margin-top,
    background-size, background-color;
}

#world-globe-markers-container > div.is-selected:after,
#world-globe-markers-container > div.is-selected:before {
  opacity: 0;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.1;
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.3;
  }

  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }

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

@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  25% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.1;
  }

  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0.3;
  }

  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.5;
  }

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

.theme-select-and-go {
  display: inline-block;
}

.theme-select-and-go .dropdown .dropdown-toggle,
.theme-select-and-go select {
  border: 1px solid #00358d;
  font-size: 0.88rem;
  font-weight: 400;
  color: #495057;
}

.theme-select-and-go .dropdown {
  display: none;
}

.theme-select-and-go .dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0.657rem 30px 0.657rem 1rem;
  text-align: left;
  background: url(../images/icons/icon-arrow-down.svg) no-repeat;
  background-size: 10px auto;
  background-position: right 16px center;
}

.theme-select-and-go .dropdown .dropdown-toggle:after {
  display: none;
}

.theme-select-and-go .dropdown .dropdown-menu {
  width: 100%;
  border-color: #00358d;
}

.theme-select-and-go .dropdown .dropdown-header {
  font-family: Exo, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b8ab1;
  padding: 0.5rem 1rem 0;
}

.theme-select-and-go .dropdown .dropdown-item {
  font-size: 14px;
  line-height: 1.4;
  padding: 0.25rem 1rem;
}

.theme-select-and-go .dropdown .dropdown-item:hover {
  color: #00358d;
  background-color: #e8f0fb;
}

.custom-file .theme-select-and-go > .custom-file-label:after,
.theme-select-and-go .dropdown .theme-select-and-go > .dropdown-toggle,
.theme-select-and-go > .btn {
  margin-left: 8px;
}

@media (max-width: 991px) {
  .theme-select-and-go {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .theme-select-and-go .dropdown {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .theme-select-and-go .dropdown {
    display: inline-block;
  }

  .theme-select-and-go .dropdown .dropdown-toggle {
    min-width: 300px;
  }

  .theme-select-and-go select {
    display: none;
  }
}

.theme-arrow {
  position: relative;
  display: block;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #00358d;
}

.theme-arrow:after,
.theme-arrow span {
  content: '';
  display: block;
  width: 40px;
  height: 15px;
  background: url(../images/arrows-right-2x.jpg);
  background-size: contain;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.theme-arrow.js-align-vertical {
  position: absolute;
}

.theme-arrow.js-scroll-magic-cleanup:after {
  display: none;
}

.theme-arrow.js-scroll-magic-cleanup span {
  left: 10%;
}

.theme-square-grid {
  margin: 0 -25px;
}

@media (min-width: 576px) {
  .theme-square-grid {
    margin: 0 -45px;
  }
}

@media (min-width: 992px) {
  .theme-square-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0;
  }
}

.theme-square-grid .square-item {
  width: 50vw;
  height: 50vw;
}

@media (min-width: 992px) {
  .theme-square-grid .square-item {
    width: 200px;
    height: 200px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-square-grid .square-item {
    width: 33.333vh;
    height: 33.333vh;
    height: calc(var(--vh, 1vh) * 33.333);
  }
}

.theme-square-grid .square-item > * {
  border: 1px solid #fff;
}

.theme-square-grid .square-item .instagram,
.theme-square-grid .square-item .instagram-image,
.theme-square-grid .square-item .picture,
.theme-square-grid .square-item .video {
  display: block;
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.theme-square-grid .square-item .instagram .carousel-inner {
  height: 100%;
}

.theme-square-grid .square-item .instagram-banner,
.theme-square-grid .square-item .instagram-image {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.theme-square-grid .square-item .instagram-image {
  top: 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.theme-square-grid .square-item .instagram-banner {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.85);
  background-image: url(../images/icons/icon-instagram.svg);
  background-repeat: no-repeat;
  background-position: 1em;
  background-size: auto 55%;
  padding-left: calc(2.5em + 1vw);
  font-family: Exo, sans-serif;
  font-weight: 400;
  font-size: calc(0.5em + 1vw);
  line-height: 2.4;
  color: #fff;
}

@media (min-width: 576px) {
  .theme-square-grid .square-item .instagram-banner {
    font-size: calc(0.75em + 1vw);
  }
}

@media (min-width: 992px) {
  .theme-square-grid .square-item .instagram-banner {
    padding-left: calc(2.5em + 1vh);
    font-size: calc(0.55em + 1vh);
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-square-grid .square-item .instagram-banner {
    font-size: calc(0.75em + 1vh);
  }
}

.theme-square-grid .square-item .video:after {
  content: '';
  display: block;
  width: 95px;
  height: 95px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../images/icons/icon-play.svg) no-repeat 50%;
  background-size: contain;
  opacity: 0.8;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.theme-square-grid .square-item .video:hover:after {
  opacity: 1;
}

.theme-square-grid .square-item .square-title {
  position: relative;
  font-family: Exo, sans-serif;
  font-weight: 300;
  font-size: 8vw;
  padding: 0 24px;
  color: #00358d;
  line-height: 1.2em;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

@media (min-width: 992px) {
  .theme-square-grid .square-item .square-title {
    font-size: 33px;
    padding: 0 4vh;
    font-size: 5.4vh;
  }
}

.theme-square-grid .square-item .square-text {
  margin: auto;
  font-size: 3.8vw;
}

@media (min-width: 576px) {
  .theme-square-grid .square-item .square-text {
    font-size: 2.8vw;
  }
}

@media (min-width: 992px) {
  .theme-square-grid .square-item .square-text {
    font-size: 16px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-square-grid .square-item .square-text {
    font-size: 18px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-square-grid .square-item .square-text {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-square-grid .square-item .square-text {
    font-size: 22px;
  }
}

.theme-square-grid .square-item .square-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  height: 100%;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  padding: 0 16px;
}

.theme-square-grid .square-item .square-quote span {
  display: inline-block;
  width: 100%;
  font-family: Exo, sans-serif;
  font-size: 16px;
  color: #00358d;
}

.theme-square-grid .square-item .square-quote i {
  font-size: 12px;
  font-style: normal;
  color: #a5bcda;
}

@media (min-width: 600px) {
  .theme-square-grid .square-item .square-quote {
    line-height: 1.6;
    padding: 0 25px;
  }

  .theme-square-grid .square-item .square-quote span {
    font-size: 22px;
  }

  .theme-square-grid .square-item .square-quote i {
    font-size: 16px;
  }
}

.theme-square-grid .square-item .square-content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 50px 25px;
}

.theme-square-grid .square-item .square-content > :last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .theme-square-grid .square-item .square-content {
    padding: 50px 35px;
  }

  .theme-square-grid .square-item .square-content h3 {
    font-size: 46px;
    font-weight: 200;
  }
}

.theme-square-grid .square-item.square-blue {
  color: #fff;
  background-color: #00358d;
}

.theme-square-grid .square-item.square-blue h3 {
  color: currentColor;
}

@media (min-width: 992px) {
  .theme-square-grid.squares-large .square-item {
    width: 228px;
    height: 229px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-square-grid.squares-large .square-item {
    width: 38vh;
    height: 38vh;
  }
}

.theme-square-grid .grid-hor,
.theme-square-grid .grid-ver {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.theme-square-grid .grid-hor .flow-breaker {
  width: 100vw;
  min-height: 50vw;
  height: auto;
}

.theme-square-grid .grid-hor .flow-breaker.break-height {
  min-height: auto;
}

@media (min-width: 768px) {
  .theme-square-grid .grid-hor .flow-breaker {
    width: 50vw;
    height: 50vw;
    min-height: auto;
  }
}

.theme-square-grid .grid-hor .square-item.size-2 {
  width: 100vw;
}

@media (min-width: 992px) {
  .theme-square-grid .grid-hor .square-item.size-2 {
    width: 399.998px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-square-grid .grid-hor .square-item.size-2 {
    width: 66.666vh;
  }
}

.theme-square-grid .grid-hor .square-item.size-3 {
  width: 100vw;
}

@media (min-width: 992px) {
  .theme-square-grid .grid-hor .square-item.size-3 {
    width: 599.998px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-square-grid .grid-hor .square-item.size-3 {
    width: 99.999vh;
  }
}

@media (min-width: 992px) {
  .theme-square-grid .grid-ver {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page .theme-square-grid .square-item {
    width: 33.333vw;
    height: 33.333vw;
  }
}

@media (min-width: 1300px) {
  .theme-vertical-page .theme-square-grid .square-item {
    width: 25vw;
    height: 25vw;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page .theme-square-grid.squares-large .square-item {
    width: 38vw;
    height: 38vw;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page .theme-square-grid .grid-hor .square-item.size-2 {
    width: 66.666vw;
  }
}

@media (min-width: 1300px) {
  .theme-vertical-page .theme-square-grid .grid-hor .square-item.size-2 {
    width: 50vw;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page .theme-square-grid .grid-hor .square-item.size-3 {
    width: 99.999vw;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page.scroll-menu-pushed .theme-square-grid .square-item {
    width: 33.333%;
    height: calc(33.333vw - 24px);
  }
}

@media (min-width: 1300px) {
  .theme-vertical-page.scroll-menu-pushed .theme-square-grid .square-item {
    width: 25%;
    height: calc(25vw - 18px);
  }
}

.theme-vertical-page.scroll-menu-pushed .theme-square-grid .grid-ver {
  width: 100%;
}

@media (min-width: 992px) {
  .theme-vertical-page.scroll-menu-pushed
    .theme-square-grid
    .grid-hor
    .square-item.size-2 {
    width: 66.666%;
  }
}

@media (min-width: 1300px) {
  .theme-vertical-page.scroll-menu-pushed
    .theme-square-grid
    .grid-hor
    .square-item.size-2 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page.scroll-menu-pushed
    .theme-square-grid
    .grid-hor
    .square-item.size-3 {
    width: 100%;
  }
}

.theme-cta-section {
  padding: 0;
}

@media (min-width: 992px) {
  .theme-cta-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

.theme-cta-section h1,
.theme-cta-section h2,
.theme-cta-section h3,
.theme-cta-section h4,
.theme-cta-section h5,
.theme-cta-section h6 {
  max-width: 90%;
}

@media (min-width: 400px) {
  .theme-cta-section h1,
  .theme-cta-section h2,
  .theme-cta-section h3,
  .theme-cta-section h4,
  .theme-cta-section h5,
  .theme-cta-section h6 {
    max-width: 100%;
  }
}

.theme-cta-section h1,
.theme-cta-section h2,
.theme-cta-section h3,
.theme-cta-section h4,
.theme-cta-section h5,
.theme-cta-section h6,
.theme-cta-section ol,
.theme-cta-section p,
.theme-cta-section ul {
  margin-bottom: 18px;
}

.theme-cta-section ol,
.theme-cta-section p,
.theme-cta-section ul {
  font-family: Exo, sans-serif;
  font-weight: 500;
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-cta-section ol,
  .theme-cta-section p,
  .theme-cta-section ul {
    font-size: 20px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-cta-section ol,
  .theme-cta-section p,
  .theme-cta-section ul {
    font-size: 22px;
  }
}

.theme-cta-section .cta-content,
.theme-cta-section h1,
.theme-cta-section h2,
.theme-cta-section h3,
.theme-cta-section h4,
.theme-cta-section h5,
.theme-cta-section h6 {
  color: #fff;
}

.theme-cta-section .cta-content-wrapper {
  padding: 50px 25px;
  background: #00358d;
  border: 1px solid #fff;
}

@media (min-width: 768px) {
  .theme-cta-section .cta-content-wrapper {
    padding: 60px 45px;
  }
}

@media (min-width: 992px) {
  .theme-cta-section .cta-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 25px 80px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-cta-section .cta-content-wrapper {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-cta-section .cta-content-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-cta-section .cta-content-wrapper {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.theme-cta-section .cta-content {
  margin: auto;
}

.theme-cta-section .cta-picture {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 1px solid #fff;
  width: 100%;
  height: 250px;
}

@media (min-width: 992px) {
  .theme-cta-section .cta-picture {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 342px;
    height: 324px;
    margin-left: auto;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-cta-section .cta-picture {
    width: 57vh;
    height: 54vh;
    height: calc(var(--vh, 1vh) * 54);
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-cta-section .cta-picture {
    height: 55vh;
    height: calc(var(--vh, 1vh) * 55);
  }
}

@media (min-width: 992px) {
  .theme-cta-section.cta-square-grid .cta-content-wrapper {
    max-width: 399.6px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-cta-section.cta-square-grid .cta-content-wrapper {
    max-width: 66.6vh;
  }
}

@media (min-width: 992px) {
  .theme-cta-section.cta-square-grid .theme-square-grid {
    height: 199.8px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-cta-section.cta-square-grid .theme-square-grid {
    height: 33.3vh;
    height: calc(var(--vh, 1vh) * 33.3);
  }
}

.theme-scroll-container .theme-cta-section {
  padding: 0;
}

@media (min-width: 992px) {
  .theme-scroll-container .theme-cta-section {
    max-width: 880px;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page .theme-cta-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .theme-vertical-page .theme-cta-section > * {
    width: 50%;
    height: 50vw;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .theme-vertical-page .theme-cta-section .cta-picture {
    height: 0;
    padding-bottom: 50%;
  }

  .theme-vertical-page .theme-cta-section.cta-square-grid .theme-square-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 50vw;
  }

  .theme-vertical-page
    .theme-cta-section.cta-square-grid
    .theme-square-grid
    .grid-hor {
    width: 100%;
    height: 50%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .theme-vertical-page
    .theme-cta-section.cta-square-grid
    .theme-square-grid
    .grid-hor
    .square-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: auto;
  }
}

.theme-social-cta-section {
  padding: 0;
}

.theme-social-cta-section .theme-socials-list a {
  width: 40px;
  height: 40px;
}

@media (min-width: 992px) {
  .theme-social-cta-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

.theme-social-cta-section h1,
.theme-social-cta-section h2,
.theme-social-cta-section h3,
.theme-social-cta-section h4,
.theme-social-cta-section h5,
.theme-social-cta-section h6 {
  max-width: 90%;
}

@media (min-width: 400px) {
  .theme-social-cta-section h1,
  .theme-social-cta-section h2,
  .theme-social-cta-section h3,
  .theme-social-cta-section h4,
  .theme-social-cta-section h5,
  .theme-social-cta-section h6 {
    max-width: 100%;
  }
}

.theme-social-cta-section h1,
.theme-social-cta-section h2,
.theme-social-cta-section h3,
.theme-social-cta-section h4,
.theme-social-cta-section h5,
.theme-social-cta-section h6,
.theme-social-cta-section ol,
.theme-social-cta-section p,
.theme-social-cta-section ul {
  margin-bottom: 18px;
}

.theme-social-cta-section .cta-content,
.theme-social-cta-section h1,
.theme-social-cta-section h2,
.theme-social-cta-section h3,
.theme-social-cta-section h4,
.theme-social-cta-section h5,
.theme-social-cta-section h6 {
  color: #fff;
}

.theme-social-cta-section .cta-content-wrapper {
  padding: 50px 25px;
  background: #00358d;
  border: 1px solid #fff;
  min-height: 400px;
}

@media (min-width: 768px) {
  .theme-social-cta-section .cta-content-wrapper {
    padding: 60px 45px;
  }
}

@media (min-width: 992px) {
  .theme-social-cta-section .cta-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 25px 80px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-social-cta-section .cta-content-wrapper {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-social-cta-section .cta-content-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-social-cta-section .cta-content-wrapper {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.theme-social-cta-section .cta-content {
  margin: auto;
}

@media (min-width: 992px) {
  .theme-social-cta-section.cta-square-grid .cta-content-wrapper {
    max-width: 399.6px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-social-cta-section.cta-square-grid .cta-content-wrapper {
    max-width: 66.6vh;
  }
}

@media (min-width: 992px) {
  .theme-social-cta-section.cta-square-grid .theme-square-grid {
    height: 199.8px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .theme-social-cta-section.cta-square-grid .theme-square-grid {
    height: 33.3vh;
    height: calc(var(--vh, 1vh) * 33.3);
  }
}

.theme-body-content {
  margin: 0 0 50px;
}

@media (min-width: 992px) {
  .theme-body-content {
    margin: 0;
    width: 620px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-body-content {
    width: 650px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-body-content {
    width: 690px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-body-content {
    width: 730px;
  }
}

.theme-body-content h1,
.theme-body-content h2,
.theme-body-content h3,
.theme-body-content h4,
.theme-body-content h5,
.theme-body-content h6 {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .theme-body-content h1,
  .theme-body-content h2,
  .theme-body-content h3,
  .theme-body-content h4,
  .theme-body-content h5,
  .theme-body-content h6 {
    margin-bottom: 30px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-body-content h1,
  .theme-body-content h2,
  .theme-body-content h3,
  .theme-body-content h4,
  .theme-body-content h5,
  .theme-body-content h6 {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-body-content h1,
  .theme-body-content h2,
  .theme-body-content h3,
  .theme-body-content h4,
  .theme-body-content h5,
  .theme-body-content h6 {
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-body-content h1,
  .theme-body-content h2,
  .theme-body-content h3,
  .theme-body-content h4,
  .theme-body-content h5,
  .theme-body-content h6 {
    margin-bottom: 60px;
  }
}

.theme-body-content .theme-link,
.theme-body-content .theme-more .more-link,
.theme-more .theme-body-content .more-link {
  margin-top: 30px;
}

.theme-body-content .theme-select-and-go {
  margin-top: 50px;
}

@media (min-width: 992px) {
  .theme-body-content .theme-link,
  .theme-body-content .theme-more .more-link,
  .theme-body-content .theme-select-and-go,
  .theme-more .theme-body-content .more-link {
    margin-top: 10px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-body-content .theme-link,
  .theme-body-content .theme-more .more-link,
  .theme-body-content .theme-select-and-go,
  .theme-more .theme-body-content .more-link {
    margin-top: 20px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-body-content .theme-link,
  .theme-body-content .theme-more .more-link,
  .theme-body-content .theme-select-and-go,
  .theme-more .theme-body-content .more-link {
    margin-top: 40px;
  }
}

.theme-body-content.secondary-content {
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a4a;
}

.theme-title-sub {
  font-size: 14px;
  color: #00358d;
  font-family: Exo, sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.theme-table-list {
  width: 100%;
  border-collapse: collapse;
}

.theme-table-list tr {
  margin-top: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #e8f0fb;
}

.theme-table-list tr:first-child {
  margin-top: 0;
}

.theme-table-list tr.clickable {
  cursor: pointer;
}

.theme-table-list tr.clickable:hover td {
  background-color: #e8f0fb;
}

.theme-table-list td {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  background-color: #fff;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}

.theme-table-list td:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
  padding-top: 16px;
}

.theme-table-list td:last-child {
  padding-bottom: 16px;
}

.theme-table-list td a {
  color: #00358d;
}

@media (min-width: 576px) {
  .theme-table-list tr {
    margin-top: 0;
    display: table-row;
  }

  .theme-table-list td {
    padding: 16px 25px;
  }
}

.theme-more .more-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 0.8s ease-in;
  transition: max-height 0.8s ease-in;
}

.theme-more .more-wrapper > :last-child {
  margin-bottom: 0;
}

.theme-more .more-wrapper:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(hsla(0, 0%, 100%, 0)),
    color-stop(95%, #fff)
  );
  background: linear-gradient(hsla(0, 0%, 100%, 0), #fff 95%);
  pointer-events: none;
}

.theme-more .more-wrapper.disabled,
.theme-more .more-wrapper.show-more {
  max-height: 3000px !important;
}

.theme-more .more-wrapper.disabled:after,
.theme-more .more-wrapper.show-more:after {
  display: none;
}

.theme-more .more-link {
  font-size: 12px;
  font-weight: 500;
  margin: 15px 0 25px;
}

.theme-more .more-link:hover {
  text-decoration: underline;
}

.theme-more .more-link:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  width: 15px;
  height: 15px;
  background: url(../images/icons/icon-arrow-more.svg) no-repeat 50%;
  background-size: 15px auto;
}

.theme-more .more-link.disabled {
  display: none;
}

@media (min-width: 576px) {
  .theme-more .more-link {
    padding: 0 25px;
    margin: 25px 0 50px;
  }
}

.theme-background-pattern {
  background-image: url(../images/background-pattern-2x.jpg);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 72vh;
}

.theme-menu-bar {
  background: #00358d;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.theme-menu-bar,
.theme-menu-bar * {
  color: #fff;
}

.theme-menu-bar .menu-label {
  font-family: Exo, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid #fff;
  background: #00358d;
  display: inline-block;
  position: relative;
  z-index: 999;
  height: 61px;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.theme-menu-bar .menu-label .close {
  display: none;
  float: none;
  opacity: 1;
  text-shadow: none;
}

.theme-menu-bar .menu-label,
.theme-menu-bar .menu-label:active,
.theme-menu-bar .menu-label:focus,
.theme-menu-bar .menu-label:hover {
  text-decoration: none;
}

.theme-menu-bar .logo {
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}

.theme-menu-bar .logo.logo-desktop {
  display: none;
}

.theme-menu-bar .logo img {
  display: block;
  width: 110px;
  height: auto;
}

.theme-menu-bar .menu-card {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 60px;
  right: 0;
  background: #00358d;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  padding: 25px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 888;
}

.theme-menu-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-menu-bar ul li {
  font-family: Exo, sans-serif;
  font-weight: 500;
  margin: 7px 0;
  letter-spacing: 1.5px;
}

.theme-menu-bar ul a {
  font-size: 14px;
}

.theme-menu-bar ul a:hover {
  color: currentColor;
}

.theme-menu-bar ul a.active,
.theme-menu-bar ul a:active {
  color: #9defff;
}

.theme-menu-bar ul a i {
  font-size: 120%;
}

.theme-menu-bar ul.theme-socials-list {
  margin-bottom: 0;
}

.theme-menu-bar ul.list-lg a {
  font-size: 20px;
}

.theme-menu-bar ul.list-sm a {
  font-size: 15px;
}

.theme-menu-bar ul.list-xs li {
  margin: 0;
  line-height: 1.6;
}

.theme-menu-bar ul.list-xs a {
  font-size: 12px;
}

.theme-menu-bar hr,
.theme-menu-bar ul,
.theme-menu-bar ul ul {
  margin: 0 0 20px;
}

.theme-menu-bar hr:last-child,
.theme-menu-bar ul:last-child,
.theme-menu-bar ul ul:last-child {
  margin-bottom: 0;
}

.theme-menu-bar hr:last-child ul,
.theme-menu-bar ul:last-child ul,
.theme-menu-bar ul ul:last-child ul {
  margin-bottom: 20px;
}

.theme-menu-bar hr {
  border-color: currentColor;
  width: 40%;
}

.theme-menu-bar.menu-sub {
  background: #edf3fc;
  bottom: 60px;
  z-index: 998;
}

.theme-menu-bar.menu-sub,
.theme-menu-bar.menu-sub * {
  color: #00358d;
}

.theme-menu-bar.menu-sub > .menu-label {
  display: none;
}

.theme-menu-bar.menu-sub .menu-card,
.theme-menu-bar.menu-sub .menu-label {
  background: #edf3fc;
}

.theme-menu-bar.menu-sub .menu-label {
  border-top: 0;
}

.theme-menu-bar.menu-sub .menu-label span {
  pointer-events: none;
}

.theme-menu-bar.menu-sub .menu-label span:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 12px;
  background: url(../images/icons/icon-arrow-down.svg) no-repeat 50%;
  background-size: 10px auto;
}

.theme-menu-bar.menu-sub .menu-label span.text:after {
  margin-left: 12px;
}

.theme-menu-bar.menu-sub .menu-card {
  top: auto;
  padding-top: 0;
  max-height: calc(100vh - 60px);
  max-height: calc(var(--vh, 1vh) * 100 - 60px);
  -webkit-transform: translateY(calc(100% - 60px));
  transform: translateY(calc(100% - 60px));
}

.theme-menu-bar.menu-sub ul li {
  font-size: 11px;
  color: #6b8ab1;
  text-transform: uppercase;
}

.theme-menu-bar.menu-sub ul a {
  font-size: 14px;
  color: #00358d;
  text-transform: none;
}

.theme-menu-bar.menu-sub ul a:before {
  content: '\2014';
  display: inline-block;
  margin-right: 4px;
}

.theme-menu-bar.menu-sub ul a.active {
  font-size: 18px;
  font-weight: 700;
}

.theme-menu-bar.menu-open .menu-label .text {
  display: none;
}

.theme-menu-bar.menu-open .menu-label .close {
  display: inline-block;
}

.theme-menu-bar.menu-open .menu-card {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 992px) {
  .theme-menu-bar {
    width: 72px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 600px;
    bottom: auto;
    top: 0;
    padding: 25px 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
    overflow: hidden;
  }

  .theme-menu-bar .menu-label {
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    text-align: initial;
    border: 0;
    padding: 0;
    background: none;
    height: auto;
    width: auto;
  }

  .theme-menu-bar .logo {
    top: auto;
    left: auto;
    -webkit-transition: none;
    transition: none;
  }

  .theme-menu-bar .logo img {
    width: 130px;
  }

  .theme-menu-bar .logo.logo-desktop {
    display: inline-block;
  }

  .theme-menu-bar .logo.logo-mobile {
    display: none;
  }

  .theme-menu-bar .menu-card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: left 0.4s, opacity 0.4s;
    transition: left 0.4s, opacity 0.4s;
    opacity: 0;
    max-height: 750px;
    min-width: 350px;
    top: auto;
    right: auto;
    bottom: auto;
    left: 200px;
    background: none;
    padding: 0;
    margin: auto 0;
    overflow: initial;
  }

  .theme-menu-bar hr,
  .theme-menu-bar ul {
    margin: 0 0 0 50px;
  }

  .theme-menu-bar ul li {
    margin: 3px 0;
  }

  .theme-menu-bar hr {
    width: 30%;
  }

  .theme-menu-bar hr:last-of-type {
    display: none;
  }

  .theme-menu-bar.menu-sub {
    padding: 25px;
    left: 72px;
  }

  .theme-menu-bar.menu-sub .menu-label span.text:after {
    position: relative;
    top: 10px;
    margin-left: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .theme-menu-bar.menu-sub > .menu-label {
    display: block;
  }

  .theme-menu-bar.menu-sub .menu-card {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  .theme-menu-bar.menu-sub .menu-card .menu-label {
    display: none;
  }

  .theme-menu-bar.menu-sub ul li {
    font-size: 13px;
  }

  .theme-menu-bar.menu-sub ul ul {
    margin-left: 0;
  }

  .theme-menu-bar.menu-align-top .menu-card {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    max-height: none;
    padding-top: 3px;
  }

  .theme-menu-bar.menu-align-top .menu-card ul li:first-child {
    margin-top: 0;
  }

  .theme-menu-bar.menu-open,
  .theme-menu-bar.menu-open.menu-sub {
    width: 400px;
  }

  .theme-menu-bar.menu-open .menu-label .text {
    display: inline-block;
  }

  .theme-menu-bar.menu-open .menu-label .close {
    display: none;
  }

  .theme-menu-bar.menu-open .menu-card {
    left: 0;
    opacity: 1;
    top: auto;
    bottom: auto;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-menu-bar {
    padding: 40px 22px;
  }

  .theme-menu-bar .logo {
    margin-bottom: 40px;
  }

  .theme-menu-bar .logo img {
    width: 140px;
  }

  .theme-menu-bar ul li {
    margin: 7px 0;
  }

  .theme-menu-bar ul.list-lg a {
    font-size: 22px;
  }

  .theme-menu-bar ul ul {
    margin-top: 10px;
    margin-bottom: 35px;
  }

  .theme-menu-bar hr,
  .theme-menu-bar hr:last-of-type {
    display: block;
  }

  .theme-menu-bar hr:first-of-type {
    margin-top: 25px;
  }

  .theme-menu-bar hr:last-of-type {
    margin-bottom: 45px;
  }

  .theme-menu-bar.menu-sub {
    padding: 25px;
  }

  .theme-menu-bar.menu-align-top .menu-card {
    padding-top: 19px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-menu-bar .logo {
    margin-bottom: 60px;
  }

  .theme-menu-bar .logo img {
    width: 145px;
  }

  .theme-menu-bar ul li {
    margin: 10px 0;
  }

  .theme-menu-bar ul.list-lg a {
    font-size: 24px;
  }

  .theme-menu-bar ul.list-sm a {
    font-size: 18px;
  }

  .theme-menu-bar ul ul {
    margin-top: 15px;
    margin-bottom: 60px !important;
  }

  .theme-menu-bar ul li:last-child ul {
    margin-bottom: 0 !important;
  }

  .theme-menu-bar.menu-align-top .menu-card {
    padding-top: 21px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-menu-bar .logo {
    margin-bottom: 60px;
  }

  .theme-menu-bar .logo img {
    width: 145px;
  }

  .theme-menu-bar ul li {
    margin: 13px 0;
  }
}

@media (min-width: 1500px) {
  .theme-menu-bar.menu-sub {
    width: 328px !important;
  }

  .theme-menu-bar.menu-sub .menu-label {
    display: none !important;
  }

  .theme-menu-bar.menu-sub .menu-card {
    left: 0;
    opacity: 1;
  }

  .theme-menu-bar.menu-sub ul {
    margin-left: 10px;
  }
}

.theme-socials-list {
  padding: 0;
  list-style: outside none;
}

.theme-socials-list li {
  display: inline-block;
  margin: 0 8px 0 0 !important;
}

.theme-socials-list a {
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-indent: -10000em;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.theme-socials-list a:hover {
  opacity: 0.65;
}

.theme-socials-list .linkedin {
  background-image: url(../images/icons/icon-linkedin.svg);
}

.theme-socials-list .twitter {
  background-image: url(../images/icons/icon-twitter.svg);
}

.theme-socials-list .instagram {
  background-image: url(../images/icons/icon-instagram.svg);
}

.theme-socials-list .facebook {
  background-image: url(../images/icons/icon-facebook.svg);
}

.theme-vertical-page {
  padding: 25px 0;
}

.theme-vertical-page.scroll-menu-pushed {
  margin-bottom: 61px !important;
}

.theme-vertical-page.scroll-submenu-pushed {
  margin-bottom: 120px !important;
}

@media (min-width: 576px) {
  .theme-vertical-page {
    padding: 45px 20px;
  }
}

@media (min-width: 992px) {
  .theme-vertical-page {
    padding: 60px 35px;
  }

  .theme-vertical-page.scroll-menu-pushed {
    margin-bottom: 0 !important;
    padding-left: 107px;
  }

  .theme-vertical-page.scroll-submenu-pushed {
    margin-bottom: 0 !important;
    padding-left: 179px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-vertical-page {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-vertical-page {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-vertical-page {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.theme-wysiwyg h1,
.theme-wysiwyg h2 {
  margin-bottom: 8px;
  margin-top: 24px;
}

.theme-wysiwyg h2 {
  font-size: 32px;
}

.theme-wysiwyg h3 {
  font-size: 24px;
}

.theme-wysiwyg h3,
.theme-wysiwyg h4 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.theme-wysiwyg img {
  max-width: 100%;
}

.theme-wysiwyg.content-sm h1,
.theme-wysiwyg .content-sm h1,
.theme-wysiwyg.content-sm h2,
.theme-wysiwyg .content-sm h2,
.theme-wysiwyg.content-sm h3,
.theme-wysiwyg .content-sm h3,
.theme-wysiwyg.content-sm h4,
.theme-wysiwyg .content-sm h4,
.theme-wysiwyg.content-sm h5,
.theme-wysiwyg .content-sm h5,
.theme-wysiwyg.content-sm h6,
.theme-wysiwyg .content-sm h6 {
  margin: 40px 0 20px;
}

.theme-wysiwyg.content-sm ol,
.theme-wysiwyg .content-sm ol,
.theme-wysiwyg.content-sm p,
.theme-wysiwyg .content-sm p,
.theme-wysiwyg.content-sm table,
.theme-wysiwyg .content-sm table,
.theme-wysiwyg.content-sm ul,
.theme-wysiwyg .content-sm ul {
  font-size: 14px;
  color: #4a4a4a;
}

.theme-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 53, 141, 0.5);
  padding: 25px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.theme-modal.scroll-menu-pushed {
  bottom: 60px;
}

.theme-modal.scroll-submenu-pushed {
  bottom: 120px;
}

.theme-modal .modal-inner {
  position: relative;
  margin: 0 auto;
  padding: 40px 30px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transform: scaleX(1) scaleY(0);
  transform: scaleX(1) scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition: opacity 0.4s linear, -webkit-transform 0.2s ease-out;
  transition: opacity 0.4s linear, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.4s linear;
  transition: transform 0.2s ease-out, opacity 0.4s linear,
    -webkit-transform 0.2s ease-out;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.theme-modal .modal-close {
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -10000em;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(../images/icons/icon-close.svg) no-repeat 50%;
  background-size: contain;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  cursor: pointer;
}

.theme-modal .modal-close:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.theme-modal.modal-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.theme-modal.modal-active .modal-inner {
  opacity: 1;
  -webkit-transform: scaleX(1) scaleY(1);
  transform: scaleX(1) scaleY(1);
  -webkit-transition: opacity 0.1s linear, -webkit-transform 0.2s ease-in;
  transition: opacity 0.1s linear, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, opacity 0.1s linear;
  transition: transform 0.2s ease-in, opacity 0.1s linear,
    -webkit-transform 0.2s ease-in;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.no-csspointerevents .theme-modal {
  display: none;
}

.no-csspointerevents .theme-modal.modal-active {
  display: block;
}

.theme-contact-info {
  list-style: none outside;
  color: #01042b;
  padding: 0;
}

.theme-contact-info li {
  margin-bottom: 8px;
}

.theme-contact-info li:last-of-type {
  margin-bottom: 0;
}

.theme-contact-info a {
  color: currentColor;
  text-decoration: underline;
}

.theme-contact-info a:hover {
  text-decoration: none;
}

.theme-contact-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.theme-contact-card > * {
  margin-bottom: 0;
}

.theme-contact-card img {
  max-width: 80px;
  margin-right: 16px;
  border-radius: 50%;
}

.theme-contact-card strong {
  display: block;
}

.theme-content-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.theme-content-cards > * {
  margin-bottom: 2rem;
}

.theme-content-cards > :last-child {
  margin-bottom: 0;
}

@media (min-width: 555px) {
  .theme-content-cards {
    position: relative;
    margin-left: -25px;
  }

  .theme-content-cards > * {
    margin-left: 25px;
    width: calc(50% - 25px);
  }
}

@media (min-width: 768px) {
  .theme-content-cards {
    margin-left: -45px;
  }

  .theme-content-cards > * {
    margin-left: 45px;
    width: calc(50% - 45px);
  }
}

@media (min-width: 992px) {
  .theme-content-cards {
    -ms-flex-flow: nowrap;
    flex-flow: nowrap;
    margin-left: 0;
  }

  .theme-content-cards > * {
    margin-left: 0;
    margin-right: 135px;
  }

  .theme-content-cards > :nth-child(2n) {
    margin-top: 13vh;
  }

  .theme-content-cards > :nth-child(3n) {
    margin-top: 5vh;
  }

  .theme-content-cards > :nth-child(4n) {
    margin-top: 9vh;
  }
}

ul.theme-content-cards {
  padding-left: 0;
  list-style: none outside;
}

.theme-content-card > * {
  margin-bottom: 1rem;
}

.theme-content-card > :last-child {
  margin-bottom: 0;
}

.theme-content-card .content-card-media {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.5s ease-out;
  transition: -webkit-filter 0.5s ease-out;
  transition: filter 0.5s ease-out;
  transition: filter 0.5s ease-out, -webkit-filter 0.5s ease-out;
}

.theme-content-card .content-card-media > * {
  max-width: 240px;
  height: auto;
  border-bottom: 1px solid transparent;
}

.theme-content-card .content-card-subtitle {
  color: #6b8ab1;
  font-family: Exo, sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.theme-content-card .content-card-content {
  font-size: 14px;
}

.theme-content-card:hover .content-card-media {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

@media (min-width: 992px) {
  .theme-content-card {
    width: 240px;
  }
}

.theme-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: #00358d;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  z-index: 9999;
}

.theme-cookie-consent p a {
  color: currentColor;
  text-decoration: underline;
}

.theme-cookie-consent p a:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .theme-cookie-consent {
    top: auto;
    left: auto;
    right: 45px;
    bottom: 45px !important;
    padding: 45px;
    max-width: 600px;
  }

  .theme-cookie-consent p {
    margin-bottom: 2rem;
  }

  .custom-file .theme-cookie-consent .custom-file-label:after,
  .theme-cookie-consent .btn-group-sm > .btn,
  .theme-cookie-consent .btn-sm,
  .theme-cookie-consent .custom-file .custom-file-label:after,
  .theme-cookie-consent
    .theme-select-and-go
    .dropdown
    .btn-group-sm
    > .dropdown-toggle,
  .theme-select-and-go
    .dropdown
    .theme-cookie-consent
    .btn-group-sm
    > .dropdown-toggle {
    padding: 0.563rem 2rem;
    margin-right: 1rem;
    font-size: 1rem;
    line-height: 1.8;
  }
}

.scroll-menu-pushed + .theme-cookie-consent {
  bottom: 61px;
}

.scroll-submenu-pushed + .theme-cookie-consent {
  bottom: 121px;
}

.theme-timeline {
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.theme-timeline .timeline-indicator {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 114px;
  left: 25px;
  width: 75px;
  height: 35px;
  margin-top: -8px;
  background: url(../images/interactive/wave-boat.svg) no-repeat 50%;
  background-size: contain;
  -webkit-transform-origin: 50% 90%;
  transform-origin: 50% 90%;
  will-change: transform;
  z-index: 2;
}

.theme-timeline .timeline-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 228px;
  padding-bottom: 45px;
  background-image: url(../images/interactive/wave-solid.svg),
    url(../images/interactive/wave-dotted.svg);
  background-position: -225px 57px;
  background-size: 3078px 114px, 1000px 114px;
  background-repeat: repeat-x;
}

.theme-timeline .timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  margin-top: -4.5px;
  will-change: transform;
}

.theme-timeline .timeline-marker span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00358d;
  border-radius: 50%;
  z-index: 1;
}

.theme-timeline .timeline-marker:after,
.theme-timeline .timeline-marker:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin-top: -13.5px;
  margin-left: -13.5px;
  width: 27px;
  height: 27px;
  background-color: #fff;
  border: 1px solid #00358d;
  border-radius: 50%;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  will-change: transform;
  -webkit-animation: pulse 2s ease-out infinite;
  animation: pulse 2s ease-out infinite;
  z-index: 0;
}

.theme-timeline .timeline-marker:after {
  width: 45px;
  height: 45px;
  margin-top: -22.5px;
  margin-left: -22.5px;
  z-index: -1;
}

.theme-timeline .timeline-item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 198.333px;
  /* width: 250.333px; */
  padding: 8px 20px;
  margin-left: 45px;
  margin-right: 90px;
}

.theme-timeline .timeline-item:before {
  content: '';
  display: block;
  position: absolute;
  left: -1.5px;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: #00358d;
}

.theme-timeline .timeline-item.item-1:before {
  height: calc(100% + 135px);
}

.theme-timeline .timeline-item.item-1 .timeline-marker {
  top: -135px;
}

.theme-timeline .timeline-item.item-1 .timeline-marker:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.theme-timeline .timeline-item.item-1 .timeline-marker:after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.theme-timeline .timeline-item.item-2:before {
  height: calc(100% + 155px);
}

.theme-timeline .timeline-item.item-2 .timeline-marker {
  top: -155px;
}

.theme-timeline .timeline-item.item-2 .timeline-marker:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.theme-timeline .timeline-item.item-2 .timeline-marker:after {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.theme-timeline .timeline-item.item-3:before {
  height: calc(100% + 61px);
}

.theme-timeline .timeline-item.item-3 .timeline-marker {
  top: -61px;
}

.theme-timeline .timeline-item.item-3 .timeline-marker:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.theme-timeline .timeline-item.item-3 .timeline-marker:after {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.theme-timeline .timeline-month,
.theme-timeline .timeline-year {
  text-transform: uppercase;
}

.theme-timeline .timeline-month {
  font-size: 11px;
  font-weight: 500;
  line-height: 2;
  color: #6b8ab1;
  margin-bottom: 0;
}

.theme-timeline .timeline-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 210px;
}
.timeline-caption {
  width: 210px;
}

.theme-timeline .timeline-year h4 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 0;
}

.theme-timeline .timeline-year img {
  position: relative;
  top: -2px;
  height: 20px;
  width: auto;
  margin-left: 12px;
}

.theme-timeline .timeline-caption {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .theme-timeline {
    margin-left: -45px;
    margin-right: -45px;
  }

  .theme-timeline .timeline-indicator {
    left: 45px;
  }

  .theme-timeline .timeline-wrapper {
    padding-left: 20px;
    background-position: -230px 57px;
  }
}

@media (min-width: 992px) {
  .theme-timeline {
    margin-left: -60px;
    margin-right: -60px;
    overflow: hidden;
  }

  .theme-timeline .timeline-indicator {
    position: fixed;
    top: 50%;
    left: 182px;
    margin-top: 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-timeline {
    margin-left: -70px;
    margin-right: -70px;
  }

  .theme-timeline .timeline-indicator {
    left: 192px;
  }

  .theme-timeline .timeline-wrapper {
    padding-left: 30px;
    background-position: -220px 57px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .theme-timeline {
    margin-left: -80px;
    margin-right: -80px;
  }

  .theme-timeline .timeline-indicator {
    left: 202px;
  }

  .theme-timeline .timeline-wrapper {
    padding: 0 0 0 40px;
    background-position: -210px;
  }

  .theme-timeline .timeline-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 228px;
  }

  .theme-timeline .timeline-item:nth-child(odd) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 228px;
  }

  .theme-timeline .timeline-item:nth-child(2n) {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 228px;
  }

  .theme-timeline .timeline-item:nth-child(2n):before {
    top: 0;
    bottom: auto;
  }

  .theme-timeline .timeline-item:nth-child(2n) .timeline-marker {
    top: auto;
    bottom: 0;
  }

  .theme-timeline .timeline-item.item-1.item-odd:before {
    height: calc(100% + -16px);
  }

  .theme-timeline .timeline-item.item-1.item-odd .timeline-marker {
    top: auto;
    bottom: 16px;
  }

  .theme-timeline .timeline-item.item-1.item-even:before {
    height: calc(100% + 20px);
  }

  .theme-timeline .timeline-item.item-1.item-even .timeline-marker {
    top: -20px;
    bottom: auto;
  }

  .theme-timeline .timeline-item.item-2.item-odd:before {
    height: calc(100% + -36px);
  }

  .theme-timeline .timeline-item.item-2.item-odd .timeline-marker {
    top: auto;
    bottom: 36px;
  }

  .theme-timeline .timeline-item.item-2.item-even:before {
    height: calc(100% + 41px);
  }

  .theme-timeline .timeline-item.item-2.item-even .timeline-marker {
    top: -41px;
    bottom: auto;
  }

  .theme-timeline .timeline-item.item-3.item-odd:before {
    height: calc(100% + 58px);
  }

  .theme-timeline .timeline-item.item-3.item-odd .timeline-marker {
    top: auto;
    bottom: -58px;
  }

  .theme-timeline .timeline-item.item-3.item-even:before {
    height: calc(100% + -54px);
  }

  .theme-timeline .timeline-item.item-3.item-even .timeline-marker {
    top: 54px;
    bottom: auto;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .theme-timeline {
    margin-left: -90px;
    margin-right: -90px;
  }

  .theme-timeline .timeline-indicator {
    left: 212px;
  }

  .theme-timeline .timeline-wrapper {
    padding-left: 50px;
    background-position: -200px;
  }
}

@media (min-width: 1500px) {
  .theme-timeline .timeline-indicator {
    left: 438px;
  }
}

@media (min-width: 1500px) and (min-height: 775px) {
  .theme-timeline .timeline-indicator {
    left: 448px;
  }
}

@media (min-width: 1500px) and (min-height: 900px) {
  .theme-timeline .timeline-indicator {
    left: 458px;
  }
}

@media (min-width: 1500px) and (min-height: 1050px) {
  .theme-timeline .timeline-indicator {
    left: 468px;
  }
}

.theme-bubbles {
  margin: 0;
  padding: 0;
  list-style: none outside;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.theme-bubble {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: center;
}

.theme-bubble .bubble-wrap {
  height: 0;
  padding: 50% 40px;
  background-color: #fff;
  border: 1px solid #cadaed;
  border-radius: 50%;
}

.theme-bubble .bubble-content {
  position: relative;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.theme-bubble .bubble-content > * {
  font-family: Exo, sans-serif;
  line-height: 1.2;
  margin-bottom: 0;
}

.theme-bubble .bubble-content svg {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.theme-bubble .bubble-content h5 {
  font-size: 11px;
}

.theme-bubble .bubble-content p {
  font-size: 26px;
  font-weight: 200;
  color: #00358d;
  white-space: nowrap;
}

.theme-bubble .bubble-content p strong {
  font-weight: 600;
}

.theme-bubble.bubble-solid .bubble-wrap {
  background-color: #e8f0fb;
  border-color: #e8f0fb;
}

.theme-bubble.bubble-solid .bubble-content svg {
  height: 20px;
  margin-bottom: 8px;
}

.theme-bubble.bubble-solid .bubble-content h5 {
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  color: #00358d;
}

.theme-bubble.bubble-reversed .bubble-content svg {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.theme-bubble.bubble-reversed .bubble-content h5 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.theme-bubble.bubble-reversed .bubble-content p {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.theme-bubble[class*='bubble-size-'] .bubble-wrap {
  padding: 50% 16px;
}

.theme-bubble.bubble-size-1 .bubble-content {
  min-width: 55px;
}

.theme-bubble.bubble-size-2 .bubble-content {
  min-width: 90px;
}

.theme-bubble.bubble-size-3 .bubble-content {
  min-width: 125px;
}

.theme-bubble.bubble-small .bubble-content h5 {
  font-size: 14px;
}

.theme-bubble[data-scroll] {
  -webkit-transition: opacity 0.2s linear,
    -webkit-transform 0.3s cubic-bezier(0, 0.67, 0.44, 1.41);
  transition: opacity 0.2s linear,
    -webkit-transform 0.3s cubic-bezier(0, 0.67, 0.44, 1.41);
  transition: opacity 0.2s linear,
    transform 0.3s cubic-bezier(0, 0.67, 0.44, 1.41);
  transition: opacity 0.2s linear,
    transform 0.3s cubic-bezier(0, 0.67, 0.44, 1.41),
    -webkit-transform 0.3s cubic-bezier(0, 0.67, 0.44, 1.41);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.theme-bubble.invisible {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.theme-bubble.visible {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media (min-width: 992px) {
  .theme-bubble .bubble-content svg {
    width: auto;
    height: auto;
    margin-bottom: 16px;
  }

  .theme-bubble .bubble-content p {
    font-size: 40px;
  }

  .theme-bubble.bubble-solid .bubble-content svg {
    margin-bottom: 8px;
  }

  .theme-bubble.bubble-solid .bubble-content h5 {
    font-size: 22px;
  }

  .theme-bubble.bubble-small .bubble-content h5 {
    font-size: 18px;
  }

  .theme-bubble[class*='bubble-size-'] .bubble-wrap {
    padding: 50% 20px;
  }

  .theme-bubble.bubble-size-1 .bubble-content {
    min-width: 78px;
  }

  .theme-bubble.bubble-size-2 .bubble-content {
    min-width: 128px;
  }

  .theme-bubble.bubble-size-3 .bubble-content {
    min-width: 168px;
  }
}

.theme-rectangles {
  margin: 0;
  padding: 0;
  list-style: none outside;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.theme-rectangles .theme-rectangle {
  margin-bottom: 25px;
}

.theme-rectangles .theme-rectangle:last-child {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .theme-rectangles .theme-rectangle,
  .theme-rectangles .theme-rectangle:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: calc(50% - 12.5px);
  }
}

@media (min-width: 992px) {
  .theme-rectangles {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: -18px;
  }

  .theme-rectangles .theme-rectangle,
  .theme-rectangles .theme-rectangle:last-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: auto;
    max-width: 460px;
    margin: 18px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .theme-rectangles .theme-rectangle,
  .theme-rectangles .theme-rectangle:last-child {
    max-width: 400px;
  }
}

.theme-rectangle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px;
  background-color: #fff;
  border: 1px solid #cadaed;
  width: 100%;
  overflow: hidden;
}

.theme-rectangle > * {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: Exo, sans-serif;
  line-height: 1.15;
  margin-bottom: 0;
}

.theme-rectangle svg {
  margin-bottom: 12px;
}

.theme-rectangle h5 {
  font-size: 11px;
  line-height: 1.6;
}

.theme-rectangle h5 span,
.theme-rectangle h5 strong {
  color: #00358d;
}

.theme-rectangle h5 strong {
  position: relative;
  top: 3px;
  line-height: 1;
  font-size: 26px;
  font-weight: 600;
}

.theme-rectangle p {
  font-size: 26px;
  font-weight: 200;
  color: #00358d;
}

.theme-rectangle p strong {
  font-weight: 600;
}

.theme-rectangle p svg {
  margin-bottom: 0;
}

.theme-rectangle p + p {
  margin-top: 8px;
}

.theme-rectangle.rectangle-solid {
  background-color: #e8f0fb;
  border-color: #e8f0fb;
}

.theme-rectangle.rectangle-solid svg {
  margin-bottom: 8px;
}

.theme-rectangle.rectangle-reversed svg {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.theme-rectangle.rectangle-reversed h5 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.theme-rectangle.rectangle-reversed p {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.theme-rectangle[data-scroll] {
  -webkit-transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out;
  transition: opacity 0.3s linear, transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.theme-rectangle[data-scroll].rectangle-solid {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.theme-rectangle.invisible {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.theme-rectangle.visible {
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (min-width: 992px) {
  .theme-rectangle {
    padding: 35px;
  }

  .theme-rectangle svg {
    margin-bottom: 16px;
  }

  .theme-rectangle h5 strong {
    font-size: 32px;
  }

  .theme-rectangle p {
    font-size: 40px;
  }

  .theme-rectangle.rectangle-solid svg {
    margin-bottom: 8px;
  }
}

.blog-thumbnail {
  position: relative;
}

.blog-thumbnail .category {
  position: absolute;
  left: 8px;
  top: 8px;
  background: #fff;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}

.blog-thumbnail .category:hover {
  text-decoration: none;
  background-color: #f3f3f3;
}

.page-404 .scroll-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-404 .scroll-section h3 {
  margin-bottom: 80px;
}

.custom-file .page-404 .scroll-section .custom-file-label:after,
.page-404 .scroll-section .btn,
.page-404 .scroll-section .custom-file .custom-file-label:after,
.page-404 .scroll-section .theme-select-and-go .dropdown .dropdown-toggle,
.theme-select-and-go .dropdown .page-404 .scroll-section .dropdown-toggle {
  display: inline-block;
}

.page-home .section-hero {
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .page-home .section-hero {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .page-home .section-company .section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .page-home .section-company .theme-body-content {
    width: 670px;
    padding-left: 95px;
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-company .theme-body-content {
    width: 710px;
    padding-left: 105px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-company .theme-body-content {
    width: 760px;
    padding-left: 115px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-home .section-company .theme-body-content {
    width: 790px;
    padding-left: 120px;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise {
    padding: 0 0 0 30px;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

.page-home .section-expertise .left {
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  .page-home .section-expertise .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    margin-bottom: 0;
    margin-left: 50px;
    padding-bottom: 60px;
    margin-right: 144px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .left {
    margin-left: 8.3vh;
    margin-right: 24vh;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-expertise .left {
    padding-bottom: 70px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-expertise .left {
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-home .section-expertise .left {
    padding-bottom: 90px;
  }
}

.page-home .section-expertise .middle {
  position: relative;
}

@media (min-width: 992px) {
  .page-home .section-expertise .middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .middle h2 {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    position: absolute;
    top: 140px;
    left: -150px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .middle h2 {
    top: 24vh;
    left: -25vh;
  }
}

.page-home .section-expertise .middle .theme-body-content {
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  .page-home .section-expertise .middle .theme-body-content {
    margin: auto 110px auto 0;
  }
}

.page-home .section-expertise .middle .theme-arrow {
  display: none;
}

@media (min-width: 992px) {
  .page-home .section-expertise .middle .theme-arrow {
    display: block;
    position: absolute;
    top: 48.4vh;
    left: 450px;
    right: -50px;
    width: auto;
  }
}

.page-home .section-expertise .sugar-scene {
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  height: 220px;
}

@media (min-width: 768px) {
  .page-home .section-expertise .sugar-scene {
    margin-left: -45px;
    margin-right: -45px;
    height: 330px;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .sugar-scene {
    margin-left: 0;
    margin-right: 0;
    margin-top: auto;
    width: 840px;
    height: 270px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .sugar-scene {
    width: 140vh;
    height: 45vh;
  }
}

.page-home .section-expertise .sugar-scene .machine {
  display: block;
  width: 271px;
  background: url(../images/interactive/sugar-machine-2x.png) no-repeat 50%;
  background-size: contain;
  position: absolute;
  z-index: 1;
  bottom: 32.5%;
  left: 0;
  will-change: transform;
}

.page-home .section-expertise .sugar-scene .machine div {
  position: absolute;
  bottom: 0;
  width: 13.9%;
  height: 41.1%;
  background: url(../images/interactive/sugar-machine-wheel-2x.png) no-repeat
    50%;
  background-size: contain;
  will-change: transform;
}

.page-home .section-expertise .sugar-scene .machine div.wheel-1 {
  left: 51.2%;
}

.page-home .section-expertise .sugar-scene .machine div.wheel-2 {
  left: 34.7%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.page-home .section-expertise .sugar-scene .machine div.wheel-3 {
  left: 10.7%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.page-home .section-expertise .sugar-scene .machine:after {
  content: '';
  display: block;
  padding-bottom: 35%;
}

@media (min-width: 768px) {
  .page-home .section-expertise .sugar-scene .machine {
    width: 406px;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .sugar-scene .machine {
    width: 45vh;
    left: 15vh;
  }
}

.page-home .section-expertise .sugar-scene .theme-arrow {
  position: absolute;
  top: 67%;
  right: 50%;
  left: auto;
  width: 50%;
}

.page-home .section-expertise .sugar-scene .theme-arrow span {
  display: none;
}

@media (min-width: 992px) {
  .page-home .section-expertise .sugar-scene .theme-arrow {
    left: -10%;
    width: auto;
  }

  .page-home .section-expertise .sugar-scene .theme-arrow span {
    display: block;
  }
}

.page-home .section-expertise .sugar-scene .landscape {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}

.page-home .section-expertise .sugar-scene .landscape .spacer {
  width: 50%;
}

@media (min-width: 992px) {
  .page-home .section-expertise .sugar-scene .landscape .spacer {
    width: 40%;
  }
}

.page-home .section-expertise .sugar-scene .landscape .asset {
  width: 50%;
  background: url(../images/interactive/sugar-landscape-2x.jpg);
  background-size: auto 100%;
  background-position: 50%;
}

.page-home .section-expertise .crane-scene {
  position: relative;
  margin-left: -25px;
  margin-right: -25px;
  height: 470px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-home .section-expertise .crane-scene {
    margin-left: -45px;
    margin-right: -45px;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .crane-scene {
    margin-left: 0;
    margin-right: 0;
    width: 360px;
    height: 100%;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .crane-scene {
    width: 60vh;
  }
}

.page-home .section-expertise .crane-scene:before {
  content: '';
  display: block;
  width: 100%;
  height: 77%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#edf3fc),
    to(#f7f7f7)
  );
  background: linear-gradient(180deg, #edf3fc 0, #f7f7f7);
  background-size: auto 100%;
}

@media (min-width: 992px) {
  .page-home .section-expertise .crane-scene:before {
    height: 65%;
  }
}

.page-home .section-expertise .crane-scene .crane {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 176px;
  height: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 3;
}

@media (min-width: 992px) {
  .page-home .section-expertise .crane-scene .crane {
    width: 50%;
    bottom: auto;
    top: -50px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .crane-scene .crane {
    top: -5vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .pictures-wrapper {
    overflow: hidden;
    padding-left: 60px;
    margin: 0 0 0 auto;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .pictures-wrapper {
    padding-left: 10vh;
  }
}

.page-home .section-expertise .picture-grid {
  margin: 0 -25px;
}

@media (min-width: 768px) {
  .page-home .section-expertise .picture-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -45px;
  }
}

@media (min-width: 992px) {
  .page-home .section-expertise .picture-grid {
    margin: 0;
  }
}

.page-home .section-expertise .picture-grid .picture-group .picture,
.page-home .section-expertise .picture-grid .picture-single {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
}

@media (min-width: 992px) {
  .page-home .section-expertise .picture-grid .picture-group .picture,
  .page-home .section-expertise .picture-grid .picture-single {
    border: 2px solid #fff;
  }
}

.page-home .section-expertise .picture-grid .picture-group,
.page-home .section-expertise .picture-grid .picture-single {
  width: 100%;
  height: 280px;
}

@media (min-width: 992px) {
  .page-home .section-expertise .picture-grid .picture-group,
  .page-home .section-expertise .picture-grid .picture-single {
    width: 282px;
    height: 210px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-expertise .picture-grid .picture-group,
  .page-home .section-expertise .picture-grid .picture-single {
    width: 47vh;
    height: 35vh;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-expertise .picture-grid .picture-group,
  .page-home .section-expertise .picture-grid .picture-single {
    width: 45vh;
  }
}

.page-home .section-expertise .picture-grid .picture-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-home .section-expertise .picture-grid .picture-group .picture {
  width: 50%;
}

.page-home .section-transportation {
  margin-top: -108px;
}

.page-home .section-transportation h2 {
  z-index: 1;
}

@media (min-width: 992px) {
  .page-home .section-transportation {
    margin-top: 0;
    padding: 0 60px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-transportation {
    padding-left: 10vh;
    padding-right: 10vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-transportation .section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

.page-home .section-transportation .section-wrapper .left,
.page-home .section-transportation .section-wrapper .right {
  position: relative;
}

@media (min-width: 992px) {
  .page-home .section-transportation .section-wrapper .left,
  .page-home .section-transportation .section-wrapper .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }
}

.page-home .section-transportation .section-wrapper .left {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .page-home .section-transportation .section-wrapper .left {
    margin-bottom: 0;
    padding-right: 150px;
  }

  .page-home .section-transportation .section-wrapper .left .theme-arrow {
    display: block !important;
    position: absolute;
    top: calc(80vh - 1px);
    top: calc(var(--vh, 1vh) * 80 - 1px);
    right: 0;
    width: 150px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-transportation .section-wrapper .left {
    padding-right: 25vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-transportation h2 {
    margin: auto 0 5px;
  }
}

@media (min-width: 992px) {
  .page-home .section-transportation .content-wrapper {
    padding-left: 110px;
    margin: 0 0 auto;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-transportation .content-wrapper {
    padding-left: 120px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-transportation .content-wrapper {
    padding-left: 130px;
  }
}

@media (min-width: 992px) {
  .page-home .section-transportation .theme-body-content {
    width: 540px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-transportation .theme-body-content {
    width: 560px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-transportation .theme-body-content {
    width: 600px;
  }
}

.page-home .section-transportation .links-group {
  margin: 40px 0 0;
}

@media (min-width: 992px) {
  .page-home .section-transportation .links-group {
    margin-top: 40px;
    margin-left: -11px;
    width: 660px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-transportation .links-group {
    margin-top: 70px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-transportation .links-group {
    margin-top: 80px;
    width: 750px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-home .section-transportation .links-group {
    margin-top: 90px;
  }
}

.page-home .section-transportation .links-group .theme-link,
.page-home .section-transportation .links-group .theme-more .more-link,
.theme-more .page-home .section-transportation .links-group .more-link {
  margin: 0;
}

@media (min-width: 768px) {
  .page-home .section-transportation .links-group .theme-link,
  .page-home .section-transportation .links-group .theme-more .more-link,
  .theme-more .page-home .section-transportation .links-group .more-link {
    float: left;
    width: 50%;
    margin: 0 0 10px;
  }
}

@media (min-width: 992px) {
  .page-home .section-transportation .links-group .theme-link,
  .page-home .section-transportation .links-group .theme-more .more-link,
  .theme-more .page-home .section-transportation .links-group .more-link {
    float: left;
    width: 210px;
    margin: 0 10px 10px 0;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-transportation .links-group .theme-link,
  .page-home .section-transportation .links-group .theme-more .more-link,
  .theme-more .page-home .section-transportation .links-group .more-link {
    width: 230px;
    margin: 0 20px 20px 0;
  }
}

.page-home .section-transportation .links-group:after {
  display: block;
  content: '';
  clear: both;
}

.page-home .section-transportation .harbour-scene {
  position: relative;
  width: 100vw;
  min-width: 500px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  .page-home .section-transportation .harbour-scene {
    min-width: auto;
    width: auto;
  }
}

.page-home .section-transportation .harbour-scene .scene-background {
  width: 100%;
  height: auto;
}

@media (min-width: 992px) {
  .page-home .section-transportation .harbour-scene .scene-background {
    width: auto;
    height: 80vh;
    height: calc(var(--vh, 1vh) * 80);
  }
}

.page-home .section-transportation .harbour-scene .scene-cranes,
.page-home .section-transportation .harbour-scene .scene-ship {
  position: absolute;
  top: 0;
  left: 0;
}

.page-home .section-transportation .harbour-scene .scene-ship {
  width: 51.49%;
  height: auto;
  top: 15%;
  left: 0;
  -webkit-transform: translateX(-55%);
  transform: translateX(-55%);
}

.page-home .section-transportation .harbour-scene .scene-cranes {
  width: 30.89%;
  top: 17%;
  left: 0.15%;
  z-index: 1;
}

@media (min-width: 992px) {
  .page-home .section-locations .section-wrapper {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .page-home .section-locations .section-wrapper,
  .page-home .section-locations .section-wrapper .left,
  .page-home .section-locations .section-wrapper .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }

  .page-home .section-locations .section-wrapper .left,
  .page-home .section-locations .section-wrapper .right {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .page-home .section-locations .section-wrapper .left {
    padding-bottom: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-locations .section-wrapper .left {
    padding-bottom: 6.66vh;
    padding-right: 6.66vh;
  }
}

.page-home .section-locations .section-wrapper .right {
  position: relative;
}

@media (min-width: 992px) {
  .page-home .section-locations .section-wrapper .right {
    padding-right: 113px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-locations .section-wrapper .right {
    padding-right: 15vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-locations h2 {
    position: absolute;
    bottom: 48px;
    left: 0;
    -webkit-transform: translateX(-75%) translateY(50%);
    transform: translateX(-75%) translateY(50%);
    margin: 0;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-locations h2 {
    bottom: 10vh;
  }
}

.page-home .section-locations .theme-body-content {
  margin-top: auto;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .page-home .section-locations .theme-body-content {
    width: 520px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-locations .theme-body-content {
    width: 550px;
  }
}

.page-home .section-locations .apple-scene {
  position: relative;
  margin: 80px auto;
  height: 140px;
  max-width: 200px;
}

@media (min-width: 768px) {
  .page-home .section-locations .apple-scene {
    height: 175px;
    max-width: 240px;
  }
}

@media (min-width: 992px) {
  .page-home .section-locations .apple-scene {
    margin: 8vh 0 auto;
    width: 240px;
  }
}

.page-home .section-locations .apple-scene:before {
  content: '';
  display: block;
  background: #e8f0fb;
  height: 125px;
}

@media (min-width: 992px) {
  .page-home .section-locations .apple-scene:before {
    height: auto;
    padding-bottom: 72%;
  }
}

.page-home .section-locations .apple-scene .apple-1,
.page-home .section-locations .apple-scene .apple-2 {
  position: absolute;
  width: auto;
}

.page-home .section-locations .apple-scene .apple-1 {
  height: 60%;
  left: -5%;
  top: -33%;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.page-home .section-locations .apple-scene .apple-2 {
  height: 135%;
  bottom: -30px;
  right: -40px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.page-home .section-locations .theme-arrow {
  display: none;
}

@media (min-width: 992px) {
  .page-home .section-locations .theme-arrow {
    display: block;
    width: 50%;
    right: 0;
  }
}

.page-home .section-people {
  margin: 0;
}

@media (min-width: 992px) {
  .page-home .section-people {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .page-home .section-people .section-wrapper {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .page-home .section-people .section-wrapper,
  .page-home .section-people .section-wrapper .panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }

  .page-home .section-people .section-wrapper .panel {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .page-home .section-people h2 {
    margin-top: auto;
    margin-bottom: 0;
  }
}

.page-home .section-people .theme-body-content {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .page-home .section-people .theme-body-content {
    margin-top: 0;
    margin-bottom: auto;
    margin-right: calc(5vh + 50px);
    width: 520px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-people .theme-body-content {
    width: 560px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-people .theme-body-content {
    width: 600px;
  }
}

.page-home .section-people .panel-1 .theme-square-grid .square-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .page-home .section-people .panel-1 .theme-square-grid,
  .page-home .section-people .panel-1 .theme-square-grid .grid-hor,
  .page-home .section-people .panel-2 .theme-square-grid {
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .section-wrapper {
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .section-wrapper,
  .page-home .section-difference .section-wrapper .panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
  }

  .page-home .section-difference .section-wrapper .panel {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 90px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-difference .section-wrapper .panel {
    margin-right: 15vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .section-wrapper .panel:last-child {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference h2 {
    position: absolute;
    margin: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    bottom: 66px;
    left: -120px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-difference h2 {
    bottom: 11vh;
    left: -20vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .theme-body-content {
    margin: auto;
  }
}

.page-home .section-difference .panel-1 .picture {
  display: block;
  height: 55vw;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  margin: 0 -25px 50px;
  border: 1px solid #fff;
}

@media (min-width: 768px) {
  .page-home .section-difference .panel-1 .picture {
    margin: 0 -45px 50px;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .panel-1 .picture {
    margin: 0;
    width: 700px;
    height: 40%;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-difference .panel-1 .picture {
    width: 116vh;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-difference .panel-1 .picture {
    width: 108vh;
    height: 45%;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-difference .panel-1 .picture {
    width: 100vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .panel-1 .theme-body-content {
    width: 570px;
    margin: auto auto 120px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-difference .panel-1 .theme-body-content {
    margin-bottom: 20vh;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-difference .panel-1 .theme-body-content {
    width: 688px;
    margin-bottom: 21vh;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-difference .panel-1 .theme-body-content {
    width: 750px;
    margin-bottom: 22vh;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .panel-2 .theme-body-content {
    width: 620px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-difference .panel-2 .theme-body-content {
    width: 645px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-difference .panel-2 .theme-body-content {
    width: 730px;
  }
}

.page-home .section-difference .panel-2 .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 50px auto;
}

@media (min-width: 768px) {
  .page-home .section-difference .panel-2 .video-wrapper {
    max-width: 420px;
  }
}

@media (min-width: 992px) {
  .page-home .section-difference .panel-2 .video-wrapper {
    width: 348px;
    max-width: inherit;
    margin: 0 auto auto 30px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-difference .panel-2 .video-wrapper {
    margin-left: 15vh;
    width: 58vh;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-difference .panel-2 .video-wrapper {
    margin-left: 0;
  }
}

.page-home .section-difference .panel-2 .video-wrapper video {
  display: block;
  width: 100%;
}

.page-home .section-difference .panel-2 .video-wrapper:after {
  content: '';
  -webkit-box-shadow: inset 0 0 0 2px #fff;
  box-shadow: inset 0 0 0 2px #fff;
  outline: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.page-home .section-difference .panel-3 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .page-home .section-difference .panel-3 .theme-body-content {
    width: 620px;
    margin: 43vh auto 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-home .section-difference .panel-3 .theme-body-content {
    width: 645px;
    margin-top: 50vh;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-home .section-difference .panel-3 .theme-body-content {
    width: 700px;
  }
}

.page-home .section-difference .theme-arrow {
  display: block !important;
  position: absolute;
  left: -38vh;
  width: 38vh;
  bottom: 25vh;
}

@media (min-width: 992px) {
  .page-home .section-cta {
    margin-left: -30px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-home .section-cta {
    margin-left: -5vh;
  }
}

.page-about-culture .section-intro {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .page-about-culture .section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page-about-culture .section-intro,
  .page-about-culture .section-intro:first-child {
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  .page-about-culture .section-intro .theme-body-content {
    margin-right: 108px;
    margin-top: auto;
    margin-bottom: auto;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-about-culture .section-intro .theme-body-content {
    margin-right: 18vh;
  }
}

@media (min-width: 992px) {
  .page-about-culture .section-intro .theme-square-grid {
    margin-left: auto;
  }
}

.page-about-culture .section-intro .theme-arrow {
  width: 100px;
  right: 0;
  display: none;
}

@media (min-width: 992px) {
  .page-about-culture .section-intro .theme-arrow {
    display: block;
  }
}

@media (min-width: 992px) {
  .page-about-culture .section-people {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.page-about-culture .section-second-content {
  margin: 0;
}

@media (min-width: 992px) {
  .page-about-culture .section-second-content {
    padding-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .page-about-culture .section-second-content .theme-body-content {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 108px;
  }
}

@media (min-width: 992px) and (min-height: 600px) {
  .page-about-culture .section-second-content .theme-body-content {
    margin-right: 18vh;
  }
}

@media (min-width: 992px) {
  .page-about-culture .section-second-content .theme-square-grid {
    margin-left: auto;
  }
}

.page-about-culture .section-second-content .theme-arrow {
  right: 0;
  width: 100px;
  display: none;
}

@media (min-width: 992px) {
  .page-about-culture .section-second-content .theme-arrow {
    display: block;
  }
}

.page-about-culture .section-testimonial {
  margin: 0;
}

@media (min-width: 992px) {
  .page-about-culture .section-testimonial {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .page-about-culture .section-testimonial .theme-square-grid {
    margin-top: auto;
  }

  .page-about-culture
    .section-testimonial
    .theme-square-grid
    .grid-ver
    .grid-hor:first-child
    .size-2 {
    margin-right: -33.333vh;
    z-index: 1;
  }
}

.page-about-culture .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

.page-about-history .scroll-section {
  z-index: 3;
}

.page-about-history .section-timeline {
  margin-bottom: 0;
  z-index: 1;
}

.page-about-history .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .page-about-history .section-timeline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }

  .page-about-history .section-timeline .body-content {
    margin-bottom: -60px;
  }
  .theme-heading-shadow {
    margin-bottom: 20px;
  }
  .page-about-history .theme-timeline {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 1200px;
  }

  .page-about-history .theme-timeline .timeline-wrapper {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-about-history .section-timeline {
    padding-bottom: 70px;
  }

  .page-about-history .section-timeline .body-content {
    margin-bottom: 0;
  }
}

.page-about-figures .scroll-section {
  overflow: hidden;
}

.page-about-figures h4 {
  font-size: 26px;
  color: #01042b;
}

.page-about-figures .theme-arrow {
  display: none;
}

@media (min-width: 992px) {
  .page-about-figures h4 {
    font-size: 40px;
  }

  .page-about-figures .theme-arrow {
    display: block;
  }
}

.page-about-figures .section-generalfigures .theme-bubble:first-child {
  left: -25vw;
}

.page-about-figures .section-generalfigures .theme-bubble:nth-child(2) {
  left: 25vw;
  margin-top: -17vw;
}

.page-about-figures .section-generalfigures .theme-bubble:nth-child(3) {
  left: -24vw;
  margin-top: -14vw;
}

.page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
  margin-top: 2vw;
}

@media (min-width: 480px) {
  .page-about-figures .section-generalfigures .theme-bubble:nth-child(2) {
    left: 12vw;
    margin-top: -17vw;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(3) {
    left: -18vw;
    margin-top: -8vw;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
    margin-top: -20vw;
    left: 26vw;
  }
}

@media (min-width: 660px) {
  .page-about-figures .section-generalfigures .theme-bubble:first-child {
    left: -29vw;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(2) {
    left: 1vw;
    margin-top: -22vw;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(3) {
    left: -14vw;
    margin-top: -1vw;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
    left: 22vw;
    margin-top: -24vw;
  }
}

@media (min-width: 992px) {
  .page-about-figures .section-generalfigures {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 225px;
    padding-bottom: 60px;
  }

  .page-about-figures .section-generalfigures .theme-bubbles {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto 0;
    z-index: 1;
  }

  .page-about-figures .section-generalfigures .theme-bubble:first-child,
  .page-about-figures .section-generalfigures .theme-bubble:nth-child(2),
  .page-about-figures .section-generalfigures .theme-bubble:nth-child(3),
  .page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
    left: 0;
    margin-top: 0;
  }

  .page-about-figures .section-generalfigures .theme-bubble:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: -20vh;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-top: -20vh;
    margin-left: -6vh;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: -36vh;
    margin-left: -6vh;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-bottom: -15vh;
    margin-left: 1vh;
    top: -25px;
    left: 7px;
  }

  .page-about-figures .section-generalfigures .theme-arrow {
    right: 0;
    width: 225px;
    z-index: 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-about-figures .section-generalfigures .theme-bubble:first-child {
    margin-top: -18vh;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(2) {
    margin-top: -18vh;
    margin-left: -9vh;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(3) {
    margin-bottom: -34vh;
    margin-left: -9vh;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
    margin-left: 0;
    top: auto;
    left: auto;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-about-figures .section-generalfigures .theme-bubble:first-child {
    margin-top: -180px;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(2) {
    margin-top: -180px;
    margin-left: -81px;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(3) {
    margin-bottom: -255px;
    margin-left: -81px;
  }

  .page-about-figures .section-generalfigures .theme-bubble:nth-child(4) {
    margin-bottom: -108px;
  }
}

.page-about-figures .section-chart {
  padding-left: 0;
  padding-right: 0;
}

.page-about-figures .section-chart .body-content {
  padding: 45px 25px;
  margin: auto;
  background-color: #e8f0fb;
}

.page-about-figures .section-chart .body-content > * {
  color: #00358d;
}

.page-about-figures .section-chart .chart-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 630px;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}

.page-about-figures .section-chart svg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}

.page-about-figures .section-chart svg #chart-labels {
  display: none;
}

.page-about-figures .section-chart svg #chart-bars,
.page-about-figures .section-chart svg #chart-lines {
  -webkit-transform: scale(1.15) translateX(-11%);
  transform: scale(1.15) translateX(-11%);
}

.page-about-figures .section-chart svg #chart-lines path:last-child {
  display: none;
}

.page-about-figures .section-chart svg #chart-bars rect {
  -webkit-transform-origin: 50% 90%;
  transform-origin: 50% 90%;
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}

.page-about-figures .section-chart svg #chart-bars rect:first-child {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(4) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(5) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(6) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(7) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(8) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(9) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(10) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.page-about-figures .section-chart svg #chart-bars rect:nth-child(11) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.page-about-figures .section-chart.invisible {
  visibility: visible !important;
}

.page-about-figures .section-chart.invisible svg #chart-bars rect {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}

.page-about-figures .section-chart.visible svg #chart-bars rect {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

@media (min-width: 480px) {
  .page-about-figures .section-chart svg #chart-labels {
    display: block;
  }

  .page-about-figures .section-chart svg #chart-bars,
  .page-about-figures .section-chart svg #chart-lines {
    -webkit-transform: none;
    transform: none;
  }

  .page-about-figures .section-chart svg #chart-lines path:last-child {
    display: block;
  }
}

@media (min-width: 660px) {
  .page-about-figures .section-chart {
    padding-left: 25px;
    padding-right: 25px;
  }

  .page-about-figures .section-chart .body-content {
    padding: 45px;
  }

  .page-about-figures .section-chart .body-content h4 {
    margin-bottom: 45px;
  }
}

@media (min-width: 768px) {
  .page-about-figures .section-chart {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media (min-width: 992px) {
  .page-about-figures .section-chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .page-about-figures .section-chart .body-content {
    max-width: 620px;
  }

  .page-about-figures .section-chart .body-content h4 {
    font-weight: 200;
  }

  .page-about-figures .section-chart .body-content h4 strong {
    font-weight: 600;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-about-figures .section-chart .body-content {
    max-width: 720px;
  }
}

.page-about-figures .section-locations h4 {
  text-align: center;
}

.page-about-figures .section-locations .theme-bubble:first-child {
  left: -33vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(2) {
  left: 22vw;
  margin-top: -20vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(3) {
  left: -20vw;
  margin-top: -15vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(4) {
  left: 12vw;
  margin-top: -10vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(5) {
  left: -31vw;
  margin-top: -8vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(6) {
  left: 31vw;
  margin-top: -25vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(7) {
  left: 1vw;
  margin-top: -11vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(8) {
  left: 30vw;
  margin-top: -6vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(9) {
  left: -33vw;
  margin-top: -21vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(10) {
  left: 6vw;
  margin-top: -15vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(11) {
  left: -29vw;
  margin-top: -9vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(12) {
  left: 38vw;
  margin-top: -21vw;
  margin-bottom: 3vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(13) {
  left: 35vw;
  margin-bottom: 15vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(14) {
  left: 28vw;
  margin-top: -21vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(15) {
  left: 36vw;
  margin-top: 4vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(16) {
  left: 44vw;
  margin-top: 12vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(17) {
  left: 44vw;
  margin-top: -5vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(18) {
  left: 45vw;
  margin-top: -19vw;
}

.page-about-figures .section-locations .theme-bubble:nth-child(19) {
  left: 38vw;
  margin-bottom: -20vw;
}

@media (min-width: 480px) {
  .page-about-figures .section-locations .theme-bubbles {
    margin: 0 auto;
    height: 510px;
    max-width: 430px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-about-figures .section-locations .theme-bubble {
    position: absolute;
  }

  .page-about-figures .section-locations .theme-bubble:first-child,
  .page-about-figures .section-locations .theme-bubble:nth-child(2),
  .page-about-figures .section-locations .theme-bubble:nth-child(3),
  .page-about-figures .section-locations .theme-bubble:nth-child(4),
  .page-about-figures .section-locations .theme-bubble:nth-child(5),
  .page-about-figures .section-locations .theme-bubble:nth-child(6),
  .page-about-figures .section-locations .theme-bubble:nth-child(7),
  .page-about-figures .section-locations .theme-bubble:nth-child(8),
  .page-about-figures .section-locations .theme-bubble:nth-child(9),
  .page-about-figures .section-locations .theme-bubble:nth-child(10),
  .page-about-figures .section-locations .theme-bubble:nth-child(11),
  .page-about-figures .section-locations .theme-bubble:nth-child(12),
  .page-about-figures .section-locations .theme-bubble:nth-child(13),
  .page-about-figures .section-locations .theme-bubble:nth-child(14),
  .page-about-figures .section-locations .theme-bubble:nth-child(15),
  .page-about-figures .section-locations .theme-bubble:nth-child(16),
  .page-about-figures .section-locations .theme-bubble:nth-child(17),
  .page-about-figures .section-locations .theme-bubble:nth-child(18),
  .page-about-figures .section-locations .theme-bubble:nth-child(19) {
    left: auto;
    top: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .page-about-figures .section-locations .theme-bubble:first-child {
    left: -30px;
    top: 92px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(2) {
    left: 63px;
    top: -13px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(3) {
    left: 239px;
    top: 30px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(4) {
    left: 370px;
    top: 110px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(5) {
    left: 44px;
    top: 166px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(6) {
    left: 182px;
    top: 149px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(7) {
    left: 282px;
    top: 190px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(8) {
    left: 33px;
    top: 310px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(9) {
    left: 160px;
    top: 258px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(10) {
    left: 294px;
    top: 314px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(11) {
    left: 145px;
    top: 400px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(12) {
    left: -35px;
    top: 416px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(13) {
    left: 35vw;
    top: 9vw;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(14) {
    left: 28vw;
    top: 1vw;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(15) {
    left: 36vw;
    top: 0;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(16) {
    left: 46vw;
    top: 12vw;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(17) {
    left: 44vw;
    top: 5vw;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(18) {
    left: 45vw;
    top: 19vw;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(19) {
    left: 38vw;
    top: 20vw;
  }
}

@media (min-width: 992px) {
  .page-about-figures .section-locations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 180px;
    padding-left: 90px;
  }

  .page-about-figures .section-locations .section-wrapper {
    margin: auto;
  }

  .page-about-figures .section-locations h4 {
    font-weight: 400;
    text-align: left;
    margin-left: 130px;
  }

  .page-about-figures .section-locations .theme-bubbles {
    margin: auto 0;
    height: 460px;
    width: 960px;
    max-width: inherit;
  }

  .page-about-figures .section-locations .theme-bubble:first-child {
    left: 0;
    top: 104px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(2) {
    left: 130px;
    top: 0;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(3) {
    left: 357px;
    top: 60px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(4) {
    left: 536px;
    top: 151px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(5) {
    left: 67px;
    top: 216px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(6) {
    left: 265px;
    top: 214px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(7) {
    left: 411px;
    top: 250px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(8) {
    left: 626px;
    top: 254px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(9) {
    left: 662px;
    top: 57px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(10) {
    left: 791px;
    top: 199px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(11) {
    left: 535px;
    top: 7px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(12) {
    left: 855px;
    top: 65px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(13) {
    left: 860px;
    top: 389px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(14) {
    left: 880px;
    top: 250px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(15) {
    left: 711px;
    top: 281px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(16) {
    left: 810px;
    top: 124px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(17) {
    left: 725px;
    top: 14px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(18) {
    left: 673px;
    top: 142px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(19) {
    left: 548px;
    top: -5px;
  }

  .page-about-figures .section-locations .theme-arrow {
    position: absolute;
  }

  .page-about-figures .section-locations .theme-arrow:first-of-type {
    left: 45px;
    width: 130px;
  }

  .page-about-figures .section-locations .theme-arrow:last-of-type {
    right: 0;
    width: 180px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-about-figures .section-locations .theme-bubbles {
    margin: auto 0;
    height: 580px;
    width: 850px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(4) {
    left: 530px;
    top: 168px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(5) {
    left: 67px;
    top: 216px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(6) {
    left: 265px;
    top: 214px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(7) {
    left: 410px;
    top: 260px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(8) {
    left: 44px;
    top: 407px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(9) {
    left: 211px;
    top: 354px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(10) {
    left: 399px;
    top: 411px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(11) {
    left: 565px;
    top: 310px;
  }

  .page-about-figures .section-locations .theme-bubble:nth-child(12) {
    left: 595px;
    top: 450px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-about-figures .section-locations .theme-arrow:last-of-type {
    margin-top: 130px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-about-figures .section-locations .section-wrapper {
    padding-top: 90px;
  }
}

.page-about-figures .section-transport h4 {
  font-weight: 200;
  color: #00358d;
}

.page-about-figures .section-transport .theme-rectangles .theme-rectangle {
  z-index: 2;
}

.page-about-figures
  .section-transport
  .theme-rectangles
  .theme-rectangle:nth-child(8):after,
.page-about-figures
  .section-transport
  .theme-rectangles
  .theme-rectangle:nth-child(9):after {
  content: '';
  display: block;
  position: absolute;
  background-color: #cadaed;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.page-about-figures
  .section-transport
  .theme-rectangles
  .theme-rectangle:nth-child(8) {
  z-index: 1;
}

.page-about-figures
  .section-transport
  .theme-rectangles
  .theme-rectangle:nth-child(9) {
  z-index: 0;
}

@media (min-width: 600px) {
  .page-about-figures .section-transport h4 {
    max-width: 50%;
    margin-bottom: -22px;
  }

  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(odd) {
    top: 47px;
  }

  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(4),
  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(8),
  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    height: 120px;
  }

  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(8):after,
  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(9):after {
    top: 50%;
    left: 0;
    width: 80px;
    height: 1px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }

  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(8):after {
    -webkit-transform: translateX(-100%) rotate(-39deg);
    transform: translateX(-100%) rotate(-39deg);
  }

  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    top: auto;
    margin-left: auto;
    margin-top: -47px;
  }

  .page-about-figures
    .section-transport
    .theme-rectangles
    .theme-rectangle:nth-child(9):after {
    -webkit-transform: translateX(-100%) rotate(39deg);
    transform: translateX(-100%) rotate(39deg);
  }
}

@media (min-width: 992px) {
  .page-about-figures .section-transport {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-about-figures .section-transport .section-wrapper {
    position: relative;
    max-width: 2030px;
  }

  .page-about-figures .section-transport .section-wrapper h4 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 360px;
    font-size: 40px;
    margin: 40px 0 0;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(odd) {
    top: auto;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:first-child {
    margin-left: 445px;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(2),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(4) {
    top: -18px;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(4) {
    height: auto;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(8),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    bottom: -18px;
    height: 175px;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(8):after,
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9):after {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    margin: 18px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-about-figures .section-transport .section-wrapper {
    max-width: 1380px;
  }

  .page-about-figures .section-transport .section-wrapper h4 {
    margin: 36px 0 0;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(2),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(4),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(8),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    max-height: 175px;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(2),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(4) {
    min-width: 370px;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(2) {
    top: auto;
    margin-top: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(3) {
    max-width: 430px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(4) {
    top: auto;
    margin-top: -45px;
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(5) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(6) {
    margin-left: 320px;
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(7) {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(8),
  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    position: absolute;
    min-width: 290px;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(8) {
    bottom: 210px;
    right: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(8):after {
    -webkit-transform: translateX(-100%) rotate(-39deg);
    transform: translateX(-100%) rotate(-39deg);
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9) {
    right: 0;
    bottom: 0;
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .page-about-figures
    .section-transport
    .section-wrapper
    .theme-rectangles
    .theme-rectangle:nth-child(9):after {
    -webkit-transform: translateX(-100%) rotate(39deg);
    transform: translateX(-100%) rotate(39deg);
  }
}

.page-about-figures .section-group {
  overflow: visible;
}

.page-about-figures .section-group h4 {
  font-weight: 200;
  color: #00358d;
  margin-bottom: -10vw;
}

.page-about-figures .section-group .logo-euroports {
  position: relative;
  display: block;
  width: 159px;
  height: 26px;
  background: url(../images/logo-euroports-2x.png) no-repeat 50%;
  background-size: contain;
  text-indent: -10000em;
  line-height: 1;
}

.page-about-figures .section-group .theme-bubble:first-child {
  left: 25vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(2) {
  left: -23vw;
  margin-top: -13vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(3) {
  left: 30vw;
  margin-top: -28vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(4) {
  left: -30vw;
  margin-top: 10vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(5) {
  left: 12vw;
  margin-top: -35vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(6) {
  left: -5vw;
  margin-top: 2vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(7) {
  left: 34vw;
  margin-top: -31vw;
}

.page-about-figures .section-group .theme-bubble:nth-child(8) {
  left: 19vw;
  margin-top: 0;
}

.page-about-figures .section-group .theme-bubble:nth-child(9) {
  left: -3vw;
  margin-top: -4vw;
}

.page-about-figures .section-group .theme-link,
.page-about-figures .section-group .theme-more .more-link,
.theme-more .page-about-figures .section-group .more-link {
  margin-top: 45px;
}

@media (min-width: 480px) {
  .page-about-figures .section-group h4 {
    max-width: 60%;
  }

  .page-about-figures .section-group .logo-euroports {
    display: inline-block;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(2) {
    left: -30vw;
    margin-top: -22vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(3) {
    left: 35vw;
    margin-top: -13vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(4) {
    left: 12vw;
    margin-top: -16vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(5) {
    left: -8vw;
    margin-top: -8vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(6) {
    left: 21vw;
    margin-top: -6vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(7) {
    left: -21vw;
    margin-top: -11vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(8) {
    left: 1vw;
    margin-top: -10vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(9) {
    left: 37vw;
    margin-top: -14vw;
  }

  .page-about-figures .section-group .theme-link,
  .page-about-figures .section-group .theme-more .more-link,
  .theme-more .page-about-figures .section-group .more-link {
    margin-top: 0;
  }
}

@media (min-width: 600px) {
  .page-about-figures .section-group h4 {
    max-width: 290px;
    margin-bottom: -7vw;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(3) {
    margin-top: -11vw;
  }
}

@media (min-width: 660px) {
  .page-about-figures .section-group .theme-bubbles {
    margin: 0 auto;
    height: 420px;
    max-width: 610px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-about-figures .section-group .theme-bubble {
    position: absolute;
  }

  .page-about-figures .section-group .theme-bubble:first-child,
  .page-about-figures .section-group .theme-bubble:nth-child(2),
  .page-about-figures .section-group .theme-bubble:nth-child(3),
  .page-about-figures .section-group .theme-bubble:nth-child(4),
  .page-about-figures .section-group .theme-bubble:nth-child(5),
  .page-about-figures .section-group .theme-bubble:nth-child(6),
  .page-about-figures .section-group .theme-bubble:nth-child(7),
  .page-about-figures .section-group .theme-bubble:nth-child(8),
  .page-about-figures .section-group .theme-bubble:nth-child(9) {
    left: auto;
    top: 500px;
    margin-top: 0;
  }

  .page-about-figures .section-group .theme-bubble:first-child {
    left: 0;
    top: 126px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(2) {
    left: 197px;
    top: 47px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(3) {
    left: 305px;
    top: 282px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(4) {
    left: 401px;
    top: 218px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(5) {
    left: 437px;
    top: 121px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(6) {
    left: 407px;
    top: 1px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(7) {
    left: 410px;
    top: 325px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(8) {
    left: 510px;
    top: 206px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(9) {
    left: 521px;
    top: 49px;
  }
}

@media (min-width: 768px) {
  .page-about-figures .section-group h4 {
    margin-bottom: -55px;
  }
}

@media (min-width: 992px) {
  .page-about-figures .section-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 180px;
    padding-right: 180px;
  }

  .page-about-figures .section-group .section-wrapper {
    position: relative;
    margin: auto;
  }

  .page-about-figures .section-group .body-content {
    position: absolute;
    bottom: 0;
    left: -90px;
  }

  .page-about-figures .section-group h4 {
    max-width: 500px;
    margin-bottom: 0;
  }

  .page-about-figures .section-group .logo-euroports {
    width: 318px;
    height: 36px;
  }

  .page-about-figures .section-group .theme-bubbles {
    margin: auto 0;
    height: 460px;
    width: 965px;
    max-width: inherit;
  }

  .page-about-figures .section-group .theme-bubble:first-child {
    left: -8px;
    top: -35px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(2) {
    left: 259px;
    top: 47px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(3) {
    left: 833px;
    top: 87px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(4) {
    left: 497px;
    top: 290px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(5) {
    left: 567px;
    top: 165px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(6) {
    left: 539px;
    top: 10px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(7) {
    left: 637px;
    top: 290px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(8) {
    left: 753px;
    top: 211px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(9) {
    left: 689px;
    top: 82px;
  }

  .page-about-figures .section-group .theme-link,
  .page-about-figures .section-group .theme-more .more-link,
  .theme-more .page-about-figures .section-group .more-link {
    position: absolute;
    bottom: 0;
    right: -240px;
  }

  .page-about-figures .section-group .theme-arrow {
    left: -180px;
    width: 180px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-about-figures .section-group {
    padding-left: 270px;
  }

  .page-about-figures .section-group .theme-bubbles {
    height: 545px;
    width: 810px;
  }

  .page-about-figures .section-group .theme-bubble:first-child {
    left: -14px;
    top: 126px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(3) {
    left: 356px;
    top: 349px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(7) {
    left: 486px;
    top: 433px;
  }

  .page-about-figures .section-group .theme-bubble:nth-child(8) {
    left: 641px;
    top: 293px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-about-figures .section-group .section-wrapper {
    height: 705px;
  }

  .page-about-figures .section-group .theme-arrow {
    left: -80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-about-figures .section-group .theme-arrow {
    left: -90px;
  }
}

.page-commodities .body-content {
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .page-commodities .section-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    overflow: hidden;
  }

  .page-commodities .body-content {
    margin-right: 135px;
    margin-bottom: 2rem;
    max-width: 440px;
  }

  .page-commodities .theme-content-cards {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto 0;
  }

  .page-commodities .theme-content-cards > * {
    margin-bottom: 0;
  }

  .page-commodities .theme-content-cards > :last-child {
    margin-right: 55px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-commodities .section-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-commodities .body-content {
    margin-right: auto;
    max-width: inherit;
  }

  .page-commodities .theme-content-cards {
    top: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.page-services .scroll-section .section-wrapper > .picture,
.page-services .scroll-section > .picture {
  height: 50vw;
  margin: 0 -25px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.page-services .scroll-section .theme-body-content .theme-icon-circle {
  margin-bottom: 1em;
}

.page-services .scroll-section .theme-body-content h4 {
  margin-bottom: 0.5em;
}

.page-services .scroll-section .theme-arrow {
  display: none;
}

.page-services .section-type-0 .body-content {
  margin-bottom: 50px;
}

.page-services .section-type-1 .picture {
  margin: 0;
  max-height: 273px !important;
  background-size: contain;
}

.page-services .section-outro {
  margin-bottom: 0;
}

.page-services .section-outro .theme-body-content {
  margin: 0 -25px;
  padding: 50px 25px;
  background-color: #e8f0fb;
}

.page-services .section-outro .theme-body-content > :last-child {
  margin-bottom: 0;
}

.page-services .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 576px) {
  .page-services .scroll-section .section-wrapper > .picture,
  .page-services .scroll-section > .picture {
    margin: -25px 0 0;
  }

  .page-services .section-type-1 .picture {
    margin-top: 0;
  }

  .page-services .section-outro .picture {
    margin: -25px 25px 50px;
  }
}

@media (min-width: 992px) {
  .page-services .scroll-section:not(.section-cta) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-services .scroll-section:not(.section-cta) .theme-body-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 490px;
    margin: auto 0;
  }

  .page-services .scroll-section:not(.section-cta) .theme-body-content > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .page-services .scroll-section:not(.section-cta) .theme-body-content p {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .page-services .scroll-section:not(.section-cta) .section-wrapper > .picture,
  .page-services .scroll-section:not(.section-cta) > .picture {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 620px;
    max-height: 40vh;
  }

  .page-services .scroll-section:not(.section-cta) .theme-arrow {
    display: block;
    right: 0;
    width: 120px;
  }

  .page-services .scroll-section.section-type-0,
  .page-services .scroll-section.section-type-3 {
    padding-bottom: 0;
    padding-right: 120px;
  }

  .page-services .scroll-section.section-type-0 .picture,
  .page-services .scroll-section.section-type-3 .picture {
    margin: auto 0 0;
  }

  .page-services .scroll-section.section-type-0 .body-content {
    max-width: 570px;
  }

  .page-services .scroll-section.section-type-0 .section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .page-services .scroll-section.section-type-0 .section-wrapper > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .page-services
    .scroll-section.section-type-0
    .section-wrapper
    .theme-body-content {
    max-width: 360px;
    margin-right: 120px;
  }

  .page-services .scroll-section.section-type-0 .section-wrapper .picture {
    margin: auto 0 0;
    width: 690px;
    height: 40vh;
    max-height: 100%;
  }

  .page-services .scroll-section.section-type-0 .theme-arrow {
    width: 35%;
  }

  .page-services .scroll-section.section-type-1 {
    padding-right: 120px;
  }

  .page-services .scroll-section.section-type-1 .theme-body-content {
    padding-bottom: 120px;
  }

  .page-services .scroll-section.section-type-1 .picture {
    height: 40vh;
    width: auto;
    margin: auto 0 0;
  }

  .page-services .scroll-section.section-type-2,
  .page-services .scroll-section.section-type-4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-top: 0;
    padding-right: 120px;
  }

  .page-services .scroll-section.section-type-2 .picture,
  .page-services .scroll-section.section-type-4 .picture {
    margin: 0 0 auto;
  }

  .page-services .scroll-section.section-solutions-1 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .page-services .scroll-section.section-solutions-1 .section-wrapper {
    margin: auto 0 0;
  }

  .page-services .scroll-section.section-solutions-1 .section-wrapper h2 {
    margin-bottom: 60px;
  }

  .page-services .scroll-section.section-solutions-1 .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page-services
    .scroll-section.section-solutions-1
    .content-wrapper
    .theme-body-content {
    margin-top: 0;
    margin-right: 60px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-square-grid {
    margin: -60px 60px;
    z-index: 1;
  }

  .page-services
    .scroll-section.section-solutions-1
    .theme-square-grid
    .square-item
    > * {
    border: none;
  }

  .page-services
    .scroll-section.section-solutions-1
    .theme-square-grid
    .square-item:last-child {
    height: 66.666vh;
    height: calc(var(--vh, 1vh) * 66.666);
    margin-left: 33.333vh;
  }

  .page-services .scroll-section.section-solutions-1 .theme-arrow {
    position: absolute;
    top: calc(33.333vh + 120px);
    right: calc(33.333vh + 120px);
    width: 120px;
    z-index: 0;
  }

  .page-services .scroll-section.section-solutions-2 {
    padding-right: 120px;
  }

  .page-services .scroll-section.section-solutions-2 .section-wrapper {
    margin: auto 0 0;
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 60px;
    column-gap: 60px;
  }

  .page-services
    .scroll-section.section-solutions-2
    .section-wrapper
    .theme-body-content {
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    margin: 0 0 50px;
  }

  .page-services
    .scroll-section.section-solutions-2
    .section-wrapper
    .theme-body-content
    > :last-child {
    margin-bottom: 0;
  }

  .page-services .scroll-section.section-solutions-2 .theme-arrow {
    right: -60px;
  }

  .page-services .scroll-section.section-outro {
    padding-bottom: 0;
    padding-right: 0;
  }

  .page-services .scroll-section.section-outro .theme-body-content {
    margin-bottom: 50px;
  }

  .page-services .scroll-section.section-outro .picture {
    margin: auto 0 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-services .scroll-section:not(.section-cta) .theme-body-content {
    display: block;
  }

  .page-services .scroll-section:not(.section-cta) .theme-arrow {
    width: 140px;
  }

  .page-services .scroll-section.section-type-0,
  .page-services .scroll-section.section-type-3 {
    padding-right: 140px;
  }

  .page-services
    .scroll-section.section-type-0
    .section-wrapper
    .theme-body-content {
    max-width: 270px;
    margin-right: 140px;
  }

  .page-services .scroll-section.section-type-0 .theme-arrow {
    width: 45% !important;
  }

  .page-services .scroll-section.section-type-1 .picture {
    margin: auto 0 auto -160px;
  }

  .page-services .scroll-section.section-type-2,
  .page-services .scroll-section.section-type-4 {
    padding-right: 140px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-square-grid {
    margin: -70px 70px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-arrow {
    top: calc(33.333vh + 140px);
    right: calc(33.333vh + 140px);
  }

  .page-services .scroll-section.section-solutions-2 {
    padding-right: 140px;
  }

  .page-services .scroll-section.section-solutions-2 .section-wrapper {
    margin: auto 0;
  }

  .page-services .scroll-section.section-solutions-2 .theme-arrow {
    right: -70px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-services .scroll-section:not(.section-cta) .theme-arrow {
    width: 160px;
  }

  .page-services .scroll-section.section-type-0,
  .page-services .scroll-section.section-type-3 {
    padding-right: 160px;
  }

  .page-services
    .scroll-section.section-type-0
    .section-wrapper
    .theme-body-content {
    margin-right: 160px;
  }

  .page-services .scroll-section.section-type-2,
  .page-services .scroll-section.section-type-4 {
    padding-right: 160px;
  }

  .page-services .scroll-section.section-solutions-1 .content-wrapper {
    display: block;
  }

  .page-services
    .scroll-section.section-solutions-1
    .content-wrapper
    .theme-body-content {
    margin-bottom: 50px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-square-grid {
    margin: -80px 0 -80px 80px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-arrow {
    top: calc(33.333vh + 160px);
    right: calc(33.333vh + 80px);
  }

  .page-services .scroll-section.section-solutions-2 {
    padding-right: 160px;
  }

  .page-services .scroll-section.section-solutions-2 .section-wrapper {
    -webkit-column-count: 1;
    column-count: 1;
  }

  .page-services .scroll-section.section-solutions-2 .theme-arrow {
    right: -80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-services .scroll-section:not(.section-cta) .theme-arrow {
    width: 180px;
  }

  .page-services .scroll-section.section-type-0,
  .page-services .scroll-section.section-type-3 {
    padding-right: 180px;
  }

  .page-services
    .scroll-section.section-type-0
    .section-wrapper
    .theme-body-content {
    margin-right: 180px;
  }

  .page-services .scroll-section.section-type-2,
  .page-services .scroll-section.section-type-4 {
    padding-right: 180px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-square-grid {
    margin: -90px 0 -90px 90px;
  }

  .page-services .scroll-section.section-solutions-1 .theme-arrow {
    top: calc(33.333vh + 180px);
    right: calc(33.333vh + 90px);
  }

  .page-services .scroll-section.section-solutions-2 {
    padding-right: 180px;
  }

  .page-services .scroll-section.section-solutions-2 .theme-arrow {
    right: -90px;
  }
}

.page-liquids .section-intro .picture {
  height: 50vw;
  margin: 50px -25px 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.page-liquids .section-content .theme-body-content:first-child {
  margin-bottom: 25px;
}

.page-liquids .section-content .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto 25px;
}

.page-liquids .section-content .video-wrapper video {
  display: block;
  width: 100%;
}

.page-liquids .section-content .video-wrapper:after {
  content: '';
  -webkit-box-shadow: inset 0 0 0 2px #fff;
  box-shadow: inset 0 0 0 2px #fff;
  outline: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.page-liquids .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 576px) {
  .page-liquids .section-intro .picture {
    margin: 25px 0;
  }

  .page-liquids .section-content .theme-body-content:first-child {
    margin-bottom: 50px;
  }

  .page-liquids .section-content .video-wrapper {
    max-width: 420px;
    margin: -18px auto 25px;
  }
}

@media (min-width: 992px) {
  .page-liquids .section-content,
  .page-liquids .section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-liquids .section-intro {
    padding-bottom: 0;
  }

  .page-liquids .section-intro p {
    max-width: 570px;
  }

  .page-liquids .section-intro p:last-of-type {
    margin-bottom: 50px;
  }

  .page-liquids .section-intro .picture {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: auto 0 0;
    width: 707px;
    max-height: 470px;
  }

  .page-liquids .section-content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-liquids .section-content .section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 60px;
    height: 100%;
    max-height: 720px;
  }

  .page-liquids .section-content .theme-body-content {
    max-width: 620px;
    margin-bottom: 0 !important;
  }

  .page-liquids .section-content .video-wrapper {
    max-width: 360px;
    margin: 0 80px 0 50px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-liquids .section-content .section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 70px;
  }

  .page-liquids .section-content .theme-body-content:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .page-liquids .section-content .theme-body-content:last-child {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .page-liquids .section-content .video-wrapper {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 auto -68px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-liquids .section-content .section-wrapper {
    padding-right: 80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-liquids .section-content .section-wrapper {
    padding-right: 90px;
  }
}

.page-cases .body-content,
.page-cases .theme-content-cards > * {
  margin-bottom: 50px;
}

.page-cases .theme-content-cards > :last-child {
  margin-bottom: 0;
}

.page-cases .theme-content-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-cases .theme-content-card .content-card-media {
  margin-top: auto;
}

.page-cases .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 992px) {
  .page-cases,
  .page-cases .scroll-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page-cases .scroll-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-cases .section-intro {
    margin-right: auto;
  }

  .page-cases .theme-content-cards {
    margin: auto 0;
  }

  .page-cases .theme-content-cards > * {
    margin-top: 0;
    margin-bottom: 0;
  }

  .page-cases .theme-content-cards > :last-child {
    margin-right: 55px;
  }

  .page-cases .theme-content-card {
    width: 300px;
  }

  .page-cases .theme-content-card .content-card-content {
    margin-bottom: 30px;
  }

  .page-cases .theme-content-card .content-card-media {
    display: none;
  }

  .page-cases .theme-content-card .theme-link,
  .page-cases .theme-content-card .theme-more .more-link,
  .theme-more .page-cases .theme-content-card .more-link {
    margin-top: auto;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-cases .theme-content-card .content-card-media {
    display: block;
  }

  .page-cases .theme-content-card .theme-link,
  .page-cases .theme-content-card .theme-more .more-link,
  .theme-more .page-cases .theme-content-card .more-link {
    margin-top: 0;
  }
}

.page-case-sugar .section-figures .picture,
.page-case-sugar .section-intro .picture {
  height: 50vw;
  margin: 0 -25px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.page-case-sugar .section-intro .picture {
  margin-top: 50px;
}

.page-case-sugar .section-content .theme-body-content {
  margin-bottom: 25px;
}

.page-case-sugar .section-content .sugar-beets-scene {
  position: relative;
  margin: 0 auto 40px;
}

.page-case-sugar .section-content .sugar-beets-scene img {
  display: block;
  max-width: 407px;
  width: 100%;
  height: auto;
}

.page-case-sugar .section-content .theme-arrow {
  display: none;
}

.page-case-sugar .section-figures .picture {
  margin-bottom: 50px;
}

.page-case-sugar .section-figures .sugar-chart-scene {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-case-sugar .section-figures .sugar-chart-scene .theme-rectangle {
  padding: 0;
  border: none;
  background: transparent none;
  z-index: 1;
}

.page-case-sugar .section-figures .sugar-chart-scene .theme-rectangle strong {
  display: block;
}

.page-case-sugar
  .section-figures
  .sugar-chart-scene
  .theme-rectangle:first-child {
  padding-top: 25px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
}

.page-case-sugar .section-figures .sugar-chart-scene svg {
  margin: -75px auto 15px;
}

.page-case-sugar .section-figures .sugar-chart-scene svg #slice-indicator {
  display: none;
}

.page-case-sugar .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 580px) {
  .page-case-sugar .section-figures .sugar-chart-scene {
    max-width: 530px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .page-case-sugar
    .section-figures
    .sugar-chart-scene
    .theme-rectangle:first-child {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
  }

  .page-case-sugar
    .section-figures
    .sugar-chart-scene
    .theme-rectangle:last-child {
    position: absolute;
    left: 295px;
    bottom: 0;
    width: auto;
  }

  .page-case-sugar .section-figures .sugar-chart-scene svg {
    margin-left: 45px;
  }

  .page-case-sugar .section-figures .sugar-chart-scene svg #slice-indicator {
    display: block;
  }
}

@media (min-width: 576px) {
  .page-case-sugar .section-intro .picture {
    margin: 25px 0;
  }

  .page-case-sugar .section-content .theme-body-content:first-child {
    margin-bottom: 50px;
  }

  .page-case-sugar .section-figures .sugar-chart-scene {
    margin: 75px auto;
  }

  .page-case-sugar
    .section-figures
    .sugar-chart-scene
    .theme-rectangle:first-child {
    padding-top: 0;
  }

  .page-case-sugar .section-figures .sugar-chart-scene svg {
    margin-top: -30px;
  }
}

@media (min-width: 992px) {
  .page-case-sugar .section-content,
  .page-case-sugar .section-figures,
  .page-case-sugar .section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-case-sugar .section-intro {
    padding-bottom: 0;
  }

  .page-case-sugar .section-intro p {
    max-width: 570px;
  }

  .page-case-sugar .section-intro p:last-of-type {
    margin-bottom: 50px;
  }

  .page-case-sugar .section-intro .picture {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: auto 0 0;
    width: 707px;
    height: auto;
    max-height: 470px;
  }

  .page-case-sugar .section-content,
  .page-case-sugar .section-content .section-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-case-sugar .section-content .section-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 60px;
    height: 100%;
    max-height: 600px;
  }

  .page-case-sugar .section-content .section-wrapper > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .page-case-sugar .section-content .theme-body-content {
    max-width: 620px;
    margin-bottom: 0 !important;
  }

  .page-case-sugar .section-content .sugar-beets-scene img {
    max-width: 347px;
  }

  .page-case-sugar .section-content .theme-arrow {
    display: block;
    position: absolute;
    top: 50vh;
    right: 0;
    width: 300px;
  }

  .page-case-sugar .section-figures {
    padding: 0 120px;
  }

  .page-case-sugar .section-figures .picture {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0 0 auto;
    width: 620px;
    max-height: 40vh;
  }

  .page-case-sugar .section-figures .sugar-chart-scene {
    max-width: inherit;
    min-width: 740px;
    margin: 0 0 auto;
  }

  .page-case-sugar
    .section-figures
    .sugar-chart-scene
    .theme-rectangle:last-child {
    left: 370px;
  }

  .page-case-sugar .section-figures .sugar-chart-scene svg {
    margin-top: -70px;
    margin-left: 120px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-case-sugar .section-content .section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-right: 70px;
  }

  .page-case-sugar .section-content .theme-body-content:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .page-case-sugar .section-content .theme-body-content:last-child {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .page-case-sugar .section-content .sugar-beets-scene {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 0 auto -106px;
  }

  .page-case-sugar .section-content .sugar-beets-scene img {
    max-width: 407px;
  }

  .page-case-sugar .section-content .theme-arrow {
    top: 35vh;
  }

  .page-case-sugar .section-figures .picture {
    max-height: 50vh;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-case-sugar .section-content .section-wrapper {
    padding-right: 80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-case-sugar .section-content .section-wrapper {
    padding-right: 90px;
  }
}

.page-case-flooring .section-content-1,
.page-case-flooring .section-content-1 .theme-body-content,
.page-case-flooring .section-content-2,
.page-case-flooring .section-content-2 .theme-body-content,
.page-case-flooring .section-intro,
.page-case-flooring .section-intro .theme-body-content {
  margin-bottom: 0;
}

.page-case-flooring .section-intro .pictures-wrapper {
  margin: 50px -25px;
}

.page-case-flooring .section-intro .pictures-wrapper .picture-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-case-flooring .section-intro .pictures-wrapper .picture-single {
  height: 50vw;
  width: calc(50vw - 1px);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.page-case-flooring .section-content-1 .picture {
  margin: 50px -25px;
  height: 0;
  padding-bottom: 77%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.page-case-flooring .section-content-1 .theme-arrow {
  display: none;
}

.page-case-flooring .section-content-2 .theme-rectangles {
  margin: 50px auto;
}

.page-case-flooring .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 600px) {
  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle.rectangle-solid,
  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (min-width: 576px) {
  .page-case-flooring .section-content-1 .picture,
  .page-case-flooring .section-intro .pictures-wrapper {
    margin: 50px 0;
  }

  .page-case-flooring .section-content-1 .picture {
    padding-bottom: 70%;
  }
}

@media (min-width: 992px) {
  .page-case-flooring .section-content-1,
  .page-case-flooring .section-content-2,
  .page-case-flooring .section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-case-flooring .section-intro {
    width: 660px;
  }

  .page-case-flooring .section-intro .body-content {
    margin-bottom: 50px;
  }

  .page-case-flooring .section-intro .theme-body-content {
    width: 100%;
  }

  .page-case-flooring .section-intro .pictures-wrapper {
    display: none;
  }

  .page-case-flooring .section-content-1 {
    padding-bottom: 0;
    padding-right: 120px;
  }

  .page-case-flooring .section-content-1 .content-wrapper > :last-child {
    margin-bottom: 0;
  }

  .page-case-flooring .section-content-1 .picture {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100%;
    padding-bottom: 0;
    position: relative;
    margin: 50px 0 0;
    max-height: 627px;
    width: 100%;
    z-index: 1;
    background-size: contain;
    background-position: 0 100%;
  }

  .page-case-flooring .section-content-1 .theme-arrow {
    display: block;
    right: 0;
    left: 50%;
    width: auto;
    z-index: 0;
  }

  .page-case-flooring .section-content-1 .theme-arrow:after {
    left: auto;
    right: 45px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page-case-flooring .section-content-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .page-case-flooring .section-content-2 .theme-body-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: auto;
    margin-right: 620px;
    max-width: 500px;
  }

  .page-case-flooring .section-content-2 .theme-rectangles {
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .page-case-flooring .section-content-2 .theme-rectangles .theme-rectangle {
    margin-top: 0;
    width: 500px;
    max-width: 500px;
  }

  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:first-child,
  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:last-child {
    position: absolute;
    left: -518px;
  }

  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:first-child {
    top: calc(50% + 18px);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:last-child {
    top: calc(50% + 36px);
    margin-bottom: 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-case-flooring .section-intro .theme-body-content {
    margin: auto 0;
  }

  .page-case-flooring .section-content-1 {
    padding-right: 70px;
  }

  .page-case-flooring .section-content-1 .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 1070px;
    margin-top: auto;
    margin-bottom: 70px;
  }

  .page-case-flooring .section-content-1 .content-wrapper > * {
    margin-right: 70px;
  }

  .page-case-flooring .section-content-1 .content-wrapper > :last-child {
    margin-right: 0;
  }

  .page-case-flooring .section-content-1 .content-wrapper > * :last-child {
    margin-bottom: 0;
  }

  .page-case-flooring .section-content-2 .theme-body-content {
    margin-right: 250px;
  }

  .page-case-flooring .section-content-2 .theme-rectangles {
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-case-flooring .section-content-2 .theme-rectangles .theme-rectangle {
    margin-top: 0;
    max-width: 500px;
  }

  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:nth-child(2),
  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:nth-child(3) {
    height: 102px;
  }

  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:first-child,
  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:last-child {
    position: absolute;
    top: auto;
    left: -518px;
    -webkit-transform: none;
    transform: none;
  }

  .page-case-flooring
    .section-content-2
    .theme-rectangles
    .theme-rectangle:last-child {
    position: relative;
    left: auto;
  }
}

.page-case-steel .section-content-1 .picture,
.page-case-steel .section-content-2 .picture,
.page-case-steel .section-intro .picture {
  height: 50vw;
  margin: 0 -25px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.page-case-steel .section-intro {
  margin-bottom: 0;
}

.page-case-steel .section-intro .picture {
  margin-top: 50px;
}

.page-case-steel .section-content-1 .theme-body-content,
.page-case-steel .section-content-2 .theme-body-content {
  margin-top: 50px;
  margin-bottom: 25px;
}

.page-case-steel .section-content-1 .theme-arrow,
.page-case-steel .section-content-2 .theme-arrow {
  display: none;
}

.page-case-steel .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 576px) {
  .page-case-steel .section-content-1 .picture,
  .page-case-steel .section-content-2 .picture,
  .page-case-steel .section-intro .picture {
    margin: 25px 0;
  }

  .page-case-steel .section-content-1 .theme-body-content:first-child,
  .page-case-steel .section-content-2 .theme-body-content:first-child {
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) {
  .page-case-steel .section-content-1,
  .page-case-steel .section-content-2,
  .page-case-steel .section-intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-case-steel .section-content-1 .theme-body-content,
  .page-case-steel .section-content-2 .theme-body-content,
  .page-case-steel .section-intro .theme-body-content {
    max-width: 490px;
  }

  .page-case-steel .section-content-1 .picture,
  .page-case-steel .section-content-2 .picture,
  .page-case-steel .section-intro .picture {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 620px;
    max-height: 50vh;
  }

  .page-case-steel .section-intro {
    padding-bottom: 0;
  }

  .page-case-steel .section-intro p {
    max-width: 570px;
  }

  .page-case-steel .section-intro p:last-of-type {
    margin-bottom: 50px;
  }

  .page-case-steel .section-intro .picture {
    margin: auto 0 0;
    width: 707px;
  }

  .page-case-steel .section-content-1 {
    padding-top: 0;
  }

  .page-case-steel .section-content-1 .picture,
  .page-case-steel .section-content-1 .theme-body-content {
    margin: 0 0 auto;
  }

  .page-case-steel .section-content-1 .theme-arrow {
    display: block;
    position: absolute;
    bottom: 5vh;
    right: -60px;
    width: 440px;
  }

  .page-case-steel .section-content-2 {
    padding-bottom: 0;
  }

  .page-case-steel .section-content-2 .theme-body-content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: auto 0 0;
  }

  .page-case-steel .section-content-2 .picture {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: auto 0 0;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-case-steel .section-content-1 .theme-arrow {
    right: -70px;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-case-steel .section-content-1 .theme-arrow {
    bottom: 10vh;
    right: -80px;
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-case-steel .section-content-1 .theme-arrow {
    right: -90px;
  }
}

.page-locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

.page-locations .scroll-section {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.page-locations .section-locations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-locations .theme-body-content {
  margin-bottom: 0;
}

.page-locations .locations-overview form {
  margin-bottom: 30px;
}

.page-locations .locations-overview .form-group {
  margin-bottom: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.custom-file .page-locations .locations-overview .custom-file-label:after,
.page-locations .locations-overview .btn,
.page-locations .locations-overview .custom-file .custom-file-label:after,
.page-locations
  .locations-overview
  .theme-select-and-go
  .dropdown
  .dropdown-toggle,
.theme-select-and-go
  .dropdown
  .page-locations
  .locations-overview
  .dropdown-toggle {
  text-indent: -10000em;
  background-image: url(../images/icons/icon-search.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  padding-left: 0;
  padding-right: 0;
  margin-left: 16px;
}

.page-locations .locations-overview ul {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.page-locations .locations-overview > ul li {
  position: relative;
  letter-spacing: 1px;
}

.page-locations .locations-overview > ul li > span {
  font-size: 14px;
  padding: 0 0 0 30px;
}

.page-locations .locations-overview > ul li > span:after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  position: absolute;
  left: 8px;
  top: 12px;
  background-image: url(../images/icons/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: 50%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.page-locations .locations-overview > ul span.collapsed:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.page-locations .locations-overview > ul span[data-toggle='collapse'] {
  cursor: pointer;
}

.page-locations .locations-overview > ul > li > ul {
  margin-bottom: 15px;
}

.page-locations .locations-overview > ul > li > span {
  font-family: Exo, sans-serif;
  font-weight: 500;
  color: #6b8ab1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-locations .locations-overview > ul > li > span:after {
  background-image: url(../images/icons/icon-arrow-down-alt.svg);
}

.page-locations .locations-overview > ul ul {
  margin-left: 25px;
}

.page-locations .locations-overview .theme-link,
.page-locations .locations-overview .theme-more .more-link,
.theme-more .page-locations .locations-overview .more-link {
  position: relative;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0;
  font-weight: 500;
  padding-left: 30px;
}

.page-locations .locations-overview .theme-link:before,
.page-locations .locations-overview .theme-more .more-link:before,
.theme-more .page-locations .locations-overview .more-link:before {
  content: '\2022';
  position: absolute;
  left: 8px;
  top: 4px;
  font-size: 20px;
  line-height: 1;
}

.page-locations .section-globe {
  overflow: hidden;
}

.page-locations #world {
  display: none;
  height: 260px;
  margin-top: 50px;
}

.page-locations #world #world-globe {
  top: 100%;
}

.page-locations .theme-modal .modal-inner {
  max-width: 360px;
}

.page-locations .theme-modal .modal-inner > * {
  font-size: 14px;
}

.page-locations .theme-modal .modal-inner p strong {
  display: block;
}

.page-locations .theme-modal .modal-inner h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-locations .theme-modal .modal-inner .theme-contact-info {
  margin: 32px 0;
}

@media (min-width: 560px) {
  .page-locations .locations-overview form {
    max-width: 350px;
  }

  .custom-file .page-locations .locations-overview .custom-file-label:after,
  .page-locations .locations-overview .btn,
  .page-locations .locations-overview .custom-file .custom-file-label:after,
  .page-locations .locations-overview .form-group,
  .page-locations
    .locations-overview
    .theme-select-and-go
    .dropdown
    .dropdown-toggle,
  .theme-select-and-go
    .dropdown
    .page-locations
    .locations-overview
    .dropdown-toggle {
    width: auto;
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .page-locations .locations-overview .form-inline .form-control {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .page-locations {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-height: 0;
    min-width: 100vw;
  }

  .page-locations .section-locations {
    padding-right: 0;
    margin: auto;
    z-index: 1;
  }

  .page-locations .locations-overview form {
    margin-top: 30px;
  }

  .page-locations .locations-overview .form-control {
    width: 300px;
  }

  .page-locations .section-globe {
    display: block;
    overflow: hidden;
    margin-top: 0;
    padding-left: 90px;
    margin-left: -90px;
  }

  .page-locations .section-globe .section-wrapper {
    height: 100%;
  }

  .page-locations #world {
    display: block;
    width: 520px;
    height: 100%;
    margin: 0;
  }

  .page-locations #world #world-globe {
    top: 50%;
  }

  .page-locations #world #world-globe-markers-container > div:before {
    background-color: hsla(0, 0%, 100%, 0);
    -webkit-transition: background-color 0.1s linear 1.3s !important;
    transition: background-color 0.1s linear 1.3s !important;
  }

  .page-locations
    #world
    #world-globe-markers-container
    > div.is-selected:before {
    width: 2px;
    height: 130px;
    left: -43px;
    bottom: -33px;
    -webkit-transform: rotate(-65deg);
    transform: rotate(-65deg);
    background-color: #fff;
    -webkit-transition: background-color 0.1s linear;
    transition: background-color 0.1s linear;
    z-index: 1000;
    top: auto;
    opacity: 1;
    border: 0;
    border-radius: 0;
    -webkit-animation: none;
    animation: none;
  }

  .page-locations #world.view-detail {
    -webkit-transform: translateX(25%) translateY(25%);
    transform: translateX(25%) translateY(25%);
  }

  .page-locations #world.view-detail #world-globe {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  .page-locations .theme-modal {
    position: absolute;
    background: none;
    padding: 0;
    bottom: calc(50% - 27vh);
    left: 200px;
    top: auto;
    right: auto;
    overflow: visible;
  }

  .page-locations .theme-modal .modal-inner {
    width: 360px;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-locations .section-globe {
    margin-left: -290px;
  }

  .page-locations #world {
    -webkit-transform: translateX(25%) translateY(25%);
    transform: translateX(25%) translateY(25%);
  }

  .page-locations #world #world-globe {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@media (min-width: 992px) and (min-height: 1050px) {
  .page-locations .locations-overview form {
    margin-bottom: 60px;
  }

  .page-locations .section-globe {
    padding-left: 250px;
    padding-right: 250px;
    margin-left: -100px;
  }

  .page-locations #world,
  .page-locations #world.view-detail {
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
  }

  .page-locations .theme-modal {
    bottom: 45%;
  }
}

@media (min-width: 1800px) {
  .page-locations {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

.page-join.page-join-top {
  margin-bottom: 0 !important;
}

.page-join.page-join-bottom {
  padding: 0 !important;
}

.page-join .body-content {
  margin-bottom: 50px;
  max-width: 780px;
}

.page-join .theme-more {
  margin-top: 35px;
}

.page-join .theme-square-grid {
  margin: 0;
}

.page-join.page-join-detail .body-content,
.page-join.page-join-detail .theme-body-content {
  max-width: 780px;
}

.page-join.page-join-detail .body-content {
  margin-bottom: 0;
}

.page-join.page-join-detail .theme-body-content {
  margin-bottom: 50px;
}

.page-join.page-join-detail form {
  padding-bottom: 25px;
}

@media (min-width: 992px) {
  .page-join.page-join-bottom {
    padding-left: 72px !important;
  }

  .page-join.page-join-detail .theme-body-content {
    margin-bottom: 60px;
  }

  .page-join .form-group-wrapper,
  .page-join .form-group-wrapper .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-join .form-group-wrapper .form-group > * {
    margin-right: 12px;
    margin-bottom: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }

  .page-join .form-group-wrapper .form-group label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 400;
    color: #4a4a4a;
  }

  .page-join .more-link {
    margin-bottom: 0;
  }

  .page-join
    > .theme-square-grid
    .grid-hor:first-child
    .square-item:nth-child(2),
  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(2)
    .square-item:first-child,
  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(3)
    .square-item:nth-child(2),
  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(4)
    .square-item:first-child,
  .page-join > .theme-square-grid .grid-hor:nth-child(5) {
    display: none;
  }
}

@media (min-width: 1300px) {
  .page-join
    > .theme-square-grid
    .grid-hor:first-child
    .square-item:nth-child(2),
  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(2)
    .square-item:first-child,
  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(3)
    .square-item:nth-child(2),
  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(4)
    .square-item:first-child,
  .page-join > .theme-square-grid .grid-hor:nth-child(5) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(5)
    .square-item:first-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(5)
    .square-item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .page-join
    > .theme-square-grid
    .grid-hor:nth-child(5)
    .square-item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.page-contact form {
  margin-top: 25px;
}

.custom-file .page-contact form .custom-file-label:after,
.page-contact form .btn,
.page-contact form .custom-file .custom-file-label:after,
.page-contact form .theme-select-and-go .dropdown .dropdown-toggle,
.theme-select-and-go .dropdown .page-contact form .dropdown-toggle {
  display: block;
  width: 100%;
}

.page-contact .section-cta .theme-square-grid {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 576px) {
  .custom-file .page-contact form .custom-file-label:after,
  .page-contact form .btn,
  .page-contact form .custom-file .custom-file-label:after,
  .page-contact form .theme-select-and-go .dropdown .dropdown-toggle,
  .theme-select-and-go .dropdown .page-contact form .dropdown-toggle {
    display: inline-block;
    width: auto;
  }
}

@media (min-width: 700px) {
  .page-contact form {
    -webkit-column-gap: 45px;
    column-gap: 45px;
  }

  .page-contact form .form-group {
    width: 100%;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
  }
}

@media (min-width: 992px) {
  .page-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page-contact .scroll-section:first-child {
    margin-right: auto;
  }

  .page-contact .body-content h1 + p {
    display: none;
  }

  .page-contact form {
    -webkit-column-count: 3;
    column-count: 3;
    height: 100%;
    max-height: 600px;
    margin: auto 0;
  }

  .page-contact form > * {
    max-width: 320px;
  }

  .page-contact form textarea.form-control {
    height: 212px;
  }

  .custom-file .page-contact form .custom-file-label:after,
  .page-contact form .btn,
  .page-contact form .custom-file .custom-file-label:after,
  .page-contact form .theme-select-and-go .dropdown .dropdown-toggle,
  .theme-select-and-go .dropdown .page-contact form .dropdown-toggle {
    float: left;
    margin-right: 16px;
  }

  .page-contact form .form-notification {
    position: relative;
    top: 16px;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-contact .body-content h1 + p {
    display: block;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-contact form > * {
    max-width: 420px;
  }

  .page-contact form .form-group:nth-child(4) {
    margin-top: 0;
  }
}

.page-login .body-content .theme-link,
.page-login .body-content .theme-more .more-link,
.theme-more .page-login .body-content .more-link {
  margin: 2rem 0;
}

@media (min-width: 992px) {
  .page-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page-login .body-content ul {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 60px;
    column-gap: 60px;
  }

  .page-login .section-cta {
    margin-left: auto;
  }
}

@media (min-width: 992px) and (min-height: 775px) {
  .page-login .body-content ul {
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    column-gap: 0;
  }
}

@media (min-width: 992px) and (min-height: 900px) {
  .page-login .body-content .theme-link,
  .page-login .body-content .theme-more .more-link,
  .theme-more .page-login .body-content .more-link {
    margin-top: 4rem;
  }
}

@media (min-width: 992px) {
  .page-blog {
    padding-left: 72px !important;
    padding: 32px 0 0;
  }
}

.page-blog .description {
  max-width: 780px;
}

.page-blog .filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.page-blog .filter label {
  margin-right: 16px;
  font-size: 14px;
  color: #495057;
  margin-bottom: 0;
}

.page-blog .filter select {
  max-width: 210px;
}

.page-blog .blog-overview .posts {
  border-bottom: 1px solid #e8f0fb;
  margin-bottom: 32px;
}

.page-blog .blog-overview .blog-post {
  border-top: 1px solid #e8f0fb;
  padding: 24px 0;
  position: relative;
}

@media (min-width: 992px) {
  .page-blog .blog-overview .blog-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.page-blog .blog-overview .blog-post .blog-thumbnail {
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .page-blog .blog-overview .blog-post .blog-thumbnail {
    margin-bottom: 0;
  }
}

.page-blog .blog-overview .blog-post .link-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

.page-blog .blog-overview .blog-post .category {
  z-index: 998;
}

.page-blog .blog-overview .blog-post .blog-thumbnail {
  max-width: 304px;
  width: 100%;
  margin-right: 24px;
}

.page-blog .blog-overview .blog-post .description {
  font-size: 14px;
}

.page-blog .blog-overview .blog-post .read-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-blog .blog-overview .blog-post .read-bar .date,
.page-blog .blog-overview .blog-post .read-bar .time {
  color: #a5bcda;
  font-style: italic;
  font-size: 14px;
  margin-left: 24px;
}

.page-blog .blog-overview .blog-post .read-bar .date svg,
.page-blog .blog-overview .blog-post .read-bar .time svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 992px) {
  .page-blog .blog-overview .blog-post .read-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .page-blog .blog-overview .blog-post .read-bar .date,
  .page-blog .blog-overview .blog-post .read-bar .time {
    margin-left: 0;
    margin-bottom: 8px;
  }
}

@media (min-width: 992px) {
  .page-blog-detail {
    padding-left: 72px !important;
    padding: 32px 0 0;
  }
}

.page-blog-detail .container-fluid {
  max-width: 932px;
}

.page-blog-detail .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-blog-detail .meta .date,
.page-blog-detail .meta .time {
  color: #a5bcda;
  font-style: italic;
  font-size: 14px;
  margin-right: 24px;
}

.page-blog-detail .meta .date svg,
.page-blog-detail .meta .time svg {
  width: 14px;
  height: 14px;
}

.page-blog-detail .description {
  font-size: 14px;
  color: #4a4a4a;
}

.page-blog-detail .blog-body {
  max-width: 735px;
}

.page-blog-detail .prev-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 40px;
  border-top: 1px solid #e8f0fb;
  border-bottom: 1px solid #e8f0fb;
  padding: 24px 0;
}

.page-blog-detail .prev-next .next,
.page-blog-detail .prev-next .prev {
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.page-blog-detail .prev-next .next:hover,
.page-blog-detail .prev-next .prev:hover {
  text-decoration: none;
}

.page-blog-detail .prev-next .next label,
.page-blog-detail .prev-next .prev label {
  color: #aec2dd;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.page-blog-detail .prev-next .prev label:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  margin-right: 12px;
  background: url(../images/icons/icon-arrow-light.svg) no-repeat 50%;
  background-size: auto;
  background-size: 36px auto;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.page-blog-detail .prev-next .next {
  text-align: right;
}

.page-blog-detail .prev-next .next label:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  margin-left: 12px;
  background: url(../images/icons/icon-arrow-light.svg) no-repeat 50%;
  background-size: auto;
  background-size: 36px auto;
}

.page-blog-detail .related h2 {
  font-size: 12px;
  color: #626262;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .page-blog-detail .related .posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.page-blog-detail .related .posts .blog-post {
  background-color: #00358d;
  color: #fff;
  margin-right: 12px;
  font-size: 14px;
  position: relative;
  margin-bottom: 16px;
}

.page-blog-detail .related .posts .blog-post .blog-thumbnail a {
  z-index: 998;
}

.page-blog-detail .related .posts .blog-post h4 {
  color: #fff;
  margin-bottom: 16px;
}

.page-blog-detail .related .posts .blog-post:last-child {
  margin-right: 0;
}

.page-blog-detail .related .posts .blog-post .preview {
  padding: 24px;
}

.page-blog-detail .related .posts .blog-post .link-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
