@charset "UTF-8";
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;
}

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

@-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(60px, 0, 0);
            transform: translate3d(60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
            transform: translate3d(60px, 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 fadeFullUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes fadeFullUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0%);
            transform: translateY(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;
  }
}
@font-face {
  font-family: "Publico Banner Web";
  src: url("../fonts/PublicoBannerWeb-Light.eot");
  src: url("../fonts/PublicoBannerWeb-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/PublicoBannerWeb-Light.woff2") format("woff2"), url("../fonts/PublicoBannerWeb-Light.woff") format("woff"), url("../fonts/PublicoBannerWeb-Light.ttf") format("truetype"), url("../fonts/PublicoBannerWeb-Light.svg#PublicoBannerWeb-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Publico Banner Web Roman";
  src: url("../fonts/PublicoBannerWeb-Roman.eot");
  src: url("../fonts/PublicoBannerWeb-Roman.eot?#iefix") format("embedded-opentype"), url("../fonts/PublicoBannerWeb-Roman.woff2") format("woff2"), url("../fonts/PublicoBannerWeb-Roman.woff") format("woff"), url("../fonts/PublicoBannerWeb-Roman.ttf") format("truetype"), url("../fonts/PublicoBannerWeb-Roman.svg#PublicoBannerWeb-Roman") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Publico Banner Web";
  src: url("../fonts/PublicoBannerWeb-Bold.eot");
  src: url("../fonts/PublicoBannerWeb-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/PublicoBannerWeb-Bold.woff2") format("woff2"), url("../fonts/PublicoBannerWeb-Bold.woff") format("woff"), url("../fonts/PublicoBannerWeb-Bold.ttf") format("truetype"), url("../fonts/PublicoBannerWeb-Bold.svg#PublicoBannerWeb-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Centra No1";
  src: url("../fonts/CentraNo1-Book.eot");
  src: url("../fonts/CentraNo1-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/CentraNo1-Book.woff2") format("woff2"), url("../fonts/CentraNo1-Book.woff") format("woff"), url("../fonts/CentraNo1-Book.ttf") format("truetype"), url("../fonts/CentraNo1-Book.svg#CentraNo1-Book") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Centra No1";
  src: url("../fonts/CentraNo1-Light.eot");
  src: url("../fonts/CentraNo1-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/CentraNo1-Light.woff2") format("woff2"), url("../fonts/CentraNo1-Light.woff") format("woff"), url("../fonts/CentraNo1-Light.ttf") format("truetype"), url("../fonts/CentraNo1-Light.svg#CentraNo1-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
* {
  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;
}
html,
body {
  color: #000000;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  line-height: normal;
}
section {
  max-width: 100vw;
  overflow-x: clip !important;
  overflow-y: visible;
}

footer {
  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;
  }
}

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

p {
  margin-bottom: 18px;
}
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: 17px;
  margin-bottom: 18px;
}
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;
}

img {
  width: 100%;
  height: auto;
  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);
  aspect-ratio: unset;
}

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);
}

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 img,
.video-box img,
.media-box img,
.bg-box img,
.wp-block-image img,
.wp-block-video img,
.common img {
  aspect-ratio: unset;
}

.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: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.content {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 35px;
}
@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);
  }
}

.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;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  padding: 9px 39px 9px;
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
  color: #000000;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.125;
}
@media (max-width: 767.9px) {
  .btn a,
  .btn .wp-block-button__link,
  .wp-block-button a,
  .wp-block-button .wp-block-button__link {
    font-size: 14px;
  }
}
.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] {
  -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;
  vertical-align: middle;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  text-decoration: none;
  text-align: center;
  border-radius: 0;
  padding: 8.5px 34px 6.5px;
  background-color: #D9D9D9;
  border: 1px solid #D9D9D9;
  color: #000000;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 767.9px) {
  .btn input[type=submit],
  .wp-block-button input[type=submit] {
    font-size: 14px;
  }
}
.btn input[type=submit]:hover,
.wp-block-button input[type=submit]:hover {
  opacity: 1;
  background-color: #191928;
  color: #ffffff;
}

.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-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;
  }
}

.preloader {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  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;
  background-color: #191928;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  padding: 120px 50px;
}
@media (max-width: 767.9px) {
  .preloader {
    padding: 120px 25px;
  }
}
.preloader .svg-container {
  position: relative;
  width: 563px;
  height: auto;
  max-width: 100%;
}
.preloader .svg-path-stroke {
  stroke-dasharray: 9999;
  stroke-dashoffset: 9999;
  -webkit-animation: drawStroke 0s ease-out forwards;
          animation: drawStroke 0s ease-out forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.preloader .fill-mask {
  fill: #ffffff;
  clip-path: inset(100% 0 0 0);
  -webkit-animation: fillUp 2.5s ease-in-out forwards;
          animation: fillUp 2.5s ease-in-out forwards;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
  -webkit-animation: fillUp 2.3s ease-in-out forwards;
          animation: fillUp 2.3s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.preloader .content {
  display: none;
  text-align: center;
  color: white;
  font-size: 24px;
  padding-top: 50px;
}
.preloader .stroke-layer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.preloader .fill-layer {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@-webkit-keyframes drawStroke {
  from {
    stroke-dashoffset: 1700;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawStroke {
  from {
    stroke-dashoffset: 1700;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fillUp {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes fillUp {
  from {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.text-reveal {
  overflow: hidden;
}
.text-reveal.resized .line {
  display: inline !important;
}

.line {
  overflow: hidden;
}

.word {
  display: inline-block;
  -webkit-transition: opacity 0.45s cubic-bezier(0, 0, 0.3, 0.98), -webkit-transform 0.45s cubic-bezier(0, 0, 0.3, 0.98);
  transition: opacity 0.45s cubic-bezier(0, 0, 0.3, 0.98), -webkit-transform 0.45s cubic-bezier(0, 0, 0.3, 0.98);
  transition: transform 0.45s cubic-bezier(0, 0, 0.3, 0.98), opacity 0.45s cubic-bezier(0, 0, 0.3, 0.98);
  transition: transform 0.45s cubic-bezier(0, 0, 0.3, 0.98), opacity 0.45s cubic-bezier(0, 0, 0.3, 0.98), -webkit-transform 0.45s cubic-bezier(0, 0, 0.3, 0.98);
}

.word.show {
  opacity: 1;
}

/* 你可以手动添加这些类（控制 delay） */
.delay-0 {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}

.delay-1 {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.delay-2 {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.delay-3 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.delay-4 {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.delay-5 {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

.delay-6 {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.delay-7 {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

.delay-8 {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

.delay-9 {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay-10 {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}

.delay-11 {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}

.delay-12 {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

.delay-13 {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}

/* … 可扩展 */
@media (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 20px 0;
  }
}

.wp-block-quote {
  border-left: solid 5px #000000;
  padding-left: 30px;
}

.wp-block-pullquote {
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
  padding: 40px 0;
}

.wp-block-embed .wp-block-embed__wrapper {
  padding-top: 56.25%;
}
.wp-block-embed .wp-block-embed__wrapper > * {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.article-main {
  padding: 100px 0 73px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 991.9px) {
  .article-main {
    padding: 80px 0 45px;
  }
}
@media (max-width: 991.9px) {
  .article-main {
    padding: 55px 0 40px;
  }
}
.article-main .wp-block-columns, .article-main .wp-block-columns {
  margin: 35px 0 35px;
}
@media (max-width: 991.9px) {
  .article-main .wp-block-columns, .article-main .wp-block-columns {
    margin: 32px 0 32px;
  }
}
.article-main table {
  line-height: 1.2;
}
.article-main h1,
.article-main h2,
.article-main h3,
.article-main h4,
.article-main h5,
.article-main h6 {
  font-family: "Publico Banner Web";
  margin: 35px 0 18px;
}
@media (max-width: 991.9px) {
  .article-main h1,
  .article-main h2,
  .article-main h3,
  .article-main h4,
  .article-main h5,
  .article-main h6 {
    margin: 35px 0 18px;
  }
}
@media (max-width: 575.9px) {
  .article-main h1,
  .article-main h2,
  .article-main h3,
  .article-main h4,
  .article-main h5,
  .article-main h6 {
    margin: 30px 0 15px;
  }
}
.article-main h1:first-child,
.article-main h2:first-child,
.article-main h3:first-child,
.article-main h4:first-child,
.article-main h5:first-child,
.article-main h6:first-child {
  margin-top: 0;
}
.article-main h1 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 400;
  font-size: 46px;
  line-height: 100%;
}
@media (max-width: 767.9px) {
  .article-main h1 {
    font-size: 42px;
  }
}
.article-main h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
}
@media (max-width: 767.9px) {
  .article-main h2 {
    font-size: 34px;
  }
}
.article-main h3 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
}
@media (max-width: 767.9px) {
  .article-main h3 {
    font-size: 30px;
  }
}
.article-main h4 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
}
@media (max-width: 767.9px) {
  .article-main h4 {
    font-size: 25px;
  }
}
.article-main h5 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 100%;
}
@media (max-width: 767.9px) {
  .article-main h5 {
    font-size: 23px;
  }
}
.article-main h6 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
}
@media (max-width: 767.9px) {
  .article-main h6 {
    font-size: 16px;
  }
}
.article-main p {
  margin-bottom: 18px;
}
@media (max-width: 575.9px) {
  .article-main p {
    margin-bottom: 15px;
  }
}
.article-main p:last-child {
  margin-bottom: 0;
}
.article-main a:hover {
  opacity: 1;
  color: #191928;
}
.article-main ul, .article-main ol {
  margin-bottom: 18px;
}
@media (max-width: 575.9px) {
  .article-main ul, .article-main ol {
    margin-bottom: 15px;
  }
}
.article-main ul:last-child, .article-main ol:last-child {
  margin-bottom: 0;
}
.article-main .wp-block-quote {
  border-left: solid 5px #000000;
  padding-left: 30px;
}
.article-main .wp-block-quote p {
  font-size: 24px;
}
.article-main .wp-block-pullquote {
  border-top: solid 2px #000000;
  border-bottom: solid 2px #000000;
  padding: 35px 0;
}
.article-main .wp-block-embed .wp-block-embed__wrapper {
  padding-top: 56.25%;
}
.article-main .wp-block-embed .wp-block-embed__wrapper > * {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.wpcf7 form .wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7 form .wpcf7-response-output {
  font-family: inherit !important;
  width: 100%;
  margin: 0;
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: #f75454 !important;
}
.wpcf7 form.invalid .wpcf7-validates-as-required.wpcf7-not-valid {
  border-color: #f75454 !important;
  color: #f75454 !important;
}
.wpcf7 form:not([data-status=submitting]) .wpcf7-spinner {
  display: none;
}
.wpcf7 .wpcf7-response-output {
  border: none !important;
  font-size: 16px !important;
  padding: 0 !important;
  position: relative !important;
  padding: 17px 21px 16px !important;
  width: 100% !important;
}
@media (max-width: 767.9px) {
  .wpcf7 .wpcf7-response-output {
    padding: 17px 25px 16px !important;
  }
}
.wpcf7 .wpcf7-response-output::after {
  content: "" !important;
  display: block !important;
  width: 100vw !important;
  height: 0.5px !important;
  background-color: #ffffff !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.error404 .notfound, .error404 .not-found {
  font-family: "Publico Banner Web";
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.error404 .notfound h1, .error404 .not-found h1 {
  margin-bottom: 20px;
  font-weight: 300;
}
.error404 .notfound .btn a, .error404 .not-found .btn a {
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
header .container {
  max-width: unset;
  width: 100%;
}
header .content {
  max-width: unset;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0;
}
header .contact-btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 9px 16.59px 11px 11px;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2857142857;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 767.9px) {
  header .contact-btn a {
    font-size: 13px;
  }
}
header .contact-btn a svg {
  display: block;
  width: 21px;
  margin-right: 6px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
header .contact-btn a svg path {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  fill: inherit;
}
header .contact-btn a .burger {
  display: block;
  width: 21px;
  height: 9px;
  margin-right: 6px;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
header .contact-btn a .burger span {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
header .contact-btn a .burger span:first-child {
  width: 12px;
  top: 0;
}
header .contact-btn a .burger span:nth-child(2) {
  width: 21px;
  top: calc(50% - 0.5px);
}
header .contact-btn a .burger span:last-child {
  width: 7px;
  top: calc(100% - 1px);
}
header .contact-btn a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
  background-blend-mode: multiply;
  background: -webkit-gradient(linear, right top, left top, from(#000000), to(transparent));
  background: linear-gradient(270deg, #000000 0%, transparent 100%);
}
header .contact-btn a:hover {
  opacity: 1;
  background-color: #ffffff;
  color: #000000;
}
header .contact-btn a:hover svg {
  fill: #000000;
}
header .contact-btn a:hover .burger span {
  background-color: #000000;
  width: 100% !important;
}

.banner {
  height: 100vh;
  min-height: 600px;
  position: relative;
  padding: 38px 0 37px;
  margin-top: -1px;
}
.banner .container {
  position: relative;
  z-index: 6;
  color: #ffffff;
  height: 100%;
}
.banner .content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.banner .banner-title {
  margin: 0 0 60px;
}
@media (max-width: 767.9px) {
  .banner .banner-title {
    margin: 0 0 40px;
  }
}
.banner .banner-title h1 {
  overflow: hidden;
  font-size: 0;
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
}
.banner .banner-title h1 img {
  width: 100%;
}
.banner .text-box {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: 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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 418px;
}
.banner .text-box .text-box-content {
  z-index: 6;
}
.banner .text-box .text-box-content .banner-logo {
  width: 162.27px;
  margin: 0 0 35.39px;
  overflow: hidden;
}
@media (max-width: 991.9px) {
  .banner .text-box .text-box-content .banner-logo {
    width: 145px;
    margin: 0 0 30px;
  }
}
@media (max-width: 767.9px) {
  .banner .text-box .text-box-content .banner-logo {
    width: 125px;
  }
}
@media (max-width: 575.9px) {
  .banner .text-box .text-box-content .banner-logo {
    width: 95px;
  }
}
.banner .text-box .text-box-content .banner-logo img {
  display: block;
}
.banner .text-box .text-box-content h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 20px;
}
@media (max-width: 991.9px) {
  .banner .text-box .text-box-content h2 {
    font-size: 36px;
  }
}
@media (max-width: 767.9px) {
  .banner .text-box .text-box-content h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.9px) {
  .banner .text-box .text-box-content h2 {
    margin: 0 0 16px;
  }
}
.banner .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .bg-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: unset;
}
.banner .bg-box::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45.7%;
  height: auto;
  aspect-ratio: 663/757;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  background-image: url(../images/banner-cover.svg);
  z-index: 2;
  width: 663px;
}
@media (min-width: 1439.9px) {
  .banner .bg-box::after {
    width: 45.7%;
  }
}
@media (max-width: 991.9px) {
  .banner .bg-box::after {
    bottom: -12%;
  }
}
@media (max-width: 767.9px) {
  .banner .bg-box::after {
    -webkit-transform: rotate(-22deg);
            transform: rotate(-22deg);
    width: 900px;
    bottom: -226px;
    left: -271px;
  }
}
@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInMD {
  from {
    -webkit-transform: translateX(-100%) rotate(-12deg);
            transform: translateX(-100%) rotate(-12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0) rotate(-12deg);
            transform: translateX(0) rotate(-12deg);
    opacity: 1;
  }
}
@keyframes slideInMD {
  from {
    -webkit-transform: translateX(-100%) rotate(-12deg);
            transform: translateX(-100%) rotate(-12deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0) rotate(-12deg);
            transform: translateX(0) rotate(-12deg);
    opacity: 1;
  }
}
@-webkit-keyframes slideInSM {
  from {
    -webkit-transform: translateX(-100%) rotate(-15deg);
            transform: translateX(-100%) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0) rotate(-15deg);
            transform: translateX(0) rotate(-15deg);
    opacity: 1;
  }
}
@keyframes slideInSM {
  from {
    -webkit-transform: translateX(-100%) rotate(-15deg);
            transform: translateX(-100%) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0) rotate(-15deg);
            transform: translateX(0) rotate(-15deg);
    opacity: 1;
  }
}

.image-and-text {
  padding: 37px 0 30px;
}
.image-and-text .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.9px) {
  .image-and-text .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-and-text .content .img {
    max-width: unset !important;
    margin: 0 0 30px !important;
  }
  .image-and-text .content .text {
    max-width: unset !important;
  }
}
.image-and-text .img {
  width: 100%;
  max-width: 879px;
  margin-right: 40px;
}
.image-and-text .text {
  width: 100%;
  max-width: 418px;
  margin-right: 14px;
}
@media (max-width: 1100px) {
  .image-and-text .text {
    margin-right: 0;
  }
}
.image-and-text .text h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 26px;
}
@media (max-width: 991.9px) {
  .image-and-text .text h2 {
    font-size: 36px;
  }
}
@media (max-width: 767.9px) {
  .image-and-text .text h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.9px) {
  .image-and-text .text h2 {
    margin: 0 0 20px;
  }
}

.four-col-blocks .col-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 1.5px solid #000000;
  border-top: 1.5px solid #000000;
  border-bottom: 1.5px solid #000000;
  border-right: 1.5px solid #000000;
}
.four-col-blocks .col-box .col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-right: 1.5px solid #000000;
  width: 25%;
}
@media (max-width: 767.9px) {
  .four-col-blocks .col-box .col-item {
    width: 50%;
  }
  .four-col-blocks .col-box .col-item:nth-child(1) {
    border-bottom: 1.5px solid #000000;
  }
  .four-col-blocks .col-box .col-item:nth-child(2) {
    border-bottom: 1.5px solid #000000;
    border-right: 1.5px solid transparent;
  }
}
@media (max-width: 375px) {
  .four-col-blocks .col-box .col-item {
    width: 100%;
  }
}
.four-col-blocks .col-box .col-item:last-child {
  border-right: 1.5px solid transparent;
}
.four-col-blocks .col-box .col-item .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  aspect-ratio: 340/290;
  height: auto;
  padding: 15px;
}
@media (max-width: 767.9px) {
  .four-col-blocks .col-box .col-item .img {
    aspect-ratio: 340/290;
    padding: 30px;
  }
}
.four-col-blocks .col-box .col-item .img img {
  width: auto;
  max-width: 100%;
}
.four-col-blocks .col-box .col-item .text {
  padding: 24px 22px 29px;
  border-top: 1.5px solid #000000;
  text-align: center;
}
@media (max-width: 767.9px) {
  .four-col-blocks .col-box .col-item .text {
    padding: 20px 20px 20px;
  }
}

.project-in-focus {
  padding: 37px 0 35px;
}
.project-in-focus .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.9px) {
  .project-in-focus .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .project-in-focus .content .img {
    max-width: unset !important;
    margin: 0 0 30px !important;
  }
  .project-in-focus .content .text {
    max-width: unset !important;
    padding: 0 !important;
  }
}
.project-in-focus .img {
  width: 100%;
  max-width: 879px;
  margin-right: 40px;
}
.project-in-focus .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.project-in-focus .text {
  width: 100%;
  max-width: 361px;
  margin-right: 72px;
  padding: 25px 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 1100px) {
  .project-in-focus .text {
    margin-right: 0;
  }
}
.project-in-focus .text h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 60px;
}
@media (max-width: 991.9px) {
  .project-in-focus .text h2 {
    font-size: 36px;
  }
}
@media (max-width: 767.9px) {
  .project-in-focus .text h2 {
    font-size: 32px;
  }
}
@media (max-width: 991.9px) {
  .project-in-focus .text h2 {
    margin: 0 0 40px;
  }
}
@media (max-width: 767.9px) {
  .project-in-focus .text h2 {
    margin: 0 0 20px;
  }
}
.project-in-focus .text .logo-box {
  width: 220px;
  max-width: 100%;
  margin: 0 0 32.5px;
}
@media (max-width: 991.9px) {
  .project-in-focus .text .logo-box {
    width: 185px;
    margin: 0 0 24px;
  }
}
@media (max-width: 767.9px) {
  .project-in-focus .text .logo-box {
    width: 150px;
    margin: 0 0 16px;
  }
}
.project-in-focus .text .btn {
  margin-top: 27px;
}
@media (max-width: 767.9px) {
  .project-in-focus .text .btn {
    margin-top: 16px;
  }
}

.rising-number-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.rising-number-section .container {
  width: 100%;
  position: relative;
  z-index: 6;
  padding: 138px 0 70px;
}
@media (max-width: 767.9px) {
  .rising-number-section .container {
    padding: 90px 0 45px;
  }
}
@media (max-width: 575.9px) {
  .rising-number-section .container {
    padding: 60px 0 45px;
  }
}
.rising-number-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;
  width: 100%;
}
.rising-number-section .title {
  margin: 0 auto 271px;
  max-width: 757px;
  text-align: center;
}
@media (max-width: 991.9px) {
  .rising-number-section .title {
    margin: 0 auto 250px;
  }
}
@media (max-width: 767.9px) {
  .rising-number-section .title {
    margin: 0 auto 225px;
  }
}
@media (max-width: 575.9px) {
  .rising-number-section .title {
    margin: 0 auto 180px;
  }
}
.rising-number-section .title h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 991.9px) {
  .rising-number-section .title h2 {
    font-size: 36px;
  }
}
@media (max-width: 767.9px) {
  .rising-number-section .title h2 {
    font-size: 32px;
  }
}
.rising-number-section .rising-num-box {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #ffffff;
  text-align: center;
  margin-left: 77px;
}
@media (max-width: 1100px) {
  .rising-number-section .rising-num-box {
    margin-left: 20px;
  }
}
@media (max-width: 991.9px) {
  .rising-number-section .rising-num-box {
    margin-left: 0px;
  }
}
.rising-number-section .rising-num-box .rising-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.rising-number-section .rising-num-box .rising-items .rising-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 72px;
}
@media (max-width: 767.9px) {
  .rising-number-section .rising-num-box .rising-items .rising-item {
    margin-right: 35px;
  }
}
@media (max-width: 575.9px) {
  .rising-number-section .rising-num-box .rising-items .rising-item {
    margin-right: 20px;
  }
}
.rising-number-section .rising-num-box .rising-items .rising-item:last-child {
  margin-right: 0;
}
.rising-number-section .rising-num-box .rising-items .rising-item .rising-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 300;
  font-size: 100px;
  line-height: 1.1;
  margin-bottom: -0.13em;
}
@media (max-width: 1199.9px) {
  .rising-number-section .rising-num-box .rising-items .rising-item .rising-title {
    font-size: 80px;
  }
}
@media (max-width: 991.9px) {
  .rising-number-section .rising-num-box .rising-items .rising-item .rising-title {
    font-size: 60px;
  }
}
@media (max-width: 767.9px) {
  .rising-number-section .rising-num-box .rising-items .rising-item .rising-title {
    font-size: 45px;
  }
}
.rising-number-section .rising-num-box .rising-items .rising-item .rising-title .rising-num.resized {
  width: auto !important;
}
.rising-number-section .rising-num-box .rising-items .rising-item .text-body {
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  max-width: 190px;
  margin: 0 auto;
  line-height: normal;
}
@media (max-width: 767.9px) {
  .rising-number-section .rising-num-box .rising-items .rising-item .text-body {
    font-size: 14px;
  }
}
.rising-number-section .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rising-number-section .bg-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: unset;
}

.image-and-text-has-logo-cover {
  padding: 48px 0 35px;
}
@media (max-width: 767.9px) {
  .image-and-text-has-logo-cover {
    padding: 35px 0 35px;
  }
}
.image-and-text-has-logo-cover .content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.9px) {
  .image-and-text-has-logo-cover .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .image-and-text-has-logo-cover .content .img {
    max-width: unset !important;
    margin: 0 0 30px !important;
  }
  .image-and-text-has-logo-cover .content .text {
    max-width: unset !important;
  }
}
.image-and-text-has-logo-cover .img {
  width: 100%;
  max-width: 881px;
  margin-right: 40px;
}
.image-and-text-has-logo-cover .text {
  width: 100%;
  max-width: 345px;
  margin-right: 87px;
  padding-bottom: clamp(0px, 25vw, 350px);
}
@media (max-width: 1100px) {
  .image-and-text-has-logo-cover .text {
    margin-right: 0;
  }
}
.image-and-text-has-logo-cover .text h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 22px;
}
@media (max-width: 991.9px) {
  .image-and-text-has-logo-cover .text h2 {
    font-size: 36px;
  }
}
@media (max-width: 767.9px) {
  .image-and-text-has-logo-cover .text h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.9px) {
  .image-and-text-has-logo-cover .text h2 {
    margin: 0 0 20px;
  }
}
.image-and-text-has-logo-cover .cover-logo {
  position: absolute;
  width: 49.1vw;
  max-width: 707px;
  right: 57px;
  bottom: calc(-35px - 1.54rem);
  bottom: calc(-35px - 0.63vw);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.image-and-text-has-logo-cover .cover-logo img {
  display: block;
}

footer {
  background-color: #191928;
  color: #ffffff;
}
footer .content {
  padding: 0 25px;
}
footer a:hover {
  opacity: 0.5;
  color: #ffffff;
}
@media (max-width: 767.9px) {
  footer .footer-contact .content {
    padding: 0;
  }
}
footer .footer-contact .contact-title {
  padding-top: 83px;
  position: relative;
  padding-bottom: 25px;
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-title {
    padding: 45px 25px 20px;
  }
}
footer .footer-contact .contact-title h2 {
  font-family: "Publico Banner Web";
  font-style: normal;
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 991.9px) {
  footer .footer-contact .contact-title h2 {
    font-size: 36px;
  }
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-title h2 {
    font-size: 32px;
  }
}
footer .footer-contact .contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 0.5px;
  width: 200vw;
  left: 50vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ffffff;
}
footer .footer-contact .contact-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-contact .contact-content .info-box {
    max-width: unset !important;
  }
  footer .footer-contact .contact-content .form-box {
    max-width: unset !important;
  }
}
footer .footer-contact .contact-content .info-box {
  position: relative;
  width: 100%;
  max-width: 50%;
  padding: 17px 0;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  border-right: 0.5px solid #ffffff;
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-content .info-box {
    font-size: 14px;
  }
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-content .info-box {
    padding: 22px 25px;
    border-right: 0;
    border-bottom: 0.5px solid #ffffff;
  }
}
footer .footer-contact .contact-content .info-box a {
  text-decoration: none;
}
footer .footer-contact .contact-content .info-box .info-item {
  width: 100%;
  max-width: 254px;
  margin: 0 0 19px;
}
footer .footer-contact .contact-content .info-box .info-item:last-child {
  margin-bottom: 0;
}
footer .footer-contact .contact-content .info-box::after {
  display: block;
  width: 0.5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -26px;
  background-color: #ffffff;
}
footer .footer-contact .contact-content .form-box {
  width: 100%;
  max-width: 50%;
  position: relative;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-content .form-box {
    font-size: 14px;
  }
}
footer .footer-contact .contact-content .form-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: inherit;
  width: calc(100% + 25px);
  margin-right: -25px;
}
footer .footer-contact .contact-content .form-box form label {
  display: none;
  color: inherit;
  margin: 0;
}
footer .footer-contact .contact-content .form-box form input, footer .footer-contact .contact-content .form-box form textarea {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}
footer .footer-contact .contact-content .form-box form .input-box {
  position: relative;
  color: inherit;
  width: 100%;
  margin: 0;
}
footer .footer-contact .contact-content .form-box form .input-box input {
  padding: 17px 21px 16px;
  color: inherit;
  width: 100%;
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-content .form-box form .input-box input {
    padding: 17px 25px 16px;
  }
}
footer .footer-contact .contact-content .form-box form .input-box::after {
  content: "";
  width: 100vw;
  height: 0.5px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.2px;
  background-color: #ffffff;
}
footer .footer-contact .contact-content .form-box form .text-box {
  position: relative;
  color: inherit;
  width: 100%;
  margin: 0;
}
footer .footer-contact .contact-content .form-box form .text-box textarea {
  color: inherit;
  padding: 15px 21px;
  height: 155px;
  width: 100%;
}
@media (max-width: 767.9px) {
  footer .footer-contact .contact-content .form-box form .text-box textarea {
    height: 130px;
    padding: 17px 25px 16px;
  }
}
footer .footer-contact .contact-content .form-box form .text-box::after {
  content: "";
  width: 100vw;
  height: 0.5px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.2px;
  background-color: #ffffff;
}
footer .footer-contact .contact-content .form-box form .submit-box {
  position: relative;
}
footer .footer-contact .contact-content .form-box form .submit-box input {
  min-width: 169px;
}
footer .footer-contact .contact-content .form-box form .submit-box p {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer-contact .contact-content .form-box form .submit-box p .wpcf7-spinner {
  margin: 0;
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background-color: #ffffff;
}
footer .footer-contact .contact-content .form-box form .submit-box p .wpcf7-spinner::before {
  background-color: rgba(0, 0, 0, 0.8);
}
footer .footer-contact .contact-content .form-box::after {
  display: block;
  width: 0.5px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -26px;
  background-color: #ffffff;
}
footer .footer-bottom {
  padding: 17px 0 81px;
  border-top: 0.5px solid #ffffff;
  font-family: "Centra No1";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3333333333;
}
@media (max-width: 767.9px) {
  footer .footer-bottom {
    padding: 20px 0 45px;
  }
}
footer .footer-bottom a {
  text-decoration: none;
  margin-right: 15px;
}
footer .footer-bottom a:last-child {
  margin-right: 0;
}