*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bodyBackgroundColor);
  font-family: var(--mainFontFamily);
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSize);
  color: var(--mainPrimaryColor);
}

body.no-scroll {
  overflow: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-button {
  background-color: #666;
}

::-webkit-scrollbar-track {
  background-color: #999;
}

::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #666;
  border-radius: 3px;
}

::-webkit-scrollbar-corner {
  background-color: #999;
}

::-webkit-resizer {
  background-color: #666;
}

/* WPB */
section.vc_section,
section.vc_section.vc_section-has-fill {
  margin: 0;
  padding: 0;
}

.mx-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mx-container,
.mx-container-fluid {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.mx-container {
  max-width: 1440px;
}

.mx-container.gap-1,
.mx-container-fluid.gap-1 {
  padding: 0 20.5px;
}

.mx-container.gap-2,
.mx-container-fluid.gap-2 {
  padding: 0 21px;
}

.mx-container.gap-3,
.mx-container-fluid.gap-3 {
  padding: 0 21.5px;
}

.mx-container.gap-4,
.mx-container-fluid.gap-4 {
  padding: 0 22px;
}

.mx-container.gap-5,
.mx-container-fluid.gap-5 {
  padding: 0 22.5px;
}

.mx-container.gap-10,
.mx-container-fluid.gap-10 {
  padding: 0 25px;
}

.mx-container.gap-15,
.mx-container-fluid.gap-15 {
  padding: 0 27.5px;
}

.mx-container.gap-20,
.mx-container-fluid.gap-20 {
  padding: 0 30px;
}

.mx-container.gap-25,
.mx-container-fluid.gap-25 {
  padding: 0 32.5px;
}

.mx-container.gap-30,
.mx-container-fluid.gap-30 {
  padding: 0 35px;
}

.mx-container.gap-35,
.mx-container-fluid.gap-35 {
  padding: 0 37.5px;
}

.mx-container.no-gutters,
.mx-container-fluid.no-gutters {
  padding-left: 0;
  padding-right: 0;
}

.vc_row.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.vc_row.no-gutters .vc_column-inner {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 1240px) {
  .vc_row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media screen and (max-width: 1240px) {
  .vc_column_container > .vc_column-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Display */
.mx-d-block {
  display: block !important;
}

.mx-d-inline {
  display: inline !important;
}

.mx-d-inline-block {
  display: inline-block !important;
}

.mx-d-none {
  display: none !important;
}

.mx-d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* Order */
@media screen and (max-width: 960px) {
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

a {
  color: var(--linkColor);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}
a:hover {
  color: var(--linkColorHover);
}

/* Images */
img {
  display: block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.vc_single_image-img {
  border-radius: var(--mainImagesBorderRadius);
}
@media screen and (max-width: 960px) {
  .vc_single_image-img {
    border-radius: calc(var(--mainImagesBorderRadius) / 1.5);
  }
}

.wpb_single_image.border-radius-0 .vc_single_image-img {
  border-radius: 0;
}

/* Video */
video {
  border-radius: var(--mainImagesBorderRadius);
}
@media screen and (max-width: 960px) {
  video {
    border-radius: calc(var(--mainImagesBorderRadius) / 1.5);
  }
}

/* Site */
.site {
  position: relative;
}

/* Header -> Navbar */
.mx-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.mx-header .mx-navbar {
  padding: 20px 0;
  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;
  min-height: 76px;
  /* Only mobile menu */
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar {
    padding: 10px 0;
    min-height: 43px;
  }
  .mx-header .mx-navbar.navbar-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mx-header .mx-navbar.navbar-sticky {
  margin: 0 auto;
  position: fixed;
  padding: 10px 40px;
  top: 10px;
  left: 20px;
  right: 20px;
  max-width: 1400px;
  min-height: 80px;
  border-radius: 80px;
  background: var(--headerBackgroundColorSticky);
  -webkit-backdrop-filter: blur(var(--headerBackgroundBlurSticky));
          backdrop-filter: blur(var(--headerBackgroundBlurSticky));
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar.navbar-sticky {
    padding: 10px 20px;
    top: 0;
    left: 0;
    right: 0;
    min-height: 50px;
    border-radius: 0;
  }
}
.mx-header .mx-navbar:not(.navbar-sticky) {
  overflow: hidden;
}
.mx-header .mx-navbar .mx-logo img {
  position: relative;
  max-height: var(--headerLogoMaxHeight);
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar .mx-logo img {
    max-height: var(--headerLogoMobileMaxHeight);
  }
}
.mx-header .mx-navbar .mx-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar .mx-menu.desktop {
    display: none;
  }
}
.mx-header .mx-navbar .mx-menu a {
  display: block;
  letter-spacing: 4px;
  font-family: var(--menuFontFamily);
  font-size: var(--menuFontSize);
  font-weight: var(--menuFontWeight);
  line-height: var(--mainLineHeight);
  color: var(--menuLinkColor);
}
.mx-header .mx-navbar .mx-menu a:hover {
  color: var(--menuLinkColorHover);
}
.mx-header .mx-navbar .mx-social.mx-large-icon img {
  max-height: var(--headerLogoSocialMaxHeight);
}
.mx-header .mx-navbar .mx-social.mx-large-icon img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar .mx-social.mx-large-icon img {
    margin: 0 auto;
    max-width: 90%;
    max-height: var(--headerLogoSocialMobileMaxHeight);
  }
}
.mx-header .mx-navbar .mx-social.mx-icon-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode {
    gap: 10px;
  }
}
.mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode .mx-social-icon svg, .mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode .mx-social-icon img {
  width: var(--headerSocialIconMaxSize);
  height: var(--headerSocialIconMaxSize);
}
.mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode .mx-info-title,
.mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode .mx-info-description {
  color: var(--myLinksColor);
}
.mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode:hover .mx-info-title,
.mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode:hover .mx-info-description {
  color: var(--linkColorHover);
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar {
    /* if links empty - display icon_set flex */
    /* if menu enable or icon set enable - disable large_icon */
  }
  .mx-header .mx-navbar .mx-menu-content.links-no {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .mx-header .mx-navbar .mx-menu-content.links-no .mx-social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
  .mx-header .mx-navbar .mx-menu-content.links-no .mx-social .mx-social-icon svg, .mx-header .mx-navbar .mx-menu-content.links-no .mx-social .mx-social-icon img {
    width: 50px;
    height: 50px;
  }
  .mx-header .mx-navbar.menu-yes > .mx-social {
    display: none;
  }
}

/* Footer */
.mx-footer {
  padding: 50px 0;
  background-color: var(--footerBackgroundColor);
}
.mx-footer .mx-footer-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 960px) {
  .mx-footer .mx-footer-images {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mx-footer .mx-footer-images .mx-footer-logo img {
  display: block;
  max-height: var(--footerLogoMaxHeight);
}
@media screen and (max-width: 960px) {
  .mx-footer .mx-footer-images .mx-footer-logo img {
    max-height: var(--footerLogoMobileMaxHeight);
  }
}
.mx-footer .mx-footer-images .mx-footer-logo img:hover {
  opacity: 0.7;
}
.mx-footer .mx-footer-created {
  text-align: center;
}
.mx-footer .mx-footer-created svg path {
  opacity: 0.7;
}
.mx-footer .mx-footer-created svg:hover path {
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .mx-footer .mx-footer-created {
    margin: 30px 0 0 0;
  }
}
.mx-footer .mx-footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .mx-footer .mx-footer-social {
    margin: 40px 0 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mx-footer .mx-footer-social .mx-social-icon-shortcode svg, .mx-footer .mx-footer-social .mx-social-icon-shortcode img {
  width: var(--footerSocialIconMaxSize);
  height: var(--footerSocialIconMaxSize);
}
@media screen and (max-width: 960px) {
  .mx-footer .mx-footer-social .mx-social-icon-shortcode svg, .mx-footer .mx-footer-social .mx-social-icon-shortcode img {
    width: 36px;
    height: 36px;
  }
}

/* 404 */
.mx-page-404 {
  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;
  height: 100vh;
}
.mx-page-404 .mx-404-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper {
    padding: 20px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    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;
  }
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper .mx-404-image {
    position: relative;
    height: 40%;
    overflow: hidden;
  }
  .mx-page-404 .mx-404-wrapper .mx-404-image::after {
    content: "";
    background: -webkit-gradient(linear, left bottom, left top, color-stop(5%, var(--bodyBackgroundColor)), color-stop(50%, rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, var(--bodyBackgroundColor) 5%, rgba(0, 0, 0, 0) 50%);
    background: linear-gradient(0deg, var(--bodyBackgroundColor) 5%, rgba(0, 0, 0, 0) 50%);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
.mx-page-404 .mx-404-wrapper .mx-404-image img {
  display: block;
  width: 100%;
  border-radius: var(--mainImagesBorderRadius);
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper .mx-404-image img {
    border-radius: calc(var(--mainImagesBorderRadius) / 1.5);
  }
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper .mx-404-content {
    margin: -100px 0 0 0;
    padding: 0 20px 30px 20px;
    max-width: 100%;
    z-index: 1;
  }
}
.mx-page-404 .mx-404-wrapper .mx-404-content .mx-content-title {
  font-size: calc(var(--headingH1fontSize) * 1.44);
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper .mx-404-content .mx-content-title {
    font-size: calc(var(--headingH1fontSizeMobile) * 1.5);
  }
}
.mx-page-404 .mx-404-wrapper .mx-404-content .mx-content-subtitle {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper .mx-404-content .mx-content-subtitle {
    margin: 15px 0 0 0;
  }
}
.mx-page-404 .mx-404-wrapper .mx-404-content .mx-content-button {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-wrapper .mx-404-content .mx-content-button {
    margin: 15px 0 0 0;
  }
}

/* accordion */
.mx-content .vc_tta-style-classic .vc_tta-panel {
  border-bottom: 2px solid var(--mainPrimaryColorOpacity);
}
.mx-content .vc_tta-style-classic .vc_tta-panel:first-child {
  border-top: 2px solid var(--mainPrimaryColorOpacity);
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading {
  background-color: transparent !important;
  border: none;
  border-radius: 0;
  color: var(--mainPrimaryColor);
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a {
  font-size: var(--mainFontSizeBig);
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a span {
  font-weight: 600;
  line-height: var(--mainLineHeight);
  color: var(--mainPrimaryColor);
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a span {
    font-size: var(--mainFontSize);
  }
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a .vc_tta-controls-icon::after, .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a .vc_tta-controls-icon::before {
  border-color: var(--mainPrimaryColor);
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a .vc_tta-controls-icon.vc_tta-controls-icon-chevron {
  top: 24px;
  width: 25px;
  height: 20px;
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a .vc_tta-controls-icon.vc_tta-controls-icon-chevron {
    top: 13px;
    width: 20px;
    height: 16px;
  }
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a .vc_tta-controls-icon.vc_tta-controls-icon-chevron::before {
  position: unset;
  width: 100%;
  height: 100%;
  border: none;
  background-color: var(--mainPrimaryColor);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='25' height='20' viewBox='0 0 25 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 5.33331L12.8125 15.3333L21.875 5.33331' stroke='red' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
          mask-image: url("data:image/svg+xml,%3Csvg width='25' height='20' viewBox='0 0 25 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 5.33331L12.8125 15.3333L21.875 5.33331' stroke='red' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-transform: rotate(0deg) translate(0%, 0%);
      -ms-transform: rotate(0deg) translate(0%, 0%);
          transform: rotate(0deg) translate(0%, 0%);
  content: "";
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-right > a {
  padding: 20px 60px 22px 0;
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-right > a {
    padding: 12px 50px 12px 0;
  }
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-right > a .vc_tta-controls-icon {
  right: 0;
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-left > a {
  padding: 20px 0 22px 60px;
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-left > a {
    padding: 12px 0 12px 30px;
  }
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title.vc_tta-controls-icon-position-left > a .vc_tta-controls-icon {
  left: 0;
}
.mx-content .vc_tta-style-classic .vc_tta-panel.vc_active .vc_tta-panel-title > a .vc_tta-controls-icon.vc_tta-controls-icon-chevron::before {
  -webkit-transform: rotate(180deg) translate(0%, 0%);
      -ms-transform: rotate(180deg) translate(0%, 0%);
          transform: rotate(180deg) translate(0%, 0%);
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body.icon-align-right {
  padding: 0 60px 25px 0;
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body.icon-align-right {
    padding: 0 0 15px 0;
  }
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body.icon-align-left {
  padding: 0 0 25px 60px;
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body.icon-align-left {
    padding: 0 0 15px 0;
  }
}

.mx-mobile-menu {
  display: none;
  position: relative;
  /* Animation */
  /* Initial (Closed) State */
  /* Expanded (Open) States */
  /* Transition -> Menu Opening */
  /* Transition -> Menu Closing */
}
@media screen and (max-width: 960px) {
  .mx-mobile-menu {
    display: block;
  }
}
.mx-mobile-menu .nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  z-index: 3;
}
.mx-mobile-menu .nav-btn .btn-bar {
  position: relative;
  width: 1.34em;
  height: 3px;
  border-radius: 5px;
  background-color: var(--menuLinkColor);
}
.mx-mobile-menu .nav-btn .btn-bar.menu:not(:first-child) {
  margin-top: 3px;
}
.mx-mobile-menu .nav-btn .btn-bar.close {
  margin-top: -1.5px;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  opacity: 0;
}
.mx-mobile-menu .mx-menu-content {
  padding: 90px 20px 40px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -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;
  width: 100%;
  height: 100vh;
  background-color: var(--bodyBackgroundColor);
  opacity: 0;
}
.mx-mobile-menu .mx-menu-content .mx-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.mx-mobile-menu.open .btn-bar.menu {
  opacity: 0;
}
.mx-mobile-menu.open .btn-bar.close {
  opacity: 1;
}
.mx-mobile-menu.open .mx-menu-content {
  opacity: 1;
  z-index: 1;
}
.mx-mobile-menu .btn-bar.menu:nth-child(even) {
  width: 1.8em;
}
.mx-mobile-menu .btn-bar.close:not(:last-child) {
  -webkit-transform: rotate(45deg) translateX(-250%);
      -ms-transform: rotate(45deg) translateX(-250%);
          transform: rotate(45deg) translateX(-250%);
}
.mx-mobile-menu .btn-bar.close:last-child {
  -webkit-transform: rotate(-45deg) translateX(250%);
      -ms-transform: rotate(-45deg) translateX(250%);
          transform: rotate(-45deg) translateX(250%);
}
.mx-mobile-menu .mx-menu-content {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.mx-mobile-menu.open .btn-bar.menu:nth-child(odd) {
  -webkit-transform: translateX(-400%);
      -ms-transform: translateX(-400%);
          transform: translateX(-400%);
}
.mx-mobile-menu.open .btn-bar.menu:nth-child(even) {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}
.mx-mobile-menu.open .btn-bar.close:not(:last-child) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mx-mobile-menu.open .btn-bar.close:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mx-mobile-menu.open .mx-menu-content {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.mx-mobile-menu.open .btn-bar.menu {
  -webkit-transition: opacity 0.15s ease-in-out 0.15s, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.15s ease-in-out 0.15s, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
  transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s;
  transition: transform 0.3s ease-in-out, opacity 0.15s ease-in-out 0.15s, -webkit-transform 0.3s ease-in-out;
}
.mx-mobile-menu.open .btn-bar.close {
  -webkit-transition: opacity 0.075s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out 0.3s;
  transition: opacity 0.075s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out 0.3s;
  -o-transition: transform 0.3s ease-in-out 0.3s, opacity 0.075s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out 0.3s, opacity 0.075s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out 0.3s, opacity 0.075s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out 0.3s;
}
.mx-mobile-menu .btn-bar.menu {
  -webkit-transition: opacity 0.15s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out 0.3s;
  transition: opacity 0.15s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out 0.3s;
  -o-transition: transform 0.3s ease-in-out 0.3s, opacity 0.15s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out 0.3s, opacity 0.15s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out 0.3s, opacity 0.15s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out 0.3s;
}
.mx-mobile-menu .btn-bar.close {
  -webkit-transition: opacity 0.075s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.075s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, opacity 0.075s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out, opacity 0.075s ease-in-out 0.3s;
  transition: transform 0.3s ease-in-out, opacity 0.075s ease-in-out 0.3s, -webkit-transform 0.3s ease-in-out;
}

.mx-social-icon-shortcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.mx-social-icon-shortcode .mx-social-icon svg {
  display: block;
}
.mx-social-icon-shortcode .mx-social-icon svg svg {
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 960px) {
  .mx-social-icon-shortcode .mx-social-icon svg svg {
    width: 50px;
    height: 50px;
  }
}
.mx-social-icon-shortcode .mx-social-icon svg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.mx-social-icon-shortcode.mx-icon-flat svg path {
  fill: var(--iconColor);
}
.mx-social-icon-shortcode .mx-social-info {
  text-align: left;
}
.mx-social-icon-shortcode .mx-social-info .mx-info-title {
  font-size: calc(var(--headingH5fontSize) / 1.5);
}
.mx-social-icon-shortcode .mx-social-info .mx-info-title,
.mx-social-icon-shortcode .mx-social-info .mx-info-description {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--linkColor);
}
.mx-social-icon-shortcode:hover .mx-social-icon svg {
  opacity: 0.8;
}
.mx-social-icon-shortcode:hover .mx-social-info .mx-info-title,
.mx-social-icon-shortcode:hover .mx-social-info .mx-info-description {
  color: var(--linkColorHover);
}

.mx-hero-shortcode {
  height: 100vh;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode {
    height: 40vh;
  }
}
.mx-hero-shortcode .mx-hero-background {
  position: relative;
  height: 100%;
  min-height: 500px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bodyBackgroundColor);
}
.mx-hero-shortcode .mx-hero-background.mx-video-fade {
  position: relative;
}
.mx-hero-shortcode .mx-hero-background.mx-video-fade::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  content: "";
  pointer-events: none;
}
.mx-hero-shortcode .mx-hero-background.mx-video-fade::after {
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(0, 0, 0, 0)), to(var(--bodyBackgroundColor)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 60%, var(--bodyBackgroundColor) 100%);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, var(--bodyBackgroundColor) 100%);
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background {
    min-height: 200px;
  }
}
.mx-hero-shortcode .mx-hero-background .mx-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}
.mx-hero-shortcode .mx-hero-background video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper {
    bottom: -25px;
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar {
    padding: 15px 20px;
    top: 0;
    left: -20px;
    right: -20px;
    height: 43px;
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar img {
  display: block;
  width: 100%;
  max-width: var(--mainLogoImageMaxWidth);
  height: auto;
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar img {
    max-width: var(--mainLogoMobileImageMaxWidth);
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar a.mx-navbar-icon img {
  max-width: 160px;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-navbar a.mx-navbar-icon img {
    max-width: 100px;
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info {
  text-align: center;
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-title {
  color: var(--mainPrimaryColor);
  text-shadow: 0px 15px 0px var(--mainQuaternaryColor), 0px 15px 20px var(--mainQuaternaryColor);
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-title {
    text-shadow: 0px 10px 0px var(--mainQuaternaryColor), 0px 10px 20px var(--mainQuaternaryColor);
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-button {
  position: relative;
  margin: 10px 0 0 0;
  z-index: 1;
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-button .mx-button {
  margin: 0 auto;
}

body.admin-bar .mx-hero-shortcode {
  height: calc(100vh - 32px);
}
@media (max-width: 782px) {
  body.admin-bar .mx-hero-shortcode {
    height: calc(100vh - 46px);
  }
}
@media screen and (max-width: 960px) {
  body.admin-bar .mx-hero-shortcode {
    height: 40vh;
  }
}

.mx-cta-icon-shortcode {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.mx-cta-icon-shortcode::before {
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url(../../assets/images/button/button-elements.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.mx-cta-icon-shortcode.mx-style-primary {
  padding: calc(10px - var(--primaryButtonBorderWidth));
  background-color: var(--primaryButtonBackgroundColor);
  border-radius: var(--primaryButtonBorderRadius);
  border: var(--primaryButtonBorderWidth) solid var(--primaryButtonBorderColor);
}
.mx-cta-icon-shortcode.mx-style-primary::before {
  top: calc(20px - var(--primaryButtonBorderWidth));
  right: calc(20px - var(--primaryButtonBorderWidth));
}
@media screen and (max-width: 960px) {
  .mx-cta-icon-shortcode.mx-style-primary::before {
    top: calc(12px - var(--primaryButtonBorderWidth));
    right: calc(12px - var(--primaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-icon-shortcode.mx-style-primary {
    padding: 0;
    border-radius: calc(var(--primaryButtonBorderRadius) / 2);
  }
}
.mx-cta-icon-shortcode.mx-style-secondary {
  padding: calc(10px - var(--secondaryButtonBorderWidth));
  background-color: var(--secondaryButtonBackgroundColor);
  border-radius: var(--secondaryButtonBorderRadius);
  border: var(--secondaryButtonBorderWidth) solid var(--secondaryButtonBorderColor);
  -webkit-box-shadow: inset 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px var(--secondaryButtonShadowInsideColor);
          box-shadow: inset 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px var(--secondaryButtonShadowInsideColor);
}
.mx-cta-icon-shortcode.mx-style-secondary::before {
  top: calc(20px - var(--secondaryButtonBorderWidth));
  right: calc(20px - var(--secondaryButtonBorderWidth));
}
@media screen and (max-width: 960px) {
  .mx-cta-icon-shortcode.mx-style-secondary::before {
    top: calc(12px - var(--secondaryButtonBorderWidth));
    right: calc(12px - var(--secondaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-icon-shortcode.mx-style-secondary {
    padding: 0;
    border-radius: calc(var(--secondaryButtonBorderRadius) / 2);
    -webkit-box-shadow: inset 0px calc(-10px + var(--secondaryButtonBorderWidthMobile)) 0px var(--secondaryButtonShadowInsideColor);
            box-shadow: inset 0px calc(-10px + var(--secondaryButtonBorderWidthMobile)) 0px var(--secondaryButtonShadowInsideColor);
  }
}
.mx-cta-icon-shortcode.mx-style-secondary .mx-cta-icon-title {
  color: var(--secondaryButtonTextColor);
}
.mx-cta-icon-shortcode .mx-cta-icon-img {
  margin: 7px 0 0 0;
  display: block;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .mx-cta-icon-shortcode .mx-cta-icon-img {
    margin: 0;
    width: 30%;
  }
}
.mx-cta-icon-shortcode .mx-cta-icon-title {
  margin: 20px;
  max-width: 230px;
}
@media screen and (max-width: 960px) {
  .mx-cta-icon-shortcode .mx-cta-icon-title {
    margin: 10px;
    max-width: 120px;
  }
}

.mx-cta-button-shortcode {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.mx-cta-button-shortcode::before {
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url(../../assets/images/button/button-elements.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
.mx-cta-button-shortcode.mx-style-primary {
  padding: calc(20px - var(--primaryButtonBorderWidth));
  background-color: var(--primaryButtonBackgroundColor);
  border-radius: var(--primaryButtonBorderRadius);
  border: var(--primaryButtonBorderWidth) solid var(--primaryButtonBorderColor);
}
.mx-cta-button-shortcode.mx-style-primary::before {
  top: calc(20px - var(--primaryButtonBorderWidth));
  right: calc(20px - var(--primaryButtonBorderWidth));
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-primary::before {
    top: calc(12px - var(--primaryButtonBorderWidth));
    right: calc(12px - var(--primaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-primary {
    padding: 0;
    border-radius: calc(var(--primaryButtonBorderRadius) / 2);
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-primary .mx-cta-button-title {
    margin: calc(70px - var(--primaryButtonBorderWidth)) calc(20px - var(--primaryButtonBorderWidth)) calc(20px - var(--primaryButtonBorderWidth)) calc(20px - var(--secondaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-primary .mx-cta-button-button {
    margin: 0 calc(20px - var(--primaryButtonBorderWidth)) 0 calc(20px - var(--primaryButtonBorderWidth));
  }
}
.mx-cta-button-shortcode.mx-style-secondary {
  padding: calc(20px - var(--secondaryButtonBorderWidth));
  background-color: var(--secondaryButtonBackgroundColor);
  border-radius: var(--secondaryButtonBorderRadius);
  border: var(--secondaryButtonBorderWidth) solid var(--secondaryButtonBorderColor);
  -webkit-box-shadow: inset 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px var(--secondaryButtonShadowInsideColor);
          box-shadow: inset 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px var(--secondaryButtonShadowInsideColor);
}
.mx-cta-button-shortcode.mx-style-secondary::before {
  top: calc(20px - var(--secondaryButtonBorderWidth));
  right: calc(20px - var(--secondaryButtonBorderWidth));
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-secondary::before {
    top: calc(12px - var(--secondaryButtonBorderWidth));
    right: calc(12px - var(--secondaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-secondary {
    padding: 0;
    border-radius: calc(var(--secondaryButtonBorderRadius) / 2);
    -webkit-box-shadow: inset 0px calc(-10px + var(--secondaryButtonBorderWidthMobile)) 0px var(--secondaryButtonShadowInsideColor);
            box-shadow: inset 0px calc(-10px + var(--secondaryButtonBorderWidthMobile)) 0px var(--secondaryButtonShadowInsideColor);
  }
}
.mx-cta-button-shortcode.mx-style-secondary .mx-cta-button-title {
  color: var(--secondaryButtonTextColor);
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-secondary .mx-cta-button-title {
    margin: calc(70px - var(--secondaryButtonBorderWidth)) calc(20px - var(--secondaryButtonBorderWidth)) calc(20px - var(--secondaryButtonBorderWidth)) calc(20px - var(--secondaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode.mx-style-secondary .mx-cta-button-button {
    margin: 0 calc(20px - var(--secondaryButtonBorderWidth)) 0 calc(20px - var(--secondaryButtonBorderWidth));
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode {
    padding: 0;
  }
}
.mx-cta-button-shortcode .mx-cta-button-title {
  margin: 40px 10px 0 10px;
  max-width: 200px;
}
@media screen and (max-width: 960px) {
  .mx-cta-button-shortcode .mx-cta-button-title {
    max-width: 120px;
  }
}
.mx-cta-button-shortcode .mx-cta-button-button {
  margin: 20px 0;
}
@media screen and (max-width: 560px) {
  .mx-cta-button-shortcode .mx-cta-button-button {
    display: none;
  }
}

.mx-cta-section-a-shortcode {
  padding: 205px 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-a-shortcode {
    padding: 90px 0;
  }
}
.mx-cta-section-a-shortcode .mx-cta-section-image {
  margin: 0 auto;
  display: block;
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-a-shortcode .mx-cta-section-image {
    width: 100px;
    height: 100px;
  }
}
.mx-cta-section-a-shortcode .mx-cta-section-title {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-a-shortcode .mx-cta-section-title {
    margin: 10px 0 0 0;
  }
}
.mx-cta-section-a-shortcode .mx-cta-section-button {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-a-shortcode .mx-cta-section-button {
    margin: 10px 0 0 0;
  }
}
.mx-cta-section-a-shortcode .mx-cta-section-button .mx-button {
  margin: 0 auto;
}

.mx-cta-section-b-shortcode {
  position: relative;
}
.mx-cta-section-b-shortcode .mx-cta-section-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mx-cta-section-b-shortcode .mx-cta-section-content .mx-cta-section-title {
  margin: 140px 0 0 0;
  text-shadow: 0px 15px 0px var(--mainQuaternaryColor), 0px 15px 20px var(--mainQuaternaryColor);
}
@media screen and (max-width: 960px) {
  .mx-cta-section-b-shortcode .mx-cta-section-content .mx-cta-section-title {
    margin: 0;
    text-shadow: 4px 4px 0px var(--mainQuaternaryColor);
  }
}
.mx-cta-section-b-shortcode .mx-cta-section-content .mx-cta-section-button {
  margin: 40px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-b-shortcode .mx-cta-section-content .mx-cta-section-button {
    margin: 20px 0 0 0;
  }
}
.mx-cta-section-b-shortcode .mx-cta-section-image {
  display: block;
  width: 100%;
}
@media screen and (max-width: 560px) {
  .mx-cta-section-b-shortcode .mx-cta-section-image {
    margin: 60px 0 0 0;
  }
}

.mx-bullet-point-shortcode .mx-point-icon {
  margin: 0 0 6px 0;
  display: block;
}
@media screen and (max-width: 960px) {
  .mx-bullet-point-shortcode .mx-point-icon {
    margin: 0 0 10px 0;
  }
}
.mx-bullet-point-shortcode .mx-point-title {
  font-size: calc(var(--headingH5fontSize) / 1.5);
  color: var(--mainSecondaryColor);
}
@media screen and (max-width: 960px) {
  .mx-bullet-point-shortcode .mx-point-title {
    margin: 0;
    font-size: var(--headingH5fontSizeMobile);
    line-height: var(--headingH5LineHeight);
  }
}
.mx-bullet-point-shortcode .mx-point-description {
  color: var(--mainSecondaryColor);
}

.mx-empty-space-desktop {
  display: block;
}
@media screen and (max-width: 960px) {
  .mx-empty-space-desktop {
    display: none;
  }
}

.mx-empty-space-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .mx-empty-space-mobile {
    display: block;
  }
}

.mx-separator-shortcode svg {
  display: block;
  width: 100%;
  max-width: 100%;
}

h1, .mx-heading-h1,
h2, .mx-heading-h2,
h3, .mx-heading-h3,
h4, .mx-heading-h4,
h5, .mx-heading-h5 {
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--headingsFontFamily);
  color: var(--mainPrimaryColor);
}

h1, .mx-heading-h1 {
  font-size: var(--headingH1fontSize);
  line-height: var(--headingH1LineHeight);
}
@media screen and (max-width: 960px) {
  h1, .mx-heading-h1 {
    font-size: var(--headingH1fontSizeMobile);
  }
}

h2, .mx-heading-h2 {
  font-size: var(--headingH2fontSize);
  line-height: var(--headingH2LineHeight);
}
@media screen and (max-width: 960px) {
  h2, .mx-heading-h2 {
    font-size: var(--headingH2fontSizeMobile);
  }
}

h3, .mx-heading-h3 {
  font-size: var(--headingH3fontSize);
  line-height: var(--headingH3LineHeight);
}
@media screen and (max-width: 960px) {
  h3, .mx-heading-h3 {
    font-size: var(--headingH3fontSizeMobile);
  }
}

h4, .mx-heading-h4 {
  font-size: var(--headingH4fontSize);
  line-height: var(--headingH4LineHeight);
}
@media screen and (max-width: 960px) {
  h4, .mx-heading-h4 {
    font-size: var(--headingH4fontSizeMobile);
  }
}

h5, .mx-heading-h5 {
  font-size: var(--headingH5fontSize);
  line-height: var(--headingH5LineHeight);
}
@media screen and (max-width: 960px) {
  h5, .mx-heading-h5 {
    font-size: var(--headingH5fontSizeMobile);
  }
}

.mx-button {
  position: relative;
  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%;
  max-width: 360px;
  height: 80px;
  line-height: 80%;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  background-origin: border-box;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
@media screen and (max-width: 960px) {
  .mx-button {
    max-width: 260px;
    height: 60px;
  }
}
.mx-button::before {
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url(../../assets/images/button/button-elements.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 960px) {
  .mx-button::before {
    width: 18px;
    height: 18px;
  }
}
.mx-button.mx-button-primary {
  background-color: var(--primaryButtonBackgroundColor);
  font-family: var(--primaryButtonFontFamily);
  font-size: var(--primaryButtonFontSize);
  border-radius: var(--primaryButtonBorderRadius);
  border: var(--primaryButtonBorderWidth) solid var(--primaryButtonBorderColor);
  color: var(--primaryButtonTextColor);
  -webkit-box-shadow: 0px calc(-15px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 15px 0px 0px var(--primaryButtonShadowOutsideColor);
          box-shadow: 0px calc(-15px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 15px 0px 0px var(--primaryButtonShadowOutsideColor);
}
.mx-button.mx-button-primary::before {
  top: calc(15px - var(--primaryButtonBorderWidth));
  right: calc(15px - var(--primaryButtonBorderWidth));
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-primary::before {
    top: calc(12px - var(--primaryButtonBorderWidth));
    right: calc(12px - var(--primaryButtonBorderWidth));
  }
}
.mx-button.mx-button-primary:hover {
  background-color: var(--primaryButtonBackgroundColorHover);
  -webkit-box-shadow: 0px calc(-15px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 18px 0px 0px var(--primaryButtonShadowOutsideColor);
          box-shadow: 0px calc(-15px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 18px 0px 0px var(--primaryButtonShadowOutsideColor);
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
}
.mx-button.mx-button-primary:active {
  background-color: var(--primaryButtonBackgroundColorActive);
  -webkit-box-shadow: 0px calc(-15px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 10px 0px 0px var(--primaryButtonShadowOutsideColor);
          box-shadow: 0px calc(-15px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 10px 0px 0px var(--primaryButtonShadowOutsideColor);
  -webkit-transform: translate3d(0, 5px, 0);
          transform: translate3d(0, 5px, 0);
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-primary {
    font-size: var(--primaryButtonFontSizeMobile);
    border-width: var(--primaryButtonBorderWidthMobile);
    -webkit-box-shadow: 0px calc(-12px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 12px 0px 0px var(--primaryButtonShadowOutsideColor);
            box-shadow: 0px calc(-12px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 12px 0px 0px var(--primaryButtonShadowOutsideColor);
  }
  .mx-button.mx-button-primary:hover {
    -webkit-box-shadow: 0px calc(-12px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 14px 0px 0px var(--primaryButtonShadowOutsideColor);
            box-shadow: 0px calc(-12px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 14px 0px 0px var(--primaryButtonShadowOutsideColor);
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
  }
  .mx-button.mx-button-primary:active {
    -webkit-box-shadow: 0px calc(-12px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 9px 0px 0px var(--primaryButtonShadowOutsideColor);
            box-shadow: 0px calc(-12px + var(--primaryButtonBorderWidth)) 0px 0px var(--primaryButtonShadowInsideColor) inset, 0px 9px 0px 0px var(--primaryButtonShadowOutsideColor);
    -webkit-transform: translate3d(0, 3px, 0);
            transform: translate3d(0, 3px, 0);
  }
}
.mx-button.mx-button-secondary {
  background-color: var(--secondaryButtonBackgroundColor);
  font-family: var(--secondaryButtonFontFamily);
  font-size: var(--secondaryButtonFontSize);
  border-radius: var(--secondaryButtonBorderRadius);
  border: var(--secondaryButtonBorderWidth) solid var(--secondaryButtonBorderColor);
  color: var(--secondaryButtonTextColor);
  -webkit-box-shadow: 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 15px 0px 0px var(--secondaryButtonShadowOutsideColor);
          box-shadow: 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 15px 0px 0px var(--secondaryButtonShadowOutsideColor);
}
.mx-button.mx-button-secondary::before {
  top: calc(15px - var(--secondaryButtonBorderWidth));
  right: calc(15px - var(--secondaryButtonBorderWidth));
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-secondary::before {
    top: calc(12px - var(--secondaryButtonBorderWidth));
    right: calc(12px - var(--secondaryButtonBorderWidth));
  }
}
.mx-button.mx-button-secondary:hover {
  background-color: var(--secondaryButtonBackgroundColorHover);
  -webkit-box-shadow: 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 18px 0px 0px var(--secondaryButtonShadowOutsideColor);
          box-shadow: 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 18px 0px 0px var(--secondaryButtonShadowOutsideColor);
  -webkit-transform: translate3d(0, -3px, 0);
          transform: translate3d(0, -3px, 0);
}
.mx-button.mx-button-secondary:active {
  background-color: var(--secondaryButtonBackgroundColorActive);
  -webkit-box-shadow: 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 10px 0px 0px var(--secondaryButtonShadowOutsideColor);
          box-shadow: 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 10px 0px 0px var(--secondaryButtonShadowOutsideColor);
  -webkit-transform: translate3d(0, 5px, 0);
          transform: translate3d(0, 5px, 0);
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-secondary {
    font-size: var(--secondaryButtonFontSizeMobile);
    border-width: var(--secondaryButtonBorderWidthMobile);
    -webkit-box-shadow: 0px calc(-12px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 12px 0px 0px var(--secondaryButtonShadowOutsideColor);
            box-shadow: 0px calc(-12px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 12px 0px 0px var(--secondaryButtonShadowOutsideColor);
  }
  .mx-button.mx-button-secondary:hover {
    -webkit-box-shadow: 0px calc(-12px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 14px 0px 0px var(--secondaryButtonShadowOutsideColor);
            box-shadow: 0px calc(-12px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 14px 0px 0px var(--secondaryButtonShadowOutsideColor);
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
  }
  .mx-button.mx-button-secondary:active {
    -webkit-box-shadow: 0px calc(-12px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 9px 0px 0px var(--secondaryButtonShadowOutsideColor);
            box-shadow: 0px calc(-12px + var(--secondaryButtonBorderWidth)) 0px 0px var(--secondaryButtonShadowInsideColor) inset, 0px 9px 0px 0px var(--secondaryButtonShadowOutsideColor);
    -webkit-transform: translate3d(0, 3px, 0);
            transform: translate3d(0, 3px, 0);
  }
}

.mx-video-shortcode video {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--mainImagesBorderRadius);
}
.mx-video-shortcode .mejs__poster {
  border-radius: var(--mainImagesBorderRadius);
}
@media screen and (max-width: 960px) {
  .mx-video-shortcode .mejs__poster {
    border-radius: calc(var(--mainImagesBorderRadius) / 1.5);
  }
}
.mx-video-shortcode:hover .mejs__overlay-button {
  background-color: var(--secondaryButtonBackgroundColorHover);
}
.mx-video-shortcode:focus .mejs__overlay-button, .mx-video-shortcode:active .mejs__overlay-button {
  background-color: var(--secondaryButtonBackgroundColorActive);
}
.mx-video-shortcode .mejs__overlay-button {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: none;
  border: var(--secondaryButtonBorderWidth) solid var(--secondaryButtonBorderColor);
  background-color: var(--secondaryButtonBackgroundColor);
  color: var(--secondaryButtonTextColor);
  -webkit-box-shadow: inset 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px var(--secondaryButtonShadowInsideColor);
          box-shadow: inset 0px calc(-15px + var(--secondaryButtonBorderWidth)) 0px var(--secondaryButtonShadowInsideColor);
}
@media screen and (max-width: 560px) {
  .mx-video-shortcode .mejs__overlay-button {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: calc(var(--secondaryButtonFontSize) / 1.25);
    border-width: var(--secondaryButtonBorderWidthMobile);
    -webkit-box-shadow: inset 0px calc(-12px + var(--secondaryButtonBorderWidthMobile)) 0px var(--secondaryButtonShadowInsideColor);
            box-shadow: inset 0px calc(-12px + var(--secondaryButtonBorderWidthMobile)) 0px var(--secondaryButtonShadowInsideColor);
  }
}
.mx-video-shortcode .mejs__overlay-button::before, .mx-video-shortcode .mejs__overlay-button::after {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.mx-video-shortcode .mejs__overlay-button::before {
  top: calc(20px - var(--secondaryButtonBorderWidth));
  right: calc(20px - var(--secondaryButtonBorderWidth));
  width: 25px;
  height: 25px;
  background-image: url(../../assets/images/button/button-elements.png);
}
@media screen and (max-width: 560px) {
  .mx-video-shortcode .mejs__overlay-button::before {
    top: calc(16px - var(--secondaryButtonBorderWidth));
    right: calc(16px - var(--secondaryButtonBorderWidth));
    width: 16px;
    height: 16px;
  }
}
.mx-video-shortcode .mejs__overlay-button::after {
  margin: auto;
  top: 1px;
  left: 5px;
  right: 0;
  bottom: 0;
  width: 38px;
  height: 42px;
  background-image: url(../../assets/images/button/button-play.svg);
}
@media screen and (max-width: 560px) {
  .mx-video-shortcode .mejs__overlay-button::after {
    width: 25px;
    height: 28px;
  }
}

/* Main */
input[type=text],
input[type=password],
input[type=email],
textarea {
  margin: 0;
  padding: 10px 15px;
  background: var(--inputBackgroundColor);
  font-family: var(--mainFontFamily);
  font-size: var(--mainFontSizeBig);
  line-height: var(--mainLineHeight);
  border: none;
  outline: none;
  color: var(--mainPrimaryColor);
  resize: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  border-radius: calc(var(--mainImagesBorderRadius) / 3);
}
input[type=text]::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--mainPrimaryColor);
  opacity: 0.6;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
input[type=text]::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--mainPrimaryColor);
  opacity: 0.6;
  -moz-transition: 0.2s;
  transition: 0.2s;
}
input[type=text]:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--mainPrimaryColor);
  opacity: 0.6;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
input[type=text]::-ms-input-placeholder, input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--mainPrimaryColor);
  opacity: 0.6;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
input[type=text]::placeholder, input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=email]::placeholder,
textarea::placeholder,
textarea::placeholder {
  color: var(--mainPrimaryColor);
  opacity: 0.6;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
input[type=text]:hover, input[type=text]:focus, input[type=text]:active,
input[type=password]:hover,
input[type=password]:focus,
input[type=password]:active,
input[type=email]:hover,
input[type=email]:focus,
input[type=email]:active,
textarea:hover,
textarea:focus,
textarea:active {
  background: var(--inputBackgroundColorHover);
}

.mx-form-shortcode {
  position: relative;
  padding: 100px 120px;
  background-color: var(--mainTertiaryColor);
  border-radius: var(--mainImagesBorderRadius);
}
@media screen and (max-width: 960px) {
  .mx-form-shortcode {
    padding: 40px 20px 60px 20px;
    border-radius: calc(var(--mainImagesBorderRadius) / 1.5);
  }
}
.mx-form-shortcode .mx-form-content {
  position: relative;
  z-index: 1;
}
.mx-form-shortcode .mx-form-content .mx-content-title {
  position: relative;
  text-align: center;
}
.mx-form-shortcode .mx-form-content .mx-content-title svg {
  position: absolute;
  top: -30px;
  right: -15px;
}
.mx-form-shortcode .mx-form-content .mx-content-title svg path {
  fill: var(--mainSecondaryColor);
}
@media screen and (max-width: 960px) {
  .mx-form-shortcode .mx-form-content .mx-content-title svg {
    display: none;
  }
}
.mx-form-shortcode .mx-form-content .mx-form-description {
  margin: 7px 0 0 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .mx-form-shortcode .mx-form-content .mx-form-description {
    margin: 10px 0 0 0;
  }
}
.mx-form-shortcode .mx-form-content .mx-form-contact {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-form-shortcode .mx-form-content .mx-form-contact {
    margin: 0;
  }
}
.mx-form-shortcode .mx-form-content .mx-form-contact input {
  margin: 20px 0 0;
  width: 100%;
}
.mx-form-shortcode .mx-form-content .mx-form-contact textarea {
  margin: 20px 0 0;
  width: 100%;
}
.mx-form-shortcode .mx-form-content .mx-form-contact .mx-button {
  margin: 20px auto 0 auto;
}
.mx-form-shortcode .mx-form-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: auto;
  max-width: 100%;
}

/* contact form */
.wpcf7-form .mx-form-message .wpcf7-not-valid-tip {
  padding: 5px 0 0 0;
  max-width: 260px;
  font-family: var(--mainFontFamily);
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeSmall);
  color: var(--mainSecondaryColor);
}
.wpcf7-form .mx-form-message .wpcf7-spinner {
  margin: 5px auto 0 auto;
  display: block;
}
.wpcf7-form .mx-form-message ~ .wpcf7-response-output {
  margin: 40px auto 0 auto;
  padding: 5px 10px;
  max-width: 360px;
  font-family: var(--mainFontFamily);
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeSmall);
  border-radius: calc(var(--mainImagesBorderRadius) / 3);
}

/* Text size */
.mx-text-small {
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeSmall);
  line-height: var(--mainLineHeight);
  color: var(--mainPrimaryColor);
}

.mx-text-medium {
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSize);
  line-height: var(--mainLineHeight);
  color: var(--mainPrimaryColor);
}

.mx-text-big {
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeBig);
  line-height: var(--mainLineHeight);
  color: var(--mainPrimaryColor);
}

/* Text position */
.text-left {
  text-align: left;
}

@media screen and (max-width: 960px) {
  .text-left-md {
    text-align: left;
  }
}

@media screen and (max-width: 560px) {
  .text-left-sm {
    text-align: left;
  }
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 960px) {
  .text-center-md {
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .text-center-sm {
    text-align: center;
  }
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 960px) {
  .text-right-md {
    text-align: right;
  }
}

@media screen and (max-width: 560px) {
  .text-right-sm {
    text-align: right;
  }
}