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;
  }
}
@font-face {
  font-family: "Albra";
  src: url("../fonts/AlbraLight.eot");
  src: url("../fonts/AlbraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/AlbraLight.woff2") format("woff2"), url("../fonts/AlbraLight.woff") format("woff"), url("../fonts/AlbraLight.ttf") format("truetype"), url("../fonts/AlbraLight.svg#AlbraLight") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BelfastGrotesk";
  src: url("../fonts/BelfastGrotesk-Regular.eot");
  src: url("../fonts/BelfastGrotesk-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/BelfastGrotesk-Regular.woff2") format("woff2"), url("../fonts/BelfastGrotesk-Regular.woff") format("woff"), url("../fonts/BelfastGrotesk-Regular.ttf") format("truetype"), url("../fonts/BelfastGrotesk-Regular.svg#BelfastGrotesk-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BelfastGrotesk";
  src: url("../fonts/BelfastGrotesk-SemiBold.eot");
  src: url("../fonts/BelfastGrotesk-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/BelfastGrotesk-SemiBold.woff2") format("woff2"), url("../fonts/BelfastGrotesk-SemiBold.woff") format("woff"), url("../fonts/BelfastGrotesk-SemiBold.ttf") format("truetype"), url("../fonts/BelfastGrotesk-SemiBold.svg#BelfastGrotesk-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BelfastGrotesk";
  src: url("../fonts/BelfastGrotesk-Medium.eot");
  src: url("../fonts/BelfastGrotesk-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/BelfastGrotesk-Medium.woff2") format("woff2"), url("../fonts/BelfastGrotesk-Medium.woff") format("woff"), url("../fonts/BelfastGrotesk-Medium.ttf") format("truetype"), url("../fonts/BelfastGrotesk-Medium.svg#BelfastGrotesk-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BelfastGrotesk";
  src: url("../fonts/BelfastGrotesk-Bold.eot");
  src: url("../fonts/BelfastGrotesk-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/BelfastGrotesk-Bold.woff2") format("woff2"), url("../fonts/BelfastGrotesk-Bold.woff") format("woff"), url("../fonts/BelfastGrotesk-Bold.ttf") format("truetype"), url("../fonts/BelfastGrotesk-Bold.svg#BelfastGrotesk-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BelfastGrotesk-BlackOblique";
  src: url("../fonts/BelfastGrotesk-BlackOblique.eot");
  src: url("../fonts/BelfastGrotesk-BlackOblique.eot?#iefix") format("embedded-opentype"), url("../fonts/BelfastGrotesk-BlackOblique.woff2") format("woff2"), url("../fonts/BelfastGrotesk-BlackOblique.woff") format("woff"), url("../fonts/BelfastGrotesk-BlackOblique.ttf") format("truetype"), url("../fonts/BelfastGrotesk-BlackOblique.svg#BelfastGrotesk-BlackOblique") format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Albra";
  src: url("../fonts/AlbraMedium.eot");
  src: url("../fonts/AlbraMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/AlbraMedium.woff2") format("woff2"), url("../fonts/AlbraMedium.woff") format("woff"), url("../fonts/AlbraMedium.ttf") format("truetype"), url("../fonts/AlbraMedium.svg#AlbraMedium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albra";
  src: url("../fonts/AlbraRegular.eot");
  src: url("../fonts/AlbraRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/AlbraRegular.woff2") format("woff2"), url("../fonts/AlbraRegular.woff") format("woff"), url("../fonts/AlbraRegular.ttf") format("truetype"), url("../fonts/AlbraRegular.svg#AlbraRegular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albra";
  src: url("../fonts/AlbraBold.eot");
  src: url("../fonts/AlbraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/AlbraBold.woff2") format("woff2"), url("../fonts/AlbraBold.woff") format("woff"), url("../fonts/AlbraBold.ttf") format("truetype"), url("../fonts/AlbraBold.svg#AlbraBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albra";
  src: url("../fonts/AlbraTRIAL-Thin.eot");
  src: url("../fonts/AlbraTRIAL-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/AlbraTRIAL-Thin.woff2") format("woff2"), url("../fonts/AlbraTRIAL-Thin.woff") format("woff"), url("../fonts/AlbraTRIAL-Thin.ttf") format("truetype"), url("../fonts/AlbraTRIAL-Thin.svg#AlbraTRIAL-Thin") format("svg");
  font-weight: 100;
  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;
}

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

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

.grecaptcha-badge {
  display: none !important;
}

html,
body {
  font-size: 18px;
  line-height: 1.5;
  font-family: "TT Ramillas Trl", sans-serif;
  font-weight: 300;
  color: #000000;
}
@media (max-width: 767.9px) {
  html,
  body {
    font-size: 16px;
  }
}

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: 55px;
  line-height: 1.2;
}
@media (max-width: 767.9px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 575.9px) {
  h1 {
    font-size: 34px;
  }
}

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

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

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

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

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

a {
  color: inherit;
  -webkit-transition: color 0.2s, opacity 0.2s;
  transition: color 0.2s, opacity 0.2s;
}
a:hover {
  opacity: 0.5;
}

p {
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.9px) {
  p {
    margin-bottom: 13px;
  }
}
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;
}
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 {
  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);
}

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

.has-dark-blue-bg {
  background-color: #1A1D22;
}

.has-black-bg {
  background-color: #000000;
}

.has-white-bg {
  background-color: #ffffff;
}

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;
}
textarea {
  resize: none;
  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;
}
textarea::-webkit-input-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
textarea::-moz-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
textarea:-ms-input-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
textarea::-ms-input-placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}
textarea::placeholder {
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  font-family: inherit !important;
}

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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #000000;
}

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 {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  outline: none;
  border: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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 {
  width: 100%;
  margin: 0 auto;
  max-width: 1760px;
  padding: 0 60px;
}
@media (max-width: 991.9px) {
  .content {
    padding: 0 35px;
  }
}
@media (max-width: 767.9px) {
  .content {
    padding: 0 25px;
  }
}
.content h1 {
  margin-top: 0;
}

header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  padding: 73px 0 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1199.9px) {
  header {
    padding: 50px 0 20px;
  }
}
@media (max-width: 991.9px) {
  header {
    padding: 20px 0 15px;
  }
}
header .container {
  max-width: unset;
}
@media (min-width: 2000px) {
  header .container {
    max-width: unset;
  }
}
header .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: unset;
}
@media (min-width: 2000px) {
  header .content {
    max-width: unset;
  }
}
header .header-title {
  text-decoration: none;
}
header .header-title:hover {
  opacity: 1;
}
header .header-title h1 {
  position: relative;
  font-family: "BelfastGrotesk";
  font-size: 44px;
  font-size: 0 !important;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  width: 415px;
  margin-left: 20px;
}
@media (max-width: 991.9px) {
  header .header-title h1 {
    font-size: 33px;
    margin-left: 0;
    width: 241px;
  }
}
@media (max-width: 767.9px) {
  header .header-title h1 {
    font-size: 28px;
    width: 204.4px;
  }
}
@media (max-width: 575.9px) {
  header .header-title h1 {
    font-size: 26px;
    width: 189.9px;
  }
}
header .header-title h1 .black {
  display: block;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
header .header-title h1 .white {
  display: block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
header .hamburger {
  position: relative;
  z-index: 99999;
  cursor: pointer;
  color: #ffffff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .hamburger > span {
  display: block;
  position: relative;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 5px;
  -webkit-transition: none;
  transition: none;
  color: inherit;
}
header .hamburger > span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
header .hamburger > .menu-close {
  position: absolute;
  left: -33.5px;
  top: calc(50% - 2.5px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
}
header .hamburger > .menu-close::before, header .hamburger > .menu-close::after {
  content: "";
  display: block;
  width: 19.79px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000000;
}
header .hamburger > .menu-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header .hamburger > .menu-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
header .hamburger.active {
  color: #000000;
}
header .hamburger.active .menu-close {
  opacity: 1;
}
header .hamburger.active:hover {
  opacity: 0.5;
}
header .hamburger.active > span:not(.menu-close)::after {
  width: 0%;
}
header .hamburger:hover > span:not(.menu-close)::after {
  width: 0%;
}
header .pop-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 508px;
  max-width: 100vw;
  height: 100%;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #ffffff;
  color: #000000;
  padding: 95px 0 clamp(12px, 1.481vh, 16px);
  z-index: -1;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.37s ease-out;
  transition: opacity 0.37s ease-out;
}
@media (max-width: 575.9px) {
  header .pop-menu {
    width: 100%;
    border-left: none;
    border-right: none;
  }
}
header .pop-menu a {
  text-decoration: none;
}
header .pop-menu nav {
  margin: 0 0 45px;
  margin: 0 0 clamp(12px, 1.481vh, 16px);
}
header .pop-menu nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: clamp(26px, 4.074vh, 44px);
  line-height: 1;
  font-weight: 300;
}
header .pop-menu nav ul li {
  margin: 0;
  padding: clamp(11px, 2.963vh, 32px) clamp(18px, 6.481vh, 70px);
  border-bottom: 1px solid #000000;
}
header .pop-menu .link-box {
  font-family: "Albra";
  font-size: clamp(12px, 1.481vh, 16px);
  line-height: 1.875;
  font-weight: 100;
  padding: 0 clamp(18px, 6.481vh, 70px);
  -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;
}
header .pop-menu .link-box a {
  max-width: 161px;
  display: block;
}
header .pop-menu .link-box .add {
  margin: 0 0 clamp(20px, 4.907vh, 53px);
}
@media (max-height: 767.9px) {
  header .pop-menu .link-box .add {
    margin: 0 0 clamp(6px, 1.907vh, 53px);
  }
}
header .pop-menu.is-show {
  visibility: visible;
  z-index: 5;
}
header .pop-menu.visible {
  opacity: 1;
}
header.smaller-header {
  background: #ffffff;
  color: #000000;
  border-bottom: 1px solid #000000;
  padding: 26px 0 23px;
}
@media (max-width: 991.9px) {
  header.smaller-header {
    padding: 20px 0 15px;
  }
}
header.smaller-header .header-title h1 .black {
  opacity: 1;
}
header.smaller-header .header-title h1 .white {
  opacity: 0;
}
header.smaller-header .hamburger {
  color: #000000;
}
header.smaller-header .hamburger > span:not(.menu-close)::after {
  background-color: #000000;
}

body:not(.home) header {
  background: #ffffff;
  color: #000000;
  border-bottom: 1px solid #000000;
  padding: 26px 0 23px;
}
body:not(.home) header .header-title h1 .black {
  opacity: 1;
}
body:not(.home) header .header-title h1 .white {
  opacity: 0;
}
body:not(.home) header .hamburger {
  color: #000000;
}
body:not(.home) header .hamburger > span:not(.menu-close)::after {
  background-color: #000000;
}

.banner {
  position: relative;
  height: 100vh;
  min-height: 840px;
}
@media (max-width: 1439.9px) {
  .banner {
    min-height: 710px;
  }
}
@media (max-width: 991.9px) {
  .banner {
    min-height: 715px;
  }
}
@media (max-width: 767.9px) {
  .banner {
    min-height: 600px;
  }
}
@media (max-width: 575.9px) {
  .banner {
    min-height: 527px;
  }
}
.banner .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.banner .bg-box img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
}
.banner .container {
  height: 100%;
  padding: 150px 0 83px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1439.9px) {
  .banner .container {
    padding: 150px 0 50px;
  }
}
.banner .container .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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1439.9px) {
  .banner .container .content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.banner .banner-text {
  z-index: 9;
  margin-bottom: 203px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: 0px;
  max-width: 48.4%;
  padding-right: 50px;
}
@media (max-width: 1600px) {
  .banner .banner-text {
    padding-right: 0;
  }
}
@media (max-width: 1439.9px) {
  .banner .banner-text {
    margin-top: 160px;
    margin-right: 0;
    margin-bottom: 135px;
  }
}
@media (max-width: 1199.9px) {
  .banner .banner-text {
    margin-bottom: 58px;
    padding-right: 0;
  }
}
@media (max-width: 991.9px) {
  .banner .banner-text {
    margin-top: 120px;
    margin-bottom: 358px;
    max-width: 425px;
  }
}
@media (max-width: 767.9px) {
  .banner .banner-text {
    margin-top: 95px;
    margin-bottom: 358px;
  }
}
@media (max-width: 575.9px) {
  .banner .banner-text {
    margin-top: 70px;
  }
}
.banner .banner-text h2 {
  font-family: "TT Ramillas Trl", sans-serif;
  line-height: 1.2571428571;
  font-weight: 300;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.5px;
  font-size: clamp(30px, 4.08vw, 70px);
}
@media (max-width: 991.9px) {
  .banner .banner-text h2 {
    font-size: 44px;
  }
}
@media (max-width: 767.9px) {
  .banner .banner-text h2 {
    font-size: 42px;
  }
}
@media (max-width: 575.9px) {
  .banner .banner-text h2 {
    font-size: 33px;
  }
}
.banner .banner-logo {
  display: block;
  margin-right: auto;
  margin-left: 0;
  position: absolute;
  left: 0;
  bottom: -0.1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 59.1%;
}
.image-and-text {
  padding: 185.3px 0 177px;
}
@media (max-width: 1199.9px) {
  .image-and-text {
    padding: 120px 0;
  }
}
@media (max-width: 991.9px) {
  .image-and-text {
    padding: 80px 0;
  }
}
@media (max-width: 767.9px) {
  .image-and-text {
    padding: 65px 0 50px;
  }
}
.image-and-text .content {
  max-width: 1523px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
    margin: 0 0 40px;
  }
  .image-and-text .content .text {
    max-width: unset;
  }
}
.image-and-text .img {
  width: 100%;
  max-width: 632px;
  margin-right: 40px;
  aspect-ratio: 632/661;
}
.image-and-text .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-and-text .text {
  width: 100%;
  max-width: 552px;
}
.image-and-text .text h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1.2818181818;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 88px;
}
@media (max-width: 1199.9px) {
  .image-and-text .text h2 {
    margin: 0 0 50px;
  }
}
@media (max-width: 991.9px) {
  .image-and-text .text h2 {
    font-size: 44px;
  }
}
@media (max-width: 767.9px) {
  .image-and-text .text h2 {
    margin: 0 0 35px;
  }
}
.image-and-text .text .text-body {
  padding-left: 78px;
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.01em;
}
@media (max-width: 1199.9px) {
  .image-and-text .text .text-body {
    padding-left: 35px;
  }
}
@media (max-width: 767.9px) {
  .image-and-text .text .text-body {
    padding-left: 0;
  }
}
@media (max-width: 575.9px) {
  .image-and-text .text .text-body {
    padding-left: 0;
  }
}
.image-and-text .text .text-body p {
  margin: 0 0 10px;
}
.image-and-text .text .text-body p:last-child {
  margin: 0;
}
.image-and-text.has-dark-blue-bg {
  color: #ffffff;
}

.full-image .container {
  max-width: unset;
}
.full-image .content {
  max-width: unset;
  padding: 0;
}
.full-image img {
  width: 100%;
}

.title-and-text {
  padding: 116px 0 109px;
}
@media (max-width: 991.9px) {
  .title-and-text {
    padding: 80px 0;
  }
}
@media (max-width: 767.9px) {
  .title-and-text {
    padding: 65px 0 50px;
  }
}
.title-and-text .content {
  max-width: 1523px;
  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) {
  .title-and-text .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .title-and-text .content .title {
    max-width: unset;
    margin: 0 0 40px;
  }
  .title-and-text .content .text {
    max-width: unset;
  }
}
.title-and-text .title {
  width: 100%;
  max-width: 661px;
  margin-right: 40px;
}
.title-and-text .title h2 {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 1199.9px) {
  .title-and-text .title h2 {
    font-size: 44px;
  }
}
@media (max-width: 991.9px) {
  .title-and-text .title h2 {
    font-size: 38px;
  }
}
.title-and-text .text {
  width: 100%;
  max-width: 474px;
  margin-top: 167px;
}
@media (max-width: 1199.9px) {
  .title-and-text .text {
    margin-top: 120px;
  }
}
@media (max-width: 991.9px) {
  .title-and-text .text {
    margin-top: 85px;
  }
}
@media (max-width: 767.9px) {
  .title-and-text .text {
    margin-top: 0;
  }
}
.title-and-text .text .text-body {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.row-text-item {
  padding: 88px 0 90px;
}
@media (max-width: 991.9px) {
  .row-text-item {
    padding: 64px 0 75px;
  }
}
@media (max-width: 767.9px) {
  .row-text-item {
    padding: 50px 0 62px;
  }
}
.row-text-item .row-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row-text-item .row-box .row-item {
  width: 100%;
  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;
  border-top: 1px solid #ffffff;
  padding: 90px 0 20px;
}
@media (max-width: 1199.9px) {
  .row-text-item .row-box .row-item {
    padding: 64px 0 20px;
  }
}
@media (max-width: 991.9px) {
  .row-text-item .row-box .row-item {
    padding: 45px 0 20px;
  }
}
@media (max-width: 767.9px) {
  .row-text-item .row-box .row-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.row-text-item .row-box .row-item .row-title {
  margin: 0 40px 25px 0;
  width: 100%;
  max-width: 160px;
}
.row-text-item .row-box .row-item .row-title h2 {
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 400;
  margin: 0;
}
.row-text-item .row-box .row-item .row-text {
  width: 100%;
  max-width: 1000px;
}
.row-text-item .row-box .row-item .row-text .text-body {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: 0.01em;
}
@media (max-width: 1199.9px) {
  .row-text-item .row-box .row-item .row-text .text-body {
    font-size: 26px;
  }
}
@media (max-width: 991.9px) {
  .row-text-item .row-box .row-item .row-text .text-body {
    font-size: 23px;
  }
}
.row-text-item .row-box .row-item .row-text .text-body p {
  margin: 0 0 30px;
}
@media (max-width: 767.9px) {
  .row-text-item .row-box .row-item .row-text .text-body p {
    margin: 0 0 20px;
  }
}
.row-text-item .row-box .row-item .row-text .text-body p:last-child {
  margin: 0;
}
.row-text-item.has-dark-blue-bg {
  color: #ffffff;
}

.four-col-icons {
  padding: 116px 0 95px;
}
@media (max-width: 991.9px) {
  .four-col-icons {
    padding: 80px 0 68px;
  }
}
@media (max-width: 767.9px) {
  .four-col-icons {
    padding: 65px 0 45px;
  }
}
.four-col-icons .col-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 146px);
  margin: 0 -68px -45px;
}
@media (max-width: 1199.9px) {
  .four-col-icons .col-box {
    margin: 0 -32px -45px;
    width: calc(100% + 64px);
  }
}
.four-col-icons .col-box .col-item {
  width: 100%;
  max-width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 0 68px;
  margin-bottom: 45px;
  border-right: 1px solid #000000;
}
@media (max-width: 1199.9px) {
  .four-col-icons .col-box .col-item {
    padding: 0 32px;
  }
}
@media (max-width: 991.9px) {
  .four-col-icons .col-box .col-item {
    max-width: 50%;
  }
  .four-col-icons .col-box .col-item:nth-child(2n) {
    border-right: none;
  }
}
.four-col-icons .col-box .col-item:last-child {
  border-right: none;
}
.four-col-icons .col-box .col-item .img {
  margin: 0 auto 50px;
  width: 180px;
  height: 164px;
  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;
}
@media (max-width: 1199.9px) {
  .four-col-icons .col-box .col-item .img {
    width: 75%;
    height: 80px;
    margin: 0 auto 35px;
  }
}
@media (max-width: 767.9px) {
  .four-col-icons .col-box .col-item .img {
    margin: 0 auto 25px;
  }
}
.four-col-icons .col-box .col-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.four-col-icons .col-box .col-item .text-body {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.text-before-two-images {
  padding: 95px 0 73px;
  min-height: 520px;
}
@media (max-width: 991.9px) {
  .text-before-two-images {
    padding: 72px 0 60px;
    min-height: 480px;
  }
}
@media (max-width: 767.9px) {
  .text-before-two-images {
    padding: 62px 0 53px;
    min-height: unset;
  }
}
.text-before-two-images .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
}
@media (max-width: 767.9px) {
  .text-before-two-images .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-before-two-images .content .left-img {
    max-width: unset !important;
  }
  .text-before-two-images .content .text {
    width: 100%;
    max-width: unset !important;
    padding: 40px 0;
  }
  .text-before-two-images .content .right-img {
    max-width: unset !important;
  }
}
.text-before-two-images .img {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (max-width: 1439.9px) {
  .text-before-two-images .img {
    opacity: 0.7;
  }
}
@media (max-width: 767.9px) {
  .text-before-two-images .img {
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
  }
}
.text-before-two-images .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.text-before-two-images .left-img {
  width: 100%;
  max-width: 746px;
  aspect-ratio: 1;
}
@media (max-width: 1439.9px) {
  .text-before-two-images .left-img {
    max-width: 51%;
  }
}
.text-before-two-images .right-img {
  width: 100%;
  max-width: 364px;
  aspect-ratio: 364/380;
  margin-bottom: 48px;
}
@media (max-width: 1439.9px) {
  .text-before-two-images .right-img {
    max-width: 32%;
    margin-bottom: 5px;
  }
}
@media (max-width: 991.9px) {
  .text-before-two-images .right-img {
    margin-bottom: 0px;
  }
}
.text-before-two-images .text {
  width: 685px;
  max-width: 100%;
}
@media (min-width: 767.9px) {
  .text-before-two-images .text {
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
  }
}
@media (max-width: 991.9px) {
  .text-before-two-images .text {
    width: 620px;
  }
}
.text-before-two-images .text h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 40px;
  letter-spacing: 0.01em;
}
@media (max-width: 1199.9px) {
  .text-before-two-images .text h2 {
    font-size: 44px;
  }
}
@media (max-width: 991.9px) {
  .text-before-two-images .text h2 {
    font-size: 38px;
    margin: 0 0 30px;
  }
}
.text-before-two-images .text .text-body {
  letter-spacing: 0.01em;
  max-width: 474px;
  margin: 0 auto;
}
@media (max-width: 767.9px) {
  .text-before-two-images .text .text-body {
    margin: 0;
  }
}

.projects-section {
  padding: 80px 0 77px;
}
@media (max-width: 991.9px) {
  .projects-section {
    padding: 72px 0 60px;
  }
}
@media (max-width: 767.9px) {
  .projects-section {
    padding: 45px 0 38px;
  }
}
.projects-section .title-and-filter {
  margin: 0 0 38px;
}
.projects-section .title-and-filter h2 {
  margin: 0 auto 80px;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1199.9px) {
  .projects-section .title-and-filter h2 {
    font-size: 44px;
  }
}
@media (max-width: 991.9px) {
  .projects-section .title-and-filter h2 {
    font-size: 38px;
    margin: 0 auto 58px;
  }
}
@media (max-width: 767.9px) {
  .projects-section .title-and-filter h2 {
    margin: 0 auto 40px;
  }
}
@media (max-width: 575.9px) {
  .projects-section .title-and-filter h2 {
    margin: 0 auto 32px;
  }
}
.projects-section .title-and-filter .filter-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.9px) {
  .projects-section .title-and-filter .filter-bar {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.projects-section .title-and-filter .filter-bar .filter-title {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 33px;
  line-height: 0.8181818182;
  font-weight: 300;
  margin-right: 40px;
}
@media (max-width: 767.9px) {
  .projects-section .title-and-filter .filter-bar .filter-title {
    font-size: 24px;
  }
}
.projects-section .title-and-filter .filter-bar .filter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.9px) {
  .projects-section .title-and-filter .filter-bar .filter-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.projects-section .title-and-filter .filter-bar .filter-box .filter-item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 35px;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1199.9px) {
  .projects-section .title-and-filter .filter-bar .filter-box .filter-item {
    font-size: 16px;
  }
}
@media (max-width: 575.9px) {
  .projects-section .title-and-filter .filter-bar .filter-box .filter-item {
    margin-bottom: 20px;
    margin-right: 24px;
  }
}
.projects-section .title-and-filter .filter-bar .filter-box .filter-item:last-child {
  margin-right: 0;
}
.projects-section .title-and-filter .filter-bar .filter-box .filter-item::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 1;
  width: 13px;
  border: 1px solid #000000;
  margin-right: 6px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 50%;
}
.projects-section .title-and-filter .filter-bar .filter-box .filter-item.active::before {
  background-color: #000000;
}
.projects-section .projects-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%;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  min-height: 1px;
  position: relative;
}
.projects-section .projects-content .content-flex-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.projects-section .projects-content:has(.content-flex-box .project-result-item.active) {
  position: relative;
  min-height: var(--minH);
}
@media (max-width: 991.9px) {
  .projects-section .projects-content:has(.content-flex-box .project-result-item.active) {
    min-height: 1px;
  }
}
.projects-section .projects-content .project-result-item {
  border: 1px solid #000000;
  width: 100%;
  max-width: 50%;
}
@media (min-width: 991.9px) {
  .projects-section .projects-content .project-result-item:nth-child(2n) {
    border-left: none;
  }
  .projects-section .projects-content .project-result-item:nth-child(2n+3) {
    border-top: none;
  }
  .projects-section .projects-content .project-result-item:nth-child(2n+4) {
    border-top: none;
  }
}
@media (max-width: 991.9px) {
  .projects-section .projects-content .project-result-item {
    max-width: 100%;
  }
  .projects-section .projects-content .project-result-item:nth-child(2n+2) {
    border-top: none;
  }
  .projects-section .projects-content .project-result-item:nth-child(2n+3) {
    border-top: none;
  }
}
.projects-section .projects-content .project-result-item .project-result-head {
  padding: 65px 44px 65px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #000000;
}
@media (max-width: 1599.9px) {
  .projects-section .projects-content .project-result-item .project-result-head {
    padding: 40px 35px;
  }
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .project-result-head {
    padding: 35px 22px;
  }
}
@media (max-width: 767.9px) {
  .projects-section .projects-content .project-result-item .project-result-head {
    padding: 22px 16px;
  }
}
.projects-section .projects-content .project-result-item .project-result-head:hover {
  background-color: #000000;
  color: #ffffff;
}
.projects-section .projects-content .project-result-item .project-result-head:hover svg {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  fill: #ffffff;
}
.projects-section .projects-content .project-result-item .name {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 33px;
  line-height: 1.4;
  font-weight: 300;
  margin: 0 40px 0 0;
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .name {
    font-size: 28px;
  }
}
@media (max-width: 767.9px) {
  .projects-section .projects-content .project-result-item .name {
    font-size: 24px;
  }
}
@media (max-width: 575.9px) {
  .projects-section .projects-content .project-result-item .name {
    font-size: 22px;
  }
}
.projects-section .projects-content .project-result-item .sub-icon {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .sub-icon {
    font-size: 16px;
  }
}
@media (max-width: 767.9px) {
  .projects-section .projects-content .project-result-item .sub-icon {
    font-size: 14px;
  }
}
@media (max-width: 575.9px) {
  .projects-section .projects-content .project-result-item .sub-icon {
    font-size: 13px;
  }
}
.projects-section .projects-content .project-result-item .sub-icon svg {
  margin-left: 73px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  min-width: 22px;
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .sub-icon svg {
    width: 22px;
    margin-left: 35px;
  }
}
@media (max-width: 767.9px) {
  .projects-section .projects-content .project-result-item .sub-icon svg {
    margin-left: 20px;
    width: 19px;
  }
}
@media (max-width: 575.9px) {
  .projects-section .projects-content .project-result-item .sub-icon svg {
    margin-left: 14px;
  }
}
.projects-section .projects-content .project-result-item .project-result-body {
  position: absolute;
  top: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 600px;
  width: calc(50% + 0.5px);
  z-index: 5;
  background-color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #000000;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.45s ease-out;
  transition: opacity 0.45s ease-out;
}
@media (max-width: 991.9px) {
  .projects-section .projects-content .project-result-item .project-result-body {
    position: fixed !important;
    bottom: 30px !important;
    top: auto !important;
    right: auto !important;
    left: 35px !important;
    width: calc(100% - 70px) !important;
    height: 100% !important;
    min-height: unset !important;
    max-height: calc(100vh - 140px) !important;
    padding: 0 !important;
    /* transform: translate(-50%, 0); */
    background: #ffffff !important;
    overflow-y: auto !important;
  }
}
@media (max-width: 991.9px) and (max-width: 767.9px) {
  .projects-section .projects-content .project-result-item .project-result-body {
    left: 25px !important;
    width: calc(100% - 50px) !important;
  }
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  max-height: 530px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.9px) {
  .projects-section .projects-content .project-result-item .project-result-body .img-and-close {
    min-height: 180px;
    height: 47.2vw;
  }
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close .img {
  aspect-ratio: 821/705;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close {
  position: absolute;
  z-index: 9;
  display: block;
  top: 35px;
  right: 31px;
  width: 66px;
  height: 66px;
  cursor: pointer;
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 991.9px) {
  .projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close {
    top: 15px;
    right: 15px;
  }
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close span {
  width: 93.33px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000000;
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close span {
    width: 49px;
  }
}
@media (max-width: 575.9px) {
  .projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close span {
    width: 28px;
  }
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.projects-section .projects-content .project-result-item .project-result-body .img-and-close .project-close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.projects-section .projects-content .project-result-item .project-result-body .text-body {
  padding: 50px 53px 47px;
  border-top: 1px solid #000000;
}
@media (max-width: 1199.9px) {
  .projects-section .projects-content .project-result-item .project-result-body .text-body {
    padding: 35px 22px;
  }
}
.projects-section .projects-content .project-result-item .project-result-body.is-show {
  visibility: visible;
  z-index: 5;
}
@media (max-width: 991.9px) {
  .projects-section .projects-content .project-result-item .project-result-body.is-show {
    z-index: 9999999;
  }
}
.projects-section .projects-content .project-result-item .project-result-body.active {
  opacity: 1;
}
.projects-section .projects-content .project-result-item:nth-child(2n-1) .project-result-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0;
}
.projects-section .projects-content .project-result-item:nth-child(2n) .project-result-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
}
.projects-section .projects-content.ajax-loading {
  min-height: 42vh;
  padding: 50px 0;
}
.projects-section .projects-content.ajax-loading a, .projects-section .projects-content.ajax-loading .project-result-item {
  display: none;
}
.projects-section .projects-content.ajax-loading:after {
  content: "";
  display: block;
  width: 2.5vw;
  height: 2.5vw;
  aspect-ratio: 1;
  border: 4px solid rgba(26, 29, 34, 0.2);
  border-top: 4px solid #1A1D22;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  margin: auto;
}
@media (max-width: 767.9px) {
  .projects-section .projects-content.ajax-loading: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);
  }
}

.team-section {
  padding: 77px 0 150px;
}
@media (max-width: 991.9px) {
  .team-section {
    padding: 65px 0 120px;
  }
}
@media (max-width: 767.9px) {
  .team-section {
    padding: 38px 0 70px;
  }
}
.team-section .title {
  width: 100%;
  margin: 0 0 152px;
}
@media (max-width: 1199.9px) {
  .team-section .title {
    margin: 0 0 110px;
  }
}
@media (max-width: 991.9px) {
  .team-section .title {
    margin: 0 0 85px;
  }
}
@media (max-width: 767.9px) {
  .team-section .title {
    margin: 0 0 45px;
  }
}
.team-section .title h2 {
  margin: 0 auto;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1199.9px) {
  .team-section .title h2 {
    font-size: 44px;
  }
}
@media (max-width: 991.9px) {
  .team-section .title h2 {
    font-size: 38px;
  }
}
.team-section .content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(100% + 18px);
  margin: 0 -9px -18px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.team-section .content-box .team-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  max-width: calc(50% - 18px);
  margin: 0 9px 18px;
  border: 1px solid #000000;
}
.team-section .content-box .team-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.team-section .content-box .team-item:nth-child(2n) .item-text {
  border-left: none;
  border-right: 1px solid #000000;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .team-section .content-box .team-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767.9px) {
  .team-section .content-box .team-item {
    max-width: calc(100% - 18px);
  }
}
.team-section .content-box .team-item .img {
  width: 100%;
  max-width: 353px;
  aspect-ratio: 353/565;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .img {
    max-width: unset;
    aspect-ratio: 7/10;
  }
}
.team-section .content-box .team-item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.team-section .content-box .team-item .item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-left: 1px solid #000000;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 100%;
  max-width: 457px;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text {
    max-width: unset;
    border-left: none !important;
    border-right: none !important;
  }
}
.team-section .content-box .team-item .item-text .top-box {
  height: 100%;
  padding: 62px 30px;
  margin-bottom: 117px;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text .top-box {
    padding: 40px 24px;
    margin-bottom: 84px;
  }
}
.team-section .content-box .team-item .item-text .top-box .position-title {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  margin: 0 0 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  padding: 0 0 10px;
  border-bottom: 1px solid #000000;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text .top-box .position-title {
    margin: 0 0 30px;
  }
}
.team-section .content-box .team-item .item-text .top-box .name {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 300;
  margin: 0 0 40px;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text .top-box .name {
    margin: 0 0 28px;
    font-size: 28px;
  }
}
@media (max-width: 767.9px) {
  .team-section .content-box .team-item .item-text .top-box .name {
    font-size: 24px;
  }
}
@media (max-width: 575.9px) {
  .team-section .content-box .team-item .item-text .top-box .name {
    font-size: 22px;
  }
}
.team-section .content-box .team-item .item-text .bottom-box {
  border-top: 1px solid #000000;
  position: absolute;
  bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 100%;
  left: 0;
  width: 100%;
  z-index: 5;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.team-section .content-box .team-item .item-text .bottom-box .toggle-box {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  border-top: 1px solid #ffffff;
  padding: 26px 40px 40px;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text .bottom-box .toggle-box {
    padding: 20px 24px 30px;
  }
}
.team-section .content-box .team-item .item-text .bottom-box .toggle-box p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.team-section .content-box .team-item .item-text .bottom-box .toggle-box p .left-head {
  min-width: 75px;
  margin-right: 13px;
  display: inline-block;
}
.team-section .content-box .team-item .item-text .bottom-box .accordion-head {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, padding 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, padding 0.2s ease-out;
  padding: 46px 38px;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text .bottom-box .accordion-head {
    padding: 30px 24px;
  }
}
.team-section .content-box .team-item .item-text .bottom-box .accordion-head span {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  color: inherit;
  -webkit-transition: none;
  transition: none;
}
.team-section .content-box .team-item .item-text .bottom-box .accordion-head svg {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.team-section .content-box .team-item .item-text .bottom-box .accordion-head .more {
  display: inline-block;
}
.team-section .content-box .team-item .item-text .bottom-box .accordion-head .less {
  display: none;
}
.team-section .content-box .team-item .item-text .bottom-box.is-active {
  background: #000000;
  color: #ffffff;
}
.team-section .content-box .team-item .item-text .bottom-box.is-active .accordion-head {
  padding: 40px 40px 26px;
}
@media (max-width: 1199.9px) {
  .team-section .content-box .team-item .item-text .bottom-box.is-active .accordion-head {
    padding: 26px 24px 20px;
  }
}
.team-section .content-box .team-item .item-text .bottom-box.is-active .accordion-head .more {
  display: none;
}
.team-section .content-box .team-item .item-text .bottom-box.is-active .accordion-head .less {
  display: inline-block;
}
.team-section .content-box .team-item .item-text .bottom-box.is-active svg {
  fill: #ffffff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.team-section .content-box .team-item .item-text .bottom-box:hover {
  background-color: #000000;
  color: #ffffff;
}
.team-section .content-box .team-item .item-text .bottom-box:hover svg {
  fill: #ffffff;
}
.new-team-section {
  padding: 77px 0 150px;
}
@media (max-width: 991.9px) {
  .new-team-section {
    padding: 65px 0 120px;
  }
}
@media (max-width: 767.9px) {
  .new-team-section {
    padding: 38px 0 70px;
  }
}
.new-team-section .title {
  width: 100%;
  margin: 0 0 38px;
}
@media (max-width: 1199.9px) {
  .new-team-section .title {
    margin: 0 0 32px;
  }
}
@media (max-width: 991.9px) {
  .new-team-section .title {
    margin: 0 0 30px;
  }
}
@media (max-width: 767.9px) {
  .new-team-section .title {
    margin: 0 0 24px;
  }
}
.new-team-section .title h2 {
  margin: 0 auto;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 1199.9px) {
  .new-team-section .title h2 {
    font-size: 44px;
  }
}
@media (max-width: 991.9px) {
  .new-team-section .title h2 {
    font-size: 38px;
  }
}
.new-team-section .content-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.new-team-section .content-box .team-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  max-width: calc(50% - 0px);
  border: 1px solid #000000;
}
@media (min-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(n+3) {
    border-top: none;
  }
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(n+2) {
    border-top: none;
  }
}
@media (min-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(4n-1), .new-team-section .content-box .team-item:nth-child(4n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .new-team-section .content-box .team-item:nth-child(4n-1) .item-text, .new-team-section .content-box .team-item:nth-child(4n) .item-text {
    border-left: none;
    border-right: 1px solid #000000;
  }
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(2n-1) .img {
    border-left: none;
    border-right: 1px solid #000000;
  }
}
@media (min-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(2n) {
    border-left: none;
  }
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .new-team-section .content-box .team-item:nth-child(2n) .item-text {
    border-left: none;
  }
  .new-team-section .content-box .team-item:nth-child(2n) .img {
    border-left: 1px solid #000000;
    border-right: none;
  }
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item {
    max-width: 100%;
    position: relative;
    min-height: 280px;
  }
}
@media (max-width: 767.9px) {
  .new-team-section .content-box .team-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .new-team-section .content-box .team-item .img {
    max-width: 100% !important;
  }
  .new-team-section .content-box .team-item .item-text {
    max-width: 100% !important;
  }
}
.new-team-section .content-box .team-item .img {
  width: 100%;
  max-width: 256px;
  aspect-ratio: 255/246;
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item .img {
    max-width: 40%;
  }
}
.new-team-section .content-box .team-item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.new-team-section .content-box .team-item .item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 1px solid #000000;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 100%;
  max-width: 565px;
  padding: 34px 31.7px 46.5px 35px;
}
@media (max-width: 1439.9px) {
  .new-team-section .content-box .team-item .item-text {
    padding: 34px 28px;
  }
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item .item-text {
    padding: 34px 24px;
    max-width: 60%;
    border-left: none !important;
    border-right: none !important;
  }
}
@media (max-width: 767.9px) {
  .new-team-section .content-box .team-item .item-text {
    min-height: 280px;
    position: relative;
  }
}
.new-team-section .content-box .team-item .item-text .info-box {
  height: 100%;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.new-team-section .content-box .team-item .item-text .info-box .position-title {
  position: relative;
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  margin: 0 0 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  padding: 0 0 10px;
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item .item-text .info-box .position-title {
    margin: 0 0 30px;
  }
}
.new-team-section .content-box .team-item .item-text .info-box .position-title::after {
  content: "";
  display: block;
  width: 83.5px;
  height: 1px;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-color: #000000;
}
@media (max-width: 767.9px) {
  .new-team-section .content-box .team-item .item-text .info-box .position-title::after {
    width: 60px;
  }
}
.new-team-section .content-box .team-item .item-text .info-box .name {
  font-family: "TT Ramillas Trl", sans-serif;
  font-size: 33px;
  line-height: 1.2;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item .item-text .info-box .name {
    font-size: 28px;
  }
}
@media (max-width: 767.9px) {
  .new-team-section .content-box .team-item .item-text .info-box .name {
    font-size: 24px;
  }
}
@media (max-width: 575.9px) {
  .new-team-section .content-box .team-item .item-text .info-box .name {
    font-size: 22px;
  }
}
.new-team-section .content-box .team-item .toggle-arrow-box {
  position: relative;
  z-index: 999;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 20px;
  min-width: 20px;
}
.new-team-section .content-box .team-item .toggle-arrow-box .close {
  cursor: pointer;
  position: relative;
  top: 4px;
  right: -8px;
  white-space: nowrap;
  width: 0;
  height: 0;
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.8333333333;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
@media (max-width: 767.9px) {
  .new-team-section .content-box .team-item .toggle-arrow-box .close {
    font-size: 16px;
    right: -8.5px;
  }
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  right: -1px;
  width: 19.7px;
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn:hover {
  opacity: 0.8;
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn .up, .new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn .down {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn .up {
  opacity: 1;
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn .down {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn.active .up {
  opacity: 0;
}
.new-team-section .content-box .team-item .toggle-arrow-box .arrow-btn.active .down {
  opacity: 1;
}
.new-team-section .content-box .team-item .toggle-arrow-box:has(.arrow-btn.active) .close {
  pointer-events: none;
  opacity: 1;
}
.new-team-section .content-box .team-item:nth-child(2) .item-text {
  cursor: pointer;
}
@media (min-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(2) .toggle-box {
    right: 0;
    left: auto;
  }
}
.new-team-section .content-box .team-item:nth-child(1) .item-text {
  cursor: pointer;
}
@media (max-width: 1199.9px) {
  .new-team-section .content-box .team-item:nth-child(1) .toggle-box {
    right: 0;
    left: auto;
  }
}
.new-team-section .content-box .team-item .close {
  -webkit-transition: opacity 0.42s;
  transition: opacity 0.42s;
}
.new-team-section .content-box .team-item.active .close {
  -webkit-transition: opacity 0.25s 0.17s;
  transition: opacity 0.25s 0.17s;
}
.new-team-section .toggle-box {
  cursor: default;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  height: 100%;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 491px;
  z-index: 5;
  background-color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #000000;
  padding: 37px 128px 47px 27px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
@media (max-width: 1199.9px) {
  .new-team-section .toggle-box {
    padding: 37px 65px 47px 27px;
    width: 60%;
    min-height: unset;
  }
}
@media (max-width: 767.9px) {
  .new-team-section .toggle-box {
    width: 100%;
    padding: 30px 54px 30px 27px;
  }
}
.new-team-section .toggle-box.is-show {
  visibility: visible;
  z-index: 5;
}
@media (max-width: 991.9px) {
  .new-team-section .toggle-box.is-show {
    z-index: 99;
  }
}
.new-team-section .toggle-box.active {
  opacity: 1;
}

footer {
  background: #1A1D22;
  color: #ffffff;
  padding: 117px 0 60px;
}
@media (max-width: 1199.9px) {
  footer {
    padding: 80px 0 50px;
  }
}
@media (max-width: 767.9px) {
  footer {
    padding: 60px 0 35px;
  }
}
footer .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991.9px) {
  footer .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .content .footer-left {
    margin: 0 0 55px !important;
    max-width: 477px !important;
  }
  footer .content .footer-right {
    max-width: unset !important;
  }
}
footer .footer-left {
  width: 100%;
  max-width: 477px;
  margin-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1599.9px) {
  footer .footer-left {
    max-width: clamp(230px, 32%, 1400px);
  }
}
footer .footer-left h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 55px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0 0 135.7px;
}
@media (max-width: 1199.9px) {
  footer .footer-left h2 {
    font-size: 44px;
    margin: 0 0 115px;
  }
}
@media (max-width: 991.9px) {
  footer .footer-left h2 {
    font-size: 38px;
    margin: 0 0 50px;
  }
}
@media (max-width: 991.9px) {
  footer .footer-left h2 {
    margin: 0 0 35px;
  }
}
footer .footer-left .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 411.35px;
  margin-right: 60px;
  max-width: calc(100% - 62px);
  text-decoration: none;
}
@media (max-width: 991.9px) {
  footer .footer-left .footer-logo {
    width: 165px;
  }
}
@media (max-width: 575.9px) {
  footer .footer-left .footer-logo {
    width: 120px;
  }
}
footer .footer-left .footer-logo img {
  width: 100%;
}
footer .footer-left .footer-logo:hover {
  opacity: 1;
}
footer .footer-right {
  width: 100%;
  max-width: 812px;
  margin-top: 22.5px;
}
@media (max-width: 1599.9px) {
  footer .footer-right {
    max-width: clamp(0px, 68% - 40px, 1400px);
  }
}
@media (max-width: 991.9px) {
  footer .footer-right {
    margin-top: 0;
  }
}
footer .footer-right .form-box {
  width: 100%;
  border-top: 1px solid #ffffff;
}
footer .footer-right form {
  width: 100%;
}
footer .footer-right form > * {
  width: 100%;
  margin: 0;
}
footer .footer-right input, footer .footer-right select, footer .footer-right textarea {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.1875;
  font-weight: 500;
  padding: 0 0 10px;
  width: 100%;
  color: #ffffff;
  padding: 23px 0;
  border-bottom: 1px solid #ffffff;
}
footer .footer-right input::-webkit-input-placeholder, footer .footer-right select::-webkit-input-placeholder, footer .footer-right textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
footer .footer-right input:-moz-placeholder, footer .footer-right select:-moz-placeholder, footer .footer-right textarea:-moz-placeholder {
  text-transform: uppercase;
}
footer .footer-right input::-moz-placeholder, footer .footer-right select::-moz-placeholder, footer .footer-right textarea::-moz-placeholder {
  text-transform: uppercase;
}
footer .footer-right input:-ms-input-placeholder, footer .footer-right select:-ms-input-placeholder, footer .footer-right textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
@media (max-width: 767.9px) {
  footer .footer-right input, footer .footer-right select, footer .footer-right textarea {
    font-size: 16px;
  }
}
footer .footer-right .text-box textarea {
  height: 295.8px;
}
@media (max-width: 1199.9px) {
  footer .footer-right .text-box textarea {
    height: 240px;
  }
}
@media (max-width: 991.9px) {
  footer .footer-right .text-box textarea {
    height: 180px;
  }
}
footer .footer-right .submit-box {
  margin-top: 28.5px;
  margin-left: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
footer .footer-right .submit-box input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 12.5px 13px;
  background-color: #ffffff;
  color: #000000;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.1875;
  font-weight: 500;
  text-transform: uppercase;
}
footer .footer-right .submit-box button {
  padding: 12.5px 13px;
  background-color: #ffffff;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
footer .footer-right .submit-box button span {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.1875;
  font-weight: 500;
  text-transform: uppercase;
}
footer .footer-right .submit-box button svg {
  margin-left: 12px;
}
footer .footer-right .submit-box .wpcf7-spinner {
  position: absolute;
  left: -18px;
  top: 50%;
  z-index: 9;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  margin: 0;
  background-color: grey;
}
footer .footer-right .submit-box:hover {
  opacity: 0.6;
}
footer .footer-right .link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 58px;
}
@media (max-width: 575.9px) {
  footer .footer-right .link-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer-right .link-box .item {
  margin-right: 159px;
}
@media (max-width: 1439.9px) {
  footer .footer-right .link-box .item {
    margin-right: 45px;
  }
}
@media (max-width: 575.9px) {
  footer .footer-right .link-box .item {
    margin-bottom: 25px;
  }
}
footer .footer-right .link-box .item:first-child {
  max-width: 175px;
}
footer .footer-right .link-box .item:last-child {
  margin-right: 0;
}
@media (max-width: 575.9px) {
  footer .footer-right .link-box .item:last-child {
    margin-bottom: 0;
  }
}
footer .footer-right .link-box .item p, footer .footer-right .link-box .item a {
  display: block;
  font-family: "Albra";
  font-size: 22px;
  line-height: 1.5;
  font-weight: 100;
  margin: 0;
}
@media (max-width: 1199.9px) {
  footer .footer-right .link-box .item p, footer .footer-right .link-box .item a {
    font-size: 20px;
  }
}
footer .footer-right .link-box .item a {
  text-decoration: none;
  font-family: "Albra";
}
footer .footer-right .link-box .item .item-head {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 66px;
}
@media (max-width: 991.9px) {
  footer .footer-right .link-box .item .item-head {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
@media (max-width: 575.9px) {
  footer .footer-right .link-box .item .item-head {
    margin: 0 0 18px;
  }
}
footer .footer-right .link-box .item:nth-child(3) a {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 66px;
}
@media (max-width: 991.9px) {
  footer .footer-right .link-box .item:nth-child(3) a {
    font-size: 16px;
    margin: 0 0 30px;
  }
}
@media (max-width: 575.9px) {
  footer .footer-right .link-box .item:nth-child(3) a {
    margin: 0 0 18px;
  }
}
footer .footer-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 35px;
  border-top: 1px solid #ffffff;
  padding-top: 30px;
}

.error404 .notfound, .error404 .not-found {
  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;
}

.wpcf7 form .wpcf7-not-valid-tip {
  display: none !important;
}
.wpcf7 form .wpcf7-response-output {
  font-family: inherit !important;
  width: 100%;
  margin: 0;
  margin-top: 15px;
}
.wpcf7 form.invalid .wpcf7-response-output {
  color: #f75454 !important;
}
.wpcf7 form.invalid .wpcf7-validates-as-required.wpcf7-not-valid {
  border-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;
}

@media (max-width: 600px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 20px 0;
  }
}

.article-main {
  padding: 185px 0 185px;
}
@media (max-width: 1199.9px) {
  .article-main {
    padding-top: 155px;
    padding-bottom: 130px;
  }
}
@media (max-width: 991.9px) {
  .article-main {
    padding-top: 130px;
    padding-bottom: 110px;
  }
}
.article-main .content {
  max-width: 1120px;
}
.article-main .h1 {
  font-size: 55px;
  line-height: 1.353;
  margin: 0 auto 45px;
}
@media (max-width: 767.9px) {
  .article-main .h1 {
    font-size: 38px;
  }
}
@media (max-width: 575.9px) {
  .article-main .h1 {
    font-size: 34px;
  }
}
.article-main h1,
.article-main h2,
.article-main h3,
.article-main h4,
.article-main h5,
.article-main h6 {
  margin: 85px 0 20px;
}
@media (max-width: 991.9px) {
  .article-main h1,
  .article-main h2,
  .article-main h3,
  .article-main h4,
  .article-main h5,
  .article-main h6 {
    margin: 45px 0 20px;
  }
}
@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 h6 {
  margin: 0 0 25px;
  font-weight: 500;
}
@media (max-width: 575.9px) {
  .article-main h6 {
    margin: 0 0 15px;
  }
}
.article-main h6:last-child {
  margin-bottom: 0;
}
.article-main p {
  margin-bottom: 25px;
}
@media (max-width: 575.9px) {
  .article-main p {
    margin-bottom: 15px;
  }
}
.article-main p:last-child {
  margin-bottom: 0;
}
.article-main ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}
@media (max-width: 575.9px) {
  .article-main ul {
    margin-bottom: 15px;
  }
}
.article-main ul:last-child {
  margin-bottom: 0;
}
.article-main ul li {
  position: relative;
  padding-left: 17px;
}
.article-main ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  aspect-ratio: 1;
  background-color: #000000;
  position: absolute;
  top: 12px;
  left: 0;
  margin: 0 13px 0 0;
}
.article-main ul ul {
  padding-left: 0;
}

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