/*Bootstrap 4 style Margin helpers*/

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.mx-2 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.mt-1 {
  margin-top: 10px !important;
}
.mt-2 {
  margin-top: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.my-1 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.my-2 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.my-3 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.my-4 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.my-5 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 10px !important;
}

.m-2 {
  margin: 20px !important;
}

.m-3 {
  margin: 30px !important;
}

.m-4 {
  margin: 40px !important;
}

.m-5 {
  padding: 50px !important;
}

/* Bootstrap 4 style Padding helpers */

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 10px !important;
}

.p-2 {
  padding: 20px !important;
}

.p-3 {
  padding: 30px !important;
}

.p-4 {
  padding: 40px !important;
}

.p-5 {
  padding: 50px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-2 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-3 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.py-4 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.px-2 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/*handy util stuff*/

.wrapper-2500-center {
  max-width: 2500px;
  margin-left: auto;
  margin-right: auto;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.container-fluid > .row.no-gutters {
  margin-left: -15px;
  margin-right: -15px;
}
.row.no-gutters > [class^="col-"], .row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* Only shows on browsers that can handle flex, and disables if <768px. Often useful. */
@supports (display: flex) and (align-items: center) {
  @media (min-width: 768px) {
    .horiz-center-if-gt767w {
      display: flex;
      align-items: center;
    }
  }
}

/* Begin nav styles */

/* Prevent Nav scrollbar in mobile on firefox */
#content nav ul, #pamaincontent nav ul {
  overflow-y: hidden;
}

/* Underline nav styles */
#content nav.in-page-nav.mt4-underline-nav ul li.active a,
#pamaincontent nav.in-page-nav.mt4-underline-nav ul li.active a {
  font-weight: 700;
  text-decoration: underline;
}
#content nav.in-page-nav.mt4-underline-nav ul li a {
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 1rem;
  padding-top: 0;
}
#content nav.in-page-nav.mt4-underline-nav-larger ul {
  margin-top: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
#content nav.in-page-nav.mt4-underline-nav-larger ul li {
  width: 100%;
}
#content nav.in-page-nav.mt4-underline-nav ul li a:after {
  margin-top: -1px;
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 0;
  overflow-y: hidden;
  visibility: hidden;
}
#content nav.in-page-nav.mt4-underline-nav ul li a:hover {
  font-weight: 700;
  text-decoration: underline;
}
#content nav.in-page-nav.mt4-underline-nav-larger ul li a {
  font-size: 1.39rem;
}
@media (min-width: 600px) {
  #content nav.in-page-nav.mt4-underline-nav-larger ul li {
    width: 50%;
  }
}
@media (min-width: 980px) {
  #content nav.in-page-nav.mt4-underline-nav ul {
    display: flex;
    justify-content: space-between;
    padding-left: 6rem;
    padding-right: 6rem;
    height: auto;
    margin-top: 2.11rem;
    padding-block: 0;
  }
  #content nav.in-page-nav.mt4-underline-nav-larger ul {
    display: flex;
    justify-content: space-around;
    padding-left: 6rem;
    padding-right: 6rem;
    margin-top: 2.33rem;
  }
  #content nav.in-page-nav.mt4-underline-nav ul li a {
    width: auto;
    display: inline-block;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0.25rem;
    text-transform: uppercase;
  }

  #content nav.in-page-nav.mt4-underline-nav ul li {
    width: auto;
    border-right: none;
  }
}

/* End nav styles */

/* MT frequently used colors */

.bg-mt_grey {
  background-color: #faf8f4;
}

.bg-mt_red {
  background-color: #e0393e;
}

.bg-white {
  background-color: #fff;
}

.text-white {
  color: white !important;
}

.text-mt_red {
  color: #e0393e;
}

/* Handy MT styled stuff*/

.hover-mt_red-underline:hover {
  text-decoration: underline;
  -webkit-text-decoration: underline solid #e0393e;
  text-decoration: underline solid #e0393e;
}
.hover-mt_red-underline {
  text-decoration: none;
  color: inherit !important;
}

/* General Page styles */

.mtw-3-left-col {
  padding-right: 30px;
}

.mtw-3-middle-col {
  padding: 0 22.5px;
}

.mtw-3-right-col {
  padding-left: 30px;
}

.mtw-4-left-col {
  padding-right: 30px;
}

.mtw-4-middle-col, .mtw-middle-col {
  padding: 0 22.5px;
}

.mtw-4-right-col {
  padding-left: 30px;
}
.mtp-tech-img, .mtp-footer-img {
  height: auto;
  width: 100%;
}

@media (max-width: 991px) {
  .mtw-middle-col,
  .mtw-3-left-col,
  .mtw-3-middle-col,
  .mtw-3-right-col,
  .mtw-4-left-col,
  .mtw-4-middle-col,
  .mtw-4-right-col {
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .mtw-col-centered-gt-xs {
    margin: 0 auto;
    float: none;
    padding: 0 22.5px;
  }
}

@media (max-width: 991px) {
  .mtw-col-centered-lt-lg {
    margin: 0 auto;
    float: none;
    padding: 0 22.5px;
  }
}

.mtw-col-flex {
  flex: 1;
}

@media (max-width: 767px) {
  br.mtw-break-hidden-xs {
    content: ' ';
  }
  br.mtw-break-hidden-xs:after {
    content: ' ';
  }
  .mtw-col-centered-lt-lg {
    /* this is needed to ensure consistent margins on xs screens */
    /* – the other columns have floats which affect margin calculations */
    float: left;
  }
}

.mtw-cta-button-container {
  margin-top: 0.75rem;
  padding: 1.25rem 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

.mtw-cta-container {
  height: 32rem;
  background-size: cover;
  background-position: 25% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mtw-cta-container:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.mtw-emphasis {
  font-weight: 900;
}

.mtw-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.mtw-main-header {
  font-weight: 900;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  margin-top: 3rem;
}

/* if we ever want to move away from h3 for main text descriptions */
.mtw-main-text {
  font-size: 1.25em;
  line-height: 1.625em;
}

@media (max-width: 787px) {
  .mtw-main-text {
    font-size: 1em;
    line-height: 1.5em;
  }
}

.mtw-pane-col {
  margin-bottom: 1rem;
}

.mtw-pane-logo {
  max-width: 400px;
}

.mtw-pane-logo-container {
  height: 110px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.mtw-pane-subheader {
  font-weight: 700;
  margin: 1rem 0;
  text-transform: none;
}

.mtw-row-flex {
  display: flex;
}

@media (max-width: 767px) {
  .mtw-row-flex.mtw-row-break-sm {
    display: block;
  }
}

.mtw-row-wider {
  margin-left: -45px;
  margin-right: -45px;
}

@media (max-width: 991px) {
  .mtw-row-wider {
    margin-left: -15px;
    margin-right: -15px;
  }
}

/* .mtw-slight-bold {
  font-family: "UniversLTStd", "Helvetica Neue", Helvetica, Arial, sans-serif;
} */

.mtw-uncover {
  z-index: 2;
}

/* Correct for theme to prevent gap with footer */
footer {
  margin-top: 0;
}

/* End General Page Styles */
/* Page styles */

.mtp-banner-logo {
  position: absolute;
  height: 65.3%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mtp-display-container, .mtp-display-request-container {
  max-width: 64.3rem;
  padding-inline: 2.4rem;
  padding-top: 5.16rem;
  padding-bottom: 1rem;
  text-align: center;
  margin-inline: auto;
} 

.mtp-display-request-container {
  padding-block: 5.16rem;
}

.mtp-main-description-container {
  max-width: 64.3rem;
  padding-inline: 2.4rem;
  padding-block: 4.16rem;
  text-align: center;
  margin-inline: auto;
}

.mtpmd-header {
  font-size: 2rem;
  line-height: 1.33;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 1.68rem;
}
.mtpmd-text {
  font-size: 1.22rem;
  line-height: 1.36;
}

.mtpf-img {
  width: 57.3%;
}

.mtp-features-container {
  padding-block: 4.11rem;
  max-width: 60.5rem;
  margin-inline: auto;
}

.mtpf-feature-header {
  font-size: 2rem;
  line-height: 1.33;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 1.28rem;
}
.mtpf-feature-text {
  text-align: left;
}
.mtpf-tech-feature-text {
  text-align: center;
}

.mtpf-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mtpf-row + .mtpf-row {
  margin-top: 3.55rem;
}

.mtpf-text-container {
  width: 42.7%;
  text-align: center;
}
.mtpf-text-container-narrow {
  width: 35%;
}
.mtpf-text-container-medium {
  width: 38.5%;
}
.mtpf-text-container-right {
  padding-left: 2.44rem;
}
.mtpf-text-container-right-low-padding {
  padding-left: 1.44rem;
}
.mtpf-text-container-left {
  padding-right: 2.44rem;
}
.mtpf-text-container-left .mtpf-feature-text {
  text-align: right;
}

@media (max-width: 1119px) {
  .mtpf-img {
    width: 100%;
    max-width: 42rem;
  }

  .mtpf-row {
    flex-direction: column;
  }

  .mtpf-text-container {
    padding-inline: 1rem;
    width: 100%;
    max-width: 25rem;
    margin-top: 1.6rem;
    padding-bottom: 2.2rem;
  }

  .mtpf-text-container-narrow {
    max-width: 23rem;
  }

  .mtpf-img-right {
    order: 1;
  }

  .mtpf-text-container-left {
    order: 2;
  }
  .mtpf-text-container-left .mtpf-feature-text {
    text-align: left;
  }
}


.mtp-footer-cta-text {
  font-size: 1.39rem;
  font-weight: bold;
  left: 50%;
}

/* @media (max-width: 537px) {
	.mtp-footer-cta-text {
    top: 38%;
  }
} */



@media (max-width: 540px) {
  .mtp-footer-button, #content .mtp-footer-button {
    top: 63.4%;
  }
}

@media (max-width: 640px) {
  .mtp-footer-cta-text {
    font-size: 1.25rem;
  }
}

.mtp-logos-container {
  position: relative;
  max-width: 60.8rem;
  margin-inline: auto;
  text-align: center;
  padding-inline: 3.3%;
  padding-top: 5.8rem;
  padding-bottom: 3rem;
}

.mtpl-divider {
  border-top: 1px solid #786945;
  height: 0;
  width: 25.4%;
  margin-inline: auto;
  margin-top: 5.5%;
  margin-bottom: 1.78%;
}

.mtpl-logo {
  width: 17.2%;
}

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

.mtp-tech-container {
  padding-block: 4.2rem;
}

.mtp-tech-header {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.mtp-display-column-left {
  padding-right: 2rem;
  padding-left: 0;
  display: flex;
  justify-content: flex-end;
}
.mtp-display-column-left-inner {
  text-align: left;
  max-width: 18.6rem;
}

.mtp-dc-button-wide, #content a.mtp-dc-button-wide {
  margin-top: 3.22rem;
  margin-bottom: 2rem;
  min-width: 16.3rem;
}

@media (max-width: 991px) {
  .mtp-display-column-left {
    padding-inline: 1rem;
    display: flex;
    justify-content: center;
  }
  .mtp-display-column-left-inner {
    text-align: center;
    max-width: 18.6rem;
  }
  .mtp-dc-button-wide, #content a.mtp-dc-button-wide {
    margin-bottom: 3rem;
  }
}

.mtp-dc-text {
  font-size: 1.22rem;
}

.mtp-display-row {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.mtp-divider {
  margin-top: 1rem;
  margin-inline: 12.7%;
  border-top: 2px solid #e6e6e6;
}

.mtpf-feature-block-link {
  margin-top: 1.875rem;
  font-weight: bold;
  display: block;
}

.mtp-request-form-inner {
  background-color: #F4F6F4;
  padding-block: 2.83rem 4.4rem;
  padding-inline: 8rem;
  margin-top: -0.33rem;
}
@media(max-width: 1200px ) {
  .mtp-request-form-inner {
    background-color: white;
    padding-block: 2.83rem 4.4rem;
    padding-inline: 1rem;
    margin-top: -0.33rem;
  }
}
@media(max-width: 769px ) {
  .mtp-request-form-inner {
    padding-inline: 0;
  }
}
.mtp-rf-header {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.33;
  margin-bottom: 0.8rem;
}

.mtp-rf-text {
  margin-bottom: 2.72rem;
  font-size: 1.22rem;
}

.mtp-tech-img {
  height: auto;
  width: 100%;
}

.mtp-tech-img-container {
  position: relative;
  text-align: center;
}

.mtp-tech-cta-container {
  width: 100%;
  height: 100%;
  text-align: center;
  color: black;
  padding-inline: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mtp-tech-cta-feature-text {
  text-align: center;
  font-size: 1.32rem;
  max-width: 48rem;
  margin-top: min(3rem, 2%);
}

@media (max-width: 1119px) {
  .mtp-tech-cta-feature-text {
    font-weight: normal;
    font-size: 1rem;
  }
}

.mtp-tech-cta-header {
  font-size: 2rem;
  line-height: 1.33;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 0.7rem;
}

.mtp-tech-button,
#content .mtp-tech-button {
  min-width: 15rem;
  margin-top: min(2%, 2.5rem);
}

@media(max-width: 980px) {
  .mtp-tech-hide-mobile {
    display: none;
  }

}
@media(min-width: 981px) {
  .mtp-tech-show-mobile {
    display: none;
  }

}

@media(max-width: 600px) {
  .mtp-tech-cta-header {
    font-size: 1.5rem;
    margin-bottom: 0rem;
    margin-top: -1rem;
  }
}

.mtw-hero-image-container {
  /* height: 28.5rem; */
  position: relative;
  text-align: center;
  margin-top: 3.05rem;
}
.mtw-hero-img {
  height: auto;
  width: 100%;
}

.mtw-hero-img-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20%;
  width: auto;
}

@media (max-width: 991px) {
  .mtppa-img {
    width: 150%;
    max-width: 150%;
    transform: translateX(-12.5%);
  }
  .mtppa-tagline {
    font-size: 3.525vw;
  }
  .mtp-footer-img, .mtw-hero-img {
    height: auto;
    width: 200%;
    transform: translateX(-25%);
  }
}

.mtw-row-flex-v-center {
  align-items: center;
}

.mtw-stm-container-paragraph {
  padding: 0 15px 0 0;
}

.mtw-stm-first-btn-container {
  padding: 0 3em 0 2.5em;
}

#content a.mtw-stm-first-btn {
  margin: 2.5em 4em 0 0;
}

#content a.mt-stm-first-btn.top-btn {
  margin-top: 2.75em;
}

@media (max-width: 767px) {
  .mtw-stm-first-btn-container {
    padding: 0;
  }

  #content a.mtw-stm-first-btn, #content a.mt-stm-first-btn.top-btn {
    margin: 0 0 2em 0;
  }
}

.stm-display-column-left {
  text-align: right;
  padding-right: 2rem;
  padding-left: 0;
}

.stm-display-row {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: row;
  /* justify-items: center; */
  align-items: center;
  flex-wrap: wrap;
}

.stm-header-container {
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

.stm-sell-sheet-btn {
  width: 12rem;
  margin-bottom: 0.5rem !important;
}

@media (max-width: 767px) {
  .stm-display-column-left {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
}
