*,
*::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: 960px) {
  .vc_row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media screen and (max-width: 960px) {
  .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: 1400px) {
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@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;
  }
}
/* Text align */
.mx-text-left {
  text-align: left;
}

.mx-text-center {
  text-align: center;
}

.mx-text-right {
  text-align: right;
}

/* Position */
.mx-position-center {
  margin: 0 auto;
}

.mx-position-right {
  margin: 0 0 0 auto;
}

.mx-position-left {
  margin: auto 0 0 0;
}

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

input,
textarea {
  margin: 0;
  padding: 10px 15px;
  resize: none;
  outline: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  background: transparent;
  border: 1px solid var(--inputBorderColor);
  line-height: var(--mainLineHeight);
  font-family: var(--mainFontFamily);
  font-size: var(--mainFontSizeSmall);
  color: var(--inputBorderColorHover);
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--inputBorderColor);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--inputBorderColor);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--inputBorderColor);
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--inputBorderColor);
}
input::placeholder,
textarea::placeholder {
  color: var(--inputBorderColor);
}
input:hover,
textarea:hover {
  border: 1px solid var(--inputBorderColorHover);
}
input:active, input:focus,
textarea:active,
textarea:focus {
  border: 1px solid var(--inputBorderColorHover);
}
input:active::-webkit-input-placeholder, input:focus::-webkit-input-placeholder, textarea:active::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: var(--inputBorderColorHover);
}
input:active::-moz-placeholder, input:focus::-moz-placeholder, textarea:active::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: var(--inputBorderColorHover);
}
input:active:-ms-input-placeholder, input:focus:-ms-input-placeholder, textarea:active:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: var(--inputBorderColorHover);
}
input:active::-ms-input-placeholder, input:focus::-ms-input-placeholder, textarea:active::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
  color: var(--inputBorderColorHover);
}
input:active::placeholder, input:focus::placeholder,
textarea:active::placeholder,
textarea:focus::placeholder {
  color: var(--inputBorderColorHover);
}

/* Images */
img {
  display: block;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

/* Site */
.site {
  position: relative;
}

/* Header -> Navbar */
.mx-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  .mx-header {
    background-color: var(--headerBackgroundColorMobile);
  }
}
.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;
}
.mx-header .mx-navbar .mx-logo img:hover {
  opacity: 0.7;
}
@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: 0.48px;
  text-transform: capitalize;
  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;
}
.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 {
  opacity: 1;
  width: var(--headerSocialIconMaxSize);
  height: var(--headerSocialIconMaxSize);
}
.mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode .mx-social-icon svg:hover, .mx-header .mx-navbar .mx-social.mx-icon-set .mx-social-icon-shortcode .mx-social-icon img:hover {
  opacity: 0.7;
}
@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.menu-yes > .mx-social {
    display: none;
  }
}

/* Footer */
.mx-footer {
  padding: 50px 0;
  background-color: var(--footerBackgroundColor);
}
@media screen and (max-width: 1400px) {
  .mx-footer {
    text-align: center;
  }
}
.mx-footer .mx-logo img {
  max-height: var(--footerLogoMaxHeight);
  opacity: 0.7;
}
.mx-footer .mx-logo img:hover {
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .mx-footer .mx-logo img {
    margin: 0 auto;
    max-height: var(--footerLogoMobileMaxHeight);
    opacity: 1;
  }
}
.mx-footer .mx-created {
  display: block;
}
@media screen and (max-width: 1400px) {
  .mx-footer .mx-created {
    margin: 30px 0 0 0;
  }
}
.mx-footer .mx-created img {
  margin: 0 auto;
  width: 140px;
  opacity: 0.7;
}
.mx-footer .mx-created img:hover {
  opacity: 1;
}
.mx-footer .mx-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: 1400px) {
  .mx-footer .mx-social {
    margin: 40px 0 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mx-footer .mx-social .mx-social-icon-shortcode svg, .mx-footer .mx-social .mx-social-icon-shortcode img {
  width: var(--footerSocialIconMaxSize);
  height: var(--footerSocialIconMaxSize);
}
@media screen and (max-width: 1400px) {
  .mx-footer .mx-social .mx-social-icon-shortcode svg, .mx-footer .mx-social .mx-social-icon-shortcode img {
    width: 36px;
    height: 36px;
  }
}

/* 404 */
.mx-page-404 {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 75vh;
  gap: 40px;
}
.mx-page-404 .mx-404-content {
  text-align: center;
}
.mx-page-404 .mx-404-content .mx-heading-h5 {
  margin: 10px 0 0 0;
}
.mx-page-404 .mx-button {
  max-width: 280px;
}

/* Form */
.wpcf7-form .mx-form-message input,
.wpcf7-form .mx-form-message textarea {
  margin: 20px auto 0 auto;
  display: block;
  width: 100%;
  max-width: 500px;
  line-height: 100%;
}
.wpcf7-form .mx-form-message .wpcf7-spinner {
  margin: 5px auto 0 auto;
  display: block;
}
.wpcf7-form .mx-form-message .wpcf7-not-valid-tip {
  margin: 0 auto;
  font-size: var(--mainFontSizeSmall);
  max-width: 500px;
}
.wpcf7-form .mx-form-message ~ .wpcf7-response-output {
  margin: 0 auto;
  max-width: 500px;
  font-size: var(--mainFontSize);
  line-height: var(--mainLineHeight);
  border-radius: var(--buttonBorderRadius);
}

/* accordion */
.mx-content .vc_tta-style-classic .vc_tta-panel {
  border-bottom: 1px solid var(--mainPrimaryColorOpacity2);
}
.mx-content .vc_tta-style-classic .vc_tta-panel:first-child {
  border-top: 1px solid var(--mainPrimaryColorOpacity2);
}
.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 {
  line-height: 100%;
  font-size: var(--mainFontSize);
}
.mx-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title > a span {
  font-weight: 600;
  line-height: 100%;
  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::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: 18px;
    width: 18px;
    height: 14.4px;
  }
}
.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='21' viewBox='0 0 25 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 6.26758L12.8125 16.2676L21.875 6.26758' 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='21' viewBox='0 0 25 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.75 6.26758L12.8125 16.2676L21.875 6.26758' 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: 24px 60px 28px 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: 15px 50px 15px 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: 24px 0 28px 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: 15px 0 15px 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 20px 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 20px 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-content .vc_tta-style-classic .vc_tta-panel .vc_tta-panel-body > * {
  color: var(--mainSecondaryColor);
}

.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: 160px 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(--headerBackgroundColorMobile);
  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: 40px;
}
.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;
}
@media screen and (max-width: 960px) {
  .mx-social-icon-shortcode {
    gap: 10px;
  }
}
.mx-social-icon-shortcode .mx-social-icon {
  display: block;
}
.mx-social-icon-shortcode .mx-social-icon svg,
.mx-social-icon-shortcode .mx-social-icon img {
  display: block;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 960px) {
  .mx-social-icon-shortcode .mx-social-icon svg,
  .mx-social-icon-shortcode .mx-social-icon img {
    width: 36px;
    height: 36px;
  }
}
.mx-social-icon-shortcode .mx-social-icon 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,
.mx-social-icon-shortcode .mx-social-info .mx-info-description {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: var(--linkColor);
}
.mx-social-icon-shortcode .mx-social-info .mx-info-description {
  font-size: var(--mainFontSizeSmall);
}
.mx-social-icon-shortcode:hover .mx-social-icon svg,
.mx-social-icon-shortcode:hover .mx-social-icon img {
  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-image-block {
  padding: 60px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .mx-image-block {
    padding: 40px;
  }
}
@media screen and (max-width: 960px) {
  .mx-image-block {
    padding: 32px;
  }
}
@media screen and (max-width: 560px) {
  .mx-image-block {
    padding: 22px;
  }
}
.mx-image-block .mx-content .mx-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
}
@media screen and (max-width: 1400px) {
  .mx-image-block .mx-content .mx-icon {
    height: 40px;
  }
}
@media screen and (max-width: 960px) {
  .mx-image-block .mx-content .mx-icon {
    height: 32px;
  }
}
@media screen and (max-width: 560px) {
  .mx-image-block .mx-content .mx-icon {
    height: 22px;
  }
}
.mx-image-block .mx-content .mx-icon img {
  margin: auto;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 60px;
}
@media screen and (max-width: 1400px) {
  .mx-image-block .mx-content .mx-icon img {
    max-height: 40px;
  }
}
@media screen and (max-width: 960px) {
  .mx-image-block .mx-content .mx-icon img {
    max-height: 32px;
  }
}
@media screen and (max-width: 560px) {
  .mx-image-block .mx-content .mx-icon img {
    max-height: 22px;
  }
}
.mx-image-block .mx-content .mx-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mx-image-block .mx-content .mx-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 60px;
  letter-spacing: 0.3em;
  color: var(--mainPrimaryColorOpacity2);
}
@media screen and (max-width: 1400px) {
  .mx-image-block .mx-content .mx-title {
    line-height: 40px;
  }
}
@media screen and (max-width: 960px) {
  .mx-image-block .mx-content .mx-title {
    line-height: 32px;
  }
}
@media screen and (max-width: 560px) {
  .mx-image-block .mx-content .mx-title {
    line-height: 22px;
  }
}

.mx-cta-section {
  position: relative;
}
.mx-cta-section .mx-section-illustration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .mx-cta-section .mx-section-illustration {
    left: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-section .mx-section-illustration.mobile-hide-illustration {
    display: none;
  }
}
.mx-cta-section .mx-section-illustration svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.mx-cta-section .mx-section-illustration svg path {
  stroke: var(--illustrationColor);
}
.mx-cta-section .mx-section-wrapper .mx-section-img {
  max-width: 100%;
}
@media screen and (max-width: 1400px) {
  .mx-cta-section .mx-section-wrapper .mx-section-img {
    position: relative;
    left: -10%;
    max-width: 120%;
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-section .mx-section-wrapper .mx-section-img {
    position: relative;
    left: -25%;
    max-width: 150%;
  }
}
@media screen and (max-width: 560px) {
  .mx-cta-section .mx-section-wrapper .mx-section-img {
    position: relative;
    left: -40%;
    max-width: 180%;
  }
}
.mx-cta-section .mx-section-wrapper .mx-section-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.mx-cta-section .mx-section-wrapper .mx-section-content .mx-content-title span {
  display: block;
}
.mx-cta-section .mx-section-wrapper .mx-section-content .mx-content-button {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-cta-section .mx-section-wrapper .mx-section-content .mx-content-button {
    margin: 10px 0 0 0;
  }
}
@media screen and (max-width: 960px) {
  .mx-cta-section .mx-section-wrapper .mx-section-content .mx-content-button .mx-button {
    max-width: 280px;
  }
}

.mx-social-section {
  position: relative;
  overflow: hidden;
}
.mx-social-section .mx-section-background {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mx-social-section .mx-section-border {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}
.mx-social-section .mx-corner {
  position: absolute;
  width: 118.29px;
  height: 115.24px;
  border-radius: 100%;
  background-color: var(--bodyBackgroundColor);
}
.mx-social-section .mx-corner.top {
  top: -60px;
}
.mx-social-section .mx-corner.left {
  left: -60px;
}
.mx-social-section .mx-corner.right {
  right: -60px;
}
.mx-social-section .mx-corner.bottom {
  bottom: -60px;
}
.mx-social-section .mx-section-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.mx-social-section .mx-section-content .mx-content-title {
  text-align: center;
}
.mx-social-section .mx-section-content .mx-content-title span {
  display: block;
}
.mx-social-section .mx-section-content .mx-content-list {
  margin: 40px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1400px) {
  .mx-social-section .mx-section-content .mx-content-list {
    margin: 20px 0 0 0;
  }
}
.mx-social-section .mx-section-content .mx-content-list .mx-social-icon-shortcode {
  margin: 0;
  display: block;
}
.mx-social-section .mx-section-content .mx-content-list .mx-social-icon-shortcode .mx-social-icon svg, .mx-social-section .mx-section-content .mx-content-list .mx-social-icon-shortcode .mx-social-icon img {
  width: 48px;
  height: 48px;
}
.mx-social-section .mx-section-content .mx-content-list .mx-social-icon-shortcode .mx-social-info {
  display: none;
}

.mx-advanced-cta {
  margin: 0 70px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .mx-advanced-cta {
    margin: 0;
  }
}
.mx-advanced-cta .mx-cta-illustration {
  position: absolute;
  top: 0;
  bottom: 0;
  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;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .mx-advanced-cta .mx-cta-illustration {
    display: none;
  }
}
.mx-advanced-cta .mx-cta-illustration.mx-advanced-cta-left {
  left: 0;
}
.mx-advanced-cta .mx-cta-illustration.mx-advanced-cta-right {
  right: 0;
}
.mx-advanced-cta .mx-cta-illustration svg {
  display: block;
}
.mx-advanced-cta .mx-cta-illustration svg path {
  stroke: var(--illustrationColor);
}
.mx-advanced-cta.mx-cta-illustration-hide .mx-cta-illustration {
  display: none;
}
.mx-advanced-cta .mx-cta-wrapper {
  position: relative;
  overflow: hidden;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-block-img {
  width: 100%;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-color: var(--bodyBackgroundColor);
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.top {
  top: -70px;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.left {
  left: -70px;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.right {
  right: -70px;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.bottom {
  bottom: -70px;
}
@media screen and (max-width: 960px) {
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner {
    width: 70px;
    height: 70px;
  }
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.top {
    top: -35px;
  }
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.left {
    left: -35px;
  }
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.right {
    right: -35px;
  }
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-block .mx-corner.bottom {
    bottom: -35px;
  }
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-content .mx-content-title {
  margin: 0 -20px;
}
@media screen and (max-width: 1400px) {
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-content .mx-content-title {
    margin: 0;
  }
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-content .mx-content-title .mx-content-subtitle {
  display: block;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-content .mx-content-button {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-content .mx-content-button {
    margin: 25px 0 0 0;
  }
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item {
  margin: 80px auto 0 auto;
  max-width: 260px;
  text-align: center;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item {
    margin: 20px auto;
    max-width: 400px;
  }
}
@media screen and (max-width: 560px) {
  .mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item {
    max-width: 260px;
  }
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item .mx-item-icon {
  margin: 0 auto;
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item .mx-item-title {
  margin: 10px 0 0 0;
}
.mx-advanced-cta .mx-cta-wrapper .mx-cta-list .mx-list-item .mx-item-description {
  margin: 10px 0 0 0;
  line-height: var(--mainLineHeight);
}

.mx-hero-shortcode {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode {
    height: 40vh;
  }
}
.mx-hero-shortcode .mx-hero-illustration {
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-illustration {
    display: none;
  }
}
.mx-hero-shortcode .mx-hero-illustration.mx-hero-image-left {
  position: absolute;
  top: 50px;
  left: 0;
}
.mx-hero-shortcode .mx-hero-illustration.mx-hero-image-right {
  position: absolute;
  top: 50px;
  right: 0;
}
.mx-hero-shortcode .mx-hero-illustration svg {
  display: block;
}
.mx-hero-shortcode .mx-hero-illustration svg path {
  stroke: var(--illustrationColor);
}
.mx-hero-shortcode.mx-hero-illustration-hide .mx-hero-illustration {
  display: none;
}
.mx-hero-shortcode .mx-hero-background {
  position: relative;
  height: 100%;
  min-height: 880px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bodyBackgroundColor);
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background {
    min-height: 40vh;
  }
}
.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%);
}
.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-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  z-index: 2;
}
.mx-hero-shortcode .mx-hero-info .mx-info-subtitle {
  font-size: calc(var(--mainFontSize) * 2.3);
  line-height: 100%;
  letter-spacing: 0.1em;
  color: var(--mainPrimaryColor);
}
@media screen and (max-width: 1400px) {
  .mx-hero-shortcode .mx-hero-info .mx-info-subtitle {
    font-size: var(--mainFontSizeSmall);
  }
}
.mx-hero-shortcode .mx-hero-info .mx-info-title {
  color: var(--mainPrimaryColor);
}
.mx-hero-shortcode .mx-hero-info .mx-info-button {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1400px) {
  .mx-hero-shortcode .mx-hero-info .mx-info-button {
    margin: 20px 0 0 0;
  }
}
.mx-hero-shortcode .mx-hero-info .mx-info-button .mx-button {
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-info > .mx-hero-illustration {
    display: none;
  }
}
.mx-hero-shortcode .mx-hero-info > .mx-hero-illustration.mx-hero-info-image-before {
  margin: 0 0 15px 0;
}
.mx-hero-shortcode .mx-hero-info > .mx-hero-illustration.mx-hero-info-image-after {
  margin: 20px 0 0 0;
}
.mx-hero-shortcode .mx-hero-info > .mx-hero-illustration svg {
  margin: 0 auto;
  display: block;
}
.mx-hero-shortcode .mx-hero-info > .mx-hero-illustration svg path {
  stroke: var(--illustrationColor);
}

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-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 {
  margin: 0 auto;
  display: block;
}
.mx-separator-shortcode.mx-separator-basic svg {
  max-width: 220px;
}
@media screen and (max-width: 960px) {
  .mx-separator-shortcode.mx-separator-basic svg {
    max-width: 200px;
  }
}
.mx-separator-shortcode.mx-separator-detailed svg {
  max-width: 320px;
}
@media screen and (max-width: 960px) {
  .mx-separator-shortcode.mx-separator-detailed svg {
    max-width: 200px;
  }
}

h1, .mx-heading-h1,
h2, .mx-heading-h2,
h3, .mx-heading-h3,
h4, .mx-heading-h4,
h5, .mx-heading-h5 {
  font-family: var(--headingsFontFamily);
  font-weight: var(--headingsFontWeight);
  color: var(--mainPrimaryColor);
}

h1, .mx-heading-h1 {
  font-size: var(--headingH1fontSize);
  line-height: var(--headingH1LineHeight);
}
@media screen and (max-width: 1400px) {
  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: 1400px) {
  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: 1400px) {
  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: 1400px) {
  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: 1400px) {
  h5, .mx-heading-h5 {
    font-size: var(--headingH5fontSizeMobile);
  }
}

.mx-button {
  display: block;
  width: 100%;
  max-width: 360px;
  height: 62px;
  line-height: 62px;
  border: none;
  outline: none;
  background-color: var(--buttonBackgroundColor);
  border-radius: var(--buttonBorderRadius);
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--buttonFontFamily);
  font-size: var(--buttonFontSize);
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--buttonTextColor);
  -webkit-box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.25), inset 0px 2px 0px var(--buttonShadowColor);
          box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.25), inset 0px 2px 0px var(--buttonShadowColor);
}
.mx-button:hover {
  background-color: var(--buttonBackgroundColorHover);
}
.mx-button:active {
  background-color: var(--buttonBackgroundColorActive);
}
@media screen and (max-width: 1400px) {
  .mx-button {
    max-width: 330px;
    height: 52px;
    line-height: 52px;
  }
}
@media screen and (max-width: 560px) {
  .mx-button {
    max-width: 100%;
  }
}

.mx-video-shortcode video {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mx-video-shortcode .mejs__overlay-button {
  position: relative;
  width: 100px;
  height: 100px;
  background: var(--buttonBackgroundColor);
  -webkit-box-shadow: 0px 2px 0px 0px var(--buttonShadowColor) inset, 0px -2px 0px 0px rgba(0, 0, 0, 0.25) inset;
          box-shadow: 0px 2px 0px 0px var(--buttonShadowColor) inset, 0px -2px 0px 0px rgba(0, 0, 0, 0.25) inset;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .mx-video-shortcode .mejs__overlay-button {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 960px) {
  .mx-video-shortcode .mejs__overlay-button {
    width: 75px;
    height: 75px;
  }
}
@media screen and (max-width: 560px) {
  .mx-video-shortcode .mejs__overlay-button {
    width: 60px;
    height: 60px;
  }
}
.mx-video-shortcode .mejs__overlay-button::after {
  margin: auto;
  position: absolute;
  top: 1px;
  left: 5px;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 34px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../assets/images/mediaelementplayer/play.svg);
  content: "";
}
@media screen and (max-width: 1400px) {
  .mx-video-shortcode .mejs__overlay-button::after {
    width: 27px;
    height: 31px;
  }
}
@media screen and (max-width: 960px) {
  .mx-video-shortcode .mejs__overlay-button::after {
    width: 23px;
    height: 36px;
  }
}
@media screen and (max-width: 560px) {
  .mx-video-shortcode .mejs__overlay-button::after {
    width: 19px;
    height: 21px;
  }
}
.mx-video-shortcode:hover .mejs__overlay-button {
  background: var(--buttonBackgroundColorHover);
}
.mx-video-shortcode:active .mejs__overlay-button {
  background: var(--buttonBackgroundColorActive);
}

.mx-text-small {
  line-height: 100%;
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeSmall);
  color: var(--mainPrimaryColorOpacity1);
}
@media screen and (max-width: 960px) {
  .mx-text-small {
    font-size: calc(var(--mainFontSizeSmall) / 1.33);
  }
}
@media screen and (max-width: 560px) {
  .mx-text-small {
    font-size: calc(var(--mainFontSizeSmall) / 2);
  }
}

.mx-text-medium {
  line-height: var(--mainLineHeight);
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSize);
  color: var(--mainPrimaryColorOpacity1);
}

.mx-text-big {
  line-height: 110%;
  font-weight: var(--mainFontWeightBig);
  font-size: var(--mainFontSizeBig);
  color: var(--mainPrimaryColorOpacity1);
}