*,
*::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: 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);
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  margin: 0;
  padding: 0 0 10px 0;
  line-height: 180%;
  background: transparent;
  font-family: var(--mainFontFamily);
  font-size: var(--mainFontSizeSmall);
  border: none;
  outline: none;
  border-bottom: 2px solid var(--mainPrimaryColorOption2);
  color: var(--mainPrimaryColor);
  resize: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
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 {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: var(--mainPrimaryColorOption2);
}
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 {
  -moz-transition: 0.2s;
  transition: 0.2s;
  color: var(--mainPrimaryColorOption2);
}
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 {
  -ms-transition: 0.2s;
  transition: 0.2s;
  color: var(--mainPrimaryColorOption2);
}
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 {
  -ms-transition: 0.2s;
  transition: 0.2s;
  color: var(--mainPrimaryColorOption2);
}
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 {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  color: var(--mainPrimaryColorOption2);
}
input[type=text]:hover,
input[type=password]:hover,
input[type=email]:hover,
textarea:hover {
  border-color: var(--linkColorHover);
}
input[type=text]:hover::-webkit-input-placeholder, input[type=password]:hover::-webkit-input-placeholder, input[type=email]:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: var(--linkColorHover);
}
input[type=text]:hover::-moz-placeholder, input[type=password]:hover::-moz-placeholder, input[type=email]:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: var(--linkColorHover);
}
input[type=text]:hover:-ms-input-placeholder, input[type=password]:hover:-ms-input-placeholder, input[type=email]:hover:-ms-input-placeholder, textarea:hover:-ms-input-placeholder {
  color: var(--linkColorHover);
}
input[type=text]:hover::-ms-input-placeholder, input[type=password]:hover::-ms-input-placeholder, input[type=email]:hover::-ms-input-placeholder, textarea:hover::-ms-input-placeholder {
  color: var(--linkColorHover);
}
input[type=text]:hover::placeholder,
input[type=password]:hover::placeholder,
input[type=email]:hover::placeholder,
textarea:hover::placeholder {
  color: var(--linkColorHover);
}
input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=email]:focus,
input[type=email]:active,
textarea:focus,
textarea:active {
  color: var(--mainPrimaryColor);
  border-color: var(--linkColorHover);
}
input[type=text]:focus::-webkit-input-placeholder, input[type=text]:active::-webkit-input-placeholder, input[type=password]:focus::-webkit-input-placeholder, input[type=password]:active::-webkit-input-placeholder, input[type=email]:focus::-webkit-input-placeholder, input[type=email]:active::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, textarea:active::-webkit-input-placeholder {
  color: var(--mainPrimaryColorOption2);
}
input[type=text]:focus::-moz-placeholder, input[type=text]:active::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=password]:active::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=email]:active::-moz-placeholder, textarea:focus::-moz-placeholder, textarea:active::-moz-placeholder {
  color: var(--mainPrimaryColorOption2);
}
input[type=text]:focus:-ms-input-placeholder, input[type=text]:active:-ms-input-placeholder, input[type=password]:focus:-ms-input-placeholder, input[type=password]:active:-ms-input-placeholder, input[type=email]:focus:-ms-input-placeholder, input[type=email]:active:-ms-input-placeholder, textarea:focus:-ms-input-placeholder, textarea:active:-ms-input-placeholder {
  color: var(--mainPrimaryColorOption2);
}
input[type=text]:focus::-ms-input-placeholder, input[type=text]:active::-ms-input-placeholder, input[type=password]:focus::-ms-input-placeholder, input[type=password]:active::-ms-input-placeholder, input[type=email]:focus::-ms-input-placeholder, input[type=email]:active::-ms-input-placeholder, textarea:focus::-ms-input-placeholder, textarea:active::-ms-input-placeholder {
  color: var(--mainPrimaryColorOption2);
}
input[type=text]:focus::placeholder, input[type=text]:active::placeholder,
input[type=password]:focus::placeholder,
input[type=password]:active::placeholder,
input[type=email]:focus::placeholder,
input[type=email]:active::placeholder,
textarea:focus::placeholder,
textarea:active::placeholder {
  color: var(--mainPrimaryColorOption2);
}

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

.vc_single_image-img {
  border-radius: var(--mainImagesBorderRadius);
}

.wpb_single_image.border-radius-0 .vc_single_image-img {
  border-radius: 0;
}

/* Width */
.max-width-10 {
  max-width: 10%;
}

.max-width-15 {
  max-width: 15%;
}

.max-width-20 {
  max-width: 20%;
}

.max-width-25 {
  max-width: 25%;
}

.max-width-30 {
  max-width: 30%;
}

.max-width-35 {
  max-width: 35%;
}

.max-width-40 {
  max-width: 40%;
}

.max-width-45 {
  max-width: 45%;
}

.max-width-50 {
  max-width: 50%;
}

.max-width-55 {
  max-width: 55%;
}

.max-width-60 {
  max-width: 60%;
}

.max-width-65 {
  max-width: 65%;
}

.max-width-70 {
  max-width: 70%;
}

.max-width-75 {
  max-width: 75%;
}

.max-width-80 {
  max-width: 80%;
}

.max-width-85 {
  max-width: 85%;
}

.max-width-90 {
  max-width: 90%;
}

.max-width-95 {
  max-width: 95%;
}

.max-width-100 {
  max-width: 100%;
}

@media screen and (max-width: 960px) {
  .max-width-xs-100 {
    max-width: 100%;
  }
}

/* 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;
  border-bottom: 2px solid var(--mainSecondaryColorOption1);
  /* Only mobile menu */
}
@media screen and (max-width: 960px) {
  .mx-header .mx-navbar {
    padding: 10px 0;
    min-height: 43px;
    border: none;
  }
  .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));
  border: none;
}
@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;
  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 {
  width: var(--headerSocialIconMaxSize);
  height: var(--headerSocialIconMaxSize);
}
@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;
  }
}

/* 404 */
body.error404 .mx-navbar {
  border: none;
}

.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: 100vh;
  gap: 30px;
}
@media screen and (max-width: 960px) {
  .mx-page-404 {
    gap: 20px;
  }
}
.mx-page-404 .mx-404-content {
  position: relative;
  text-align: center;
}
.mx-page-404 .mx-404-content .mx-heading-h1 {
  font-size: calc(var(--headingH1fontSize) * 2);
  opacity: 0.2;
}
@media screen and (max-width: 960px) {
  .mx-page-404 .mx-404-content .mx-heading-h1 {
    font-size: var(--headingH1fontSize);
  }
}
.mx-page-404 .mx-404-content .mx-heading-h4 {
  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;
}
@media screen and (max-width: 560px) {
  .mx-page-404 .mx-404-content .mx-heading-h4 {
    bottom: 22px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

/* Contact form */
.wpcf7-form .mx-form-message input,
.wpcf7-form .mx-form-message textarea {
  margin: 40px 0 0 0;
  width: 100%;
}
.wpcf7-form .mx-form-message textarea {
  max-height: 250px;
}
@media screen and (max-width: 960px) {
  .wpcf7-form .mx-form-message textarea {
    max-height: 200px;
  }
}
.wpcf7-form .mx-form-message .wpcf7-not-valid-tip {
  padding: 5px 0 0 0;
  font-family: var(--mainFontFamily);
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeSmall);
  line-height: var(--mainLineHeightSmall);
}
.wpcf7-form .mx-form-message .wpcf7-spinner {
  margin: 5px auto 0 auto;
  display: block;
}
.wpcf7-form .mx-form-message ~ .wpcf7-response-output {
  margin: 0;
  padding: 5px 10px;
  font-family: var(--mainFontFamily);
  font-weight: var(--mainFontWeight);
  font-size: var(--mainFontSizeSmall);
  line-height: var(--mainLineHeightSmall);
  border-radius: var(--mainImagesBorderRadius);
}

/* Accordion */
.mx-content .vc_tta-style-classic .vc_tta-panel {
  border-bottom: 3px solid var(--mainPrimaryColorOption3);
}
@media screen and (max-width: 960px) {
  .mx-content .vc_tta-style-classic .vc_tta-panel:first-child {
    border-top: 3px solid var(--mainPrimaryColorOption3);
  }
}
.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 span {
  font-weight: var(--mainFontWeightBig);
  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(--mainFontSizeSmall);
    line-height: var(--mainLineHeightSmall);
  }
}
.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: 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: "";
  -webkit-mask-box-image: unset;
          mask-border: unset;
}
.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(--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: 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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 15px;
}
.mx-social-icon-shortcode .mx-social-icon {
  display: block;
}
.mx-social-icon-shortcode .mx-social-icon svg {
  width: 40px;
  height: 40px;
}
.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 .mx-info-title {
  text-transform: capitalize;
  font-size: var(--mainFontSizeBig);
  color: var(--mainPrimaryColor);
}
.mx-social-icon-shortcode .mx-social-info .mx-info-description {
  margin: 5px 0 0 0;
  line-height: 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.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-cta-section-shortcode {
  position: relative;
}
.mx-cta-section-shortcode img {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-shortcode img {
    width: 100%;
  }
}
.mx-cta-section-shortcode .mx-cta-content {
  position: absolute;
  top: 0;
  bottom: 0;
  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;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-shortcode .mx-cta-content {
    position: relative;
    text-align: center;
  }
}
.mx-cta-section-shortcode .mx-cta-content .mx-cta-title span {
  display: block;
  font-size: calc(var(--headingH2fontSize) / 1.28);
  line-height: calc(var(--headingH2LineHeight) / 1.28);
}
@media screen and (max-width: 960px) {
  .mx-cta-section-shortcode .mx-cta-content .mx-cta-title span {
    font-size: var(--headingH2fontSizeMobile);
  }
}
.mx-cta-section-shortcode .mx-cta-content .mx-cta-button {
  margin: 15px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-cta-section-shortcode .mx-cta-content .mx-cta-button a {
    margin: 10px auto 0 auto;
  }
}

.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: cover;
  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: 250px;
  }
}
.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: 70px;
  z-index: 3;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper {
    bottom: 20px;
  }
}
.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-subtitle {
  letter-spacing: 0.25em;
  color: var(--mainPrimaryColor);
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-subtitle {
    margin: 7px 0 0 0;
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-title {
  margin: 30px 0 0 0;
  color: var(--mainPrimaryColor);
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-title {
    margin: 7px 0 0 0;
  }
}
.mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-button {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-hero-shortcode .mx-hero-background .mx-hero-wrapper .mx-hero-info .mx-info-button {
    margin: 7px 0 0 0;
  }
}
.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-footer-static-shortcode .mx-footer-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bodyBackgroundColor);
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background {
    background-position: top right;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-info {
  padding: 150px 0 190px 0;
  width: 50%;
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-info {
    padding: 105px 0 95px 0;
  }
}
@media screen and (max-width: 560px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-info {
    width: 80%;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-info .mx-info-title {
  color: var(--mainSecondaryColor);
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-info .mx-info-button {
  margin: 30px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-info .mx-info-button {
    margin: 20px 0 0 0;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper {
  padding: 50px 0;
  background-color: var(--footerBackgroundColor);
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper {
    padding: 40px 0;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-logo img {
  display: block;
  max-height: var(--footerLogoMaxHeight);
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-logo img:hover {
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-logo img {
    margin: 0 auto;
    max-height: var(--footerLogoMobileMaxHeight);
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-created {
  display: block;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-created {
    margin: 30px 0 0 0;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-created svg {
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-created svg path {
  fill: var(--mainSecondaryColor);
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-created svg:hover, .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-created svg:active {
  opacity: 0.7;
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .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-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social {
    margin: 40px 0 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social .mx-social-icon-shortcode svg, .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social .mx-social-icon-shortcode img {
  width: var(--footerSocialIconMaxSize);
  height: var(--footerSocialIconMaxSize);
}
@media screen and (max-width: 960px) {
  .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social .mx-social-icon-shortcode svg, .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social .mx-social-icon-shortcode img {
    width: 36px;
    height: 36px;
  }
}
.mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social .mx-social-icon-shortcode svg:hover, .mx-footer-static-shortcode .mx-footer-background .mx-footer-wrapper .mx-footer-social .mx-social-icon-shortcode img:hover {
  opacity: 0.7;
}

.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-bullet-point-shortcode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 960px) {
  .mx-bullet-point-shortcode {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.mx-bullet-point-shortcode .mx-point-icon {
  margin: 3px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-bullet-point-shortcode .mx-point-icon {
    margin: 0;
  }
}
.mx-bullet-point-shortcode .mx-point-icon svg rect,
.mx-bullet-point-shortcode .mx-point-icon svg path {
  fill: var(--mainPrimaryColor);
}
.mx-bullet-point-shortcode .mx-point-info {
  margin: 0 0 0 10px;
}
.mx-bullet-point-shortcode .mx-point-info .mx-info-title {
  text-transform: capitalize;
  font-size: var(--mainFontSizeBig);
  color: var(--mainPrimaryColor);
}
@media screen and (max-width: 960px) {
  .mx-bullet-point-shortcode .mx-point-info .mx-info-title {
    margin: 10px 0 0 0;
  }
}
.mx-bullet-point-shortcode .mx-point-info .mx-info-description {
  margin: 12px 0 0 0;
}
@media screen and (max-width: 960px) {
  .mx-bullet-point-shortcode .mx-point-info .mx-info-description {
    margin: 3px 0 0 0;
  }
}

.mx-separator-shortcode {
  width: 100%;
}

h1, .mx-heading-h1,
h2, .mx-heading-h2,
h3, .mx-heading-h3,
h4, .mx-heading-h4,
h5, .mx-heading-h5 {
  font-weight: var(--mainFontWeight);
  text-transform: uppercase;
  color: var(--mainPrimaryColor);
}

h1, .mx-heading-h1 {
  font-family: var(--headingH1FontFamily);
  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-family: var(--headingH2FontFamily);
  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-family: var(--headingH3FontFamily);
  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-family: var(--headingH4FontFamily);
  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-family: var(--headingH5FontFamily);
  font-size: var(--headingH5fontSize);
  line-height: var(--headingH5LineHeight);
}
@media screen and (max-width: 960px) {
  h5, .mx-heading-h5 {
    font-size: var(--headingH5fontSizeMobile);
  }
}

.mx-heading-shortcode .mx-tag {
  padding: 0 0 10px 0;
  border-bottom-style: solid;
  border-bottom-color: var(--mainPrimaryColorOption3);
}
@media screen and (max-width: 960px) {
  .mx-heading-shortcode .mx-tag {
    padding: 0;
    border-bottom: none;
  }
}

.mx-button {
  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: 320px;
  height: 60px;
  line-height: 100%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  background-origin: border-box;
}
.mx-button.mx-button-big {
  max-width: 440px;
  height: 80px;
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-big {
    max-width: 335px;
    height: 60px;
  }
}
.mx-button.mx-button-primary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--primaryButtonBackgroundAngle)), color-stop(0%, var(--primaryButtonBackgroundColorPrimary)), to(var(--primaryButtonBackgroundColorSecondary)));
  background-image: -o-linear-gradient(var(--primaryButtonBackgroundAngle), var(--primaryButtonBackgroundColorPrimary) 0%, var(--primaryButtonBackgroundColorSecondary) 100%);
  background-image: linear-gradient(var(--primaryButtonBackgroundAngle), var(--primaryButtonBackgroundColorPrimary) 0%, var(--primaryButtonBackgroundColorSecondary) 100%);
  font-family: var(--primaryButtonFontFamily);
  font-size: var(--primaryButtonFontSizeDesktop);
  font-weight: var(--primaryButtonFontWeight);
  border-radius: var(--primaryButtonBorderRadius);
  border: var(--secondaryButtonBorderWidth) solid var(--primaryButtonBorderColor);
  color: var(--primaryButtonTextColor);
}
.mx-button.mx-button-primary:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--primaryButtonBackgroundAngle)), color-stop(0%, var(--primaryButtonBackgroundColorPrimaryHover)), to(var(--primaryButtonBackgroundColorSecondaryHover)));
  background-image: -o-linear-gradient(var(--primaryButtonBackgroundAngle), var(--primaryButtonBackgroundColorPrimaryHover) 0%, var(--primaryButtonBackgroundColorSecondaryHover) 100%);
  background-image: linear-gradient(var(--primaryButtonBackgroundAngle), var(--primaryButtonBackgroundColorPrimaryHover) 0%, var(--primaryButtonBackgroundColorSecondaryHover) 100%);
}
.mx-button.mx-button-primary:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--primaryButtonBackgroundAngle)), color-stop(0%, var(--primaryButtonBackgroundColorPrimaryActive)), to(var(--primaryButtonBackgroundColorSecondaryActive)));
  background-image: -o-linear-gradient(var(--primaryButtonBackgroundAngle), var(--primaryButtonBackgroundColorPrimaryActive) 0%, var(--primaryButtonBackgroundColorSecondaryActive) 100%);
  background-image: linear-gradient(var(--primaryButtonBackgroundAngle), var(--primaryButtonBackgroundColorPrimaryActive) 0%, var(--primaryButtonBackgroundColorSecondaryActive) 100%);
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-primary {
    font-size: var(--primaryButtonFontSizeMobile);
  }
}
.mx-button.mx-button-secondary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--secondaryButtonBackgroundAngle)), color-stop(0%, var(--secondaryButtonBackgroundColorPrimary)), to(var(--secondaryButtonBackgroundColorSecondary)));
  background-image: -o-linear-gradient(var(--secondaryButtonBackgroundAngle), var(--secondaryButtonBackgroundColorPrimary) 0%, var(--secondaryButtonBackgroundColorSecondary) 100%);
  background-image: linear-gradient(var(--secondaryButtonBackgroundAngle), var(--secondaryButtonBackgroundColorPrimary) 0%, var(--secondaryButtonBackgroundColorSecondary) 100%);
  font-family: var(--secondaryButtonFontFamily);
  font-size: var(--secondaryButtonFontSizeDesktop);
  font-weight: var(--secondaryButtonFontWeight);
  border-radius: var(--secondaryButtonBorderRadius);
  border: var(--secondaryButtonBorderWidth) solid var(--secondaryButtonBorderColor);
  color: var(--secondaryButtonTextColor);
}
.mx-button.mx-button-secondary:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--secondaryButtonBackgroundAngle)), color-stop(0%, var(--secondaryButtonBackgroundColorPrimaryHover)), to(var(--secondaryButtonBackgroundColorSecondaryHover)));
  background-image: -o-linear-gradient(var(--secondaryButtonBackgroundAngle), var(--secondaryButtonBackgroundColorPrimaryHover) 0%, var(--secondaryButtonBackgroundColorSecondaryHover) 100%);
  background-image: linear-gradient(var(--secondaryButtonBackgroundAngle), var(--secondaryButtonBackgroundColorPrimaryHover) 0%, var(--secondaryButtonBackgroundColorSecondaryHover) 100%);
}
.mx-button.mx-button-secondary:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--secondaryButtonBackgroundAngle)), color-stop(0%, var(--secondaryButtonBackgroundColorPrimaryActive)), to(var(--secondaryButtonBackgroundColorSecondaryActive)));
  background-image: -o-linear-gradient(var(--secondaryButtonBackgroundAngle), var(--secondaryButtonBackgroundColorPrimaryActive) 0%, var(--secondaryButtonBackgroundColorSecondaryActive) 100%);
  background-image: linear-gradient(var(--secondaryButtonBackgroundAngle), var(--secondaryButtonBackgroundColorPrimaryActive) 0%, var(--secondaryButtonBackgroundColorSecondaryActive) 100%);
}
@media screen and (max-width: 960px) {
  .mx-button.mx-button-secondary {
    font-size: var(--secondaryButtonFontSizeMobile);
  }
}
@media screen and (max-width: 560px) {
  .mx-button {
    max-width: 100%;
  }
}

.mx-video-shortcode.mx-video-fade {
  position: relative;
}
.mx-video-shortcode.mx-video-fade::after, .mx-video-shortcode.mx-video-fade::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  content: "";
  pointer-events: none;
}
.mx-video-shortcode.mx-video-fade::before {
  top: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(60%, rgba(0, 0, 0, 0)), to(var(--bodyBackgroundColor)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 60%, var(--bodyBackgroundColor) 100%);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 60%, var(--bodyBackgroundColor) 100%);
}
.mx-video-shortcode.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-video-shortcode:hover .mejs__overlay-button {
  background: rgba(255, 255, 255, 0.6);
}
.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);
}
.mx-video-shortcode .mejs__overlay-button {
  position: relative;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 10px 40px rgba(255, 255, 255, 0.65);
          box-shadow: 0px 10px 40px rgba(255, 255, 255, 0.65);
  border-radius: 52px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 960px) {
  .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: 39px;
  height: 39px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../../assets/images/mediaelementplayer/modelx-play.svg);
  content: "";
}
@media screen and (max-width: 960px) {
  .mx-video-shortcode .mejs__overlay-button::after {
    width: 23px;
    height: 23px;
  }
}

/* Text size */
.mx-text-small {
  font-weight: var(--mainFontWeightSmall);
  font-size: var(--mainFontSizeSmall);
  line-height: var(--mainLineHeightSmall);
  color: var(--mainPrimaryColorOption2);
}

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

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