@font-face {
  font-family: "Frontage Condensed Outline";
  src: url("../fonts/frontage-condensed-outline.otf") format("opentype");
}
@font-face {
  font-family: "Frontage Condensed 3D";
  src: url("../fonts/frontage-condensed-3d.ttf") format("truetype");
}
@font-face {
  font-family: "Frontage Condensed Bold";
  src: url("../fonts/frontage-condensed-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Pricedown";
  src: url("../fonts/pricedown/pricedown.otf") format("opentype");
}
:root {
  --mx-primary: #000;
  --mx-secondary: #000;
  --mx-body-font: "M PLUS 1p", sans-serif;
  --mx-head-font: "Fraunces", serif;
  --mx-head-font-2: "Frontage Condensed Outline", sans-serif;
  --mx-head-font-3: "Frontage Condensed 3D", sans-serif;
  --mx-head-font-4: "Frontage Condensed Bold", sans-serif;
  --mx-base-font-size: 1rem;
  --mx-min-viewport-size: 320;
  --mx-max-viewport-size: 1400;
  --mx-color-yellow: #FFC663;
  --mx-color-green: #6FCB9F;
  --mx-color-orange: #FF7863;
  --mx-color-purple: #7A7AD8;
}

* {
  --fz-min-px: calc(var(--fz-min) * 1px);
  --fz-max-px: calc(var(--fz-max) * 1px);
  --fz-diff: calc(var(--fz-max) - var(--fz-min));
  font-size: clamp(var(--fz-min-px), calc(var(--fz-min-px) + var(--fz-diff) * ((100vw - (var(--mx-min-viewport-size) * 1px)) / (var(--mx-max-viewport-size) - var(--mx-min-viewport-size)))), var(--fz-max-px));
}
*, *:before, *:after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: var(--mx-body-font-2);
  font-size: calc(var(--mx-base-font-size) + 0.5rem);
  color: var(--mx-primary);
  background-color: #fbf2f2;
  cursor: url("../images/base.svg"), auto;
}

a {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  cursor: url("../images/base.svg"), auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  padding-left: 20px;
}

.swiper-wrapper {
  height: auto !important;
  padding-bottom: 12px;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  overflow: hidden;
}

.list-none {
  list-style: none;
  padding-left: 0;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

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

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

.flex-column-reverse {
  flex-direction: column-reverse;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-stretch {
  align-items: stretch;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.align-end {
  align-items: end;
}

.align-baseline {
  align-items: baseline;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-center {
  align-content: center;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.nowrap {
  flex-wrap: nowrap;
}

.wrap {
  flex-wrap: wrap;
}

.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.self-auto {
  align-self: auto;
}

.self-stretch {
  align-self: stretch;
}

.self-start {
  align-self: start;
}

.self-end {
  align-self: end;
}

.self-center {
  align-self: center;
}

.self-baseline {
  align-self: baseline;
}

.justify-items-stretch {
  justify-items: stretch;
}

.justify-items-start {
  justify-items: start;
}

.justify-items-end {
  justify-items: end;
}

.justify-items-center {
  justify-items: center;
}

.grid-align-stretch {
  align-items: stretch;
}

.grid-justify-start {
  justify-content: start;
}

.grid-justify-end {
  justify-content: end;
}

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

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

.text-start {
  text-align: left;
}

.mx-auto {
  margin-inline: auto;
}

.h-100 {
  height: 100%;
}

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

.opacity-50 {
  opacity: 0.5;
}

.grow-1 {
  flex-grow: 1;
}

.w-100 {
  width: 100%;
}

.mx-app {
  overflow: hidden;
}
.mx-container {
  --mx-container-width: 100%;
  --mx-container-pad-inline: 16px;
  width: var(--mx-container-width);
  min-height: inherit;
  margin-inline: auto;
  padding-inline: var(--mx-container-pad-inline);
}
.mx-container__px-0 {
  padding: 0;
}
.mx-container--fluid {
  width: 100% !important;
}
.mx-gap__column-y {
  padding-block: 5rem;
}
.mx-gap__para-bottom {
  margin-bottom: 1rem;
}
.mx-gap__mb-8 {
  margin-bottom: 8px;
}
.mx-gap__mb-40 {
  margin-bottom: 40px;
}
.mx-gap__mb-80 {
  margin-bottom: 80px;
}
.mx-row {
  --mx-columns: 12;
  --mx-rows: 1;
  --mx-gap-x: 16px;
  --mx-gap-y: 16px;
  display: grid;
  grid-template-columns: repeat(var(--mx-columns, 12), 1fr);
  grid-template-rows: repeat(var(--mx-rows, 1), 1fr);
  gap: var(--mx-gap-y) var(--mx-gap-x);
  min-height: inherit;
}
.mx-row .mx-col-1 {
  grid-column: auto/span 1;
}
.mx-row .mx-col-2 {
  grid-column: auto/span 2;
}
.mx-row .mx-col-3 {
  grid-column: auto/span 3;
}
.mx-row .mx-col-4 {
  grid-column: auto/span 4;
}
.mx-row .mx-col-5 {
  grid-column: auto/span 5;
}
.mx-row .mx-col-6 {
  grid-column: auto/span 6;
}
.mx-row .mx-col-7 {
  grid-column: auto/span 7;
}
.mx-row .mx-col-8 {
  grid-column: auto/span 8;
}
.mx-row .mx-col-9 {
  grid-column: auto/span 9;
}
.mx-row .mx-col-10 {
  grid-column: auto/span 10;
}
.mx-row .mx-col-11 {
  grid-column: auto/span 11;
}
.mx-row .mx-col-12 {
  grid-column: auto/span 12;
}
.mx-clr--gray {
  color: #333333;
}
.mx-fs__32 {
  font-size: 22px;
  line-height: 30px;
}
@media (width >= 768px) {
  .mx-fs__32 {
    font-size: 32px;
    line-height: 40px;
  }
}
.mx-font__title {
  font-family: var(--mx-head-font-4);
}
.mx-font__title2 {
  font-family: "M PLUS 1p", sans-serif;
}
@media (width >= 768px) {
  .mx-column__left-spacing {
    padding-left: 3rem;
  }
}
.mx-column__background {
  position: relative;
  overflow: hi;
}
@media (width >= 768px) {
  .mx-column__background::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 200vh;
    top: 0;
    z-index: -1;
  }
}
.mx-column__background-left::before {
  right: 0;
  background: var(--bg-fill-left);
}
.mx-column__background-right::before {
  left: 0;
  background: var(--bg-fill-right);
}
.mx-stack {
  --mx-gap-x: 12px;
  --mx-gap-y: 12px;
  --mx-flex-direction: row;
  display: flex;
  flex-direction: var(--mx-flex-direction);
  gap: var(--mx-gap-x, --mx-gap-y);
}
.mx-stack--grow-full > * {
  flex: 1 0 0%;
}
.mx-stack--vstack {
  --mx-flex-direction: column;
}
.mx-stack--bordered {
  --mx-separator-width: 1px;
  --mx-separator-color: rgba(0,0,0,.1);
  --mx-separator-style: solid;
}
.mx-stack--bordered > *:not(:last-child) {
  border-right: var(--mx-separator-width) var(--mx-separator-style) var(--mx-separator-color);
  padding-right: var(--mx-gap-x);
}
@media screen and (min-width: 992px) {
  .mx-stack-lg--hstack {
    --mx-flex-direction: row;
  }
}
.mx-divider {
  --mx-divider-width: 100%;
  --mx-divider-border-width: 1px;
  --mx-divider-border-color: rgba(0,0,0,.1);
  --mx-divider-margin-block: 14px;
  max-width: var(--mx-divider-width);
  margin-block: var(--mx-divider-margin-block);
  border-bottom: var(--mx-divider-border-width) solid var(--mx-divider-border-color);
}
.mx-btn {
  --mx-btn-fill: #7A7AD8;
  --mx-btn-color: #fff;
  --mx-btn-border-fill: #000;
  --mx-btn-font-size: 24px;
  --mx-btn-pad-block: 14px;
  --mx-btn-pad-inline: 18px;
  display: inline-flex;
  position: relative;
  padding-inline: var(--mx-btn-pad-inline);
  padding-block: var(--mx-btn-pad-block);
  background-color: var(--mx-btn-fill);
  color: var(--mx-btn-color);
  border: 1px solid var(--mx-btn-border-fill);
  font-family: var(--mx-head-font-4);
  font-size: var(--mx-btn-font-size);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.24s cubic-bezier(0.075, 0.82, 0.165, 1);
  box-shadow: 4px 4px 0 0 var(--mx-btn-border-fill);
}
.mx-btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--mx-btn-border-fill);
}
.mx-btn__nav {
  width: 45px;
  height: 45px;
  border: 2px solid;
  box-shadow: 0px 2px 0 #000;
  border-radius: 100px;
  flex-shrink: 0;
}
.mx-btn__nav img {
  width: 20px;
}
@media (width >= 768px) {
  .mx-btn__nav {
    width: 75px;
    height: 75px;
  }
  .mx-btn__nav img {
    width: 32px;
  }
}
.mx-card {
  height: 100%;
  background-color: #ffffff;
  padding: 1rem;
  border: 1.5px solid #000;
  box-shadow: 6px 6px 0px #000000;
}
.mx-card__img {
  height: 130px;
  border-radius: 10px;
  background-color: #FFAC02;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mx-card__img-border--circle {
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
.mx-card__title {
  --fz-min: 20;
  --fz-max: 24;
  font-size: var(--fz-max);
}
.mx-card__desc {
  font-size: 16px;
}
.mx-card__count {
  font-family: "Pricedown";
}
.mx-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #FFC663;
  padding-block: 22px;
  z-index: 10;
  transition: all 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 2px solid #000;
}
.mx-header--sticky {
  padding-block: 10px;
  background-color: rgba(251, 242, 242, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mx-header__nav {
  display: none;
  --mx-gap-x: 32px;
}
@media screen and (max-width: 991px) {
  .mx-header__nav-item:not(:last-child) {
    display: none;
  }
}
.mx-header__nav-link {
  position: relative;
  font-family: var(--mx-head-font-4);
  text-decoration: none;
  color: #333;
}
.mx-header__nav-link, .mx-header__nav-link:before, .mx-header__nav-link:after {
  transition: all 0.24s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.mx-header__nav-link:before {
  opacity: 0;
  content: attr(title);
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  margin-inline: auto;
  font-family: var(--mx-head-font-3);
  color: #f46433;
}
.mx-header__nav-link:after {
  opacity: 0;
  content: "";
  position: absolute;
  bottom: -16px;
  width: 140%;
  height: 3px;
  background-color: #000;
  left: calc(20% * -1);
}
.mx-header__nav-link:hover, .mx-header__nav-link--active {
  color: #040404;
}
.mx-header__nav-link:hover:before, .mx-header__nav-link:hover:after, .mx-header__nav-link--active:before, .mx-header__nav-link--active:after {
  opacity: 1;
}
@media screen and (min-width: 992px) {
  .mx-header__nav {
    display: flex;
  }
}
.mx-header__btn {
  display: none;
}
@media screen and (min-width: 992px) {
  .mx-header__btn {
    display: inline-flex;
    --mx-btn-font-size: 24px;
  }
}
.mx-header__menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100vw);
  width: 100%;
  height: 100vh;
  background-color: #7a7ad8;
  transition: all 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.mx-header__menu--open {
  transform: translateX(0);
}
.mx-header__menu-list {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin-top: calc(68px * 2);
}
.mx-header__menu-item {
  border-bottom: 1px solid #ffc663;
  padding-block: 16px;
  width: 100%;
}
.mx-header__menu-link {
  font-size: 32px;
  font-family: var(--mx-head-font-4);
  color: #fff;
}
.mx-header__menu-controlbtn {
  --mx-btn-fill: rgba(122, 122, 216, 1);
  --mx-btn-color: #fff;
  --mx-btn-border-fill: #000;
  --mx-btn-pad-inline: 10px;
  --mx-btn-pad-block: 10px;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  gap: 8px;
}
@media screen and (min-width: 992px) {
  .mx-header__menu-controlbtn {
    display: none;
  }
}
.mx-header__menu-controlbtn span {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background-color: var(--mx-btn-color);
  transition: all 0.24s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.mx-header__menu-controlbtn--close {
  --mx-btn-border-fill: #fff;
}
.mx-header__menu-controlbtn--close span:first-child {
  transform: rotate(45deg) translate(7px, 6px);
}
.mx-header__menu-controlbtn--close span:nth-child(2) {
  opacity: 0;
  max-width: 0;
  max-height: 0;
}
.mx-header__menu-controlbtn--close span:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
}
.mx-header__menu-register {
  --mx-btn-fill: rgba(255, 198, 99, 1);
  --mx-btn-color: rgba(26, 20, 10, 0.6);
  --mx-btn-border-fill: #000;
  --mx-btn-font-size: 32px;
  --mx-btn-pad-block: 16px;
  --mx-btn-pad-inline: 36px;
}
.mx-footer {
  border: 2px solid #000;
  --bg-deg: 0deg;
  --bg-divide: 50%;
  --bg-fill-left: #93D0FC;
  --bg-fill-right: #E2442F;
}
.mx-footer .mx-row {
  --mx-gap-x: 0;
  --mx-gap-y: 0;
}
.mx-footer__left {
  border: 2px solid #000;
  border-width: 0 0 2px 0;
  padding: 20px 16px 20px 16px;
  background-color: var(--bg-fill-left);
  font-family: var(--mx-head-font);
  --fz-min: 20;
  --fz-max: 24;
}
.mx-footer__left .mx-orgnaizer {
  --fz-min: 24;
  --fz-max: 32;
}
@media screen and (min-width: 768px) {
  .mx-footer__left {
    border-width: 0 2px 0 0;
    padding: 40px 80px 40px 0;
  }
}
.mx-footer__right {
  padding: 20px 16px 20px 16px;
  background-color: var(--bg-fill-right);
  font-family: var(--mx-head-font-3);
}
.mx-footer__right h5 {
  margin-bottom: 30px;
}
.mx-footer__right .mx-social {
  --mx-gap-x: 14px;
}
@media screen and (min-width: 768px) {
  .mx-footer__right {
    padding: 40px 0 40px 80px;
  }
}
.mx-section {
  --mx-section-pad-block: 0;
  padding-block: var(--mx-section-pad-block);
}
.mx-section__title {
  font-family: var(--mx-head-font-4);
  letter-spacing: 1.2px;
  margin-block-end: 0.8em;
}
.mx-section__title {
  font-size: 36px;
}
@media screen and (min-width: 320px) {
  .mx-section__title {
    font-size: calc(36px + 12 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .mx-section__title {
    font-size: 48px;
  }
}
.mx-section__title > span {
  display: block;
  font-family: var(--mx-head-font-2);
  letter-spacing: 0.6px;
}
.mx-section__title > span {
  font-size: 18px;
}
@media screen and (min-width: 320px) {
  .mx-section__title > span {
    font-size: calc(18px + 6 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .mx-section__title > span {
    font-size: 24px;
  }
}
.mx-section__desc {
  line-height: 1.8em;
}
.mx-section__desc {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .mx-section__desc {
    font-size: calc(16px + 4 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .mx-section__desc {
    font-size: 20px;
  }
}
.mx-section--hero {
  background: var(--retro_yellow, #FFC663);
  min-height: 100vh;
  background-image: url(../images/home-background-mobile.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (width > 768px) {
  .mx-section--hero {
    background-image: url(../images/home-background.png);
  }
}
.mx-section--why-madx {
  --bg-deg: 90deg;
  --bg-divide: 62.7%;
  --bg-fill-left: #6FCB9F;
  --bg-fill-right: #FF7863;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.mx-section--why-madx .mx-row {
  --mx-gap-x: 0;
  --mx-gap-y: 0;
}
.mx-section--why-madx .mx-section__left, .mx-section--why-madx .mx-section__right {
  padding-block: 4rem;
  padding-inline: 16px;
}
.mx-section--why-madx .mx-section__left {
  border-bottom: 2px solid #000;
  border-width: 0 0 2px 0;
  background-color: var(--bg-fill-left);
}
@media screen and (min-width: 992px) {
  .mx-section--why-madx .mx-section__left {
    border-width: 0 2px 0 0;
  }
}
@media screen and (min-width: 992px) and (width > 768px) {
  .mx-section--why-madx .mx-section__left {
    padding-right: 12rem;
  }
}
.mx-section--why-madx .mx-section__right {
  background-color: var(--bg-fill-right);
}
@media (width > 768px) {
  .mx-section--why-madx .mx-section__right > div {
    margin-left: -10rem;
  }
}
.mx-section--calendar {
  background-color: var(--mx-color-purple);
}
.mx-section--are-you-ready {
  --bg-deg: 90deg;
  --bg-divide: 36.5%;
  --bg-fill-left: #fff;
  --bg-fill-right: #6FCB9F;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.mx-section--are-you-ready .mx-row {
  --mx-gap-x: 0;
  --mx-gap-y: 0;
}
.mx-section--are-you-ready .mx-section__left, .mx-section--are-you-ready .mx-section__right {
  padding: 40px 16px;
}
@media (width >= 768px) {
  .mx-section--are-you-ready .mx-section__left, .mx-section--are-you-ready .mx-section__right {
    padding: 5rem 0;
  }
}
.mx-section--are-you-ready .mx-section__left {
  border: 2px solid #000;
  border-width: 0 0 2px 0;
  background-color: var(--bg-fill-left);
}
@media screen and (min-width: 992px) {
  .mx-section--are-you-ready .mx-section__left {
    border-width: 0 2px 0 0;
  }
}
.mx-section--are-you-ready .mx-section__right {
  background-color: var(--bg-fill-right);
}
.mx-section--guidelines {
  --bg-deg: 90deg;
  --bg-divide: 62.4%;
  --bg-fill-left: #fff;
  --bg-fill-right: #7A7AD8;
}
.mx-section--guidelines .mx-row {
  --mx-gap-x: 0;
  --mx-gap-y: 0;
}
.mx-section--guidelines .mx-section__left, .mx-section--guidelines .mx-section__right {
  padding: 40px 16px;
}
@media (width >= 768px) {
  .mx-section--guidelines .mx-section__left, .mx-section--guidelines .mx-section__right {
    padding: 5rem 0;
  }
}
.mx-section--guidelines .mx-section__left {
  border: 2px solid #000;
  border-width: 0 0 2px 0;
  background-color: var(--bg-fill-left);
}
@media screen and (min-width: 992px) {
  .mx-section--guidelines .mx-section__left {
    border-width: 0 2px 0 0;
  }
}
.mx-section--guidelines .mx-section__right {
  background-color: var(--bg-fill-right);
}
.mx-section--team {
  border-top: 2px solid #000;
}
.mx-section--team .mx-card {
  margin-bottom: 12px;
}
.mx-section--team .mx-card__img {
  height: auto !important;
}
.mx-hero__img-content {
  padding-top: 100px;
}
@media (width < 768px) {
  .mx-hero__img-content {
    padding: 0 20px;
  }
}
.mx-hero__cursor-img {
  position: absolute;
  right: -36px;
  bottom: -20px;
}
@media (width < 768px) {
  .mx-hero__cursor-img {
    position: absolute;
    right: -20px;
    bottom: -12px;
  }
  .mx-hero__cursor-img > img {
    width: 40px;
  }
}
.mx-hero__star {
  top: -20px;
  left: 12px;
}
@media (width < 768px) {
  .mx-hero__star {
    top: -10px;
    left: 12px;
  }
  .mx-hero__star > img {
    width: 20px;
  }
}
.mx-hero__star2 {
  top: -50px;
  right: 0;
}
@media (width >= 768px) {
  .mx-hero__star2 {
    right: unset;
    left: -30px;
  }
}
.mx-hero__smiley {
  top: -150px;
  left: -140px;
}
@media (width < 768px) {
  .mx-hero__content-scroll {
    font-size: 16px;
  }
}
@media (width < 768px) {
  .mx-hero__content-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
  }
}
.mx-team__title {
  margin: 0 30px;
}
@media screen and (min-width: 576px) {
  .mx-container {
    --mx-container-width: 540px;
  }
  .mx-row .mx-col-sm-1 {
    grid-column: auto/span 1;
  }
  .mx-row .mx-col-sm-2 {
    grid-column: auto/span 2;
  }
  .mx-row .mx-col-sm-3 {
    grid-column: auto/span 3;
  }
  .mx-row .mx-col-sm-4 {
    grid-column: auto/span 4;
  }
  .mx-row .mx-col-sm-5 {
    grid-column: auto/span 5;
  }
  .mx-row .mx-col-sm-6 {
    grid-column: auto/span 6;
  }
  .mx-row .mx-col-sm-7 {
    grid-column: auto/span 7;
  }
  .mx-row .mx-col-sm-8 {
    grid-column: auto/span 8;
  }
  .mx-row .mx-col-sm-9 {
    grid-column: auto/span 9;
  }
  .mx-row .mx-col-sm-10 {
    grid-column: auto/span 10;
  }
  .mx-row .mx-col-sm-11 {
    grid-column: auto/span 11;
  }
  .mx-row .mx-col-sm-12 {
    grid-column: auto/span 12;
  }
}
@media screen and (min-width: 768px) {
  .mx-container {
    --mx-container-width: 720px;
  }
  .mx-row .mx-col-md-1 {
    grid-column: auto/span 1;
  }
  .mx-row .mx-col-md-2 {
    grid-column: auto/span 2;
  }
  .mx-row .mx-col-md-3 {
    grid-column: auto/span 3;
  }
  .mx-row .mx-col-md-4 {
    grid-column: auto/span 4;
  }
  .mx-row .mx-col-md-5 {
    grid-column: auto/span 5;
  }
  .mx-row .mx-col-md-6 {
    grid-column: auto/span 6;
  }
  .mx-row .mx-col-md-7 {
    grid-column: auto/span 7;
  }
  .mx-row .mx-col-md-8 {
    grid-column: auto/span 8;
  }
  .mx-row .mx-col-md-9 {
    grid-column: auto/span 9;
  }
  .mx-row .mx-col-md-10 {
    grid-column: auto/span 10;
  }
  .mx-row .mx-col-md-11 {
    grid-column: auto/span 11;
  }
  .mx-row .mx-col-md-12 {
    grid-column: auto/span 12;
  }
}
@media screen and (min-width: 992px) {
  .mx-container {
    --mx-container-width: 960px;
  }
  .mx-row .mx-col-lg-1 {
    grid-column: auto/span 1;
  }
  .mx-row .mx-col-lg-2 {
    grid-column: auto/span 2;
  }
  .mx-row .mx-col-lg-3 {
    grid-column: auto/span 3;
  }
  .mx-row .mx-col-lg-4 {
    grid-column: auto/span 4;
  }
  .mx-row .mx-col-lg-5 {
    grid-column: auto/span 5;
  }
  .mx-row .mx-col-lg-6 {
    grid-column: auto/span 6;
  }
  .mx-row .mx-col-lg-7 {
    grid-column: auto/span 7;
  }
  .mx-row .mx-col-lg-8 {
    grid-column: auto/span 8;
  }
  .mx-row .mx-col-lg-9 {
    grid-column: auto/span 9;
  }
  .mx-row .mx-col-lg-10 {
    grid-column: auto/span 10;
  }
  .mx-row .mx-col-lg-11 {
    grid-column: auto/span 11;
  }
  .mx-row .mx-col-lg-12 {
    grid-column: auto/span 12;
  }
  .mx-speakers {
    --mx-gap-x: 2em;
  }
  .mx-speakerss {
    --mx-gap-x: 3em;
  }
}
@media screen and (min-width: 1200px) {
  .mx-container {
    --mx-container-width: 1140px;
  }
  .mx-row .mx-col-xl-1 {
    grid-column: auto/span 1;
  }
  .mx-row .mx-col-xl-2 {
    grid-column: auto/span 2;
  }
  .mx-row .mx-col-xl-3 {
    grid-column: auto/span 3;
  }
  .mx-row .mx-col-xl-4 {
    grid-column: auto/span 4;
  }
  .mx-row .mx-col-xl-5 {
    grid-column: auto/span 5;
  }
  .mx-row .mx-col-xl-6 {
    grid-column: auto/span 6;
  }
  .mx-row .mx-col-xl-7 {
    grid-column: auto/span 7;
  }
  .mx-row .mx-col-xl-8 {
    grid-column: auto/span 8;
  }
  .mx-row .mx-col-xl-9 {
    grid-column: auto/span 9;
  }
  .mx-row .mx-col-xl-10 {
    grid-column: auto/span 10;
  }
  .mx-row .mx-col-xl-11 {
    grid-column: auto/span 11;
  }
  .mx-row .mx-col-xl-12 {
    grid-column: auto/span 12;
  }
  .mx-speaker {
    --mx-gap-x: 2em;
  }
  .mx-speakers {
    --mx-gap-x: 5em;
  }
}
@media screen and (min-width: 1400px) {
  .mx-container {
    --mx-container-width: 1320px;
  }
  .mx-row .mx-col-xxl-1 {
    grid-column: auto/span 1;
  }
  .mx-row .mx-col-xxl-2 {
    grid-column: auto/span 2;
  }
  .mx-row .mx-col-xxl-3 {
    grid-column: auto/span 3;
  }
  .mx-row .mx-col-xxl-4 {
    grid-column: auto/span 4;
  }
  .mx-row .mx-col-xxl-5 {
    grid-column: auto/span 5;
  }
  .mx-row .mx-col-xxl-6 {
    grid-column: auto/span 6;
  }
  .mx-row .mx-col-xxl-7 {
    grid-column: auto/span 7;
  }
  .mx-row .mx-col-xxl-8 {
    grid-column: auto/span 8;
  }
  .mx-row .mx-col-xxl-9 {
    grid-column: auto/span 9;
  }
  .mx-row .mx-col-xxl-10 {
    grid-column: auto/span 10;
  }
  .mx-row .mx-col-xxl-11 {
    grid-column: auto/span 11;
  }
  .mx-row .mx-col-xxl-12 {
    grid-column: auto/span 12;
  }
}