/* 100 Weight */
@font-face {
  font-family: 'Museo Sans';
  src: url('/fonts/MuseoSans/MuseoSans-100.eot'); /* IE9 Compat Modes */
  src: url('/fonts/MuseoSans/MuseoSans-100.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('/fonts/MuseoSans/MuseoSans-100.woff2') format('woff2'),
    url('/fonts/MuseoSans/MuseoSans-100.woff') format('woff'),
    url('/fonts/MuseoSans/MuseoSans-100.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

/* 300 Weight */
@font-face {
  font-family: 'Museo Sans';
  src: url('/fonts/MuseoSans/MuseoSans-300.eot');
  src: url('/fonts/MuseoSans/MuseoSans-300.eot?#iefix') format('embedded-opentype'),
    url('/fonts/MuseoSans/MuseoSans-300.woff2') format('woff2'),
    url('/fonts/MuseoSans/MuseoSans-300.woff') format('woff'),
    url('/fonts/MuseoSans/MuseoSans-300.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* 500 Weight */
@font-face {
  font-family: 'Museo Sans';
  src: url('/fonts/MuseoSans/MuseoSans-500.eot');
  src: url('/fonts/MuseoSans/MuseoSans-500.eot?#iefix') format('embedded-opentype'),
    url('/fonts/MuseoSans/MuseoSans-500.woff2') format('woff2'),
    url('/fonts/MuseoSans/MuseoSans-500.woff') format('woff'),
    url('/fonts/MuseoSans/MuseoSans-500.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* 700 Weight */
@font-face {
  font-family: 'Museo Sans';
  src: url('/fonts/MuseoSans/MuseoSans-700.eot');
  src: url('/fonts/MuseoSans/MuseoSans-700.eot?#iefix') format('embedded-opentype'),
    url('/fonts/MuseoSans/MuseoSans-700.woff2') format('woff2'),
    url('/fonts/MuseoSans/MuseoSans-700.woff') format('woff'),
    url('/fonts/MuseoSans/MuseoSans-700.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* 900 Weight */
@font-face {
  font-family: 'Museo Sans';
  src: url('/fonts/MuseoSans/MuseoSans-900.eot');
  src: url('/fonts/MuseoSans/MuseoSans-900.eot?#iefix') format('embedded-opentype'),
    url('/fonts/MuseoSans/MuseoSans-900.woff2') format('woff2'),
    url('/fonts/MuseoSans/MuseoSans-900.woff') format('woff'),
    url('/fonts/MuseoSans/MuseoSans-900.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: 'Museo Sans', sans-serif;
}

.content {
  width: 100%;
  padding: 0;
}

.underMaintenanceHolder {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerContentWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.underMaintenanceIllustrationIcon {
  width: 600px;
  height: auto;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.underMaintenanceIllustrationIcon img {
  width: 100%;
  height: auto;
}

.underMaintenanceContent {
  width: 650px;
  color: #000;
  z-index: 1;
  position: relative;
}

.underMaintenanceContent .title {
  font-weight: 600;
  color: #e30613;
  font-size: 33px;
  line-height: 40px;
  width: 100%;
}

.underMaintenanceContent .description {
  margin-bottom: 30px;
  margin-top: 20px;
}

.underMaintenanceContent .description div {
  font-weight: 300;
  font-size: 25px;
  line-height: 35px;
}

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

.thyButton {
  width: 240px;
  background-color: #e81932;
  border-radius: 3px;
  text-decoration: none;
  padding: 15px 20px;
  cursor: pointer;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

@media (max-width: 992px) {
  .innerContentWrapper {
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .underMaintenanceIllustrationIcon {
    width: 490px;

    height: auto;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .underMaintenanceContent {
    width: 100%;
  }

  .buttonContainer {
    justify-content: center;
  }
}
