html .wowo {
  opacity: 0;
}
html .wowo.animated {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  visibility: visible;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.delay-in-1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.delay-in-2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-in-3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-in-4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-in-5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-in-6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay-in-7 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.delay-in-8 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay-in-9 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.delay-in-10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-in-11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.delay-in-12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.delay-in-13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.delay-in-14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.delay-in-15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-in-16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.delay-in-17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.delay-in-18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.delay-in-19 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.delay-in-20 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-in-21 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.delay-in-22 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.delay-in-23 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.delay-in-24 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.delay-in-25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.delay-in-26 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.delay-in-27 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.delay-in-28 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.delay-in-29 {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.delay-in-30 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.fadeIn.animated {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.fadeInUp.animated {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.fadeInLeft.animated {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

.fadeInRight.animated {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

.zoomOut.animated {
  -webkit-animation-name: zoomOut;
          animation-name: zoomOut;
}

.fillWidth.animated {
  -webkit-animation-name: fillWidth;
          animation-name: fillWidth;
}

.circleAnimate.animated {
  -webkit-animation-name: circleAnimate;
          animation-name: circleAnimate;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
            transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-30px, 0, 0);
            transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
            transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(30px, 0, 0);
            transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.08);
            transform: scale(1.08);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fillWidth {
  0% {
    opacity: 1;
    stroke-dashoffset: 700;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes fillWidth {
  0% {
    opacity: 1;
    stroke-dashoffset: 700;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes circleAnimate {
  0% {
    opacity: 0;
    r: 0;
  }
  to {
    opacity: 1;
    r: 8;
  }
}
@keyframes circleAnimate {
  0% {
    opacity: 0;
    r: 0;
  }
  to {
    opacity: 1;
    r: 8;
  }
}
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*:focus-visible {
  outline: none !important;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none !important;
}

html {
  scroll-behavior: unset !important;
  height: 100%;
}
html > .hidden {
  overflow: hidden;
}

body {
  width: 100%;
  overflow-x: clip !important;
  position: relative;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
body.overflow-hidden {
  overflow: hidden !important;
}
body.body-opacity {
  opacity: 0;
}

html,
body {
  font-size: 20px;
  color: #000000;
}

section {
  max-width: 100vw;
  overflow-x: clip !important;
  overflow-y: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767.9px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

h1 {
  font-size: 79px;
  line-height: 1.353;
}
@media (max-width: 767.9px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 575.9px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 55px;
  line-height: 1.2;
}
@media (max-width: 767.9px) {
  h2 {
    font-size: 38px;
  }
}
@media (max-width: 575.9px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: 46px;
  line-height: 1.2;
}
@media (max-width: 767.9px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 575.9px) {
  h3 {
    font-size: 32px;
  }
}

h4 {
  font-size: 38px;
  line-height: 1.2;
}
@media (max-width: 767.9px) {
  h4 {
    font-size: 30px;
  }
}

h5 {
  font-size: 30px;
  line-height: 1.2;
}
@media (max-width: 767.9px) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 22px;
  line-height: 1.2;
}
@media (max-width: 767.9px) {
  h6 {
    font-size: 18px;
  }
}

.header-logo:hover, .footer-logo:hover {
  opacity: 1;
}
.header-logo a:hover, .footer-logo a:hover {
  opacity: 1;
}

a {
  cursor: pointer;
  color: inherit;
  -webkit-transition: color 0.2s, opacity 0.2s;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

p {
  margin: 0 0 27px;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.9px) {
  p {
    margin-bottom: 15px;
  }
}
p a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
}
p span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

ul,
ol {
  padding-left: 30px;
  margin: 0 0 27px;
}
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}
ul li,
ol li {
  position: relative;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

blockquote {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

img {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

svg {
  max-width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.play-iframe-video {
  display: block;
  width: 100%;
  max-width: 100%;
}

video, iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.img, .video-box, .media-box, .bg-box, .wp-block-image, .wp-block-video, .common {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.img video, .img iframe, .video-box video, .video-box iframe, .media-box video, .media-box iframe, .bg-box video, .bg-box iframe, .wp-block-image video, .wp-block-image iframe, .wp-block-video video, .wp-block-video iframe, .common video, .common iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  font-family: inherit;
  display: block;
  -webkit-transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, filter 0.2s;
  transition: opacity 0.2s, filter 0.2s, -webkit-filter 0.2s;
}
input::-webkit-input-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
input::-moz-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
input:-ms-input-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
input::-ms-input-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
input::placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
input:focus {
  opacity: 0.8;
}

button, select, textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  outline: none;
  border: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  font-family: inherit;
  display: block;
  -webkit-transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, -webkit-filter 0.2s;
  transition: opacity 0.2s, filter 0.2s;
  transition: opacity 0.2s, filter 0.2s, -webkit-filter 0.2s;
}

textarea {
  resize: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: inherit;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: inherit;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: inherit;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: inherit;
}

button,
input[type=checkbox],
input[type=radio],
input[type=submit] {
  cursor: pointer;
}

button,
input[type=checkbox],
input[type=radio],
input[type=submit],
::before,
::after {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

select {
  border-radius: 0;
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.content {
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1580px;
  padding: 0 30px;
}
@media (max-width: 767.9px) {
  .content {
    padding: 0 25px;
  }
}
.content h1 {
  margin-top: 0;
}

.filter-load.is-active {
  min-height: 42vh;
  padding: 50px 0;
}
.filter-load.is-active a {
  display: none;
}
.filter-load.is-active:after {
  content: "";
  display: block;
  width: 5vw;
  height: 5vw;
  aspect-ratio: 1;
  border: 5px solid #ffffff;
  border-top: 5px solid #000000;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: auto;
}
@media (max-width: 767.9px) {
  .filter-load.is-active:after {
    width: 40px;
    height: 40px;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loading {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.loading-outer {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.loading-outer.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.loading-outer .loading {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 2px #000000;
  border-bottom-color: transparent;
  -webkit-animation: loading 1s infinite linear;
          animation: loading 1s infinite linear;
}

.btn a,
.btn .wp-block-button__link,
.wp-block-button a,
.wp-block-button .wp-block-button__link {
  -webkit-transition: background-color 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
  transition: background-color 0.2s, color 0.2s, border 0.2s, opacity 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  margin: 0 auto;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  padding: 5px 15px;
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000;
}
.btn a:hover,
.btn .wp-block-button__link:hover,
.wp-block-button a:hover,
.wp-block-button .wp-block-button__link:hover {
  opacity: 1;
  background-color: #000000;
  color: #ffffff;
}
.btn input[type=submit],
.wp-block-button input[type=submit] {
  font-size: 14px;
  line-height: 16px;
  padding: 0 15px;
  text-transform: uppercase;
}

.wp-block-button .wp-block-button__link::after {
  content: none;
}

.video {
  padding-bottom: 144px;
}
@media (max-width: 576.9px) {
  .video {
    padding-bottom: 94px;
  }
}
.video .container .video-link {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video .container .video-link .img {
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.video .container .video-link .img:hover div {
  scale: 1.18;
}
.video .container .video-link .img div {
  padding-top: 42.7%;
  background-size: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.video .container .video-link img {
  width: 46px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .video .container .video-link img {
    width: 32px;
  }
}
.video .container .video-link .data-video {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.video-box {
  overflow: visible !important;
}
.video-box .data-video {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: -99;
}

.video-light-box {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
}
.video-light-box:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0.8;
}
.video-light-box .close {
  opacity: 1;
  background: none;
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  z-index: 9;
  right: -7px;
  top: -30px;
  -webkit-transition: All 0.2s ease-in-out;
  transition: All 0.2s ease-in-out;
  cursor: pointer;
}
.video-light-box .close:before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  -webkit-transform: rotate(-45deg) translateZ(0);
          transform: rotate(-45deg) translateZ(0);
  position: absolute;
  left: 3px;
  top: 13px;
  -webkit-transition: All 0.3s ease-in-out;
  transition: All 0.3s ease-in-out;
}
.video-light-box .close:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  -webkit-transform: rotate(45deg) translateZ(0);
          transform: rotate(45deg) translateZ(0);
  position: absolute;
  left: 3px;
  top: 13px;
  transition: All 0.3s ease-in-out;
  -webkit-transition: All 0.3s ease-in-out;
  -moz-transition: All 0.3s ease-in-out;
  -o-transition: All 0.3s ease-in-out;
}
.video-light-box .video-box {
  max-width: 1134px;
  width: 100%;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
}
@media (max-width: 1200px) {
  .video-light-box .video-box {
    width: 96%;
  }
}
.video-light-box .video-box video {
  width: 100%;
}
.video-light-box .video-box iframe {
  width: 100%;
  height: 641px;
}
@media (max-width: 1200px) {
  .video-light-box .video-box iframe {
    height: 52.9vw;
  }
}

.splash-section {
  padding: 0;
  position: relative;
  z-index: 9;
  min-height: var(--screenH);
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
}
.splash-section .container {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 90px;
}
.splash-section .container .content {
  max-width: unset;
  width: 100%;
}
.splash-section .container .content h1 {
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.splash-section .container .content h1 img {
  display: block;
  width: 384px;
  max-width: 100%;
}
.splash-section .bottom-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 34px;
  line-height: 116%;
  letter-spacing: -0.02em;
  margin: 0;
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 53.8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  width: 100%;
  text-align: center;
  padding: 0 25px;
}
@media (max-width: 767.9px) {
  .splash-section .bottom-text {
    font-size: 30px;
  }
}
@media (max-width: 575.9px) {
  .splash-section .bottom-text {
    font-size: 20px;
  }
}
.splash-section .bg-box {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.splash-section .bg-box video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}