/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1470px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body,
html {
  height: 100%;
}

body {
  color: #FFFFFF;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

h1,
h2 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.discover {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 30px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .discover {
    left: 30px;
  }
}
.discover .icon {
  width: 48px;
  height: 48px;
}
.discover .icon svg {
  width: 100%;
  height: 100%;
}
.discover .discover-text {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .discover .discover-text {
    writing-mode: vertical-lr;
  }
}

.outer-wrapper {
  background: linear-gradient(51deg, rgb(0, 129, 179) 0%, rgb(0, 40, 81) 100%);
}

p {
  margin: 20px 0;
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.section {
  min-height: 100vh;
  overflow: hidden;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

header {
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  position: absolute;
  transition: all 0.5s ease;
  background-color: transparent;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  padding: 0 23px;
  transition: background-color 0.2s, translate 0.2s;
}
@media (min-width: 992px) {
  header {
    padding: 0 50px;
    height: 120px;
  }
}
header .logo-wrap {
  flex: 1;
  max-width: 500px;
  display: block;
}
header .logo-wrap svg {
  width: 100%;
  height: auto;
}
header .logo-wrap img {
  display: block;
  width: 100%;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 30px;
}
@media (min-width: 992px) {
  header .header-inner {
    gap: 60px;
  }
}
header .header-nav {
  display: none;
}
@media (min-width: 992px) {
  header .header-nav {
    display: flex;
    gap: 30px;
  }
}
@media (min-width: 1300px) {
  header .header-nav {
    gap: 50px;
  }
}
header .header-nav svg {
  width: 48px;
  height: 48px;
}
header ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 30px;
}
@media (min-width: 1300px) {
  header ul {
    gap: 50px;
  }
}
header ul li {
  position: relative;
  display: block;
}
header ul li:last-of-type {
  margin-right: 0;
}
header ul li.current-menu-item a, header ul li.current-page-ancestor a {
  color: #FFFFFF;
}
header ul li a {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  color: #FFFFFF;
  transition: color 0.2s;
  padding: 10px 0;
}
@media (min-width: 1300px) {
  header ul li a {
    font-size: 18px;
  }
}

.mobile-top-wrapper {
  height: 90px;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 23px;
  align-items: center;
}
.mobile-top-wrapper .logo-wrap {
  width: 101px;
  height: 44px;
}
.mobile-top-wrapper .logo-wrap svg {
  width: 100%;
  height: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #001420;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s, z-index 0s 0.4s;
}
@media (min-width: 992px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.active {
  opacity: 1;
  z-index: 101;
  transition: opacity 0.8s, z-index 0s;
}
@media (min-width: 992px) {
  .mobile-nav.active {
    opacity: 0;
    z-index: -1;
  }
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
}
@media (min-width: 768px) {
  .mobile-nav ul {
    padding: 0 30px;
  }
}
.mobile-nav li {
  padding: 20px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.mobile-nav li:first-of-type {
  margin-top: 0;
}
.mobile-nav li:last-of-type {
  padding-bottom: 0;
}
.mobile-nav li a {
  color: #FFFFFF;
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.close-mobile-nav {
  width: 36px;
  height: 36px;
  overflow: hidden;
  display: block;
}
.close-mobile-nav svg {
  width: 100%;
  height: 100%;
}

.mobile-nav-toggle {
  width: 36px;
  height: 36px;
  display: block;
}
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.mobile-nav-toggle svg {
  width: 100%;
  height: 100%;
}

body.scroll-down header {
  position: fixed;
  top: 0;
  left: 0;
  translate: 0 -100%;
}
body.scroll-exit header {
  position: fixed;
  top: 0;
  left: 0;
  translate: 0 -100%;
  transition: none;
}
body.scroll-up header {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1a2d4c;
}

footer {
  background-color: #001420;
  width: 100%;
}
footer .contact-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 60px 0;
}
@media (min-width: 992px) {
  footer .contact-header {
    padding: 80px 0;
  }
}
footer .contact-header.in-view .border {
  width: 100%;
}
footer .contact-header .border {
  border-top: 1px solid #979797;
  width: 0;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}
footer .contact-header .section-heading {
  position: relative;
  width: 100%;
}
footer .contact-header .section-heading h2 {
  line-height: 1;
  font-weight: 900;
  font-size: 10.5vw;
  text-align: center;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
footer .footer-logos {
  display: flex;
  gap: 30px;
}
footer .logo-wrap {
  width: 101px;
  height: 44px;
}
@media (min-width: 992px) {
  footer .logo-wrap {
    width: 101px;
    height: 44px;
  }
}
footer .logo-wrap svg {
  width: 100%;
  height: auto;
}

.contact {
  background-color: #1a2d4c;
  min-height: unset;
  padding: 50px 23px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .contact {
    flex-direction: row;
  }
}
@media (min-width: 1300px) {
  .contact {
    padding: 50px;
    align-items: flex-end;
  }
}
.contact .section-inner {
  display: flex;
  align-content: flex-end;
  justify-content: flex-start;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .contact .section-inner {
    flex-direction: row;
    align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .contact .section-inner .contact-column {
    margin-right: 50px;
  }
}
.contact .section-inner .contact-column:last-of-type {
  margin-right: 0;
}
.contact .section-inner .contact-column strong {
  color: #FFFFFF;
  font-weight: normal;
  font-weight: 700;
}
.contact .section-inner .contact-column a,
.contact .section-inner .contact-column p {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 0;
}
.contact .section-inner .contact-column .seperator {
  margin: 0 10px;
}
.contact .section-inner .contact-column ul {
  display: flex;
}

.about {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 23px;
}
@media (min-width: 992px) {
  .about {
    flex-direction: row;
    padding: 50px;
    justify-content: space-between;
    align-items: center;
    left: 30px;
  }
}
.about .about-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 992px) {
  .about .about-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.about .section-title {
  font-size: 16px;
  margin-bottom: 60px;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .about .section-title {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 0;
  }
}
@media (min-width: 1300px) {
  .about .section-title {
    font-size: 26px;
  }
}
.about.in-view .section-title > *,
.about.in-view .text-content > * {
  opacity: 1;
  transform: translateX(0);
}
.about .section-title > * {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.about .section-title > :nth-child(1) {
  transition-delay: 0s !important;
}
.about .section-title > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.about .section-title > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.about .section-title > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.about .section-title > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.about .section-title > :nth-child(6) {
  transition-delay: 4s !important;
}
.about .section-title > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.about .section-title > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.about .section-title > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.about .text-content {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .about .text-content {
    width: 60%;
  }
}
.about .text-content > * {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.about .text-content > :nth-child(1) {
  transition-delay: 0s !important;
}
.about .text-content > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.about .text-content > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.about .text-content > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.about .text-content > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.about .text-content > :nth-child(6) {
  transition-delay: 4s !important;
}
.about .text-content > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.about .text-content > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.about .text-content > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.about .text-content h2 {
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 30px;
  width: 70%;
  font-size: 32px;
  font-weight: 300;
}
.about .text-content h2 strong {
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .about .text-content h2 {
    font-size: 31px;
    width: unset;
  }
}
@media (min-width: 1600px) {
  .about .text-content h2 {
    font-size: 36px;
  }
}
.about .text-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 37px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: normal;
  font-weight: 300;
}
@media (min-width: 992px) {
  .about .text-content h3 {
    font-size: 43px;
  }
}
@media (min-width: 1600px) {
  .about .text-content h3 {
    font-size: 48px;
  }
}
.about .text-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  width: 90%;
  font-weight: 400;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
@media (min-width: 992px) {
  .about .text-content p {
    font-size: 24px;
  }
}

.video {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  padding: 0 23px;
  overflow: hidden;
  background: linear-gradient(51deg, rgb(0, 129, 179) 0%, rgb(0, 40, 81) 100%);
}
@media (min-width: 768px) {
  .video {
    height: 100vh;
  }
}
@media (min-width: 992px) {
  .video {
    height: 100vh;
    padding: 0;
  }
}

.video-control {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.video-control img {
  width: 56px;
  height: 56px;
}
@media (min-width: 992px) {
  .video-control img {
    width: 97px;
    height: 97px;
  }
}

.video-control:not(.playing) .video-control-pause,
.video-control.playing .video-control-play {
  display: none;
}

.sound-icon {
  z-index: 30;
  width: 100px;
  height: 100px;
  background-color: transparent;
  position: absolute;
  top: 20px;
  left: 20px;
  cursor: pointer;
}

.mute-video {
  background-size: 32px;
  border: 0;
  width: 32px;
  height: 32px;
  background-color: #000000;
}
.mute-video:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f028";
  color: #FFFFFF;
}

.unmute-video {
  background: transparent;
  background-size: 32px;
  background-color: #000000;
}
.unmute-video:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f6a9";
  color: #FFFFFF;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 100%;
  transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .banner-video {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .banner-video {
    height: 100%;
  }
}
.banner-video .play {
  position: absolute;
  width: 54px !important;
  height: 54px !important;
  cursor: pointer;
  background-image: url("../../img/icons/play.svg");
  background-size: cover;
}

.intro.in-view .text-content h1 > .line {
  opacity: 1;
  transform: translateX(0);
}
.intro.in-view .text-content h2 {
  opacity: 1;
  transform: translateY(0);
}
.intro .text-content {
  width: 100%;
  margin-left: auto;
  position: relative;
}
@media (min-width: 992px) {
  .intro .text-content {
    width: 60%;
  }
}
.intro .text-content h1 {
  color: #0065FF;
  line-height: 1.1;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -2px;
}
.intro .text-content h1 strong {
  color: #FFFFFF;
  font-weight: 300;
}
@media (min-width: 992px) {
  .intro .text-content h1 {
    font-size: 50px;
  }
}
@media (min-width: 1300px) {
  .intro .text-content h1 {
    font-size: 64px;
  }
}
.intro .text-content h1 > .line {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.intro .text-content h1 > :nth-child(1) {
  transition-delay: 0s !important;
}
.intro .text-content h1 > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.intro .text-content h1 > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.intro .text-content h1 > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.intro .text-content h1 > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.intro .text-content h1 > :nth-child(6) {
  transition-delay: 4s !important;
}
.intro .text-content h1 > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.intro .text-content h1 > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.intro .text-content h1 > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.intro .text-content h2 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  width: 100%;
  font-weight: normal;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s, transform 2.4s;
}
@media (min-width: 992px) {
  .intro .text-content h2 {
    font-size: 24px;
    width: 100%;
    max-width: 550px;
  }
}

.charge-vault {
  position: relative;
}
.charge-vault .section-title h2 {
  font-size: 16px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .charge-vault .section-title h2 {
    margin-bottom: 0;
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .charge-vault .section-title h2 {
    font-size: 26px;
  }
}
.charge-vault.in-view .border {
  width: 100%;
}
.charge-vault.in-view .section-title h2 > * {
  opacity: 1;
  transform: translateX(0);
}
.charge-vault.in-view .section-title h3 > .line {
  opacity: 1;
  transform: translateX(0);
}
.charge-vault.in-view .top-wrapper .image > .overlay {
  width: 0;
}
.charge-vault.in-view .section-title > *,
.charge-vault.in-view .text-content > * {
  opacity: 1;
  transform: translateX(0);
}
.charge-vault .border {
  border-top: 1px solid #FFFFFF;
  width: 0;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}
.charge-vault .top-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 43px 23px 23px 23px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .charge-vault .top-wrapper {
    flex-direction: row;
    padding: 50px;
  }
}
.charge-vault .top-wrapper .image {
  width: 100%;
  height: 252px;
  margin-top: 30px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 992px) {
  .charge-vault .top-wrapper .image {
    width: 60%;
    margin-top: 0px;
    height: 500px;
  }
}
@media (min-width: 1300px) {
  .charge-vault .top-wrapper .image {
    height: 660px;
  }
}
.charge-vault .top-wrapper .image > .overlay {
  width: 100%;
  position: relative;
  transition: all 1s ease-in-out;
}
.charge-vault .top-wrapper .image > :nth-child(1) {
  transition-delay: 0s !important;
}
.charge-vault .top-wrapper .image > :nth-child(2) {
  transition-delay: 0.5s !important;
}
.charge-vault .top-wrapper .image > :nth-child(3) {
  transition-delay: 1s !important;
}
.charge-vault .top-wrapper .image > :nth-child(4) {
  transition-delay: 1.5s !important;
}
.charge-vault .top-wrapper .image > :nth-child(5) {
  transition-delay: 2s !important;
}
.charge-vault .top-wrapper .image > :nth-child(6) {
  transition-delay: 2.5s !important;
}
.charge-vault .top-wrapper .image > :nth-child(7) {
  transition-delay: 3s !important;
}
.charge-vault .top-wrapper .image > :nth-child(8) {
  transition-delay: 3.5s !important;
}
.charge-vault .top-wrapper .image > :nth-child(9) {
  transition-delay: 4s !important;
}
.charge-vault .top-wrapper .image .overlay {
  background-color: #001420;
  height: 33.3333333333%;
  transition: all 1s ease-in-out;
}
.charge-vault .top-wrapper .image::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #001420;
  opacity: 0.5;
  z-index: 3;
}
.charge-vault .top-wrapper .image::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #001420;
  mix-blend-mode: color;
  z-index: 1;
}
.charge-vault .top-wrapper .image-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(1);
}
.charge-vault .section-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.charge-vault .section-title h3 {
  color: #FFFFFF;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
}
.charge-vault .section-title h3 strong {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .charge-vault .section-title h3 {
    font-size: 3.9vw;
  }
}
@media (min-width: 992px) {
  .charge-vault .section-title h3 {
    font-size: 3.8vw;
  }
}
@media (min-width: 1300px) {
  .charge-vault .section-title h3 {
    font-size: 3.9vw;
  }
}
@media (min-width: 1600px) {
  .charge-vault .section-title h3 {
    font-size: 3.9vw;
  }
}
.charge-vault .section-title h3 > .line {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.charge-vault .section-title h3 > :nth-child(1) {
  transition-delay: 0s !important;
}
.charge-vault .section-title h3 > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.charge-vault .section-title h3 > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.charge-vault .section-title h3 > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.charge-vault .section-title h3 > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.charge-vault .section-title h3 > :nth-child(6) {
  transition-delay: 4s !important;
}
.charge-vault .section-title h3 > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.charge-vault .section-title h3 > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.charge-vault .section-title h3 > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.charge-vault .bottom-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 23px 23px 80px 23px;
}
@media (min-width: 992px) {
  .charge-vault .bottom-wrapper {
    padding: 50px;
  }
}
.charge-vault .text-content {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .charge-vault .text-content {
    width: 60%;
  }
}
.charge-vault .text-content > * {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.charge-vault .text-content > :nth-child(1) {
  transition-delay: 0s !important;
}
.charge-vault .text-content > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.charge-vault .text-content > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.charge-vault .text-content > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.charge-vault .text-content > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.charge-vault .text-content > :nth-child(6) {
  transition-delay: 4s !important;
}
.charge-vault .text-content > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.charge-vault .text-content > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.charge-vault .text-content > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.charge-vault .text-content img {
  width: 267px;
  height: 60px;
  margin-bottom: 40px;
}
@media (min-width: 1300px) {
  .charge-vault .text-content img {
    width: 387px;
    height: 87px;
  }
}
.charge-vault .text-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 37px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: 300;
}
@media (min-width: 992px) {
  .charge-vault .text-content h3 {
    font-size: 34px;
  }
}
@media (min-width: 1300px) {
  .charge-vault .text-content h3 {
    font-size: 43px;
  }
}
@media (min-width: 1600px) {
  .charge-vault .text-content h3 {
    font-size: 46px;
  }
}
.charge-vault .text-content .text-brochure {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .charge-vault .text-content .text-brochure {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }
}
.charge-vault .text-content .text-brochure .text {
  width: 100%;
}
@media (min-width: 992px) {
  .charge-vault .text-content .text-brochure .text {
    flex-basis: 50%;
    flex-grow: 1;
    max-width: 50%;
    min-width: 400px;
  }
}
.charge-vault .text-content .text-brochure .brochure {
  width: 100%;
}
@media (min-width: 992px) {
  .charge-vault .text-content .text-brochure .brochure {
    flex-basis: 40%;
  }
}
.charge-vault .text-content .text-brochure .brochure p {
  margin-top: 0;
}
@media (min-width: 992px) {
  .charge-vault .text-content .text-brochure .brochure p {
    margin-top: 20px;
  }
}
.charge-vault .text-content .text-brochure .button {
  position: relative;
  display: inline-flex;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .charge-vault .text-content .text-brochure .button {
    width: auto;
  }
}
.charge-vault .text-content .text-brochure .button span {
  color: #001420;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  padding: 15px 40px;
  transition: 0.2s 0.1s;
  background-color: #FFFFFF;
  width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .charge-vault .text-content .text-brochure .button span {
    width: auto;
  }
}
.charge-vault .text-content .text-brochure .button span:hover {
  color: rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}
.charge-vault .text-content .text-brochure .button::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}
.charge-vault .text-content .text-brochure .button:hover::before {
  width: 0;
}
.charge-vault .text-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: normal;
}
@media (min-width: 992px) {
  .charge-vault .text-content p {
    font-size: 18px;
  }
}

.tooltip {
  transform: translate(-50%, -200%);
  display: none;
  position: absolute;
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  padding: 15px 10px;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 277px;
  top: 0;
  left: 50%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
}

.tooltip:after {
  content: "";
  display: block;
  position: absolute;
  border-color: #0065ff rgba(0, 101, 255, 0);
  border-style: solid;
  border-width: 15px 15px 0;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
}

.word-slider-wrapper {
  height: auto;
  position: relative;
  position: relative;
  display: block;
  width: 100%;
  z-index: 2;
}
.word-slider-wrapper.in-view .border {
  width: 100%;
}
.word-slider-wrapper .border {
  border-top: 1px solid #FFFFFF;
  width: 0;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.word-slider-wrapper .swiper-slide {
  position: relative;
}
.word-slider-wrapper .word-slider-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 80px 23px;
}
@media (min-width: 992px) {
  .word-slider-wrapper .word-slider-content {
    top: calc(50% - 278px);
    justify-content: flex-start;
    padding: 0 50px;
    height: 556px;
    width: 100%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1300px) {
  .word-slider-wrapper .word-slider-content {
    padding: 0 0px 0 50px;
    justify-content: flex-start;
    width: 100%;
  }
}
@media (min-width: 1600px) {
  .word-slider-wrapper .word-slider-content {
    padding: 0;
    justify-content: flex-start;
    width: 60%;
  }
}
.word-slider-wrapper .word-slider-content .featured-word {
  color: #FFFFFF;
  font-size: 18px;
  margin-right: 0px;
  font-weight: unset;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
@media (min-width: 768px) {
  .word-slider-wrapper .word-slider-content .featured-word {
    margin-right: 135px;
  }
}
@media (min-width: 992px) {
  .word-slider-wrapper .word-slider-content .featured-word {
    font-size: 36px;
    margin-right: 0px;
  }
}
@media (min-width: 1300px) {
  .word-slider-wrapper .word-slider-content .featured-word {
    font-size: 40px;
    margin-right: 0px;
  }
}
@media (min-width: 1600px) {
  .word-slider-wrapper .word-slider-content .featured-word {
    font-size: 40px;
    margin-right: 60px;
  }
}
.word-slider-wrapper .word-slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(40% + 25px);
}
@media (min-width: 768px) {
  .word-slider-wrapper .word-slider {
    width: 60%;
  }
}
@media (min-width: 1600px) {
  .word-slider-wrapper .word-slider {
    width: 600px;
    right: auto;
    left: 40%;
  }
}
.word-slider-wrapper .word-slider .swiper {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.word-slider-wrapper .word-slider .swiper-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
}
.word-slider-wrapper .word-slider .swiper-slide {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.word-slider-wrapper .word-slider .swiper-slide .scrollable-word {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 100;
  line-height: 1.5;
  margin-top: 3px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}
@media (min-width: 992px) {
  .word-slider-wrapper .word-slider .swiper-slide .scrollable-word {
    font-size: 36px;
    margin-top: 0px;
  }
}
@media (min-width: 1300px) {
  .word-slider-wrapper .word-slider .swiper-slide .scrollable-word {
    font-size: 40px;
    margin-top: 0;
  }
}
.word-slider-wrapper .word-slider .swiper-slide.swiper-slide-active .scrollable-word {
  color: #FFFFFF;
}

.benefits {
  padding: 140px 50px;
  min-height: auto;
  position: relative;
}
@media (min-width: 992px) {
  .benefits {
    padding: 200px 50px;
  }
}
.benefits.in-view .benefits-wrapper > * {
  opacity: 1;
  transform: translateY(0);
}
.benefits.in-view .border {
  width: 100%;
}
.benefits .border {
  border-top: 1px solid #FFFFFF;
  width: 0;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.benefits .benefits-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 992px) {
  .benefits .benefits-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }
}
.benefits .benefits-wrapper > * {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.benefits .benefits-wrapper > :nth-child(1) {
  transition-delay: 0s !important;
}
.benefits .benefits-wrapper > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.benefits .benefits-wrapper > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.benefits .benefits-wrapper > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.benefits .benefits-wrapper > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.benefits .benefits-wrapper > :nth-child(6) {
  transition-delay: 4s !important;
}
.benefits .benefits-wrapper > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.benefits .benefits-wrapper > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.benefits .benefits-wrapper > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.benefits .benefits-wrapper .benefit {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .benefits .benefits-wrapper .benefit {
    width: 20%;
    margin-bottom: 0;
    padding: 0 15px;
  }
}
@media (min-width: 1300px) {
  .benefits .benefits-wrapper .benefit {
    padding: 0 30px;
    width: 20%;
    margin-bottom: 0;
  }
}
.benefits .benefits-wrapper .benefit:last-of-type {
  margin-bottom: 0;
}
.benefits .benefits-wrapper h2 {
  color: #FFFFFF;
  font-size: 26px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .benefits .benefits-wrapper h2 {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .benefits .benefits-wrapper h2 {
    font-size: 30px;
  }
}
.benefits .benefits-wrapper h3 {
  color: #FFFFFF;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .benefits .benefits-wrapper h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .benefits .benefits-wrapper h3 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1600px) {
  .benefits .benefits-wrapper h3 {
    font-size: 25px;
  }
}
.benefits .benefits-wrapper p {
  font-size: 16px;
  color: #FFFFFF;
  margin: 0;
}
@media (min-width: 992px) {
  .benefits .benefits-wrapper p {
    font-size: 14px;
  }
}
@media (min-width: 1300px) {
  .benefits .benefits-wrapper p {
    font-size: 16px;
    max-width: 200px;
  }
}

.benefits-image {
  position: relative;
  width: 100%;
  height: 33vw;
  overflow: hidden;
}
@media (min-width: 992px) {
  .benefits-image {
    height: 270px;
  }
}
@media (min-width: 1600px) {
  .benefits-image {
    height: 360px;
  }
}
.benefits-image .simpleParallax {
  display: block;
  width: 100%;
  height: 100%;
}
.benefits-image .simpleParallax::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #001420;
  opacity: 0.5;
  z-index: 3;
}
.benefits-image .simpleParallax::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #001420;
  mix-blend-mode: color;
  z-index: 1;
}
.benefits-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.team {
  position: relative;
  min-height: 100vh;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.team .section-title h2 {
  font-size: 16px;
}
@media (min-width: 992px) {
  .team .section-title h2 {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .team .section-title h2 {
    font-size: 26px;
  }
}
.team.in-view .border {
  width: 100%;
}
.team.in-view .section-title h2 > * {
  opacity: 1;
  transform: translateX(0);
}
.team.in-view .section-title h3 > .line {
  opacity: 1;
  transform: translateX(0);
}
.team.in-view .top-wrapper .image > .overlay {
  width: 0;
}
.team.in-view .section-title > *,
.team.in-view .text-content > * {
  opacity: 1;
  transform: translateX(0);
}
.team .border {
  border-top: 1px solid #FFFFFF;
  width: 0;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 0;
  top: 0;
}
.team .top-wrapper {
  width: 100%;
  display: flex;
  padding: 50px 23px;
  position: relative;
  flex-direction: column;
}
@media (min-width: 992px) {
  .team .top-wrapper {
    flex-direction: row;
    justify-content: space-between;
    padding: 50px;
  }
}
.team .top-wrapper .image {
  width: 60%;
  height: 660px;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
.team .top-wrapper .image > .overlay {
  width: 100%;
  transition: all 1s ease-in-out;
}
.team .top-wrapper .image > :nth-child(1) {
  transition-delay: 0s !important;
}
.team .top-wrapper .image > :nth-child(2) {
  transition-delay: 0.5s !important;
}
.team .top-wrapper .image > :nth-child(3) {
  transition-delay: 1s !important;
}
.team .top-wrapper .image > :nth-child(4) {
  transition-delay: 1.5s !important;
}
.team .top-wrapper .image > :nth-child(5) {
  transition-delay: 2s !important;
}
.team .top-wrapper .image > :nth-child(6) {
  transition-delay: 2.5s !important;
}
.team .top-wrapper .image > :nth-child(7) {
  transition-delay: 3s !important;
}
.team .top-wrapper .image > :nth-child(8) {
  transition-delay: 3.5s !important;
}
.team .top-wrapper .image > :nth-child(9) {
  transition-delay: 4s !important;
}
.team .top-wrapper .image .overlay {
  background-color: #001420;
  height: 33.3333333333%;
  transition: all 1s ease-in-out;
}
.team .top-wrapper .team-wrapper {
  width: 100%;
}
@media (min-width: 992px) {
  .team .top-wrapper .team-wrapper {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (min-width: 1300px) {
  .team .top-wrapper .team-wrapper {
    width: 70%;
  }
}
@media (min-width: 1600px) {
  .team .top-wrapper .team-wrapper {
    width: 60%;
  }
}
.team .top-wrapper .team-member {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 30px;
  padding: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .team .top-wrapper .team-member {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .team .top-wrapper .team-member {
    width: 50%;
    padding: 0 15px;
  }
}
@media (min-width: 1300px) {
  .team .top-wrapper .team-member {
    width: 40%;
  }
}
.team .top-wrapper .team-member-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .team .top-wrapper .team-member-inner {
    padding: 0;
  }
}
.team .top-wrapper .team-member-inner .bottom-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.team .top-wrapper .team-member-img {
  width: 100%;
}
.team .top-wrapper .team-member-img-content {
  width: 100%;
  height: 345px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .team .top-wrapper .team-member-img-content {
    height: 400px;
  }
}
.team .top-wrapper .team-member-info {
  width: 100%;
  padding: 25px 0;
}
.team .top-wrapper .team-member-info h2 {
  color: #FFFFFF;
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}
.team .top-wrapper .team-member-info a,
.team .top-wrapper .team-member-info p {
  color: #FFFFFF;
  font-size: 18px;
}
.team .top-wrapper .team-member-info .button {
  position: relative;
  display: inline-flex;
  border-radius: 30px;
  overflow: hidden;
}
.team .top-wrapper .team-member-info .button span {
  color: #001420;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  padding: 15px 40px;
  transition: 0.2s 0.1s;
  background-color: #FFFFFF;
}
.team .top-wrapper .team-member-info .button span:hover {
  color: rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}
.team .top-wrapper .team-member-info .button::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}
.team .top-wrapper .team-member-info .button:hover::before {
  width: 0;
}
.team .section-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team .section-title h3 {
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 32px;
}
.team .section-title h3 strong {
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .team .section-title h3 {
    font-size: 85px;
  }
}
@media (min-width: 1600px) {
  .team .section-title h3 {
    font-size: 100px;
  }
}
.team .section-title h3 > .line {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.team .section-title h3 > :nth-child(1) {
  transition-delay: 0s !important;
}
.team .section-title h3 > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.team .section-title h3 > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.team .section-title h3 > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.team .section-title h3 > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.team .section-title h3 > :nth-child(6) {
  transition-delay: 4s !important;
}
.team .section-title h3 > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.team .section-title h3 > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.team .section-title h3 > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.team .bottom-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 50px;
}
.team .text-content {
  width: 60%;
  position: relative;
}
.team .text-content > * {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.4s, transform 2.4s;
}
.team .text-content > :nth-child(1) {
  transition-delay: 0s !important;
}
.team .text-content > :nth-child(2) {
  transition-delay: 0.8s !important;
}
.team .text-content > :nth-child(3) {
  transition-delay: 1.6s !important;
}
.team .text-content > :nth-child(4) {
  transition-delay: 2.4s !important;
}
.team .text-content > :nth-child(5) {
  transition-delay: 3.2s !important;
}
.team .text-content > :nth-child(6) {
  transition-delay: 4s !important;
}
.team .text-content > :nth-child(7) {
  transition-delay: 4.8s !important;
}
.team .text-content > :nth-child(8) {
  transition-delay: 5.6s !important;
}
.team .text-content > :nth-child(9) {
  transition-delay: 6.4s !important;
}
.team .text-content img {
  width: 267px;
  height: 60px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .team .text-content img {
    width: 387px;
    height: 87px;
  }
}
.team .text-content h3 {
  font-family: "Inter", sans-serif;
  font-size: 37px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: normal;
}
@media (min-width: 992px) {
  .team .text-content h3 {
    font-size: 43px;
  }
}
@media (min-width: 1600px) {
  .team .text-content h3 {
    font-size: 46px;
  }
}
.team .text-content .text-brochure {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.team .text-content .text-brochure .text {
  width: 50%;
}
.team .text-content .text-brochure .brochure {
  width: 40%;
}
.team .text-content .text-brochure .button {
  position: relative;
  display: inline-flex;
  border-radius: 30px;
  overflow: hidden;
}
.team .text-content .text-brochure .button span {
  color: #FFFFFF;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  padding: 15px 40px;
  transition: 0.2s 0.1s;
  background-color: #FF5D31;
}
.team .text-content .text-brochure .button span:hover {
  color: rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}
.team .text-content .text-brochure .button::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}
.team .text-content .text-brochure .button:hover::before {
  width: 0;
}
.team .text-content p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  font-weight: normal;
}
@media (min-width: 992px) {
  .team .text-content p {
    font-size: 18px;
  }
}

.team-member-details {
  width: 100%;
  display: none;
  padding: 0 30px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .team-member-details {
    margin-bottom: 40px;
    padding: 0;
  }
}
.team-member-details.active {
  display: block;
}
.team-member-details.active .team-member-img-content .orange-block {
  transition-delay: 3s;
  width: 50%;
}
@media (min-width: 1300px) {
  .team-member-details.active .team-member-img-content .orange-block {
    width: 50%;
  }
}
.team-member-details .member-wrapper {
  position: fixed;
  background-color: rgba(0, 20, 32, 0.7);
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .team-member-details .member-wrapper {
    position: fixed;
  }
}
.team-member-details .member-wrapper .details {
  width: 90%;
  order: 1;
  background-color: #4D5B63;
  padding: 30px;
  position: relative;
}
@media (min-width: 992px) {
  .team-member-details .member-wrapper .details {
    order: 0;
    width: 50%;
  }
}
.team-member-details .member-wrapper .details .close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.team-member-details .member-wrapper .details .close svg {
  width: 100%;
  height: 100%;
}
.team-member-details .member-wrapper .details .team-member-img-large {
  background-size: cover;
  width: 150px;
  height: 150px;
  order: 0;
}
@media (min-width: 992px) {
  .team-member-details .member-wrapper .details .team-member-img-large {
    order: 1;
    margin-bottom: 0;
    width: 200px;
    height: 200px;
  }
}
.team-member-details .member-wrapper .details .team-member-img-large .team-member-img-content {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.team-member-details .member-wrapper .details .team-member-info {
  position: relative;
  padding: 40px 0 0;
}
.team-member-details .member-wrapper .details .team-member-info h2 {
  color: #FFFFFF;
  font-size: 20px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .team-member-details .member-wrapper .details .team-member-info h2 {
    font-size: 23px;
  }
}
.team-member-details .member-wrapper .details .team-member-info h3 {
  margin-bottom: 40px;
  color: #FFFFFF;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .team-member-details .member-wrapper .details .team-member-info h3 {
    font-size: 20px;
  }
}
.team-member-details .member-wrapper .details .team-member-info p {
  color: #FFFFFF;
  margin-top: 20px;
  margin-bottom: 0;
}
.team-member-details .member-wrapper .details .team-member-description {
  width: 100%;
  margin-top: 20px;
}
.team-member-details .member-wrapper .details .team-member-description p {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 200;
  color: #979797;
}
@media (min-width: 768px) {
  .team-member-details .member-wrapper .details .team-member-description p {
    font-size: 16px;
  }
}
.team-member-details .member-wrapper .details .team-member-description p:first-of-type {
  margin-top: 0;
}
