@charset "UTF-8";
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-primary: var(--font-family-base);
  --font-en: "Rubik", sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-primary: #56BFC2;
  --color-secondary: #6CAEE0;
  --color-sub: #F7AA3E;
  --color-accent: #ED8E8D;
  --color-accent_txt: #EC8584;
  --color-body: #393A3A;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
  --border-radius: 1rem;
}
@media (min-width: 768px) {
  :root {
    --border-radius: 2rem;
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 0.9380863039vw;
  }
}
@media screen and (min-width: 1066px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: #F2F7F7;
  color: var(--color-body);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin-inline: auto;
  max-width: 131.6rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  width: 100%;
}

.wrap-inner {
  margin-inline: auto;
  max-width: 121.6rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.inner {
  margin-inline: auto;
  padding-inline: 2.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .inner {
    max-width: 114.6rem;
    padding-inline: 4rem;
  }
}

.inner-2 {
  margin-inline: auto;
  max-width: 119.6rem;
  padding-inline: 2.5rem;
  width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1025px) {
  .d-tb-none {
    display: none !important;
  }
  .d-tb-block {
    display: block !important;
  }
  .d-tb-flex {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .d-ipad-none {
    display: none !important;
  }
  .d-ipad-block {
    display: block !important;
  }
  .d-ipad-flex {
    display: flex !important;
  }
}
@media (min-width: 1066px) {
  .d-liquid-none {
    display: none !important;
  }
  .d-liquid-block {
    display: block !important;
  }
  .d-liquid-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

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

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

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

.m-5 {
  margin: 0.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 0.5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 0.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 0.5rem !important;
}

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

.mt-10,
.my-10 {
  margin-top: 1rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 1rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 1rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 1rem !important;
}

.m-12 {
  margin: 1.2rem !important;
}

.mt-12,
.my-12 {
  margin-top: 1.2rem !important;
}

.mr-12,
.mx-12 {
  margin-right: 1.2rem !important;
}

.mb-12,
.my-12 {
  margin-bottom: 1.2rem !important;
}

.ml-12,
.mx-12 {
  margin-left: 1.2rem !important;
}

.m-15 {
  margin: 1.5rem !important;
}

.mt-15,
.my-15 {
  margin-top: 1.5rem !important;
}

.mr-15,
.mx-15 {
  margin-right: 1.5rem !important;
}

.mb-15,
.my-15 {
  margin-bottom: 1.5rem !important;
}

.ml-15,
.mx-15 {
  margin-left: 1.5rem !important;
}

.m-16 {
  margin: 1.6rem !important;
}

.mt-16,
.my-16 {
  margin-top: 1.6rem !important;
}

.mr-16,
.mx-16 {
  margin-right: 1.6rem !important;
}

.mb-16,
.my-16 {
  margin-bottom: 1.6rem !important;
}

.ml-16,
.mx-16 {
  margin-left: 1.6rem !important;
}

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

.mt-20,
.my-20 {
  margin-top: 2rem !important;
}

.mr-20,
.mx-20 {
  margin-right: 2rem !important;
}

.mb-20,
.my-20 {
  margin-bottom: 2rem !important;
}

.ml-20,
.mx-20 {
  margin-left: 2rem !important;
}

.m-24 {
  margin: 2.4rem !important;
}

.mt-24,
.my-24 {
  margin-top: 2.4rem !important;
}

.mr-24,
.mx-24 {
  margin-right: 2.4rem !important;
}

.mb-24,
.my-24 {
  margin-bottom: 2.4rem !important;
}

.ml-24,
.mx-24 {
  margin-left: 2.4rem !important;
}

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

.mt-30,
.my-30 {
  margin-top: 3rem !important;
}

.mr-30,
.mx-30 {
  margin-right: 3rem !important;
}

.mb-30,
.my-30 {
  margin-bottom: 3rem !important;
}

.ml-30,
.mx-30 {
  margin-left: 3rem !important;
}

.m-32 {
  margin: 3.2rem !important;
}

.mt-32,
.my-32 {
  margin-top: 3.2rem !important;
}

.mr-32,
.mx-32 {
  margin-right: 3.2rem !important;
}

.mb-32,
.my-32 {
  margin-bottom: 3.2rem !important;
}

.ml-32,
.mx-32 {
  margin-left: 3.2rem !important;
}

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

.mt-40,
.my-40 {
  margin-top: 4rem !important;
}

.mr-40,
.mx-40 {
  margin-right: 4rem !important;
}

.mb-40,
.my-40 {
  margin-bottom: 4rem !important;
}

.ml-40,
.mx-40 {
  margin-left: 4rem !important;
}

.m-50 {
  margin: 5rem !important;
}

.mt-50,
.my-50 {
  margin-top: 5rem !important;
}

.mr-50,
.mx-50 {
  margin-right: 5rem !important;
}

.mb-50,
.my-50 {
  margin-bottom: 5rem !important;
}

.ml-50,
.mx-50 {
  margin-left: 5rem !important;
}

.m-60 {
  margin: 6rem !important;
}

.mt-60,
.my-60 {
  margin-top: 6rem !important;
}

.mr-60,
.mx-60 {
  margin-right: 6rem !important;
}

.mb-60,
.my-60 {
  margin-bottom: 6rem !important;
}

.ml-60,
.mx-60 {
  margin-left: 6rem !important;
}

.m-70 {
  margin: 7rem !important;
}

.mt-70,
.my-70 {
  margin-top: 7rem !important;
}

.mr-70,
.mx-70 {
  margin-right: 7rem !important;
}

.mb-70,
.my-70 {
  margin-bottom: 7rem !important;
}

.ml-70,
.mx-70 {
  margin-left: 7rem !important;
}

.m-80 {
  margin: 8rem !important;
}

.mt-80,
.my-80 {
  margin-top: 8rem !important;
}

.mr-80,
.mx-80 {
  margin-right: 8rem !important;
}

.mb-80,
.my-80 {
  margin-bottom: 8rem !important;
}

.ml-80,
.mx-80 {
  margin-left: 8rem !important;
}

.m-90 {
  margin: 9rem !important;
}

.mt-90,
.my-90 {
  margin-top: 9rem !important;
}

.mr-90,
.mx-90 {
  margin-right: 9rem !important;
}

.mb-90,
.my-90 {
  margin-bottom: 9rem !important;
}

.ml-90,
.mx-90 {
  margin-left: 9rem !important;
}

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

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

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

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

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

.p-5 {
  padding: 0.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 0.5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 0.5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 0.5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 0.5rem !important;
}

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

.pt-10,
.py-10 {
  padding-top: 1rem !important;
}

.pr-10,
.px-10 {
  padding-right: 1rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 1rem !important;
}

.pl-10,
.px-10 {
  padding-left: 1rem !important;
}

.p-12 {
  padding: 1.2rem !important;
}

.pt-12,
.py-12 {
  padding-top: 1.2rem !important;
}

.pr-12,
.px-12 {
  padding-right: 1.2rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 1.2rem !important;
}

.pl-12,
.px-12 {
  padding-left: 1.2rem !important;
}

.p-15 {
  padding: 1.5rem !important;
}

.pt-15,
.py-15 {
  padding-top: 1.5rem !important;
}

.pr-15,
.px-15 {
  padding-right: 1.5rem !important;
}

.pb-15,
.py-15 {
  padding-bottom: 1.5rem !important;
}

.pl-15,
.px-15 {
  padding-left: 1.5rem !important;
}

.p-16 {
  padding: 1.6rem !important;
}

.pt-16,
.py-16 {
  padding-top: 1.6rem !important;
}

.pr-16,
.px-16 {
  padding-right: 1.6rem !important;
}

.pb-16,
.py-16 {
  padding-bottom: 1.6rem !important;
}

.pl-16,
.px-16 {
  padding-left: 1.6rem !important;
}

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

.pt-20,
.py-20 {
  padding-top: 2rem !important;
}

.pr-20,
.px-20 {
  padding-right: 2rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 2rem !important;
}

.pl-20,
.px-20 {
  padding-left: 2rem !important;
}

.p-24 {
  padding: 2.4rem !important;
}

.pt-24,
.py-24 {
  padding-top: 2.4rem !important;
}

.pr-24,
.px-24 {
  padding-right: 2.4rem !important;
}

.pb-24,
.py-24 {
  padding-bottom: 2.4rem !important;
}

.pl-24,
.px-24 {
  padding-left: 2.4rem !important;
}

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

.pt-30,
.py-30 {
  padding-top: 3rem !important;
}

.pr-30,
.px-30 {
  padding-right: 3rem !important;
}

.pb-30,
.py-30 {
  padding-bottom: 3rem !important;
}

.pl-30,
.px-30 {
  padding-left: 3rem !important;
}

.p-32 {
  padding: 3.2rem !important;
}

.pt-32,
.py-32 {
  padding-top: 3.2rem !important;
}

.pr-32,
.px-32 {
  padding-right: 3.2rem !important;
}

.pb-32,
.py-32 {
  padding-bottom: 3.2rem !important;
}

.pl-32,
.px-32 {
  padding-left: 3.2rem !important;
}

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

.pt-40,
.py-40 {
  padding-top: 4rem !important;
}

.pr-40,
.px-40 {
  padding-right: 4rem !important;
}

.pb-40,
.py-40 {
  padding-bottom: 4rem !important;
}

.pl-40,
.px-40 {
  padding-left: 4rem !important;
}

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

.pt-50,
.py-50 {
  padding-top: 5rem !important;
}

.pr-50,
.px-50 {
  padding-right: 5rem !important;
}

.pb-50,
.py-50 {
  padding-bottom: 5rem !important;
}

.pl-50,
.px-50 {
  padding-left: 5rem !important;
}

.p-60 {
  padding: 6rem !important;
}

.pt-60,
.py-60 {
  padding-top: 6rem !important;
}

.pr-60,
.px-60 {
  padding-right: 6rem !important;
}

.pb-60,
.py-60 {
  padding-bottom: 6rem !important;
}

.pl-60,
.px-60 {
  padding-left: 6rem !important;
}

.p-70 {
  padding: 7rem !important;
}

.pt-70,
.py-70 {
  padding-top: 7rem !important;
}

.pr-70,
.px-70 {
  padding-right: 7rem !important;
}

.pb-70,
.py-70 {
  padding-bottom: 7rem !important;
}

.pl-70,
.px-70 {
  padding-left: 7rem !important;
}

.p-80 {
  padding: 8rem !important;
}

.pt-80,
.py-80 {
  padding-top: 8rem !important;
}

.pr-80,
.px-80 {
  padding-right: 8rem !important;
}

.pb-80,
.py-80 {
  padding-bottom: 8rem !important;
}

.pl-80,
.px-80 {
  padding-left: 8rem !important;
}

.p-90 {
  padding: 9rem !important;
}

.pt-90,
.py-90 {
  padding-top: 9rem !important;
}

.pr-90,
.px-90 {
  padding-right: 9rem !important;
}

.pb-90,
.py-90 {
  padding-bottom: 9rem !important;
}

.pl-90,
.px-90 {
  padding-left: 9rem !important;
}

.m-n5 {
  margin: -0.5rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -0.5rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -0.5rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -0.5rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -0.5rem !important;
}

.m-n10 {
  margin: -1rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -1rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -1rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -1rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -1rem !important;
}

.m-n12 {
  margin: -1.2rem !important;
}

.mt-n12,
.my-n12 {
  margin-top: -1.2rem !important;
}

.mr-n12,
.mx-n12 {
  margin-right: -1.2rem !important;
}

.mb-n12,
.my-n12 {
  margin-bottom: -1.2rem !important;
}

.ml-n12,
.mx-n12 {
  margin-left: -1.2rem !important;
}

.m-n15 {
  margin: -1.5rem !important;
}

.mt-n15,
.my-n15 {
  margin-top: -1.5rem !important;
}

.mr-n15,
.mx-n15 {
  margin-right: -1.5rem !important;
}

.mb-n15,
.my-n15 {
  margin-bottom: -1.5rem !important;
}

.ml-n15,
.mx-n15 {
  margin-left: -1.5rem !important;
}

.m-n16 {
  margin: -1.6rem !important;
}

.mt-n16,
.my-n16 {
  margin-top: -1.6rem !important;
}

.mr-n16,
.mx-n16 {
  margin-right: -1.6rem !important;
}

.mb-n16,
.my-n16 {
  margin-bottom: -1.6rem !important;
}

.ml-n16,
.mx-n16 {
  margin-left: -1.6rem !important;
}

.m-n20 {
  margin: -2rem !important;
}

.mt-n20,
.my-n20 {
  margin-top: -2rem !important;
}

.mr-n20,
.mx-n20 {
  margin-right: -2rem !important;
}

.mb-n20,
.my-n20 {
  margin-bottom: -2rem !important;
}

.ml-n20,
.mx-n20 {
  margin-left: -2rem !important;
}

.m-n24 {
  margin: -2.4rem !important;
}

.mt-n24,
.my-n24 {
  margin-top: -2.4rem !important;
}

.mr-n24,
.mx-n24 {
  margin-right: -2.4rem !important;
}

.mb-n24,
.my-n24 {
  margin-bottom: -2.4rem !important;
}

.ml-n24,
.mx-n24 {
  margin-left: -2.4rem !important;
}

.m-n30 {
  margin: -3rem !important;
}

.mt-n30,
.my-n30 {
  margin-top: -3rem !important;
}

.mr-n30,
.mx-n30 {
  margin-right: -3rem !important;
}

.mb-n30,
.my-n30 {
  margin-bottom: -3rem !important;
}

.ml-n30,
.mx-n30 {
  margin-left: -3rem !important;
}

.m-n32 {
  margin: -3.2rem !important;
}

.mt-n32,
.my-n32 {
  margin-top: -3.2rem !important;
}

.mr-n32,
.mx-n32 {
  margin-right: -3.2rem !important;
}

.mb-n32,
.my-n32 {
  margin-bottom: -3.2rem !important;
}

.ml-n32,
.mx-n32 {
  margin-left: -3.2rem !important;
}

.m-n40 {
  margin: -4rem !important;
}

.mt-n40,
.my-n40 {
  margin-top: -4rem !important;
}

.mr-n40,
.mx-n40 {
  margin-right: -4rem !important;
}

.mb-n40,
.my-n40 {
  margin-bottom: -4rem !important;
}

.ml-n40,
.mx-n40 {
  margin-left: -4rem !important;
}

.m-n50 {
  margin: -5rem !important;
}

.mt-n50,
.my-n50 {
  margin-top: -5rem !important;
}

.mr-n50,
.mx-n50 {
  margin-right: -5rem !important;
}

.mb-n50,
.my-n50 {
  margin-bottom: -5rem !important;
}

.ml-n50,
.mx-n50 {
  margin-left: -5rem !important;
}

.m-n60 {
  margin: -6rem !important;
}

.mt-n60,
.my-n60 {
  margin-top: -6rem !important;
}

.mr-n60,
.mx-n60 {
  margin-right: -6rem !important;
}

.mb-n60,
.my-n60 {
  margin-bottom: -6rem !important;
}

.ml-n60,
.mx-n60 {
  margin-left: -6rem !important;
}

.m-n70 {
  margin: -7rem !important;
}

.mt-n70,
.my-n70 {
  margin-top: -7rem !important;
}

.mr-n70,
.mx-n70 {
  margin-right: -7rem !important;
}

.mb-n70,
.my-n70 {
  margin-bottom: -7rem !important;
}

.ml-n70,
.mx-n70 {
  margin-left: -7rem !important;
}

.m-n80 {
  margin: -8rem !important;
}

.mt-n80,
.my-n80 {
  margin-top: -8rem !important;
}

.mr-n80,
.mx-n80 {
  margin-right: -8rem !important;
}

.mb-n80,
.my-n80 {
  margin-bottom: -8rem !important;
}

.ml-n80,
.mx-n80 {
  margin-left: -8rem !important;
}

.m-n90 {
  margin: -9rem !important;
}

.mt-n90,
.my-n90 {
  margin-top: -9rem !important;
}

.mr-n90,
.mx-n90 {
  margin-right: -9rem !important;
}

.mb-n90,
.my-n90 {
  margin-bottom: -9rem !important;
}

.ml-n90,
.mx-n90 {
  margin-left: -9rem !important;
}

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

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

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

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

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

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-5 {
    margin: 0.5rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 0.5rem !important;
  }
  .m-sm-10 {
    margin: 1rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 1rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 1rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 1rem !important;
  }
  .m-sm-12 {
    margin: 1.2rem !important;
  }
  .mt-sm-12,
  .my-sm-12 {
    margin-top: 1.2rem !important;
  }
  .mr-sm-12,
  .mx-sm-12 {
    margin-right: 1.2rem !important;
  }
  .mb-sm-12,
  .my-sm-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-sm-12,
  .mx-sm-12 {
    margin-left: 1.2rem !important;
  }
  .m-sm-15 {
    margin: 1.5rem !important;
  }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 1.5rem !important;
  }
  .m-sm-16 {
    margin: 1.6rem !important;
  }
  .mt-sm-16,
  .my-sm-16 {
    margin-top: 1.6rem !important;
  }
  .mr-sm-16,
  .mx-sm-16 {
    margin-right: 1.6rem !important;
  }
  .mb-sm-16,
  .my-sm-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-sm-16,
  .mx-sm-16 {
    margin-left: 1.6rem !important;
  }
  .m-sm-20 {
    margin: 2rem !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 2rem !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 2rem !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 2rem !important;
  }
  .m-sm-24 {
    margin: 2.4rem !important;
  }
  .mt-sm-24,
  .my-sm-24 {
    margin-top: 2.4rem !important;
  }
  .mr-sm-24,
  .mx-sm-24 {
    margin-right: 2.4rem !important;
  }
  .mb-sm-24,
  .my-sm-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-sm-24,
  .mx-sm-24 {
    margin-left: 2.4rem !important;
  }
  .m-sm-30 {
    margin: 3rem !important;
  }
  .mt-sm-30,
  .my-sm-30 {
    margin-top: 3rem !important;
  }
  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 3rem !important;
  }
  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 3rem !important;
  }
  .m-sm-32 {
    margin: 3.2rem !important;
  }
  .mt-sm-32,
  .my-sm-32 {
    margin-top: 3.2rem !important;
  }
  .mr-sm-32,
  .mx-sm-32 {
    margin-right: 3.2rem !important;
  }
  .mb-sm-32,
  .my-sm-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-sm-32,
  .mx-sm-32 {
    margin-left: 3.2rem !important;
  }
  .m-sm-40 {
    margin: 4rem !important;
  }
  .mt-sm-40,
  .my-sm-40 {
    margin-top: 4rem !important;
  }
  .mr-sm-40,
  .mx-sm-40 {
    margin-right: 4rem !important;
  }
  .mb-sm-40,
  .my-sm-40 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-40,
  .mx-sm-40 {
    margin-left: 4rem !important;
  }
  .m-sm-50 {
    margin: 5rem !important;
  }
  .mt-sm-50,
  .my-sm-50 {
    margin-top: 5rem !important;
  }
  .mr-sm-50,
  .mx-sm-50 {
    margin-right: 5rem !important;
  }
  .mb-sm-50,
  .my-sm-50 {
    margin-bottom: 5rem !important;
  }
  .ml-sm-50,
  .mx-sm-50 {
    margin-left: 5rem !important;
  }
  .m-sm-60 {
    margin: 6rem !important;
  }
  .mt-sm-60,
  .my-sm-60 {
    margin-top: 6rem !important;
  }
  .mr-sm-60,
  .mx-sm-60 {
    margin-right: 6rem !important;
  }
  .mb-sm-60,
  .my-sm-60 {
    margin-bottom: 6rem !important;
  }
  .ml-sm-60,
  .mx-sm-60 {
    margin-left: 6rem !important;
  }
  .m-sm-70 {
    margin: 7rem !important;
  }
  .mt-sm-70,
  .my-sm-70 {
    margin-top: 7rem !important;
  }
  .mr-sm-70,
  .mx-sm-70 {
    margin-right: 7rem !important;
  }
  .mb-sm-70,
  .my-sm-70 {
    margin-bottom: 7rem !important;
  }
  .ml-sm-70,
  .mx-sm-70 {
    margin-left: 7rem !important;
  }
  .m-sm-80 {
    margin: 8rem !important;
  }
  .mt-sm-80,
  .my-sm-80 {
    margin-top: 8rem !important;
  }
  .mr-sm-80,
  .mx-sm-80 {
    margin-right: 8rem !important;
  }
  .mb-sm-80,
  .my-sm-80 {
    margin-bottom: 8rem !important;
  }
  .ml-sm-80,
  .mx-sm-80 {
    margin-left: 8rem !important;
  }
  .m-sm-90 {
    margin: 9rem !important;
  }
  .mt-sm-90,
  .my-sm-90 {
    margin-top: 9rem !important;
  }
  .mr-sm-90,
  .mx-sm-90 {
    margin-right: 9rem !important;
  }
  .mb-sm-90,
  .my-sm-90 {
    margin-bottom: 9rem !important;
  }
  .ml-sm-90,
  .mx-sm-90 {
    margin-left: 9rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-5 {
    padding: 0.5rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 0.5rem !important;
  }
  .p-sm-10 {
    padding: 1rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 1rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 1rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 1rem !important;
  }
  .p-sm-12 {
    padding: 1.2rem !important;
  }
  .pt-sm-12,
  .py-sm-12 {
    padding-top: 1.2rem !important;
  }
  .pr-sm-12,
  .px-sm-12 {
    padding-right: 1.2rem !important;
  }
  .pb-sm-12,
  .py-sm-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-sm-12,
  .px-sm-12 {
    padding-left: 1.2rem !important;
  }
  .p-sm-15 {
    padding: 1.5rem !important;
  }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 1.5rem !important;
  }
  .p-sm-16 {
    padding: 1.6rem !important;
  }
  .pt-sm-16,
  .py-sm-16 {
    padding-top: 1.6rem !important;
  }
  .pr-sm-16,
  .px-sm-16 {
    padding-right: 1.6rem !important;
  }
  .pb-sm-16,
  .py-sm-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-sm-16,
  .px-sm-16 {
    padding-left: 1.6rem !important;
  }
  .p-sm-20 {
    padding: 2rem !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 2rem !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 2rem !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 2rem !important;
  }
  .p-sm-24 {
    padding: 2.4rem !important;
  }
  .pt-sm-24,
  .py-sm-24 {
    padding-top: 2.4rem !important;
  }
  .pr-sm-24,
  .px-sm-24 {
    padding-right: 2.4rem !important;
  }
  .pb-sm-24,
  .py-sm-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-sm-24,
  .px-sm-24 {
    padding-left: 2.4rem !important;
  }
  .p-sm-30 {
    padding: 3rem !important;
  }
  .pt-sm-30,
  .py-sm-30 {
    padding-top: 3rem !important;
  }
  .pr-sm-30,
  .px-sm-30 {
    padding-right: 3rem !important;
  }
  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-30,
  .px-sm-30 {
    padding-left: 3rem !important;
  }
  .p-sm-32 {
    padding: 3.2rem !important;
  }
  .pt-sm-32,
  .py-sm-32 {
    padding-top: 3.2rem !important;
  }
  .pr-sm-32,
  .px-sm-32 {
    padding-right: 3.2rem !important;
  }
  .pb-sm-32,
  .py-sm-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-sm-32,
  .px-sm-32 {
    padding-left: 3.2rem !important;
  }
  .p-sm-40 {
    padding: 4rem !important;
  }
  .pt-sm-40,
  .py-sm-40 {
    padding-top: 4rem !important;
  }
  .pr-sm-40,
  .px-sm-40 {
    padding-right: 4rem !important;
  }
  .pb-sm-40,
  .py-sm-40 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-40,
  .px-sm-40 {
    padding-left: 4rem !important;
  }
  .p-sm-50 {
    padding: 5rem !important;
  }
  .pt-sm-50,
  .py-sm-50 {
    padding-top: 5rem !important;
  }
  .pr-sm-50,
  .px-sm-50 {
    padding-right: 5rem !important;
  }
  .pb-sm-50,
  .py-sm-50 {
    padding-bottom: 5rem !important;
  }
  .pl-sm-50,
  .px-sm-50 {
    padding-left: 5rem !important;
  }
  .p-sm-60 {
    padding: 6rem !important;
  }
  .pt-sm-60,
  .py-sm-60 {
    padding-top: 6rem !important;
  }
  .pr-sm-60,
  .px-sm-60 {
    padding-right: 6rem !important;
  }
  .pb-sm-60,
  .py-sm-60 {
    padding-bottom: 6rem !important;
  }
  .pl-sm-60,
  .px-sm-60 {
    padding-left: 6rem !important;
  }
  .p-sm-70 {
    padding: 7rem !important;
  }
  .pt-sm-70,
  .py-sm-70 {
    padding-top: 7rem !important;
  }
  .pr-sm-70,
  .px-sm-70 {
    padding-right: 7rem !important;
  }
  .pb-sm-70,
  .py-sm-70 {
    padding-bottom: 7rem !important;
  }
  .pl-sm-70,
  .px-sm-70 {
    padding-left: 7rem !important;
  }
  .p-sm-80 {
    padding: 8rem !important;
  }
  .pt-sm-80,
  .py-sm-80 {
    padding-top: 8rem !important;
  }
  .pr-sm-80,
  .px-sm-80 {
    padding-right: 8rem !important;
  }
  .pb-sm-80,
  .py-sm-80 {
    padding-bottom: 8rem !important;
  }
  .pl-sm-80,
  .px-sm-80 {
    padding-left: 8rem !important;
  }
  .p-sm-90 {
    padding: 9rem !important;
  }
  .pt-sm-90,
  .py-sm-90 {
    padding-top: 9rem !important;
  }
  .pr-sm-90,
  .px-sm-90 {
    padding-right: 9rem !important;
  }
  .pb-sm-90,
  .py-sm-90 {
    padding-bottom: 9rem !important;
  }
  .pl-sm-90,
  .px-sm-90 {
    padding-left: 9rem !important;
  }
  .m-sm-n5 {
    margin: -0.5rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n10 {
    margin: -1rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -1rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -1rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -1rem !important;
  }
  .m-sm-n12 {
    margin: -1.2rem !important;
  }
  .mt-sm-n12,
  .my-sm-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-sm-n12,
  .mx-sm-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-sm-n12,
  .my-sm-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-sm-n12,
  .mx-sm-n12 {
    margin-left: -1.2rem !important;
  }
  .m-sm-n15 {
    margin: -1.5rem !important;
  }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n16 {
    margin: -1.6rem !important;
  }
  .mt-sm-n16,
  .my-sm-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-sm-n16,
  .mx-sm-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-sm-n16,
  .my-sm-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-sm-n16,
  .mx-sm-n16 {
    margin-left: -1.6rem !important;
  }
  .m-sm-n20 {
    margin: -2rem !important;
  }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -2rem !important;
  }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -2rem !important;
  }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -2rem !important;
  }
  .m-sm-n24 {
    margin: -2.4rem !important;
  }
  .mt-sm-n24,
  .my-sm-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-sm-n24,
  .mx-sm-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-sm-n24,
  .my-sm-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-sm-n24,
  .mx-sm-n24 {
    margin-left: -2.4rem !important;
  }
  .m-sm-n30 {
    margin: -3rem !important;
  }
  .mt-sm-n30,
  .my-sm-n30 {
    margin-top: -3rem !important;
  }
  .mr-sm-n30,
  .mx-sm-n30 {
    margin-right: -3rem !important;
  }
  .mb-sm-n30,
  .my-sm-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n30,
  .mx-sm-n30 {
    margin-left: -3rem !important;
  }
  .m-sm-n32 {
    margin: -3.2rem !important;
  }
  .mt-sm-n32,
  .my-sm-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-sm-n32,
  .mx-sm-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-sm-n32,
  .my-sm-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-sm-n32,
  .mx-sm-n32 {
    margin-left: -3.2rem !important;
  }
  .m-sm-n40 {
    margin: -4rem !important;
  }
  .mt-sm-n40,
  .my-sm-n40 {
    margin-top: -4rem !important;
  }
  .mr-sm-n40,
  .mx-sm-n40 {
    margin-right: -4rem !important;
  }
  .mb-sm-n40,
  .my-sm-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-sm-n40,
  .mx-sm-n40 {
    margin-left: -4rem !important;
  }
  .m-sm-n50 {
    margin: -5rem !important;
  }
  .mt-sm-n50,
  .my-sm-n50 {
    margin-top: -5rem !important;
  }
  .mr-sm-n50,
  .mx-sm-n50 {
    margin-right: -5rem !important;
  }
  .mb-sm-n50,
  .my-sm-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-sm-n50,
  .mx-sm-n50 {
    margin-left: -5rem !important;
  }
  .m-sm-n60 {
    margin: -6rem !important;
  }
  .mt-sm-n60,
  .my-sm-n60 {
    margin-top: -6rem !important;
  }
  .mr-sm-n60,
  .mx-sm-n60 {
    margin-right: -6rem !important;
  }
  .mb-sm-n60,
  .my-sm-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-sm-n60,
  .mx-sm-n60 {
    margin-left: -6rem !important;
  }
  .m-sm-n70 {
    margin: -7rem !important;
  }
  .mt-sm-n70,
  .my-sm-n70 {
    margin-top: -7rem !important;
  }
  .mr-sm-n70,
  .mx-sm-n70 {
    margin-right: -7rem !important;
  }
  .mb-sm-n70,
  .my-sm-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-sm-n70,
  .mx-sm-n70 {
    margin-left: -7rem !important;
  }
  .m-sm-n80 {
    margin: -8rem !important;
  }
  .mt-sm-n80,
  .my-sm-n80 {
    margin-top: -8rem !important;
  }
  .mr-sm-n80,
  .mx-sm-n80 {
    margin-right: -8rem !important;
  }
  .mb-sm-n80,
  .my-sm-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-sm-n80,
  .mx-sm-n80 {
    margin-left: -8rem !important;
  }
  .m-sm-n90 {
    margin: -9rem !important;
  }
  .mt-sm-n90,
  .my-sm-n90 {
    margin-top: -9rem !important;
  }
  .mr-sm-n90,
  .mx-sm-n90 {
    margin-right: -9rem !important;
  }
  .mb-sm-n90,
  .my-sm-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-sm-n90,
  .mx-sm-n90 {
    margin-left: -9rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-5 {
    margin: 0.5rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 0.5rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 0.5rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 0.5rem !important;
  }
  .m-md-10 {
    margin: 1rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 1rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 1rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 1rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 1rem !important;
  }
  .m-md-12 {
    margin: 1.2rem !important;
  }
  .mt-md-12,
  .my-md-12 {
    margin-top: 1.2rem !important;
  }
  .mr-md-12,
  .mx-md-12 {
    margin-right: 1.2rem !important;
  }
  .mb-md-12,
  .my-md-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-md-12,
  .mx-md-12 {
    margin-left: 1.2rem !important;
  }
  .m-md-15 {
    margin: 1.5rem !important;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 1.5rem !important;
  }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 1.5rem !important;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 1.5rem !important;
  }
  .m-md-16 {
    margin: 1.6rem !important;
  }
  .mt-md-16,
  .my-md-16 {
    margin-top: 1.6rem !important;
  }
  .mr-md-16,
  .mx-md-16 {
    margin-right: 1.6rem !important;
  }
  .mb-md-16,
  .my-md-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-md-16,
  .mx-md-16 {
    margin-left: 1.6rem !important;
  }
  .m-md-20 {
    margin: 2rem !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 2rem !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 2rem !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 2rem !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 2rem !important;
  }
  .m-md-24 {
    margin: 2.4rem !important;
  }
  .mt-md-24,
  .my-md-24 {
    margin-top: 2.4rem !important;
  }
  .mr-md-24,
  .mx-md-24 {
    margin-right: 2.4rem !important;
  }
  .mb-md-24,
  .my-md-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-md-24,
  .mx-md-24 {
    margin-left: 2.4rem !important;
  }
  .m-md-30 {
    margin: 3rem !important;
  }
  .mt-md-30,
  .my-md-30 {
    margin-top: 3rem !important;
  }
  .mr-md-30,
  .mx-md-30 {
    margin-right: 3rem !important;
  }
  .mb-md-30,
  .my-md-30 {
    margin-bottom: 3rem !important;
  }
  .ml-md-30,
  .mx-md-30 {
    margin-left: 3rem !important;
  }
  .m-md-32 {
    margin: 3.2rem !important;
  }
  .mt-md-32,
  .my-md-32 {
    margin-top: 3.2rem !important;
  }
  .mr-md-32,
  .mx-md-32 {
    margin-right: 3.2rem !important;
  }
  .mb-md-32,
  .my-md-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-md-32,
  .mx-md-32 {
    margin-left: 3.2rem !important;
  }
  .m-md-40 {
    margin: 4rem !important;
  }
  .mt-md-40,
  .my-md-40 {
    margin-top: 4rem !important;
  }
  .mr-md-40,
  .mx-md-40 {
    margin-right: 4rem !important;
  }
  .mb-md-40,
  .my-md-40 {
    margin-bottom: 4rem !important;
  }
  .ml-md-40,
  .mx-md-40 {
    margin-left: 4rem !important;
  }
  .m-md-50 {
    margin: 5rem !important;
  }
  .mt-md-50,
  .my-md-50 {
    margin-top: 5rem !important;
  }
  .mr-md-50,
  .mx-md-50 {
    margin-right: 5rem !important;
  }
  .mb-md-50,
  .my-md-50 {
    margin-bottom: 5rem !important;
  }
  .ml-md-50,
  .mx-md-50 {
    margin-left: 5rem !important;
  }
  .m-md-60 {
    margin: 6rem !important;
  }
  .mt-md-60,
  .my-md-60 {
    margin-top: 6rem !important;
  }
  .mr-md-60,
  .mx-md-60 {
    margin-right: 6rem !important;
  }
  .mb-md-60,
  .my-md-60 {
    margin-bottom: 6rem !important;
  }
  .ml-md-60,
  .mx-md-60 {
    margin-left: 6rem !important;
  }
  .m-md-70 {
    margin: 7rem !important;
  }
  .mt-md-70,
  .my-md-70 {
    margin-top: 7rem !important;
  }
  .mr-md-70,
  .mx-md-70 {
    margin-right: 7rem !important;
  }
  .mb-md-70,
  .my-md-70 {
    margin-bottom: 7rem !important;
  }
  .ml-md-70,
  .mx-md-70 {
    margin-left: 7rem !important;
  }
  .m-md-80 {
    margin: 8rem !important;
  }
  .mt-md-80,
  .my-md-80 {
    margin-top: 8rem !important;
  }
  .mr-md-80,
  .mx-md-80 {
    margin-right: 8rem !important;
  }
  .mb-md-80,
  .my-md-80 {
    margin-bottom: 8rem !important;
  }
  .ml-md-80,
  .mx-md-80 {
    margin-left: 8rem !important;
  }
  .m-md-90 {
    margin: 9rem !important;
  }
  .mt-md-90,
  .my-md-90 {
    margin-top: 9rem !important;
  }
  .mr-md-90,
  .mx-md-90 {
    margin-right: 9rem !important;
  }
  .mb-md-90,
  .my-md-90 {
    margin-bottom: 9rem !important;
  }
  .ml-md-90,
  .mx-md-90 {
    margin-left: 9rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-5 {
    padding: 0.5rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 0.5rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 0.5rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 0.5rem !important;
  }
  .p-md-10 {
    padding: 1rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 1rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 1rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 1rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 1rem !important;
  }
  .p-md-12 {
    padding: 1.2rem !important;
  }
  .pt-md-12,
  .py-md-12 {
    padding-top: 1.2rem !important;
  }
  .pr-md-12,
  .px-md-12 {
    padding-right: 1.2rem !important;
  }
  .pb-md-12,
  .py-md-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-md-12,
  .px-md-12 {
    padding-left: 1.2rem !important;
  }
  .p-md-15 {
    padding: 1.5rem !important;
  }
  .pt-md-15,
  .py-md-15 {
    padding-top: 1.5rem !important;
  }
  .pr-md-15,
  .px-md-15 {
    padding-right: 1.5rem !important;
  }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-15,
  .px-md-15 {
    padding-left: 1.5rem !important;
  }
  .p-md-16 {
    padding: 1.6rem !important;
  }
  .pt-md-16,
  .py-md-16 {
    padding-top: 1.6rem !important;
  }
  .pr-md-16,
  .px-md-16 {
    padding-right: 1.6rem !important;
  }
  .pb-md-16,
  .py-md-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-md-16,
  .px-md-16 {
    padding-left: 1.6rem !important;
  }
  .p-md-20 {
    padding: 2rem !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 2rem !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 2rem !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 2rem !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 2rem !important;
  }
  .p-md-24 {
    padding: 2.4rem !important;
  }
  .pt-md-24,
  .py-md-24 {
    padding-top: 2.4rem !important;
  }
  .pr-md-24,
  .px-md-24 {
    padding-right: 2.4rem !important;
  }
  .pb-md-24,
  .py-md-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-md-24,
  .px-md-24 {
    padding-left: 2.4rem !important;
  }
  .p-md-30 {
    padding: 3rem !important;
  }
  .pt-md-30,
  .py-md-30 {
    padding-top: 3rem !important;
  }
  .pr-md-30,
  .px-md-30 {
    padding-right: 3rem !important;
  }
  .pb-md-30,
  .py-md-30 {
    padding-bottom: 3rem !important;
  }
  .pl-md-30,
  .px-md-30 {
    padding-left: 3rem !important;
  }
  .p-md-32 {
    padding: 3.2rem !important;
  }
  .pt-md-32,
  .py-md-32 {
    padding-top: 3.2rem !important;
  }
  .pr-md-32,
  .px-md-32 {
    padding-right: 3.2rem !important;
  }
  .pb-md-32,
  .py-md-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-md-32,
  .px-md-32 {
    padding-left: 3.2rem !important;
  }
  .p-md-40 {
    padding: 4rem !important;
  }
  .pt-md-40,
  .py-md-40 {
    padding-top: 4rem !important;
  }
  .pr-md-40,
  .px-md-40 {
    padding-right: 4rem !important;
  }
  .pb-md-40,
  .py-md-40 {
    padding-bottom: 4rem !important;
  }
  .pl-md-40,
  .px-md-40 {
    padding-left: 4rem !important;
  }
  .p-md-50 {
    padding: 5rem !important;
  }
  .pt-md-50,
  .py-md-50 {
    padding-top: 5rem !important;
  }
  .pr-md-50,
  .px-md-50 {
    padding-right: 5rem !important;
  }
  .pb-md-50,
  .py-md-50 {
    padding-bottom: 5rem !important;
  }
  .pl-md-50,
  .px-md-50 {
    padding-left: 5rem !important;
  }
  .p-md-60 {
    padding: 6rem !important;
  }
  .pt-md-60,
  .py-md-60 {
    padding-top: 6rem !important;
  }
  .pr-md-60,
  .px-md-60 {
    padding-right: 6rem !important;
  }
  .pb-md-60,
  .py-md-60 {
    padding-bottom: 6rem !important;
  }
  .pl-md-60,
  .px-md-60 {
    padding-left: 6rem !important;
  }
  .p-md-70 {
    padding: 7rem !important;
  }
  .pt-md-70,
  .py-md-70 {
    padding-top: 7rem !important;
  }
  .pr-md-70,
  .px-md-70 {
    padding-right: 7rem !important;
  }
  .pb-md-70,
  .py-md-70 {
    padding-bottom: 7rem !important;
  }
  .pl-md-70,
  .px-md-70 {
    padding-left: 7rem !important;
  }
  .p-md-80 {
    padding: 8rem !important;
  }
  .pt-md-80,
  .py-md-80 {
    padding-top: 8rem !important;
  }
  .pr-md-80,
  .px-md-80 {
    padding-right: 8rem !important;
  }
  .pb-md-80,
  .py-md-80 {
    padding-bottom: 8rem !important;
  }
  .pl-md-80,
  .px-md-80 {
    padding-left: 8rem !important;
  }
  .p-md-90 {
    padding: 9rem !important;
  }
  .pt-md-90,
  .py-md-90 {
    padding-top: 9rem !important;
  }
  .pr-md-90,
  .px-md-90 {
    padding-right: 9rem !important;
  }
  .pb-md-90,
  .py-md-90 {
    padding-bottom: 9rem !important;
  }
  .pl-md-90,
  .px-md-90 {
    padding-left: 9rem !important;
  }
  .m-md-n5 {
    margin: -0.5rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -0.5rem !important;
  }
  .m-md-n10 {
    margin: -1rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -1rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -1rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -1rem !important;
  }
  .m-md-n12 {
    margin: -1.2rem !important;
  }
  .mt-md-n12,
  .my-md-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-md-n12,
  .mx-md-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-md-n12,
  .my-md-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-md-n12,
  .mx-md-n12 {
    margin-left: -1.2rem !important;
  }
  .m-md-n15 {
    margin: -1.5rem !important;
  }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -1.5rem !important;
  }
  .m-md-n16 {
    margin: -1.6rem !important;
  }
  .mt-md-n16,
  .my-md-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-md-n16,
  .mx-md-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-md-n16,
  .my-md-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-md-n16,
  .mx-md-n16 {
    margin-left: -1.6rem !important;
  }
  .m-md-n20 {
    margin: -2rem !important;
  }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -2rem !important;
  }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -2rem !important;
  }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -2rem !important;
  }
  .m-md-n24 {
    margin: -2.4rem !important;
  }
  .mt-md-n24,
  .my-md-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-md-n24,
  .mx-md-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-md-n24,
  .my-md-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-md-n24,
  .mx-md-n24 {
    margin-left: -2.4rem !important;
  }
  .m-md-n30 {
    margin: -3rem !important;
  }
  .mt-md-n30,
  .my-md-n30 {
    margin-top: -3rem !important;
  }
  .mr-md-n30,
  .mx-md-n30 {
    margin-right: -3rem !important;
  }
  .mb-md-n30,
  .my-md-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n30,
  .mx-md-n30 {
    margin-left: -3rem !important;
  }
  .m-md-n32 {
    margin: -3.2rem !important;
  }
  .mt-md-n32,
  .my-md-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-md-n32,
  .mx-md-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-md-n32,
  .my-md-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-md-n32,
  .mx-md-n32 {
    margin-left: -3.2rem !important;
  }
  .m-md-n40 {
    margin: -4rem !important;
  }
  .mt-md-n40,
  .my-md-n40 {
    margin-top: -4rem !important;
  }
  .mr-md-n40,
  .mx-md-n40 {
    margin-right: -4rem !important;
  }
  .mb-md-n40,
  .my-md-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-md-n40,
  .mx-md-n40 {
    margin-left: -4rem !important;
  }
  .m-md-n50 {
    margin: -5rem !important;
  }
  .mt-md-n50,
  .my-md-n50 {
    margin-top: -5rem !important;
  }
  .mr-md-n50,
  .mx-md-n50 {
    margin-right: -5rem !important;
  }
  .mb-md-n50,
  .my-md-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-md-n50,
  .mx-md-n50 {
    margin-left: -5rem !important;
  }
  .m-md-n60 {
    margin: -6rem !important;
  }
  .mt-md-n60,
  .my-md-n60 {
    margin-top: -6rem !important;
  }
  .mr-md-n60,
  .mx-md-n60 {
    margin-right: -6rem !important;
  }
  .mb-md-n60,
  .my-md-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-md-n60,
  .mx-md-n60 {
    margin-left: -6rem !important;
  }
  .m-md-n70 {
    margin: -7rem !important;
  }
  .mt-md-n70,
  .my-md-n70 {
    margin-top: -7rem !important;
  }
  .mr-md-n70,
  .mx-md-n70 {
    margin-right: -7rem !important;
  }
  .mb-md-n70,
  .my-md-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-md-n70,
  .mx-md-n70 {
    margin-left: -7rem !important;
  }
  .m-md-n80 {
    margin: -8rem !important;
  }
  .mt-md-n80,
  .my-md-n80 {
    margin-top: -8rem !important;
  }
  .mr-md-n80,
  .mx-md-n80 {
    margin-right: -8rem !important;
  }
  .mb-md-n80,
  .my-md-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-md-n80,
  .mx-md-n80 {
    margin-left: -8rem !important;
  }
  .m-md-n90 {
    margin: -9rem !important;
  }
  .mt-md-n90,
  .my-md-n90 {
    margin-top: -9rem !important;
  }
  .mr-md-n90,
  .mx-md-n90 {
    margin-right: -9rem !important;
  }
  .mb-md-n90,
  .my-md-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-md-n90,
  .mx-md-n90 {
    margin-left: -9rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-5 {
    margin: 0.5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 0.5rem !important;
  }
  .m-lg-10 {
    margin: 1rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 1rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 1rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 1rem !important;
  }
  .m-lg-12 {
    margin: 1.2rem !important;
  }
  .mt-lg-12,
  .my-lg-12 {
    margin-top: 1.2rem !important;
  }
  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 1.2rem !important;
  }
  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 1.2rem !important;
  }
  .m-lg-15 {
    margin: 1.5rem !important;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 1.5rem !important;
  }
  .m-lg-16 {
    margin: 1.6rem !important;
  }
  .mt-lg-16,
  .my-lg-16 {
    margin-top: 1.6rem !important;
  }
  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 1.6rem !important;
  }
  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 1.6rem !important;
  }
  .m-lg-20 {
    margin: 2rem !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 2rem !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 2rem !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 2rem !important;
  }
  .m-lg-24 {
    margin: 2.4rem !important;
  }
  .mt-lg-24,
  .my-lg-24 {
    margin-top: 2.4rem !important;
  }
  .mr-lg-24,
  .mx-lg-24 {
    margin-right: 2.4rem !important;
  }
  .mb-lg-24,
  .my-lg-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-lg-24,
  .mx-lg-24 {
    margin-left: 2.4rem !important;
  }
  .m-lg-30 {
    margin: 3rem !important;
  }
  .mt-lg-30,
  .my-lg-30 {
    margin-top: 3rem !important;
  }
  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 3rem !important;
  }
  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 3rem !important;
  }
  .m-lg-32 {
    margin: 3.2rem !important;
  }
  .mt-lg-32,
  .my-lg-32 {
    margin-top: 3.2rem !important;
  }
  .mr-lg-32,
  .mx-lg-32 {
    margin-right: 3.2rem !important;
  }
  .mb-lg-32,
  .my-lg-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-lg-32,
  .mx-lg-32 {
    margin-left: 3.2rem !important;
  }
  .m-lg-40 {
    margin: 4rem !important;
  }
  .mt-lg-40,
  .my-lg-40 {
    margin-top: 4rem !important;
  }
  .mr-lg-40,
  .mx-lg-40 {
    margin-right: 4rem !important;
  }
  .mb-lg-40,
  .my-lg-40 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-40,
  .mx-lg-40 {
    margin-left: 4rem !important;
  }
  .m-lg-50 {
    margin: 5rem !important;
  }
  .mt-lg-50,
  .my-lg-50 {
    margin-top: 5rem !important;
  }
  .mr-lg-50,
  .mx-lg-50 {
    margin-right: 5rem !important;
  }
  .mb-lg-50,
  .my-lg-50 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-50,
  .mx-lg-50 {
    margin-left: 5rem !important;
  }
  .m-lg-60 {
    margin: 6rem !important;
  }
  .mt-lg-60,
  .my-lg-60 {
    margin-top: 6rem !important;
  }
  .mr-lg-60,
  .mx-lg-60 {
    margin-right: 6rem !important;
  }
  .mb-lg-60,
  .my-lg-60 {
    margin-bottom: 6rem !important;
  }
  .ml-lg-60,
  .mx-lg-60 {
    margin-left: 6rem !important;
  }
  .m-lg-70 {
    margin: 7rem !important;
  }
  .mt-lg-70,
  .my-lg-70 {
    margin-top: 7rem !important;
  }
  .mr-lg-70,
  .mx-lg-70 {
    margin-right: 7rem !important;
  }
  .mb-lg-70,
  .my-lg-70 {
    margin-bottom: 7rem !important;
  }
  .ml-lg-70,
  .mx-lg-70 {
    margin-left: 7rem !important;
  }
  .m-lg-80 {
    margin: 8rem !important;
  }
  .mt-lg-80,
  .my-lg-80 {
    margin-top: 8rem !important;
  }
  .mr-lg-80,
  .mx-lg-80 {
    margin-right: 8rem !important;
  }
  .mb-lg-80,
  .my-lg-80 {
    margin-bottom: 8rem !important;
  }
  .ml-lg-80,
  .mx-lg-80 {
    margin-left: 8rem !important;
  }
  .m-lg-90 {
    margin: 9rem !important;
  }
  .mt-lg-90,
  .my-lg-90 {
    margin-top: 9rem !important;
  }
  .mr-lg-90,
  .mx-lg-90 {
    margin-right: 9rem !important;
  }
  .mb-lg-90,
  .my-lg-90 {
    margin-bottom: 9rem !important;
  }
  .ml-lg-90,
  .mx-lg-90 {
    margin-left: 9rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-5 {
    padding: 0.5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 0.5rem !important;
  }
  .p-lg-10 {
    padding: 1rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 1rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 1rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 1rem !important;
  }
  .p-lg-12 {
    padding: 1.2rem !important;
  }
  .pt-lg-12,
  .py-lg-12 {
    padding-top: 1.2rem !important;
  }
  .pr-lg-12,
  .px-lg-12 {
    padding-right: 1.2rem !important;
  }
  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-lg-12,
  .px-lg-12 {
    padding-left: 1.2rem !important;
  }
  .p-lg-15 {
    padding: 1.5rem !important;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 1.5rem !important;
  }
  .p-lg-16 {
    padding: 1.6rem !important;
  }
  .pt-lg-16,
  .py-lg-16 {
    padding-top: 1.6rem !important;
  }
  .pr-lg-16,
  .px-lg-16 {
    padding-right: 1.6rem !important;
  }
  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-lg-16,
  .px-lg-16 {
    padding-left: 1.6rem !important;
  }
  .p-lg-20 {
    padding: 2rem !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 2rem !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 2rem !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 2rem !important;
  }
  .p-lg-24 {
    padding: 2.4rem !important;
  }
  .pt-lg-24,
  .py-lg-24 {
    padding-top: 2.4rem !important;
  }
  .pr-lg-24,
  .px-lg-24 {
    padding-right: 2.4rem !important;
  }
  .pb-lg-24,
  .py-lg-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-lg-24,
  .px-lg-24 {
    padding-left: 2.4rem !important;
  }
  .p-lg-30 {
    padding: 3rem !important;
  }
  .pt-lg-30,
  .py-lg-30 {
    padding-top: 3rem !important;
  }
  .pr-lg-30,
  .px-lg-30 {
    padding-right: 3rem !important;
  }
  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-30,
  .px-lg-30 {
    padding-left: 3rem !important;
  }
  .p-lg-32 {
    padding: 3.2rem !important;
  }
  .pt-lg-32,
  .py-lg-32 {
    padding-top: 3.2rem !important;
  }
  .pr-lg-32,
  .px-lg-32 {
    padding-right: 3.2rem !important;
  }
  .pb-lg-32,
  .py-lg-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-lg-32,
  .px-lg-32 {
    padding-left: 3.2rem !important;
  }
  .p-lg-40 {
    padding: 4rem !important;
  }
  .pt-lg-40,
  .py-lg-40 {
    padding-top: 4rem !important;
  }
  .pr-lg-40,
  .px-lg-40 {
    padding-right: 4rem !important;
  }
  .pb-lg-40,
  .py-lg-40 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-40,
  .px-lg-40 {
    padding-left: 4rem !important;
  }
  .p-lg-50 {
    padding: 5rem !important;
  }
  .pt-lg-50,
  .py-lg-50 {
    padding-top: 5rem !important;
  }
  .pr-lg-50,
  .px-lg-50 {
    padding-right: 5rem !important;
  }
  .pb-lg-50,
  .py-lg-50 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-50,
  .px-lg-50 {
    padding-left: 5rem !important;
  }
  .p-lg-60 {
    padding: 6rem !important;
  }
  .pt-lg-60,
  .py-lg-60 {
    padding-top: 6rem !important;
  }
  .pr-lg-60,
  .px-lg-60 {
    padding-right: 6rem !important;
  }
  .pb-lg-60,
  .py-lg-60 {
    padding-bottom: 6rem !important;
  }
  .pl-lg-60,
  .px-lg-60 {
    padding-left: 6rem !important;
  }
  .p-lg-70 {
    padding: 7rem !important;
  }
  .pt-lg-70,
  .py-lg-70 {
    padding-top: 7rem !important;
  }
  .pr-lg-70,
  .px-lg-70 {
    padding-right: 7rem !important;
  }
  .pb-lg-70,
  .py-lg-70 {
    padding-bottom: 7rem !important;
  }
  .pl-lg-70,
  .px-lg-70 {
    padding-left: 7rem !important;
  }
  .p-lg-80 {
    padding: 8rem !important;
  }
  .pt-lg-80,
  .py-lg-80 {
    padding-top: 8rem !important;
  }
  .pr-lg-80,
  .px-lg-80 {
    padding-right: 8rem !important;
  }
  .pb-lg-80,
  .py-lg-80 {
    padding-bottom: 8rem !important;
  }
  .pl-lg-80,
  .px-lg-80 {
    padding-left: 8rem !important;
  }
  .p-lg-90 {
    padding: 9rem !important;
  }
  .pt-lg-90,
  .py-lg-90 {
    padding-top: 9rem !important;
  }
  .pr-lg-90,
  .px-lg-90 {
    padding-right: 9rem !important;
  }
  .pb-lg-90,
  .py-lg-90 {
    padding-bottom: 9rem !important;
  }
  .pl-lg-90,
  .px-lg-90 {
    padding-left: 9rem !important;
  }
  .m-lg-n5 {
    margin: -0.5rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n10 {
    margin: -1rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -1rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -1rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -1rem !important;
  }
  .m-lg-n12 {
    margin: -1.2rem !important;
  }
  .mt-lg-n12,
  .my-lg-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-lg-n12,
  .mx-lg-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-lg-n12,
  .my-lg-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-lg-n12,
  .mx-lg-n12 {
    margin-left: -1.2rem !important;
  }
  .m-lg-n15 {
    margin: -1.5rem !important;
  }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n16 {
    margin: -1.6rem !important;
  }
  .mt-lg-n16,
  .my-lg-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-lg-n16,
  .mx-lg-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-lg-n16,
  .my-lg-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-lg-n16,
  .mx-lg-n16 {
    margin-left: -1.6rem !important;
  }
  .m-lg-n20 {
    margin: -2rem !important;
  }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -2rem !important;
  }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -2rem !important;
  }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -2rem !important;
  }
  .m-lg-n24 {
    margin: -2.4rem !important;
  }
  .mt-lg-n24,
  .my-lg-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-lg-n24,
  .mx-lg-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-lg-n24,
  .my-lg-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-lg-n24,
  .mx-lg-n24 {
    margin-left: -2.4rem !important;
  }
  .m-lg-n30 {
    margin: -3rem !important;
  }
  .mt-lg-n30,
  .my-lg-n30 {
    margin-top: -3rem !important;
  }
  .mr-lg-n30,
  .mx-lg-n30 {
    margin-right: -3rem !important;
  }
  .mb-lg-n30,
  .my-lg-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n30,
  .mx-lg-n30 {
    margin-left: -3rem !important;
  }
  .m-lg-n32 {
    margin: -3.2rem !important;
  }
  .mt-lg-n32,
  .my-lg-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-lg-n32,
  .mx-lg-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-lg-n32,
  .my-lg-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-lg-n32,
  .mx-lg-n32 {
    margin-left: -3.2rem !important;
  }
  .m-lg-n40 {
    margin: -4rem !important;
  }
  .mt-lg-n40,
  .my-lg-n40 {
    margin-top: -4rem !important;
  }
  .mr-lg-n40,
  .mx-lg-n40 {
    margin-right: -4rem !important;
  }
  .mb-lg-n40,
  .my-lg-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-lg-n40,
  .mx-lg-n40 {
    margin-left: -4rem !important;
  }
  .m-lg-n50 {
    margin: -5rem !important;
  }
  .mt-lg-n50,
  .my-lg-n50 {
    margin-top: -5rem !important;
  }
  .mr-lg-n50,
  .mx-lg-n50 {
    margin-right: -5rem !important;
  }
  .mb-lg-n50,
  .my-lg-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-lg-n50,
  .mx-lg-n50 {
    margin-left: -5rem !important;
  }
  .m-lg-n60 {
    margin: -6rem !important;
  }
  .mt-lg-n60,
  .my-lg-n60 {
    margin-top: -6rem !important;
  }
  .mr-lg-n60,
  .mx-lg-n60 {
    margin-right: -6rem !important;
  }
  .mb-lg-n60,
  .my-lg-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-lg-n60,
  .mx-lg-n60 {
    margin-left: -6rem !important;
  }
  .m-lg-n70 {
    margin: -7rem !important;
  }
  .mt-lg-n70,
  .my-lg-n70 {
    margin-top: -7rem !important;
  }
  .mr-lg-n70,
  .mx-lg-n70 {
    margin-right: -7rem !important;
  }
  .mb-lg-n70,
  .my-lg-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-lg-n70,
  .mx-lg-n70 {
    margin-left: -7rem !important;
  }
  .m-lg-n80 {
    margin: -8rem !important;
  }
  .mt-lg-n80,
  .my-lg-n80 {
    margin-top: -8rem !important;
  }
  .mr-lg-n80,
  .mx-lg-n80 {
    margin-right: -8rem !important;
  }
  .mb-lg-n80,
  .my-lg-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-lg-n80,
  .mx-lg-n80 {
    margin-left: -8rem !important;
  }
  .m-lg-n90 {
    margin: -9rem !important;
  }
  .mt-lg-n90,
  .my-lg-n90 {
    margin-top: -9rem !important;
  }
  .mr-lg-n90,
  .mx-lg-n90 {
    margin-right: -9rem !important;
  }
  .mb-lg-n90,
  .my-lg-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-lg-n90,
  .mx-lg-n90 {
    margin-left: -9rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1025px) {
  .m-tb-0 {
    margin: 0 !important;
  }
  .mt-tb-0,
  .my-tb-0 {
    margin-top: 0 !important;
  }
  .mr-tb-0,
  .mx-tb-0 {
    margin-right: 0 !important;
  }
  .mb-tb-0,
  .my-tb-0 {
    margin-bottom: 0 !important;
  }
  .ml-tb-0,
  .mx-tb-0 {
    margin-left: 0 !important;
  }
  .m-tb-5 {
    margin: 0.5rem !important;
  }
  .mt-tb-5,
  .my-tb-5 {
    margin-top: 0.5rem !important;
  }
  .mr-tb-5,
  .mx-tb-5 {
    margin-right: 0.5rem !important;
  }
  .mb-tb-5,
  .my-tb-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-tb-5,
  .mx-tb-5 {
    margin-left: 0.5rem !important;
  }
  .m-tb-10 {
    margin: 1rem !important;
  }
  .mt-tb-10,
  .my-tb-10 {
    margin-top: 1rem !important;
  }
  .mr-tb-10,
  .mx-tb-10 {
    margin-right: 1rem !important;
  }
  .mb-tb-10,
  .my-tb-10 {
    margin-bottom: 1rem !important;
  }
  .ml-tb-10,
  .mx-tb-10 {
    margin-left: 1rem !important;
  }
  .m-tb-12 {
    margin: 1.2rem !important;
  }
  .mt-tb-12,
  .my-tb-12 {
    margin-top: 1.2rem !important;
  }
  .mr-tb-12,
  .mx-tb-12 {
    margin-right: 1.2rem !important;
  }
  .mb-tb-12,
  .my-tb-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-tb-12,
  .mx-tb-12 {
    margin-left: 1.2rem !important;
  }
  .m-tb-15 {
    margin: 1.5rem !important;
  }
  .mt-tb-15,
  .my-tb-15 {
    margin-top: 1.5rem !important;
  }
  .mr-tb-15,
  .mx-tb-15 {
    margin-right: 1.5rem !important;
  }
  .mb-tb-15,
  .my-tb-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-tb-15,
  .mx-tb-15 {
    margin-left: 1.5rem !important;
  }
  .m-tb-16 {
    margin: 1.6rem !important;
  }
  .mt-tb-16,
  .my-tb-16 {
    margin-top: 1.6rem !important;
  }
  .mr-tb-16,
  .mx-tb-16 {
    margin-right: 1.6rem !important;
  }
  .mb-tb-16,
  .my-tb-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-tb-16,
  .mx-tb-16 {
    margin-left: 1.6rem !important;
  }
  .m-tb-20 {
    margin: 2rem !important;
  }
  .mt-tb-20,
  .my-tb-20 {
    margin-top: 2rem !important;
  }
  .mr-tb-20,
  .mx-tb-20 {
    margin-right: 2rem !important;
  }
  .mb-tb-20,
  .my-tb-20 {
    margin-bottom: 2rem !important;
  }
  .ml-tb-20,
  .mx-tb-20 {
    margin-left: 2rem !important;
  }
  .m-tb-24 {
    margin: 2.4rem !important;
  }
  .mt-tb-24,
  .my-tb-24 {
    margin-top: 2.4rem !important;
  }
  .mr-tb-24,
  .mx-tb-24 {
    margin-right: 2.4rem !important;
  }
  .mb-tb-24,
  .my-tb-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-tb-24,
  .mx-tb-24 {
    margin-left: 2.4rem !important;
  }
  .m-tb-30 {
    margin: 3rem !important;
  }
  .mt-tb-30,
  .my-tb-30 {
    margin-top: 3rem !important;
  }
  .mr-tb-30,
  .mx-tb-30 {
    margin-right: 3rem !important;
  }
  .mb-tb-30,
  .my-tb-30 {
    margin-bottom: 3rem !important;
  }
  .ml-tb-30,
  .mx-tb-30 {
    margin-left: 3rem !important;
  }
  .m-tb-32 {
    margin: 3.2rem !important;
  }
  .mt-tb-32,
  .my-tb-32 {
    margin-top: 3.2rem !important;
  }
  .mr-tb-32,
  .mx-tb-32 {
    margin-right: 3.2rem !important;
  }
  .mb-tb-32,
  .my-tb-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-tb-32,
  .mx-tb-32 {
    margin-left: 3.2rem !important;
  }
  .m-tb-40 {
    margin: 4rem !important;
  }
  .mt-tb-40,
  .my-tb-40 {
    margin-top: 4rem !important;
  }
  .mr-tb-40,
  .mx-tb-40 {
    margin-right: 4rem !important;
  }
  .mb-tb-40,
  .my-tb-40 {
    margin-bottom: 4rem !important;
  }
  .ml-tb-40,
  .mx-tb-40 {
    margin-left: 4rem !important;
  }
  .m-tb-50 {
    margin: 5rem !important;
  }
  .mt-tb-50,
  .my-tb-50 {
    margin-top: 5rem !important;
  }
  .mr-tb-50,
  .mx-tb-50 {
    margin-right: 5rem !important;
  }
  .mb-tb-50,
  .my-tb-50 {
    margin-bottom: 5rem !important;
  }
  .ml-tb-50,
  .mx-tb-50 {
    margin-left: 5rem !important;
  }
  .m-tb-60 {
    margin: 6rem !important;
  }
  .mt-tb-60,
  .my-tb-60 {
    margin-top: 6rem !important;
  }
  .mr-tb-60,
  .mx-tb-60 {
    margin-right: 6rem !important;
  }
  .mb-tb-60,
  .my-tb-60 {
    margin-bottom: 6rem !important;
  }
  .ml-tb-60,
  .mx-tb-60 {
    margin-left: 6rem !important;
  }
  .m-tb-70 {
    margin: 7rem !important;
  }
  .mt-tb-70,
  .my-tb-70 {
    margin-top: 7rem !important;
  }
  .mr-tb-70,
  .mx-tb-70 {
    margin-right: 7rem !important;
  }
  .mb-tb-70,
  .my-tb-70 {
    margin-bottom: 7rem !important;
  }
  .ml-tb-70,
  .mx-tb-70 {
    margin-left: 7rem !important;
  }
  .m-tb-80 {
    margin: 8rem !important;
  }
  .mt-tb-80,
  .my-tb-80 {
    margin-top: 8rem !important;
  }
  .mr-tb-80,
  .mx-tb-80 {
    margin-right: 8rem !important;
  }
  .mb-tb-80,
  .my-tb-80 {
    margin-bottom: 8rem !important;
  }
  .ml-tb-80,
  .mx-tb-80 {
    margin-left: 8rem !important;
  }
  .m-tb-90 {
    margin: 9rem !important;
  }
  .mt-tb-90,
  .my-tb-90 {
    margin-top: 9rem !important;
  }
  .mr-tb-90,
  .mx-tb-90 {
    margin-right: 9rem !important;
  }
  .mb-tb-90,
  .my-tb-90 {
    margin-bottom: 9rem !important;
  }
  .ml-tb-90,
  .mx-tb-90 {
    margin-left: 9rem !important;
  }
  .p-tb-0 {
    padding: 0 !important;
  }
  .pt-tb-0,
  .py-tb-0 {
    padding-top: 0 !important;
  }
  .pr-tb-0,
  .px-tb-0 {
    padding-right: 0 !important;
  }
  .pb-tb-0,
  .py-tb-0 {
    padding-bottom: 0 !important;
  }
  .pl-tb-0,
  .px-tb-0 {
    padding-left: 0 !important;
  }
  .p-tb-5 {
    padding: 0.5rem !important;
  }
  .pt-tb-5,
  .py-tb-5 {
    padding-top: 0.5rem !important;
  }
  .pr-tb-5,
  .px-tb-5 {
    padding-right: 0.5rem !important;
  }
  .pb-tb-5,
  .py-tb-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-tb-5,
  .px-tb-5 {
    padding-left: 0.5rem !important;
  }
  .p-tb-10 {
    padding: 1rem !important;
  }
  .pt-tb-10,
  .py-tb-10 {
    padding-top: 1rem !important;
  }
  .pr-tb-10,
  .px-tb-10 {
    padding-right: 1rem !important;
  }
  .pb-tb-10,
  .py-tb-10 {
    padding-bottom: 1rem !important;
  }
  .pl-tb-10,
  .px-tb-10 {
    padding-left: 1rem !important;
  }
  .p-tb-12 {
    padding: 1.2rem !important;
  }
  .pt-tb-12,
  .py-tb-12 {
    padding-top: 1.2rem !important;
  }
  .pr-tb-12,
  .px-tb-12 {
    padding-right: 1.2rem !important;
  }
  .pb-tb-12,
  .py-tb-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-tb-12,
  .px-tb-12 {
    padding-left: 1.2rem !important;
  }
  .p-tb-15 {
    padding: 1.5rem !important;
  }
  .pt-tb-15,
  .py-tb-15 {
    padding-top: 1.5rem !important;
  }
  .pr-tb-15,
  .px-tb-15 {
    padding-right: 1.5rem !important;
  }
  .pb-tb-15,
  .py-tb-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-tb-15,
  .px-tb-15 {
    padding-left: 1.5rem !important;
  }
  .p-tb-16 {
    padding: 1.6rem !important;
  }
  .pt-tb-16,
  .py-tb-16 {
    padding-top: 1.6rem !important;
  }
  .pr-tb-16,
  .px-tb-16 {
    padding-right: 1.6rem !important;
  }
  .pb-tb-16,
  .py-tb-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-tb-16,
  .px-tb-16 {
    padding-left: 1.6rem !important;
  }
  .p-tb-20 {
    padding: 2rem !important;
  }
  .pt-tb-20,
  .py-tb-20 {
    padding-top: 2rem !important;
  }
  .pr-tb-20,
  .px-tb-20 {
    padding-right: 2rem !important;
  }
  .pb-tb-20,
  .py-tb-20 {
    padding-bottom: 2rem !important;
  }
  .pl-tb-20,
  .px-tb-20 {
    padding-left: 2rem !important;
  }
  .p-tb-24 {
    padding: 2.4rem !important;
  }
  .pt-tb-24,
  .py-tb-24 {
    padding-top: 2.4rem !important;
  }
  .pr-tb-24,
  .px-tb-24 {
    padding-right: 2.4rem !important;
  }
  .pb-tb-24,
  .py-tb-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-tb-24,
  .px-tb-24 {
    padding-left: 2.4rem !important;
  }
  .p-tb-30 {
    padding: 3rem !important;
  }
  .pt-tb-30,
  .py-tb-30 {
    padding-top: 3rem !important;
  }
  .pr-tb-30,
  .px-tb-30 {
    padding-right: 3rem !important;
  }
  .pb-tb-30,
  .py-tb-30 {
    padding-bottom: 3rem !important;
  }
  .pl-tb-30,
  .px-tb-30 {
    padding-left: 3rem !important;
  }
  .p-tb-32 {
    padding: 3.2rem !important;
  }
  .pt-tb-32,
  .py-tb-32 {
    padding-top: 3.2rem !important;
  }
  .pr-tb-32,
  .px-tb-32 {
    padding-right: 3.2rem !important;
  }
  .pb-tb-32,
  .py-tb-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-tb-32,
  .px-tb-32 {
    padding-left: 3.2rem !important;
  }
  .p-tb-40 {
    padding: 4rem !important;
  }
  .pt-tb-40,
  .py-tb-40 {
    padding-top: 4rem !important;
  }
  .pr-tb-40,
  .px-tb-40 {
    padding-right: 4rem !important;
  }
  .pb-tb-40,
  .py-tb-40 {
    padding-bottom: 4rem !important;
  }
  .pl-tb-40,
  .px-tb-40 {
    padding-left: 4rem !important;
  }
  .p-tb-50 {
    padding: 5rem !important;
  }
  .pt-tb-50,
  .py-tb-50 {
    padding-top: 5rem !important;
  }
  .pr-tb-50,
  .px-tb-50 {
    padding-right: 5rem !important;
  }
  .pb-tb-50,
  .py-tb-50 {
    padding-bottom: 5rem !important;
  }
  .pl-tb-50,
  .px-tb-50 {
    padding-left: 5rem !important;
  }
  .p-tb-60 {
    padding: 6rem !important;
  }
  .pt-tb-60,
  .py-tb-60 {
    padding-top: 6rem !important;
  }
  .pr-tb-60,
  .px-tb-60 {
    padding-right: 6rem !important;
  }
  .pb-tb-60,
  .py-tb-60 {
    padding-bottom: 6rem !important;
  }
  .pl-tb-60,
  .px-tb-60 {
    padding-left: 6rem !important;
  }
  .p-tb-70 {
    padding: 7rem !important;
  }
  .pt-tb-70,
  .py-tb-70 {
    padding-top: 7rem !important;
  }
  .pr-tb-70,
  .px-tb-70 {
    padding-right: 7rem !important;
  }
  .pb-tb-70,
  .py-tb-70 {
    padding-bottom: 7rem !important;
  }
  .pl-tb-70,
  .px-tb-70 {
    padding-left: 7rem !important;
  }
  .p-tb-80 {
    padding: 8rem !important;
  }
  .pt-tb-80,
  .py-tb-80 {
    padding-top: 8rem !important;
  }
  .pr-tb-80,
  .px-tb-80 {
    padding-right: 8rem !important;
  }
  .pb-tb-80,
  .py-tb-80 {
    padding-bottom: 8rem !important;
  }
  .pl-tb-80,
  .px-tb-80 {
    padding-left: 8rem !important;
  }
  .p-tb-90 {
    padding: 9rem !important;
  }
  .pt-tb-90,
  .py-tb-90 {
    padding-top: 9rem !important;
  }
  .pr-tb-90,
  .px-tb-90 {
    padding-right: 9rem !important;
  }
  .pb-tb-90,
  .py-tb-90 {
    padding-bottom: 9rem !important;
  }
  .pl-tb-90,
  .px-tb-90 {
    padding-left: 9rem !important;
  }
  .m-tb-n5 {
    margin: -0.5rem !important;
  }
  .mt-tb-n5,
  .my-tb-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-tb-n5,
  .mx-tb-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-tb-n5,
  .my-tb-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-tb-n5,
  .mx-tb-n5 {
    margin-left: -0.5rem !important;
  }
  .m-tb-n10 {
    margin: -1rem !important;
  }
  .mt-tb-n10,
  .my-tb-n10 {
    margin-top: -1rem !important;
  }
  .mr-tb-n10,
  .mx-tb-n10 {
    margin-right: -1rem !important;
  }
  .mb-tb-n10,
  .my-tb-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-tb-n10,
  .mx-tb-n10 {
    margin-left: -1rem !important;
  }
  .m-tb-n12 {
    margin: -1.2rem !important;
  }
  .mt-tb-n12,
  .my-tb-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-tb-n12,
  .mx-tb-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-tb-n12,
  .my-tb-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-tb-n12,
  .mx-tb-n12 {
    margin-left: -1.2rem !important;
  }
  .m-tb-n15 {
    margin: -1.5rem !important;
  }
  .mt-tb-n15,
  .my-tb-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-tb-n15,
  .mx-tb-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-tb-n15,
  .my-tb-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-tb-n15,
  .mx-tb-n15 {
    margin-left: -1.5rem !important;
  }
  .m-tb-n16 {
    margin: -1.6rem !important;
  }
  .mt-tb-n16,
  .my-tb-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-tb-n16,
  .mx-tb-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-tb-n16,
  .my-tb-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-tb-n16,
  .mx-tb-n16 {
    margin-left: -1.6rem !important;
  }
  .m-tb-n20 {
    margin: -2rem !important;
  }
  .mt-tb-n20,
  .my-tb-n20 {
    margin-top: -2rem !important;
  }
  .mr-tb-n20,
  .mx-tb-n20 {
    margin-right: -2rem !important;
  }
  .mb-tb-n20,
  .my-tb-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-tb-n20,
  .mx-tb-n20 {
    margin-left: -2rem !important;
  }
  .m-tb-n24 {
    margin: -2.4rem !important;
  }
  .mt-tb-n24,
  .my-tb-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-tb-n24,
  .mx-tb-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-tb-n24,
  .my-tb-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-tb-n24,
  .mx-tb-n24 {
    margin-left: -2.4rem !important;
  }
  .m-tb-n30 {
    margin: -3rem !important;
  }
  .mt-tb-n30,
  .my-tb-n30 {
    margin-top: -3rem !important;
  }
  .mr-tb-n30,
  .mx-tb-n30 {
    margin-right: -3rem !important;
  }
  .mb-tb-n30,
  .my-tb-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-tb-n30,
  .mx-tb-n30 {
    margin-left: -3rem !important;
  }
  .m-tb-n32 {
    margin: -3.2rem !important;
  }
  .mt-tb-n32,
  .my-tb-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-tb-n32,
  .mx-tb-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-tb-n32,
  .my-tb-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-tb-n32,
  .mx-tb-n32 {
    margin-left: -3.2rem !important;
  }
  .m-tb-n40 {
    margin: -4rem !important;
  }
  .mt-tb-n40,
  .my-tb-n40 {
    margin-top: -4rem !important;
  }
  .mr-tb-n40,
  .mx-tb-n40 {
    margin-right: -4rem !important;
  }
  .mb-tb-n40,
  .my-tb-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-tb-n40,
  .mx-tb-n40 {
    margin-left: -4rem !important;
  }
  .m-tb-n50 {
    margin: -5rem !important;
  }
  .mt-tb-n50,
  .my-tb-n50 {
    margin-top: -5rem !important;
  }
  .mr-tb-n50,
  .mx-tb-n50 {
    margin-right: -5rem !important;
  }
  .mb-tb-n50,
  .my-tb-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-tb-n50,
  .mx-tb-n50 {
    margin-left: -5rem !important;
  }
  .m-tb-n60 {
    margin: -6rem !important;
  }
  .mt-tb-n60,
  .my-tb-n60 {
    margin-top: -6rem !important;
  }
  .mr-tb-n60,
  .mx-tb-n60 {
    margin-right: -6rem !important;
  }
  .mb-tb-n60,
  .my-tb-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-tb-n60,
  .mx-tb-n60 {
    margin-left: -6rem !important;
  }
  .m-tb-n70 {
    margin: -7rem !important;
  }
  .mt-tb-n70,
  .my-tb-n70 {
    margin-top: -7rem !important;
  }
  .mr-tb-n70,
  .mx-tb-n70 {
    margin-right: -7rem !important;
  }
  .mb-tb-n70,
  .my-tb-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-tb-n70,
  .mx-tb-n70 {
    margin-left: -7rem !important;
  }
  .m-tb-n80 {
    margin: -8rem !important;
  }
  .mt-tb-n80,
  .my-tb-n80 {
    margin-top: -8rem !important;
  }
  .mr-tb-n80,
  .mx-tb-n80 {
    margin-right: -8rem !important;
  }
  .mb-tb-n80,
  .my-tb-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-tb-n80,
  .mx-tb-n80 {
    margin-left: -8rem !important;
  }
  .m-tb-n90 {
    margin: -9rem !important;
  }
  .mt-tb-n90,
  .my-tb-n90 {
    margin-top: -9rem !important;
  }
  .mr-tb-n90,
  .mx-tb-n90 {
    margin-right: -9rem !important;
  }
  .mb-tb-n90,
  .my-tb-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-tb-n90,
  .mx-tb-n90 {
    margin-left: -9rem !important;
  }
  .m-tb-auto {
    margin: auto !important;
  }
  .mt-tb-auto,
  .my-tb-auto {
    margin-top: auto !important;
  }
  .mr-tb-auto,
  .mx-tb-auto {
    margin-right: auto !important;
  }
  .mb-tb-auto,
  .my-tb-auto {
    margin-bottom: auto !important;
  }
  .ml-tb-auto,
  .mx-tb-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1024px) {
  .m-ipad-0 {
    margin: 0 !important;
  }
  .mt-ipad-0,
  .my-ipad-0 {
    margin-top: 0 !important;
  }
  .mr-ipad-0,
  .mx-ipad-0 {
    margin-right: 0 !important;
  }
  .mb-ipad-0,
  .my-ipad-0 {
    margin-bottom: 0 !important;
  }
  .ml-ipad-0,
  .mx-ipad-0 {
    margin-left: 0 !important;
  }
  .m-ipad-5 {
    margin: 0.5rem !important;
  }
  .mt-ipad-5,
  .my-ipad-5 {
    margin-top: 0.5rem !important;
  }
  .mr-ipad-5,
  .mx-ipad-5 {
    margin-right: 0.5rem !important;
  }
  .mb-ipad-5,
  .my-ipad-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-ipad-5,
  .mx-ipad-5 {
    margin-left: 0.5rem !important;
  }
  .m-ipad-10 {
    margin: 1rem !important;
  }
  .mt-ipad-10,
  .my-ipad-10 {
    margin-top: 1rem !important;
  }
  .mr-ipad-10,
  .mx-ipad-10 {
    margin-right: 1rem !important;
  }
  .mb-ipad-10,
  .my-ipad-10 {
    margin-bottom: 1rem !important;
  }
  .ml-ipad-10,
  .mx-ipad-10 {
    margin-left: 1rem !important;
  }
  .m-ipad-12 {
    margin: 1.2rem !important;
  }
  .mt-ipad-12,
  .my-ipad-12 {
    margin-top: 1.2rem !important;
  }
  .mr-ipad-12,
  .mx-ipad-12 {
    margin-right: 1.2rem !important;
  }
  .mb-ipad-12,
  .my-ipad-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-ipad-12,
  .mx-ipad-12 {
    margin-left: 1.2rem !important;
  }
  .m-ipad-15 {
    margin: 1.5rem !important;
  }
  .mt-ipad-15,
  .my-ipad-15 {
    margin-top: 1.5rem !important;
  }
  .mr-ipad-15,
  .mx-ipad-15 {
    margin-right: 1.5rem !important;
  }
  .mb-ipad-15,
  .my-ipad-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-ipad-15,
  .mx-ipad-15 {
    margin-left: 1.5rem !important;
  }
  .m-ipad-16 {
    margin: 1.6rem !important;
  }
  .mt-ipad-16,
  .my-ipad-16 {
    margin-top: 1.6rem !important;
  }
  .mr-ipad-16,
  .mx-ipad-16 {
    margin-right: 1.6rem !important;
  }
  .mb-ipad-16,
  .my-ipad-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-ipad-16,
  .mx-ipad-16 {
    margin-left: 1.6rem !important;
  }
  .m-ipad-20 {
    margin: 2rem !important;
  }
  .mt-ipad-20,
  .my-ipad-20 {
    margin-top: 2rem !important;
  }
  .mr-ipad-20,
  .mx-ipad-20 {
    margin-right: 2rem !important;
  }
  .mb-ipad-20,
  .my-ipad-20 {
    margin-bottom: 2rem !important;
  }
  .ml-ipad-20,
  .mx-ipad-20 {
    margin-left: 2rem !important;
  }
  .m-ipad-24 {
    margin: 2.4rem !important;
  }
  .mt-ipad-24,
  .my-ipad-24 {
    margin-top: 2.4rem !important;
  }
  .mr-ipad-24,
  .mx-ipad-24 {
    margin-right: 2.4rem !important;
  }
  .mb-ipad-24,
  .my-ipad-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-ipad-24,
  .mx-ipad-24 {
    margin-left: 2.4rem !important;
  }
  .m-ipad-30 {
    margin: 3rem !important;
  }
  .mt-ipad-30,
  .my-ipad-30 {
    margin-top: 3rem !important;
  }
  .mr-ipad-30,
  .mx-ipad-30 {
    margin-right: 3rem !important;
  }
  .mb-ipad-30,
  .my-ipad-30 {
    margin-bottom: 3rem !important;
  }
  .ml-ipad-30,
  .mx-ipad-30 {
    margin-left: 3rem !important;
  }
  .m-ipad-32 {
    margin: 3.2rem !important;
  }
  .mt-ipad-32,
  .my-ipad-32 {
    margin-top: 3.2rem !important;
  }
  .mr-ipad-32,
  .mx-ipad-32 {
    margin-right: 3.2rem !important;
  }
  .mb-ipad-32,
  .my-ipad-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-ipad-32,
  .mx-ipad-32 {
    margin-left: 3.2rem !important;
  }
  .m-ipad-40 {
    margin: 4rem !important;
  }
  .mt-ipad-40,
  .my-ipad-40 {
    margin-top: 4rem !important;
  }
  .mr-ipad-40,
  .mx-ipad-40 {
    margin-right: 4rem !important;
  }
  .mb-ipad-40,
  .my-ipad-40 {
    margin-bottom: 4rem !important;
  }
  .ml-ipad-40,
  .mx-ipad-40 {
    margin-left: 4rem !important;
  }
  .m-ipad-50 {
    margin: 5rem !important;
  }
  .mt-ipad-50,
  .my-ipad-50 {
    margin-top: 5rem !important;
  }
  .mr-ipad-50,
  .mx-ipad-50 {
    margin-right: 5rem !important;
  }
  .mb-ipad-50,
  .my-ipad-50 {
    margin-bottom: 5rem !important;
  }
  .ml-ipad-50,
  .mx-ipad-50 {
    margin-left: 5rem !important;
  }
  .m-ipad-60 {
    margin: 6rem !important;
  }
  .mt-ipad-60,
  .my-ipad-60 {
    margin-top: 6rem !important;
  }
  .mr-ipad-60,
  .mx-ipad-60 {
    margin-right: 6rem !important;
  }
  .mb-ipad-60,
  .my-ipad-60 {
    margin-bottom: 6rem !important;
  }
  .ml-ipad-60,
  .mx-ipad-60 {
    margin-left: 6rem !important;
  }
  .m-ipad-70 {
    margin: 7rem !important;
  }
  .mt-ipad-70,
  .my-ipad-70 {
    margin-top: 7rem !important;
  }
  .mr-ipad-70,
  .mx-ipad-70 {
    margin-right: 7rem !important;
  }
  .mb-ipad-70,
  .my-ipad-70 {
    margin-bottom: 7rem !important;
  }
  .ml-ipad-70,
  .mx-ipad-70 {
    margin-left: 7rem !important;
  }
  .m-ipad-80 {
    margin: 8rem !important;
  }
  .mt-ipad-80,
  .my-ipad-80 {
    margin-top: 8rem !important;
  }
  .mr-ipad-80,
  .mx-ipad-80 {
    margin-right: 8rem !important;
  }
  .mb-ipad-80,
  .my-ipad-80 {
    margin-bottom: 8rem !important;
  }
  .ml-ipad-80,
  .mx-ipad-80 {
    margin-left: 8rem !important;
  }
  .m-ipad-90 {
    margin: 9rem !important;
  }
  .mt-ipad-90,
  .my-ipad-90 {
    margin-top: 9rem !important;
  }
  .mr-ipad-90,
  .mx-ipad-90 {
    margin-right: 9rem !important;
  }
  .mb-ipad-90,
  .my-ipad-90 {
    margin-bottom: 9rem !important;
  }
  .ml-ipad-90,
  .mx-ipad-90 {
    margin-left: 9rem !important;
  }
  .p-ipad-0 {
    padding: 0 !important;
  }
  .pt-ipad-0,
  .py-ipad-0 {
    padding-top: 0 !important;
  }
  .pr-ipad-0,
  .px-ipad-0 {
    padding-right: 0 !important;
  }
  .pb-ipad-0,
  .py-ipad-0 {
    padding-bottom: 0 !important;
  }
  .pl-ipad-0,
  .px-ipad-0 {
    padding-left: 0 !important;
  }
  .p-ipad-5 {
    padding: 0.5rem !important;
  }
  .pt-ipad-5,
  .py-ipad-5 {
    padding-top: 0.5rem !important;
  }
  .pr-ipad-5,
  .px-ipad-5 {
    padding-right: 0.5rem !important;
  }
  .pb-ipad-5,
  .py-ipad-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-ipad-5,
  .px-ipad-5 {
    padding-left: 0.5rem !important;
  }
  .p-ipad-10 {
    padding: 1rem !important;
  }
  .pt-ipad-10,
  .py-ipad-10 {
    padding-top: 1rem !important;
  }
  .pr-ipad-10,
  .px-ipad-10 {
    padding-right: 1rem !important;
  }
  .pb-ipad-10,
  .py-ipad-10 {
    padding-bottom: 1rem !important;
  }
  .pl-ipad-10,
  .px-ipad-10 {
    padding-left: 1rem !important;
  }
  .p-ipad-12 {
    padding: 1.2rem !important;
  }
  .pt-ipad-12,
  .py-ipad-12 {
    padding-top: 1.2rem !important;
  }
  .pr-ipad-12,
  .px-ipad-12 {
    padding-right: 1.2rem !important;
  }
  .pb-ipad-12,
  .py-ipad-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-ipad-12,
  .px-ipad-12 {
    padding-left: 1.2rem !important;
  }
  .p-ipad-15 {
    padding: 1.5rem !important;
  }
  .pt-ipad-15,
  .py-ipad-15 {
    padding-top: 1.5rem !important;
  }
  .pr-ipad-15,
  .px-ipad-15 {
    padding-right: 1.5rem !important;
  }
  .pb-ipad-15,
  .py-ipad-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-ipad-15,
  .px-ipad-15 {
    padding-left: 1.5rem !important;
  }
  .p-ipad-16 {
    padding: 1.6rem !important;
  }
  .pt-ipad-16,
  .py-ipad-16 {
    padding-top: 1.6rem !important;
  }
  .pr-ipad-16,
  .px-ipad-16 {
    padding-right: 1.6rem !important;
  }
  .pb-ipad-16,
  .py-ipad-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-ipad-16,
  .px-ipad-16 {
    padding-left: 1.6rem !important;
  }
  .p-ipad-20 {
    padding: 2rem !important;
  }
  .pt-ipad-20,
  .py-ipad-20 {
    padding-top: 2rem !important;
  }
  .pr-ipad-20,
  .px-ipad-20 {
    padding-right: 2rem !important;
  }
  .pb-ipad-20,
  .py-ipad-20 {
    padding-bottom: 2rem !important;
  }
  .pl-ipad-20,
  .px-ipad-20 {
    padding-left: 2rem !important;
  }
  .p-ipad-24 {
    padding: 2.4rem !important;
  }
  .pt-ipad-24,
  .py-ipad-24 {
    padding-top: 2.4rem !important;
  }
  .pr-ipad-24,
  .px-ipad-24 {
    padding-right: 2.4rem !important;
  }
  .pb-ipad-24,
  .py-ipad-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-ipad-24,
  .px-ipad-24 {
    padding-left: 2.4rem !important;
  }
  .p-ipad-30 {
    padding: 3rem !important;
  }
  .pt-ipad-30,
  .py-ipad-30 {
    padding-top: 3rem !important;
  }
  .pr-ipad-30,
  .px-ipad-30 {
    padding-right: 3rem !important;
  }
  .pb-ipad-30,
  .py-ipad-30 {
    padding-bottom: 3rem !important;
  }
  .pl-ipad-30,
  .px-ipad-30 {
    padding-left: 3rem !important;
  }
  .p-ipad-32 {
    padding: 3.2rem !important;
  }
  .pt-ipad-32,
  .py-ipad-32 {
    padding-top: 3.2rem !important;
  }
  .pr-ipad-32,
  .px-ipad-32 {
    padding-right: 3.2rem !important;
  }
  .pb-ipad-32,
  .py-ipad-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-ipad-32,
  .px-ipad-32 {
    padding-left: 3.2rem !important;
  }
  .p-ipad-40 {
    padding: 4rem !important;
  }
  .pt-ipad-40,
  .py-ipad-40 {
    padding-top: 4rem !important;
  }
  .pr-ipad-40,
  .px-ipad-40 {
    padding-right: 4rem !important;
  }
  .pb-ipad-40,
  .py-ipad-40 {
    padding-bottom: 4rem !important;
  }
  .pl-ipad-40,
  .px-ipad-40 {
    padding-left: 4rem !important;
  }
  .p-ipad-50 {
    padding: 5rem !important;
  }
  .pt-ipad-50,
  .py-ipad-50 {
    padding-top: 5rem !important;
  }
  .pr-ipad-50,
  .px-ipad-50 {
    padding-right: 5rem !important;
  }
  .pb-ipad-50,
  .py-ipad-50 {
    padding-bottom: 5rem !important;
  }
  .pl-ipad-50,
  .px-ipad-50 {
    padding-left: 5rem !important;
  }
  .p-ipad-60 {
    padding: 6rem !important;
  }
  .pt-ipad-60,
  .py-ipad-60 {
    padding-top: 6rem !important;
  }
  .pr-ipad-60,
  .px-ipad-60 {
    padding-right: 6rem !important;
  }
  .pb-ipad-60,
  .py-ipad-60 {
    padding-bottom: 6rem !important;
  }
  .pl-ipad-60,
  .px-ipad-60 {
    padding-left: 6rem !important;
  }
  .p-ipad-70 {
    padding: 7rem !important;
  }
  .pt-ipad-70,
  .py-ipad-70 {
    padding-top: 7rem !important;
  }
  .pr-ipad-70,
  .px-ipad-70 {
    padding-right: 7rem !important;
  }
  .pb-ipad-70,
  .py-ipad-70 {
    padding-bottom: 7rem !important;
  }
  .pl-ipad-70,
  .px-ipad-70 {
    padding-left: 7rem !important;
  }
  .p-ipad-80 {
    padding: 8rem !important;
  }
  .pt-ipad-80,
  .py-ipad-80 {
    padding-top: 8rem !important;
  }
  .pr-ipad-80,
  .px-ipad-80 {
    padding-right: 8rem !important;
  }
  .pb-ipad-80,
  .py-ipad-80 {
    padding-bottom: 8rem !important;
  }
  .pl-ipad-80,
  .px-ipad-80 {
    padding-left: 8rem !important;
  }
  .p-ipad-90 {
    padding: 9rem !important;
  }
  .pt-ipad-90,
  .py-ipad-90 {
    padding-top: 9rem !important;
  }
  .pr-ipad-90,
  .px-ipad-90 {
    padding-right: 9rem !important;
  }
  .pb-ipad-90,
  .py-ipad-90 {
    padding-bottom: 9rem !important;
  }
  .pl-ipad-90,
  .px-ipad-90 {
    padding-left: 9rem !important;
  }
  .m-ipad-n5 {
    margin: -0.5rem !important;
  }
  .mt-ipad-n5,
  .my-ipad-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-ipad-n5,
  .mx-ipad-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-ipad-n5,
  .my-ipad-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-ipad-n5,
  .mx-ipad-n5 {
    margin-left: -0.5rem !important;
  }
  .m-ipad-n10 {
    margin: -1rem !important;
  }
  .mt-ipad-n10,
  .my-ipad-n10 {
    margin-top: -1rem !important;
  }
  .mr-ipad-n10,
  .mx-ipad-n10 {
    margin-right: -1rem !important;
  }
  .mb-ipad-n10,
  .my-ipad-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-ipad-n10,
  .mx-ipad-n10 {
    margin-left: -1rem !important;
  }
  .m-ipad-n12 {
    margin: -1.2rem !important;
  }
  .mt-ipad-n12,
  .my-ipad-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-ipad-n12,
  .mx-ipad-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-ipad-n12,
  .my-ipad-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-ipad-n12,
  .mx-ipad-n12 {
    margin-left: -1.2rem !important;
  }
  .m-ipad-n15 {
    margin: -1.5rem !important;
  }
  .mt-ipad-n15,
  .my-ipad-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-ipad-n15,
  .mx-ipad-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-ipad-n15,
  .my-ipad-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-ipad-n15,
  .mx-ipad-n15 {
    margin-left: -1.5rem !important;
  }
  .m-ipad-n16 {
    margin: -1.6rem !important;
  }
  .mt-ipad-n16,
  .my-ipad-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-ipad-n16,
  .mx-ipad-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-ipad-n16,
  .my-ipad-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-ipad-n16,
  .mx-ipad-n16 {
    margin-left: -1.6rem !important;
  }
  .m-ipad-n20 {
    margin: -2rem !important;
  }
  .mt-ipad-n20,
  .my-ipad-n20 {
    margin-top: -2rem !important;
  }
  .mr-ipad-n20,
  .mx-ipad-n20 {
    margin-right: -2rem !important;
  }
  .mb-ipad-n20,
  .my-ipad-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-ipad-n20,
  .mx-ipad-n20 {
    margin-left: -2rem !important;
  }
  .m-ipad-n24 {
    margin: -2.4rem !important;
  }
  .mt-ipad-n24,
  .my-ipad-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-ipad-n24,
  .mx-ipad-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-ipad-n24,
  .my-ipad-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-ipad-n24,
  .mx-ipad-n24 {
    margin-left: -2.4rem !important;
  }
  .m-ipad-n30 {
    margin: -3rem !important;
  }
  .mt-ipad-n30,
  .my-ipad-n30 {
    margin-top: -3rem !important;
  }
  .mr-ipad-n30,
  .mx-ipad-n30 {
    margin-right: -3rem !important;
  }
  .mb-ipad-n30,
  .my-ipad-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-ipad-n30,
  .mx-ipad-n30 {
    margin-left: -3rem !important;
  }
  .m-ipad-n32 {
    margin: -3.2rem !important;
  }
  .mt-ipad-n32,
  .my-ipad-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-ipad-n32,
  .mx-ipad-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-ipad-n32,
  .my-ipad-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-ipad-n32,
  .mx-ipad-n32 {
    margin-left: -3.2rem !important;
  }
  .m-ipad-n40 {
    margin: -4rem !important;
  }
  .mt-ipad-n40,
  .my-ipad-n40 {
    margin-top: -4rem !important;
  }
  .mr-ipad-n40,
  .mx-ipad-n40 {
    margin-right: -4rem !important;
  }
  .mb-ipad-n40,
  .my-ipad-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-ipad-n40,
  .mx-ipad-n40 {
    margin-left: -4rem !important;
  }
  .m-ipad-n50 {
    margin: -5rem !important;
  }
  .mt-ipad-n50,
  .my-ipad-n50 {
    margin-top: -5rem !important;
  }
  .mr-ipad-n50,
  .mx-ipad-n50 {
    margin-right: -5rem !important;
  }
  .mb-ipad-n50,
  .my-ipad-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-ipad-n50,
  .mx-ipad-n50 {
    margin-left: -5rem !important;
  }
  .m-ipad-n60 {
    margin: -6rem !important;
  }
  .mt-ipad-n60,
  .my-ipad-n60 {
    margin-top: -6rem !important;
  }
  .mr-ipad-n60,
  .mx-ipad-n60 {
    margin-right: -6rem !important;
  }
  .mb-ipad-n60,
  .my-ipad-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-ipad-n60,
  .mx-ipad-n60 {
    margin-left: -6rem !important;
  }
  .m-ipad-n70 {
    margin: -7rem !important;
  }
  .mt-ipad-n70,
  .my-ipad-n70 {
    margin-top: -7rem !important;
  }
  .mr-ipad-n70,
  .mx-ipad-n70 {
    margin-right: -7rem !important;
  }
  .mb-ipad-n70,
  .my-ipad-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-ipad-n70,
  .mx-ipad-n70 {
    margin-left: -7rem !important;
  }
  .m-ipad-n80 {
    margin: -8rem !important;
  }
  .mt-ipad-n80,
  .my-ipad-n80 {
    margin-top: -8rem !important;
  }
  .mr-ipad-n80,
  .mx-ipad-n80 {
    margin-right: -8rem !important;
  }
  .mb-ipad-n80,
  .my-ipad-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-ipad-n80,
  .mx-ipad-n80 {
    margin-left: -8rem !important;
  }
  .m-ipad-n90 {
    margin: -9rem !important;
  }
  .mt-ipad-n90,
  .my-ipad-n90 {
    margin-top: -9rem !important;
  }
  .mr-ipad-n90,
  .mx-ipad-n90 {
    margin-right: -9rem !important;
  }
  .mb-ipad-n90,
  .my-ipad-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-ipad-n90,
  .mx-ipad-n90 {
    margin-left: -9rem !important;
  }
  .m-ipad-auto {
    margin: auto !important;
  }
  .mt-ipad-auto,
  .my-ipad-auto {
    margin-top: auto !important;
  }
  .mr-ipad-auto,
  .mx-ipad-auto {
    margin-right: auto !important;
  }
  .mb-ipad-auto,
  .my-ipad-auto {
    margin-bottom: auto !important;
  }
  .ml-ipad-auto,
  .mx-ipad-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1066px) {
  .m-liquid-0 {
    margin: 0 !important;
  }
  .mt-liquid-0,
  .my-liquid-0 {
    margin-top: 0 !important;
  }
  .mr-liquid-0,
  .mx-liquid-0 {
    margin-right: 0 !important;
  }
  .mb-liquid-0,
  .my-liquid-0 {
    margin-bottom: 0 !important;
  }
  .ml-liquid-0,
  .mx-liquid-0 {
    margin-left: 0 !important;
  }
  .m-liquid-5 {
    margin: 0.5rem !important;
  }
  .mt-liquid-5,
  .my-liquid-5 {
    margin-top: 0.5rem !important;
  }
  .mr-liquid-5,
  .mx-liquid-5 {
    margin-right: 0.5rem !important;
  }
  .mb-liquid-5,
  .my-liquid-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-liquid-5,
  .mx-liquid-5 {
    margin-left: 0.5rem !important;
  }
  .m-liquid-10 {
    margin: 1rem !important;
  }
  .mt-liquid-10,
  .my-liquid-10 {
    margin-top: 1rem !important;
  }
  .mr-liquid-10,
  .mx-liquid-10 {
    margin-right: 1rem !important;
  }
  .mb-liquid-10,
  .my-liquid-10 {
    margin-bottom: 1rem !important;
  }
  .ml-liquid-10,
  .mx-liquid-10 {
    margin-left: 1rem !important;
  }
  .m-liquid-12 {
    margin: 1.2rem !important;
  }
  .mt-liquid-12,
  .my-liquid-12 {
    margin-top: 1.2rem !important;
  }
  .mr-liquid-12,
  .mx-liquid-12 {
    margin-right: 1.2rem !important;
  }
  .mb-liquid-12,
  .my-liquid-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-liquid-12,
  .mx-liquid-12 {
    margin-left: 1.2rem !important;
  }
  .m-liquid-15 {
    margin: 1.5rem !important;
  }
  .mt-liquid-15,
  .my-liquid-15 {
    margin-top: 1.5rem !important;
  }
  .mr-liquid-15,
  .mx-liquid-15 {
    margin-right: 1.5rem !important;
  }
  .mb-liquid-15,
  .my-liquid-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-liquid-15,
  .mx-liquid-15 {
    margin-left: 1.5rem !important;
  }
  .m-liquid-16 {
    margin: 1.6rem !important;
  }
  .mt-liquid-16,
  .my-liquid-16 {
    margin-top: 1.6rem !important;
  }
  .mr-liquid-16,
  .mx-liquid-16 {
    margin-right: 1.6rem !important;
  }
  .mb-liquid-16,
  .my-liquid-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-liquid-16,
  .mx-liquid-16 {
    margin-left: 1.6rem !important;
  }
  .m-liquid-20 {
    margin: 2rem !important;
  }
  .mt-liquid-20,
  .my-liquid-20 {
    margin-top: 2rem !important;
  }
  .mr-liquid-20,
  .mx-liquid-20 {
    margin-right: 2rem !important;
  }
  .mb-liquid-20,
  .my-liquid-20 {
    margin-bottom: 2rem !important;
  }
  .ml-liquid-20,
  .mx-liquid-20 {
    margin-left: 2rem !important;
  }
  .m-liquid-24 {
    margin: 2.4rem !important;
  }
  .mt-liquid-24,
  .my-liquid-24 {
    margin-top: 2.4rem !important;
  }
  .mr-liquid-24,
  .mx-liquid-24 {
    margin-right: 2.4rem !important;
  }
  .mb-liquid-24,
  .my-liquid-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-liquid-24,
  .mx-liquid-24 {
    margin-left: 2.4rem !important;
  }
  .m-liquid-30 {
    margin: 3rem !important;
  }
  .mt-liquid-30,
  .my-liquid-30 {
    margin-top: 3rem !important;
  }
  .mr-liquid-30,
  .mx-liquid-30 {
    margin-right: 3rem !important;
  }
  .mb-liquid-30,
  .my-liquid-30 {
    margin-bottom: 3rem !important;
  }
  .ml-liquid-30,
  .mx-liquid-30 {
    margin-left: 3rem !important;
  }
  .m-liquid-32 {
    margin: 3.2rem !important;
  }
  .mt-liquid-32,
  .my-liquid-32 {
    margin-top: 3.2rem !important;
  }
  .mr-liquid-32,
  .mx-liquid-32 {
    margin-right: 3.2rem !important;
  }
  .mb-liquid-32,
  .my-liquid-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-liquid-32,
  .mx-liquid-32 {
    margin-left: 3.2rem !important;
  }
  .m-liquid-40 {
    margin: 4rem !important;
  }
  .mt-liquid-40,
  .my-liquid-40 {
    margin-top: 4rem !important;
  }
  .mr-liquid-40,
  .mx-liquid-40 {
    margin-right: 4rem !important;
  }
  .mb-liquid-40,
  .my-liquid-40 {
    margin-bottom: 4rem !important;
  }
  .ml-liquid-40,
  .mx-liquid-40 {
    margin-left: 4rem !important;
  }
  .m-liquid-50 {
    margin: 5rem !important;
  }
  .mt-liquid-50,
  .my-liquid-50 {
    margin-top: 5rem !important;
  }
  .mr-liquid-50,
  .mx-liquid-50 {
    margin-right: 5rem !important;
  }
  .mb-liquid-50,
  .my-liquid-50 {
    margin-bottom: 5rem !important;
  }
  .ml-liquid-50,
  .mx-liquid-50 {
    margin-left: 5rem !important;
  }
  .m-liquid-60 {
    margin: 6rem !important;
  }
  .mt-liquid-60,
  .my-liquid-60 {
    margin-top: 6rem !important;
  }
  .mr-liquid-60,
  .mx-liquid-60 {
    margin-right: 6rem !important;
  }
  .mb-liquid-60,
  .my-liquid-60 {
    margin-bottom: 6rem !important;
  }
  .ml-liquid-60,
  .mx-liquid-60 {
    margin-left: 6rem !important;
  }
  .m-liquid-70 {
    margin: 7rem !important;
  }
  .mt-liquid-70,
  .my-liquid-70 {
    margin-top: 7rem !important;
  }
  .mr-liquid-70,
  .mx-liquid-70 {
    margin-right: 7rem !important;
  }
  .mb-liquid-70,
  .my-liquid-70 {
    margin-bottom: 7rem !important;
  }
  .ml-liquid-70,
  .mx-liquid-70 {
    margin-left: 7rem !important;
  }
  .m-liquid-80 {
    margin: 8rem !important;
  }
  .mt-liquid-80,
  .my-liquid-80 {
    margin-top: 8rem !important;
  }
  .mr-liquid-80,
  .mx-liquid-80 {
    margin-right: 8rem !important;
  }
  .mb-liquid-80,
  .my-liquid-80 {
    margin-bottom: 8rem !important;
  }
  .ml-liquid-80,
  .mx-liquid-80 {
    margin-left: 8rem !important;
  }
  .m-liquid-90 {
    margin: 9rem !important;
  }
  .mt-liquid-90,
  .my-liquid-90 {
    margin-top: 9rem !important;
  }
  .mr-liquid-90,
  .mx-liquid-90 {
    margin-right: 9rem !important;
  }
  .mb-liquid-90,
  .my-liquid-90 {
    margin-bottom: 9rem !important;
  }
  .ml-liquid-90,
  .mx-liquid-90 {
    margin-left: 9rem !important;
  }
  .p-liquid-0 {
    padding: 0 !important;
  }
  .pt-liquid-0,
  .py-liquid-0 {
    padding-top: 0 !important;
  }
  .pr-liquid-0,
  .px-liquid-0 {
    padding-right: 0 !important;
  }
  .pb-liquid-0,
  .py-liquid-0 {
    padding-bottom: 0 !important;
  }
  .pl-liquid-0,
  .px-liquid-0 {
    padding-left: 0 !important;
  }
  .p-liquid-5 {
    padding: 0.5rem !important;
  }
  .pt-liquid-5,
  .py-liquid-5 {
    padding-top: 0.5rem !important;
  }
  .pr-liquid-5,
  .px-liquid-5 {
    padding-right: 0.5rem !important;
  }
  .pb-liquid-5,
  .py-liquid-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-liquid-5,
  .px-liquid-5 {
    padding-left: 0.5rem !important;
  }
  .p-liquid-10 {
    padding: 1rem !important;
  }
  .pt-liquid-10,
  .py-liquid-10 {
    padding-top: 1rem !important;
  }
  .pr-liquid-10,
  .px-liquid-10 {
    padding-right: 1rem !important;
  }
  .pb-liquid-10,
  .py-liquid-10 {
    padding-bottom: 1rem !important;
  }
  .pl-liquid-10,
  .px-liquid-10 {
    padding-left: 1rem !important;
  }
  .p-liquid-12 {
    padding: 1.2rem !important;
  }
  .pt-liquid-12,
  .py-liquid-12 {
    padding-top: 1.2rem !important;
  }
  .pr-liquid-12,
  .px-liquid-12 {
    padding-right: 1.2rem !important;
  }
  .pb-liquid-12,
  .py-liquid-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-liquid-12,
  .px-liquid-12 {
    padding-left: 1.2rem !important;
  }
  .p-liquid-15 {
    padding: 1.5rem !important;
  }
  .pt-liquid-15,
  .py-liquid-15 {
    padding-top: 1.5rem !important;
  }
  .pr-liquid-15,
  .px-liquid-15 {
    padding-right: 1.5rem !important;
  }
  .pb-liquid-15,
  .py-liquid-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-liquid-15,
  .px-liquid-15 {
    padding-left: 1.5rem !important;
  }
  .p-liquid-16 {
    padding: 1.6rem !important;
  }
  .pt-liquid-16,
  .py-liquid-16 {
    padding-top: 1.6rem !important;
  }
  .pr-liquid-16,
  .px-liquid-16 {
    padding-right: 1.6rem !important;
  }
  .pb-liquid-16,
  .py-liquid-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-liquid-16,
  .px-liquid-16 {
    padding-left: 1.6rem !important;
  }
  .p-liquid-20 {
    padding: 2rem !important;
  }
  .pt-liquid-20,
  .py-liquid-20 {
    padding-top: 2rem !important;
  }
  .pr-liquid-20,
  .px-liquid-20 {
    padding-right: 2rem !important;
  }
  .pb-liquid-20,
  .py-liquid-20 {
    padding-bottom: 2rem !important;
  }
  .pl-liquid-20,
  .px-liquid-20 {
    padding-left: 2rem !important;
  }
  .p-liquid-24 {
    padding: 2.4rem !important;
  }
  .pt-liquid-24,
  .py-liquid-24 {
    padding-top: 2.4rem !important;
  }
  .pr-liquid-24,
  .px-liquid-24 {
    padding-right: 2.4rem !important;
  }
  .pb-liquid-24,
  .py-liquid-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-liquid-24,
  .px-liquid-24 {
    padding-left: 2.4rem !important;
  }
  .p-liquid-30 {
    padding: 3rem !important;
  }
  .pt-liquid-30,
  .py-liquid-30 {
    padding-top: 3rem !important;
  }
  .pr-liquid-30,
  .px-liquid-30 {
    padding-right: 3rem !important;
  }
  .pb-liquid-30,
  .py-liquid-30 {
    padding-bottom: 3rem !important;
  }
  .pl-liquid-30,
  .px-liquid-30 {
    padding-left: 3rem !important;
  }
  .p-liquid-32 {
    padding: 3.2rem !important;
  }
  .pt-liquid-32,
  .py-liquid-32 {
    padding-top: 3.2rem !important;
  }
  .pr-liquid-32,
  .px-liquid-32 {
    padding-right: 3.2rem !important;
  }
  .pb-liquid-32,
  .py-liquid-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-liquid-32,
  .px-liquid-32 {
    padding-left: 3.2rem !important;
  }
  .p-liquid-40 {
    padding: 4rem !important;
  }
  .pt-liquid-40,
  .py-liquid-40 {
    padding-top: 4rem !important;
  }
  .pr-liquid-40,
  .px-liquid-40 {
    padding-right: 4rem !important;
  }
  .pb-liquid-40,
  .py-liquid-40 {
    padding-bottom: 4rem !important;
  }
  .pl-liquid-40,
  .px-liquid-40 {
    padding-left: 4rem !important;
  }
  .p-liquid-50 {
    padding: 5rem !important;
  }
  .pt-liquid-50,
  .py-liquid-50 {
    padding-top: 5rem !important;
  }
  .pr-liquid-50,
  .px-liquid-50 {
    padding-right: 5rem !important;
  }
  .pb-liquid-50,
  .py-liquid-50 {
    padding-bottom: 5rem !important;
  }
  .pl-liquid-50,
  .px-liquid-50 {
    padding-left: 5rem !important;
  }
  .p-liquid-60 {
    padding: 6rem !important;
  }
  .pt-liquid-60,
  .py-liquid-60 {
    padding-top: 6rem !important;
  }
  .pr-liquid-60,
  .px-liquid-60 {
    padding-right: 6rem !important;
  }
  .pb-liquid-60,
  .py-liquid-60 {
    padding-bottom: 6rem !important;
  }
  .pl-liquid-60,
  .px-liquid-60 {
    padding-left: 6rem !important;
  }
  .p-liquid-70 {
    padding: 7rem !important;
  }
  .pt-liquid-70,
  .py-liquid-70 {
    padding-top: 7rem !important;
  }
  .pr-liquid-70,
  .px-liquid-70 {
    padding-right: 7rem !important;
  }
  .pb-liquid-70,
  .py-liquid-70 {
    padding-bottom: 7rem !important;
  }
  .pl-liquid-70,
  .px-liquid-70 {
    padding-left: 7rem !important;
  }
  .p-liquid-80 {
    padding: 8rem !important;
  }
  .pt-liquid-80,
  .py-liquid-80 {
    padding-top: 8rem !important;
  }
  .pr-liquid-80,
  .px-liquid-80 {
    padding-right: 8rem !important;
  }
  .pb-liquid-80,
  .py-liquid-80 {
    padding-bottom: 8rem !important;
  }
  .pl-liquid-80,
  .px-liquid-80 {
    padding-left: 8rem !important;
  }
  .p-liquid-90 {
    padding: 9rem !important;
  }
  .pt-liquid-90,
  .py-liquid-90 {
    padding-top: 9rem !important;
  }
  .pr-liquid-90,
  .px-liquid-90 {
    padding-right: 9rem !important;
  }
  .pb-liquid-90,
  .py-liquid-90 {
    padding-bottom: 9rem !important;
  }
  .pl-liquid-90,
  .px-liquid-90 {
    padding-left: 9rem !important;
  }
  .m-liquid-n5 {
    margin: -0.5rem !important;
  }
  .mt-liquid-n5,
  .my-liquid-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-liquid-n5,
  .mx-liquid-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-liquid-n5,
  .my-liquid-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-liquid-n5,
  .mx-liquid-n5 {
    margin-left: -0.5rem !important;
  }
  .m-liquid-n10 {
    margin: -1rem !important;
  }
  .mt-liquid-n10,
  .my-liquid-n10 {
    margin-top: -1rem !important;
  }
  .mr-liquid-n10,
  .mx-liquid-n10 {
    margin-right: -1rem !important;
  }
  .mb-liquid-n10,
  .my-liquid-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-liquid-n10,
  .mx-liquid-n10 {
    margin-left: -1rem !important;
  }
  .m-liquid-n12 {
    margin: -1.2rem !important;
  }
  .mt-liquid-n12,
  .my-liquid-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-liquid-n12,
  .mx-liquid-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-liquid-n12,
  .my-liquid-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-liquid-n12,
  .mx-liquid-n12 {
    margin-left: -1.2rem !important;
  }
  .m-liquid-n15 {
    margin: -1.5rem !important;
  }
  .mt-liquid-n15,
  .my-liquid-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-liquid-n15,
  .mx-liquid-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-liquid-n15,
  .my-liquid-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-liquid-n15,
  .mx-liquid-n15 {
    margin-left: -1.5rem !important;
  }
  .m-liquid-n16 {
    margin: -1.6rem !important;
  }
  .mt-liquid-n16,
  .my-liquid-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-liquid-n16,
  .mx-liquid-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-liquid-n16,
  .my-liquid-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-liquid-n16,
  .mx-liquid-n16 {
    margin-left: -1.6rem !important;
  }
  .m-liquid-n20 {
    margin: -2rem !important;
  }
  .mt-liquid-n20,
  .my-liquid-n20 {
    margin-top: -2rem !important;
  }
  .mr-liquid-n20,
  .mx-liquid-n20 {
    margin-right: -2rem !important;
  }
  .mb-liquid-n20,
  .my-liquid-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-liquid-n20,
  .mx-liquid-n20 {
    margin-left: -2rem !important;
  }
  .m-liquid-n24 {
    margin: -2.4rem !important;
  }
  .mt-liquid-n24,
  .my-liquid-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-liquid-n24,
  .mx-liquid-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-liquid-n24,
  .my-liquid-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-liquid-n24,
  .mx-liquid-n24 {
    margin-left: -2.4rem !important;
  }
  .m-liquid-n30 {
    margin: -3rem !important;
  }
  .mt-liquid-n30,
  .my-liquid-n30 {
    margin-top: -3rem !important;
  }
  .mr-liquid-n30,
  .mx-liquid-n30 {
    margin-right: -3rem !important;
  }
  .mb-liquid-n30,
  .my-liquid-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-liquid-n30,
  .mx-liquid-n30 {
    margin-left: -3rem !important;
  }
  .m-liquid-n32 {
    margin: -3.2rem !important;
  }
  .mt-liquid-n32,
  .my-liquid-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-liquid-n32,
  .mx-liquid-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-liquid-n32,
  .my-liquid-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-liquid-n32,
  .mx-liquid-n32 {
    margin-left: -3.2rem !important;
  }
  .m-liquid-n40 {
    margin: -4rem !important;
  }
  .mt-liquid-n40,
  .my-liquid-n40 {
    margin-top: -4rem !important;
  }
  .mr-liquid-n40,
  .mx-liquid-n40 {
    margin-right: -4rem !important;
  }
  .mb-liquid-n40,
  .my-liquid-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-liquid-n40,
  .mx-liquid-n40 {
    margin-left: -4rem !important;
  }
  .m-liquid-n50 {
    margin: -5rem !important;
  }
  .mt-liquid-n50,
  .my-liquid-n50 {
    margin-top: -5rem !important;
  }
  .mr-liquid-n50,
  .mx-liquid-n50 {
    margin-right: -5rem !important;
  }
  .mb-liquid-n50,
  .my-liquid-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-liquid-n50,
  .mx-liquid-n50 {
    margin-left: -5rem !important;
  }
  .m-liquid-n60 {
    margin: -6rem !important;
  }
  .mt-liquid-n60,
  .my-liquid-n60 {
    margin-top: -6rem !important;
  }
  .mr-liquid-n60,
  .mx-liquid-n60 {
    margin-right: -6rem !important;
  }
  .mb-liquid-n60,
  .my-liquid-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-liquid-n60,
  .mx-liquid-n60 {
    margin-left: -6rem !important;
  }
  .m-liquid-n70 {
    margin: -7rem !important;
  }
  .mt-liquid-n70,
  .my-liquid-n70 {
    margin-top: -7rem !important;
  }
  .mr-liquid-n70,
  .mx-liquid-n70 {
    margin-right: -7rem !important;
  }
  .mb-liquid-n70,
  .my-liquid-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-liquid-n70,
  .mx-liquid-n70 {
    margin-left: -7rem !important;
  }
  .m-liquid-n80 {
    margin: -8rem !important;
  }
  .mt-liquid-n80,
  .my-liquid-n80 {
    margin-top: -8rem !important;
  }
  .mr-liquid-n80,
  .mx-liquid-n80 {
    margin-right: -8rem !important;
  }
  .mb-liquid-n80,
  .my-liquid-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-liquid-n80,
  .mx-liquid-n80 {
    margin-left: -8rem !important;
  }
  .m-liquid-n90 {
    margin: -9rem !important;
  }
  .mt-liquid-n90,
  .my-liquid-n90 {
    margin-top: -9rem !important;
  }
  .mr-liquid-n90,
  .mx-liquid-n90 {
    margin-right: -9rem !important;
  }
  .mb-liquid-n90,
  .my-liquid-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-liquid-n90,
  .mx-liquid-n90 {
    margin-left: -9rem !important;
  }
  .m-liquid-auto {
    margin: auto !important;
  }
  .mt-liquid-auto,
  .my-liquid-auto {
    margin-top: auto !important;
  }
  .mr-liquid-auto,
  .mx-liquid-auto {
    margin-right: auto !important;
  }
  .mb-liquid-auto,
  .my-liquid-auto {
    margin-bottom: auto !important;
  }
  .ml-liquid-auto,
  .mx-liquid-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-5 {
    margin: 0.5rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xl-10 {
    margin: 1rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 1rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 1rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 1rem !important;
  }
  .m-xl-12 {
    margin: 1.2rem !important;
  }
  .mt-xl-12,
  .my-xl-12 {
    margin-top: 1.2rem !important;
  }
  .mr-xl-12,
  .mx-xl-12 {
    margin-right: 1.2rem !important;
  }
  .mb-xl-12,
  .my-xl-12 {
    margin-bottom: 1.2rem !important;
  }
  .ml-xl-12,
  .mx-xl-12 {
    margin-left: 1.2rem !important;
  }
  .m-xl-15 {
    margin: 1.5rem !important;
  }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 1.5rem !important;
  }
  .m-xl-16 {
    margin: 1.6rem !important;
  }
  .mt-xl-16,
  .my-xl-16 {
    margin-top: 1.6rem !important;
  }
  .mr-xl-16,
  .mx-xl-16 {
    margin-right: 1.6rem !important;
  }
  .mb-xl-16,
  .my-xl-16 {
    margin-bottom: 1.6rem !important;
  }
  .ml-xl-16,
  .mx-xl-16 {
    margin-left: 1.6rem !important;
  }
  .m-xl-20 {
    margin: 2rem !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 2rem !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 2rem !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 2rem !important;
  }
  .m-xl-24 {
    margin: 2.4rem !important;
  }
  .mt-xl-24,
  .my-xl-24 {
    margin-top: 2.4rem !important;
  }
  .mr-xl-24,
  .mx-xl-24 {
    margin-right: 2.4rem !important;
  }
  .mb-xl-24,
  .my-xl-24 {
    margin-bottom: 2.4rem !important;
  }
  .ml-xl-24,
  .mx-xl-24 {
    margin-left: 2.4rem !important;
  }
  .m-xl-30 {
    margin: 3rem !important;
  }
  .mt-xl-30,
  .my-xl-30 {
    margin-top: 3rem !important;
  }
  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 3rem !important;
  }
  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 3rem !important;
  }
  .m-xl-32 {
    margin: 3.2rem !important;
  }
  .mt-xl-32,
  .my-xl-32 {
    margin-top: 3.2rem !important;
  }
  .mr-xl-32,
  .mx-xl-32 {
    margin-right: 3.2rem !important;
  }
  .mb-xl-32,
  .my-xl-32 {
    margin-bottom: 3.2rem !important;
  }
  .ml-xl-32,
  .mx-xl-32 {
    margin-left: 3.2rem !important;
  }
  .m-xl-40 {
    margin: 4rem !important;
  }
  .mt-xl-40,
  .my-xl-40 {
    margin-top: 4rem !important;
  }
  .mr-xl-40,
  .mx-xl-40 {
    margin-right: 4rem !important;
  }
  .mb-xl-40,
  .my-xl-40 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-40,
  .mx-xl-40 {
    margin-left: 4rem !important;
  }
  .m-xl-50 {
    margin: 5rem !important;
  }
  .mt-xl-50,
  .my-xl-50 {
    margin-top: 5rem !important;
  }
  .mr-xl-50,
  .mx-xl-50 {
    margin-right: 5rem !important;
  }
  .mb-xl-50,
  .my-xl-50 {
    margin-bottom: 5rem !important;
  }
  .ml-xl-50,
  .mx-xl-50 {
    margin-left: 5rem !important;
  }
  .m-xl-60 {
    margin: 6rem !important;
  }
  .mt-xl-60,
  .my-xl-60 {
    margin-top: 6rem !important;
  }
  .mr-xl-60,
  .mx-xl-60 {
    margin-right: 6rem !important;
  }
  .mb-xl-60,
  .my-xl-60 {
    margin-bottom: 6rem !important;
  }
  .ml-xl-60,
  .mx-xl-60 {
    margin-left: 6rem !important;
  }
  .m-xl-70 {
    margin: 7rem !important;
  }
  .mt-xl-70,
  .my-xl-70 {
    margin-top: 7rem !important;
  }
  .mr-xl-70,
  .mx-xl-70 {
    margin-right: 7rem !important;
  }
  .mb-xl-70,
  .my-xl-70 {
    margin-bottom: 7rem !important;
  }
  .ml-xl-70,
  .mx-xl-70 {
    margin-left: 7rem !important;
  }
  .m-xl-80 {
    margin: 8rem !important;
  }
  .mt-xl-80,
  .my-xl-80 {
    margin-top: 8rem !important;
  }
  .mr-xl-80,
  .mx-xl-80 {
    margin-right: 8rem !important;
  }
  .mb-xl-80,
  .my-xl-80 {
    margin-bottom: 8rem !important;
  }
  .ml-xl-80,
  .mx-xl-80 {
    margin-left: 8rem !important;
  }
  .m-xl-90 {
    margin: 9rem !important;
  }
  .mt-xl-90,
  .my-xl-90 {
    margin-top: 9rem !important;
  }
  .mr-xl-90,
  .mx-xl-90 {
    margin-right: 9rem !important;
  }
  .mb-xl-90,
  .my-xl-90 {
    margin-bottom: 9rem !important;
  }
  .ml-xl-90,
  .mx-xl-90 {
    margin-left: 9rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-5 {
    padding: 0.5rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xl-10 {
    padding: 1rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 1rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 1rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 1rem !important;
  }
  .p-xl-12 {
    padding: 1.2rem !important;
  }
  .pt-xl-12,
  .py-xl-12 {
    padding-top: 1.2rem !important;
  }
  .pr-xl-12,
  .px-xl-12 {
    padding-right: 1.2rem !important;
  }
  .pb-xl-12,
  .py-xl-12 {
    padding-bottom: 1.2rem !important;
  }
  .pl-xl-12,
  .px-xl-12 {
    padding-left: 1.2rem !important;
  }
  .p-xl-15 {
    padding: 1.5rem !important;
  }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 1.5rem !important;
  }
  .p-xl-16 {
    padding: 1.6rem !important;
  }
  .pt-xl-16,
  .py-xl-16 {
    padding-top: 1.6rem !important;
  }
  .pr-xl-16,
  .px-xl-16 {
    padding-right: 1.6rem !important;
  }
  .pb-xl-16,
  .py-xl-16 {
    padding-bottom: 1.6rem !important;
  }
  .pl-xl-16,
  .px-xl-16 {
    padding-left: 1.6rem !important;
  }
  .p-xl-20 {
    padding: 2rem !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 2rem !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 2rem !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 2rem !important;
  }
  .p-xl-24 {
    padding: 2.4rem !important;
  }
  .pt-xl-24,
  .py-xl-24 {
    padding-top: 2.4rem !important;
  }
  .pr-xl-24,
  .px-xl-24 {
    padding-right: 2.4rem !important;
  }
  .pb-xl-24,
  .py-xl-24 {
    padding-bottom: 2.4rem !important;
  }
  .pl-xl-24,
  .px-xl-24 {
    padding-left: 2.4rem !important;
  }
  .p-xl-30 {
    padding: 3rem !important;
  }
  .pt-xl-30,
  .py-xl-30 {
    padding-top: 3rem !important;
  }
  .pr-xl-30,
  .px-xl-30 {
    padding-right: 3rem !important;
  }
  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-30,
  .px-xl-30 {
    padding-left: 3rem !important;
  }
  .p-xl-32 {
    padding: 3.2rem !important;
  }
  .pt-xl-32,
  .py-xl-32 {
    padding-top: 3.2rem !important;
  }
  .pr-xl-32,
  .px-xl-32 {
    padding-right: 3.2rem !important;
  }
  .pb-xl-32,
  .py-xl-32 {
    padding-bottom: 3.2rem !important;
  }
  .pl-xl-32,
  .px-xl-32 {
    padding-left: 3.2rem !important;
  }
  .p-xl-40 {
    padding: 4rem !important;
  }
  .pt-xl-40,
  .py-xl-40 {
    padding-top: 4rem !important;
  }
  .pr-xl-40,
  .px-xl-40 {
    padding-right: 4rem !important;
  }
  .pb-xl-40,
  .py-xl-40 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-40,
  .px-xl-40 {
    padding-left: 4rem !important;
  }
  .p-xl-50 {
    padding: 5rem !important;
  }
  .pt-xl-50,
  .py-xl-50 {
    padding-top: 5rem !important;
  }
  .pr-xl-50,
  .px-xl-50 {
    padding-right: 5rem !important;
  }
  .pb-xl-50,
  .py-xl-50 {
    padding-bottom: 5rem !important;
  }
  .pl-xl-50,
  .px-xl-50 {
    padding-left: 5rem !important;
  }
  .p-xl-60 {
    padding: 6rem !important;
  }
  .pt-xl-60,
  .py-xl-60 {
    padding-top: 6rem !important;
  }
  .pr-xl-60,
  .px-xl-60 {
    padding-right: 6rem !important;
  }
  .pb-xl-60,
  .py-xl-60 {
    padding-bottom: 6rem !important;
  }
  .pl-xl-60,
  .px-xl-60 {
    padding-left: 6rem !important;
  }
  .p-xl-70 {
    padding: 7rem !important;
  }
  .pt-xl-70,
  .py-xl-70 {
    padding-top: 7rem !important;
  }
  .pr-xl-70,
  .px-xl-70 {
    padding-right: 7rem !important;
  }
  .pb-xl-70,
  .py-xl-70 {
    padding-bottom: 7rem !important;
  }
  .pl-xl-70,
  .px-xl-70 {
    padding-left: 7rem !important;
  }
  .p-xl-80 {
    padding: 8rem !important;
  }
  .pt-xl-80,
  .py-xl-80 {
    padding-top: 8rem !important;
  }
  .pr-xl-80,
  .px-xl-80 {
    padding-right: 8rem !important;
  }
  .pb-xl-80,
  .py-xl-80 {
    padding-bottom: 8rem !important;
  }
  .pl-xl-80,
  .px-xl-80 {
    padding-left: 8rem !important;
  }
  .p-xl-90 {
    padding: 9rem !important;
  }
  .pt-xl-90,
  .py-xl-90 {
    padding-top: 9rem !important;
  }
  .pr-xl-90,
  .px-xl-90 {
    padding-right: 9rem !important;
  }
  .pb-xl-90,
  .py-xl-90 {
    padding-bottom: 9rem !important;
  }
  .pl-xl-90,
  .px-xl-90 {
    padding-left: 9rem !important;
  }
  .m-xl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n10 {
    margin: -1rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -1rem !important;
  }
  .m-xl-n12 {
    margin: -1.2rem !important;
  }
  .mt-xl-n12,
  .my-xl-n12 {
    margin-top: -1.2rem !important;
  }
  .mr-xl-n12,
  .mx-xl-n12 {
    margin-right: -1.2rem !important;
  }
  .mb-xl-n12,
  .my-xl-n12 {
    margin-bottom: -1.2rem !important;
  }
  .ml-xl-n12,
  .mx-xl-n12 {
    margin-left: -1.2rem !important;
  }
  .m-xl-n15 {
    margin: -1.5rem !important;
  }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n16 {
    margin: -1.6rem !important;
  }
  .mt-xl-n16,
  .my-xl-n16 {
    margin-top: -1.6rem !important;
  }
  .mr-xl-n16,
  .mx-xl-n16 {
    margin-right: -1.6rem !important;
  }
  .mb-xl-n16,
  .my-xl-n16 {
    margin-bottom: -1.6rem !important;
  }
  .ml-xl-n16,
  .mx-xl-n16 {
    margin-left: -1.6rem !important;
  }
  .m-xl-n20 {
    margin: -2rem !important;
  }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -2rem !important;
  }
  .m-xl-n24 {
    margin: -2.4rem !important;
  }
  .mt-xl-n24,
  .my-xl-n24 {
    margin-top: -2.4rem !important;
  }
  .mr-xl-n24,
  .mx-xl-n24 {
    margin-right: -2.4rem !important;
  }
  .mb-xl-n24,
  .my-xl-n24 {
    margin-bottom: -2.4rem !important;
  }
  .ml-xl-n24,
  .mx-xl-n24 {
    margin-left: -2.4rem !important;
  }
  .m-xl-n30 {
    margin: -3rem !important;
  }
  .mt-xl-n30,
  .my-xl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xl-n30,
  .mx-xl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xl-n30,
  .my-xl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n30,
  .mx-xl-n30 {
    margin-left: -3rem !important;
  }
  .m-xl-n32 {
    margin: -3.2rem !important;
  }
  .mt-xl-n32,
  .my-xl-n32 {
    margin-top: -3.2rem !important;
  }
  .mr-xl-n32,
  .mx-xl-n32 {
    margin-right: -3.2rem !important;
  }
  .mb-xl-n32,
  .my-xl-n32 {
    margin-bottom: -3.2rem !important;
  }
  .ml-xl-n32,
  .mx-xl-n32 {
    margin-left: -3.2rem !important;
  }
  .m-xl-n40 {
    margin: -4rem !important;
  }
  .mt-xl-n40,
  .my-xl-n40 {
    margin-top: -4rem !important;
  }
  .mr-xl-n40,
  .mx-xl-n40 {
    margin-right: -4rem !important;
  }
  .mb-xl-n40,
  .my-xl-n40 {
    margin-bottom: -4rem !important;
  }
  .ml-xl-n40,
  .mx-xl-n40 {
    margin-left: -4rem !important;
  }
  .m-xl-n50 {
    margin: -5rem !important;
  }
  .mt-xl-n50,
  .my-xl-n50 {
    margin-top: -5rem !important;
  }
  .mr-xl-n50,
  .mx-xl-n50 {
    margin-right: -5rem !important;
  }
  .mb-xl-n50,
  .my-xl-n50 {
    margin-bottom: -5rem !important;
  }
  .ml-xl-n50,
  .mx-xl-n50 {
    margin-left: -5rem !important;
  }
  .m-xl-n60 {
    margin: -6rem !important;
  }
  .mt-xl-n60,
  .my-xl-n60 {
    margin-top: -6rem !important;
  }
  .mr-xl-n60,
  .mx-xl-n60 {
    margin-right: -6rem !important;
  }
  .mb-xl-n60,
  .my-xl-n60 {
    margin-bottom: -6rem !important;
  }
  .ml-xl-n60,
  .mx-xl-n60 {
    margin-left: -6rem !important;
  }
  .m-xl-n70 {
    margin: -7rem !important;
  }
  .mt-xl-n70,
  .my-xl-n70 {
    margin-top: -7rem !important;
  }
  .mr-xl-n70,
  .mx-xl-n70 {
    margin-right: -7rem !important;
  }
  .mb-xl-n70,
  .my-xl-n70 {
    margin-bottom: -7rem !important;
  }
  .ml-xl-n70,
  .mx-xl-n70 {
    margin-left: -7rem !important;
  }
  .m-xl-n80 {
    margin: -8rem !important;
  }
  .mt-xl-n80,
  .my-xl-n80 {
    margin-top: -8rem !important;
  }
  .mr-xl-n80,
  .mx-xl-n80 {
    margin-right: -8rem !important;
  }
  .mb-xl-n80,
  .my-xl-n80 {
    margin-bottom: -8rem !important;
  }
  .ml-xl-n80,
  .mx-xl-n80 {
    margin-left: -8rem !important;
  }
  .m-xl-n90 {
    margin: -9rem !important;
  }
  .mt-xl-n90,
  .my-xl-n90 {
    margin-top: -9rem !important;
  }
  .mr-xl-n90,
  .mx-xl-n90 {
    margin-right: -9rem !important;
  }
  .mb-xl-n90,
  .my-xl-n90 {
    margin-bottom: -9rem !important;
  }
  .ml-xl-n90,
  .mx-xl-n90 {
    margin-left: -9rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1025px) {
  .text-tb-left {
    text-align: left !important;
  }
  .text-tb-right {
    text-align: right !important;
  }
  .text-tb-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .text-ipad-left {
    text-align: left !important;
  }
  .text-ipad-right {
    text-align: right !important;
  }
  .text-ipad-center {
    text-align: center !important;
  }
}
@media (min-width: 1066px) {
  .text-liquid-left {
    text-align: left !important;
  }
  .text-liquid-right {
    text-align: right !important;
  }
  .text-liquid-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate__imageScale {
  animation-name: imageScale;
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeZoomOut {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fadeZoomOut {
  animation-name: fadeZoomOut;
}

@keyframes fadeZoomIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.fadeZoomIn {
  animation-name: fadeZoomIn;
}

@keyframes runningText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes runningText-lr {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.c-pagination {
  --space-btn: 0.7rem;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .c-pagination {
    --space-btn: 2rem;
    margin-top: 7rem;
  }
}
.c-pagination__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.2rem;
}
@media (min-width: 768px) {
  .c-pagination__btn a {
    height: 6.8rem;
  }
}
.c-pagination__btn a::after {
  content: "";
  background-color: var(--color-primary);
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  height: 1.2rem;
  width: 0.7rem;
}
.c-pagination__btn.prev a {
  width: 3rem;
}
.c-pagination__btn.prev a::after {
  transform: scaleX(-1);
}
.c-pagination__btn.next a {
  width: 3rem;
}
.c-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .c-pagination ul {
    gap: 1rem;
  }
}
.c-pagination ul a {
  cursor: pointer;
}
.c-pagination .page-numbers {
  background-color: #fff;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0.1em;
  height: 4.5rem;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-pagination .page-numbers {
    height: 5.4rem;
    width: 5.4rem;
  }
}
.c-pagination .page-numbers.current {
  background-color: #393A3A;
  color: #fff;
}
@media (min-width: 768px) {
  .c-pagination .page-numbers.current {
    border-radius: 10rem;
    width: 9rem;
  }
}

.single-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .single-nav {
    margin-top: 8rem;
  }
}
.single-nav .single-nav__btn {
  justify-content: center;
  min-width: 1px;
  width: 18.4rem;
}
@media (min-width: 768px) {
  .single-nav .single-nav__btn {
    padding-left: 3rem;
  }
}
.single-nav__arrow {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.single-nav__arrow::after {
  content: "";
  background-color: var(--color-primary);
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  height: 1.2rem;
  width: 0.7rem;
}
.single-nav__arrow.single-nav__arrow--prev::after {
  transform: scaleX(-1);
}
.single-nav__arrow.disabled {
  opacity: 0;
  visibility: hidden;
  cursor: auto;
}

.btn {
  display: inline-block;
  color: #1E1E1E;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-dark, .btn-sub-outline, .btn-sub {
  border-radius: 10rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  min-width: 21.8rem;
  padding: 2.2rem 3rem;
  transition: 0.3s ease;
  border: 1px solid var(--color-sub);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 768px) {
  .btn-dark, .btn-sub-outline, .btn-sub {
    padding: 1.9rem 3rem 1.9rem 4rem;
    min-width: 22.9rem;
  }
}
.btn-dark:hover::after, .btn-sub-outline:hover::after, .btn-sub:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn-dark::after, .btn-sub-outline::after, .btn-sub::after {
  content: "";
  background-color: var(--btn-hover-bg-color);
  transition: transform 0.3s ease;
  transform: scaleX(0);
  transform-origin: right;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.btn-sub {
  --btn-hover-bg-color: #fff;
  background-color: var(--color-sub);
  color: #fff;
  letter-spacing: 0.1em;
}
.btn-sub:hover {
  border-color: #F0C17B;
  color: var(--color-sub);
}
.btn-sub:hover .icon {
  background-color: var(--color-sub);
}
.btn-sub:hover .icon::after {
  background-color: #fff;
}
.btn-sub .icon {
  border-radius: 50%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  transition: 0.3s ease;
  background-color: #fff;
}
.btn-sub .icon::after {
  content: "";
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 5/8;
  width: 0.5rem;
  transition: 0.3s ease;
}
.btn-sub .icon::after {
  background-color: var(--color-sub);
}
.btn-sub[target=_blank] {
  padding: 1rem 3rem;
}
@media (min-width: 768px) {
  .btn-sub[target=_blank] {
    padding: 1rem 3rem 1.2rem;
  }
}
.btn-sub[target=_blank]:hover .icon::after {
  background-color: var(--color-sub);
}
.btn-sub[target=_blank] .icon {
  background-color: transparent;
}
.btn-sub[target=_blank] .icon::after {
  background-color: #fff;
  -webkit-mask-image: url("../images/common/icn_blank.svg");
  mask-image: url("../images/common/icn_blank.svg");
  width: 1.4rem;
}

.btn-sub-outline {
  --btn-hover-bg-color: var(--color-sub);
  background-color: #fff;
  color: var(--color-sub);
}
@media (min-width: 768px) {
  .btn-sub-outline {
    letter-spacing: 0.08em;
  }
}
.btn-sub-outline:hover {
  color: #fff;
}
.btn-sub-outline:hover .icon {
  background-color: #fff;
}
.btn-sub-outline:hover .icon::after {
  background-color: var(--color-sub);
}
.btn-sub-outline .icon {
  border-radius: 50%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  transition: 0.3s ease;
  background-color: var(--color-sub);
}
.btn-sub-outline .icon::after {
  content: "";
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 5/8;
  width: 0.5rem;
  transition: 0.3s ease;
}
.btn-sub-outline .icon::after {
  background-color: #fff;
}

.btn-dark {
  --btn-hover-bg-color: var(--color-primary);
  border: 0;
  background-color: #393A3A;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .btn-dark {
    gap: 1rem;
    padding-right: 1.5rem;
  }
}
.btn-dark:hover .icon {
  background-color: #fff;
}
.btn-dark:hover .icon::after {
  background-color: var(--color-primary);
}
.btn-dark .icon {
  border-radius: 50%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  transition: 0.3s ease;
  background-color: #fff;
}
.btn-dark .icon::after {
  content: "";
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  aspect-ratio: 5/8;
  width: 0.5rem;
  transition: 0.3s ease;
}
.btn-dark .icon::after {
  background-color: #393A3A;
}
.btn-dark[target=_blank] .icon {
  background-color: transparent;
}
.btn-dark[target=_blank] .icon::after {
  background-color: #fff;
  -webkit-mask-image: url("../images/common/icn_blank.svg");
  mask-image: url("../images/common/icn_blank.svg");
  width: 1.3rem;
}

.btn-more {
  position: relative;
  min-height: 2rem;
  padding-right: 3.5rem;
}
.btn-more::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: url("../images/common/icn_arrow04.svg") no-repeat center/contain;
  content: "";
}
@media (min-width: 768px) {
  .btn-more::before {
    top: 0.2rem;
  }
}
.btn-more span {
  display: inline-block;
  color: var(--color-body);
  line-height: 1;
  transition: 0.3s transform ease, 0.3s color ease;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .btn-more {
    padding-right: 3.5rem;
  }
  .btn-more:hover span {
    transform: translateX(8px);
    color: var(--color-sub);
  }
}

.btn-anc, .btn-anc-second {
  background-color: var(--color-primary);
  border-radius: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  height: 8.4rem;
  max-width: 34.5rem;
  text-align: left;
  padding-inline: 2.5rem 5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s background-color ease;
}
@media (min-width: 768px) {
  .btn-anc, .btn-anc-second {
    font-size: 1.8rem;
    height: 12rem;
    padding-right: 6rem;
    letter-spacing: 0.1em;
  }
  .btn-anc:hover, .btn-anc-second:hover {
    background-color: #3DACAF;
  }
  .btn-anc:hover::before, .btn-anc-second:hover::before {
    right: -100%;
    opacity: 0;
    transition: right 0.6s ease, opacity 0.6s ease;
  }
  .btn-anc:hover::after, .btn-anc-second:hover::after {
    opacity: 1;
    transition: opacity 0.6s ease;
  }
}
.btn-anc__arrow {
  content: "";
  background: url("../images/common/icn_arrow05.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  width: 2rem;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .btn-anc__arrow {
    width: 3rem;
  }
}
.btn-anc::before, .btn-anc-second::before {
  content: "";
  background: url("../images/common/bg_btn_anc.svg") no-repeat center/cover;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .btn-anc::before, .btn-anc-second::before {
    transition: right 0.5s ease, opacity 0.5s ease;
  }
}
.btn-anc::after, .btn-anc-second::after {
  content: "";
  border: 0.3rem solid #1F9599;
  border-radius: 1rem;
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media (min-width: 768px) {
  .btn-anc::after, .btn-anc-second::after {
    transition: opacity 0.5s ease;
  }
}
.btn-anc-second {
  background-color: var(--color-secondary);
}
@media (min-width: 768px) {
  .btn-anc-second:hover {
    background-color: #4797D3;
  }
}
.btn-anc-second::before {
  background-image: url("../images/common/bg_btn_anc_purple.svg");
}
.btn-anc-second::after {
  border-color: #3177AD;
}

.p-header {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  padding: 0.9rem 3rem 0.9rem 1.3rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10001;
}
@media (min-width: 768px) {
  .p-header {
    padding: 2.5rem 3rem 2.5rem 2.5rem;
  }
}
@media (min-width: 1200px) {
  .p-header {
    padding-inline: 3.5rem 5rem;
  }
}
.p-header.is-clone {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: 0.3s ease;
  background-color: #F2F7F7;
  border-radius: 0 0 2rem 2rem;
  position: fixed;
  padding-block: 1.6rem;
}
.p-header.is-clone .p-header__top {
  margin-bottom: 1rem;
}
.p-header.is-clone .p-header__btn {
  padding-block: 0.4rem;
}
.p-header.is-fixed {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.p-header__txt {
  display: none;
}
@media (min-width: 768px) {
  .p-header__txt {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
  }
}
.p-header__logo img {
  width: 17.5rem;
}
@media (min-width: 768px) {
  .p-header__logo img {
    width: 19.5rem;
  }
}
.p-header__right {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .p-header__right {
    display: none;
  }
}
.p-header__top {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.p-header__btn {
  min-width: 0;
  padding: 1.5rem 2rem 1.5rem 2.5rem;
}
.p-header__info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .p-header__info {
    display: none;
  }
}
.p-header__info-btn {
  background-color: #393A3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 4.5rem;
  width: 4.5rem;
}
.p-header__info-btn img {
  width: 1.7rem;
}
.p-header .nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}
.p-header .nav-item {
  position: relative;
}
@media (min-width: 768px) {
  .p-header .nav-item:hover .nav-link {
    color: var(--color-primary);
  }
  .p-header .nav-item:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
  }
}
.p-header .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  transition: 0.3s ease;
}
.p-header .nav-link::after {
  content: "";
  background-color: currentColor;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}
.p-header .nav-link .icon {
  aspect-ratio: 1;
  background-color: var(--color-sub);
  border-radius: 50%;
  width: 2rem;
  position: relative;
}
.p-header .nav-link .icon::after {
  content: "";
  background: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  height: 0.8rem;
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-header .nav-sub {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  padding-top: 2rem;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-2rem);
  transition: 0.3s ease;
  z-index: 10;
}
.p-header .nav-sub li {
  margin-bottom: 0.8rem;
}
.p-header .nav-sub li:last-child {
  margin-bottom: 0;
}
.p-header .nav-sub a {
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.5rem 1.8rem;
  width: 20rem;
  transition: 0.3s ease;
}
.p-header .nav-sub a:hover {
  background-color: #D6FEFF;
  box-shadow: inset 0 0 1px 1px #56BFC2;
}
.p-header .nav-sub a::before {
  content: "";
  background-color: #47AFB3;
  -webkit-mask-image: url("../images/common/icn_arrow01.svg");
  mask-image: url("../images/common/icn_arrow01.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: 1rem;
  width: 0.6rem;
}

.hamburger-box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: var(--color-sub);
}
.hamburger-box .hamburger-inner {
  background: url("../images/common/icn_menu.svg") no-repeat center/contain;
  height: 1rem;
  width: 1.5rem;
}

.global-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: 0.3s ease;
  background-color: var(--color-primary);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
}
.show-menu .global-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.global-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 2.5rem;
}
.global-nav__body {
  overflow-y: auto;
  height: calc(100svh - 8.4rem);
  padding: 1.8rem 2.5rem 3.3rem;
}
.global-nav__logo img {
  width: 15.1rem;
}
.global-nav__close {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: var(--color-sub);
  border-radius: 10rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 1.3rem 2rem;
  width: 13rem;
}
.global-nav__close::after {
  content: "";
  background: url("../images/common/icn_close.svg") no-repeat center/contain;
  height: 1.2rem;
  width: 1.2rem;
}
.global-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1.6rem;
}
.global-nav__list li:not(:last-child) {
  margin-bottom: 1.6rem;
}
.global-nav__list a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding-left: 1.5rem;
}
.global-nav__list a::before {
  content: "";
  background: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  height: 1rem;
  width: 0.6rem;
}
.global-nav__other {
  display: grid;
  row-gap: 0.8rem;
  margin-top: 3rem;
}
.global-nav__btn {
  justify-content: center;
  height: 6.4rem;
  position: relative;
}
.global-nav__btn .icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.c-contact {
  margin-top: 12rem;
  position: relative;
}
@media (min-width: 768px) {
  .c-contact {
    margin-top: 18rem;
  }
}
.c-contact .hline01 {
  margin-bottom: 3.8rem;
}
@media (min-width: 768px) {
  .c-contact .hline01 {
    margin-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .c-contact__wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-contact__info {
  padding: 6rem 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-contact__info {
    display: flex;
    justify-content: center;
    padding: 8rem 5rem 10rem;
  }
}
.c-contact__info::before {
  content: "";
  border-top-right-radius: 3rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .c-contact__info::before {
    border-top-right-radius: 5rem;
    width: 50vw;
  }
}
.c-contact__txt {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.8125;
}
@media (min-width: 768px) {
  .c-contact__txt {
    font-size: 1.5rem;
    line-height: 2.235;
  }
}
@media (min-width: 1200px) {
  .c-contact__txt {
    font-size: 1.7rem;
  }
}
.c-contact__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-contact__nav {
    position: absolute;
    top: 5rem;
    bottom: -5rem;
    right: 0;
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .c-contact__nav {
    padding-inline: 7rem;
  }
}
@media (max-width: 767px) {
  .c-contact__nav {
    padding-block: 5rem 2.8rem;
  }
}
.c-contact__nav::before {
  content: "";
  background: linear-gradient(135deg, #8cced0 0%, #56bec1 30%);
  border-bottom-left-radius: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  bottom: -3rem;
  width: 100%;
  z-index: -1;
}
@media (min-width: 768px) {
  .c-contact__nav::before {
    border-bottom-left-radius: 5rem;
    bottom: 0;
    width: 50vw;
  }
}
@media (min-width: 768px) {
  .c-contact__nav > li {
    padding-inline: 3rem;
  }
}
.c-contact__nav > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  padding-bottom: 3.8rem;
}
@media (min-width: 768px) {
  .c-contact__nav > li:not(:last-child) {
    margin-bottom: 6rem;
    padding-bottom: 6.2rem;
  }
}
.c-contact__link {
  color: #fff;
  display: flex;
  gap: 0.9rem;
  flex-direction: column;
  position: relative;
  padding-left: 3.2rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-contact__link {
    gap: 1.7rem;
  }
}
.c-contact__link:hover {
  padding-left: 4.2rem;
}
.c-contact__link::before {
  content: "";
  background-color: #fff;
  border-radius: 0.3rem;
  aspect-ratio: 1;
  width: 1.2rem;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 1.5rem;
}
.c-contact__link-ttl {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-contact__link-ttl {
    font-size: 5rem;
  }
}
.c-contact__link-txt {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .c-contact__link-txt {
    font-size: 1.7rem;
  }
}
.c-contact__link .icon-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-footer {
  background-color: #393A3A;
  color: #fff;
  padding: 6.9rem 0 3rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding-top: 12rem;
  }
}
.p-footer__head {
  display: flex;
  margin-bottom: 2.3rem;
}
@media (min-width: 768px) {
  .p-footer__head {
    margin-bottom: 5.5rem;
  }
}
.p-footer__head-logo {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .p-footer__head-logo {
    margin-right: 5rem;
    padding-right: 5rem;
  }
}
.p-footer__head-logo img {
  width: 16.3rem;
}
@media (min-width: 768px) {
  .p-footer__head-logo img {
    width: 22rem;
  }
}
.p-footer__head-other img {
  width: 12.4rem;
}
@media (min-width: 768px) {
  .p-footer__head-other img {
    width: 16.7rem;
  }
}
.p-footer__info {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__info {
    margin-bottom: 2.3rem;
  }
}
.p-footer__txt {
  font-size: 1.5rem;
  font-weight: 600;
}
.p-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  transition: 0.3s ease;
}
.p-footer__link:not([target=_blank]):hover::before {
  transform: translateX(0.5rem);
}
.p-footer__link:hover {
  color: #A2D7DA;
}
.p-footer__link::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  height: 1rem;
  width: 0.6rem;
  transition: background-color 0.1s ease, transform 0.3s ease;
}
.p-footer__link[target=_blank] {
  gap: 1.5rem;
}
.p-footer__link[target=_blank]::before {
  -webkit-mask-image: url("../images/common/icn_blank.svg");
  mask-image: url("../images/common/icn_blank.svg");
  height: 1.6rem;
  width: 1.6rem;
}
.p-footer__nav {
  margin-top: 3.6rem;
}
@media (min-width: 768px) {
  .p-footer__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 9.8rem;
    padding-inline: 2rem 4rem;
  }
}
@media (max-width: 767px) {
  .p-footer__nav-col {
    margin-bottom: 3rem;
  }
  .p-footer__nav-col:last-child {
    margin-bottom: 0;
  }
}
.p-footer__nav-ttl {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__nav-ttl {
    font-size: 2rem;
    margin-bottom: 3.1rem;
  }
}
.p-footer__nav-list > li {
  margin-bottom: 1.5rem;
}
.p-footer__nav-list > li:last-child {
  margin-bottom: 0;
}
.p-footer__nav-social {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .p-footer__nav-social {
    margin-top: 6rem;
  }
}
.p-footer__nav-social > li {
  margin-bottom: 1.9rem;
}
.p-footer__nav-social > li:last-child {
  margin-bottom: 0;
}
.p-footer__nav-social .p-footer__link {
  letter-spacing: 0.12em;
}
.p-footer__nav-social .p-footer__link::before {
  display: none;
}
.p-footer__nav-social .p-footer__link.--wantedly {
  gap: 1.1rem;
}
.p-footer__nav-social .p-footer__link.--note {
  padding-left: 0.3rem;
}
.p-footer__nav-social .logo-wantedly {
  width: 2.1rem;
}
.p-footer__nav-social .logo-note {
  width: 1.4rem;
}
.p-footer__other {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-footer__other {
    gap: 3.2rem;
    flex-direction: row;
    margin-bottom: 0;
  }
}
.p-footer__other a {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: 0.3s ease;
}
.p-footer__other a:hover {
  color: #A2D7DA;
}
.p-footer__other a:hover::before {
  transform: translateX(0.5rem);
}
.p-footer__other a::before {
  content: "";
  background-color: currentColor;
  -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  height: 1rem;
  width: 0.6rem;
  transition: background-color 0.1s ease, transform 0.3s ease;
}
.p-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 2.1rem;
  padding-top: 3.8rem;
}
@media (min-width: 768px) {
  .p-footer__bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 8.9rem;
    padding-top: 2.9rem;
  }
}
.p-footer__bottom .copyright {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .p-footer__bottom .copyright {
    order: -1;
  }
}
@media (max-width: 767px) {
  .p-footer__bottom .copyright {
    margin-top: 0;
  }
}

.form-control {
  border: 0;
  border-radius: 0.5rem;
  height: 6.5rem;
  outline: none;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  padding: 0 3rem;
  width: 100%;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #91959A;
  opacity: 1;
}
.form-control::placeholder {
  color: #91959A;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}
@media (min-width: 768px) {
  .form-control.form-control--small {
    max-width: 21.1rem;
  }
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.form-control {
  height: 20rem;
  padding-block: 2rem;
}

.custom-radio {
  display: block;
  position: relative;
  cursor: pointer;
}
.custom-radio input {
  position: absolute;
  opacity: 0;
}
.custom-radio input:checked ~ .custom-radio__label {
  box-shadow: inset 0 0 0 0.3rem #A2D7DA;
}
.custom-radio input:checked ~ .custom-radio__label .custom-radio__checkmark::before {
  opacity: 1;
}
.custom-radio__checkmark {
  aspect-ratio: 1;
  background-color: #D3EFEF;
  border-radius: 50%;
  position: relative;
  width: 2.5rem;
}
.custom-radio__checkmark::before {
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  inset: 0.4rem;
  opacity: 0;
}
.custom-radio__label {
  background-color: #fff;
  border-radius: 10rem;
  font-size: 1.5rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
}
@media (min-width: 768px) {
  .custom-radio__label {
    font-size: 1.6rem;
    gap: 1.5rem;
    padding: 2rem 1rem 2rem 2rem;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table-style01 table {
  border: 2px solid var(--color-primary);
  border-radius: 1rem;
  border-collapse: separate;
  overflow: hidden;
}
@media (min-width: 768px) {
  .table-style01 table {
    border-radius: 2rem;
  }
}
.table-style01 table tr {
  border-bottom: 2px solid var(--color-primary);
}
@media (min-width: 768px) {
  .table-style01 table tr th, .table-style01 table tr td {
    font-size: 1.5rem;
    padding: 2rem 3rem 1.2rem;
  }
}
.table-style01 table tr th {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.hline01 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .hline01 {
    margin-bottom: 8rem;
  }
}
.hline01__ttl {
  color: #47AFB3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.3rem;
}
@media (min-width: 768px) {
  .hline01__ttl {
    gap: 1.3rem;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
}
.hline01__ttl::before {
  content: "";
  background-color: currentColor;
  border-radius: 0.2rem;
  aspect-ratio: 1;
  width: 1.2rem;
  transform: rotate(45deg);
}
.hline01__txt {
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.615;
}
@media (min-width: 768px) {
  .hline01__txt {
    font-size: 3.6rem;
    line-height: 1.7778;
    letter-spacing: 0.12em;
  }
}

.hline02 {
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hline02 {
    margin-bottom: 8rem;
  }
}
.hline02.hline02--left {
  text-align: left;
}
.hline02.hline02--left .hline02__ttl {
  justify-content: flex-start;
}
.hline02__ttl {
  color: var(--color-title, #47AFB3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.3rem;
}
.hline02__ttl.--second-color {
  color: var(--color-secondary);
}
@media (min-width: 768px) {
  .hline02__ttl {
    gap: 1.2rem;
    font-size: 2rem;
    margin-bottom: 1.7rem;
  }
}
.hline02__ttl::before {
  content: "";
  background-color: currentColor;
  border-radius: 0.2rem;
  aspect-ratio: 1;
  width: 1.2rem;
  transform: rotate(45deg);
}
.hline02__txt {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.615;
}
@media (min-width: 768px) {
  .hline02__txt {
    font-size: 3.2rem;
    line-height: 1.7778;
    letter-spacing: 0.1em;
  }
}

.hline03-en__ttl {
  color: var(--color-title, #47AFB3);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 1.3rem;
}
@media (min-width: 768px) {
  .hline03-en__ttl {
    gap: 1.5rem;
    font-size: 2rem;
    margin-bottom: 1.3rem;
  }
}
.hline03-en__ttl::before {
  content: "";
  background-color: currentColor;
  border-radius: 0.2rem;
  aspect-ratio: 1;
  width: 1rem;
  transform: rotate(45deg);
}
.hline03-en__txt {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.545;
}
@media (min-width: 768px) {
  .hline03-en__txt {
    font-size: 3.2rem;
    line-height: 1.6875;
    letter-spacing: 0.1em;
  }
}
.hline03-en-second .hline03-en__ttl {
  color: var(--color-secondary);
}

.hline04 {
  color: var(--color-primary);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.5789473684;
}
@media (min-width: 768px) {
  .hline04 {
    font-size: 2.4rem;
    line-height: 1.6666666667;
    letter-spacing: 0.06em;
  }
}
.hline04::after {
  background-color: var(--color-primary);
  border-radius: 2rem;
  content: "";
  display: block;
  height: 0.1rem;
  margin-top: 1.8rem;
}
@media (min-width: 768px) {
  .hline04::after {
    margin-top: 2rem;
  }
}

.hline05 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5555555556;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .hline05 {
    font-size: 2rem;
    gap: 1.2rem;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
  .hline05.pc-center {
    justify-content: center;
  }
}
.hline05::before {
  content: "";
  aspect-ratio: 1;
  box-sizing: border-box;
  border: 0.3rem solid var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: 1rem;
  width: 1.2rem;
}
@media (min-width: 768px) {
  .hline05::before {
    top: 1.3rem;
  }
}

.hline06 {
  display: block;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 1.8rem;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  border-bottom: 1px solid currentColor;
}
@media (min-width: 768px) {
  .hline06 {
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 2rem;
    font-size: 2.4rem;
  }
}

.hline07 {
  position: relative;
  padding-left: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .hline07 {
    padding-left: 2.4rem;
    font-size: 2rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
}
@media (max-width: 1199px) {
  .hline07 {
    font-size: 1.8rem;
  }
}
.hline07::after {
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 0.3rem solid var(--color-secondary);
  border-radius: 0.6rem;
  content: "";
}
@media (min-width: 768px) {
  .hline07::after {
    top: 1.2rem;
  }
}

.c-breadcrumb__item {
  display: inline;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  background: url("../images/common/icn_arrow02.svg") no-repeat center/contain;
  display: inline-block;
  vertical-align: middle;
  width: 0.5rem;
  height: 0.8rem;
  margin-inline: 1.1rem;
}
@media (min-width: 768px) {
  .c-breadcrumb__item:not(:first-child)::before {
    margin-inline: 0.9rem 1.2rem;
  }
}
.c-breadcrumb a {
  color: #2B2825;
  transition: color 0.3s ease;
}
.c-breadcrumb a:hover {
  color: #A2D7DA;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .tablet {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.hover {
  transition: 0.3s ease;
}
.hover:hover {
  opacity: 0.7;
}

.full-image {
  width: 100%;
  height: auto;
}

.fw-normal {
  font-weight: normal !important;
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.font-base {
  font-family: var(--font-family-base) !important;
}

.font-en {
  font-family: var(--font-en) !important;
}

.cl-primary {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .c-phone {
    pointer-events: none;
  }
}

.c-link {
  color: var(--color-primary);
  text-decoration: underline;
}
@media (min-width: 768px) {
  .c-link {
    transition: opacity 0.3s ease;
  }
  .c-link:hover {
    opacity: 0.7;
  }
}

figcaption {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
  margin-top: 1.5rem;
}

.c-hover:hover .icon-arrow::before {
  transform: translate(-50%, -50%);
}
.c-hover:hover .icon-arrow::after {
  transform: translate(100%, -50%);
}
.c-hover .icon-arrow {
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size, 4rem);
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-hover .icon-arrow {
    width: var(--icon-size, 5rem);
  }
}
.c-hover .icon-arrow::before, .c-hover .icon-arrow::after {
  content: "";
  background: url("../images/common/icn_arrow02.svg") no-repeat center/contain;
  background-size: var(--icon-arrow-size, 0.9rem) auto;
  height: 100%;
  width: 100%;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .c-hover .icon-arrow::before, .c-hover .icon-arrow::after {
    background-size: var(--icon-arrow-size, 1.1rem) auto;
  }
}
.c-hover .icon-arrow::before {
  transform: translate(-150%, -50%);
}

.c-txt-lg {
  font-size: 1.6rem;
  line-height: 1.8125;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .c-txt-lg {
    font-size: 1.7rem;
    line-height: 2.1176470588;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .c-txt-lg--letter-0 {
    letter-spacing: 0;
  }
}
@media (max-width: 767px) {
  .c-txt-lg .custom {
    margin-right: -1rem;
  }
}

.c-txt-lg-smbold {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .c-txt-lg-smbold {
    font-size: 1.7rem;
    line-height: 2.2352941176;
    letter-spacing: 0.1em;
  }
}
.c-txt-lg-smbold > *:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .c-txt-lg-smbold > *:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

.c-txt {
  font-size: 1.6rem;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .c-txt {
    line-height: 2;
    letter-spacing: 0.04em;
  }
}

.c-box-txt {
  border: 2px solid #D3EFEF;
  border-radius: 2rem;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .c-box-txt {
    font-size: 1.5rem;
    line-height: 1.7333333333;
    letter-spacing: 0.02em;
    padding: 3rem 4rem;
  }
}
.c-box-txt--bg {
  border: none;
  background-color: #F2F7F7;
}

.c-txt-list__item {
  display: flex;
  gap: 0.8rem;
  font-weight: 500;
  line-height: 1.467;
  letter-spacing: 0.04em;
}
.c-txt-list__item.style-1 {
  font-weight: 400;
}
@media (min-width: 768px) {
  .c-txt-list__item {
    gap: 1rem;
    font-size: 1.5rem;
    line-height: 1.73;
  }
  .c-txt-list__item.style-1 {
    font-size: 1.6rem;
  }
}
.c-txt-list__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .c-txt-list__item:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.c-txt-list__item::before {
  content: "";
  background-color: var(--color-primary);
  border-radius: 2rem;
  flex-shrink: 0;
  width: 0.7rem;
  height: 0.2rem;
  position: relative;
  top: 1rem;
}
@media (min-width: 768px) {
  .c-txt-list__item::before {
    width: 1rem;
    height: 0.3rem;
    top: 1.1rem;
  }
}

.c-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.fw-somibold {
  font-weight: 600;
}

.c-star li {
  display: flex;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-star li {
    gap: 0.2rem;
    letter-spacing: 0.02em;
    line-height: 1.67;
  }
}
.c-star li::before {
  content: "※";
}

.c-mv {
  margin-bottom: 5rem;
  background-color: #F2F7F7;
  position: relative;
  padding-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .c-mv {
    margin-bottom: 12rem;
    padding-bottom: 2.9rem;
  }
}
.c-mv::after {
  content: "";
  background-color: var(--color-primary);
  border-radius: 2rem;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  right: 2.5rem;
  opacity: 0.2;
}
@media (min-width: 768px) {
  .c-mv::after {
    left: 5rem;
    right: 5rem;
  }
}
.c-mv.c-mv--single {
  display: flex;
  align-items: flex-end;
  height: 16.6rem;
  margin-bottom: 5.8rem;
  padding-bottom: 1.7rem;
}
@media (min-width: 768px) {
  .c-mv.c-mv--single {
    height: 21rem;
    margin-bottom: 8rem;
    padding-bottom: 2.8rem;
  }
}
.c-mv.c-mv--single .c-breadcrumb {
  position: static;
}
.c-mv .container {
  position: relative;
}
.c-mv__content {
  display: flex;
  flex-direction: column;
  padding: 11.9rem 2.5rem 0;
}
@media (min-width: 768px) {
  .c-mv__content {
    padding: 23.2rem 15rem 0;
  }
}
.c-mv__name {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .c-mv__name {
    font-size: 4.2rem;
    line-height: 1.66666667;
    letter-spacing: 0.12em;
  }
}
.c-mv__name-sub {
  display: block;
  font-size: 0.8em;
  line-height: 1.3;
}
.c-mv__lb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 0 -0.5rem;
}
@media (min-width: 768px) {
  .c-mv__lb {
    gap: 1rem;
    margin: 2rem 0 0 -1rem;
  }
}
.c-mv__lb li {
  border: 1px solid transparent;
  border-radius: 10rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2.358;
  letter-spacing: 0.1em;
  padding-inline: 1.35rem;
}
@media (min-width: 768px) {
  .c-mv__lb li {
    font-size: 1.7rem;
    line-height: 2.2352941176;
    padding-inline: 1.3rem;
  }
}
.c-mv__lb li.--blue {
  border-color: var(--color-primary);
  color: #47AFB3;
}
.c-mv__lb li.--orange {
  border-color: #F0C17B;
  color: var(--color-sub);
}
.c-mv__lb li.--pink {
  border-color: var(--color-accent);
  color: var(--color-accent_txt);
}
.c-mv .c-breadcrumb {
  margin: 3.5rem 2.5rem 0;
}
@media (min-width: 768px) {
  .c-mv .c-breadcrumb {
    margin: 13.4rem 5rem 0;
  }
}
.c-mv--lb .c-mv__content {
  padding-top: 9.2rem;
}
@media (min-width: 768px) {
  .c-mv--lb .c-mv__content {
    padding-top: 20.5rem;
  }
}
.c-mv--lb .c-breadcrumb {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .c-mv--lb .c-breadcrumb {
    margin-top: 10.1rem;
  }
}

.c-anchor {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .c-anchor {
    margin-bottom: 9.8rem;
  }
}
.c-anchor__wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 768px) {
  .c-anchor__wrap {
    flex-direction: row;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .c-anchor__wrap.--3cols .c-anchor__item {
    flex: 0 33.33%;
    max-width: 34.5rem;
  }
}
.c-anchor__wrap.--center {
  justify-content: center;
}
.c-anchor__wrap.no-wrap {
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .c-anchor__item {
    flex: 0 0 25%;
    max-width: 25rem;
  }
}

.c-cates {
  background-color: var(--color-primary);
  border-radius: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-bottom: 6rem;
  padding: 2.8rem 2.6rem;
}
@media (min-width: 768px) {
  .c-cates {
    border-radius: 10rem;
    justify-content: center;
    -moz-column-gap: 0;
    column-gap: 0;
    margin-bottom: 7rem;
    padding: 1.3rem 2rem;
  }
}
.c-cates a {
  border: 1px solid #A2D7DA;
  border-radius: 10rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.8rem 1.3rem;
}
@media (min-width: 768px) {
  .c-cates a {
    border: 0;
    padding: 1.1rem 2rem;
  }
}
.c-cates a.is-active {
  border: 0;
  background-color: #fff;
  color: var(--color-primary);
}

.post-list {
  display: grid;
  row-gap: 2rem;
}

.c-card {
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
  position: relative;
  padding: 1.8rem 2rem 2.8rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .c-card {
    border-radius: 2rem;
    gap: 5rem;
    padding: 3rem 5rem 3rem 3rem;
  }
}
.c-card:hover {
  box-shadow: inset 0 0 0 0.3rem #56BFC2;
}
.c-card__img {
  flex-shrink: 0;
  width: 14rem;
  aspect-ratio: 140/105;
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-card__img {
    width: 18rem;
    aspect-ratio: 180/135;
  }
}
.c-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-card__content {
  flex: 1;
}
.c-card__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
@media (min-width: 768px) {
  .c-card__head {
    margin-bottom: 2rem;
  }
}
.c-card__date {
  color: #91959A;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-right: 0.7rem;
}
.c-card__cate {
  border: 1px solid var(--color-primary);
  border-radius: 10rem;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
}
.c-card__ttl {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.88;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .c-card__ttl {
    -webkit-line-clamp: 2;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
  }
}
.c-card__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-top: 2rem;
}
.c-card__icon {
  display: none;
}
@media (min-width: 768px) {
  .c-card__icon {
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 4rem;
    width: 4rem;
    margin-left: 5rem;
  }
  .c-card__icon::after {
    content: "";
    background-color: var(--color-primary);
    -webkit-mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
    mask: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
    height: 1.2rem;
    width: 0.7rem;
  }
}

.archive-date {
  background-color: #393A3A;
  border-radius: 8rem;
  color: #fff;
  margin-top: 7rem;
  padding-inline: 1.5rem;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .archive-date {
    margin-top: 12rem;
    padding-inline: 7.2rem;
  }
}
.archive-date.is-active {
  border-radius: 2rem;
}
.archive-date.is-active .archive-date__ttl::after {
  transform: rotate(-90deg);
}
.archive-date__ttl {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-block: 2.1rem 1.8rem;
}
@media (min-width: 768px) {
  .archive-date__ttl {
    padding-block: 2.6rem 2.6rem;
  }
}
.archive-date__ttl::after {
  content: "";
  background: url("../images/common/icn_arrow01.svg") no-repeat center/contain;
  height: 1.2rem;
  width: 0.7rem;
  transform: rotate(90deg);
}
.archive-date__body {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
  padding-block: 2rem 4rem;
}
@media (min-width: 768px) {
  .archive-date__body {
    padding-block: 4rem 6rem;
  }
}
.archive-date__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 0.8rem;
  margin-inline: -0.5rem 0;
  padding-inline: 0 1rem;
}
@media (min-width: 768px) {
  .archive-date__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 7rem;
  }
}
.archive-date__label {
  font-family: var(--font-en);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
@media (min-width: 768px) {
  .archive-date__label {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
}
.archive-date__months {
  color: #808080;
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.archive-date__months table {
  table-layout: fixed;
  text-align: right;
  max-width: 17.8rem;
  width: 100%;
}
.archive-date__months td {
  line-height: 1;
  padding-block: 0.4rem;
}
.archive-date__months a {
  color: #fff;
  text-decoration: underline;
}

.running-txt {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.running-txt__wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.point-post {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .point-post {
    flex-direction: row;
    gap: 8rem;
    align-items: flex-start;
    margin-bottom: 7.5rem;
  }
  .point-post.align-center {
    align-items: center;
  }
}
.point-post__box {
  width: 100%;
}
@media (min-width: 768px) {
  .point-post__box.--custom {
    padding-top: 3rem;
  }
  .point-post__box.--custom-1 {
    padding-top: 1rem;
  }
}
.point-post__head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 30px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-secondary);
}
@media (min-width: 768px) {
  .point-post__head {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding-bottom: 1.7rem;
  }
}
.point-post__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 2.6rem;
  padding-top: 0.1rem;
  border-radius: 5rem;
  font-size: 1.4rem;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--color-secondary);
  border: 1px solid currentColor;
}
@media (min-width: 768px) {
  .point-post__num {
    width: 4.9rem;
    height: 3.2rem;
  }
}
.point-post__ttl {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-secondary);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .point-post__ttl {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
  }
}
.point-post__image {
  width: 100%;
  margin-bottom: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .point-post__image {
    width: auto;
    margin-bottom: 0;
    border-radius: 2rem;
    position: relative;
    top: 7px;
  }
}
.point-post__image.--w-1 {
  aspect-ratio: 477/391;
}
@media (min-width: 768px) {
  .point-post__image.--w-1 {
    min-width: 47.7rem;
    width: 47.7rem;
  }
}
.point-post__image.--w-2 {
  aspect-ratio: 420/273;
}
@media (min-width: 768px) {
  .point-post__image.--w-2 {
    min-width: 42rem;
    width: 42rem;
  }
}
.point-post__image.--w-3 {
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .point-post__image.--w-3 {
    min-width: 36rem;
    width: 36rem;
  }
}
.point-post__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.point-post__wrap-btn {
  margin-top: 3rem;
}
@media (max-width: 767px) {
  .point-post__wrap-btn {
    display: flex;
    justify-content: center;
  }
}

.p-cmn, .p-cmn-second {
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  border: 0.2rem solid var(--color-primary);
}
@media (min-width: 768px) {
  .p-cmn, .p-cmn-second {
    padding: 4.5rem 5rem;
    border-radius: 2rem;
  }
  .p-cmn.style1, .style1.p-cmn-second {
    padding: 6rem 8.2rem 8.4rem;
  }
}
.p-cmn__hline {
  margin-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .p-cmn__hline {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .p-cmn__hline.sp-custom {
    margin-bottom: 3rem;
  }
}
.p-cmn__intro {
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-cmn__intro {
    max-width: 82.6rem;
    margin-inline: auto;
    margin-bottom: 4rem;
    line-height: 2;
    letter-spacing: 0.04em;
  }
  .p-cmn__intro.style1 {
    margin-bottom: 3.7rem;
  }
}
@media (max-width: 767px) {
  .p-cmn__intro.style2 {
    letter-spacing: -0.01em;
  }
}
.p-cmn__txt {
  line-height: 1.7;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .p-cmn__txt {
    line-height: 2;
  }
}
.p-cmn__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .p-cmn__list {
    gap: 1.2rem;
  }
}
.p-cmn__list li {
  position: relative;
  width: 100%;
  padding-left: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.467;
}
@media (min-width: 768px) {
  .p-cmn__list li {
    width: 49%;
    padding-left: 2rem;
  }
}
.p-cmn__list li::after {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.7rem;
  height: 0.2rem;
  background-color: var(--color-secondary);
  border-radius: 0.3rem;
  content: "";
}
@media (min-width: 768px) {
  .p-cmn__list li::after {
    width: 1rem;
    height: 0.3rem;
  }
}
.p-cmn__image {
  aspect-ratio: 275/300;
  overflow: hidden;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .p-cmn__image {
    aspect-ratio: 1066/474;
  }
}
.p-cmn__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-cmn__wrap-btn {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .p-cmn__wrap-btn {
    margin-top: 4rem;
  }
}
.p-cmn-second {
  border-color: var(--color-secondary);
}
.p-cmn-second .p-cmn__hline::after {
  border-color: var(--color-secondary);
}

.my-case {
  margin-bottom: 7rem;
}
@media (min-width: 768px) {
  .my-case {
    margin-bottom: 10rem;
    padding-inline: 5rem;
  }
}
.my-case .hline02 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .my-case .hline02 {
    margin-bottom: 5rem;
  }
}
.my-case__wrap-btn {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
@media (min-width: 768px) {
  .my-case__wrap-btn {
    margin-top: 6rem;
  }
}

.case-list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (min-width: 768px) {
  .case-list {
    flex-direction: inherit;
    row-gap: 0;
    -moz-column-gap: 6rem;
    column-gap: 6rem;
  }
}
.case-list__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 1.8rem 2rem 2rem;
  border-radius: 1rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .case-list__item {
    width: calc((100% - 12rem) / 3);
    padding: 0;
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  .case-list__row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
  }
}
.case-list__image {
  width: 14rem;
  min-width: 14rem;
  aspect-ratio: 140/105;
  border-radius: 1rem;
  border: 2px solid #F2F7F7;
  overflow: hidden;
}
@media (min-width: 768px) {
  .case-list__image {
    min-width: inherit;
    width: 100%;
    margin-bottom: 2.5rem;
    aspect-ratio: 28/21;
    border-color: #BED9ED;
  }
}
.case-list__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .case-list__content {
    position: relative;
    top: -0.4rem;
  }
}
.case-list__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
@media (min-width: 768px) {
  .case-list__tags {
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
.case-list__tags-item {
  display: inline-flex;
  color: var(--color-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0.7rem 1.1rem 0.8rem;
  border: 1px solid currentColor;
  border-radius: 3rem;
}
.case-list__tags-item.--color-primary {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .case-list__tags-item {
    padding: 0.8rem 1.3rem;
    font-size: 1.3rem;
  }
}
.case-list__ttl {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .case-list__ttl {
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
  }
}
.case-list__txt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.42;
}
@media (min-width: 768px) {
  .case-list__txt {
    font-size: 1.6rem;
    line-height: 2;
    -webkit-line-clamp: 2;
  }
}

.p-hintscroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 10rem;
  border-radius: 0.5rem;
  background-color: rgba(57, 58, 58, 0.6);
  transition: 0.3s opacity ease;
  pointer-events: all;
  position: absolute;
  left: 50%;
  top: calc(50% - 5rem);
  transform: translate(-50%);
}
.p-hintscroll.hide {
  opacity: 0;
  pointer-events: none;
}
.p-hintscroll__icon {
  display: inline-block;
  width: 4.2rem;
  height: 5.2rem;
  margin-bottom: 0.8rem;
}
.p-hintscroll__ttl {
  color: #FFF;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-hintscroll {
    display: none;
  }
}

.c-parallax {
  overflow: hidden;
}
.c-parallax__wrap {
  position: relative;
  z-index: 1;
}
.c-parallax__wrap img {
  width: 100%;
  height: auto;
}

.c-notfound {
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .c-notfound {
    font-size: 2rem;
  }
}

.c-toc {
  --toc-space: 0;
  border: 2px solid var(--color-primary);
  border-radius: 2rem;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.866;
  margin-bottom: 4rem;
  padding: 3rem 2.5rem 3.5rem;
}
@media (min-width: 768px) {
  .c-toc {
    margin-bottom: 7rem;
    padding: 4rem;
  }
}
.c-toc__ttl {
  margin-bottom: var(--toc-space);
}
.c-toc__lvl0 {
  counter-reset: tocList;
}
.c-toc__lvl0 > li {
  margin-bottom: var(--toc-space);
}
.c-toc__lvl0 > li:last-child {
  margin-bottom: 0;
}
.c-toc__lvl0 > li > a {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-toc__lvl0 > li > a::before {
  content: counter(tocList) ".";
  counter-increment: tocList;
}
.c-toc__lvl1 {
  counter-reset: tocListLv1;
  margin-top: var(--toc-space);
}
.c-toc__lvl1 > li {
  margin-bottom: 0.6rem;
}
@media (min-width: 768px) {
  .c-toc__lvl1 > li {
    margin-bottom: 0.6rem;
  }
}
.c-toc__lvl1 > li:last-child {
  margin-bottom: 0;
}
.c-toc__lvl1 > li > a::before {
  content: counter(tocListLv1, lower-alpha) ". ";
  counter-increment: tocListLv1;
}
.c-toc__lvl2 {
  margin-top: var(--toc-space);
}
.c-toc__lvl2 > li {
  margin-bottom: var(--toc-space);
}
.c-toc__lvl2 > li:last-child {
  margin-bottom: 0;
}
.c-toc__lvl2 a::before {
  content: "・";
}

.p-single__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-single__head {
    margin-bottom: 3.5rem;
  }
}
.p-single__date {
  color: #91959A;
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.p-single__cate {
  border: 1px solid var(--color-primary);
  border-radius: 10rem;
  color: #47AFB3;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.3rem;
}
.p-single__ttl {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.545;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .p-single__ttl {
    font-size: 3.2rem;
    line-height: 1.6875;
    margin-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .p-single__ttl.p-single__ttl--custom {
    margin-bottom: 5rem;
  }
}
.p-single__box {
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .p-single__box {
    border-radius: 2rem;
    flex-direction: row;
    gap: 8rem;
    margin-bottom: 7rem;
    padding: 4rem 5rem 4.3rem;
  }
}
.p-single__col {
  flex: 1;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 1.8;
  position: relative;
}
@media (min-width: 768px) {
  .p-single__col {
    letter-spacing: 0.06em;
  }
  .p-single__col:not(:last-child)::after {
    content: "";
    background-color: var(--color-primary);
    border-radius: 2rem;
    width: 1px;
    position: absolute;
    right: -4rem;
    top: 0;
    bottom: 0;
    z-index: 1;
  }
}
.p-single__col-label {
  color: #47AFB3;
}
.p-single__col table td {
  padding-right: 0.6rem;
}
@media (min-width: 768px) {
  .p-single__col table td {
    padding-right: 1.8rem;
  }
}
@media (max-width: 767px) {
  .p-single__col table td {
    float: left;
  }
}
.p-single__col table td:last-child {
  padding-right: 0;
  text-align: right;
}
.p-single__feature {
  margin-bottom: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-single__feature {
    margin-bottom: 8rem;
  }
}
.p-single__feature img {
  border-radius: 1rem;
}
.p-single__lead {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6875;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-single__lead {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    line-height: 2.1;
    margin-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .p-single__lead.p-single__lead--case {
    font-size: 2.2rem;
    font-weight: bold;
  }
}
.p-single__footer {
  display: grid;
  row-gap: 3rem;
  margin-top: 7rem;
}
@media (min-width: 768px) {
  .p-single__footer {
    margin-top: 10rem;
  }
}
.p-single__footer .c-cates,
.p-single__footer .archive-date {
  margin: 0;
}
.p-single__body {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  line-height: 1.6875;
}
@media (min-width: 768px) {
  .p-single__body {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
    line-height: 2.1;
  }
}
.p-single__body > * {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-single__body > * {
    margin-bottom: 4.3rem;
  }
}
.p-single__body > *:last-child {
  margin-bottom: 0;
}
.p-single__body ul {
  list-style-type: inherit;
  padding-left: 2rem;
}
.p-single__body ol {
  list-style-type: decimal;
  padding-left: 2rem;
}
.p-single__body h3 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  position: relative;
  padding-left: 0.2rem;
}
@media (min-width: 768px) {
  .p-single__body h3 {
    gap: 1.5rem;
    font-size: 3rem;
    line-height: 1.73;
    margin-bottom: 4.5rem;
  }
}
.p-single__body h3::before {
  content: "";
  background-color: var(--color-primary);
  border-radius: 0.2rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  position: relative;
  top: 1.2rem;
  width: 1rem;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .p-single__body h3::before {
    top: 2rem;
  }
}
.p-single__body h4 {
  border-bottom: 1px solid var(--color-primary);
  color: #47AFB3;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.68;
  margin-bottom: 3rem;
  padding-bottom: 1.8rem;
}
@media (min-width: 768px) {
  .p-single__body h4 {
    font-size: 2.2rem;
    line-height: 1.72;
    margin-bottom: 3.5rem;
    padding-bottom: 2.6rem;
  }
}
.p-single__body h5 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-single__body h5 {
    gap: 1.2rem;
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.p-single__body h5::before {
  content: "";
  box-sizing: border-box;
  border-radius: 50%;
  border: 0.3rem solid var(--color-primary);
  flex-shrink: 0;
  position: relative;
  top: 1rem;
  height: 1.2rem;
  width: 1.2rem;
}
@media (min-width: 768px) {
  .p-single__body h5::before {
    top: 1.5rem;
  }
}
.p-single__body mark {
  background: linear-gradient(180deg, transparent 80%, rgba(247, 170, 62, 0.5) 0, rgba(247, 170, 62, 0.5));
  color: inherit;
  position: relative;
}
.p-single__body a {
  color: #F7AA3E;
  text-decoration: underline;
  word-break: break-word;
}
.p-single__body a:hover {
  text-decoration: none;
}
.p-single__body table {
  --table-border: 1rem;
  width: 100%;
  margin-bottom: 5rem;
  position: relative;
  border-radius: var(--table-border);
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-single__body table {
    --table-border: 2rem;
    margin-bottom: 8rem;
  }
}
.p-single__body table::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #56BFC2;
  border-radius: var(--table-border);
  pointer-events: none;
  z-index: 1;
}
.p-single__body table tr {
  height: auto !important;
}
.p-single__body table tr:last-child td {
  border-bottom: 0;
}
.p-single__body table td {
  border-bottom: 2px solid #56BFC2;
  background-color: #fff;
  font-size: 1.5rem;
  line-height: 1.86;
  letter-spacing: 0.02em;
  height: auto !important;
  padding: 2.5rem;
  vertical-align: top;
}
@media (min-width: 768px) {
  .p-single__body table td {
    border-bottom-width: 1px;
    padding: 3.5rem 4rem;
  }
}
@media (max-width: 767px) {
  .p-single__body table td {
    float: left;
    width: 100% !important;
  }
}
.p-single__body table td:first-child {
  background-color: #F2F7F7;
  color: #47AFB3;
  font-weight: 600;
}
@media (max-width: 767px) {
  .p-single__body table td:first-child {
    border-bottom: 0;
  }
}
.p-single__body .box {
  border: 1px solid #D3EFEF;
  border-radius: 2rem;
  font-size: 1.5rem;
  line-height: 1.866;
  margin-bottom: 4rem;
  padding: 3rem 2.5rem 3rem;
}
@media (min-width: 768px) {
  .p-single__body .box {
    margin-bottom: 7rem;
    padding: 4rem;
  }
}
.p-single__body .img-with-txt {
  display: flex;
  gap: 3.5rem;
  margin-block: 5rem;
}
@media (min-width: 768px) {
  .p-single__body .img-with-txt {
    flex-direction: row;
    gap: 8rem;
    margin-block: 7rem 8rem;
  }
}
@media (max-width: 767px) {
  .p-single__body .img-with-txt {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .p-single__body .img-with-txt__img {
    flex-shrink: 0;
    width: 40rem;
  }
}
@media (max-width: 767px) {
  .p-single__body .img-with-txt__img {
    order: -1;
  }
}
.p-single__body .img-with-txt__content {
  align-self: center;
}
.p-single__body img {
  border-radius: 1rem;
}

.c-modal {
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  position: fixed;
  inset: 0;
  z-index: 1500;
}

.modal-backdrop {
  background-color: rgba(86, 191, 194, 0.5);
  position: fixed;
  inset: 0;
  z-index: 1499;
}

.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 6rem);
  max-width: 106.6rem;
  margin: 3rem auto;
  pointer-events: none;
  width: 90%;
}

.modal-content {
  background-color: #fff;
  border-radius: var(--border-radius);
  pointer-events: all;
  position: relative;
}

.modal-close {
  border: 0;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  position: absolute;
  right: -1rem;
  top: -2rem;
  height: 5rem;
  width: 5rem;
}
@media (min-width: 768px) {
  .modal-close {
    right: -2rem;
    height: 6rem;
    width: 6rem;
  }
}
.modal-close::after {
  content: "";
  background: url("../images/common/icn_close.svg") no-repeat center/contain;
  height: 1.8rem;
  width: 1.8rem;
}