/* MIXINS */
/* VARIABLES */
/* COLORS */
/* FONTS */
/* FONT COLORS */
/* FONT SIZES */
/* FONT SIZES MEDIUM */
/* FONT SIZES SMALL */
/* LINE HEIGHTS */
/* FONT WEIGHTS */
@keyframes spinme {
  100% {
    transform: rotate(-360deg);
  }
}
/* CARDS */
.swiper-container {
  display: none;
}
.swiper-container.swiper-initialized {
  display: block;
}

.mtt-news-card {
  position: relative;
  width: calc(33.3333333333% - 40px);
  overflow: hidden;
  border-radius: 4px;
}
@media only screen and (max-width: 1000px) {
  .mtt-news-card {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 800px) {
  .mtt-news-card {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 600px) {
  .mtt-news-card {
    width: 100%;
  }
}
.mtt-news-card:hover:before {
  opacity: 0.3;
}
.mtt-news-card:hover img {
  transform: scale(1.04);
}
.mtt-news-card:hover .mtt-news-card__title:after {
  transform: translateX(2px);
}
.mtt-news-card:after {
  content: "";
  opacity: 0.7;
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}
.mtt-news-card:before {
  content: "";
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0px;
  background: #000;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
.mtt-news-card__image-container {
  height: 0;
  padding-bottom: 125%;
  position: relative;
}
.mtt-news-card__image-container img {
  transition: transform 0.4s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.mtt-news-card__text-container {
  margin-top: 24px;
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}
@media screen and (max-width: 580px) {
  .mtt-news-card__text-container {
    margin-top: 16px;
  }
}
.mtt-news-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.35;
  color: #FFF;
  letter-spacing: -0.03em;
  position: relative;
  padding-right: 10px;
}
@media screen and (max-width: 1280px) {
  .mtt-news-card__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-card__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-news-card__title:after {
  content: "";
  width: 7px;
  height: 14px;
  display: inline-block;
  background-image: url("../../img/icons/arrow-right-white.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
  vertical-align: middle;
  margin-left: 10px;
  position: absolute;
  bottom: 8px;
}
.mtt-news-card__excerpt {
  margin-top: 16px;
  color: #FFF;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.75;
}
.mtt-news-card__excerpt p {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.35;
}

.section-events {
  width: 95%;
}

.events {
  display: flex !important;
  flex-wrap: wrap;
  margin: 24px -12px !important;
  width: auto !important;
}
@media screen and (max-width: 1160px) {
  .events {
    margin: 24px -8px !important;
  }
}
.events .mtt-events-card {
  border: 1px solid rgba(112, 112, 112, 0.1);
}

.mtt-events-card {
  position: relative;
  width: calc(25% - 24px) !important;
  overflow: hidden;
  background: #FFF;
  border-radius: 4px;
  transition: opacity 0.2s ease-in-out;
  margin: 12px;
  height: auto !important;
}
@media screen and (max-width: 1160px) {
  .mtt-events-card {
    width: calc(33.3333333333% - 16px) !important;
    margin: 8px;
  }
}
@media only screen and (max-width: 880px) {
  .mtt-events-card {
    width: calc(50% - 16px) !important;
  }
}
@media screen and (max-width: 580px) {
  .mtt-events-card {
    width: calc(100% - 16px) !important;
  }
}
.mtt-events-card:hover {
  opacity: 0.8;
}
.mtt-events-card__date {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 11px 15px;
  background: #FFF;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mtt-events-card__date p {
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #002D4B;
  line-height: 1;
}
.mtt-events-card__date span {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #002D4B;
  line-height: 1;
  text-transform: uppercase;
}
.mtt-events-card__image-container {
  height: 0;
  padding-bottom: 70%;
  position: relative;
}
.mtt-events-card__image-container img {
  transition: transform 0.4s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.mtt-events-card__text-container {
  padding: 24px 31px 88px !important;
}
.mtt-events-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #002D4B;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1280px) {
  .mtt-events-card__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-events-card__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-events-card__excerpt {
  margin-top: 12px;
  color: #002D4B;
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.33;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -0.03em;
}
.mtt-events-card__tag-bar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
  position: absolute;
  width: calc(100% - 62px);
  bottom: 24px;
  left: 31px;
}
.mtt-events-card__tag-bar .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0px -5px -5px -5px;
}
.mtt-events-card__tag-bar .inner span {
  margin: 0px 5px 5px 5px;
  text-transform: uppercase;
  color: #E16F2A;
  font-weight: 800;
  font-size: 12px;
  font-size: 0.75rem;
}

/* MODULES */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  display: inline;
}

input {
  -webkit-appearance: none;
}

.panel-no-style, .so-panel {
  margin-bottom: 0 !important;
}

.using-mouse :focus {
  outline: 0;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* FONTS */
/* FONT COLORS */
/* FONT SIZES */
/* FONT SIZES MEDIUM */
/* FONT SIZES SMALL */
/* LINE HEIGHTS */
/* FONT WEIGHTS */
html,
body {
  font-family: "museo-sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "museo-sans", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2B2B2B;
}
h1 span, h1 i, h2 span, h2 i, h3 span, h3 i, h4 span, h4 i, h5 span, h5 i, h6 span, h6 i {
  font-weight: 300;
  font-style: normal;
}

h1 {
  font-size: 42px;
  font-size: 2.625rem;
}
@media screen and (max-width: 1280px) {
  h1 {
    font-size: 38px;
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 580px) {
  h1 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 355px) {
  h1 {
    font-size: 32px;
    font-size: 2rem;
  }
}

h2 {
  font-size: 38px;
  font-size: 2.375rem;
}
@media screen and (max-width: 1280px) {
  h2 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 580px) {
  h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}

h3 {
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (max-width: 1280px) {
  h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 580px) {
  h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

h4 {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 1280px) {
  h4 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 580px) {
  h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 1280px) {
  h5 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  h5 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

h6 {
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (max-width: 1280px) {
  h6 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 580px) {
  h6 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

p {
  font-size: 16px;
  line-height: 1.5;
}

strong, .bold {
  font-weight: 700;
}

i, .italic {
  font-style: italic;
}

/* https://make.wordpress.org/accessibility/handbook/markup/the-css-class-screen-reader-text/ */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

.page_container {
  max-width: 1230px;
  width: 90%;
  margin: auto;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

@media print {
  .no-print, .no-print * {
    display: none !important;
  }
}
@media screen {
  .only-print, .only-print * {
    display: none;
    font-size: 0;
    opacity: 0;
    visibility: hidden;
    color: #FFF;
  }
}
.mtt-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000000000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in-out;
  transform: scale(0.95);
}
.mtt-lightbox.open {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.mtt-lightbox__image-wrap {
  z-index: 2;
  max-width: calc(100% - 180px);
  max-height: 90%;
  width: auto;
  height: auto;
  display: flex;
  pointer-events: none;
}
@media screen and (max-width: 580px) {
  .mtt-lightbox__image-wrap {
    max-width: calc(100% - 140px);
  }
}
@media only screen and (max-width: 400px) {
  .mtt-lightbox__image-wrap {
    max-width: calc(100% - 30px);
  }
}
.mtt-lightbox__image {
  display: block;
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.mtt-lightbox__close {
  z-index: 3;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: transparent;
}
body.admin-bar .mtt-lightbox__close {
  top: 40px;
}
.mtt-lightbox__close:before, .mtt-lightbox__close:after {
  content: "";
  position: absolute;
  left: 7px;
  top: -2px;
  height: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.15s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
.mtt-lightbox__close:before {
  transform: rotate(45deg);
}
.mtt-lightbox__close:after {
  transform: rotate(-45deg);
}
.mtt-lightbox__close:hover:before, .mtt-lightbox__close:hover:after {
  background: #FFF;
}
.mtt-lightbox__overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  z-index: 1;
}
.mtt-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background-image: url("../../img/icons/lightbox-arrow.svg");
  background-repeat: no-repeat;
  background-size: center;
  background-position: center;
}
@media screen and (max-width: 580px) {
  .mtt-lightbox__arrow {
    height: 30px;
    width: 30px;
  }
}
.mtt-lightbox__arrow.left {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}
.mtt-lightbox__arrow.right {
  right: 20px;
}
.mtt-lightbox__arrow img {
  display: block;
  width: inherit;
  height: inherit;
}

/* PARTIALS */
.button-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: -8px;
}
.button-section .button {
  margin-bottom: 8px;
}
@media only screen and (max-width: 400px) {
  .button-section .button {
    width: 100%;
    text-align: center;
  }
}
.button-section .button:not(:last-of-type) {
  margin-right: 16px;
}
@media only screen and (max-width: 400px) {
  .button-section .button:not(:last-of-type) {
    margin-right: 0;
  }
}

.button {
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px solid;
  border-radius: 4px;
  font-size: 16px;
  font-size: 1rem;
  padding: 14px 24px;
  text-decoration: none;
  line-height: 1.3;
  display: inline-block;
  font-weight: 500;
  outline: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, padding 0.2s ease;
  will-change: transform, background, color;
}
.button:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  margin-left: 10px;
  background-image: url("../../img/icons/arrow-right-white.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: margin-left 0.2s ease-in-out;
}
.button.primary {
  color: #FFF;
  background: #002D4B;
  border-color: #002D4B;
}
.button.primary:hover {
  color: white;
  background: rgb(0, 54.18, 90.3);
  border-color: rgb(0, 54.18, 90.3);
}
.button.primary:active {
  color: rgb(247.35, 247.35, 247.35);
  background: rgb(0, 35.82, 59.7);
  border-color: rgb(0, 35.82, 59.7);
}
.button.secondary {
  color: #FFF;
  background: #E16F2A;
  border-color: #E16F2A;
}
.button.secondary:hover {
  color: white;
  background: rgb(226.8888888889, 120.0666666667, 55.4111111111);
  border-color: rgb(226.8888888889, 120.0666666667, 55.4111111111);
}
.button.secondary:active {
  color: rgb(249.9, 249.9, 249.9);
  background: rgb(223.7407407407, 104.9555555556, 33.0592592593);
  border-color: rgb(223.7407407407, 104.9555555556, 33.0592592593);
}
.button.white {
  color: #002D4B;
  background: #FFF;
  border-color: #FFF;
}
.button.white:hover {
  color: rgb(0, 57.24, 95.4);
  background: white;
  border-color: white;
}
.button.white:active {
  color: rgb(0, 32.76, 54.6);
  background: rgb(244.8, 244.8, 244.8);
  border-color: rgb(244.8, 244.8, 244.8);
}
.button.white:after {
  background-image: url("../../img/icons/arrow-right-dark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.button.outline {
  color: #FFF;
  background: transparent;
  border-color: #FFF;
  border-radius: 99px;
}
.button.outline:hover {
  color: white;
  background: rgba(10.2, 10.2, 10.2, 0);
  border-color: white;
}
.button.outline:active {
  color: rgb(244.8, 244.8, 244.8);
  background: rgba(0, 0, 0, 0);
  border-color: rgb(244.8, 244.8, 244.8);
}
.button.outline-dark {
  color: #002D4B;
  background: transparent;
  border-color: #002D4B;
}
.button.outline-dark:hover {
  color: rgb(0, 57.24, 95.4);
  background: rgba(10.2, 10.2, 10.2, 0);
  border-color: rgb(0, 57.24, 95.4);
}
.button.outline-dark:active {
  color: rgb(0, 32.76, 54.6);
  background: rgba(0, 0, 0, 0);
  border-color: rgb(0, 32.76, 54.6);
}
.button.outline-dark:after {
  background-image: url("../../img/icons/arrow-right-dark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.button.arrow, .button.arrow-white {
  color: #002D4B;
  background: transparent;
  border-color: transparent;
  padding: 0;
  font-weight: 500;
}
.button.arrow:hover, .button.arrow-white:hover {
  color: rgb(0, 57.24, 95.4);
  background: rgba(10.2, 10.2, 10.2, 0);
  border-color: rgba(10.2, 10.2, 10.2, 0);
}
.button.arrow:active, .button.arrow-white:active {
  color: rgb(0, 32.76, 54.6);
  background: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.button.arrow:after, .button.arrow-white:after {
  background-image: url("../../img/icons/arrow-right-dark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1161px) {
  .button.arrow:hover:after, .button.arrow-white:hover:after {
    margin-left: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .button.arrow, .button.arrow-white {
    text-align: left;
    width: auto;
  }
}
.button.arrow.arrow-white, .button.arrow.white, .button.arrow-white.arrow-white, .button.arrow-white.white {
  color: #FFF;
  background: transparent;
  border-color: transparent;
}
.button.arrow.arrow-white:hover, .button.arrow.white:hover, .button.arrow-white.arrow-white:hover, .button.arrow-white.white:hover {
  color: white;
  background: rgba(10.2, 10.2, 10.2, 0);
  border-color: rgba(10.2, 10.2, 10.2, 0);
}
.button.arrow.arrow-white:active, .button.arrow.white:active, .button.arrow-white.arrow-white:active, .button.arrow-white.white:active {
  color: rgb(244.8, 244.8, 244.8);
  background: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.button.arrow.arrow-white:after, .button.arrow.white:after, .button.arrow-white.arrow-white:after, .button.arrow-white.white:after {
  background-image: url("../../img/icons/arrow-right-white.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.button.arrow-flipped {
  color: #002D4B;
  background: transparent;
  border-color: #002D4B;
  font-weight: 500;
}
.button.arrow-flipped:hover {
  color: rgb(0, 57.24, 95.4);
  background: rgba(10.2, 10.2, 10.2, 0);
  border-color: rgb(0, 57.24, 95.4);
}
.button.arrow-flipped:active {
  color: rgb(0, 32.76, 54.6);
  background: rgba(0, 0, 0, 0);
  border-color: rgb(0, 32.76, 54.6);
}
.button.arrow-flipped:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 9px;
  margin-right: 10px;
  background-image: url("../../img/icons/arrow-right-dark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: margin-right 0.2s ease;
  transform: rotate(180deg);
}
.button.arrow-flipped:after {
  display: none;
}
@media screen and (min-width: 1161px) {
  .button.arrow-flipped:hover {
    padding-left: 22px;
  }
  .button.arrow-flipped:hover:before {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .button.arrow-flipped {
    text-align: left;
    width: auto;
  }
}
.button:focus {
  outline: none;
  box-shadow: 0px 0px 5px rgba(225, 111, 42, 0.6);
}
.button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.input-wrap, .textarea-wrap {
  position: relative;
  margin-bottom: 30px;
}
.input-wrap.has-error input, .textarea-wrap.has-error input {
  border-bottom: 1px solid #E16F2A;
}
.input-wrap.has-error p, .textarea-wrap.has-error p {
  color: #E16F2A;
  margin-top: 5px;
}
.input-wrap.float-label.active label, .textarea-wrap.float-label.active label {
  left: auto;
  right: 0px;
  color: #2B2B2B;
  opacity: 0;
}
.input-wrap.float-label.active input, .input-wrap.float-label.active textarea, .textarea-wrap.float-label.active input, .textarea-wrap.float-label.active textarea {
  border-bottom: 1px solid #002D4B;
}
.input-wrap.float-label.active.show label, .textarea-wrap.float-label.active.show label {
  opacity: 1;
}
.input-wrap.float-label label, .textarea-wrap.float-label label {
  position: absolute;
  left: 0;
  top: 15px;
  transition: all 0.2s ease-out;
  z-index: 2;
  margin-bottom: 0px;
  color: rgba(43, 43, 43, 0.4);
  font-weight: 100;
}
.input-wrap label, .textarea-wrap label {
  font-size: 16px;
  letter-spacing: -0.2px;
  color: #2B2B2B;
  margin-bottom: 5px;
  display: block;
  font-weight: 300;
}
.input-wrap input, .input-wrap select, .input-wrap textarea, .textarea-wrap input, .textarea-wrap select, .textarea-wrap textarea {
  padding-right: 110px !important;
}

input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=datetime-local],
input[type=url],
input[type=tel],
input[type=search],
textarea,
select {
  width: 100%;
  padding: 0px 15px !important;
  height: 50px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  border: 1px solid rgba(232, 232, 232, 0.5);
  transition: all 0.2s;
  margin-top: 5px;
  font-size: 15px;
  font-family: "museo-sans", sans-serif;
  color: #2B2B2B;
}
input[type=text]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=datetime-local]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=search]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: rgba(43, 43, 43, 0.3);
}
input[type=text]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(43, 43, 43, 0.3);
}
input[type=text]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=search]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(43, 43, 43, 0.3);
}
input[type=text]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(43, 43, 43, 0.3);
}
@media only screen and (max-width: 450px) {
  input[type=text],
  input[type=number],
  input[type=email],
  input[type=password],
  input[type=datetime-local],
  input[type=url],
  input[type=tel],
  input[type=search],
  textarea,
  select {
    font-size: 14px;
  }
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=datetime-local]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  border: 1px solid #002D4B;
}

textarea {
  padding: 15px !important;
}

select {
  background: url("../../img/icons/down-arrow-dark.svg") !important;
  background-size: 8px 5px !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
}
select option.gf_placeholder {
  color: #A9A9A9;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

select::-ms-expand {
  display: none;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.wpcf7-not-valid {
  border: 1px solid red !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-response-output {
  border: 0 !important;
  margin: 15px 0 0 !important;
  padding: 0 !important;
  color: #002D4B !important;
  letter-spacing: -0.5px !important;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.gform_confirmation_wrapper {
  margin-top: 16px;
  display: block;
}
.gform_wrapper form div.validation_error {
  color: #E16F2A;
  border-top: none;
  border-bottom: none;
  padding: 0px;
  margin-bottom: 0px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  font-weight: 400;
}
.gform_wrapper form ul.gform_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gform_wrapper form ul.gform_fields li.gfield {
  list-style: none;
  width: 100%;
  display: inline-block;
  padding-right: 0px;
}
.gform_wrapper form ul.gform_fields li.gfield.half {
  width: 47.5%;
}
@media only screen and (max-width: 500px) {
  .gform_wrapper form ul.gform_fields li.gfield.half {
    width: 100%;
  }
}
.gform_wrapper form ul.gform_fields li.gfield.gfield_error {
  border-top: none;
  border-bottom: none;
  background: none;
  margin-bottom: 0px;
  padding-top: 0px;
  max-width: 100% !important;
}
.gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container:not(.ginput_container_checkbox):not(.ginput_container_radio) input, .gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container:not(.ginput_container_checkbox):not(.ginput_container_radio) select, .gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container:not(.ginput_container_checkbox):not(.ginput_container_radio) textarea {
  border: none !important;
  border: 1px solid #E16F2A !important;
}
.gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container_checkbox input, .gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container_radio input {
  border: none;
}
.gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container_checkbox label:before, .gform_wrapper form ul.gform_fields li.gfield.gfield_error .ginput_container_radio label:before {
  border: 1px solid #E16F2A;
}
.gform_wrapper form ul.gform_fields li.gfield.gfield_error .validation_message {
  font-weight: 300;
  color: #E16F2A;
  padding-top: 0px !important;
}
.gform_wrapper form ul.gform_fields li.gfield label:empty {
  display: none !important;
}
.gform_wrapper form ul.gform_fields li.gfield label {
  margin-bottom: 8px;
  display: block;
  color: #262626;
}
.gform_wrapper form ul.gform_fields li.gfield .ginput_container {
  margin-top: 0px;
}
.gform_wrapper form ul.gform_fields li.gfield .ginput_container input, .gform_wrapper form ul.gform_fields li.gfield .ginput_container select, .gform_wrapper form ul.gform_fields li.gfield .ginput_container textarea {
  width: 100% !important;
}
.gform_wrapper form ul.gform_fields li.gfield .ginput_container_checkbox label, .gform_wrapper form ul.gform_fields li.gfield .ginput_container_radio label {
  padding-left: 32px;
}
.gform_wrapper form .gform_footer {
  padding: 0px;
}
.gform_wrapper form .gform_footer input[type=submit] {
  background: #E16F2A;
  border-color: #E16F2A;
  border-radius: 99px;
  color: #FFF;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  padding: 16px 22px 15px 22px !important;
  font-family: "museo-sans", sans-serif;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -16px -12px;
}
@media screen and (max-width: 580px) {
  .form-grid {
    margin: 0 0 -16px;
  }
}
.form-grid .input-wrap {
  width: 100%;
  margin: 16px 12px;
}
.form-grid .input-wrap--half {
  width: calc(50% - 24px);
}
.form-grid .input-wrap--third {
  width: calc(33.3333333333% - 24px);
}
.form-grid .input-wrap--two-third {
  width: calc(66.66% - 24px);
}
@media screen and (max-width: 580px) {
  .form-grid .input-wrap {
    width: 100% !important;
    margin: 0 0 16px 0;
  }
}
.form-grid .input-wrap textarea {
  height: 120px;
  padding: 15px !important;
}
.form-grid .input-wrap textarea.resize--none {
  resize: none;
}
.form-grid .input-wrap textarea.resize--vertical {
  resize: vertical;
}
.form-grid .input-wrap textarea.resize--horizontal {
  resize: horizontal;
}
.form-grid .input-group-title {
  width: 100%;
  margin-bottom: 8px;
}
.form-grid .input-group-title p {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.form-grid .input-label {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 580px) {
  .form-grid .input-label {
    flex-direction: column;
  }
}
.form-grid .input-label__extra {
  color: #BFBFBF;
  font-weight: 500;
  margin-left: 16px;
}
@media screen and (max-width: 580px) {
  .form-grid .input-label__extra {
    margin-left: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.form-grid .input-asterisk {
  color: #9A0000;
}

.error-box {
  padding: 16px;
  border: 1px solid #cc3332;
  background: #ffefee;
  border-radius: 4px;
}
.error-box .error {
  color: #cc3332;
  font-size: 14px;
  font-size: 0.875rem;
}
.error-box .error:not(:last-child) {
  margin-bottom: 8px;
}
.error-box .error::before {
  display: none;
}

* {
  -webkit-font-smoothing: antialiased;
}

@media print {
  .noprint {
    display: none !important;
  }
  .mtt-template-content__content-wrapper {
    max-width: 100% !important;
  }
  .mtt-template-content__content-wrapper * {
    max-width: 100% !important;
  }
  #CookiebotWidget {
    display: none !important;
  }
  .mtt-template-content__sidebar-button {
    display: none !important;
  }
}
.object-fit img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.spacing_top_152 {
  padding-top: 152px;
}
@media only screen and (max-width: 1550px) {
  .spacing_top_152 {
    padding-top: 104px;
  }
}
@media screen and (max-width: 1280px) {
  .spacing_top_152 {
    padding-top: 80px;
  }
}
@media screen and (max-width: 580px) {
  .spacing_top_152 {
    padding-top: 56px;
  }
}

.spacing_bottom_152 {
  padding-bottom: 152px;
}
@media only screen and (max-width: 1550px) {
  .spacing_bottom_152 {
    padding-bottom: 104px;
  }
}
@media screen and (max-width: 1280px) {
  .spacing_bottom_152 {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 580px) {
  .spacing_bottom_152 {
    padding-bottom: 56px;
  }
}

.spacing_top_120 {
  padding-top: 120px;
}
@media screen and (max-width: 1280px) {
  .spacing_top_120 {
    padding-top: 80px;
  }
}
@media screen and (max-width: 580px) {
  .spacing_top_120 {
    padding-top: 56px;
  }
}

.spacing_bottom_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 1280px) {
  .spacing_bottom_120 {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 580px) {
  .spacing_bottom_120 {
    padding-bottom: 56px;
  }
}

.spacing_top_104 {
  padding-top: 104px;
}
@media screen and (max-width: 1280px) {
  .spacing_top_104 {
    padding-top: 80px;
  }
}
@media screen and (max-width: 580px) {
  .spacing_top_104 {
    padding-top: 56px;
  }
}

.spacing_bottom_104 {
  padding-bottom: 104px;
}
@media screen and (max-width: 1280px) {
  .spacing_bottom_104 {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 580px) {
  .spacing_bottom_104 {
    padding-bottom: 56px;
  }
}

.spacing_top_80 {
  padding-top: 80px;
}
@media screen and (max-width: 580px) {
  .spacing_top_80 {
    padding-top: 56px;
  }
}

.spacing_bottom_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 580px) {
  .spacing_bottom_80 {
    padding-bottom: 56px;
  }
}

.spacing_top_56 {
  padding-top: 56px;
}
@media screen and (max-width: 580px) {
  .spacing_top_56 {
    padding-top: 56px;
  }
}

.spacing_bottom_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 580px) {
  .spacing_bottom_56 {
    padding-bottom: 56px;
  }
}

.wpcf7 form .wpcf7-response-output {
  border: 0;
  margin: 0;
  padding: 0;
  color: #2B2B2B;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 500;
}
.wpcf7 form span.wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 form span.wpcf7-not-valid-tip {
  display: none !important;
}

input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton),
input[type=radio] {
  display: none;
}
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + span,
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + label,
input[type=radio] + span,
input[type=radio] + label {
  cursor: pointer;
  color: #2B2B2B;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "museo-sans", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 32px;
  display: block;
}
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + span a,
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + label a,
input[type=radio] + span a,
input[type=radio] + label a {
  transition: color 0.15s ease;
  color: #2B2B2B;
  display: inline;
  font-weight: 700;
}
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + span a:hover,
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + label a:hover,
input[type=radio] + span a:hover,
input[type=radio] + label a:hover {
  color: #262626;
}
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + span:before,
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + label:before,
input[type=radio] + span:before,
input[type=radio] + label:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 45, 75, 0.4);
  background: #FFF;
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  transition: color 0.15s ease, background 0.15s ease;
  box-sizing: border-box;
}
@media only screen and (max-width: 1550px) {
  input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + span:before,
  input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton) + label:before,
  input[type=radio] + span:before,
  input[type=radio] + label:before {
    top: -1px;
  }
}
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton):checked + span:before,
input[type=checkbox]:not(.CybotCookiebotDialogBodyLevelButton):checked + label:before,
input[type=radio]:checked + span:before,
input[type=radio]:checked + label:before {
  background: url("../../img/icons/checkmark-dark.svg") #FFF;
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  border-color: #002D4B;
}

#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99999;
  display: none;
}
#loader-overlay.show {
  display: block;
}
#loader-overlay .loader {
  width: 100px;
  position: absolute;
  height: 100px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
#loader-overlay .loader:after {
  content: "";
  width: 40px;
  height: 40px;
  border-left: 5px solid #002D4B;
  border-top: 5px solid #002D4B;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 10;
  animation: spinme 400ms linear infinite;
}
@keyframes spinme {
  100% {
    transform: rotate(-360deg);
  }
}

.mtt-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.mtt-modal--show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mtt-modal--wider .mtt-modal__inner {
  width: 680px;
}
.mtt-modal__inner {
  position: relative;
  z-index: 2;
  background: #FFF;
  border-radius: 4px;
  padding: 60px 72px;
  width: 622px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 20px solid #E16F2A;
}
@media screen and (max-width: 960px) {
  .mtt-modal__inner {
    width: 420px;
    padding: 56px 32px 40px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-modal__inner {
    padding: 56px 24px 40px;
  }
}
@media only screen and (max-width: 375px) {
  .mtt-modal__inner {
    padding: 56px 16px 32px;
  }
}
.mtt-modal__overlay {
  z-index: 1;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 45, 75, 0.85);
}
.mtt-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  transition: opacity 0.15s ease;
  cursor: pointer;
}
@media screen and (max-width: 580px) {
  .mtt-modal__close {
    right: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .mtt-modal__close {
    right: 16px;
  }
}
.mtt-modal__close:after, .mtt-modal__close:before {
  position: absolute;
  left: 10px;
  content: " ";
  height: 22px;
  width: 2px;
  background-color: rgba(0, 45, 75, 0.85);
}
.mtt-modal__close:before {
  transform: rotate(45deg);
}
.mtt-modal__close:after {
  transform: rotate(-45deg);
}
.mtt-modal__content.hide {
  display: none;
}
.mtt-modal__content h2 {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .mtt-modal__content h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-modal__content h2 {
    font-size: 32px;
    font-size: 2rem;
  }
}
.mtt-modal__content h2:after {
  content: "";
  margin-top: 12px;
  width: 32px;
  height: 2px;
  background: #E16F2A;
  display: block;
}

html body {
  margin-top: 83px;
}
@media screen and (max-width: 1280px) {
  html body {
    margin-top: 72px;
  }
}
@media screen and (max-width: 1160px) {
  html body {
    margin-top: 72px;
  }
}
@media screen and (max-width: 580px) {
  html body {
    margin-top: 64px;
  }
}

.mtt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 83px;
  background: #002D4B;
  z-index: 20;
  transition: height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 1280px) {
  .mtt-header {
    height: 72px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-header {
    height: 72px;
    background: #002D4B;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 580px) {
  .mtt-header {
    height: 64px;
  }
}
body.admin-bar .mtt-header {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  body.admin-bar .mtt-header {
    top: 46px;
  }
}
.mtt-header__main-nav {
  z-index: 2;
}
.mtt-header__main-nav-inner {
  transition: height 0.2s ease;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .mtt-header__main-nav-inner {
    height: 72px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-header__main-nav-inner {
    height: 64px;
  }
}
.mtt-header__main-nav-left {
  display: flex;
  align-items: center;
}
.mtt-header__main-nav-left.trigger .mtt-header__logo {
  display: block;
}
.mtt-header__main-nav-left.trigger .mtt-header__logo.badge {
  display: none;
}
.mtt-header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 32px;
  height: 40px;
  width: 208px;
}
@media screen and (max-width: 1280px) {
  .mtt-header__logo {
    margin-right: 24px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-header__logo {
    width: 160px;
    position: relative;
  }
}
.mtt-header__logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: height 0.2s ease, width 0.2s ease;
  min-height: 40px;
  height: 100%;
}
@media screen and (min-width: 1161px) {
  .mtt-header__logo:not(.badge) {
    display: none;
  }
  #main_header.mtt-header--scrolled .mtt-header__logo:not(.badge) {
    display: block;
  }
}
.mtt-header__logo.badge {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 153px;
  height: 189px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: #133550;
  padding: 32px 36px;
  transition: transform 0.2s ease-in-out;
}
@media screen and (max-width: 1160px) {
  .mtt-header__logo.badge {
    display: none;
  }
}
.mtt-header__nav {
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 72px;
    height: calc(100% - 72px);
    padding: 24px 5% 56px;
    transform: translate3d(-100%, 0, 0);
    max-width: 504px;
    width: 100%;
    background: #002D4B;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.38, 0.86), opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  body.admin-bar .mtt-header__nav {
    top: calc(72px + 32px);
    height: calc(100% - (72px + 32px));
  }
}
@media only screen and (max-width: 782px) {
  body.admin-bar .mtt-header__nav {
    top: calc(72px + 46px);
    height: calc(100% - (72px + 46px));
  }
}
@media screen and (max-width: 580px) {
  .mtt-header__nav {
    top: 64px;
    height: calc(100% - 64px);
  }
  body.admin-bar .mtt-header__nav {
    top: calc(64px + 46px);
    height: calc(100% - (64px + 46px));
  }
}
.mtt-header__nav.open {
  transform: translate3d(0, 0, 0);
}
.mtt-header__nav .menu {
  list-style-type: none;
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .menu {
    display: block;
  }
}
.mtt-header__nav .menu-item {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.164em;
  transition: color 0.15s ease;
  display: flex;
  height: 100%;
  align-items: center;
  position: relative;
}
.mtt-header__nav .menu-item:hover {
  color: rgba(255, 255, 255, 0.8);
}
.mtt-header__nav .menu-item.menu-open > a {
  padding-bottom: 8px;
}
.mtt-header__nav .menu-item.menu-open .sub-menu {
  display: block;
}
.mtt-header__nav .menu-item.menu-open .mtt-header__dropdown-arrow {
  transform: scaleY(-1);
}
.mtt-header__nav .menu-item.current-menu-item:after {
  content: "";
  width: 170%;
  height: 4px;
  background: #E16F2A;
  position: absolute;
  bottom: 0px;
  left: -30%;
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .menu-item {
    color: #FFF;
    font-size: 20px;
    font-size: 1.25rem;
    height: auto;
    justify-content: center;
  }
  .mtt-header__nav .menu-item:hover {
    color: rgba(255, 255, 255, 0.8);
  }
}
.mtt-header__nav .menu-item a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .menu-item a {
    display: block;
    padding: 20px 0;
  }
}
@media only screen and (max-width: 370px) {
  .mtt-header__nav .menu-item a {
    padding: 12px 0;
  }
}
@media screen and (min-width: 1161px) {
  .mtt-header__nav .menu-item:not(:last-of-type) {
    margin-right: 56px;
  }
}
@media only screen and (min-width: 1161px) and (max-width: 1550px) {
  .mtt-header__nav .menu-item:not(:last-of-type) {
    margin-right: 48px;
  }
}
@media screen and (min-width: 1161px) {
  .mtt-header__nav .menu-bottom {
    display: none;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .menu-bottom {
    margin-top: 40px;
  }
  .mtt-header__nav .menu-bottom .menu-item {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.2;
    color: #FFF;
    border: none;
    transition: color 0.15s ease;
  }
  .mtt-header__nav .menu-bottom .menu-item:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .mtt-header__nav .menu-bottom .menu-item a {
    padding: 8px 0;
  }
}
.mtt-header__nav .menu-item-has-children {
  position: relative;
  padding-right: 24px;
}
@media screen and (min-width: 1161px) {
  .mtt-header__nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0) translateX(-50%);
  }
}
.mtt-header__nav .sub-menu {
  list-style: none;
}
@media screen and (min-width: 1161px) {
  .mtt-header__nav .sub-menu {
    position: absolute;
    top: calc(100% + 32px);
    left: 50%;
    width: 240px;
    background: #002D4B;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 12px 24px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(16px);
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
  }
  .mtt-header__nav .sub-menu:before {
    content: "";
    height: 36px;
    bottom: 100%;
    left: 0;
    width: 100%;
    position: absolute;
  }
  .mtt-header__nav .sub-menu:after {
    content: "";
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #002D4B;
    transition: border-bottom 0.2s ease;
  }
  .mtt-header__nav .sub-menu:hover {
    pointer-events: all;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .sub-menu {
    display: none;
  }
}
.mtt-header__nav .sub-menu > .menu-item {
  margin-right: 0;
  border: 0;
}
@media screen and (min-width: 1161px) {
  .mtt-header__nav .sub-menu > .menu-item {
    color: #FFF !important;
  }
  .mtt-header__nav .sub-menu > .menu-item:hover {
    color: rgba(255, 255, 255, 0.8) !important;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .sub-menu > .menu-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-size: 1rem;
  }
  .mtt-header__nav .sub-menu > .menu-item:hover {
    color: #FFF;
  }
}
.mtt-header__nav .sub-menu > .menu-item a {
  display: block;
  padding: 12px 0;
}
.mtt-header__nav .search-input {
  margin-left: 56px;
  width: 16px;
  height: 16px;
  transform: translateY(-2px);
  cursor: pointer;
}
@media only screen and (max-width: 1550px) {
  .mtt-header__nav .search-input {
    margin-left: 48px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-header__nav .search-input {
    margin-left: 0px;
  }
}
.mtt-header__nav .search-input img {
  width: 100%;
  height: 100%;
}
.mtt-header__dropdown-arrow {
  position: absolute;
  background-image: url("../../img/icons/down-arrow-white.svg");
  background-position: center center;
  background-size: 12.354px 7.763px;
  background-repeat: no-repeat;
  width: 32.354px;
  height: 37.763px;
  top: -11px;
  right: -10px;
  cursor: pointer;
}
@media screen and (max-width: 1160px) {
  .mtt-header__dropdown-arrow {
    top: 14px;
  }
}
@media only screen and (max-width: 370px) {
  .mtt-header__dropdown-arrow {
    top: 5px;
  }
}
.mtt-header__main-nav-right {
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (min-width: 1161px) {
  .mtt-header--scrolled {
    height: 72px;
    background: #002D4B;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  .mtt-header--scrolled:before {
    opacity: 0;
  }
  .mtt-header--scrolled .mtt-header__main-nav-inner {
    border-top: 1px solid rgba(112, 112, 112, 0.1);
    height: 72px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-header .hide-tabletlandscape {
    display: none !important;
  }
}

.navigation-toggle {
  height: 30px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  z-index: 5;
  margin-right: -8px;
}
@media screen and (min-width: 1161px) {
  .navigation-toggle {
    display: none !important;
  }
}
@media screen and (max-width: 1160px) {
  .navigation-toggle {
    display: flex;
    margin-left: 16px;
  }
}
.navigation-toggle div:after,
.navigation-toggle div:before {
  width: 20px;
  height: 2px;
}
.navigation-toggle div {
  position: relative;
  width: 20px;
  height: 8px;
}
.navigation-toggle div:after, .navigation-toggle div:before {
  content: "";
  position: absolute;
  left: 0;
  background: #FFF;
  backface-visibility: visible;
  will-change: top, transform;
  transition: top 0.6s cubic-bezier(0.86, 0, 0.07, 1), transform 0.6s cubic-bezier(0.86, 0, 0.07, 1), color 0.2s ease-in-out;
}
.navigation-toggle div:before {
  top: 0px;
}
.navigation-toggle div:after {
  top: 6px;
}
.navigation-toggle.open div:before {
  top: 4px;
  transform: rotate(135deg);
}
.navigation-toggle.open div:after {
  top: 4px;
  transform: rotate(45deg);
}
.navigation-toggle.hide {
  display: none;
}
.navigation-toggle.show {
  display: flex;
}

#main_footer {
  background: #002D4B;
  position: relative;
  overflow: hidden;
}
#main_footer .svg-container {
  position: absolute;
  left: -179px;
  bottom: 0;
  opacity: 0.05;
}
@media only screen and (max-width: 1850px) {
  #main_footer .svg-container {
    left: -200px;
  }
}
@media only screen and (max-width: 1750px) {
  #main_footer .svg-container {
    left: -250px;
  }
}
@media (min-width: 901px) and (max-width: 1650px) {
  #main_footer .svg-container {
    display: none;
  }
}
@media only screen and (max-width: 900px) {
  #main_footer .svg-container {
    left: auto;
    right: -150px;
    top: -100px;
    bottom: auto;
    transform: scale(-1);
  }
}
@media screen and (max-width: 580px) {
  #main_footer .svg-container {
    right: -200px;
    top: -150px;
  }
}
#main_footer .svg-container img {
  display: block;
  width: 367px;
  height: 306px;
}
#main_footer .top-footer .top-footer-inner {
  padding: 72px 0 32px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  #main_footer .top-footer .top-footer-inner {
    display: block;
  }
}
@media screen and (max-width: 580px) {
  #main_footer .top-footer .top-footer-inner {
    padding: 48px 0 24px;
  }
}
#main_footer .top-footer .top-footer-inner .logo-container {
  flex-shrink: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 580px) {
  #main_footer .top-footer .top-footer-inner .logo-container {
    margin-bottom: 32px;
  }
}
#main_footer .top-footer .top-footer-inner .logo-container .logo {
  display: inline-block;
}
#main_footer .top-footer .top-footer-inner .logo-container .logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 175px;
  max-height: 60px;
}
@media screen and (max-width: 1160px) {
  #main_footer .top-footer .top-footer-inner .logo-container .logo img {
    max-width: 130px;
    max-height: 45px;
  }
}
@media screen and (max-width: 580px) {
  #main_footer .top-footer .top-footer-inner .logo-container .logo img {
    max-width: 110px;
    max-height: 40px;
  }
}
#main_footer .top-footer .top-footer-inner .menu-container {
  display: flex;
}
@media only screen and (max-width: 1200px) {
  #main_footer .top-footer .top-footer-inner .menu-container {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 500px) {
  #main_footer .top-footer .top-footer-inner .menu-container {
    display: block;
  }
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper {
  margin-bottom: 40px;
}
@media only screen and (max-width: 900px) {
  #main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 650px) {
  #main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper {
    width: 45%;
  }
}
@media screen and (max-width: 580px) {
  #main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 500px) {
  #main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper {
    width: 100%;
  }
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper:not(:last-of-type) {
  margin-right: 80px;
}
@media only screen and (max-width: 900px) {
  #main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper:not(:last-of-type) {
    margin-right: 0;
  }
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper .title {
  color: white;
  font-size: 16px;
  font-size: 1rem;
  line-height: 36px;
  line-height: 2.25rem;
  letter-spacing: -0.03em;
  font-weight: 500;
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper .menu {
  list-style: none;
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper .menu .menu-item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 36px;
  line-height: 2.25rem;
  color: rgba(255, 255, 255, 0.8);
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper .menu .menu-item a {
  transition: all 0.15s ease;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
#main_footer .top-footer .top-footer-inner .menu-container .menu-wrapper .menu .menu-item a:hover {
  color: white;
}
#main_footer .bottom-footer .bottom-footer-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 24px 0 8px;
}
@media only screen and (max-width: 500px) {
  #main_footer .bottom-footer .bottom-footer-inner {
    display: block;
  }
}
#main_footer .bottom-footer .bottom-footer-inner .copyright-line {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 23px;
  line-height: 1.4375rem;
  letter-spacing: -0.01em;
  margin-right: 80px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 500px) {
  #main_footer .bottom-footer .bottom-footer-inner .copyright-line {
    margin-right: 0;
  }
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 500px) {
  #main_footer .bottom-footer .bottom-footer-inner .bottom-menu {
    display: block;
  }
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu:not(:last-of-type) {
  margin-right: 24px;
}
@media only screen and (max-width: 500px) {
  #main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu {
    display: block;
  }
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu .menu-item {
  margin-bottom: 16px;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu .menu-item:not(:last-of-type) {
  margin-right: 24px;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu .menu-item a {
  cursor: pointer;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 23px;
  line-height: 1.4375rem;
  letter-spacing: -0.01em;
  transition: all 0.15s ease;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .menu .menu-item a:hover {
  color: white;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons {
  display: flex;
  align-items: center;
  margin-left: 32px;
}
@media only screen and (max-width: 500px) {
  #main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons {
    margin-left: 0;
  }
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons .social-icon {
  opacity: 0.5;
  margin-bottom: 16px;
  transition: opacity 0.15s ease;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons .social-icon:not(:last-of-type) {
  margin-right: 24px;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons .social-icon img {
  display: block;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons .social-icon.facebook img {
  width: 8.356px;
  height: 16px;
}
#main_footer .bottom-footer .bottom-footer-inner .bottom-menu .social-icons .social-icon:hover {
  opacity: 1;
}

#cdh_iFrame_88618, [title=cdh_Webplayer] {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -999;
  visibility: hidden;
}

.fourofour {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 700px) {
  .fourofour {
    height: auto;
    padding: 100px 0;
  }
}
@media only screen and (max-width: 500px) {
  .fourofour {
    padding: 80px 0;
  }
}
.fourofour h1 {
  font-family: "museo-sans", sans-serif;
  font-weight: 500;
  font-size: 100px;
  font-size: 6.25rem;
}
@media screen and (max-width: 1280px) {
  .fourofour h1 {
    font-size: 80px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 580px) {
  .fourofour h1 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.fourofour p {
  margin: 10px 0 40px;
}

.pagination {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.pagination ul, .pagination .nav-links {
  text-align: center;
  margin-bottom: 0px !important;
}
.pagination ul li, .pagination .nav-links li {
  padding-left: 0 !important;
  display: inline-block;
}
.pagination ul li:before, .pagination .nav-links li:before {
  display: none;
}
.pagination ul a, .pagination ul span, .pagination .nav-links a, .pagination .nav-links span {
  color: #002D4B !important;
  padding: 14px 18px 12px 18px;
  border: 1px solid #002D4B;
  cursor: pointer;
  display: inline-block;
  margin: 2px;
  border-radius: 2px;
  transition: opacity 0.2s ease-out;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.092em;
  line-height: 1;
  text-decoration: none !important;
}
@media screen and (max-width: 960px) {
  .pagination ul a, .pagination ul span, .pagination .nav-links a, .pagination .nav-links span {
    padding: 8px 12px;
  }
}
.pagination ul a:before, .pagination ul span:before, .pagination .nav-links a:before, .pagination .nav-links span:before {
  display: none;
}
.pagination ul a:not(.active):not(.arrow), .pagination ul span:not(.active):not(.arrow), .pagination .nav-links a:not(.active):not(.arrow), .pagination .nav-links span:not(.active):not(.arrow) {
  opacity: 0.5;
}
.pagination ul a:not(.active):not(.arrow):hover, .pagination ul span:not(.active):not(.arrow):hover, .pagination .nav-links a:not(.active):not(.arrow):hover, .pagination .nav-links span:not(.active):not(.arrow):hover {
  opacity: 0.8;
}
.pagination ul a.active:not(span), .pagination ul span.active:not(span), .pagination .nav-links a.active:not(span), .pagination .nav-links span.active:not(span) {
  border: 1px solid #002D4B;
  pointer-events: none;
}
.pagination ul a.disabled, .pagination ul span.disabled, .pagination .nav-links a.disabled, .pagination .nav-links span.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination ul span:not(.dots), .pagination ul .next, .pagination ul .prev, .pagination .nav-links span:not(.dots), .pagination .nav-links .next, .pagination .nav-links .prev {
  border: 1px solid #002D4B;
  opacity: 1 !important;
}
.pagination ul span.dots, .pagination .nav-links span.dots {
  pointer-events: none;
}

.mtt-news-archive-wrapper {
  background: #EFEEEB;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive-wrapper {
    background: none;
    overflow: hidden;
  }
}
.mtt-news-archive__breadcrumbs {
  width: 100%;
  padding-left: 197px;
  height: 106px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background: #FFF;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}
@media screen and (max-width: 1280px) {
  .mtt-news-archive__breadcrumbs {
    height: 117px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-news-archive__breadcrumbs {
    height: auto;
    padding: 16px 32px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive__breadcrumbs {
    width: 112%;
    margin-left: -6%;
  }
}
.mtt-news-archive__breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.mtt-news-archive__breadcrumbs ul li {
  list-style: none;
  margin-right: 16px;
}
@media screen and (max-width: 580px) {
  .mtt-news-archive__breadcrumbs ul li {
    line-height: 1;
  }
}
.mtt-news-archive__breadcrumbs ul li span {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  width: 450px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  color: #002D4B;
}
@media screen and (max-width: 1280px) {
  .mtt-news-archive__breadcrumbs ul li span {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-archive__breadcrumbs ul li span {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-news-archive__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #FFF;
}
.mtt-news-archive__sidebar {
  width: 100%;
}
@media only screen and (min-width: 1001px) {
  .mtt-news-archive__sidebar--is-sticky {
    position: sticky;
    top: 72px;
    z-index: 1;
  }
}
.mtt-news-archive__sidebar a {
  transition: opacity 0.2s ease-in-out;
}
.mtt-news-archive__sidebar a:hover {
  opacity: 0.75;
}
.mtt-news-archive__sidebar--title {
  position: relative;
  background: #002D4B;
  padding: 24px 32px;
  transition: background 0.4s ease;
  display: block;
}
.mtt-news-archive__sidebar--title:hover {
  background: #002D4B;
  opacity: 1 !important;
}
.mtt-news-archive__sidebar--title .title-text {
  color: #FFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .mtt-news-archive__sidebar--title .title-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-archive__sidebar--title .title-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-news-archive__sidebar--list-wrapper {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  overflow-y: auto;
  max-height: calc(100vh - 83px);
}
@media screen and (max-width: 1280px) {
  .mtt-news-archive__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 78px));
  }
}
@media screen and (max-width: 1160px) {
  .mtt-news-archive__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 78px));
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-archive__sidebar--list-wrapper {
    max-height: calc(100vh - (64px + 78px));
  }
}
body.admin-bar .mtt-news-archive__sidebar--list-wrapper {
  max-height: calc(100vh - (83px + 110px));
}
@media screen and (max-width: 1160px) {
  body.admin-bar .mtt-news-archive__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 110px));
  }
}
@media only screen and (max-width: 782px) {
  body.admin-bar .mtt-news-archive__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 124px));
  }
}
@media screen and (max-width: 580px) {
  body.admin-bar .mtt-news-archive__sidebar--list-wrapper {
    max-height: calc(100vh - (64px + 124px));
  }
}
.mtt-news-archive__sidebar--list-wrapper, .mtt-news-archive__sidebar--contact-wrapper {
  padding: 24px 24px 32px 32px;
  border-right: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-news-archive__sidebar .title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .mtt-news-archive__sidebar .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-archive__sidebar .title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-news-archive__sidebar--list ul li {
  list-style: none;
}
.mtt-news-archive__sidebar--list ul li:not(:last-child) {
  margin-bottom: 8px;
}
.mtt-news-archive__sidebar--list ul li ul {
  padding-left: 15px;
  margin-top: 8px;
}
.mtt-news-archive__sidebar--list ul li a {
  color: #002D4B;
  font-weight: 500;
  transition: color 0.1s ease-in-out, -webkit-text-decoration 0.2s;
  transition: color 0.1s ease-in-out, text-decoration 0.2s;
  transition: color 0.1s ease-in-out, text-decoration 0.2s, -webkit-text-decoration 0.2s;
  hyphens: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.mtt-news-archive__sidebar--list ul li a.active {
  font-weight: 700;
  color: #002D4B;
}
.mtt-news-archive__sidebar--list ul li a.active img {
  display: none;
}
.mtt-news-archive__sidebar--list ul li a.active:before {
  content: "";
  margin-top: 8px;
  margin-right: 8px;
  display: inline-block;
  width: 6px;
  height: 9px;
  background: url("../../img/icons/arrow-right-orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mtt-news-archive__sidebar--list ul li a:hover {
  color: #E16F2A;
}
.mtt-news-archive__sidebar--list ul li a img {
  display: inline-block;
  margin-top: 8px;
  margin-right: 8px;
}
.mtt-news-archive__sidebar--contact-wrapper.links {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-news-archive__sidebar--contact-wrapper.text {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-news-archive__sidebar--contact-wrapper.text h1, .mtt-news-archive__sidebar--contact-wrapper.text h2, .mtt-news-archive__sidebar--contact-wrapper.text h3, .mtt-news-archive__sidebar--contact-wrapper.text h4, .mtt-news-archive__sidebar--contact-wrapper.text h5, .mtt-news-archive__sidebar--contact-wrapper.text h6, .mtt-news-archive__sidebar--contact-wrapper.text p, .mtt-news-archive__sidebar--contact-wrapper.text a {
  margin-bottom: 8px;
}
.mtt-news-archive__sidebar--contact-wrapper.text h1, .mtt-news-archive__sidebar--contact-wrapper.text h2, .mtt-news-archive__sidebar--contact-wrapper.text h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-bottom: 16px;
}
.mtt-news-archive__sidebar--contact-wrapper.text h4, .mtt-news-archive__sidebar--contact-wrapper.text h5, .mtt-news-archive__sidebar--contact-wrapper.text h6 {
  font-size: 17px;
  font-size: 1.0625rem;
}
.mtt-news-archive__sidebar--contact-wrapper.text p, .mtt-news-archive__sidebar--contact-wrapper.text a:not([href*=tel]) {
  font-size: 14px;
  font-size: 0.875rem;
}
.mtt-news-archive__sidebar--contact-wrapper.text a[href*=tel] {
  font-size: 17px;
  font-size: 1.0625rem;
}
.mtt-news-archive__sidebar--contact-wrapper-person {
  display: flex;
  flex-direction: column;
}
.mtt-news-archive__sidebar--contact-wrapper-person:not(:last-child) {
  margin-bottom: 24px;
}
.mtt-news-archive__sidebar--contact-wrapper-person p {
  font-weight: 700;
  margin-bottom: 8px;
}
.mtt-news-archive__sidebar--contact-wrapper a {
  color: #002D4B;
  font-weight: 500;
}
.mtt-news-archive__sidebar--contact-wrapper a:not(:last-child) {
  margin-bottom: 8px;
}
.mtt-news-archive__sidebar--ads {
  padding: 48px 56px;
  position: sticky;
  color: #FFF;
  top: 72px;
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive__sidebar--ads {
    padding: 40px 5%;
    position: static;
  }
}
.mtt-news-archive__sidebar--ads .payment-summary {
  color: #FFF;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-news-archive__sidebar--ads .payment-summary h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFF;
}
.mtt-news-archive__sidebar--ads .payment-summary ul li {
  display: flex;
  justify-content: space-between;
}
.mtt-news-archive__sidebar--ads .payment-summary ul li:not(:last-child) {
  margin-bottom: 8px;
}
.mtt-news-archive__sidebar--ads .payment-summary ul li .label {
  font-weight: 300;
}
.mtt-news-archive__sidebar--ads .payment-summary ul li .value {
  font-weight: 700;
}
.mtt-news-archive__sidebar--ads .button {
  width: 100%;
  margin-top: 32px;
}
.mtt-news-archive__sidebar-wrapper {
  background: #FFF;
  margin: 0;
  width: 385px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1300px) {
  .mtt-news-archive__sidebar-wrapper {
    width: 300px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive__sidebar-wrapper {
    width: 112%;
    margin-left: -6%;
  }
}
@media print {
  .mtt-news-archive__sidebar-wrapper {
    width: 100%;
  }
}
.mtt-news-archive__sidebar-wrapper--ads {
  background: #002D4B;
}
.mtt-news-archive__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive__content {
    flex-direction: column;
  }
}
@media print {
  .mtt-news-archive__content {
    flex-direction: column;
  }
}
.mtt-news-archive__content-wrapper {
  box-shadow: -3px 0 3px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  width: 100%;
  max-width: calc(100% - 385px);
}
@media only screen and (max-width: 1300px) {
  .mtt-news-archive__content-wrapper {
    max-width: calc(100% - 300px);
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive__content-wrapper {
    max-width: 100%;
    box-shadow: none;
  }
}
@media print {
  .mtt-news-archive__content-wrapper {
    box-shadow: none;
  }
}
.mtt-news-archive__content-wrapper--ads {
  box-shadow: none;
}
.mtt-news-archive__content-wrapper--ads h1 {
  margin-bottom: 16px !important;
}
.mtt-news-archive__content-inner--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 24px 12px;
}
@media screen and (max-width: 1160px) {
  .mtt-news-archive__content-inner--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-news-archive__content-inner--grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 12px;
  }
}
@media only screen and (max-width: 800px) {
  .mtt-news-archive__content-inner--grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 580px) {
  .mtt-news-archive__content-inner--grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.mtt-news-archive__content-inner--grid .mtt-news-card {
  width: 100%;
}
.mtt-news-archive__content-inner--grid .mtt-news-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.mtt-news-archive__content-inner--grid .mtt-news-card__title:after {
  display: none;
}
.mtt-news-archive__content-inner--grid .mtt-news-card__date {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: -0.03em;
  position: relative;
  padding-right: 10px;
}
.mtt-news-archive .pagination {
  margin-bottom: 32px;
}
.mtt-news-archive .pagination.pagination--small {
  border: none;
  padding: 0;
}

.mtt-single {
  padding: 120px 0;
}
@media screen and (max-width: 1160px) {
  .mtt-single {
    padding: 80px 0;
  }
}
@media screen and (max-width: 960px) {
  .mtt-single {
    padding: 60px 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-single {
    padding: 50px 0;
  }
}
.mtt-single > .page_container {
  max-width: 900px;
}
.mtt-single p, .mtt-single ul, .mtt-single li, .mtt-single blockquote, .mtt-single a {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 1280px) {
  .mtt-single p, .mtt-single ul, .mtt-single li, .mtt-single blockquote, .mtt-single a {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-single p, .mtt-single ul, .mtt-single li, .mtt-single blockquote, .mtt-single a {
    font-size: 16px;
    font-size: 1rem;
  }
}

.mtt-single-title {
  display: flex;
  align-items: center;
  max-width: 1230px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 80px;
}
@media only screen and (max-width: 900px) {
  .mtt-single-title {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .mtt-single-title {
    margin-bottom: 40px;
  }
}
.mtt-single-title__text {
  width: 45%;
  padding-right: 50px;
  min-width: 450px;
}
@media only screen and (max-width: 900px) {
  .mtt-single-title__text {
    width: 100%;
    min-width: 100%;
    margin-bottom: 40px;
    padding-right: 0;
  }
}
.mtt-single-title__image {
  width: 55%;
  height: 0;
  padding-bottom: 35%;
  background: #EFEEEB;
  position: relative;
}
@media only screen and (max-width: 900px) {
  .mtt-single-title__image {
    width: 100%;
    height: auto;
    padding-bottom: 0;
    background: transparent;
  }
}
.mtt-single-title__image .object-fit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 900px) {
  .mtt-single-title__image .object-fit {
    position: static;
  }
}
.mtt-single-title__image img {
  display: block;
}
.mtt-single-title__title {
  max-width: 550px;
}
.mtt-single-title__title h1 {
  font-size: 42px;
  font-size: 2.625rem;
}
@media screen and (max-width: 1280px) {
  .mtt-single-title__title h1 {
    font-size: 34px;
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-single-title__title h1 {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.mtt-single-title__date {
  text-transform: uppercase;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 15px;
}
@media screen and (max-width: 1280px) {
  .mtt-single-title__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-single-title__date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

body.page-template-with-table-of-contents .styled-text ol li {
  list-style: unset;
}
body.page-template-with-table-of-contents .styled-text ol li::before {
  display: none;
}

.styled-text > h1:first-child, .styled-text > h2:first-child, .styled-text > h3:first-child, .styled-text > h4:first-child, .styled-text > h5:first-child, .styled-text > h6:first-child, .styled-text > p:first-child, .styled-text > ul:first-child, .styled-text > ol:first-child {
  margin-top: 0;
}
.styled-text .custom-table-wrapper {
  overflow-x: auto;
}
.styled-text .custom-table-wrapper table {
  min-width: 650px;
}
.styled-text p {
  margin-bottom: 1rem;
  line-height: 1.65;
}
.styled-text h1, .styled-text h2, .styled-text h3, .styled-text h4, .styled-text h5, .styled-text h6 {
  margin: 4rem 0 1rem;
}
.styled-text ul, .styled-text ol {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.styled-text ul li, .styled-text ol li {
  padding-left: 0px;
  line-height: 1.5;
  list-style: none;
  position: relative;
}
.styled-text ul li:not(:last-child), .styled-text ol li:not(:last-child) {
  margin-bottom: 16px;
}
.styled-text ul li:before, .styled-text ol li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #E16F2A;
  position: absolute;
  left: -16px;
  border-radius: 5px;
  top: 7px;
}
.styled-text .wp-video-playlist {
  padding: 0px !important;
  border: none !important;
}
.styled-text .wp-video-playlist .wp-playlist-tracks {
  display: none !important;
}
.styled-text .mejs-container, .styled-text .wp-video {
  width: 100% !important;
}
.styled-text blockquote {
  padding: 1rem 0 1rem 2rem;
  border-left: 4px solid #002D4B;
  margin: 1rem 0;
}
.styled-text blockquote p {
  margin-bottom: 0;
  line-height: 1.625;
}
.styled-text a:not(.button):not(.mtt-building-ground__title) {
  color: #002D4B;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.1s ease-in-out, -webkit-text-decoration 0.2s;
  transition: color 0.1s ease-in-out, text-decoration 0.2s;
  transition: color 0.1s ease-in-out, text-decoration 0.2s, -webkit-text-decoration 0.2s;
}
.styled-text a:not(.button):not(.mtt-building-ground__title):hover {
  color: #E16F2A;
  text-decoration: none;
}
.styled-text hr, .styled-text br {
  margin: 2rem 0;
}
.styled-text img {
  max-width: 100%;
  height: auto;
}
.styled-text table {
  border: 2px solid #eee;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  margin-bottom: 29px;
  word-wrap: break-word;
  line-height: 1.43;
}
.styled-text table td {
  border: 2px solid #eee;
  box-sizing: border-box;
  padding: 20px;
  vertical-align: top;
}

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;
}
#overlay.show {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.mtt-template-content__featured-image {
  margin-top: -32px;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__featured-image {
    width: 112%;
    margin-left: -6%;
    margin-bottom: 32px;
    margin-top: -32px;
  }
}
.mtt-template-content__featured-image .swiper-slide {
  height: auto;
}
.mtt-template-content__featured-image img {
  display: block;
  height: 100%;
}
.mtt-template-content__featured-image.featured-slider {
  opacity: 0;
  background: rgb(243.5333333333, 242.8166666667, 240.6666666667);
}
.mtt-template-content__featured-image.featured-slider .swiper-slide:not(:first-child) {
  display: none;
}
.mtt-template-content__featured-image.featured-slider.swiper-initialized {
  opacity: 1;
}
.mtt-template-content__featured-image.featured-slider.swiper-initialized .swiper-slide:not(:first-child) {
  display: block;
}
.mtt-template-content__featured-image.featured-slider .featured-slider__swiper-pagination {
  position: absolute;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mtt-template-content__featured-image.featured-slider .featured-slider__swiper-pagination .swiper-pagination-bullet {
  border: 1px solid #FFF;
  background: transparent;
  opacity: 1;
}
.mtt-template-content__featured-image.featured-slider .featured-slider__swiper-pagination .swiper-pagination-bullet-active {
  background: #E16F2A;
  border-color: #E16F2A;
}

.mtt-template-content__iframe-container {
  margin-bottom: 32px;
}
.mtt-template-content__iframe-container p {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mtt-template-content__iframe {
  position: relative;
  display: block;
  margin-top: 20px;
}
.mtt-template-content__iframe:not(.special) {
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.mtt-template-content__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mtt-template-content__iframe-link {
  display: block;
  margin-top: 8px;
}

.mtt-template-content__accordions {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.mtt-template-content__accordion {
  width: 100%;
  overflow: hidden;
  transition: all 0.2s;
}
.mtt-template-content__accordion.active .mtt-template-content__accordion-title {
  padding-bottom: 0px;
}
.mtt-template-content__accordion.active .mtt-template-content__accordion-title:after, .mtt-template-content__accordion.active .mtt-template-content__accordion-title svg {
  transform: rotate(180deg) translateY(50%);
  top: 75%;
}
.mtt-template-content__accordion.active .mtt-template-content__accordion-content {
  padding: 24px 0px 24px 0px;
  height: auto;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #e8e8e8;
}
.mtt-template-content__accordion-title {
  cursor: pointer;
  text-decoration: none;
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-right: 40px;
}
@media print {
  .mtt-template-content__accordion-title:after, .mtt-template-content__accordion-title svg {
    transform: rotate(180deg) translateY(50%);
  }
}
.mtt-template-content__accordion-title h3 {
  font-size: 20px;
  font-weight: 400;
}
.mtt-template-content__accordion-title p {
  font-size: 18px;
  font-weight: 700;
  pointer-events: none;
  margin-bottom: 0;
  color: #262626;
}
.mtt-template-content__accordion-title svg {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  min-width: 18px;
  width: 18px;
  height: 13px;
  pointer-events: none;
  transition: transform 0.2s ease;
  transform: translateY(-50%);
}
.mtt-template-content__accordion-content {
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid transparent;
  height: 0;
  overflow: hidden;
  padding: 24px 0px 0px 0px;
}
@media print {
  .mtt-template-content__accordion-content {
    padding: 24px 0px 24px 0px;
    height: auto;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #e8e8e8;
  }
}
.mtt-template-content__accordion-content-inner {
  max-width: 750px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 760px;
  font-weight: 400;
}
@media (max-width: 1160px) {
  .mtt-template-content__accordion-content-inner {
    max-width: 600px;
  }
}
.mtt-template-content__accordion-content-inner h1, .mtt-template-content__accordion-content-inner h2, .mtt-template-content__accordion-content-inner h3, .mtt-template-content__accordion-content-inner h4, .mtt-template-content__accordion-content-inner h5, .mtt-template-content__accordion-content-inner h6 {
  margin-top: 0px !important;
}
.mtt-template-content__accordion-content-inner p {
  max-width: 100%;
  width: 100%;
}
.mtt-template-content__accordion-content-inner iframe {
  width: 100%;
}

.mtt-template-content {
  background: #EFEEEB;
}
.mtt-template-content:not(.mtt-template-content--ads) {
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content {
    background: none;
    overflow: hidden;
  }
}
.mtt-template-content__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: #FFF;
}
.mtt-template-content__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__content {
    flex-direction: column;
  }
}
@media print {
  .mtt-template-content__content {
    flex-direction: column;
  }
}
.mtt-template-content__content-wrapper {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  margin: 0;
  position: relative;
  width: 100%;
  max-width: calc(100% - 385px);
}
@media only screen and (max-width: 1300px) {
  .mtt-template-content__content-wrapper {
    max-width: calc(100% - 300px);
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__content-wrapper {
    max-width: 100%;
    box-shadow: none;
  }
}
@media print {
  .mtt-template-content__content-wrapper {
    box-shadow: none;
  }
}
.mtt-template-content__content-wrapper--ads {
  box-shadow: none;
}
.mtt-template-content__content-wrapper--ads h1 {
  margin-bottom: 16px !important;
}
.mtt-template-content .add-padding {
  padding-right: 97px;
  padding-left: 97px;
}
@media screen and (max-width: 1280px) {
  .mtt-template-content .add-padding {
    padding-right: 80px;
    padding-left: 80px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-template-content .add-padding {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content .add-padding {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print {
  .mtt-template-content .add-padding {
    padding-right: 0;
    padding-left: 0;
  }
}
.mtt-template-content .responsive-video {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  margin-bottom: 32px;
}
.mtt-template-content .responsive-video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.mtt-template-content__content-top {
  background: #FFF;
  padding-top: 32px;
  padding-bottom: 67px;
}
@media screen and (max-width: 1160px) {
  .mtt-template-content__content-top {
    padding-bottom: 60px;
  }
}
.mtt-template-content__content-top.no-sidebar {
  max-width: 900px;
}
@media screen and (min-width: 1161px) {
  .mtt-template-content__content-top.no-breadcrumbs {
    padding-top: 132px;
  }
}
@media print {
  .mtt-template-content__content-top {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.mtt-template-content__content-bottom {
  background: #EFEEEB;
  padding-top: 56px;
  padding-bottom: 103px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .mtt-template-content__content-bottom {
    padding-bottom: 97px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-template-content__content-bottom {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__content-bottom:after, .mtt-template-content__content-bottom:before {
    content: "";
    background: #EFEEEB;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
  }
  .mtt-template-content__content-bottom:after {
    right: -100%;
  }
  .mtt-template-content__content-bottom:before {
    left: -100%;
  }
}
@media print {
  .mtt-template-content__content-bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.mtt-template-content__apply {
  margin-top: 32px;
}

.ad-next-step {
  display: flex;
}
.ad-next-step .button {
  margin-left: auto;
}
.ad-next-step.between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ad-next-step.spacing {
  margin-top: 32px;
}

.mtt-template-content__linkboxes-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .mtt-template-content__linkboxes-wrapper {
    display: block;
  }
}
.mtt-template-content__linkboxes-wrapper__linkboxes-title {
  font-size: 32px;
  font-size: 2rem;
  max-width: 300px;
  margin-bottom: 20px;
  font-weight: 700;
  margin-right: 32px;
  letter-spacing: -0.03em;
  line-height: 1.37;
}
.mtt-template-content__linkboxes-wrapper__linkboxes-title span, .mtt-template-content__linkboxes-wrapper__linkboxes-title i {
  font-weight: 300;
  font-style: normal;
}
.mtt-template-content__linkboxes-wrapper__linkboxes-button {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .mtt-template-content__linkboxes-wrapper__linkboxes-button {
    margin-top: 16px;
  }
}

.mtt-template-content__linkboxes-repeater {
  padding-top: 20px;
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
}
.mtt-template-content__linkboxes-repeater__linkbox {
  width: calc(50% - 24px);
  height: 0;
  padding-bottom: 44%;
  margin: 12px;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .mtt-template-content__linkboxes-repeater__linkbox {
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .mtt-template-content__linkboxes-repeater__linkbox {
    padding-bottom: 60%;
  }
}
@media only screen and (max-width: 400px) {
  .mtt-template-content__linkboxes-repeater__linkbox {
    padding-bottom: 80%;
  }
}
.mtt-template-content__linkboxes-repeater__linkbox:hover > div:before {
  opacity: 0.3;
}
.mtt-template-content__linkboxes-repeater__linkbox:hover > div .object-fit {
  transform: scale(1.04);
}
.mtt-template-content__linkboxes-repeater__linkbox-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
.mtt-template-content__linkboxes-repeater__linkbox-image:after {
  content: "";
  opacity: 0.7;
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}
.mtt-template-content__linkboxes-repeater__linkbox-image:before {
  content: "";
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0px;
  background: #000;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
.mtt-template-content__linkboxes-repeater__linkbox-image .object-fit {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}
.mtt-template-content__linkboxes-repeater__linkbox-image .object-fit img {
  height: 100%;
}
.mtt-template-content__linkboxes-repeater__linkbox-content {
  position: absolute;
  pointer-events: none;
  bottom: 24px;
  left: 32px;
  width: calc(100% - 64px);
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 580px) {
  .mtt-template-content__linkboxes-repeater__linkbox-content {
    left: 24px;
  }
}
.mtt-template-content__linkboxes-repeater__linkbox-title {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  color: #FFF;
  letter-spacing: -0.03em;
}
.mtt-template-content__linkboxes-repeater__linkbox-text {
  font-weight: 500;
  margin-top: 8px;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: -0.03em;
  line-height: 1.33;
  color: #E0DED8;
}

.mtt-template-content__background-image {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__background-image {
    display: none;
  }
}
.mtt-template-content__background-image .object-fit {
  height: 100%;
  width: 100%;
}
body.overflow-hidden {
  overflow: hidden;
}

@media only screen and (max-width: 1000px) {
  body.page-template-with-table-of-contents .mtt-template-content__inner {
    width: 100%;
    padding: 0 72px;
  }
}
@media screen and (max-width: 580px) {
  body.page-template-with-table-of-contents .mtt-template-content__inner {
    padding: 0 56px;
  }
}
body.page-template-with-table-of-contents .mtt-template-content__sidebar-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #002D4B;
  position: fixed;
  cursor: pointer;
}
body.page-template-with-table-of-contents .mtt-template-content__sidebar-button--open {
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 9;
}
@media screen and (max-width: 580px) {
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-button--open {
    left: 8px;
  }
}
body.page-template-with-table-of-contents .mtt-template-content__sidebar-button--close {
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}
@media only screen and (min-width: 1001px) {
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-button {
    display: none;
  }
}
body.page-template-with-table-of-contents .mtt-template-content__sidebar-button-icon {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
body.page-template-with-table-of-contents .mtt-template-content__sidebar-button-icon--open {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' height='512' viewBox='0 0 24 24' width='512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath clip-rule='evenodd' d='m3 5.25c-.9665 0-1.75.7835-1.75 1.75v2c0 .9665.7835 1.75 1.75 1.75h2c.9665 0 1.75-.7835 1.75-1.75v-2c0-.9665-.7835-1.75-1.75-1.75zm0 8c-.9665 0-1.75.7835-1.75 1.75v2c0 .9665.7835 1.75 1.75 1.75h2c.9665 0 1.75-.7835 1.75-1.75v-2c0-.9665-.7835-1.75-1.75-1.75zm6.25-7.25c0-.41421.33579-.75.75-.75h6c.4142 0 .75.33579.75.75s-.3358.75-.75.75h-6c-.41421 0-.75-.33579-.75-.75zm.75 7.25c-.41421 0-.75.3358-.75.75s.33579.75.75.75h6c.4142 0 .75-.3358.75-.75s-.3358-.75-.75-.75zm-.75-3.25c0-.41421.33579-.75.75-.75h12c.4142 0 .75.33579.75.75 0 .4142-.3358.75-.75.75h-12c-.41421 0-.75-.3358-.75-.75zm.75 7.25c-.41421 0-.75.3358-.75.75s.33579.75.75.75h12c.4142 0 .75-.3358.75-.75s-.3358-.75-.75-.75z' fill='rgb(255,255,255)' fill-rule='evenodd'/%3E%3C/svg%3E");
}
body.page-template-with-table-of-contents .mtt-template-content__sidebar-button-icon--close {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 22.88 22.88' style='enable-background:new 0 0 22.88 22.88;' xml:space='preserve'%3E%3Cpath style='fill:%23FFFFFF;' d='M0.324,1.909c-0.429-0.429-0.429-1.143,0-1.587c0.444-0.429,1.143-0.429,1.587,0l9.523,9.539 l9.539-9.539c0.429-0.429,1.143-0.429,1.571,0c0.444,0.444,0.444,1.159,0,1.587l-9.523,9.524l9.523,9.539 c0.444,0.429,0.444,1.143,0,1.587c-0.429,0.429-1.143,0.429-1.571,0l-9.539-9.539l-9.523,9.539c-0.444,0.429-1.143,0.429-1.587,0 c-0.429-0.444-0.429-1.159,0-1.587l9.523-9.539L0.324,1.909z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}
@media only screen and (max-width: 1000px) {
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-wrapper {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 72px);
    margin-left: -5%;
    top: 72px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-200px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-wrapper.active {
    opacity: 1;
    overflow: visible;
    transform: translateY(0px);
    pointer-events: all;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 1000px) {
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-wrapper {
    margin-left: -72px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 580px) {
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-wrapper {
    margin-left: -56px;
  }
}
@media only screen and (max-width: 1000px) {
  body.page-template-with-table-of-contents .mtt-template-content__sidebar-wrapper .mtt-template-content__sidebar--list-wrapper {
    border-bottom: none;
    padding: 24px 5% 72px 5%;
  }
}
body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content h1, body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content h2, body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content h3, body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content h4, body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content h5, body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content h6 {
  hyphens: auto;
}
body.page-template-with-table-of-contents .mtt-template-content__wysiwyg-content p img {
  cursor: pointer;
  max-width: 400px;
}
@media only screen and (max-width: 1000px) {
  body.page-template-with-table-of-contents.admin-bar .mtt-template-content__sidebar-wrapper {
    height: calc(100vh - 104px);
    top: 104px;
  }
}
@media only screen and (min-width: 1001px) {
  body.page-template-with-table-of-contents.admin-bar .mtt-template-content__sidebar--is-sticky {
    position: sticky;
    top: 104px;
    z-index: 1;
  }
}

@media only screen and (min-width: 1001px) {
  .mtt-template-content--no-overflow {
    overflow: visible !important;
  }
}
.mtt-template-content__sidebar-wrapper {
  background: #FFF;
  margin: 0;
  width: 385px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1300px) {
  .mtt-template-content__sidebar-wrapper {
    width: 300px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__sidebar-wrapper {
    width: 112%;
    margin-left: -6%;
  }
}
@media print {
  .mtt-template-content__sidebar-wrapper {
    width: 100%;
  }
}
.mtt-template-content__sidebar-wrapper--ads {
  background: #002D4B;
}
.mtt-template-content__sidebar {
  width: 100%;
}
@media only screen and (min-width: 1001px) {
  .mtt-template-content__sidebar--is-sticky {
    position: sticky;
    top: 72px;
    z-index: 1;
  }
}
.mtt-template-content__sidebar a {
  transition: opacity 0.2s ease-in-out;
}
.mtt-template-content__sidebar a:hover {
  opacity: 0.75;
}
.mtt-template-content__sidebar--title {
  position: relative;
  background: #002D4B;
  padding: 24px 32px;
  transition: background 0.4s ease;
  display: block;
}
.mtt-template-content__sidebar--title:hover {
  background: #002D4B;
  opacity: 1 !important;
}
.mtt-template-content__sidebar--title .title-text {
  color: #FFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .mtt-template-content__sidebar--title .title-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__sidebar--title .title-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-template-content__sidebar--list-wrapper {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  overflow-y: auto;
  max-height: calc(100vh - 83px);
}
@media screen and (max-width: 1280px) {
  .mtt-template-content__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 78px));
  }
}
@media screen and (max-width: 1160px) {
  .mtt-template-content__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 78px));
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__sidebar--list-wrapper {
    max-height: calc(100vh - (64px + 78px));
  }
}
body.admin-bar .mtt-template-content__sidebar--list-wrapper {
  max-height: calc(100vh - (83px + 110px));
}
@media screen and (max-width: 1160px) {
  body.admin-bar .mtt-template-content__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 110px));
  }
}
@media only screen and (max-width: 782px) {
  body.admin-bar .mtt-template-content__sidebar--list-wrapper {
    max-height: calc(100vh - (72px + 124px));
  }
}
@media screen and (max-width: 580px) {
  body.admin-bar .mtt-template-content__sidebar--list-wrapper {
    max-height: calc(100vh - (64px + 124px));
  }
}
.mtt-template-content__sidebar--list-wrapper, .mtt-template-content__sidebar--contact-wrapper {
  padding: 24px 24px 32px 32px;
  border-right: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-template-content__sidebar .title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .mtt-template-content__sidebar .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__sidebar .title {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-template-content__sidebar--list ul li {
  list-style: none;
}
.mtt-template-content__sidebar--list ul li:not(:last-child) {
  margin-bottom: 8px;
}
.mtt-template-content__sidebar--list ul li ul {
  padding-left: 15px;
  margin-top: 8px;
}
.mtt-template-content__sidebar--list ul li a {
  color: #002D4B;
  font-weight: 500;
  transition: color 0.1s ease-in-out, -webkit-text-decoration 0.2s;
  transition: color 0.1s ease-in-out, text-decoration 0.2s;
  transition: color 0.1s ease-in-out, text-decoration 0.2s, -webkit-text-decoration 0.2s;
  hyphens: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.mtt-template-content__sidebar--list ul li a.active {
  font-weight: 700;
  color: #002D4B;
}
.mtt-template-content__sidebar--list ul li a.active img {
  display: none;
}
.mtt-template-content__sidebar--list ul li a.active:before {
  content: "";
  margin-top: 8px;
  margin-right: 8px;
  display: inline-block;
  width: 6px;
  height: 9px;
  background: url("../../img/icons/arrow-right-orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mtt-template-content__sidebar--list ul li a:hover {
  color: #E16F2A;
}
.mtt-template-content__sidebar--list ul li a img {
  display: inline-block;
  margin-top: 8px;
  margin-right: 8px;
}
.mtt-template-content__sidebar--contact-wrapper.links {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-template-content__sidebar--contact-wrapper.text {
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-template-content__sidebar--contact-wrapper.text h1, .mtt-template-content__sidebar--contact-wrapper.text h2, .mtt-template-content__sidebar--contact-wrapper.text h3, .mtt-template-content__sidebar--contact-wrapper.text h4, .mtt-template-content__sidebar--contact-wrapper.text h5, .mtt-template-content__sidebar--contact-wrapper.text h6, .mtt-template-content__sidebar--contact-wrapper.text p, .mtt-template-content__sidebar--contact-wrapper.text a {
  margin-bottom: 8px;
}
.mtt-template-content__sidebar--contact-wrapper.text h1, .mtt-template-content__sidebar--contact-wrapper.text h2, .mtt-template-content__sidebar--contact-wrapper.text h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-bottom: 16px;
}
.mtt-template-content__sidebar--contact-wrapper.text h4, .mtt-template-content__sidebar--contact-wrapper.text h5, .mtt-template-content__sidebar--contact-wrapper.text h6 {
  font-size: 17px;
  font-size: 1.0625rem;
}
.mtt-template-content__sidebar--contact-wrapper.text p, .mtt-template-content__sidebar--contact-wrapper.text a:not([href*=tel]) {
  font-size: 14px;
  font-size: 0.875rem;
}
.mtt-template-content__sidebar--contact-wrapper.text a[href*=tel] {
  font-size: 17px;
  font-size: 1.0625rem;
}
.mtt-template-content__sidebar--contact-wrapper-person {
  display: flex;
  flex-direction: column;
}
.mtt-template-content__sidebar--contact-wrapper-person:not(:last-child) {
  margin-bottom: 24px;
}
.mtt-template-content__sidebar--contact-wrapper-person p {
  font-weight: 700;
  margin-bottom: 8px;
}
.mtt-template-content__sidebar--contact-wrapper a {
  color: #002D4B;
  font-weight: 500;
}
.mtt-template-content__sidebar--contact-wrapper a:not(:last-child) {
  margin-bottom: 8px;
}
.mtt-template-content__sidebar--ads {
  padding: 48px 56px;
  position: sticky;
  color: #FFF;
  top: 72px;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__sidebar--ads {
    padding: 40px 5%;
    position: static;
  }
}
.mtt-template-content__sidebar--ads .payment-summary {
  color: #FFF;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-template-content__sidebar--ads .payment-summary h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFF;
}
.mtt-template-content__sidebar--ads .payment-summary ul li {
  display: flex;
  justify-content: space-between;
}
.mtt-template-content__sidebar--ads .payment-summary ul li:not(:last-child) {
  margin-bottom: 8px;
}
.mtt-template-content__sidebar--ads .payment-summary ul li .label {
  font-weight: 300;
}
.mtt-template-content__sidebar--ads .payment-summary ul li .value {
  font-weight: 700;
}
.mtt-template-content__sidebar--ads .button {
  width: 100%;
  margin-top: 32px;
}

.mtt-template-content__title {
  display: flex;
  flex-direction: column;
}
.mtt-template-content__title--actions {
  margin-top: 18px;
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__title--actions {
    display: none;
  }
}
.mtt-template-content__title--actions.has-cover {
  margin-top: 40px;
}
.mtt-template-content__title--actions a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-right: 15px;
  flex-shrink: 0;
}
.mtt-template-content__title--actions a:hover p {
  color: #E16F2A;
}
.mtt-template-content__title--actions a img {
  max-height: 10px;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-right: 8px;
}
.mtt-template-content__title--actions a p {
  color: #2B2B2B;
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 0px;
  display: inline-block;
  transition: color 0.2s ease-in-out;
}
.mtt-template-content__title--actions .js-btn-share {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.mtt-template-content__title--actions .sharing-list {
  padding: 8px 18px 8px 77px;
  border: 1px solid #ececec;
  border-radius: 100px;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
  transition: all 0.5s ease;
  position: absolute;
  left: -20px;
  top: 50%;
  display: block;
  opacity: 0;
  pointer-events: none;
}
.mtt-template-content__title--actions .sharing-list.show {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: all;
}
.mtt-template-content__title--actions .sharing-list__elements {
  display: flex;
}
.mtt-template-content__title--actions .sharing-list__elements a.facebook svg path {
  fill: #3B5998;
}
.mtt-template-content__title--actions .sharing-list__elements a.twitter svg path {
  fill: #55ACEE;
}
.mtt-template-content__title--actions .sharing-list__elements a.mail svg path {
  fill: #E16F2A;
}
.mtt-template-content__title--actions .sharing-list__elements .close {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mtt-template-content__title--title {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}
.mtt-template-content__title--title.together {
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
.mtt-template-content__title--title.together h1 {
  max-width: 305px;
}
.mtt-template-content__title--title.together p {
  max-width: 316px;
}
@media screen and (max-width: 1160px) {
  .mtt-template-content__title--title {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__title--title {
    margin-top: 0px;
  }
}
@media print {
  .mtt-template-content__title--title {
    margin-top: 32px;
    flex-direction: column;
  }
}
.mtt-template-content__title--title h1 {
  max-width: 545px;
  width: 100%;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  margin: 0 32px 20px 0;
}
.mtt-template-content__title--title h1.no-margin {
  margin: 0;
}
.mtt-template-content__title--title p {
  max-width: 546px;
  width: 100%;
  margin: 0;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.mtt-template-content__title--button-back {
  margin-top: 32px;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__title--button-back {
    margin-top: 0;
    margin-bottom: 32px;
  }
}
.mtt-template-content__title--date {
  margin-top: -12px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__title--date {
    margin-bottom: 24px;
  }
}
.mtt-template-content__title--date.space-bottom {
  margin-bottom: 24px;
}
.mtt-template-content__title--deadline p {
  font-weight: 700;
}
.mtt-template-content__title--deadline p span {
  font-weight: 100;
}

.mtt-template-content__highlight {
  background: #E16F2A;
  background: linear-gradient(120deg, #E16F2A 0%, rgb(211.6851851852, 98.3888888889, 29.8148148148) 100%);
  position: relative;
  margin-bottom: 32px;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__highlight {
    width: 112%;
    margin-left: -6%;
    padding: 0px 5%;
  }
}
.mtt-template-content__highlight .dots {
  position: absolute;
  height: 110%;
  top: -5%;
  right: -10%;
  width: 30%;
  opacity: 0.2;
}
@media screen and (max-width: 580px) {
  .mtt-template-content__highlight .dots {
    width: 50%;
  }
}
@media only screen and (max-width: 450px) {
  .mtt-template-content__highlight .dots {
    width: 80%;
    right: -40%;
  }
}
.mtt-template-content__highlight--inner {
  padding: 32px 0px 22px 0px;
  display: flex;
  flex-wrap: wrap;
}
.mtt-template-content__highlight--inner .button {
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}

.mtt-template-content__building-grounds--title h3 {
  margin-bottom: 24px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 1280px) {
  .mtt-template-content__building-grounds--title h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__building-grounds--title h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.mtt-template-content__building-grounds--inner {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 600px) {
  .mtt-template-content__building-grounds--inner {
    margin: 0px;
    margin-bottom: 44px;
  }
}
.mtt-template-content__building-grounds--pagination .pagination {
  margin-top: 0px;
  border-top: none;
  padding-top: 0px;
}

.mtt-template-content__link-section {
  background: #EFEEEB;
  margin: 32px 0px;
  position: relative;
}
.mtt-template-content__link-section:after, .mtt-template-content__link-section:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #EFEEEB;
  top: 0px;
  display: none;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__link-section:after, .mtt-template-content__link-section:before {
    display: block;
  }
}
.mtt-template-content__link-section:after {
  left: 100%;
}
.mtt-template-content__link-section:before {
  right: 100%;
}
.mtt-template-content__link-section--inner {
  padding: 25px 0px;
}
.mtt-template-content__link-section--inner h3 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 21px;
  font-size: 1.3125rem;
}
.mtt-template-content__link-section--link a {
  display: flex;
  align-items: center;
  line-height: 1;
}
.mtt-template-content__link-section--link img, .mtt-template-content__link-section--link svg {
  height: 20px;
  width: 17px;
  margin-right: 8px;
  display: inline-block;
  margin-top: -1px;
}
.mtt-template-content__link-section--link:not(:last-child) {
  margin-bottom: 12px;
}

.mtt-template-content__facts {
  background: #EFEEEB;
  position: relative;
  margin-bottom: 37px;
  margin-top: 17px;
}
.mtt-template-content__facts:after, .mtt-template-content__facts:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #EFEEEB;
  top: 0px;
  display: none;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__facts:after, .mtt-template-content__facts:before {
    display: block;
  }
}
.mtt-template-content__facts:after {
  left: 100%;
}
.mtt-template-content__facts:before {
  right: 100%;
}
.mtt-template-content__facts--container {
  padding: 40px 0px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 650px) {
  .mtt-template-content__facts--container {
    flex-direction: column;
  }
}
.mtt-template-content__facts--container .fact {
  flex-grow: 1;
}
.mtt-template-content__facts--container .fact:not(:last-child) {
  border-right: 1px solid rgba(112, 112, 112, 0.1);
  padding-right: 32px;
  margin-right: 32px;
}
@media only screen and (max-width: 950px) {
  .mtt-template-content__facts--container .fact:not(:last-child) {
    margin-right: 24px;
    padding-right: 24px;
  }
}
@media only screen and (max-width: 650px) {
  .mtt-template-content__facts--container .fact:not(:last-child) {
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.mtt-template-content__facts--container .fact:not(:first-child) {
  margin-left: 32px;
  padding-left: 32px;
}
@media only screen and (max-width: 950px) {
  .mtt-template-content__facts--container .fact:not(:first-child) {
    margin-left: 24px;
    padding-left: 24px;
  }
}
@media only screen and (max-width: 650px) {
  .mtt-template-content__facts--container .fact:not(:first-child) {
    margin-left: 0px;
    padding-left: 0px;
  }
}
.mtt-template-content__facts--container .fact:last-child {
  flex-grow: 0;
}
.mtt-template-content__facts--container .fact p {
  color: #133550;
  margin-bottom: 0px;
  font-weight: 300;
}
.mtt-template-content__facts--container .fact .title {
  margin-bottom: 4px;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .mtt-template-content__facts--container .fact .title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__facts--container .fact .title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.mtt-template-content__usps {
  margin-bottom: 32px;
  position: relative;
}
.mtt-template-content__usps:after, .mtt-template-content__usps:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #EFEEEB;
  top: 0px;
  display: none;
}
@media only screen and (max-width: 1000px) {
  .mtt-template-content__usps:after, .mtt-template-content__usps:before {
    display: block;
  }
}
.mtt-template-content__usps:after {
  left: 100%;
}
.mtt-template-content__usps:before {
  right: 100%;
}
@media screen and (max-width: 1160px) {
  .mtt-template-content__usps {
    background: #EFEEEB;
  }
}
.mtt-template-content__usps--inner {
  background: #EFEEEB;
  padding: 40px 56px;
}
@media screen and (max-width: 1160px) {
  .mtt-template-content__usps--inner {
    padding: 32px 0px;
  }
}
.mtt-template-content__usps p {
  color: #133550;
  margin-bottom: 16px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .mtt-template-content__usps p {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__usps p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.mtt-template-content__usps ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.mtt-template-content__usps ul li {
  padding-left: 32px;
  position: relative;
  color: #133550;
  list-style: none;
}
.mtt-template-content__usps ul li:not(:last-child) {
  margin-bottom: 16px;
}
.mtt-template-content__usps ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1px;
  left: 0px;
  background: url("../../img/icons/checkmark-orange.svg");
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.mtt-template-content__notifications-form {
  background: #002D4B;
  margin-top: 48px;
  position: relative;
}
.mtt-template-content__notifications-form:before, .mtt-template-content__notifications-form:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #002D4B;
  position: absolute;
  top: 0;
}
@media only screen and (min-width: 1001px) {
  .mtt-template-content__notifications-form:before, .mtt-template-content__notifications-form:after {
    display: none;
  }
}
.mtt-template-content__notifications-form:before {
  right: 100%;
}
.mtt-template-content__notifications-form:after {
  left: 100%;
}
.mtt-template-content__notifications-form--inner {
  padding-top: 48px;
  padding-bottom: 40px;
}
.mtt-template-content__notifications-form h3 {
  color: #FFF;
  margin: 0;
  margin-bottom: 12px;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 1280px) {
  .mtt-template-content__notifications-form h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__notifications-form h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-template-content__notifications-form h3 {
    margin-bottom: 16px;
  }
}
.mtt-template-content__notifications-form p {
  color: #FFF;
  opacity: 0.85;
  letter-spacing: -0.008em;
  font-size: 14px;
  font-size: 0.875rem;
}
.mtt-template-content__notifications-form form {
  color: #FFF;
  display: flex;
  flex-direction: column;
}
.mtt-template-content__notifications-form form .input-wrap {
  display: flex;
  margin-bottom: 0;
  margin-top: 16px;
}
.mtt-template-content__notifications-form form .input-wrap label:first-child {
  width: 100%;
}
.mtt-template-content__notifications-form form .checkbox-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4px;
}
.mtt-template-content__notifications-form form .checkbox-wrap label {
  margin-right: 16px;
  margin-bottom: 8px;
}
.mtt-template-content__notifications-form form .checkbox-wrap label span {
  color: #FFF;
}
.mtt-template-content__notifications-form form .validation-wrap p {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
  display: none;
}
.mtt-template-content__notifications-form form .validation-wrap p.error {
  color: #dc3545;
}
.mtt-template-content__notifications-form form input[type=email] {
  margin-top: 0px;
  border-radius: 3px 0 0 3px;
}
.mtt-template-content__notifications-form form input[type=submit] {
  background: #E16F2A;
  border: 1px solid #E16F2A;
  height: 100%;
  font-family: "museo-sans", sans-serif;
  color: #FFF;
  font-weight: 700;
  text-align: center;
  padding: 0 15px !important;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}
.mtt-template-content__notifications-form .dots {
  width: 420px;
  height: 500px;
  left: -97px;
  bottom: -136px;
  opacity: 0.03;
  position: absolute;
  pointer-events: none;
}

.mtt-template-content__fixed-element {
  position: relative;
}
.mtt-template-content__fixed-element--border-top .mtt-template-content__fixed-element--text {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-template-content__fixed-element--text h2, .mtt-template-content__fixed-element--text h3, .mtt-template-content__fixed-element--text h4, .mtt-template-content__fixed-element--text h5, .mtt-template-content__fixed-element--text h6 {
  font-size: 32px;
}
@media screen and (max-width: 580px) {
  .mtt-template-content__fixed-element--text h2, .mtt-template-content__fixed-element--text h3, .mtt-template-content__fixed-element--text h4, .mtt-template-content__fixed-element--text h5, .mtt-template-content__fixed-element--text h6 {
    font-size: 28px;
  }
}
.mtt-template-content__fixed-element--text h2:first-child, .mtt-template-content__fixed-element--text h3:first-child, .mtt-template-content__fixed-element--text h4:first-child, .mtt-template-content__fixed-element--text h5:first-child, .mtt-template-content__fixed-element--text h6:first-child {
  margin-top: 0;
}
.mtt-template-content__fixed-element--image-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.mtt-template-content__fixed-element--image {
  margin-top: 32px;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 42%;
}
.mtt-template-content__fixed-element--image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
  border-radius: 4px;
}

.nav-search-wrap {
  position: absolute;
  left: 50%;
  width: 90%;
  max-width: 1230px;
  top: 100%;
  transform: translate(-50%, 20px);
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.15s ease, max-height 0.15s ease 0.3s;
  max-height: 0;
  overflow: hidden;
  z-index: -1;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 400px) {
  .nav-search-wrap {
    width: 100%;
  }
}
.nav-search-wrap__inner {
  width: 400px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  padding: 16px;
}
body.header-scrolled.dark-scroll-nav .nav-search-wrap__inner {
  background: #002D4B;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 580px) {
  .nav-search-wrap__inner {
    padding: 8px;
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .nav-search-wrap__inner {
    display: block;
    padding: 8px 16px;
  }
}
.nav-search-wrap__input {
  width: 100%;
  margin-right: 12px;
  flex-shrink: 1;
}
@media screen and (max-width: 580px) {
  .nav-search-wrap__input {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 400px) {
  .nav-search-wrap__input {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.nav-search-wrap__input input {
  width: 100%;
  margin-top: 0px;
}
body.header-scrolled.dark-scroll-nav .nav-search-wrap__input input {
  background: rgb(0, 60.3, 100.5);
  border-color: #002D4B;
  color: rgba(255, 255, 255, 0.8);
}
body.header-scrolled.dark-scroll-nav .nav-search-wrap__input input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
body.header-scrolled.dark-scroll-nav .nav-search-wrap__input input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
body.header-scrolled.dark-scroll-nav .nav-search-wrap__input input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
body.header-scrolled.dark-scroll-nav .nav-search-wrap__input input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.nav-search-wrap__submit {
  flex-shrink: 0;
}
@media only screen and (max-width: 400px) {
  .nav-search-wrap__submit {
    width: 100%;
  }
}
.nav-search-wrap__submit button {
  padding: 16px 24px 11px 24px;
  border-top: none;
}
@media only screen and (max-width: 400px) {
  .nav-search-wrap__submit button {
    width: 100%;
  }
}
.nav-search-wrap--open {
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, 0);
  opacity: 1;
  max-height: 300px;
  z-index: 9999999;
  overflow: visible;
}
.nav-search-wrap__input input:focus .nav-search-wrap {
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translate(-50%, 0);
  opacity: 1;
  max-height: 300px;
  z-index: 9999999;
  overflow: visible;
}

.searchpage {
  background: #EFEEEB;
  overflow: hidden;
  min-height: 500px;
}
.searchpage__inner {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  width: 70%;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  background: #FFF;
}
@media screen and (max-width: 1160px) {
  .searchpage__inner {
    width: 90%;
  }
}
.searchpage__cover-container {
  position: relative;
  padding: 32px 32px;
}
.searchpage__cover-container:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(224, 222, 216, 0.95);
  z-index: 2;
}
.searchpage__cover-container .dots-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0px;
  left: 0px;
}
.searchpage__cover-container .dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -450px;
  width: 100%;
  height: 700px;
  z-index: 1;
}
.searchpage__search-form {
  position: relative;
  z-index: 3;
}
.searchpage__search-form--categories {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.searchpage__search-form--categories label {
  margin-top: 6px;
}
.searchpage__search-form--categories label:not(:last-child) {
  margin-right: 16px;
}
.searchpage__results-container {
  padding: 60px 80px 60px 60px;
  margin-bottom: 64px;
}
@media screen and (max-width: 580px) {
  .searchpage__results-container {
    padding: 60px 40px;
  }
}
@media only screen and (max-width: 480px) {
  .searchpage__results-container {
    padding: 40px 20px 20px;
  }
}
.searchpage__top-container h1 {
  font-size: 19px;
  font-size: 1.1875rem;
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.3;
}
.searchpage__top-container--sorting {
  display: flex;
  flex-wrap: wrap;
}
.searchpage__top-container--sorting p {
  margin-bottom: 16px;
}
.searchpage__top-container--sorting p, .searchpage__top-container--sorting li {
  font-weight: 700;
  margin-right: 16px;
}
.searchpage__top-container--sorting ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.searchpage__top-container--sorting ul li {
  list-style: none;
  cursor: pointer;
}
.searchpage__top-container--sorting ul li.active[data-order=ASC] button:after {
  transform: rotate(180deg);
}
.searchpage__top-container--sorting ul li.active button {
  color: #E16F2A;
  text-decoration: underline;
}
.searchpage__top-container--sorting ul li button {
  cursor: pointer;
  text-transform: uppercase;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: #2B2B2B;
  display: flex;
  align-items: center;
}
.searchpage__top-container--sorting ul li button:after {
  content: "";
  width: 8px;
  height: 5px;
  background: url("../../img/icons/down-arrow-dark.svg");
  background-size: cover;
  display: inline-block;
  margin-left: 5px;
}
.searchpage__pagination {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}
.searchpage__pagination a, .searchpage__pagination span {
  margin: 0px 8px;
  color: #2B2B2B;
}
.searchpage__pagination a:hover:not(.current), .searchpage__pagination span:hover:not(.current) {
  opacity: 0.8;
}
.searchpage__pagination a.current, .searchpage__pagination span.current {
  font-weight: 700;
  color: #002D4B;
}

.search-result {
  display: block;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
}
.search-result:last-of-type {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.search-result a {
  display: flex;
  justify-content: space-between;
  transition: opacity 0.2s;
}
.search-result a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 900px) {
  .search-result a {
    display: block;
  }
}
.search-result a .text-container .type {
  margin-bottom: 15px;
  font-size: 14px;
  color: #002D4B;
}
@media screen and (max-width: 580px) {
  .search-result a .text-container .type {
    margin-bottom: 10px;
  }
}
.search-result a .text-container .title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  margin-bottom: 10px;
  color: #E16F2A;
}
@media screen and (max-width: 580px) {
  .search-result a .text-container .title {
    margin-bottom: 10px;
  }
}
.search-result a .text-container .text {
  color: #2B2B2B;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 800px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 580px) {
  .search-result a .text-container .text {
    margin-bottom: 15px;
  }
}
.search-result a .text-container .read-more {
  font-size: 14px;
  color: #002D4B;
}
.search-result a .image-container {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: 60px;
  padding-left: 60px;
  border-left: 1px solid #e8e8e8;
}
@media screen and (max-width: 1100px) {
  .search-result a .image-container {
    margin-left: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 900px) {
  .search-result a .image-container {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    display: block;
    width: auto;
    max-width: 400px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 580px) {
  .search-result a .image-container {
    margin-top: 15px;
  }
}
.search-result a .image-container img {
  max-width: 100%;
  height: auto;
}

form[role=search] {
  width: 100%;
  position: relative;
}
form[role=search].loading:after {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 4px solid #002D4B;
  border-top: 4px solid #002D4B;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 14px);
  right: 27px;
  z-index: 10;
  animation: spinme 400ms linear infinite;
  background: #FFF;
}
@keyframes spinme {
  100% {
    transform: rotate(-360deg);
  }
}
form[role=search] input[type=submit] {
  position: absolute;
  font-size: 0px;
  width: 20px;
  height: 20px;
  background: none;
  border: 1px solid transparent;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
form[role=search] input[type=submit]:focus {
  outline: none;
  border: 1px solid #002D4B;
  box-shadow: 0px 0px 5px rgba(235, 66, 250, 0.6);
}
form[role=search] label {
  width: 100%;
}
form[role=search] label input {
  font-size: 18px;
  font-size: 1.125rem;
  color: #002D4B;
  border-radius: 99px;
  background: url("../../img/icons/search-dark.svg") #FFF;
  background-size: 16px 16px;
  background-position: right 32px center;
  background-repeat: no-repeat;
  opacity: 0.95;
  box-shadow: 0px 3px 26px rgba(0, 0, 0, 0.25);
  padding: 14px 34px 13px 34px;
  width: 100%;
  border: 1px solid #FFF;
  transition: opacity 0.2s ease-in-out, box-shadow 0.2s ease, border-color 0.2s ease-in-out;
}
form[role=search] label input:focus {
  opacity: 1;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.32);
  border-color: #002D4B;
}
form[role=search] #vksfsuggestions {
  background: #FFF;
  width: 100%;
  max-width: 100%;
  position: absolute;
  z-index: 5;
  top: 110%;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}
@media screen and (max-width: 1160px) {
  form[role=search] #vksfsuggestions {
    max-height: 200px;
  }
}
form[role=search] #vksfsuggestions ul {
  list-style: none;
}
form[role=search] #vksfsuggestions li {
  padding: 8px 34px;
}
form[role=search] #vksfsuggestions li:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}
form[role=search] #vksfsuggestions li:hover {
  cursor: pointer;
  background: #EFEEEB;
}

.mtt-building-ground {
  width: calc(50% - 16px);
  margin: 8px;
  color: #2B2B2B;
}
@media only screen and (max-width: 600px) {
  .mtt-building-ground {
    width: 100%;
    margin: 20px 0;
  }
}
@media print {
  .mtt-building-ground {
    width: 100%;
    margin: 20px 0;
  }
}
.mtt-building-ground__image {
  height: 0;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
  background: #EFEEEB;
  margin-bottom: 12px;
  display: block;
}
@media print {
  .mtt-building-ground__image {
    height: 250px;
    width: 100%;
    padding-bottom: 0px;
  }
}
.mtt-building-ground__image .object-fit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media print {
  .mtt-building-ground__image .object-fit {
    position: relative;
  }
}
.mtt-building-ground__image .object-fit img {
  height: 100%;
}
.mtt-building-ground__text-container {
  display: flex;
  justify-content: space-between;
}
.mtt-building-ground__text {
  margin-right: 16px;
}
.mtt-building-ground__button {
  flex-shrink: 0;
}
.mtt-building-ground__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #2B2B2B;
  line-height: 1.2;
  margin-top: -3px;
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .mtt-building-ground__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-building-ground__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-building-ground__excerpt {
  font-weight: 100;
  color: #2B2B2B;
  margin-top: 8px;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
}

.slider-arrow-wrap .swiper-button-next, .slider-arrow-wrap .swiper-button-prev {
  position: relative;
  width: 52px;
  height: 52px;
  margin-top: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #e16f2a;
  border-radius: 4px;
  z-index: 1;
  background: url("../../img/icons/slider-arrow.svg");
  background-position: center center;
  background-size: 7.41px 12px;
  background-repeat: no-repeat;
}
.slider-arrow-wrap .swiper-button-next:after, .slider-arrow-wrap .swiper-button-prev:after {
  display: none;
}
.slider-arrow-wrap .swiper-button-next.swiper-button-disabled, .slider-arrow-wrap .swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
}
.slider-arrow-wrap .swiper-button-prev {
  margin-right: 8px;
  transform: scaleX(-1);
}

body.open-video div.video-modal {
  visibility: visible;
  width: 900px;
}
@media only screen and (max-width: 980px) {
  body.open-video div.video-modal {
    width: 90%;
  }
}
body.open-video div.video-overlay {
  visibility: visible;
  opacity: 1;
}

body.close-video div.video-modal {
  animation: closeVideo 0.5s forwards;
  background: #FFF;
}
@media only screen and (max-width: 980px) {
  body.close-video div.video-modal {
    animation: closeVideo980 0.5s forwards;
  }
}
@media screen and (max-width: 580px) {
  body.close-video div.video-modal {
    animation: closeVideoMobile 0.5s forwards;
  }
}
body.close-video div.video-modal .video-modal-content {
  background: #FFF;
}
body.close-video div.video-modal .video-modal-content iframe {
  opacity: 0;
}
body.close-video div.video-modal .video-modal-content video {
  opacity: 0;
}

@keyframes closeVideo {
  0% {
    height: 500px;
  }
  50% {
    height: 5px;
    width: 900px;
  }
  60% {
    height: 5px;
    width: 900px;
  }
  100% {
    width: 0px;
    height: 5px;
  }
}
@keyframes closeVideo980 {
  0% {
    height: 400px;
  }
  50% {
    height: 5px;
    width: 90%;
  }
  60% {
    height: 5px;
    width: 90%;
  }
  100% {
    width: 0px;
    height: 5px;
  }
}
@keyframes closeVideoMobile {
  0% {
    height: 300px;
  }
  50% {
    height: 5px;
    width: 90%;
  }
  60% {
    height: 5px;
    width: 90%;
  }
  100% {
    width: 0px;
    height: 5px;
  }
}
div.video-modal {
  width: 0px;
  height: 500px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  position: fixed;
  background: #000;
  border-radius: 5px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  z-index: 12;
  transition: all 0.4s ease;
  visibility: hidden;
  overflow: hidden;
}
@media only screen and (max-width: 980px) {
  div.video-modal {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 580px) {
  div.video-modal {
    height: 300px;
  }
}
div.video-modal .video-modal-content {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  background: #000;
}
div.video-modal .video-modal-content iframe {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}
div.video-modal .video-modal-content video {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

div.video-overlay {
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 11;
  left: 0px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}

.mtt-archive {
  margin-top: 32px;
}
.mtt-archive__filter {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.mtt-archive__filter p {
  margin-right: 32px;
  font-weight: 700;
  margin-bottom: 0px;
  flex-shrink: 0;
}
.mtt-archive__filter select {
  margin-top: 0px;
  width: auto;
  padding-right: 32px !important;
}
.mtt-archive__filter select.small {
  width: 180px;
}
.mtt-archive__filter select:not(:last-child) {
  margin-right: 8px;
}
.mtt-archive h3 {
  margin: 10px 0 20px;
  font-size: 21px;
  font-size: 1.3125rem;
}
.mtt-archive__no-posts {
  font-size: 14px;
  font-size: 0.875rem;
  background-color: #8ebe8a;
  color: #fff;
  margin: 10px 0 20px;
  padding: 20px;
}
.mtt-archive__topbar {
  background: #EFEEEB;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px;
}
.mtt-archive__topbar p {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0px;
}
.mtt-archive__topbar button {
  border: none;
  background: none;
  padding: 0px;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}
.mtt-archive__topbar button[value=ASC] img {
  transform: rotate(180deg);
}
.mtt-archive__topbar button img {
  margin-left: 5px;
  width: 13px;
  height: 14px;
}
.mtt-archive__grid {
  display: flex;
  flex-direction: column;
  padding-left: 0px !important;
}
.mtt-archive__grid li {
  list-style: none;
  padding-left: 0px !important;
}
.mtt-archive__grid li:before {
  display: none !important;
}
.mtt-archive__grid li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 19px;
  transition: opacity 0.2s ease;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  text-decoration: none !important;
}
.mtt-archive__grid li a:hover {
  opacity: 0.8;
}
.mtt-archive__grid li a .col.archive-item__left {
  margin-right: 8px;
}
.mtt-archive__grid li a .col h4 {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
}
.mtt-archive__grid li a .col p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 100;
  margin-top: 8px;
  margin-bottom: 0px;
}
.mtt-archive__grid li a .col span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}
.mtt-archive__pagination {
  display: flex;
  justify-content: center;
  margin: 10px 0px;
}
.mtt-archive__pagination li {
  list-style: none;
}
.mtt-archive__pagination li:before {
  display: none !important;
}
.mtt-archive__pagination li button {
  background-color: #fff;
  border-radius: 50%;
  line-height: 45px;
  border: 2px solid #e0ded8;
  color: #333;
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin: 0px 5px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  transition: border 0.2s ease-in;
}
.mtt-archive__pagination li button.active {
  border-color: #E16F2A;
  cursor: default;
}
.mtt-archive__pagination li button:hover {
  border-color: #E16F2A;
}
.mtt-archive__pagination li button.small-font {
  font-size: 11px;
  font-size: 0.6875rem;
}
.mtt-archive__button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tagembed-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: initial;
  position: relative;
  background: #EFEEEB;
}

.mtt-employees-archive__grid {
  display: flex;
  flex-direction: column;
  padding-left: 0px !important;
}
.mtt-employees-archive__grid .employee {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 25px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .mtt-employees-archive__grid .employee {
    box-shadow: none;
  }
}
.mtt-employees-archive__grid .employee:before {
  display: none;
}
.mtt-employees-archive__grid .employee:nth-child(odd) {
  background: #EFEEEB;
}
@media only screen and (max-width: 1000px) {
  .mtt-employees-archive__grid .employee:nth-child(odd):after, .mtt-employees-archive__grid .employee:nth-child(odd):before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background: #EFEEEB;
  }
  .mtt-employees-archive__grid .employee:nth-child(odd):after {
    left: -100%;
  }
  .mtt-employees-archive__grid .employee:nth-child(odd):before {
    right: -100%;
  }
}
.mtt-employees-archive__grid .employee__contact-info {
  margin-right: 16px;
}
.mtt-employees-archive__grid .employee__contact-info h3 {
  font-size: 21px;
  font-size: 1.3125rem;
  margin-top: 0px;
  margin-bottom: 24px;
}
.mtt-employees-archive__grid .employee__contact-info p, .mtt-employees-archive__grid .employee__contact-info span, .mtt-employees-archive__grid .employee__contact-info a {
  font-size: 14px;
  font-size: 0.875rem;
}
.mtt-employees-archive__grid .employee__contact-info p {
  margin-bottom: 4px;
}
.mtt-employees-archive__grid .employee__contact-info p span {
  margin-right: 4px;
}
.mtt-employees-archive__grid .employee__content {
  font-size: 14px;
  font-size: 0.875rem;
}
.mtt-employees-archive__grid .employee__image img {
  width: 140px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .mtt-employees-archive__grid .employee__image img {
    width: 80px;
  }
}

.mtt-cart-steps {
  list-style: none;
  position: relative;
  z-index: 2;
}

.mtt-cart-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 72px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 1280px) {
  .mtt-cart-step {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-cart-step {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-cart-step::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 13px;
  border: 3px solid #FFF;
  display: block;
  box-sizing: border-box;
  margin-right: 16px;
  background: #002D4B;
  position: relative;
  z-index: 2;
}
.mtt-cart-step::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: 13px;
  width: 3px;
  height: 100px;
  z-index: 1;
  background: #FFF;
}
.mtt-cart-step:first-child {
  margin-top: 0;
}
.mtt-cart-step:first-child::after {
  display: none;
}
.mtt-cart-step--active::before {
  background: #E16F2A;
  border-color: #E16F2A;
}
.mtt-cart-step--active::after {
  background: #E16F2A;
}

/* Payment methods */
.mtt-payment-methods {
  padding: 32px;
  border: 1px solid rgba(112, 112, 112, 0.1);
}
.mtt-payment-methods__title {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  font-weight: 700;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}
.mtt-payment-methods__grid .payment-method:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.payment-method input + span {
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}
.payment-method__description {
  color: #000;
  padding-left: 32px;
  margin-top: 4px;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
}
.payment-method .input-wrap {
  margin: 0;
  padding-left: 32px;
}

/* Order info */
.mtt-order-row {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
}
.mtt-order-row:first-child {
  padding-top: 0;
}
.mtt-order-row:not(:last-child) {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.mtt-order-item__title {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
}
.mtt-order-item__text {
  margin-top: 4px;
  font-size: 14px;
  font-size: 0.875rem;
}
.mtt-order-item__text img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 12px;
}
.mtt-order-item--half {
  width: calc(50% - 16px);
}
.mtt-order-item--third {
  width: calc(33.3333333333% - 16px);
}
@media only screen and (max-width: 500px) {
  .mtt-order-item {
    width: 100% !important;
  }
  .mtt-order-item--half:not(:last-child), .mtt-order-item--third:not(:last-child) {
    margin-bottom: 16px;
  }
}

.dropzone {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-width: 2px;
  border-radius: 2px;
  border-color: #eeeeee;
  border-style: dashed;
  background-color: #fafafa;
  color: #bdbdbd;
  outline: none;
  transition: border 0.24s ease-in-out;
}
.dropzone + p {
  margin-top: 16px;
}

.image-preview-wrapper {
  position: relative;
  height: 400px;
  width: 400px;
  background-position: center;
  background-size: cover;
}
.image-preview-wrapper button.remove {
  position: absolute;
  top: 1em;
  right: 1em;
  cursor: pointer;
}
.image-preview-wrapper footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 0.3em 1em;
  font-size: 0.8em;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page .react-datepicker {
  display: flex;
}
.page .react-datepicker__input-container input {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBkYXRhLW5hbWU9Ikdyb3VwIDIyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS40MDcgMTYiPjxwYXRoIGRhdGEtbmFtZT0iUGF0aCAzIiBkPSJNMi4xMjEgMTZoMTEuMTY1YTIuMTIzIDIuMTIzIDAgMCAwIDIuMTI2LTIuMTIxVjMuMzA3YTIuMTIzIDIuMTIzIDAgMCAwLTIuMTIxLTIuMTIxaC0uODQxVi41OTNhLjU5My41OTMgMCAwIDAtMS4xODUgMHYuNTkzSDQuMTQ4Vi41OTNhLjU5My41OTMgMCAwIDAtMS4xODUgMHYuNTkzaC0uODQyQTIuMTIzIDIuMTIzIDAgMCAwIDAgMy4zMDd2MTAuNTcyQTIuMTIzIDIuMTIzIDAgMCAwIDIuMTIxIDE2Wk0xLjE4NSAzLjMwN2EuOTM4LjkzOCAwIDAgMSAuOTM2LS45MzZoLjg0MXYuNTkzYS41OTMuNTkzIDAgMSAwIDEuMTg1IDBWMi4zN2g3LjExMXYuNTkzYS41OTMuNTkzIDAgMCAwIDEuMTg1IDBWMi4zN2guODQxYS45MzguOTM4IDAgMCAxIC45MzYuOTM2djEwLjU3M2EuOTM4LjkzOCAwIDAgMS0uOTM2LjkzNkgyLjEyMWEuOTM4LjkzOCAwIDAgMS0uOTM2LS45MzZaIi8+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgNSIgY3g9Ii43NDEiIGN5PSIuNzQxIiByPSIuNzQxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjU1NiA1LjMzMykiLz48Y2lyY2xlIGRhdGEtbmFtZT0iRWxsaXBzZSA2IiBjeD0iLjc0MSIgY3k9Ii43NDEiIHI9Ii43NDEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYuODE1IDUuMzMzKSIvPjxjaXJjbGUgZGF0YS1uYW1lPSJFbGxpcHNlIDciIGN4PSIuNzQxIiBjeT0iLjc0MSIgcj0iLjc0MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDc0IDUuMzMzKSIvPjxjaXJjbGUgZGF0YS1uYW1lPSJFbGxpcHNlIDgiIGN4PSIuNzQxIiBjeT0iLjc0MSIgcj0iLjc0MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy41NTYgOC4yOTYpIi8+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgOSIgY3g9Ii43NDEiIGN5PSIuNzQxIiByPSIuNzQxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2LjgxNSA4LjI5NikiLz48Y2lyY2xlIGRhdGEtbmFtZT0iRWxsaXBzZSAxMCIgY3g9Ii43NDEiIGN5PSIuNzQxIiByPSIuNzQxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4wNzQgOC4yOTYpIi8+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTEiIGN4PSIuNzQxIiBjeT0iLjc0MSIgcj0iLjc0MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy41NTYgMTEuMjU5KSIvPjxjaXJjbGUgZGF0YS1uYW1lPSJFbGxpcHNlIDEyIiBjeD0iLjc0MSIgY3k9Ii43NDEiIHI9Ii43NDEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYuODE1IDExLjI1OSkiLz48Y2lyY2xlIGRhdGEtbmFtZT0iRWxsaXBzZSAxMyIgY3g9Ii43NDEiIGN5PSIuNzQxIiByPSIuNzQxIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMC4wNzQgMTEuMjU5KSIvPjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: 15.41px 16px;
  background-position: left 16px center;
  padding-left: 48px !important;
}

.select-all-cities {
  margin-top: 16px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  padding-bottom: 16px;
  margin-bottom: 8px;
}

.checkbox-accordion {
  overflow: hidden;
  padding-top: 16px;
  transition: max-height 0.2s ease;
}
.checkbox-accordion__button {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
  margin-top: 16px;
  padding-top: 16px;
}
.checkbox-accordion__button button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: "museo-sans", sans-serif;
  color: #2B2B2B;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
.checkbox-accordion__button button svg {
  display: block;
  margin: 12px auto 0;
  height: 8px;
  width: 14.667px;
  transition: transform 0.2s ease;
}

/* WIDGETS */
.mtt-cover {
  height: 305px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1160px) {
  .mtt-cover {
    height: 250px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-cover {
    height: 200px;
  }
}
.mtt-cover__image {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.mtt-cover__image img {
  -o-object-position: center;
     object-position: center;
  display: block;
}

.mtt-link-boxes-icons {
  background: #EFEEEB;
  overflow: hidden;
  position: relative;
}
.mtt-link-boxes-icons .dots {
  width: 678px;
  height: 631px;
  position: absolute;
  top: -138px;
  right: -23px;
  opacity: 0.3;
}
.mtt-link-boxes-icons__inner {
  padding: 56px 0px 80px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .mtt-link-boxes-icons__inner {
    padding: 56px 0px;
  }
}
.mtt-link-boxes-icons__boxes {
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
}
.mtt-link-boxes-icons__boxes--three .mtt-link-boxes-icons__box {
  width: calc(33.3333333333% - 24px);
}
@media screen and (max-width: 1160px) {
  .mtt-link-boxes-icons__boxes--three .mtt-link-boxes-icons__box {
    width: calc(33.3333333333% - 16px);
    margin: 8px;
  }
}
@media only screen and (max-width: 980px) {
  .mtt-link-boxes-icons__boxes--three .mtt-link-boxes-icons__box {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes-icons__boxes--three .mtt-link-boxes-icons__box {
    width: 100%;
    margin: 12px 0;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-link-boxes-icons__boxes {
    margin: -8px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes-icons__boxes {
    margin: -8px 0px;
  }
}
.mtt-link-boxes-icons__box {
  padding: 40px 50px 48px 50px;
  background: #FFF;
  border-radius: 4px;
  margin: 12px;
  width: calc(25% - 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.2s ease-in-out;
}
@media only screen and (max-width: 1350px) {
  .mtt-link-boxes-icons__box {
    width: calc(33.3333333333% - 24px);
  }
}
@media screen and (max-width: 1160px) {
  .mtt-link-boxes-icons__box {
    width: calc(33.3333333333% - 16px);
    margin: 8px;
  }
}
@media only screen and (max-width: 980px) {
  .mtt-link-boxes-icons__box {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes-icons__box {
    width: 100%;
    margin: 12px 0px;
  }
}
.mtt-link-boxes-icons__box:hover {
  background: #002D4B;
}
.mtt-link-boxes-icons__box:hover svg path, .mtt-link-boxes-icons__box:hover svg rect {
  fill: #FFF;
}
.mtt-link-boxes-icons__box:hover .title {
  color: #FFF;
}
.mtt-link-boxes-icons__box:hover a {
  color: #FFF;
}
.mtt-link-boxes-icons__box a.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
}
.mtt-link-boxes-icons__box a.icon:hover {
  opacity: 0.6;
}
.mtt-link-boxes-icons__box img, .mtt-link-boxes-icons__box svg {
  display: block;
  max-height: 50px;
  height: 100%;
  width: auto;
}
.mtt-link-boxes-icons__box img path, .mtt-link-boxes-icons__box img rect, .mtt-link-boxes-icons__box svg path, .mtt-link-boxes-icons__box svg rect {
  transition: fill 0.2s ease-in-out;
}
.mtt-link-boxes-icons__box a {
  transition: opacity 0.2s ease-in-out, color 0.2s ease-in-out;
}
.mtt-link-boxes-icons__box .title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #002D4B;
  display: block;
  margin-bottom: 24px;
  font-weight: 800;
}
@media screen and (max-width: 1280px) {
  .mtt-link-boxes-icons__box .title {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes-icons__box .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-link-boxes-icons__box .title:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.mtt-link-boxes-icons__box--links {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mtt-link-boxes-icons__box--links a {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #002D4B;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.mtt-link-boxes-icons__box--links a:not(:last-child) {
  margin-bottom: 24px;
}
.mtt-link-boxes-icons__box--links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.mtt-link-boxes {
  background: #EFEEEB;
  overflow: hidden;
  position: relative;
}
.mtt-link-boxes .dots {
  width: 678px;
  height: 631px;
  position: absolute;
  top: -138px;
  right: -23px;
  opacity: 0.3;
}
.mtt-link-boxes__inner {
  padding: 66px 0px 120px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .mtt-link-boxes__inner {
    padding: 64px 0px;
  }
}
.mtt-link-boxes__boxes {
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1160px) {
  .mtt-link-boxes__boxes {
    margin: -8px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes__boxes {
    margin: -8px 0px;
  }
}
.mtt-link-boxes__box {
  padding: 40px 40px 84px 40px;
  background: #FFF;
  border-radius: 4px;
  margin: 12px;
  width: calc(25% - 24px);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 1350px) {
  .mtt-link-boxes__box {
    width: calc(33.3333333333% - 24px);
  }
}
@media screen and (max-width: 1160px) {
  .mtt-link-boxes__box {
    width: calc(33.3333333333% - 16px);
    margin: 8px;
  }
}
@media only screen and (max-width: 980px) {
  .mtt-link-boxes__box {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes__box {
    width: 100%;
    margin: 12px 0px;
  }
}
.mtt-link-boxes__box p {
  color: #262626;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.66;
}
.mtt-link-boxes__box .title {
  font-size: 20px;
  font-size: 1.25rem;
  color: #002D4B;
  display: block;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .mtt-link-boxes__box .title {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-boxes__box .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-link-boxes__box .title:after {
  content: "";
  display: inline-block;
  margin: 16px 0px;
  width: 32px;
  height: 2px;
  background: #E16F2A;
}
.mtt-link-boxes__box .button {
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.mtt-search-cover {
  height: auto;
  width: 100%;
  position: relative;
}
.mtt-search-cover__image {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
.mtt-search-cover__image img {
  -o-object-position: bottom;
     object-position: bottom;
  display: block;
}
.mtt-search-cover__inner {
  position: relative;
  padding: 32px 0px 48px 209px;
}
@media screen and (max-width: 1160px) {
  .mtt-search-cover__inner {
    padding: 32px 0px;
  }
}

.mtt-link-image-boxes {
  background: #EFEEEB;
  overflow: hidden;
  position: relative;
}
.mtt-link-image-boxes .dots {
  width: 678px;
  height: 631px;
  position: absolute;
  top: -138px;
  right: -23px;
  opacity: 0.3;
}
.mtt-link-image-boxes__inner {
  padding: 73px 0px 120px 0px;
  position: relative;
}
.mtt-link-image-boxes__boxes {
  margin: -12px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1160px) {
  .mtt-link-image-boxes__boxes {
    margin: -8px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-image-boxes__boxes {
    margin: -8px 0px;
  }
}
.mtt-link-image-boxes__box {
  background: #FFF;
  border-radius: 4px;
  margin: 12px;
  width: calc(25% - 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 20%;
}
@media only screen and (max-width: 1350px) {
  .mtt-link-image-boxes__box {
    width: calc(33.3333333333% - 24px);
  }
}
@media screen and (max-width: 1160px) {
  .mtt-link-image-boxes__box {
    width: calc(33.3333333333% - 16px);
    margin: 8px;
    padding-bottom: 25%;
  }
}
@media only screen and (max-width: 980px) {
  .mtt-link-image-boxes__box {
    width: calc(50% - 16px);
    padding-bottom: 30%;
  }
}
@media only screen and (max-width: 750px) {
  .mtt-link-image-boxes__box {
    padding-bottom: 35%;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-image-boxes__box {
    width: 100%;
    margin: 12px 0px;
    padding-bottom: 60%;
  }
}
.mtt-link-image-boxes__box:hover:before {
  opacity: 0.3;
}
.mtt-link-image-boxes__box:hover img {
  transform: scale(1.04);
}
.mtt-link-image-boxes__box:hover .text .title:after {
  margin-left: 18px;
}
.mtt-link-image-boxes__box img {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: transform 0.4s ease-in-out;
}
.mtt-link-image-boxes__box:after {
  content: "";
  opacity: 0.7;
  position: absolute;
  width: 100%;
  height: 90%;
  bottom: 0px;
  left: 0px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}
.mtt-link-image-boxes__box:before {
  content: "";
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0px;
  background: #000;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
.mtt-link-image-boxes__box .text {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 24px;
  width: calc(100% - 60px);
  display: block;
}
.mtt-link-image-boxes__box .text .title {
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #FFF;
  display: block;
  font-weight: 800;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .mtt-link-image-boxes__box .text .title {
    font-size: 19px;
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-link-image-boxes__box .text .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-link-image-boxes__box .text .title:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  margin-left: 16px;
  background-image: url("../../img/icons/arrow-right-white.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: margin-left 0.2s ease-in-out;
  transform: translateY(-1px);
  flex-shrink: 0;
  position: absolute;
  bottom: 8px;
}

.mtt-breaking-bar {
  background: #E16F2A;
  display: block;
  transition: background 0.2s ease-in-out;
}
.mtt-breaking-bar.open-breaking-modal {
  cursor: pointer;
}
.mtt-breaking-bar.open-breaking-modal:hover {
  background: rgb(226.8888888889, 120.0666666667, 55.4111111111);
}
.mtt-breaking-bar__inner {
  padding: 15px 0px;
  display: flex;
  justify-content: center;
}
.mtt-breaking-bar__inner p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.mtt-breaking-bar__inner p, .mtt-breaking-bar__inner .button {
  color: #FFF;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
}
.mtt-breaking-bar__inner .button {
  margin-left: 16px;
  flex-shrink: 0;
}

body.search .mtt-breadcrumbs-bar {
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.mtt-template-content__breadcrumbs {
  width: 100%;
}

.mtt-breadcrumbs-bar__inner, .mtt-template-content__breadcrumbs {
  padding-left: 197px;
  height: 106px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  background: #FFF;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}
@media screen and (max-width: 1280px) {
  .mtt-breadcrumbs-bar__inner, .mtt-template-content__breadcrumbs {
    height: 117px;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-breadcrumbs-bar__inner, .mtt-template-content__breadcrumbs {
    height: auto;
    padding: 16px 32px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-breadcrumbs-bar__inner, .mtt-template-content__breadcrumbs {
    width: 112%;
    margin-left: -6%;
  }
}
.mtt-breadcrumbs-bar__inner ul, .mtt-template-content__breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
}
.mtt-breadcrumbs-bar__inner ul li, .mtt-template-content__breadcrumbs ul li {
  list-style: none;
  margin-right: 16px;
}
@media screen and (max-width: 580px) {
  .mtt-breadcrumbs-bar__inner ul li, .mtt-template-content__breadcrumbs ul li {
    line-height: 1;
  }
}
.mtt-breadcrumbs-bar__inner ul li:last-child a, .mtt-template-content__breadcrumbs ul li:last-child a {
  font-weight: 700;
  width: 450px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mtt-breadcrumbs-bar__inner ul li:last-child a:after, .mtt-template-content__breadcrumbs ul li:last-child a:after {
  display: none !important;
}
.mtt-breadcrumbs-bar__inner ul li a, .mtt-template-content__breadcrumbs ul li a {
  font-size: 20px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  color: #002D4B;
  font-weight: 100;
}
@media screen and (max-width: 1280px) {
  .mtt-breadcrumbs-bar__inner ul li a, .mtt-template-content__breadcrumbs ul li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-breadcrumbs-bar__inner ul li a, .mtt-template-content__breadcrumbs ul li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.mtt-breadcrumbs-bar__inner ul li a.active, .mtt-template-content__breadcrumbs ul li a.active {
  font-weight: 700;
}
.mtt-breadcrumbs-bar__inner ul li a:not(.active):after, .mtt-template-content__breadcrumbs ul li a:not(.active):after {
  content: "";
  background: url("../../img/icons/arrow-right-orange.svg");
  display: inline-block;
  margin-left: 16px;
  width: 4px;
  height: 8px;
  background-position: center center;
  background-size: cover;
  margin-bottom: -2px;
}

@media screen and (max-width: 1160px) {
  .mtt-breadcrumbs-bar__inner {
    padding: 16px 0px;
  }
}
@media only screen and (max-width: 1000px) {
  .mtt-breadcrumbs-bar__inner {
    width: 90%;
    margin-left: 0%;
    margin: 0 auto;
  }
}

.mtt-image-video-banner-widget {
  position: relative;
}
.mtt-image-video-banner-widget__inner {
  position: relative;
  z-index: 3;
  padding: 178px 0;
  width: 90%;
}
@media only screen and (max-width: 1800px) {
  .mtt-image-video-banner-widget__inner {
    padding: 150px 0;
  }
}
@media screen and (max-width: 1280px) {
  .mtt-image-video-banner-widget__inner {
    padding: 125px 0;
  }
}
@media screen and (max-width: 960px) {
  .mtt-image-video-banner-widget__inner {
    padding: 100px 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-image-video-banner-widget__inner {
    padding: 75px 0;
  }
}
@media only screen and (max-width: 400px) {
  .mtt-image-video-banner-widget__inner {
    padding: 50px 0;
  }
}
.mtt-image-video-banner-widget__inner.empty {
  padding: 250px;
}
@media screen and (max-width: 1280px) {
  .mtt-image-video-banner-widget__inner.empty {
    padding: 225px 0;
  }
}
@media screen and (max-width: 960px) {
  .mtt-image-video-banner-widget__inner.empty {
    padding: 200px 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-image-video-banner-widget__inner.empty {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 400px) {
  .mtt-image-video-banner-widget__inner.empty {
    padding: 100px 0;
  }
}
.mtt-image-video-banner-widget__text-container {
  max-width: 486px;
}
.mtt-image-video-banner-widget__text-container .button-section {
  margin-top: 24px;
}
@media screen and (max-width: 1280px) {
  .mtt-image-video-banner-widget__text-container .button-section {
    margin-top: 16px;
  }
}
.mtt-image-video-banner-widget__tagline {
  text-transform: uppercase;
  color: #FFF;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.mtt-image-video-banner-widget__title {
  color: #FFF;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
}
@media screen and (max-width: 580px) {
  .mtt-image-video-banner-widget__title {
    hyphens: auto;
  }
  .mtt-image-video-banner-widget__title br {
    display: none;
  }
}
.mtt-image-video-banner-widget__text {
  margin-top: 16px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.62;
  color: #FFF;
  font-weight: 300;
}
.mtt-image-video-banner-widget .button-section {
  margin-bottom: -8px;
}
.mtt-image-video-banner-widget__image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.mtt-image-video-banner-widget__overlay {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #2B2B2B;
  z-index: 2;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 1160px) {
  .mtt-image-video-banner-widget__overlay.desktop {
    display: none;
  }
}
@media screen and (min-width: 1161px) {
  .mtt-image-video-banner-widget__overlay.tablet {
    display: none;
  }
}
.mtt-image-video-banner-widget__video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}
.mtt-image-video-banner-widget__video-container .cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  transition: opacity 0.5s ease;
}
.mtt-image-video-banner-widget__video-container .cover-overlay.hide {
  opacity: 0;
}
.mtt-image-video-banner-widget__video-container .cover-player {
  opacity: 1;
  transition: opacity 0.5s ease;
}
.mtt-image-video-banner-widget__video-container .cover-player.hide {
  opacity: 0;
}
.mtt-image-video-banner-widget__video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mtt-image-video-banner-widget__video-container video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.mtt-news-slider {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: #EFEEEB;
}
.mtt-news-slider__inner {
  position: relative;
  z-index: 3;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .mtt-news-slider__inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-slider__inner {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 400px) {
  .mtt-news-slider__inner {
    padding: 50px 0;
  }
}
.mtt-news-slider__top-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 580px) {
  .mtt-news-slider__top-wrapper {
    display: block;
  }
}
.mtt-news-slider__top-wrapper .mtt-filter {
  justify-content: space-between;
  flex-shrink: 0;
}
.mtt-news-slider__top-wrapper .mtt-filter .mtt-filter__container .mtt-filter__arrows {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.mtt-news-slider__top-wrapper .mtt-filter a.button {
  margin-bottom: 24px;
}
.mtt-news-slider__title {
  line-height: 1.3;
  font-weight: 500;
  max-width: 460px;
}
@media screen and (max-width: 760px) {
  .mtt-news-slider__title {
    max-width: 390px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-news-slider__title {
    display: block;
    margin-bottom: 24px;
  }
}
.mtt-news-slider__title span {
  font-weight: 800;
}
.mtt-news-slider__title.title-line {
  padding-top: 16px;
  position: relative;
}
.mtt-news-slider__title.title-line:before {
  content: "";
  height: 2px;
  width: 32px;
  position: absolute;
  top: 0;
  left: 0;
  background: #E16F2A;
}
.mtt-news-slider__target {
  margin-top: 32px;
}
.mtt-news-slider .swiper-container {
  overflow: visible;
}

.mtt-events-slider {
  position: relative;
  z-index: 6;
  overflow: hidden;
  background: #002D4B;
}
.mtt-events-slider__inner {
  position: relative;
  z-index: 3;
  padding: 100px 0;
}
@media screen and (max-width: 960px) {
  .mtt-events-slider__inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-events-slider__inner {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 400px) {
  .mtt-events-slider__inner {
    padding: 50px 0;
  }
}
.mtt-events-slider__top-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 580px) {
  .mtt-events-slider__top-wrapper {
    display: block;
  }
}
.mtt-events-slider__top-wrapper .mtt-filter__arrows {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.mtt-events-slider__top-wrapper .mtt-filter__arrows .swiper-button-prev, .mtt-events-slider__top-wrapper .mtt-filter__arrows .swiper-button-next {
  border: 1px solid #FFF;
  border-radius: 1px;
  background: url("../../img/icons/arrow-right-white.svg");
  background-position: center center;
  background-size: 7.41px 12px;
  background-repeat: no-repeat;
}
.mtt-events-slider__top-wrapper .mtt-filter__arrows .swiper-button-prev:not(:last-child), .mtt-events-slider__top-wrapper .mtt-filter__arrows .swiper-button-next:not(:last-child) {
  margin-right: 4px;
}
.mtt-events-slider__top-wrapper .mtt-filter__arrows .button {
  border: 1px solid #FFF;
  color: #FFF;
  padding: 15px 24px;
  margin-right: 4px;
  border-radius: 1px;
}
.mtt-events-slider__top-wrapper .mtt-filter__arrows .button:after {
  display: none;
}
.mtt-events-slider__title {
  line-height: 1.3;
  font-weight: 500;
  max-width: 465px;
  color: #FFF;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 760px) {
  .mtt-events-slider__title {
    max-width: 390px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-events-slider__title {
    display: block;
    margin-bottom: 24px;
  }
}
.mtt-events-slider__target {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  margin: 24px -12px !important;
}
@media screen and (max-width: 1160px) {
  .mtt-events-slider__target {
    margin: 24px -8px !important;
  }
}
.mtt-events-slider__target .mtt-events-card.swiper-slide {
  height: auto;
}
.mtt-events-slider__target .mtt-events-card__text-container {
  padding: 24px 31px 88px;
}
.mtt-events-slider__target .mtt-events-card__tag-bar {
  position: absolute;
  width: calc(100% - 62px);
  bottom: 24px;
  left: 31px;
}
.mtt-events-slider .swiper-container {
  overflow: visible;
}
.mtt-events-slider .swiper-container .mtt-events-card {
  margin: 0px;
  border: none;
}
.mtt-events-slider .dots {
  width: 680px;
  height: 630px;
  left: -97px;
  bottom: -136px;
  opacity: 0.04;
  position: absolute;
}

.mtt-text-image-widget {
  background: #FFF;
  position: relative;
  overflow: hidden;
}
.mtt-text-image-widget__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 104px 0;
}
@media screen and (max-width: 1280px) {
  .mtt-text-image-widget__inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 1160px) {
  .mtt-text-image-widget__inner {
    padding: 70px 0;
  }
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__inner {
    display: block;
    padding: 60px 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__inner {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 961px) {
  .mtt-text-image-widget__inner.halfhalf .mtt-text-image-widget__text-container, .mtt-text-image-widget__inner.halfhalf .mtt-text-image-widget__image-container {
    width: 50%;
  }
}
.mtt-text-image-widget__text-container {
  width: 47%;
  padding: 20px 0;
  padding-right: 111px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1800px) {
  .mtt-text-image-widget__text-container {
    padding-right: 90px;
  }
}
@media only screen and (max-width: 1400px) {
  .mtt-text-image-widget__text-container {
    padding-right: 80px;
  }
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__text-container {
    padding: 0;
    width: 100%;
    max-width: 750px;
    margin-right: 0;
    margin-bottom: 40px;
    padding-right: 0;
  }
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__text-container {
    padding: 0;
  }
}
.mtt-text-image-widget__text-content {
  max-width: 600px;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__text-content {
    max-width: 100%;
  }
}
.mtt-text-image-widget__title {
  line-height: 1.3;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__title {
    margin-bottom: 24px;
  }
}
.mtt-text-image-widget__title.title-line {
  padding-top: 16px;
  position: relative;
}
.mtt-text-image-widget__title.title-line:before {
  content: "";
  height: 2px;
  width: 32px;
  position: absolute;
  top: 0;
  left: 0;
  background: #E16F2A;
}
.mtt-text-image-widget .button-section {
  margin-top: 32px;
  margin-bottom: -8px;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget .button-section {
    margin-top: 16px;
  }
}
.mtt-text-image-widget__text {
  margin-top: 24px;
  color: #2B2B2B;
}
@media screen and (max-width: 1280px) {
  .mtt-text-image-widget__text {
    margin-top: 16px;
  }
}
.mtt-text-image-widget__text h2 {
  color: #2B2B2B;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.008em;
  line-height: 1.35;
  margin-top: 16px;
}
@media screen and (max-width: 1280px) {
  .mtt-text-image-widget__text h2 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__text h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.mtt-text-image-widget__text h3 {
  color: #2B2B2B;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.008em;
  line-height: 1.35;
  margin-top: 8px;
}
@media screen and (max-width: 1280px) {
  .mtt-text-image-widget__text h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__text h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-text-image-widget__text a {
  color: #002D4B;
}
.mtt-text-image-widget__text a:after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  margin-left: 10px;
  background-image: url("../../img/icons/arrow-right-dark.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: margin-left 0.2s ease-in-out;
  flex-shrink: 0;
}
.mtt-text-image-widget__text a:hover {
  color: rgb(0, 57.24, 95.4);
}
.mtt-text-image-widget__text a:hover:after {
  margin-left: 12px;
}
.mtt-text-image-widget__text p {
  position: relative;
  letter-spacing: -0.01em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
}
.mtt-text-image-widget__text p:empty {
  display: none;
}
.mtt-text-image-widget__text p:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__text p:not(:first-of-type) {
    margin-top: 10px;
  }
}
.mtt-text-image-widget__text.list-style-default ul, .mtt-text-image-widget__text.list-style-default ol {
  font-size: 16px;
  font-size: 1rem;
  line-height: inherit;
  letter-spacing: inherit;
  list-style: none;
  margin-top: 24px;
  margin-bottom: 24px;
  color: #2B2B2B;
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__text.list-style-default ul, .mtt-text-image-widget__text.list-style-default ol {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.mtt-text-image-widget__text.list-style-default ul li, .mtt-text-image-widget__text.list-style-default ol li {
  padding-left: 26px;
  position: relative;
}
.mtt-text-image-widget__text.list-style-default ul li:not(:first-of-type), .mtt-text-image-widget__text.list-style-default ol li:not(:first-of-type) {
  margin-top: 8px;
}
.mtt-text-image-widget__text.list-style-default ul li:before, .mtt-text-image-widget__text.list-style-default ol li:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
  background-image: url("../../img/icons/checkmark-dark.svg");
  background-position: center;
  background-size: 16px;
  background-repeat: no-repeat;
}
.mtt-text-image-widget__text.list-style-dot ul {
  font-size: 16px;
  font-size: 1rem;
  line-height: inherit;
  letter-spacing: inherit;
  list-style: none;
  margin-top: 24px;
  margin-bottom: 24px;
  color: #2B2B2B;
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__text.list-style-dot ul {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.mtt-text-image-widget__text.list-style-dot ul li {
  padding-left: 24px;
  position: relative;
}
.mtt-text-image-widget__text.list-style-dot ul li:not(:first-of-type) {
  margin-top: 8px;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__text.list-style-dot ul li {
    padding-left: 16px;
  }
}
.mtt-text-image-widget__text.list-style-dot ul li:before {
  content: "";
  background-image: none;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #E16F2A;
  border-radius: 50%;
  top: 9px;
  left: 0;
}
.mtt-text-image-widget__text.list-style-dot ol {
  list-style-position: inside;
}
.mtt-text-image-widget__text.list-style-dot ol li:not(:first-of-type) {
  margin-top: 8px;
}
.mtt-text-image-widget__text p:first-child, .mtt-text-image-widget__text h2:first-child, .mtt-text-image-widget__text h3:first-child, .mtt-text-image-widget__text h4:first-child, .mtt-text-image-widget__text h5:first-child, .mtt-text-image-widget__text h6:first-child, .mtt-text-image-widget__text ul:first-child, .mtt-text-image-widget__text ol:first-child {
  margin-top: 0px !important;
}
.mtt-text-image-widget__text p:last-child, .mtt-text-image-widget__text h2:last-child, .mtt-text-image-widget__text h3:last-child, .mtt-text-image-widget__text h4:last-child, .mtt-text-image-widget__text h5:last-child, .mtt-text-image-widget__text h6:last-child, .mtt-text-image-widget__text ul:last-child, .mtt-text-image-widget__text ol:last-child {
  margin-bottom: 0 !important;
}
.mtt-text-image-widget__image-container {
  width: 53%;
  position: relative;
}
.mtt-text-image-widget__image-container.with-graphics svg {
  display: block;
}
@media only screen and (max-width: 450px) {
  .mtt-text-image-widget__image-container.with-graphics svg {
    display: none;
  }
}
.mtt-text-image-widget__image-container.two-images {
  padding-bottom: 50px;
}
@media only screen and (max-width: 400px) {
  .mtt-text-image-widget__image-container.two-images {
    padding-bottom: 0;
  }
}
.mtt-text-image-widget__image-container svg {
  display: none;
  position: absolute;
  top: 0;
  right: -144px;
  pointer-events: none;
}
@media only screen and (max-width: 1200px) {
  .mtt-text-image-widget__image-container svg {
    right: -125px;
    max-width: 500px;
    top: -40px;
  }
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container svg {
    right: -100px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__image-container svg {
    right: -75px;
    max-width: 75%;
    top: -80px;
  }
}
.mtt-text-image-widget__image-container .image {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container .image {
    justify-content: flex-start;
    width: calc(100% - 50px);
  }
}
@media only screen and (max-width: 400px) {
  .mtt-text-image-widget__image-container .image {
    width: 100%;
  }
}
.mtt-text-image-widget__image-container .image .image-wrapper {
  position: relative;
  max-height: 100%;
  display: flex;
}
.mtt-text-image-widget__image-container .image picture {
  position: relative;
  height: 100%;
  border-radius: 4px;
}
.mtt-text-image-widget__image-container .image img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: auto;
  display: block;
  max-width: 100%;
  max-height: 500px;
  position: relative;
  z-index: 1;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container .image img {
    max-height: 100%;
  }
}
.mtt-text-image-widget__image-container .image:not(.small) {
  width: 100%;
  height: 515px;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container .image:not(.small) {
    height: 100%;
  }
}
.mtt-text-image-widget__image-container .image:not(.small) picture {
  height: 100%;
  width: 100%;
}
.mtt-text-image-widget__image-container .image:not(.small) picture img {
  height: 100%;
  width: 100%;
}
.mtt-text-image-widget__image-container .image.small {
  position: absolute;
  bottom: 0px;
  left: -38px;
  max-width: 287px;
  width: 100%;
}
@media screen and (max-width: 1160px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 250px;
  }
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 350px;
  }
}
@media only screen and (max-width: 900px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 300px;
  }
}
@media screen and (max-width: 760px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 250px;
  }
}
@media screen and (max-width: 580px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 225px;
  }
}
@media only screen and (max-width: 500px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 200px;
  }
}
@media only screen and (max-width: 475px) {
  .mtt-text-image-widget__image-container .image.small {
    max-width: 175px;
  }
}
@media only screen and (max-width: 400px) {
  .mtt-text-image-widget__image-container .image.small {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container .image.small {
    justify-content: flex-end;
    right: 0;
    width: 100%;
    left: unset;
  }
}
.mtt-text-image-widget__image-container .image.small img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container.with-image {
    width: 100%;
  }
}
.mtt-text-image-widget__image-container.with-video {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__image-container.with-video {
    width: 100%;
  }
}
.mtt-text-image-widget__image-container .video {
  width: 100%;
  padding-bottom: 56%;
  height: 0;
  position: relative;
  z-index: 2;
}
.mtt-text-image-widget__image-container video, .mtt-text-image-widget__image-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mtt-text-image-widget__play-btn {
  position: absolute;
  z-index: 1;
  top: calc(50% - 35px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63px;
  height: 63px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(225, 111, 42, 0.5);
  border: 2px solid #E16F2A;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mtt-text-image-widget__play-btn img {
  width: 27px;
  height: 24px;
}
.mtt-text-image-widget__play-btn:after, .mtt-text-image-widget__play-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid #E16F2A;
  top: -2px;
  left: -2px;
  position: absolute;
  border-radius: 999px;
}
.mtt-text-image-widget__play-btn:after {
  animation: pulse 3s infinite ease-in-out;
}
.mtt-text-image-widget__play-btn:before {
  animation: pulse 3s 1s infinite ease-in-out;
}
@media screen and (max-width: 960px) {
  .mtt-text-image-widget__play-btn {
    top: calc(50% - 25px);
    left: calc(50% - 25px);
  }
}
@media only screen and (max-width: 400px) {
  .mtt-text-image-widget__play-btn {
    top: 50%;
    left: 50%;
  }
}
.mtt-text-image-widget__play-btn:hover {
  opacity: 0.8;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@media only screen and (min-width: 961px) {
  .mtt-text-image-widget--image-left .mtt-text-image-widget__text-container {
    padding-right: 0;
    padding-left: 90px;
    order: 2;
  }
}
@media only screen and (min-width: 961px) and (max-width: 1400px) {
  .mtt-text-image-widget--image-left .mtt-text-image-widget__text-container {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 961px) {
  .mtt-text-image-widget--image-left .mtt-text-image-widget__image-container {
    order: 1;
  }
  .mtt-text-image-widget--image-left .mtt-text-image-widget__image-container.with-graphics svg {
    right: unset;
    left: -144px;
  }
  .mtt-text-image-widget--image-left .mtt-text-image-widget__image-container .image {
    justify-content: flex-start;
  }
  .mtt-text-image-widget--image-left .mtt-text-image-widget__image-container .image.small {
    left: unset;
    right: -38px;
  }
}

.mtt-activities__inner {
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mtt-activities__text {
  display: grid;
  gap: 16px;
}
.mtt-activities__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  scroll-margin: 100px;
}
.mtt-activities__filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}
@media screen and (max-width: 1160px) {
  .mtt-activities__filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1160px) {
  .mtt-activities__filters button {
    grid-column: 1/-1;
  }
}
.mtt-activities__posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 1160px) {
  .mtt-activities__posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 580px) {
  .mtt-activities__posts {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.mtt-activities--loading:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mtt-activities--loading:after {
  content: "";
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid #002D4B;
  border-radius: 50%;
  border-top: 4px solid transparent;
  animation: spin 1s linear infinite;
  position: absolute;
  z-index: 2;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.mtt-activities__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}
.mtt-activities__pagination li:not(.previous):not(.next) {
  width: 40px;
}
.mtt-activities__pagination li.selected a {
  background-color: #002D4B;
  color: white;
}
.mtt-activities__pagination li.disabled a {
  pointer-events: none;
  opacity: 0.5;
}
.mtt-activities__pagination li a {
  background-color: #f4f4f4;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.selected .mtt-activities__pagination li a {
  background-color: #002D4B;
  color: white;
}
.disabled .mtt-activities__pagination li a {
  pointer-events: none;
  opacity: 0.5;
}
.mtt-activities .skeleton {
  width: 100%;
  height: 10px;
  border-radius: 100px;
  background-color: lightgray;
}
.mtt-activities .skeleton--half {
  width: 50%;
}
.mtt-activities .skeleton--quarter {
  width: 25%;
}
.mtt-activities .skeleton--title {
  height: 20px;
}
.mtt-activities .skeleton--button {
  height: 50px;
  border-radius: 4px;
}

.mtt-activities-card {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  background-color: white;
  border-radius: 4px;
  overflow: hidden;
  font-size: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mtt-activities-card__image {
  background-color: lightgray;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.mtt-activities-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.6s ease-in-out;
}
.mtt-activities-card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.mtt-activities-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .mtt-activities-card__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 580px) {
  .mtt-activities-card__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.mtt-activities-card__terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #002D4B #e8e8e8;
  padding-bottom: 4px;
  min-height: 40px;
}
.mtt-activities-card__term {
  background-color: #002D4B;
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 12px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.mtt-activities-card__fields {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}
.mtt-activities-card__field {
  display: flex;
  gap: 8px;
}
.mtt-activities-card__field-label {
  font-weight: 700;
}

/*

!* VENDOR *!
@import "../global/vendor/siteorigin-reset";
@import "./vendor/drops/drops";

!* PAGE TEMPLATES *!
@import "templates/all";

!* WIDGETS *!
@import "widgets/all";

!* PAGES *!
@import "pages/all";

!* PRINT *!
@import "print/print";*/
