@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px base */
  line-height: 1.6;
}
@media (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 960px) {
  html {
    font-size: 1.0416666667vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.3037809648vw;
    scroll-padding-top: 6rem;
  }
}
@media (max-width: 599px) {
  html {
    font-size: 62.5%;
    scroll-padding-top: 6rem;
  }
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.75;
  overflow-x: hidden;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: #251e1c;
  background-color: #f4f3eb;
}

svg {
  --fill-0: currentColor;
  --stroke-0: currentColor;
}

.l-container--narrow {
  width: calc(100% - 4rem);
  max-width: 104rem;
  margin: 0 auto;
}
.l-container--wide {
  width: calc(100% - 4rem);
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .l-container {
    padding: 0 5rem;
  }
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 2rem;
  }
}

.l-header {
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 3rem 0 1rem;
}
@media (max-width: 768px) {
  .l-header {
    position: fixed;
    backdrop-filter: blur(1rem);
    padding: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}
.l-header__inner {
  width: calc(100% - 4rem);
  max-width: 120rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 6rem;
  }
}
.l-header__logo {
  max-width: 100%;
  width: 83.4rem;
  margin: 0 auto 3rem;
}
.l-header__logo img {
  width: 100%;
  aspect-ratio: 834/34;
}
@media (max-width: 768px) {
  .l-header__logo {
    margin-bottom: 0;
  }
}

.l-hero {
  position: relative;
  width: 100%;
  height: 103rem;
  margin: 0 auto;
  background: url("../img/kv.jpg") center/cover no-repeat;
}
@media (max-width: 1280px) {
  .l-hero {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .l-hero {
    width: 100%;
    height: unset;
    aspect-ratio: 375/1056;
    background-image: url("../img/kv_sp.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.l-section {
  padding: 6rem 0;
  position: relative;
}

.c-nav {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
.c-nav__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-nav__rating-stars {
  color: #fa8f00;
  font-size: 1.8rem;
}
.c-nav__rating-text {
  color: #717071;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .c-nav__main {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1rem);
    transition: left 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-nav__main.is-open {
    left: 0;
  }
}
.c-nav__links {
  display: flex;
  justify-content: center;
  gap: 4.7rem;
}
@media (max-width: 768px) {
  .c-nav__links {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }
}
.c-nav__link {
  color: #717071;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.c-nav__link:hover {
  text-decoration: none;
  color: #fa8f00;
}
.c-nav__link:focus {
  outline: 0.2rem solid #fa8f00;
  outline-offset: 0.2rem;
}
@media (max-width: 768px) {
  .c-nav__link {
    font-size: 2rem;
    padding: 1rem 2rem;
  }
}

.c-hamburger {
  display: none;
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .c-hamburger {
    display: flex;
  }
}
.c-hamburger__line {
  width: 2.4rem;
  height: 0.3rem;
  background-color: #251e1c;
  transition: all 0.3s ease;
  transform-origin: center;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  transform: translateY(0.9rem) rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  transform: translateY(-0.9rem) rotate(-45deg);
}

.c-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.8rem;
}
@media (max-width: 768px) {
  .c-section-header {
    margin-bottom: 2rem;
  }
}
.c-section-header__title {
  color: #fa8f00;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  border-bottom: 0.6rem solid #fa8f00;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .c-section-header__title {
    font-size: 2.4rem;
  }
}
.c-section-header__underline {
  width: 11.877rem;
  height: 0.6rem;
  background-color: #fa8f00;
}
.c-section-header__sub-title {
  color: #fa8f00;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-section-header__sub-title {
    font-size: 2.4rem;
  }
}

.c-partner {
  display: flex;
  gap: 6rem;
}
@media (max-width: 768px) {
  .c-partner {
    flex-direction: column;
    align-items: center;
  }
}
.c-partner__text {
  flex: 1;
}
.c-partner__description {
  color: #403d3c;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.c-partner__info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  width: 24rem;
}
.c-partner__image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.c-partner__image img {
  width: 17.5rem;
}
.c-partner__details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.c-partner__name {
  font-size: 2.7rem;
  font-weight: normal;
  color: #251e1c;
}
.c-partner__title {
  color: #251e1c;
  font-size: 2rem;
}
.c-partner__affiliation {
  color: #251e1c;
  font-size: 1.6rem;
  line-height: 1.3;
}

.c-supervisor {
  display: flex;
  flex-direction: column;
  gap: 7.3rem;
}
@media (max-width: 768px) {
  .c-supervisor {
    gap: 3rem;
  }
}
.c-supervisor__line {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
}
.c-supervisor__line-left, .c-supervisor__line-right {
  flex: 1;
  height: 0.1rem;
  border: none;
  background-color: #251e1c;
}
.c-supervisor__label {
  color: #251e1c;
  font-size: 2.5rem;
  font-weight: normal;
  white-space: nowrap;
}
.c-supervisor__profile {
  display: flex;
  gap: 7.2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .c-supervisor__profile {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
.c-supervisor__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-supervisor__name {
  font-size: 2.7rem;
  font-weight: normal;
  color: #251e1c;
}
.c-supervisor__title {
  color: #251e1c;
  font-size: 2rem;
}
.c-supervisor__role {
  color: #251e1c;
  font-size: 1.6rem;
  line-height: 1.3;
}
.c-supervisor__comment {
  color: #403d3c;
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.c-supervisor__image {
  width: 24rem;
  height: auto;
  display: flex;
  justify-content: center;
}
.c-supervisor__image img {
  width: 15.6rem;
  height: 22.9rem;
}

.c-conditions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 41.6rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .c-conditions {
    width: 100%;
  }
}
.c-conditions__header {
  background-color: #9e9e9f;
  padding: 0.3rem 4.6rem;
}
.c-conditions__label {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: normal;
}
.c-conditions__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.c-conditions__item {
  color: #403d3c;
  font-size: 1.6rem;
  font-weight: normal;
}
.c-illustration {
  background: #ffffff;
  border-radius: 5rem;
  padding: 4rem 8.6rem;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .c-illustration {
    padding: 2rem 2rem;
    border-radius: 2rem;
  }
}
.c-illustration__svg {
  width: 100%;
  height: 45.505rem;
}

.c-restrictions {
  background-color: #e2dacb;
  width: 100%;
  padding: 1.4rem 8rem;
}
@media (max-width: 768px) {
  .c-restrictions {
    padding: 1.4rem 2rem;
  }
}
.c-restrictions--narrow {
  padding: 1.4rem 2rem;
}
.c-restrictions__title {
  color: #403d3c;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
.c-restrictions__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-restrictions__item {
  color: #403d3c;
  font-size: 1.6rem;
  font-weight: normal;
  position: relative;
  padding-left: 2rem;
}
.c-restrictions__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #403d3c;
  font-weight: normal;
}

.c-results {
  background: #ffffff;
  border-radius: 5rem;
  padding: 3.5rem 3.8rem;
  margin-bottom: 3.7rem;
}
@media (max-width: 768px) {
  .c-results {
    padding: 2rem;
    border-radius: 2rem;
  }
}
.c-results__header {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-bottom: 3.6rem;
}
@media (max-width: 768px) {
  .c-results__header {
    flex-direction: column;
    text-align: center;
  }
}
.c-results__number {
  width: 9rem;
  height: 9rem;
  background-color: #fa8f00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 4.5rem;
  font-weight: normal;
}
@media (max-width: 768px) {
  .c-results__number {
    width: 6rem;
    height: 6rem;
    font-size: 3rem;
  }
}
.c-results__title {
  color: #403d3c;
  font-size: 4.1rem;
  font-weight: bold;
  flex: 1;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-results__title {
    font-size: 2.8rem;
    text-align: left;
  }
}
.c-results__details {
  display: flex;
  gap: 3.4rem;
  align-items: flex-start;
  margin-bottom: 4.8rem;
}
.c-results__details > div {
  flex: 1;
}
@media (max-width: 768px) {
  .c-results__details {
    flex-direction: column;
    align-items: center;
  }
}

.c-chart {
  flex: 1;
}
.c-chart img {
  width: 100%;
}
.c-chart__svg {
  width: 100%;
  height: 100%;
  --fill-0: #eef7f2;
  --stroke-0: #251e1c;
}
.c-chart__svg .primary-bar {
  fill: #73b996;
}
.c-chart__svg .secondary-bar {
  fill: #fa8f00;
}
.c-chart__svg .tertiary-bar {
  fill: #fb4c4c;
}
.c-chart__note {
  color: #403d3c;
  font-size: 1.6rem;
  margin-bottom: 5rem;
}

.c-table {
  border-top: 0.1rem solid #251e1c;
  border-left: 0.1rem solid #251e1c;
}
@media (max-width: 768px) {
  .c-table {
    overflow-x: auto;
  }
}
.c-table__header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #b29d75;
  color: #ffffff;
  font-size: 2rem;
  font-weight: normal;
}
.c-table__header--2 {
  grid-template-columns: 11.5rem 1fr;
}
.c-table__header-cell {
  padding: 1.711rem;
  text-align: center;
  border-right: 0.1rem solid #251e1c;
  border-bottom: 0.1rem solid #251e1c;
}
.c-table__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #ffffff;
}
.c-table__row--2 {
  grid-template-columns: 11.5rem 1fr;
}
.c-table__cell {
  padding: 1.711rem;
  text-align: center;
  border-right: 0.1rem solid #251e1c;
  border-bottom: 0.1rem solid #251e1c;
  color: #403d3c;
  font-size: 1.6rem;
  letter-spacing: -0.1rem;
  line-height: 1.3;
}
.c-table__cell--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-table__cell--title {
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.c-banner {
  border: 0.5rem solid #fa8f00;
  border-radius: 1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .c-banner {
    flex-direction: column;
  }
}
.c-banner__label {
  display: block;
  height: 100%;
  color: #ffffff;
  font-size: 4rem;
  font-weight: bold;
  background-color: #fa8f00;
  padding: 3rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-banner__label {
    font-size: 2.4rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
}
.c-banner__text {
  color: #fa8f00;
  font-size: 4rem;
  font-weight: bold;
  padding: 3rem;
  background-color: #ffffff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .c-banner__text {
    font-size: 2.4rem;
    width: 100%;
  }
}

.p-partners {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .p-partners {
    padding-bottom: 3rem;
  }
}
.p-partners__content {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}

.p-verification {
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-verification {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-verification__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-verification__description {
  text-align: center;
  margin-bottom: 4rem;
}
.p-verification__main-description {
  color: #403d3c;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.p-verification__method-description {
  font-size: 1.6rem;
  line-height: 1.3;
}

.p-results {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-results {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-results__summary {
  text-align: center;
}
.p-results__summary-title {
  color: #403d3c;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-results__summary-title--center {
  text-align: center;
}
@media (max-width: 768px) {
  .p-results__summary-title {
    font-size: 2.4rem;
    text-align: left;
  }
}
.p-results__summary-text {
  font-size: 3rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-results__summary-text {
    text-align: left;
  }
}
.p-results__statistical-notes {
  display: flex;
  flex-direction: column;
  color: #403d3c;
  font-size: 1.6rem;
}
.p-results__conclusion {
  position: relative;
}

.p-result__list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media (max-width: 768px) {
  .p-result__item:nth-child(1) .c-chart__data .c-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__header {
    display: contents;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__header-cell {
    background-color: #b29d75;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.711rem;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__header-cell:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__header-cell:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__header-cell:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__header-cell:nth-child(4) {
    grid-column: 1;
    grid-row: 4;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__row {
    display: contents;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__cell {
    border-bottom: 0.1rem solid #251e1c;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.711rem;
    flex-direction: column;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__cell:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__cell:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__cell:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
  }
  .p-result__item:nth-child(1) .c-chart__data .c-table__cell:nth-child(4) {
    grid-column: 2;
    grid-row: 4;
  }
}

.p-voice {
  padding-top: 7rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .p-voice {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 960px) {
  .p-voice__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .p-voice__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .p-voice__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-voice__item {
  border-radius: 3rem;
  background-color: #ffffff;
  padding: 2rem;
  aspect-ratio: 287/227;
}
@media (max-width: 768px) {
  .p-voice__item {
    aspect-ratio: unset;
  }
}

.p-howto {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 768px) {
  .p-howto {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.p-howto__title {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  background-color: #fa8f00;
  padding: 2rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .p-howto__title {
    font-size: 2.4rem;
    text-align: left;
  }
}
.p-howto__text {
  margin-bottom: 4rem;
}
.p-howto__schdule {
  padding: 0 0 4rem 10rem;
}
@media (max-width: 768px) {
  .p-howto__schdule {
    padding: 0 0 4rem 5rem;
  }
}
.p-howto__schdule-list {
  list-style: none;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.p-howto__schdule-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.2rem;
  background-color: #fa8f00;
}
.p-howto__schdule-list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20rem;
  height: 100%;
  background: #edebde;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-howto__schdule-list::after {
    width: calc(100% + 2rem);
  }
}
.p-howto__schdule-item {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-howto__schdule-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-howto__schdule-item--2 {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .p-howto__schdule-item--2 {
    margin-bottom: 3rem;
  }
}
.p-howto__schdule-item-title {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  width: 20rem;
  padding-left: 1.8rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title {
    width: 100%;
  }
}
.p-howto__schdule-item-title::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #fa8f00;
  border-radius: 50%;
}
.p-howto__schdule-item-title--2 {
  display: flex;
  align-items: center;
}
.p-howto__schdule-item-title--2::before {
  top: 50%;
  transform: translateY(-50%);
}
.p-howto__schdule-item-title-text {
  position: relative;
}
.p-howto__schdule-item-title-text .text {
  margin-top: 1rem;
  font-size: 1.4rem;
}
.p-howto__schdule-item-title-text .balloon1 {
  position: absolute;
  top: 4rem;
  left: 0rem;
  width: 13.2rem;
  aspect-ratio: 132/85;
  background-image: url("../img/img13.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.p-howto__schdule-item-title-text .balloon2 {
  position: absolute;
  top: 4rem;
  left: 0rem;
  width: 13.2rem;
  aspect-ratio: 132/85;
  background-image: url("../img/img14.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.p-howto__schdule-item-title-text .balloon3 {
  position: absolute;
  top: 14rem;
  left: 0rem;
  width: 13.2rem;
  aspect-ratio: 132/85;
  background-image: url("../img/img15.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.p-howto__schdule-item-title-text .balloon4 {
  position: absolute;
  top: 4rem;
  left: 0rem;
  width: 13.2rem;
  aspect-ratio: 132/58;
  background-image: url("../img/img16.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.p-howto__schdule-item-title-time {
  position: absolute;
  left: -10rem;
  top: 0.5rem;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: normal;
  color: #403d3c;
}
.p-howto__schdule-item-title-period1, .p-howto__schdule-item-title-period2, .p-howto__schdule-item-title-period3 {
  position: absolute;
  padding: 1rem;
  left: -10rem;
  background-color: #fa8f00;
  width: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-howto__schdule-item-title-period1::before, .p-howto__schdule-item-title-period1::after, .p-howto__schdule-item-title-period2::before, .p-howto__schdule-item-title-period2::after, .p-howto__schdule-item-title-period3::before, .p-howto__schdule-item-title-period3::after {
  content: "";
  position: absolute;
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  left: 0;
  aspect-ratio: 60/25;
}
.p-howto__schdule-item-title-period1::before, .p-howto__schdule-item-title-period2::before, .p-howto__schdule-item-title-period3::before {
  top: -2.15rem;
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title-period1::before, .p-howto__schdule-item-title-period2::before, .p-howto__schdule-item-title-period3::before {
    top: -1.45rem;
  }
}
.p-howto__schdule-item-title-period1::after, .p-howto__schdule-item-title-period2::after, .p-howto__schdule-item-title-period3::after {
  bottom: -2.15rem;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title-period1::after, .p-howto__schdule-item-title-period2::after, .p-howto__schdule-item-title-period3::after {
    bottom: -1.44rem;
  }
}
.p-howto__schdule-item-title-period1 img, .p-howto__schdule-item-title-period2 img, .p-howto__schdule-item-title-period3 img {
  width: 2rem;
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title-period1, .p-howto__schdule-item-title-period2, .p-howto__schdule-item-title-period3 {
    width: 4rem;
    left: -6rem;
  }
}
.p-howto__schdule-item-title-period1 {
  top: 3rem;
  height: 15rem;
}
.p-howto__schdule-item-title-period1 img {
  aspect-ratio: 2/9;
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title-period1 {
    height: 97%;
  }
}
.p-howto__schdule-item-title-period2 {
  top: 3rem;
  height: 90%;
}
.p-howto__schdule-item-title-period2 img {
  aspect-ratio: 2/9;
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title-period2 {
    height: 95%;
  }
}
.p-howto__schdule-item-title-period3 {
  top: 3rem;
  height: 20.5rem;
}
.p-howto__schdule-item-title-period3 img {
  aspect-ratio: 2/19;
}
@media (max-width: 768px) {
  .p-howto__schdule-item-title-period3 {
    height: 100%;
  }
}
.p-howto__schdule-box {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  flex: 1;
  border: 0.1rem solid #fa8f00;
}
.p-howto__schdule-box--2 {
  border: 0.5rem solid #fa8f00;
  background-color: #fffcdb;
}
@media (max-width: 768px) {
  .p-howto__schdule-box {
    margin-left: 1rem;
  }
}
.p-howto__schdule-box-text {
  color: #403d3c;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  flex: 1;
}
.p-howto__schdule-box-flex {
  display: flex;
  gap: 4rem;
}
@media (max-width: 768px) {
  .p-howto__schdule-box-flex {
    flex-direction: column;
  }
}
.p-howto__schdule-box-flex-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fa8f00;
}
.p-howto__schdule-box-flex-item-list {
  list-style: none;
  padding-left: 0;
}
.p-howto__schdule-box-flex-item-list li {
  font-size: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.3;
  position: relative;
}
.p-howto__schdule-box-flex-item-list li::before {
  content: "";
  position: absolute;
  left: 0;
  background-color: #fa8f00;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  top: 0.5rem;
}
.p-howto__schdule-box-figure img {
  width: 16.7rem;
}
.p-howto__schdule-box-graph {
  display: flex;
  gap: 4rem;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .p-howto__schdule-box-graph {
    flex-direction: column;
  }
}
.p-howto__schdule-box-graph-img {
  width: 51.5rem;
  max-width: 100%;
}
.p-howto__schdule-box-graph-img img {
  width: 100%;
}
@media (max-width: 768px) {
  .p-howto__schdule-box-graph-img {
    width: 100%;
  }
}
.p-howto__schdule-box-caption {
  flex: 1;
  font-size: 1.4rem;
}
.p-howto__summary {
  padding: 4rem 5rem;
  border-radius: 5rem;
  background: #f7e5b4;
}
@media (max-width: 768px) {
  .p-howto__summary {
    padding: 2rem;
    border-radius: 2rem;
  }
}
.p-howto__summary-text {
  color: #403d3c;
  font-size: 1.6rem;
  line-height: 2;
}

.u-pc-only {
  display: block !important;
}
@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
}

@media (max-width: 768px) {
  br.u-br-hidden-sp {
    display: none;
  }
}

.u-d-block {
  display: block;
}

.u-text-fwb {
  font-weight: bold;
}

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

.u-text-highlight {
  color: #fa8f00;
  font-size: 2.5rem;
  font-weight: bold;
}

.u-text-normal {
  color: #403d3c;
  font-size: 2rem;
}

.u-text-highlight-sequence {
  color: #fa8f00;
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .u-text-highlight-sequence {
    font-size: 2.8rem;
  }
}

.u-text-summary-normal {
  color: #403d3c;
  font-size: 3rem;
}

.u-text-green {
  color: #73b996;
}

.u-text-orange {
  color: #fa8f00;
}

.u-no-scroll {
  overflow: hidden;
}

.u-time-large {
  font-size: 2.5rem;
  color: #403d3c;
}

.u-time-unit {
  font-size: 1.7rem;
  color: #403d3c;
}

.u-animation-fadein {
  animation: fadeInUp 0.6s ease-out;
}

/* Font Size Utilities */
.u-fs-10 {
  font-size: calc(10 * 0.1rem) !important;
}

.u-fs-11 {
  font-size: calc(11 * 0.1rem) !important;
}

.u-fs-12 {
  font-size: calc(12 * 0.1rem) !important;
}

.u-fs-13 {
  font-size: calc(13 * 0.1rem) !important;
}

.u-fs-14 {
  font-size: calc(14 * 0.1rem) !important;
}

.u-fs-15 {
  font-size: calc(15 * 0.1rem) !important;
}

.u-fs-16 {
  font-size: calc(16 * 0.1rem) !important;
}

.u-fs-17 {
  font-size: calc(17 * 0.1rem) !important;
}

.u-fs-18 {
  font-size: calc(18 * 0.1rem) !important;
}

.u-fs-19 {
  font-size: calc(19 * 0.1rem) !important;
}

.u-fs-20 {
  font-size: calc(20 * 0.1rem) !important;
}

.u-fs-21 {
  font-size: calc(21 * 0.1rem) !important;
}

.u-fs-22 {
  font-size: calc(22 * 0.1rem) !important;
}

.u-fs-23 {
  font-size: calc(23 * 0.1rem) !important;
}

.u-fs-24 {
  font-size: calc(24 * 0.1rem) !important;
}

.u-fs-25 {
  font-size: calc(25 * 0.1rem) !important;
}

.u-fs-26 {
  font-size: calc(26 * 0.1rem) !important;
}

.u-fs-27 {
  font-size: calc(27 * 0.1rem) !important;
}

.u-fs-28 {
  font-size: calc(28 * 0.1rem) !important;
}

.u-fs-29 {
  font-size: calc(29 * 0.1rem) !important;
}

.u-fs-30 {
  font-size: calc(30 * 0.1rem) !important;
}

.u-fs-31 {
  font-size: calc(31 * 0.1rem) !important;
}

.u-fs-32 {
  font-size: calc(32 * 0.1rem) !important;
}

.u-fs-33 {
  font-size: calc(33 * 0.1rem) !important;
}

.u-fs-34 {
  font-size: calc(34 * 0.1rem) !important;
}

.u-fs-35 {
  font-size: calc(35 * 0.1rem) !important;
}

.u-fs-36 {
  font-size: calc(36 * 0.1rem) !important;
}

.u-fs-37 {
  font-size: calc(37 * 0.1rem) !important;
}

.u-fs-38 {
  font-size: calc(38 * 0.1rem) !important;
}

.u-fs-39 {
  font-size: calc(39 * 0.1rem) !important;
}

.u-fs-40 {
  font-size: calc(40 * 0.1rem) !important;
}

.u-fs-41 {
  font-size: calc(41 * 0.1rem) !important;
}

.u-fs-42 {
  font-size: calc(42 * 0.1rem) !important;
}

.u-fs-43 {
  font-size: calc(43 * 0.1rem) !important;
}

.u-fs-44 {
  font-size: calc(44 * 0.1rem) !important;
}

.u-fs-45 {
  font-size: calc(45 * 0.1rem) !important;
}

.u-fs-46 {
  font-size: calc(46 * 0.1rem) !important;
}

.u-fs-47 {
  font-size: calc(47 * 0.1rem) !important;
}

.u-fs-48 {
  font-size: calc(48 * 0.1rem) !important;
}

.u-fs-49 {
  font-size: calc(49 * 0.1rem) !important;
}

.u-fs-50 {
  font-size: calc(50 * 0.1rem) !important;
}

/* Spacing Utilities */
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.u-m-0 {
  margin: calc(0 * 0.1rem) !important;
}

.u-m-5 {
  margin: calc(5 * 0.1rem) !important;
}

.u-m-10 {
  margin: calc(10 * 0.1rem) !important;
}

.u-m-15 {
  margin: calc(15 * 0.1rem) !important;
}

.u-m-20 {
  margin: calc(20 * 0.1rem) !important;
}

.u-m-25 {
  margin: calc(25 * 0.1rem) !important;
}

.u-m-30 {
  margin: calc(30 * 0.1rem) !important;
}

.u-m-35 {
  margin: calc(35 * 0.1rem) !important;
}

.u-m-40 {
  margin: calc(40 * 0.1rem) !important;
}

.u-m-45 {
  margin: calc(45 * 0.1rem) !important;
}

.u-m-50 {
  margin: calc(50 * 0.1rem) !important;
}

.u-m-55 {
  margin: calc(55 * 0.1rem) !important;
}

.u-m-60 {
  margin: calc(60 * 0.1rem) !important;
}

.u-m-65 {
  margin: calc(65 * 0.1rem) !important;
}

.u-m-70 {
  margin: calc(70 * 0.1rem) !important;
}

.u-m-75 {
  margin: calc(75 * 0.1rem) !important;
}

.u-m-80 {
  margin: calc(80 * 0.1rem) !important;
}

.u-m-85 {
  margin: calc(85 * 0.1rem) !important;
}

.u-m-90 {
  margin: calc(90 * 0.1rem) !important;
}

.u-m-95 {
  margin: calc(95 * 0.1rem) !important;
}

.u-m-100 {
  margin: calc(100 * 0.1rem) !important;
}

.u-mt-0 {
  margin-top: calc(0 * 0.1rem) !important;
}

.u-mt-5 {
  margin-top: calc(5 * 0.1rem) !important;
}

.u-mt-10 {
  margin-top: calc(10 * 0.1rem) !important;
}

.u-mt-15 {
  margin-top: calc(15 * 0.1rem) !important;
}

.u-mt-20 {
  margin-top: calc(20 * 0.1rem) !important;
}

.u-mt-25 {
  margin-top: calc(25 * 0.1rem) !important;
}

.u-mt-30 {
  margin-top: calc(30 * 0.1rem) !important;
}

.u-mt-35 {
  margin-top: calc(35 * 0.1rem) !important;
}

.u-mt-40 {
  margin-top: calc(40 * 0.1rem) !important;
}

.u-mt-45 {
  margin-top: calc(45 * 0.1rem) !important;
}

.u-mt-50 {
  margin-top: calc(50 * 0.1rem) !important;
}

.u-mt-55 {
  margin-top: calc(55 * 0.1rem) !important;
}

.u-mt-60 {
  margin-top: calc(60 * 0.1rem) !important;
}

.u-mt-65 {
  margin-top: calc(65 * 0.1rem) !important;
}

.u-mt-70 {
  margin-top: calc(70 * 0.1rem) !important;
}

.u-mt-75 {
  margin-top: calc(75 * 0.1rem) !important;
}

.u-mt-80 {
  margin-top: calc(80 * 0.1rem) !important;
}

.u-mt-85 {
  margin-top: calc(85 * 0.1rem) !important;
}

.u-mt-90 {
  margin-top: calc(90 * 0.1rem) !important;
}

.u-mt-95 {
  margin-top: calc(95 * 0.1rem) !important;
}

.u-mt-100 {
  margin-top: calc(100 * 0.1rem) !important;
}

.u-mb-0 {
  margin-bottom: calc(0 * 0.1rem) !important;
}

.u-mb-5 {
  margin-bottom: calc(5 * 0.1rem) !important;
}

.u-mb-10 {
  margin-bottom: calc(10 * 0.1rem) !important;
}

.u-mb-15 {
  margin-bottom: calc(15 * 0.1rem) !important;
}

.u-mb-20 {
  margin-bottom: calc(20 * 0.1rem) !important;
}

.u-mb-25 {
  margin-bottom: calc(25 * 0.1rem) !important;
}

.u-mb-30 {
  margin-bottom: calc(30 * 0.1rem) !important;
}

.u-mb-35 {
  margin-bottom: calc(35 * 0.1rem) !important;
}

.u-mb-40 {
  margin-bottom: calc(40 * 0.1rem) !important;
}

.u-mb-45 {
  margin-bottom: calc(45 * 0.1rem) !important;
}

.u-mb-50 {
  margin-bottom: calc(50 * 0.1rem) !important;
}

.u-mb-55 {
  margin-bottom: calc(55 * 0.1rem) !important;
}

.u-mb-60 {
  margin-bottom: calc(60 * 0.1rem) !important;
}

.u-mb-65 {
  margin-bottom: calc(65 * 0.1rem) !important;
}

.u-mb-70 {
  margin-bottom: calc(70 * 0.1rem) !important;
}

.u-mb-75 {
  margin-bottom: calc(75 * 0.1rem) !important;
}

.u-mb-80 {
  margin-bottom: calc(80 * 0.1rem) !important;
}

.u-mb-85 {
  margin-bottom: calc(85 * 0.1rem) !important;
}

.u-mb-90 {
  margin-bottom: calc(90 * 0.1rem) !important;
}

.u-mb-95 {
  margin-bottom: calc(95 * 0.1rem) !important;
}

.u-mb-100 {
  margin-bottom: calc(100 * 0.1rem) !important;
}

.u-ml-0 {
  margin-left: calc(0 * 0.1rem) !important;
}

.u-ml-5 {
  margin-left: calc(5 * 0.1rem) !important;
}

.u-ml-10 {
  margin-left: calc(10 * 0.1rem) !important;
}

.u-ml-15 {
  margin-left: calc(15 * 0.1rem) !important;
}

.u-ml-20 {
  margin-left: calc(20 * 0.1rem) !important;
}

.u-ml-25 {
  margin-left: calc(25 * 0.1rem) !important;
}

.u-ml-30 {
  margin-left: calc(30 * 0.1rem) !important;
}

.u-ml-35 {
  margin-left: calc(35 * 0.1rem) !important;
}

.u-ml-40 {
  margin-left: calc(40 * 0.1rem) !important;
}

.u-ml-45 {
  margin-left: calc(45 * 0.1rem) !important;
}

.u-ml-50 {
  margin-left: calc(50 * 0.1rem) !important;
}

.u-ml-55 {
  margin-left: calc(55 * 0.1rem) !important;
}

.u-ml-60 {
  margin-left: calc(60 * 0.1rem) !important;
}

.u-ml-65 {
  margin-left: calc(65 * 0.1rem) !important;
}

.u-ml-70 {
  margin-left: calc(70 * 0.1rem) !important;
}

.u-ml-75 {
  margin-left: calc(75 * 0.1rem) !important;
}

.u-ml-80 {
  margin-left: calc(80 * 0.1rem) !important;
}

.u-ml-85 {
  margin-left: calc(85 * 0.1rem) !important;
}

.u-ml-90 {
  margin-left: calc(90 * 0.1rem) !important;
}

.u-ml-95 {
  margin-left: calc(95 * 0.1rem) !important;
}

.u-ml-100 {
  margin-left: calc(100 * 0.1rem) !important;
}

.u-mr-0 {
  margin-right: calc(0 * 0.1rem) !important;
}

.u-mr-5 {
  margin-right: calc(5 * 0.1rem) !important;
}

.u-mr-10 {
  margin-right: calc(10 * 0.1rem) !important;
}

.u-mr-15 {
  margin-right: calc(15 * 0.1rem) !important;
}

.u-mr-20 {
  margin-right: calc(20 * 0.1rem) !important;
}

.u-mr-25 {
  margin-right: calc(25 * 0.1rem) !important;
}

.u-mr-30 {
  margin-right: calc(30 * 0.1rem) !important;
}

.u-mr-35 {
  margin-right: calc(35 * 0.1rem) !important;
}

.u-mr-40 {
  margin-right: calc(40 * 0.1rem) !important;
}

.u-mr-45 {
  margin-right: calc(45 * 0.1rem) !important;
}

.u-mr-50 {
  margin-right: calc(50 * 0.1rem) !important;
}

.u-mr-55 {
  margin-right: calc(55 * 0.1rem) !important;
}

.u-mr-60 {
  margin-right: calc(60 * 0.1rem) !important;
}

.u-mr-65 {
  margin-right: calc(65 * 0.1rem) !important;
}

.u-mr-70 {
  margin-right: calc(70 * 0.1rem) !important;
}

.u-mr-75 {
  margin-right: calc(75 * 0.1rem) !important;
}

.u-mr-80 {
  margin-right: calc(80 * 0.1rem) !important;
}

.u-mr-85 {
  margin-right: calc(85 * 0.1rem) !important;
}

.u-mr-90 {
  margin-right: calc(90 * 0.1rem) !important;
}

.u-mr-95 {
  margin-right: calc(95 * 0.1rem) !important;
}

.u-mr-100 {
  margin-right: calc(100 * 0.1rem) !important;
}

@media (max-width: 1280px) {
  .u-m-xl-0 {
    margin: calc(0 * 0.1rem) !important;
  }
  .u-m-xl-5 {
    margin: calc(5 * 0.1rem) !important;
  }
  .u-m-xl-10 {
    margin: calc(10 * 0.1rem) !important;
  }
  .u-m-xl-15 {
    margin: calc(15 * 0.1rem) !important;
  }
  .u-m-xl-20 {
    margin: calc(20 * 0.1rem) !important;
  }
  .u-m-xl-25 {
    margin: calc(25 * 0.1rem) !important;
  }
  .u-m-xl-30 {
    margin: calc(30 * 0.1rem) !important;
  }
  .u-m-xl-35 {
    margin: calc(35 * 0.1rem) !important;
  }
  .u-m-xl-40 {
    margin: calc(40 * 0.1rem) !important;
  }
  .u-m-xl-45 {
    margin: calc(45 * 0.1rem) !important;
  }
  .u-m-xl-50 {
    margin: calc(50 * 0.1rem) !important;
  }
  .u-m-xl-55 {
    margin: calc(55 * 0.1rem) !important;
  }
  .u-m-xl-60 {
    margin: calc(60 * 0.1rem) !important;
  }
  .u-m-xl-65 {
    margin: calc(65 * 0.1rem) !important;
  }
  .u-m-xl-70 {
    margin: calc(70 * 0.1rem) !important;
  }
  .u-m-xl-75 {
    margin: calc(75 * 0.1rem) !important;
  }
  .u-m-xl-80 {
    margin: calc(80 * 0.1rem) !important;
  }
  .u-m-xl-85 {
    margin: calc(85 * 0.1rem) !important;
  }
  .u-m-xl-90 {
    margin: calc(90 * 0.1rem) !important;
  }
  .u-m-xl-95 {
    margin: calc(95 * 0.1rem) !important;
  }
  .u-m-xl-100 {
    margin: calc(100 * 0.1rem) !important;
  }
  .u-mt-xl-0 {
    margin-top: calc(0 * 0.1rem) !important;
  }
  .u-mt-xl-5 {
    margin-top: calc(5 * 0.1rem) !important;
  }
  .u-mt-xl-10 {
    margin-top: calc(10 * 0.1rem) !important;
  }
  .u-mt-xl-15 {
    margin-top: calc(15 * 0.1rem) !important;
  }
  .u-mt-xl-20 {
    margin-top: calc(20 * 0.1rem) !important;
  }
  .u-mt-xl-25 {
    margin-top: calc(25 * 0.1rem) !important;
  }
  .u-mt-xl-30 {
    margin-top: calc(30 * 0.1rem) !important;
  }
  .u-mt-xl-35 {
    margin-top: calc(35 * 0.1rem) !important;
  }
  .u-mt-xl-40 {
    margin-top: calc(40 * 0.1rem) !important;
  }
  .u-mt-xl-45 {
    margin-top: calc(45 * 0.1rem) !important;
  }
  .u-mt-xl-50 {
    margin-top: calc(50 * 0.1rem) !important;
  }
  .u-mt-xl-55 {
    margin-top: calc(55 * 0.1rem) !important;
  }
  .u-mt-xl-60 {
    margin-top: calc(60 * 0.1rem) !important;
  }
  .u-mt-xl-65 {
    margin-top: calc(65 * 0.1rem) !important;
  }
  .u-mt-xl-70 {
    margin-top: calc(70 * 0.1rem) !important;
  }
  .u-mt-xl-75 {
    margin-top: calc(75 * 0.1rem) !important;
  }
  .u-mt-xl-80 {
    margin-top: calc(80 * 0.1rem) !important;
  }
  .u-mt-xl-85 {
    margin-top: calc(85 * 0.1rem) !important;
  }
  .u-mt-xl-90 {
    margin-top: calc(90 * 0.1rem) !important;
  }
  .u-mt-xl-95 {
    margin-top: calc(95 * 0.1rem) !important;
  }
  .u-mt-xl-100 {
    margin-top: calc(100 * 0.1rem) !important;
  }
  .u-mb-xl-0 {
    margin-bottom: calc(0 * 0.1rem) !important;
  }
  .u-mb-xl-5 {
    margin-bottom: calc(5 * 0.1rem) !important;
  }
  .u-mb-xl-10 {
    margin-bottom: calc(10 * 0.1rem) !important;
  }
  .u-mb-xl-15 {
    margin-bottom: calc(15 * 0.1rem) !important;
  }
  .u-mb-xl-20 {
    margin-bottom: calc(20 * 0.1rem) !important;
  }
  .u-mb-xl-25 {
    margin-bottom: calc(25 * 0.1rem) !important;
  }
  .u-mb-xl-30 {
    margin-bottom: calc(30 * 0.1rem) !important;
  }
  .u-mb-xl-35 {
    margin-bottom: calc(35 * 0.1rem) !important;
  }
  .u-mb-xl-40 {
    margin-bottom: calc(40 * 0.1rem) !important;
  }
  .u-mb-xl-45 {
    margin-bottom: calc(45 * 0.1rem) !important;
  }
  .u-mb-xl-50 {
    margin-bottom: calc(50 * 0.1rem) !important;
  }
  .u-mb-xl-55 {
    margin-bottom: calc(55 * 0.1rem) !important;
  }
  .u-mb-xl-60 {
    margin-bottom: calc(60 * 0.1rem) !important;
  }
  .u-mb-xl-65 {
    margin-bottom: calc(65 * 0.1rem) !important;
  }
  .u-mb-xl-70 {
    margin-bottom: calc(70 * 0.1rem) !important;
  }
  .u-mb-xl-75 {
    margin-bottom: calc(75 * 0.1rem) !important;
  }
  .u-mb-xl-80 {
    margin-bottom: calc(80 * 0.1rem) !important;
  }
  .u-mb-xl-85 {
    margin-bottom: calc(85 * 0.1rem) !important;
  }
  .u-mb-xl-90 {
    margin-bottom: calc(90 * 0.1rem) !important;
  }
  .u-mb-xl-95 {
    margin-bottom: calc(95 * 0.1rem) !important;
  }
  .u-mb-xl-100 {
    margin-bottom: calc(100 * 0.1rem) !important;
  }
  .u-ml-xl-0 {
    margin-left: calc(0 * 0.1rem) !important;
  }
  .u-ml-xl-5 {
    margin-left: calc(5 * 0.1rem) !important;
  }
  .u-ml-xl-10 {
    margin-left: calc(10 * 0.1rem) !important;
  }
  .u-ml-xl-15 {
    margin-left: calc(15 * 0.1rem) !important;
  }
  .u-ml-xl-20 {
    margin-left: calc(20 * 0.1rem) !important;
  }
  .u-ml-xl-25 {
    margin-left: calc(25 * 0.1rem) !important;
  }
  .u-ml-xl-30 {
    margin-left: calc(30 * 0.1rem) !important;
  }
  .u-ml-xl-35 {
    margin-left: calc(35 * 0.1rem) !important;
  }
  .u-ml-xl-40 {
    margin-left: calc(40 * 0.1rem) !important;
  }
  .u-ml-xl-45 {
    margin-left: calc(45 * 0.1rem) !important;
  }
  .u-ml-xl-50 {
    margin-left: calc(50 * 0.1rem) !important;
  }
  .u-ml-xl-55 {
    margin-left: calc(55 * 0.1rem) !important;
  }
  .u-ml-xl-60 {
    margin-left: calc(60 * 0.1rem) !important;
  }
  .u-ml-xl-65 {
    margin-left: calc(65 * 0.1rem) !important;
  }
  .u-ml-xl-70 {
    margin-left: calc(70 * 0.1rem) !important;
  }
  .u-ml-xl-75 {
    margin-left: calc(75 * 0.1rem) !important;
  }
  .u-ml-xl-80 {
    margin-left: calc(80 * 0.1rem) !important;
  }
  .u-ml-xl-85 {
    margin-left: calc(85 * 0.1rem) !important;
  }
  .u-ml-xl-90 {
    margin-left: calc(90 * 0.1rem) !important;
  }
  .u-ml-xl-95 {
    margin-left: calc(95 * 0.1rem) !important;
  }
  .u-ml-xl-100 {
    margin-left: calc(100 * 0.1rem) !important;
  }
  .u-mr-xl-0 {
    margin-right: calc(0 * 0.1rem) !important;
  }
  .u-mr-xl-5 {
    margin-right: calc(5 * 0.1rem) !important;
  }
  .u-mr-xl-10 {
    margin-right: calc(10 * 0.1rem) !important;
  }
  .u-mr-xl-15 {
    margin-right: calc(15 * 0.1rem) !important;
  }
  .u-mr-xl-20 {
    margin-right: calc(20 * 0.1rem) !important;
  }
  .u-mr-xl-25 {
    margin-right: calc(25 * 0.1rem) !important;
  }
  .u-mr-xl-30 {
    margin-right: calc(30 * 0.1rem) !important;
  }
  .u-mr-xl-35 {
    margin-right: calc(35 * 0.1rem) !important;
  }
  .u-mr-xl-40 {
    margin-right: calc(40 * 0.1rem) !important;
  }
  .u-mr-xl-45 {
    margin-right: calc(45 * 0.1rem) !important;
  }
  .u-mr-xl-50 {
    margin-right: calc(50 * 0.1rem) !important;
  }
  .u-mr-xl-55 {
    margin-right: calc(55 * 0.1rem) !important;
  }
  .u-mr-xl-60 {
    margin-right: calc(60 * 0.1rem) !important;
  }
  .u-mr-xl-65 {
    margin-right: calc(65 * 0.1rem) !important;
  }
  .u-mr-xl-70 {
    margin-right: calc(70 * 0.1rem) !important;
  }
  .u-mr-xl-75 {
    margin-right: calc(75 * 0.1rem) !important;
  }
  .u-mr-xl-80 {
    margin-right: calc(80 * 0.1rem) !important;
  }
  .u-mr-xl-85 {
    margin-right: calc(85 * 0.1rem) !important;
  }
  .u-mr-xl-90 {
    margin-right: calc(90 * 0.1rem) !important;
  }
  .u-mr-xl-95 {
    margin-right: calc(95 * 0.1rem) !important;
  }
  .u-mr-xl-100 {
    margin-right: calc(100 * 0.1rem) !important;
  }
}
@media (max-width: 960px) {
  .u-m-lg-0 {
    margin: calc(0 * 0.1rem) !important;
  }
  .u-m-lg-5 {
    margin: calc(5 * 0.1rem) !important;
  }
  .u-m-lg-10 {
    margin: calc(10 * 0.1rem) !important;
  }
  .u-m-lg-15 {
    margin: calc(15 * 0.1rem) !important;
  }
  .u-m-lg-20 {
    margin: calc(20 * 0.1rem) !important;
  }
  .u-m-lg-25 {
    margin: calc(25 * 0.1rem) !important;
  }
  .u-m-lg-30 {
    margin: calc(30 * 0.1rem) !important;
  }
  .u-m-lg-35 {
    margin: calc(35 * 0.1rem) !important;
  }
  .u-m-lg-40 {
    margin: calc(40 * 0.1rem) !important;
  }
  .u-m-lg-45 {
    margin: calc(45 * 0.1rem) !important;
  }
  .u-m-lg-50 {
    margin: calc(50 * 0.1rem) !important;
  }
  .u-m-lg-55 {
    margin: calc(55 * 0.1rem) !important;
  }
  .u-m-lg-60 {
    margin: calc(60 * 0.1rem) !important;
  }
  .u-m-lg-65 {
    margin: calc(65 * 0.1rem) !important;
  }
  .u-m-lg-70 {
    margin: calc(70 * 0.1rem) !important;
  }
  .u-m-lg-75 {
    margin: calc(75 * 0.1rem) !important;
  }
  .u-m-lg-80 {
    margin: calc(80 * 0.1rem) !important;
  }
  .u-m-lg-85 {
    margin: calc(85 * 0.1rem) !important;
  }
  .u-m-lg-90 {
    margin: calc(90 * 0.1rem) !important;
  }
  .u-m-lg-95 {
    margin: calc(95 * 0.1rem) !important;
  }
  .u-m-lg-100 {
    margin: calc(100 * 0.1rem) !important;
  }
  .u-mt-lg-0 {
    margin-top: calc(0 * 0.1rem) !important;
  }
  .u-mt-lg-5 {
    margin-top: calc(5 * 0.1rem) !important;
  }
  .u-mt-lg-10 {
    margin-top: calc(10 * 0.1rem) !important;
  }
  .u-mt-lg-15 {
    margin-top: calc(15 * 0.1rem) !important;
  }
  .u-mt-lg-20 {
    margin-top: calc(20 * 0.1rem) !important;
  }
  .u-mt-lg-25 {
    margin-top: calc(25 * 0.1rem) !important;
  }
  .u-mt-lg-30 {
    margin-top: calc(30 * 0.1rem) !important;
  }
  .u-mt-lg-35 {
    margin-top: calc(35 * 0.1rem) !important;
  }
  .u-mt-lg-40 {
    margin-top: calc(40 * 0.1rem) !important;
  }
  .u-mt-lg-45 {
    margin-top: calc(45 * 0.1rem) !important;
  }
  .u-mt-lg-50 {
    margin-top: calc(50 * 0.1rem) !important;
  }
  .u-mt-lg-55 {
    margin-top: calc(55 * 0.1rem) !important;
  }
  .u-mt-lg-60 {
    margin-top: calc(60 * 0.1rem) !important;
  }
  .u-mt-lg-65 {
    margin-top: calc(65 * 0.1rem) !important;
  }
  .u-mt-lg-70 {
    margin-top: calc(70 * 0.1rem) !important;
  }
  .u-mt-lg-75 {
    margin-top: calc(75 * 0.1rem) !important;
  }
  .u-mt-lg-80 {
    margin-top: calc(80 * 0.1rem) !important;
  }
  .u-mt-lg-85 {
    margin-top: calc(85 * 0.1rem) !important;
  }
  .u-mt-lg-90 {
    margin-top: calc(90 * 0.1rem) !important;
  }
  .u-mt-lg-95 {
    margin-top: calc(95 * 0.1rem) !important;
  }
  .u-mt-lg-100 {
    margin-top: calc(100 * 0.1rem) !important;
  }
  .u-mb-lg-0 {
    margin-bottom: calc(0 * 0.1rem) !important;
  }
  .u-mb-lg-5 {
    margin-bottom: calc(5 * 0.1rem) !important;
  }
  .u-mb-lg-10 {
    margin-bottom: calc(10 * 0.1rem) !important;
  }
  .u-mb-lg-15 {
    margin-bottom: calc(15 * 0.1rem) !important;
  }
  .u-mb-lg-20 {
    margin-bottom: calc(20 * 0.1rem) !important;
  }
  .u-mb-lg-25 {
    margin-bottom: calc(25 * 0.1rem) !important;
  }
  .u-mb-lg-30 {
    margin-bottom: calc(30 * 0.1rem) !important;
  }
  .u-mb-lg-35 {
    margin-bottom: calc(35 * 0.1rem) !important;
  }
  .u-mb-lg-40 {
    margin-bottom: calc(40 * 0.1rem) !important;
  }
  .u-mb-lg-45 {
    margin-bottom: calc(45 * 0.1rem) !important;
  }
  .u-mb-lg-50 {
    margin-bottom: calc(50 * 0.1rem) !important;
  }
  .u-mb-lg-55 {
    margin-bottom: calc(55 * 0.1rem) !important;
  }
  .u-mb-lg-60 {
    margin-bottom: calc(60 * 0.1rem) !important;
  }
  .u-mb-lg-65 {
    margin-bottom: calc(65 * 0.1rem) !important;
  }
  .u-mb-lg-70 {
    margin-bottom: calc(70 * 0.1rem) !important;
  }
  .u-mb-lg-75 {
    margin-bottom: calc(75 * 0.1rem) !important;
  }
  .u-mb-lg-80 {
    margin-bottom: calc(80 * 0.1rem) !important;
  }
  .u-mb-lg-85 {
    margin-bottom: calc(85 * 0.1rem) !important;
  }
  .u-mb-lg-90 {
    margin-bottom: calc(90 * 0.1rem) !important;
  }
  .u-mb-lg-95 {
    margin-bottom: calc(95 * 0.1rem) !important;
  }
  .u-mb-lg-100 {
    margin-bottom: calc(100 * 0.1rem) !important;
  }
  .u-ml-lg-0 {
    margin-left: calc(0 * 0.1rem) !important;
  }
  .u-ml-lg-5 {
    margin-left: calc(5 * 0.1rem) !important;
  }
  .u-ml-lg-10 {
    margin-left: calc(10 * 0.1rem) !important;
  }
  .u-ml-lg-15 {
    margin-left: calc(15 * 0.1rem) !important;
  }
  .u-ml-lg-20 {
    margin-left: calc(20 * 0.1rem) !important;
  }
  .u-ml-lg-25 {
    margin-left: calc(25 * 0.1rem) !important;
  }
  .u-ml-lg-30 {
    margin-left: calc(30 * 0.1rem) !important;
  }
  .u-ml-lg-35 {
    margin-left: calc(35 * 0.1rem) !important;
  }
  .u-ml-lg-40 {
    margin-left: calc(40 * 0.1rem) !important;
  }
  .u-ml-lg-45 {
    margin-left: calc(45 * 0.1rem) !important;
  }
  .u-ml-lg-50 {
    margin-left: calc(50 * 0.1rem) !important;
  }
  .u-ml-lg-55 {
    margin-left: calc(55 * 0.1rem) !important;
  }
  .u-ml-lg-60 {
    margin-left: calc(60 * 0.1rem) !important;
  }
  .u-ml-lg-65 {
    margin-left: calc(65 * 0.1rem) !important;
  }
  .u-ml-lg-70 {
    margin-left: calc(70 * 0.1rem) !important;
  }
  .u-ml-lg-75 {
    margin-left: calc(75 * 0.1rem) !important;
  }
  .u-ml-lg-80 {
    margin-left: calc(80 * 0.1rem) !important;
  }
  .u-ml-lg-85 {
    margin-left: calc(85 * 0.1rem) !important;
  }
  .u-ml-lg-90 {
    margin-left: calc(90 * 0.1rem) !important;
  }
  .u-ml-lg-95 {
    margin-left: calc(95 * 0.1rem) !important;
  }
  .u-ml-lg-100 {
    margin-left: calc(100 * 0.1rem) !important;
  }
  .u-mr-lg-0 {
    margin-right: calc(0 * 0.1rem) !important;
  }
  .u-mr-lg-5 {
    margin-right: calc(5 * 0.1rem) !important;
  }
  .u-mr-lg-10 {
    margin-right: calc(10 * 0.1rem) !important;
  }
  .u-mr-lg-15 {
    margin-right: calc(15 * 0.1rem) !important;
  }
  .u-mr-lg-20 {
    margin-right: calc(20 * 0.1rem) !important;
  }
  .u-mr-lg-25 {
    margin-right: calc(25 * 0.1rem) !important;
  }
  .u-mr-lg-30 {
    margin-right: calc(30 * 0.1rem) !important;
  }
  .u-mr-lg-35 {
    margin-right: calc(35 * 0.1rem) !important;
  }
  .u-mr-lg-40 {
    margin-right: calc(40 * 0.1rem) !important;
  }
  .u-mr-lg-45 {
    margin-right: calc(45 * 0.1rem) !important;
  }
  .u-mr-lg-50 {
    margin-right: calc(50 * 0.1rem) !important;
  }
  .u-mr-lg-55 {
    margin-right: calc(55 * 0.1rem) !important;
  }
  .u-mr-lg-60 {
    margin-right: calc(60 * 0.1rem) !important;
  }
  .u-mr-lg-65 {
    margin-right: calc(65 * 0.1rem) !important;
  }
  .u-mr-lg-70 {
    margin-right: calc(70 * 0.1rem) !important;
  }
  .u-mr-lg-75 {
    margin-right: calc(75 * 0.1rem) !important;
  }
  .u-mr-lg-80 {
    margin-right: calc(80 * 0.1rem) !important;
  }
  .u-mr-lg-85 {
    margin-right: calc(85 * 0.1rem) !important;
  }
  .u-mr-lg-90 {
    margin-right: calc(90 * 0.1rem) !important;
  }
  .u-mr-lg-95 {
    margin-right: calc(95 * 0.1rem) !important;
  }
  .u-mr-lg-100 {
    margin-right: calc(100 * 0.1rem) !important;
  }
}
@media (max-width: 768px) {
  .u-m-md-0 {
    margin: calc(0 * 0.1rem) !important;
  }
  .u-m-md-5 {
    margin: calc(5 * 0.1rem) !important;
  }
  .u-m-md-10 {
    margin: calc(10 * 0.1rem) !important;
  }
  .u-m-md-15 {
    margin: calc(15 * 0.1rem) !important;
  }
  .u-m-md-20 {
    margin: calc(20 * 0.1rem) !important;
  }
  .u-m-md-25 {
    margin: calc(25 * 0.1rem) !important;
  }
  .u-m-md-30 {
    margin: calc(30 * 0.1rem) !important;
  }
  .u-m-md-35 {
    margin: calc(35 * 0.1rem) !important;
  }
  .u-m-md-40 {
    margin: calc(40 * 0.1rem) !important;
  }
  .u-m-md-45 {
    margin: calc(45 * 0.1rem) !important;
  }
  .u-m-md-50 {
    margin: calc(50 * 0.1rem) !important;
  }
  .u-m-md-55 {
    margin: calc(55 * 0.1rem) !important;
  }
  .u-m-md-60 {
    margin: calc(60 * 0.1rem) !important;
  }
  .u-m-md-65 {
    margin: calc(65 * 0.1rem) !important;
  }
  .u-m-md-70 {
    margin: calc(70 * 0.1rem) !important;
  }
  .u-m-md-75 {
    margin: calc(75 * 0.1rem) !important;
  }
  .u-m-md-80 {
    margin: calc(80 * 0.1rem) !important;
  }
  .u-m-md-85 {
    margin: calc(85 * 0.1rem) !important;
  }
  .u-m-md-90 {
    margin: calc(90 * 0.1rem) !important;
  }
  .u-m-md-95 {
    margin: calc(95 * 0.1rem) !important;
  }
  .u-m-md-100 {
    margin: calc(100 * 0.1rem) !important;
  }
  .u-mt-md-0 {
    margin-top: calc(0 * 0.1rem) !important;
  }
  .u-mt-md-5 {
    margin-top: calc(5 * 0.1rem) !important;
  }
  .u-mt-md-10 {
    margin-top: calc(10 * 0.1rem) !important;
  }
  .u-mt-md-15 {
    margin-top: calc(15 * 0.1rem) !important;
  }
  .u-mt-md-20 {
    margin-top: calc(20 * 0.1rem) !important;
  }
  .u-mt-md-25 {
    margin-top: calc(25 * 0.1rem) !important;
  }
  .u-mt-md-30 {
    margin-top: calc(30 * 0.1rem) !important;
  }
  .u-mt-md-35 {
    margin-top: calc(35 * 0.1rem) !important;
  }
  .u-mt-md-40 {
    margin-top: calc(40 * 0.1rem) !important;
  }
  .u-mt-md-45 {
    margin-top: calc(45 * 0.1rem) !important;
  }
  .u-mt-md-50 {
    margin-top: calc(50 * 0.1rem) !important;
  }
  .u-mt-md-55 {
    margin-top: calc(55 * 0.1rem) !important;
  }
  .u-mt-md-60 {
    margin-top: calc(60 * 0.1rem) !important;
  }
  .u-mt-md-65 {
    margin-top: calc(65 * 0.1rem) !important;
  }
  .u-mt-md-70 {
    margin-top: calc(70 * 0.1rem) !important;
  }
  .u-mt-md-75 {
    margin-top: calc(75 * 0.1rem) !important;
  }
  .u-mt-md-80 {
    margin-top: calc(80 * 0.1rem) !important;
  }
  .u-mt-md-85 {
    margin-top: calc(85 * 0.1rem) !important;
  }
  .u-mt-md-90 {
    margin-top: calc(90 * 0.1rem) !important;
  }
  .u-mt-md-95 {
    margin-top: calc(95 * 0.1rem) !important;
  }
  .u-mt-md-100 {
    margin-top: calc(100 * 0.1rem) !important;
  }
  .u-mb-md-0 {
    margin-bottom: calc(0 * 0.1rem) !important;
  }
  .u-mb-md-5 {
    margin-bottom: calc(5 * 0.1rem) !important;
  }
  .u-mb-md-10 {
    margin-bottom: calc(10 * 0.1rem) !important;
  }
  .u-mb-md-15 {
    margin-bottom: calc(15 * 0.1rem) !important;
  }
  .u-mb-md-20 {
    margin-bottom: calc(20 * 0.1rem) !important;
  }
  .u-mb-md-25 {
    margin-bottom: calc(25 * 0.1rem) !important;
  }
  .u-mb-md-30 {
    margin-bottom: calc(30 * 0.1rem) !important;
  }
  .u-mb-md-35 {
    margin-bottom: calc(35 * 0.1rem) !important;
  }
  .u-mb-md-40 {
    margin-bottom: calc(40 * 0.1rem) !important;
  }
  .u-mb-md-45 {
    margin-bottom: calc(45 * 0.1rem) !important;
  }
  .u-mb-md-50 {
    margin-bottom: calc(50 * 0.1rem) !important;
  }
  .u-mb-md-55 {
    margin-bottom: calc(55 * 0.1rem) !important;
  }
  .u-mb-md-60 {
    margin-bottom: calc(60 * 0.1rem) !important;
  }
  .u-mb-md-65 {
    margin-bottom: calc(65 * 0.1rem) !important;
  }
  .u-mb-md-70 {
    margin-bottom: calc(70 * 0.1rem) !important;
  }
  .u-mb-md-75 {
    margin-bottom: calc(75 * 0.1rem) !important;
  }
  .u-mb-md-80 {
    margin-bottom: calc(80 * 0.1rem) !important;
  }
  .u-mb-md-85 {
    margin-bottom: calc(85 * 0.1rem) !important;
  }
  .u-mb-md-90 {
    margin-bottom: calc(90 * 0.1rem) !important;
  }
  .u-mb-md-95 {
    margin-bottom: calc(95 * 0.1rem) !important;
  }
  .u-mb-md-100 {
    margin-bottom: calc(100 * 0.1rem) !important;
  }
  .u-ml-md-0 {
    margin-left: calc(0 * 0.1rem) !important;
  }
  .u-ml-md-5 {
    margin-left: calc(5 * 0.1rem) !important;
  }
  .u-ml-md-10 {
    margin-left: calc(10 * 0.1rem) !important;
  }
  .u-ml-md-15 {
    margin-left: calc(15 * 0.1rem) !important;
  }
  .u-ml-md-20 {
    margin-left: calc(20 * 0.1rem) !important;
  }
  .u-ml-md-25 {
    margin-left: calc(25 * 0.1rem) !important;
  }
  .u-ml-md-30 {
    margin-left: calc(30 * 0.1rem) !important;
  }
  .u-ml-md-35 {
    margin-left: calc(35 * 0.1rem) !important;
  }
  .u-ml-md-40 {
    margin-left: calc(40 * 0.1rem) !important;
  }
  .u-ml-md-45 {
    margin-left: calc(45 * 0.1rem) !important;
  }
  .u-ml-md-50 {
    margin-left: calc(50 * 0.1rem) !important;
  }
  .u-ml-md-55 {
    margin-left: calc(55 * 0.1rem) !important;
  }
  .u-ml-md-60 {
    margin-left: calc(60 * 0.1rem) !important;
  }
  .u-ml-md-65 {
    margin-left: calc(65 * 0.1rem) !important;
  }
  .u-ml-md-70 {
    margin-left: calc(70 * 0.1rem) !important;
  }
  .u-ml-md-75 {
    margin-left: calc(75 * 0.1rem) !important;
  }
  .u-ml-md-80 {
    margin-left: calc(80 * 0.1rem) !important;
  }
  .u-ml-md-85 {
    margin-left: calc(85 * 0.1rem) !important;
  }
  .u-ml-md-90 {
    margin-left: calc(90 * 0.1rem) !important;
  }
  .u-ml-md-95 {
    margin-left: calc(95 * 0.1rem) !important;
  }
  .u-ml-md-100 {
    margin-left: calc(100 * 0.1rem) !important;
  }
  .u-mr-md-0 {
    margin-right: calc(0 * 0.1rem) !important;
  }
  .u-mr-md-5 {
    margin-right: calc(5 * 0.1rem) !important;
  }
  .u-mr-md-10 {
    margin-right: calc(10 * 0.1rem) !important;
  }
  .u-mr-md-15 {
    margin-right: calc(15 * 0.1rem) !important;
  }
  .u-mr-md-20 {
    margin-right: calc(20 * 0.1rem) !important;
  }
  .u-mr-md-25 {
    margin-right: calc(25 * 0.1rem) !important;
  }
  .u-mr-md-30 {
    margin-right: calc(30 * 0.1rem) !important;
  }
  .u-mr-md-35 {
    margin-right: calc(35 * 0.1rem) !important;
  }
  .u-mr-md-40 {
    margin-right: calc(40 * 0.1rem) !important;
  }
  .u-mr-md-45 {
    margin-right: calc(45 * 0.1rem) !important;
  }
  .u-mr-md-50 {
    margin-right: calc(50 * 0.1rem) !important;
  }
  .u-mr-md-55 {
    margin-right: calc(55 * 0.1rem) !important;
  }
  .u-mr-md-60 {
    margin-right: calc(60 * 0.1rem) !important;
  }
  .u-mr-md-65 {
    margin-right: calc(65 * 0.1rem) !important;
  }
  .u-mr-md-70 {
    margin-right: calc(70 * 0.1rem) !important;
  }
  .u-mr-md-75 {
    margin-right: calc(75 * 0.1rem) !important;
  }
  .u-mr-md-80 {
    margin-right: calc(80 * 0.1rem) !important;
  }
  .u-mr-md-85 {
    margin-right: calc(85 * 0.1rem) !important;
  }
  .u-mr-md-90 {
    margin-right: calc(90 * 0.1rem) !important;
  }
  .u-mr-md-95 {
    margin-right: calc(95 * 0.1rem) !important;
  }
  .u-mr-md-100 {
    margin-right: calc(100 * 0.1rem) !important;
  }
}
@media (max-width: 599px) {
  .u-m-sm-0 {
    margin: calc(0 * 0.1rem) !important;
  }
  .u-m-sm-5 {
    margin: calc(5 * 0.1rem) !important;
  }
  .u-m-sm-10 {
    margin: calc(10 * 0.1rem) !important;
  }
  .u-m-sm-15 {
    margin: calc(15 * 0.1rem) !important;
  }
  .u-m-sm-20 {
    margin: calc(20 * 0.1rem) !important;
  }
  .u-m-sm-25 {
    margin: calc(25 * 0.1rem) !important;
  }
  .u-m-sm-30 {
    margin: calc(30 * 0.1rem) !important;
  }
  .u-m-sm-35 {
    margin: calc(35 * 0.1rem) !important;
  }
  .u-m-sm-40 {
    margin: calc(40 * 0.1rem) !important;
  }
  .u-m-sm-45 {
    margin: calc(45 * 0.1rem) !important;
  }
  .u-m-sm-50 {
    margin: calc(50 * 0.1rem) !important;
  }
  .u-m-sm-55 {
    margin: calc(55 * 0.1rem) !important;
  }
  .u-m-sm-60 {
    margin: calc(60 * 0.1rem) !important;
  }
  .u-m-sm-65 {
    margin: calc(65 * 0.1rem) !important;
  }
  .u-m-sm-70 {
    margin: calc(70 * 0.1rem) !important;
  }
  .u-m-sm-75 {
    margin: calc(75 * 0.1rem) !important;
  }
  .u-m-sm-80 {
    margin: calc(80 * 0.1rem) !important;
  }
  .u-m-sm-85 {
    margin: calc(85 * 0.1rem) !important;
  }
  .u-m-sm-90 {
    margin: calc(90 * 0.1rem) !important;
  }
  .u-m-sm-95 {
    margin: calc(95 * 0.1rem) !important;
  }
  .u-m-sm-100 {
    margin: calc(100 * 0.1rem) !important;
  }
  .u-mt-sm-0 {
    margin-top: calc(0 * 0.1rem) !important;
  }
  .u-mt-sm-5 {
    margin-top: calc(5 * 0.1rem) !important;
  }
  .u-mt-sm-10 {
    margin-top: calc(10 * 0.1rem) !important;
  }
  .u-mt-sm-15 {
    margin-top: calc(15 * 0.1rem) !important;
  }
  .u-mt-sm-20 {
    margin-top: calc(20 * 0.1rem) !important;
  }
  .u-mt-sm-25 {
    margin-top: calc(25 * 0.1rem) !important;
  }
  .u-mt-sm-30 {
    margin-top: calc(30 * 0.1rem) !important;
  }
  .u-mt-sm-35 {
    margin-top: calc(35 * 0.1rem) !important;
  }
  .u-mt-sm-40 {
    margin-top: calc(40 * 0.1rem) !important;
  }
  .u-mt-sm-45 {
    margin-top: calc(45 * 0.1rem) !important;
  }
  .u-mt-sm-50 {
    margin-top: calc(50 * 0.1rem) !important;
  }
  .u-mt-sm-55 {
    margin-top: calc(55 * 0.1rem) !important;
  }
  .u-mt-sm-60 {
    margin-top: calc(60 * 0.1rem) !important;
  }
  .u-mt-sm-65 {
    margin-top: calc(65 * 0.1rem) !important;
  }
  .u-mt-sm-70 {
    margin-top: calc(70 * 0.1rem) !important;
  }
  .u-mt-sm-75 {
    margin-top: calc(75 * 0.1rem) !important;
  }
  .u-mt-sm-80 {
    margin-top: calc(80 * 0.1rem) !important;
  }
  .u-mt-sm-85 {
    margin-top: calc(85 * 0.1rem) !important;
  }
  .u-mt-sm-90 {
    margin-top: calc(90 * 0.1rem) !important;
  }
  .u-mt-sm-95 {
    margin-top: calc(95 * 0.1rem) !important;
  }
  .u-mt-sm-100 {
    margin-top: calc(100 * 0.1rem) !important;
  }
  .u-mb-sm-0 {
    margin-bottom: calc(0 * 0.1rem) !important;
  }
  .u-mb-sm-5 {
    margin-bottom: calc(5 * 0.1rem) !important;
  }
  .u-mb-sm-10 {
    margin-bottom: calc(10 * 0.1rem) !important;
  }
  .u-mb-sm-15 {
    margin-bottom: calc(15 * 0.1rem) !important;
  }
  .u-mb-sm-20 {
    margin-bottom: calc(20 * 0.1rem) !important;
  }
  .u-mb-sm-25 {
    margin-bottom: calc(25 * 0.1rem) !important;
  }
  .u-mb-sm-30 {
    margin-bottom: calc(30 * 0.1rem) !important;
  }
  .u-mb-sm-35 {
    margin-bottom: calc(35 * 0.1rem) !important;
  }
  .u-mb-sm-40 {
    margin-bottom: calc(40 * 0.1rem) !important;
  }
  .u-mb-sm-45 {
    margin-bottom: calc(45 * 0.1rem) !important;
  }
  .u-mb-sm-50 {
    margin-bottom: calc(50 * 0.1rem) !important;
  }
  .u-mb-sm-55 {
    margin-bottom: calc(55 * 0.1rem) !important;
  }
  .u-mb-sm-60 {
    margin-bottom: calc(60 * 0.1rem) !important;
  }
  .u-mb-sm-65 {
    margin-bottom: calc(65 * 0.1rem) !important;
  }
  .u-mb-sm-70 {
    margin-bottom: calc(70 * 0.1rem) !important;
  }
  .u-mb-sm-75 {
    margin-bottom: calc(75 * 0.1rem) !important;
  }
  .u-mb-sm-80 {
    margin-bottom: calc(80 * 0.1rem) !important;
  }
  .u-mb-sm-85 {
    margin-bottom: calc(85 * 0.1rem) !important;
  }
  .u-mb-sm-90 {
    margin-bottom: calc(90 * 0.1rem) !important;
  }
  .u-mb-sm-95 {
    margin-bottom: calc(95 * 0.1rem) !important;
  }
  .u-mb-sm-100 {
    margin-bottom: calc(100 * 0.1rem) !important;
  }
  .u-ml-sm-0 {
    margin-left: calc(0 * 0.1rem) !important;
  }
  .u-ml-sm-5 {
    margin-left: calc(5 * 0.1rem) !important;
  }
  .u-ml-sm-10 {
    margin-left: calc(10 * 0.1rem) !important;
  }
  .u-ml-sm-15 {
    margin-left: calc(15 * 0.1rem) !important;
  }
  .u-ml-sm-20 {
    margin-left: calc(20 * 0.1rem) !important;
  }
  .u-ml-sm-25 {
    margin-left: calc(25 * 0.1rem) !important;
  }
  .u-ml-sm-30 {
    margin-left: calc(30 * 0.1rem) !important;
  }
  .u-ml-sm-35 {
    margin-left: calc(35 * 0.1rem) !important;
  }
  .u-ml-sm-40 {
    margin-left: calc(40 * 0.1rem) !important;
  }
  .u-ml-sm-45 {
    margin-left: calc(45 * 0.1rem) !important;
  }
  .u-ml-sm-50 {
    margin-left: calc(50 * 0.1rem) !important;
  }
  .u-ml-sm-55 {
    margin-left: calc(55 * 0.1rem) !important;
  }
  .u-ml-sm-60 {
    margin-left: calc(60 * 0.1rem) !important;
  }
  .u-ml-sm-65 {
    margin-left: calc(65 * 0.1rem) !important;
  }
  .u-ml-sm-70 {
    margin-left: calc(70 * 0.1rem) !important;
  }
  .u-ml-sm-75 {
    margin-left: calc(75 * 0.1rem) !important;
  }
  .u-ml-sm-80 {
    margin-left: calc(80 * 0.1rem) !important;
  }
  .u-ml-sm-85 {
    margin-left: calc(85 * 0.1rem) !important;
  }
  .u-ml-sm-90 {
    margin-left: calc(90 * 0.1rem) !important;
  }
  .u-ml-sm-95 {
    margin-left: calc(95 * 0.1rem) !important;
  }
  .u-ml-sm-100 {
    margin-left: calc(100 * 0.1rem) !important;
  }
  .u-mr-sm-0 {
    margin-right: calc(0 * 0.1rem) !important;
  }
  .u-mr-sm-5 {
    margin-right: calc(5 * 0.1rem) !important;
  }
  .u-mr-sm-10 {
    margin-right: calc(10 * 0.1rem) !important;
  }
  .u-mr-sm-15 {
    margin-right: calc(15 * 0.1rem) !important;
  }
  .u-mr-sm-20 {
    margin-right: calc(20 * 0.1rem) !important;
  }
  .u-mr-sm-25 {
    margin-right: calc(25 * 0.1rem) !important;
  }
  .u-mr-sm-30 {
    margin-right: calc(30 * 0.1rem) !important;
  }
  .u-mr-sm-35 {
    margin-right: calc(35 * 0.1rem) !important;
  }
  .u-mr-sm-40 {
    margin-right: calc(40 * 0.1rem) !important;
  }
  .u-mr-sm-45 {
    margin-right: calc(45 * 0.1rem) !important;
  }
  .u-mr-sm-50 {
    margin-right: calc(50 * 0.1rem) !important;
  }
  .u-mr-sm-55 {
    margin-right: calc(55 * 0.1rem) !important;
  }
  .u-mr-sm-60 {
    margin-right: calc(60 * 0.1rem) !important;
  }
  .u-mr-sm-65 {
    margin-right: calc(65 * 0.1rem) !important;
  }
  .u-mr-sm-70 {
    margin-right: calc(70 * 0.1rem) !important;
  }
  .u-mr-sm-75 {
    margin-right: calc(75 * 0.1rem) !important;
  }
  .u-mr-sm-80 {
    margin-right: calc(80 * 0.1rem) !important;
  }
  .u-mr-sm-85 {
    margin-right: calc(85 * 0.1rem) !important;
  }
  .u-mr-sm-90 {
    margin-right: calc(90 * 0.1rem) !important;
  }
  .u-mr-sm-95 {
    margin-right: calc(95 * 0.1rem) !important;
  }
  .u-mr-sm-100 {
    margin-right: calc(100 * 0.1rem) !important;
  }
}
.u-p-0 {
  padding: calc(0 * 0.1rem) !important;
}

.u-p-5 {
  padding: calc(5 * 0.1rem) !important;
}

.u-p-10 {
  padding: calc(10 * 0.1rem) !important;
}

.u-p-15 {
  padding: calc(15 * 0.1rem) !important;
}

.u-p-20 {
  padding: calc(20 * 0.1rem) !important;
}

.u-p-25 {
  padding: calc(25 * 0.1rem) !important;
}

.u-p-30 {
  padding: calc(30 * 0.1rem) !important;
}

.u-p-35 {
  padding: calc(35 * 0.1rem) !important;
}

.u-p-40 {
  padding: calc(40 * 0.1rem) !important;
}

.u-p-45 {
  padding: calc(45 * 0.1rem) !important;
}

.u-p-50 {
  padding: calc(50 * 0.1rem) !important;
}

.u-p-55 {
  padding: calc(55 * 0.1rem) !important;
}

.u-p-60 {
  padding: calc(60 * 0.1rem) !important;
}

.u-p-65 {
  padding: calc(65 * 0.1rem) !important;
}

.u-p-70 {
  padding: calc(70 * 0.1rem) !important;
}

.u-p-75 {
  padding: calc(75 * 0.1rem) !important;
}

.u-p-80 {
  padding: calc(80 * 0.1rem) !important;
}

.u-p-85 {
  padding: calc(85 * 0.1rem) !important;
}

.u-p-90 {
  padding: calc(90 * 0.1rem) !important;
}

.u-p-95 {
  padding: calc(95 * 0.1rem) !important;
}

.u-p-100 {
  padding: calc(100 * 0.1rem) !important;
}

.u-pt-0 {
  padding-top: calc(0 * 0.1rem) !important;
}

.u-pt-5 {
  padding-top: calc(5 * 0.1rem) !important;
}

.u-pt-10 {
  padding-top: calc(10 * 0.1rem) !important;
}

.u-pt-15 {
  padding-top: calc(15 * 0.1rem) !important;
}

.u-pt-20 {
  padding-top: calc(20 * 0.1rem) !important;
}

.u-pt-25 {
  padding-top: calc(25 * 0.1rem) !important;
}

.u-pt-30 {
  padding-top: calc(30 * 0.1rem) !important;
}

.u-pt-35 {
  padding-top: calc(35 * 0.1rem) !important;
}

.u-pt-40 {
  padding-top: calc(40 * 0.1rem) !important;
}

.u-pt-45 {
  padding-top: calc(45 * 0.1rem) !important;
}

.u-pt-50 {
  padding-top: calc(50 * 0.1rem) !important;
}

.u-pt-55 {
  padding-top: calc(55 * 0.1rem) !important;
}

.u-pt-60 {
  padding-top: calc(60 * 0.1rem) !important;
}

.u-pt-65 {
  padding-top: calc(65 * 0.1rem) !important;
}

.u-pt-70 {
  padding-top: calc(70 * 0.1rem) !important;
}

.u-pt-75 {
  padding-top: calc(75 * 0.1rem) !important;
}

.u-pt-80 {
  padding-top: calc(80 * 0.1rem) !important;
}

.u-pt-85 {
  padding-top: calc(85 * 0.1rem) !important;
}

.u-pt-90 {
  padding-top: calc(90 * 0.1rem) !important;
}

.u-pt-95 {
  padding-top: calc(95 * 0.1rem) !important;
}

.u-pt-100 {
  padding-top: calc(100 * 0.1rem) !important;
}

.u-pb-0 {
  padding-bottom: calc(0 * 0.1rem) !important;
}

.u-pb-5 {
  padding-bottom: calc(5 * 0.1rem) !important;
}

.u-pb-10 {
  padding-bottom: calc(10 * 0.1rem) !important;
}

.u-pb-15 {
  padding-bottom: calc(15 * 0.1rem) !important;
}

.u-pb-20 {
  padding-bottom: calc(20 * 0.1rem) !important;
}

.u-pb-25 {
  padding-bottom: calc(25 * 0.1rem) !important;
}

.u-pb-30 {
  padding-bottom: calc(30 * 0.1rem) !important;
}

.u-pb-35 {
  padding-bottom: calc(35 * 0.1rem) !important;
}

.u-pb-40 {
  padding-bottom: calc(40 * 0.1rem) !important;
}

.u-pb-45 {
  padding-bottom: calc(45 * 0.1rem) !important;
}

.u-pb-50 {
  padding-bottom: calc(50 * 0.1rem) !important;
}

.u-pb-55 {
  padding-bottom: calc(55 * 0.1rem) !important;
}

.u-pb-60 {
  padding-bottom: calc(60 * 0.1rem) !important;
}

.u-pb-65 {
  padding-bottom: calc(65 * 0.1rem) !important;
}

.u-pb-70 {
  padding-bottom: calc(70 * 0.1rem) !important;
}

.u-pb-75 {
  padding-bottom: calc(75 * 0.1rem) !important;
}

.u-pb-80 {
  padding-bottom: calc(80 * 0.1rem) !important;
}

.u-pb-85 {
  padding-bottom: calc(85 * 0.1rem) !important;
}

.u-pb-90 {
  padding-bottom: calc(90 * 0.1rem) !important;
}

.u-pb-95 {
  padding-bottom: calc(95 * 0.1rem) !important;
}

.u-pb-100 {
  padding-bottom: calc(100 * 0.1rem) !important;
}

.u-pl-0 {
  padding-left: calc(0 * 0.1rem) !important;
}

.u-pl-5 {
  padding-left: calc(5 * 0.1rem) !important;
}

.u-pl-10 {
  padding-left: calc(10 * 0.1rem) !important;
}

.u-pl-15 {
  padding-left: calc(15 * 0.1rem) !important;
}

.u-pl-20 {
  padding-left: calc(20 * 0.1rem) !important;
}

.u-pl-25 {
  padding-left: calc(25 * 0.1rem) !important;
}

.u-pl-30 {
  padding-left: calc(30 * 0.1rem) !important;
}

.u-pl-35 {
  padding-left: calc(35 * 0.1rem) !important;
}

.u-pl-40 {
  padding-left: calc(40 * 0.1rem) !important;
}

.u-pl-45 {
  padding-left: calc(45 * 0.1rem) !important;
}

.u-pl-50 {
  padding-left: calc(50 * 0.1rem) !important;
}

.u-pl-55 {
  padding-left: calc(55 * 0.1rem) !important;
}

.u-pl-60 {
  padding-left: calc(60 * 0.1rem) !important;
}

.u-pl-65 {
  padding-left: calc(65 * 0.1rem) !important;
}

.u-pl-70 {
  padding-left: calc(70 * 0.1rem) !important;
}

.u-pl-75 {
  padding-left: calc(75 * 0.1rem) !important;
}

.u-pl-80 {
  padding-left: calc(80 * 0.1rem) !important;
}

.u-pl-85 {
  padding-left: calc(85 * 0.1rem) !important;
}

.u-pl-90 {
  padding-left: calc(90 * 0.1rem) !important;
}

.u-pl-95 {
  padding-left: calc(95 * 0.1rem) !important;
}

.u-pl-100 {
  padding-left: calc(100 * 0.1rem) !important;
}

.u-pr-0 {
  padding-right: calc(0 * 0.1rem) !important;
}

.u-pr-5 {
  padding-right: calc(5 * 0.1rem) !important;
}

.u-pr-10 {
  padding-right: calc(10 * 0.1rem) !important;
}

.u-pr-15 {
  padding-right: calc(15 * 0.1rem) !important;
}

.u-pr-20 {
  padding-right: calc(20 * 0.1rem) !important;
}

.u-pr-25 {
  padding-right: calc(25 * 0.1rem) !important;
}

.u-pr-30 {
  padding-right: calc(30 * 0.1rem) !important;
}

.u-pr-35 {
  padding-right: calc(35 * 0.1rem) !important;
}

.u-pr-40 {
  padding-right: calc(40 * 0.1rem) !important;
}

.u-pr-45 {
  padding-right: calc(45 * 0.1rem) !important;
}

.u-pr-50 {
  padding-right: calc(50 * 0.1rem) !important;
}

.u-pr-55 {
  padding-right: calc(55 * 0.1rem) !important;
}

.u-pr-60 {
  padding-right: calc(60 * 0.1rem) !important;
}

.u-pr-65 {
  padding-right: calc(65 * 0.1rem) !important;
}

.u-pr-70 {
  padding-right: calc(70 * 0.1rem) !important;
}

.u-pr-75 {
  padding-right: calc(75 * 0.1rem) !important;
}

.u-pr-80 {
  padding-right: calc(80 * 0.1rem) !important;
}

.u-pr-85 {
  padding-right: calc(85 * 0.1rem) !important;
}

.u-pr-90 {
  padding-right: calc(90 * 0.1rem) !important;
}

.u-pr-95 {
  padding-right: calc(95 * 0.1rem) !important;
}

.u-pr-100 {
  padding-right: calc(100 * 0.1rem) !important;
}

@media (max-width: 1280px) {
  .u-p-xl-0 {
    padding: calc(0 * 0.1rem) !important;
  }
  .u-p-xl-5 {
    padding: calc(5 * 0.1rem) !important;
  }
  .u-p-xl-10 {
    padding: calc(10 * 0.1rem) !important;
  }
  .u-p-xl-15 {
    padding: calc(15 * 0.1rem) !important;
  }
  .u-p-xl-20 {
    padding: calc(20 * 0.1rem) !important;
  }
  .u-p-xl-25 {
    padding: calc(25 * 0.1rem) !important;
  }
  .u-p-xl-30 {
    padding: calc(30 * 0.1rem) !important;
  }
  .u-p-xl-35 {
    padding: calc(35 * 0.1rem) !important;
  }
  .u-p-xl-40 {
    padding: calc(40 * 0.1rem) !important;
  }
  .u-p-xl-45 {
    padding: calc(45 * 0.1rem) !important;
  }
  .u-p-xl-50 {
    padding: calc(50 * 0.1rem) !important;
  }
  .u-p-xl-55 {
    padding: calc(55 * 0.1rem) !important;
  }
  .u-p-xl-60 {
    padding: calc(60 * 0.1rem) !important;
  }
  .u-p-xl-65 {
    padding: calc(65 * 0.1rem) !important;
  }
  .u-p-xl-70 {
    padding: calc(70 * 0.1rem) !important;
  }
  .u-p-xl-75 {
    padding: calc(75 * 0.1rem) !important;
  }
  .u-p-xl-80 {
    padding: calc(80 * 0.1rem) !important;
  }
  .u-p-xl-85 {
    padding: calc(85 * 0.1rem) !important;
  }
  .u-p-xl-90 {
    padding: calc(90 * 0.1rem) !important;
  }
  .u-p-xl-95 {
    padding: calc(95 * 0.1rem) !important;
  }
  .u-p-xl-100 {
    padding: calc(100 * 0.1rem) !important;
  }
  .u-pt-xl-0 {
    padding-top: calc(0 * 0.1rem) !important;
  }
  .u-pt-xl-5 {
    padding-top: calc(5 * 0.1rem) !important;
  }
  .u-pt-xl-10 {
    padding-top: calc(10 * 0.1rem) !important;
  }
  .u-pt-xl-15 {
    padding-top: calc(15 * 0.1rem) !important;
  }
  .u-pt-xl-20 {
    padding-top: calc(20 * 0.1rem) !important;
  }
  .u-pt-xl-25 {
    padding-top: calc(25 * 0.1rem) !important;
  }
  .u-pt-xl-30 {
    padding-top: calc(30 * 0.1rem) !important;
  }
  .u-pt-xl-35 {
    padding-top: calc(35 * 0.1rem) !important;
  }
  .u-pt-xl-40 {
    padding-top: calc(40 * 0.1rem) !important;
  }
  .u-pt-xl-45 {
    padding-top: calc(45 * 0.1rem) !important;
  }
  .u-pt-xl-50 {
    padding-top: calc(50 * 0.1rem) !important;
  }
  .u-pt-xl-55 {
    padding-top: calc(55 * 0.1rem) !important;
  }
  .u-pt-xl-60 {
    padding-top: calc(60 * 0.1rem) !important;
  }
  .u-pt-xl-65 {
    padding-top: calc(65 * 0.1rem) !important;
  }
  .u-pt-xl-70 {
    padding-top: calc(70 * 0.1rem) !important;
  }
  .u-pt-xl-75 {
    padding-top: calc(75 * 0.1rem) !important;
  }
  .u-pt-xl-80 {
    padding-top: calc(80 * 0.1rem) !important;
  }
  .u-pt-xl-85 {
    padding-top: calc(85 * 0.1rem) !important;
  }
  .u-pt-xl-90 {
    padding-top: calc(90 * 0.1rem) !important;
  }
  .u-pt-xl-95 {
    padding-top: calc(95 * 0.1rem) !important;
  }
  .u-pt-xl-100 {
    padding-top: calc(100 * 0.1rem) !important;
  }
  .u-pb-xl-0 {
    padding-bottom: calc(0 * 0.1rem) !important;
  }
  .u-pb-xl-5 {
    padding-bottom: calc(5 * 0.1rem) !important;
  }
  .u-pb-xl-10 {
    padding-bottom: calc(10 * 0.1rem) !important;
  }
  .u-pb-xl-15 {
    padding-bottom: calc(15 * 0.1rem) !important;
  }
  .u-pb-xl-20 {
    padding-bottom: calc(20 * 0.1rem) !important;
  }
  .u-pb-xl-25 {
    padding-bottom: calc(25 * 0.1rem) !important;
  }
  .u-pb-xl-30 {
    padding-bottom: calc(30 * 0.1rem) !important;
  }
  .u-pb-xl-35 {
    padding-bottom: calc(35 * 0.1rem) !important;
  }
  .u-pb-xl-40 {
    padding-bottom: calc(40 * 0.1rem) !important;
  }
  .u-pb-xl-45 {
    padding-bottom: calc(45 * 0.1rem) !important;
  }
  .u-pb-xl-50 {
    padding-bottom: calc(50 * 0.1rem) !important;
  }
  .u-pb-xl-55 {
    padding-bottom: calc(55 * 0.1rem) !important;
  }
  .u-pb-xl-60 {
    padding-bottom: calc(60 * 0.1rem) !important;
  }
  .u-pb-xl-65 {
    padding-bottom: calc(65 * 0.1rem) !important;
  }
  .u-pb-xl-70 {
    padding-bottom: calc(70 * 0.1rem) !important;
  }
  .u-pb-xl-75 {
    padding-bottom: calc(75 * 0.1rem) !important;
  }
  .u-pb-xl-80 {
    padding-bottom: calc(80 * 0.1rem) !important;
  }
  .u-pb-xl-85 {
    padding-bottom: calc(85 * 0.1rem) !important;
  }
  .u-pb-xl-90 {
    padding-bottom: calc(90 * 0.1rem) !important;
  }
  .u-pb-xl-95 {
    padding-bottom: calc(95 * 0.1rem) !important;
  }
  .u-pb-xl-100 {
    padding-bottom: calc(100 * 0.1rem) !important;
  }
  .u-pl-xl-0 {
    padding-left: calc(0 * 0.1rem) !important;
  }
  .u-pl-xl-5 {
    padding-left: calc(5 * 0.1rem) !important;
  }
  .u-pl-xl-10 {
    padding-left: calc(10 * 0.1rem) !important;
  }
  .u-pl-xl-15 {
    padding-left: calc(15 * 0.1rem) !important;
  }
  .u-pl-xl-20 {
    padding-left: calc(20 * 0.1rem) !important;
  }
  .u-pl-xl-25 {
    padding-left: calc(25 * 0.1rem) !important;
  }
  .u-pl-xl-30 {
    padding-left: calc(30 * 0.1rem) !important;
  }
  .u-pl-xl-35 {
    padding-left: calc(35 * 0.1rem) !important;
  }
  .u-pl-xl-40 {
    padding-left: calc(40 * 0.1rem) !important;
  }
  .u-pl-xl-45 {
    padding-left: calc(45 * 0.1rem) !important;
  }
  .u-pl-xl-50 {
    padding-left: calc(50 * 0.1rem) !important;
  }
  .u-pl-xl-55 {
    padding-left: calc(55 * 0.1rem) !important;
  }
  .u-pl-xl-60 {
    padding-left: calc(60 * 0.1rem) !important;
  }
  .u-pl-xl-65 {
    padding-left: calc(65 * 0.1rem) !important;
  }
  .u-pl-xl-70 {
    padding-left: calc(70 * 0.1rem) !important;
  }
  .u-pl-xl-75 {
    padding-left: calc(75 * 0.1rem) !important;
  }
  .u-pl-xl-80 {
    padding-left: calc(80 * 0.1rem) !important;
  }
  .u-pl-xl-85 {
    padding-left: calc(85 * 0.1rem) !important;
  }
  .u-pl-xl-90 {
    padding-left: calc(90 * 0.1rem) !important;
  }
  .u-pl-xl-95 {
    padding-left: calc(95 * 0.1rem) !important;
  }
  .u-pl-xl-100 {
    padding-left: calc(100 * 0.1rem) !important;
  }
  .u-pr-xl-0 {
    padding-right: calc(0 * 0.1rem) !important;
  }
  .u-pr-xl-5 {
    padding-right: calc(5 * 0.1rem) !important;
  }
  .u-pr-xl-10 {
    padding-right: calc(10 * 0.1rem) !important;
  }
  .u-pr-xl-15 {
    padding-right: calc(15 * 0.1rem) !important;
  }
  .u-pr-xl-20 {
    padding-right: calc(20 * 0.1rem) !important;
  }
  .u-pr-xl-25 {
    padding-right: calc(25 * 0.1rem) !important;
  }
  .u-pr-xl-30 {
    padding-right: calc(30 * 0.1rem) !important;
  }
  .u-pr-xl-35 {
    padding-right: calc(35 * 0.1rem) !important;
  }
  .u-pr-xl-40 {
    padding-right: calc(40 * 0.1rem) !important;
  }
  .u-pr-xl-45 {
    padding-right: calc(45 * 0.1rem) !important;
  }
  .u-pr-xl-50 {
    padding-right: calc(50 * 0.1rem) !important;
  }
  .u-pr-xl-55 {
    padding-right: calc(55 * 0.1rem) !important;
  }
  .u-pr-xl-60 {
    padding-right: calc(60 * 0.1rem) !important;
  }
  .u-pr-xl-65 {
    padding-right: calc(65 * 0.1rem) !important;
  }
  .u-pr-xl-70 {
    padding-right: calc(70 * 0.1rem) !important;
  }
  .u-pr-xl-75 {
    padding-right: calc(75 * 0.1rem) !important;
  }
  .u-pr-xl-80 {
    padding-right: calc(80 * 0.1rem) !important;
  }
  .u-pr-xl-85 {
    padding-right: calc(85 * 0.1rem) !important;
  }
  .u-pr-xl-90 {
    padding-right: calc(90 * 0.1rem) !important;
  }
  .u-pr-xl-95 {
    padding-right: calc(95 * 0.1rem) !important;
  }
  .u-pr-xl-100 {
    padding-right: calc(100 * 0.1rem) !important;
  }
}
@media (max-width: 960px) {
  .u-p-lg-0 {
    padding: calc(0 * 0.1rem) !important;
  }
  .u-p-lg-5 {
    padding: calc(5 * 0.1rem) !important;
  }
  .u-p-lg-10 {
    padding: calc(10 * 0.1rem) !important;
  }
  .u-p-lg-15 {
    padding: calc(15 * 0.1rem) !important;
  }
  .u-p-lg-20 {
    padding: calc(20 * 0.1rem) !important;
  }
  .u-p-lg-25 {
    padding: calc(25 * 0.1rem) !important;
  }
  .u-p-lg-30 {
    padding: calc(30 * 0.1rem) !important;
  }
  .u-p-lg-35 {
    padding: calc(35 * 0.1rem) !important;
  }
  .u-p-lg-40 {
    padding: calc(40 * 0.1rem) !important;
  }
  .u-p-lg-45 {
    padding: calc(45 * 0.1rem) !important;
  }
  .u-p-lg-50 {
    padding: calc(50 * 0.1rem) !important;
  }
  .u-p-lg-55 {
    padding: calc(55 * 0.1rem) !important;
  }
  .u-p-lg-60 {
    padding: calc(60 * 0.1rem) !important;
  }
  .u-p-lg-65 {
    padding: calc(65 * 0.1rem) !important;
  }
  .u-p-lg-70 {
    padding: calc(70 * 0.1rem) !important;
  }
  .u-p-lg-75 {
    padding: calc(75 * 0.1rem) !important;
  }
  .u-p-lg-80 {
    padding: calc(80 * 0.1rem) !important;
  }
  .u-p-lg-85 {
    padding: calc(85 * 0.1rem) !important;
  }
  .u-p-lg-90 {
    padding: calc(90 * 0.1rem) !important;
  }
  .u-p-lg-95 {
    padding: calc(95 * 0.1rem) !important;
  }
  .u-p-lg-100 {
    padding: calc(100 * 0.1rem) !important;
  }
  .u-pt-lg-0 {
    padding-top: calc(0 * 0.1rem) !important;
  }
  .u-pt-lg-5 {
    padding-top: calc(5 * 0.1rem) !important;
  }
  .u-pt-lg-10 {
    padding-top: calc(10 * 0.1rem) !important;
  }
  .u-pt-lg-15 {
    padding-top: calc(15 * 0.1rem) !important;
  }
  .u-pt-lg-20 {
    padding-top: calc(20 * 0.1rem) !important;
  }
  .u-pt-lg-25 {
    padding-top: calc(25 * 0.1rem) !important;
  }
  .u-pt-lg-30 {
    padding-top: calc(30 * 0.1rem) !important;
  }
  .u-pt-lg-35 {
    padding-top: calc(35 * 0.1rem) !important;
  }
  .u-pt-lg-40 {
    padding-top: calc(40 * 0.1rem) !important;
  }
  .u-pt-lg-45 {
    padding-top: calc(45 * 0.1rem) !important;
  }
  .u-pt-lg-50 {
    padding-top: calc(50 * 0.1rem) !important;
  }
  .u-pt-lg-55 {
    padding-top: calc(55 * 0.1rem) !important;
  }
  .u-pt-lg-60 {
    padding-top: calc(60 * 0.1rem) !important;
  }
  .u-pt-lg-65 {
    padding-top: calc(65 * 0.1rem) !important;
  }
  .u-pt-lg-70 {
    padding-top: calc(70 * 0.1rem) !important;
  }
  .u-pt-lg-75 {
    padding-top: calc(75 * 0.1rem) !important;
  }
  .u-pt-lg-80 {
    padding-top: calc(80 * 0.1rem) !important;
  }
  .u-pt-lg-85 {
    padding-top: calc(85 * 0.1rem) !important;
  }
  .u-pt-lg-90 {
    padding-top: calc(90 * 0.1rem) !important;
  }
  .u-pt-lg-95 {
    padding-top: calc(95 * 0.1rem) !important;
  }
  .u-pt-lg-100 {
    padding-top: calc(100 * 0.1rem) !important;
  }
  .u-pb-lg-0 {
    padding-bottom: calc(0 * 0.1rem) !important;
  }
  .u-pb-lg-5 {
    padding-bottom: calc(5 * 0.1rem) !important;
  }
  .u-pb-lg-10 {
    padding-bottom: calc(10 * 0.1rem) !important;
  }
  .u-pb-lg-15 {
    padding-bottom: calc(15 * 0.1rem) !important;
  }
  .u-pb-lg-20 {
    padding-bottom: calc(20 * 0.1rem) !important;
  }
  .u-pb-lg-25 {
    padding-bottom: calc(25 * 0.1rem) !important;
  }
  .u-pb-lg-30 {
    padding-bottom: calc(30 * 0.1rem) !important;
  }
  .u-pb-lg-35 {
    padding-bottom: calc(35 * 0.1rem) !important;
  }
  .u-pb-lg-40 {
    padding-bottom: calc(40 * 0.1rem) !important;
  }
  .u-pb-lg-45 {
    padding-bottom: calc(45 * 0.1rem) !important;
  }
  .u-pb-lg-50 {
    padding-bottom: calc(50 * 0.1rem) !important;
  }
  .u-pb-lg-55 {
    padding-bottom: calc(55 * 0.1rem) !important;
  }
  .u-pb-lg-60 {
    padding-bottom: calc(60 * 0.1rem) !important;
  }
  .u-pb-lg-65 {
    padding-bottom: calc(65 * 0.1rem) !important;
  }
  .u-pb-lg-70 {
    padding-bottom: calc(70 * 0.1rem) !important;
  }
  .u-pb-lg-75 {
    padding-bottom: calc(75 * 0.1rem) !important;
  }
  .u-pb-lg-80 {
    padding-bottom: calc(80 * 0.1rem) !important;
  }
  .u-pb-lg-85 {
    padding-bottom: calc(85 * 0.1rem) !important;
  }
  .u-pb-lg-90 {
    padding-bottom: calc(90 * 0.1rem) !important;
  }
  .u-pb-lg-95 {
    padding-bottom: calc(95 * 0.1rem) !important;
  }
  .u-pb-lg-100 {
    padding-bottom: calc(100 * 0.1rem) !important;
  }
  .u-pl-lg-0 {
    padding-left: calc(0 * 0.1rem) !important;
  }
  .u-pl-lg-5 {
    padding-left: calc(5 * 0.1rem) !important;
  }
  .u-pl-lg-10 {
    padding-left: calc(10 * 0.1rem) !important;
  }
  .u-pl-lg-15 {
    padding-left: calc(15 * 0.1rem) !important;
  }
  .u-pl-lg-20 {
    padding-left: calc(20 * 0.1rem) !important;
  }
  .u-pl-lg-25 {
    padding-left: calc(25 * 0.1rem) !important;
  }
  .u-pl-lg-30 {
    padding-left: calc(30 * 0.1rem) !important;
  }
  .u-pl-lg-35 {
    padding-left: calc(35 * 0.1rem) !important;
  }
  .u-pl-lg-40 {
    padding-left: calc(40 * 0.1rem) !important;
  }
  .u-pl-lg-45 {
    padding-left: calc(45 * 0.1rem) !important;
  }
  .u-pl-lg-50 {
    padding-left: calc(50 * 0.1rem) !important;
  }
  .u-pl-lg-55 {
    padding-left: calc(55 * 0.1rem) !important;
  }
  .u-pl-lg-60 {
    padding-left: calc(60 * 0.1rem) !important;
  }
  .u-pl-lg-65 {
    padding-left: calc(65 * 0.1rem) !important;
  }
  .u-pl-lg-70 {
    padding-left: calc(70 * 0.1rem) !important;
  }
  .u-pl-lg-75 {
    padding-left: calc(75 * 0.1rem) !important;
  }
  .u-pl-lg-80 {
    padding-left: calc(80 * 0.1rem) !important;
  }
  .u-pl-lg-85 {
    padding-left: calc(85 * 0.1rem) !important;
  }
  .u-pl-lg-90 {
    padding-left: calc(90 * 0.1rem) !important;
  }
  .u-pl-lg-95 {
    padding-left: calc(95 * 0.1rem) !important;
  }
  .u-pl-lg-100 {
    padding-left: calc(100 * 0.1rem) !important;
  }
  .u-pr-lg-0 {
    padding-right: calc(0 * 0.1rem) !important;
  }
  .u-pr-lg-5 {
    padding-right: calc(5 * 0.1rem) !important;
  }
  .u-pr-lg-10 {
    padding-right: calc(10 * 0.1rem) !important;
  }
  .u-pr-lg-15 {
    padding-right: calc(15 * 0.1rem) !important;
  }
  .u-pr-lg-20 {
    padding-right: calc(20 * 0.1rem) !important;
  }
  .u-pr-lg-25 {
    padding-right: calc(25 * 0.1rem) !important;
  }
  .u-pr-lg-30 {
    padding-right: calc(30 * 0.1rem) !important;
  }
  .u-pr-lg-35 {
    padding-right: calc(35 * 0.1rem) !important;
  }
  .u-pr-lg-40 {
    padding-right: calc(40 * 0.1rem) !important;
  }
  .u-pr-lg-45 {
    padding-right: calc(45 * 0.1rem) !important;
  }
  .u-pr-lg-50 {
    padding-right: calc(50 * 0.1rem) !important;
  }
  .u-pr-lg-55 {
    padding-right: calc(55 * 0.1rem) !important;
  }
  .u-pr-lg-60 {
    padding-right: calc(60 * 0.1rem) !important;
  }
  .u-pr-lg-65 {
    padding-right: calc(65 * 0.1rem) !important;
  }
  .u-pr-lg-70 {
    padding-right: calc(70 * 0.1rem) !important;
  }
  .u-pr-lg-75 {
    padding-right: calc(75 * 0.1rem) !important;
  }
  .u-pr-lg-80 {
    padding-right: calc(80 * 0.1rem) !important;
  }
  .u-pr-lg-85 {
    padding-right: calc(85 * 0.1rem) !important;
  }
  .u-pr-lg-90 {
    padding-right: calc(90 * 0.1rem) !important;
  }
  .u-pr-lg-95 {
    padding-right: calc(95 * 0.1rem) !important;
  }
  .u-pr-lg-100 {
    padding-right: calc(100 * 0.1rem) !important;
  }
}
@media (max-width: 768px) {
  .u-p-md-0 {
    padding: calc(0 * 0.1rem) !important;
  }
  .u-p-md-5 {
    padding: calc(5 * 0.1rem) !important;
  }
  .u-p-md-10 {
    padding: calc(10 * 0.1rem) !important;
  }
  .u-p-md-15 {
    padding: calc(15 * 0.1rem) !important;
  }
  .u-p-md-20 {
    padding: calc(20 * 0.1rem) !important;
  }
  .u-p-md-25 {
    padding: calc(25 * 0.1rem) !important;
  }
  .u-p-md-30 {
    padding: calc(30 * 0.1rem) !important;
  }
  .u-p-md-35 {
    padding: calc(35 * 0.1rem) !important;
  }
  .u-p-md-40 {
    padding: calc(40 * 0.1rem) !important;
  }
  .u-p-md-45 {
    padding: calc(45 * 0.1rem) !important;
  }
  .u-p-md-50 {
    padding: calc(50 * 0.1rem) !important;
  }
  .u-p-md-55 {
    padding: calc(55 * 0.1rem) !important;
  }
  .u-p-md-60 {
    padding: calc(60 * 0.1rem) !important;
  }
  .u-p-md-65 {
    padding: calc(65 * 0.1rem) !important;
  }
  .u-p-md-70 {
    padding: calc(70 * 0.1rem) !important;
  }
  .u-p-md-75 {
    padding: calc(75 * 0.1rem) !important;
  }
  .u-p-md-80 {
    padding: calc(80 * 0.1rem) !important;
  }
  .u-p-md-85 {
    padding: calc(85 * 0.1rem) !important;
  }
  .u-p-md-90 {
    padding: calc(90 * 0.1rem) !important;
  }
  .u-p-md-95 {
    padding: calc(95 * 0.1rem) !important;
  }
  .u-p-md-100 {
    padding: calc(100 * 0.1rem) !important;
  }
  .u-pt-md-0 {
    padding-top: calc(0 * 0.1rem) !important;
  }
  .u-pt-md-5 {
    padding-top: calc(5 * 0.1rem) !important;
  }
  .u-pt-md-10 {
    padding-top: calc(10 * 0.1rem) !important;
  }
  .u-pt-md-15 {
    padding-top: calc(15 * 0.1rem) !important;
  }
  .u-pt-md-20 {
    padding-top: calc(20 * 0.1rem) !important;
  }
  .u-pt-md-25 {
    padding-top: calc(25 * 0.1rem) !important;
  }
  .u-pt-md-30 {
    padding-top: calc(30 * 0.1rem) !important;
  }
  .u-pt-md-35 {
    padding-top: calc(35 * 0.1rem) !important;
  }
  .u-pt-md-40 {
    padding-top: calc(40 * 0.1rem) !important;
  }
  .u-pt-md-45 {
    padding-top: calc(45 * 0.1rem) !important;
  }
  .u-pt-md-50 {
    padding-top: calc(50 * 0.1rem) !important;
  }
  .u-pt-md-55 {
    padding-top: calc(55 * 0.1rem) !important;
  }
  .u-pt-md-60 {
    padding-top: calc(60 * 0.1rem) !important;
  }
  .u-pt-md-65 {
    padding-top: calc(65 * 0.1rem) !important;
  }
  .u-pt-md-70 {
    padding-top: calc(70 * 0.1rem) !important;
  }
  .u-pt-md-75 {
    padding-top: calc(75 * 0.1rem) !important;
  }
  .u-pt-md-80 {
    padding-top: calc(80 * 0.1rem) !important;
  }
  .u-pt-md-85 {
    padding-top: calc(85 * 0.1rem) !important;
  }
  .u-pt-md-90 {
    padding-top: calc(90 * 0.1rem) !important;
  }
  .u-pt-md-95 {
    padding-top: calc(95 * 0.1rem) !important;
  }
  .u-pt-md-100 {
    padding-top: calc(100 * 0.1rem) !important;
  }
  .u-pb-md-0 {
    padding-bottom: calc(0 * 0.1rem) !important;
  }
  .u-pb-md-5 {
    padding-bottom: calc(5 * 0.1rem) !important;
  }
  .u-pb-md-10 {
    padding-bottom: calc(10 * 0.1rem) !important;
  }
  .u-pb-md-15 {
    padding-bottom: calc(15 * 0.1rem) !important;
  }
  .u-pb-md-20 {
    padding-bottom: calc(20 * 0.1rem) !important;
  }
  .u-pb-md-25 {
    padding-bottom: calc(25 * 0.1rem) !important;
  }
  .u-pb-md-30 {
    padding-bottom: calc(30 * 0.1rem) !important;
  }
  .u-pb-md-35 {
    padding-bottom: calc(35 * 0.1rem) !important;
  }
  .u-pb-md-40 {
    padding-bottom: calc(40 * 0.1rem) !important;
  }
  .u-pb-md-45 {
    padding-bottom: calc(45 * 0.1rem) !important;
  }
  .u-pb-md-50 {
    padding-bottom: calc(50 * 0.1rem) !important;
  }
  .u-pb-md-55 {
    padding-bottom: calc(55 * 0.1rem) !important;
  }
  .u-pb-md-60 {
    padding-bottom: calc(60 * 0.1rem) !important;
  }
  .u-pb-md-65 {
    padding-bottom: calc(65 * 0.1rem) !important;
  }
  .u-pb-md-70 {
    padding-bottom: calc(70 * 0.1rem) !important;
  }
  .u-pb-md-75 {
    padding-bottom: calc(75 * 0.1rem) !important;
  }
  .u-pb-md-80 {
    padding-bottom: calc(80 * 0.1rem) !important;
  }
  .u-pb-md-85 {
    padding-bottom: calc(85 * 0.1rem) !important;
  }
  .u-pb-md-90 {
    padding-bottom: calc(90 * 0.1rem) !important;
  }
  .u-pb-md-95 {
    padding-bottom: calc(95 * 0.1rem) !important;
  }
  .u-pb-md-100 {
    padding-bottom: calc(100 * 0.1rem) !important;
  }
  .u-pl-md-0 {
    padding-left: calc(0 * 0.1rem) !important;
  }
  .u-pl-md-5 {
    padding-left: calc(5 * 0.1rem) !important;
  }
  .u-pl-md-10 {
    padding-left: calc(10 * 0.1rem) !important;
  }
  .u-pl-md-15 {
    padding-left: calc(15 * 0.1rem) !important;
  }
  .u-pl-md-20 {
    padding-left: calc(20 * 0.1rem) !important;
  }
  .u-pl-md-25 {
    padding-left: calc(25 * 0.1rem) !important;
  }
  .u-pl-md-30 {
    padding-left: calc(30 * 0.1rem) !important;
  }
  .u-pl-md-35 {
    padding-left: calc(35 * 0.1rem) !important;
  }
  .u-pl-md-40 {
    padding-left: calc(40 * 0.1rem) !important;
  }
  .u-pl-md-45 {
    padding-left: calc(45 * 0.1rem) !important;
  }
  .u-pl-md-50 {
    padding-left: calc(50 * 0.1rem) !important;
  }
  .u-pl-md-55 {
    padding-left: calc(55 * 0.1rem) !important;
  }
  .u-pl-md-60 {
    padding-left: calc(60 * 0.1rem) !important;
  }
  .u-pl-md-65 {
    padding-left: calc(65 * 0.1rem) !important;
  }
  .u-pl-md-70 {
    padding-left: calc(70 * 0.1rem) !important;
  }
  .u-pl-md-75 {
    padding-left: calc(75 * 0.1rem) !important;
  }
  .u-pl-md-80 {
    padding-left: calc(80 * 0.1rem) !important;
  }
  .u-pl-md-85 {
    padding-left: calc(85 * 0.1rem) !important;
  }
  .u-pl-md-90 {
    padding-left: calc(90 * 0.1rem) !important;
  }
  .u-pl-md-95 {
    padding-left: calc(95 * 0.1rem) !important;
  }
  .u-pl-md-100 {
    padding-left: calc(100 * 0.1rem) !important;
  }
  .u-pr-md-0 {
    padding-right: calc(0 * 0.1rem) !important;
  }
  .u-pr-md-5 {
    padding-right: calc(5 * 0.1rem) !important;
  }
  .u-pr-md-10 {
    padding-right: calc(10 * 0.1rem) !important;
  }
  .u-pr-md-15 {
    padding-right: calc(15 * 0.1rem) !important;
  }
  .u-pr-md-20 {
    padding-right: calc(20 * 0.1rem) !important;
  }
  .u-pr-md-25 {
    padding-right: calc(25 * 0.1rem) !important;
  }
  .u-pr-md-30 {
    padding-right: calc(30 * 0.1rem) !important;
  }
  .u-pr-md-35 {
    padding-right: calc(35 * 0.1rem) !important;
  }
  .u-pr-md-40 {
    padding-right: calc(40 * 0.1rem) !important;
  }
  .u-pr-md-45 {
    padding-right: calc(45 * 0.1rem) !important;
  }
  .u-pr-md-50 {
    padding-right: calc(50 * 0.1rem) !important;
  }
  .u-pr-md-55 {
    padding-right: calc(55 * 0.1rem) !important;
  }
  .u-pr-md-60 {
    padding-right: calc(60 * 0.1rem) !important;
  }
  .u-pr-md-65 {
    padding-right: calc(65 * 0.1rem) !important;
  }
  .u-pr-md-70 {
    padding-right: calc(70 * 0.1rem) !important;
  }
  .u-pr-md-75 {
    padding-right: calc(75 * 0.1rem) !important;
  }
  .u-pr-md-80 {
    padding-right: calc(80 * 0.1rem) !important;
  }
  .u-pr-md-85 {
    padding-right: calc(85 * 0.1rem) !important;
  }
  .u-pr-md-90 {
    padding-right: calc(90 * 0.1rem) !important;
  }
  .u-pr-md-95 {
    padding-right: calc(95 * 0.1rem) !important;
  }
  .u-pr-md-100 {
    padding-right: calc(100 * 0.1rem) !important;
  }
}
@media (max-width: 599px) {
  .u-p-sm-0 {
    padding: calc(0 * 0.1rem) !important;
  }
  .u-p-sm-5 {
    padding: calc(5 * 0.1rem) !important;
  }
  .u-p-sm-10 {
    padding: calc(10 * 0.1rem) !important;
  }
  .u-p-sm-15 {
    padding: calc(15 * 0.1rem) !important;
  }
  .u-p-sm-20 {
    padding: calc(20 * 0.1rem) !important;
  }
  .u-p-sm-25 {
    padding: calc(25 * 0.1rem) !important;
  }
  .u-p-sm-30 {
    padding: calc(30 * 0.1rem) !important;
  }
  .u-p-sm-35 {
    padding: calc(35 * 0.1rem) !important;
  }
  .u-p-sm-40 {
    padding: calc(40 * 0.1rem) !important;
  }
  .u-p-sm-45 {
    padding: calc(45 * 0.1rem) !important;
  }
  .u-p-sm-50 {
    padding: calc(50 * 0.1rem) !important;
  }
  .u-p-sm-55 {
    padding: calc(55 * 0.1rem) !important;
  }
  .u-p-sm-60 {
    padding: calc(60 * 0.1rem) !important;
  }
  .u-p-sm-65 {
    padding: calc(65 * 0.1rem) !important;
  }
  .u-p-sm-70 {
    padding: calc(70 * 0.1rem) !important;
  }
  .u-p-sm-75 {
    padding: calc(75 * 0.1rem) !important;
  }
  .u-p-sm-80 {
    padding: calc(80 * 0.1rem) !important;
  }
  .u-p-sm-85 {
    padding: calc(85 * 0.1rem) !important;
  }
  .u-p-sm-90 {
    padding: calc(90 * 0.1rem) !important;
  }
  .u-p-sm-95 {
    padding: calc(95 * 0.1rem) !important;
  }
  .u-p-sm-100 {
    padding: calc(100 * 0.1rem) !important;
  }
  .u-pt-sm-0 {
    padding-top: calc(0 * 0.1rem) !important;
  }
  .u-pt-sm-5 {
    padding-top: calc(5 * 0.1rem) !important;
  }
  .u-pt-sm-10 {
    padding-top: calc(10 * 0.1rem) !important;
  }
  .u-pt-sm-15 {
    padding-top: calc(15 * 0.1rem) !important;
  }
  .u-pt-sm-20 {
    padding-top: calc(20 * 0.1rem) !important;
  }
  .u-pt-sm-25 {
    padding-top: calc(25 * 0.1rem) !important;
  }
  .u-pt-sm-30 {
    padding-top: calc(30 * 0.1rem) !important;
  }
  .u-pt-sm-35 {
    padding-top: calc(35 * 0.1rem) !important;
  }
  .u-pt-sm-40 {
    padding-top: calc(40 * 0.1rem) !important;
  }
  .u-pt-sm-45 {
    padding-top: calc(45 * 0.1rem) !important;
  }
  .u-pt-sm-50 {
    padding-top: calc(50 * 0.1rem) !important;
  }
  .u-pt-sm-55 {
    padding-top: calc(55 * 0.1rem) !important;
  }
  .u-pt-sm-60 {
    padding-top: calc(60 * 0.1rem) !important;
  }
  .u-pt-sm-65 {
    padding-top: calc(65 * 0.1rem) !important;
  }
  .u-pt-sm-70 {
    padding-top: calc(70 * 0.1rem) !important;
  }
  .u-pt-sm-75 {
    padding-top: calc(75 * 0.1rem) !important;
  }
  .u-pt-sm-80 {
    padding-top: calc(80 * 0.1rem) !important;
  }
  .u-pt-sm-85 {
    padding-top: calc(85 * 0.1rem) !important;
  }
  .u-pt-sm-90 {
    padding-top: calc(90 * 0.1rem) !important;
  }
  .u-pt-sm-95 {
    padding-top: calc(95 * 0.1rem) !important;
  }
  .u-pt-sm-100 {
    padding-top: calc(100 * 0.1rem) !important;
  }
  .u-pb-sm-0 {
    padding-bottom: calc(0 * 0.1rem) !important;
  }
  .u-pb-sm-5 {
    padding-bottom: calc(5 * 0.1rem) !important;
  }
  .u-pb-sm-10 {
    padding-bottom: calc(10 * 0.1rem) !important;
  }
  .u-pb-sm-15 {
    padding-bottom: calc(15 * 0.1rem) !important;
  }
  .u-pb-sm-20 {
    padding-bottom: calc(20 * 0.1rem) !important;
  }
  .u-pb-sm-25 {
    padding-bottom: calc(25 * 0.1rem) !important;
  }
  .u-pb-sm-30 {
    padding-bottom: calc(30 * 0.1rem) !important;
  }
  .u-pb-sm-35 {
    padding-bottom: calc(35 * 0.1rem) !important;
  }
  .u-pb-sm-40 {
    padding-bottom: calc(40 * 0.1rem) !important;
  }
  .u-pb-sm-45 {
    padding-bottom: calc(45 * 0.1rem) !important;
  }
  .u-pb-sm-50 {
    padding-bottom: calc(50 * 0.1rem) !important;
  }
  .u-pb-sm-55 {
    padding-bottom: calc(55 * 0.1rem) !important;
  }
  .u-pb-sm-60 {
    padding-bottom: calc(60 * 0.1rem) !important;
  }
  .u-pb-sm-65 {
    padding-bottom: calc(65 * 0.1rem) !important;
  }
  .u-pb-sm-70 {
    padding-bottom: calc(70 * 0.1rem) !important;
  }
  .u-pb-sm-75 {
    padding-bottom: calc(75 * 0.1rem) !important;
  }
  .u-pb-sm-80 {
    padding-bottom: calc(80 * 0.1rem) !important;
  }
  .u-pb-sm-85 {
    padding-bottom: calc(85 * 0.1rem) !important;
  }
  .u-pb-sm-90 {
    padding-bottom: calc(90 * 0.1rem) !important;
  }
  .u-pb-sm-95 {
    padding-bottom: calc(95 * 0.1rem) !important;
  }
  .u-pb-sm-100 {
    padding-bottom: calc(100 * 0.1rem) !important;
  }
  .u-pl-sm-0 {
    padding-left: calc(0 * 0.1rem) !important;
  }
  .u-pl-sm-5 {
    padding-left: calc(5 * 0.1rem) !important;
  }
  .u-pl-sm-10 {
    padding-left: calc(10 * 0.1rem) !important;
  }
  .u-pl-sm-15 {
    padding-left: calc(15 * 0.1rem) !important;
  }
  .u-pl-sm-20 {
    padding-left: calc(20 * 0.1rem) !important;
  }
  .u-pl-sm-25 {
    padding-left: calc(25 * 0.1rem) !important;
  }
  .u-pl-sm-30 {
    padding-left: calc(30 * 0.1rem) !important;
  }
  .u-pl-sm-35 {
    padding-left: calc(35 * 0.1rem) !important;
  }
  .u-pl-sm-40 {
    padding-left: calc(40 * 0.1rem) !important;
  }
  .u-pl-sm-45 {
    padding-left: calc(45 * 0.1rem) !important;
  }
  .u-pl-sm-50 {
    padding-left: calc(50 * 0.1rem) !important;
  }
  .u-pl-sm-55 {
    padding-left: calc(55 * 0.1rem) !important;
  }
  .u-pl-sm-60 {
    padding-left: calc(60 * 0.1rem) !important;
  }
  .u-pl-sm-65 {
    padding-left: calc(65 * 0.1rem) !important;
  }
  .u-pl-sm-70 {
    padding-left: calc(70 * 0.1rem) !important;
  }
  .u-pl-sm-75 {
    padding-left: calc(75 * 0.1rem) !important;
  }
  .u-pl-sm-80 {
    padding-left: calc(80 * 0.1rem) !important;
  }
  .u-pl-sm-85 {
    padding-left: calc(85 * 0.1rem) !important;
  }
  .u-pl-sm-90 {
    padding-left: calc(90 * 0.1rem) !important;
  }
  .u-pl-sm-95 {
    padding-left: calc(95 * 0.1rem) !important;
  }
  .u-pl-sm-100 {
    padding-left: calc(100 * 0.1rem) !important;
  }
  .u-pr-sm-0 {
    padding-right: calc(0 * 0.1rem) !important;
  }
  .u-pr-sm-5 {
    padding-right: calc(5 * 0.1rem) !important;
  }
  .u-pr-sm-10 {
    padding-right: calc(10 * 0.1rem) !important;
  }
  .u-pr-sm-15 {
    padding-right: calc(15 * 0.1rem) !important;
  }
  .u-pr-sm-20 {
    padding-right: calc(20 * 0.1rem) !important;
  }
  .u-pr-sm-25 {
    padding-right: calc(25 * 0.1rem) !important;
  }
  .u-pr-sm-30 {
    padding-right: calc(30 * 0.1rem) !important;
  }
  .u-pr-sm-35 {
    padding-right: calc(35 * 0.1rem) !important;
  }
  .u-pr-sm-40 {
    padding-right: calc(40 * 0.1rem) !important;
  }
  .u-pr-sm-45 {
    padding-right: calc(45 * 0.1rem) !important;
  }
  .u-pr-sm-50 {
    padding-right: calc(50 * 0.1rem) !important;
  }
  .u-pr-sm-55 {
    padding-right: calc(55 * 0.1rem) !important;
  }
  .u-pr-sm-60 {
    padding-right: calc(60 * 0.1rem) !important;
  }
  .u-pr-sm-65 {
    padding-right: calc(65 * 0.1rem) !important;
  }
  .u-pr-sm-70 {
    padding-right: calc(70 * 0.1rem) !important;
  }
  .u-pr-sm-75 {
    padding-right: calc(75 * 0.1rem) !important;
  }
  .u-pr-sm-80 {
    padding-right: calc(80 * 0.1rem) !important;
  }
  .u-pr-sm-85 {
    padding-right: calc(85 * 0.1rem) !important;
  }
  .u-pr-sm-90 {
    padding-right: calc(90 * 0.1rem) !important;
  }
  .u-pr-sm-95 {
    padding-right: calc(95 * 0.1rem) !important;
  }
  .u-pr-sm-100 {
    padding-right: calc(100 * 0.1rem) !important;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */