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

body {
  font-size: 1rem;
}

body * {
  /* 
      font-weightは<b>タグが機能しなくなるので指定しない。
      line-heightは余計に高さが効いてしまうので指定しない。 => bxi.cssで効いてる可能性あり。
      font-weightも指定しない。
  */
  font-family: Noto Serif JP, sans-serif;
  color: #111111;
  margin: 0;
}

img {
  vertical-align: bottom;
}

header#global_header {
  min-width: 0 !important;
}

#contents_wrap {
  min-width: 0 !important;
}

#main #col_main {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (max-width: 834.98px) {
  #main #col_main {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
}

img.imgL {
  max-width: 100%;
  margin-right: 0;
}

#contents_wrap {
  overflow-x: hidden;
}

.inner-full {
  margin: 0 calc(50% - 50vw);
}

@media (min-width: 0px) {
  .d-inline {
    display: inline !important;
  }
  .d-inline-block {
    display: inline-block !important;
  }
  .d-block {
    display: block !important;
  }
  .d-grid {
    display: grid !important;
  }
  .d-table {
    display: table !important;
  }
  .d-table-row {
    display: table-row !important;
  }
  .d-table-cell {
    display: table-cell !important;
  }
  .d-flex {
    display: flex !important;
  }
  .d-inline-flex {
    display: inline-flex !important;
  }
  .d-none {
    display: none !important;
  }
  .flex-row {
    flex-direction: row !important;
  }
  .flex-column {
    flex-direction: column !important;
  }
  .flex-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-wrap {
    flex-wrap: wrap !important;
  }
  .flex-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-start {
    justify-content: flex-start !important;
  }
  .justify-content-end {
    justify-content: flex-end !important;
  }
  .justify-content-center {
    justify-content: center !important;
  }
  .justify-content-between {
    justify-content: space-between !important;
  }
  .justify-content-around {
    justify-content: space-around !important;
  }
  .justify-content-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-start {
    align-items: flex-start !important;
  }
  .align-items-end {
    align-items: flex-end !important;
  }
  .align-items-center {
    align-items: center !important;
  }
  .align-items-baseline {
    align-items: baseline !important;
  }
  .align-items-stretch {
    align-items: stretch !important;
  }
  .m-0 {
    margin: 0 !important;
  }
  .m-1 {
    margin: 0.25rem !important;
  }
  .m-2 {
    margin: 0.5rem !important;
  }
  .m-3 {
    margin: 1rem !important;
  }
  .m-4 {
    margin: 1.5rem !important;
  }
  .m-5 {
    margin: 3rem !important;
  }
  .m-6 {
    margin: 4rem !important;
  }
  .m-7 {
    margin: 5rem !important;
  }
  .m-8 {
    margin: 6rem !important;
  }
  .m-auto {
    margin: auto !important;
  }
  .mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-1 {
    margin-top: 0.25rem !important;
  }
  .mt-2 {
    margin-top: 0.5rem !important;
  }
  .mt-3 {
    margin-top: 1rem !important;
  }
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  .mt-5 {
    margin-top: 3rem !important;
  }
  .mt-6 {
    margin-top: 4rem !important;
  }
  .mt-7 {
    margin-top: 5rem !important;
  }
  .mt-8 {
    margin-top: 6rem !important;
  }
  .mt-auto {
    margin-top: auto !important;
  }
  .me-0 {
    margin-right: 0 !important;
  }
  .me-1 {
    margin-right: 0.25rem !important;
  }
  .me-2 {
    margin-right: 0.5rem !important;
  }
  .me-3 {
    margin-right: 1rem !important;
  }
  .me-4 {
    margin-right: 1.5rem !important;
  }
  .me-5 {
    margin-right: 3rem !important;
  }
  .me-6 {
    margin-right: 4rem !important;
  }
  .me-7 {
    margin-right: 5rem !important;
  }
  .me-8 {
    margin-right: 6rem !important;
  }
  .me-auto {
    margin-right: auto !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-5 {
    margin-bottom: 3rem !important;
  }
  .mb-6 {
    margin-bottom: 4rem !important;
  }
  .mb-7 {
    margin-bottom: 5rem !important;
  }
  .mb-8 {
    margin-bottom: 6rem !important;
  }
  .mb-auto {
    margin-bottom: auto !important;
  }
  .ms-0 {
    margin-left: 0 !important;
  }
  .ms-1 {
    margin-left: 0.25rem !important;
  }
  .ms-2 {
    margin-left: 0.5rem !important;
  }
  .ms-3 {
    margin-left: 1rem !important;
  }
  .ms-4 {
    margin-left: 1.5rem !important;
  }
  .ms-5 {
    margin-left: 3rem !important;
  }
  .ms-6 {
    margin-left: 4rem !important;
  }
  .ms-7 {
    margin-left: 5rem !important;
  }
  .ms-8 {
    margin-left: 6rem !important;
  }
  .ms-auto {
    margin-left: auto !important;
  }
  .p-0 {
    padding: 0 !important;
  }
  .p-1 {
    padding: 0.25rem !important;
  }
  .p-2 {
    padding: 0.5rem !important;
  }
  .p-3 {
    padding: 1rem !important;
  }
  .p-4 {
    padding: 1.5rem !important;
  }
  .p-5 {
    padding: 3rem !important;
  }
  .p-6 {
    padding: 4rem !important;
  }
  .p-7 {
    padding: 5rem !important;
  }
  .p-8 {
    padding: 6rem !important;
  }
  .px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 0.25rem !important;
  }
  .pt-2 {
    padding-top: 0.5rem !important;
  }
  .pt-3 {
    padding-top: 1rem !important;
  }
  .pt-4 {
    padding-top: 1.5rem !important;
  }
  .pt-5 {
    padding-top: 3rem !important;
  }
  .pt-6 {
    padding-top: 4rem !important;
  }
  .pt-7 {
    padding-top: 5rem !important;
  }
  .pt-8 {
    padding-top: 6rem !important;
  }
  .pe-0 {
    padding-right: 0 !important;
  }
  .pe-1 {
    padding-right: 0.25rem !important;
  }
  .pe-2 {
    padding-right: 0.5rem !important;
  }
  .pe-3 {
    padding-right: 1rem !important;
  }
  .pe-4 {
    padding-right: 1.5rem !important;
  }
  .pe-5 {
    padding-right: 3rem !important;
  }
  .pe-6 {
    padding-right: 4rem !important;
  }
  .pe-7 {
    padding-right: 5rem !important;
  }
  .pe-8 {
    padding-right: 6rem !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-3 {
    padding-bottom: 1rem !important;
  }
  .pb-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-5 {
    padding-bottom: 3rem !important;
  }
  .pb-6 {
    padding-bottom: 4rem !important;
  }
  .pb-7 {
    padding-bottom: 5rem !important;
  }
  .pb-8 {
    padding-bottom: 6rem !important;
  }
  .ps-0 {
    padding-left: 0 !important;
  }
  .ps-1 {
    padding-left: 0.25rem !important;
  }
  .ps-2 {
    padding-left: 0.5rem !important;
  }
  .ps-3 {
    padding-left: 1rem !important;
  }
  .ps-4 {
    padding-left: 1.5rem !important;
  }
  .ps-5 {
    padding-left: 3rem !important;
  }
  .ps-6 {
    padding-left: 4rem !important;
  }
  .ps-7 {
    padding-left: 5rem !important;
  }
  .ps-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 641px) {
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-6 {
    margin: 4rem !important;
  }
  .m-sm-7 {
    margin: 5rem !important;
  }
  .m-sm-8 {
    margin: 6rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-sm-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-sm-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-6 {
    margin-top: 4rem !important;
  }
  .mt-sm-7 {
    margin-top: 5rem !important;
  }
  .mt-sm-8 {
    margin-top: 6rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-6 {
    margin-right: 4rem !important;
  }
  .me-sm-7 {
    margin-right: 5rem !important;
  }
  .me-sm-8 {
    margin-right: 6rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 5rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 6rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-6 {
    margin-left: 4rem !important;
  }
  .ms-sm-7 {
    margin-left: 5rem !important;
  }
  .ms-sm-8 {
    margin-left: 6rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .p-sm-6 {
    padding: 4rem !important;
  }
  .p-sm-7 {
    padding: 5rem !important;
  }
  .p-sm-8 {
    padding: 6rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-sm-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-sm-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-sm-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-sm-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pt-sm-6 {
    padding-top: 4rem !important;
  }
  .pt-sm-7 {
    padding-top: 5rem !important;
  }
  .pt-sm-8 {
    padding-top: 6rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pe-sm-6 {
    padding-right: 4rem !important;
  }
  .pe-sm-7 {
    padding-right: 5rem !important;
  }
  .pe-sm-8 {
    padding-right: 6rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 4rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 5rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 6rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .ps-sm-6 {
    padding-left: 4rem !important;
  }
  .ps-sm-7 {
    padding-left: 5rem !important;
  }
  .ps-sm-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 835px) {
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-6 {
    margin: 4rem !important;
  }
  .m-md-7 {
    margin: 5rem !important;
  }
  .m-md-8 {
    margin: 6rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-md-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-md-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-6 {
    margin-top: 4rem !important;
  }
  .mt-md-7 {
    margin-top: 5rem !important;
  }
  .mt-md-8 {
    margin-top: 6rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-6 {
    margin-right: 4rem !important;
  }
  .me-md-7 {
    margin-right: 5rem !important;
  }
  .me-md-8 {
    margin-right: 6rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-6 {
    margin-bottom: 4rem !important;
  }
  .mb-md-7 {
    margin-bottom: 5rem !important;
  }
  .mb-md-8 {
    margin-bottom: 6rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-6 {
    margin-left: 4rem !important;
  }
  .ms-md-7 {
    margin-left: 5rem !important;
  }
  .ms-md-8 {
    margin-left: 6rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .p-md-6 {
    padding: 4rem !important;
  }
  .p-md-7 {
    padding: 5rem !important;
  }
  .p-md-8 {
    padding: 6rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-md-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-md-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-md-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-md-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pt-md-6 {
    padding-top: 4rem !important;
  }
  .pt-md-7 {
    padding-top: 5rem !important;
  }
  .pt-md-8 {
    padding-top: 6rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pe-md-6 {
    padding-right: 4rem !important;
  }
  .pe-md-7 {
    padding-right: 5rem !important;
  }
  .pe-md-8 {
    padding-right: 6rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .pb-md-6 {
    padding-bottom: 4rem !important;
  }
  .pb-md-7 {
    padding-bottom: 5rem !important;
  }
  .pb-md-8 {
    padding-bottom: 6rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .ps-md-6 {
    padding-left: 4rem !important;
  }
  .ps-md-7 {
    padding-left: 5rem !important;
  }
  .ps-md-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1001px) {
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-6 {
    margin: 4rem !important;
  }
  .m-lg-7 {
    margin: 5rem !important;
  }
  .m-lg-8 {
    margin: 6rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-lg-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-lg-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-6 {
    margin-top: 4rem !important;
  }
  .mt-lg-7 {
    margin-top: 5rem !important;
  }
  .mt-lg-8 {
    margin-top: 6rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-6 {
    margin-right: 4rem !important;
  }
  .me-lg-7 {
    margin-right: 5rem !important;
  }
  .me-lg-8 {
    margin-right: 6rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 5rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 6rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-6 {
    margin-left: 4rem !important;
  }
  .ms-lg-7 {
    margin-left: 5rem !important;
  }
  .ms-lg-8 {
    margin-left: 6rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .p-lg-6 {
    padding: 4rem !important;
  }
  .p-lg-7 {
    padding: 5rem !important;
  }
  .p-lg-8 {
    padding: 6rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-lg-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-lg-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-lg-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-lg-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pt-lg-6 {
    padding-top: 4rem !important;
  }
  .pt-lg-7 {
    padding-top: 5rem !important;
  }
  .pt-lg-8 {
    padding-top: 6rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pe-lg-6 {
    padding-right: 4rem !important;
  }
  .pe-lg-7 {
    padding-right: 5rem !important;
  }
  .pe-lg-8 {
    padding-right: 6rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 4rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 5rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 6rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .ps-lg-6 {
    padding-left: 4rem !important;
  }
  .ps-lg-7 {
    padding-left: 5rem !important;
  }
  .ps-lg-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1201px) {
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-6 {
    margin: 4rem !important;
  }
  .m-xl-7 {
    margin: 5rem !important;
  }
  .m-xl-8 {
    margin: 6rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-xl-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-xl-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-6 {
    margin-top: 4rem !important;
  }
  .mt-xl-7 {
    margin-top: 5rem !important;
  }
  .mt-xl-8 {
    margin-top: 6rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-6 {
    margin-right: 4rem !important;
  }
  .me-xl-7 {
    margin-right: 5rem !important;
  }
  .me-xl-8 {
    margin-right: 6rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 5rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 6rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-6 {
    margin-left: 4rem !important;
  }
  .ms-xl-7 {
    margin-left: 5rem !important;
  }
  .ms-xl-8 {
    margin-left: 6rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .p-xl-6 {
    padding: 4rem !important;
  }
  .p-xl-7 {
    padding: 5rem !important;
  }
  .p-xl-8 {
    padding: 6rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-xl-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-xl-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-xl-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-xl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pt-xl-6 {
    padding-top: 4rem !important;
  }
  .pt-xl-7 {
    padding-top: 5rem !important;
  }
  .pt-xl-8 {
    padding-top: 6rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pe-xl-6 {
    padding-right: 4rem !important;
  }
  .pe-xl-7 {
    padding-right: 5rem !important;
  }
  .pe-xl-8 {
    padding-right: 6rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 4rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 5rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 6rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .ps-xl-6 {
    padding-left: 4rem !important;
  }
  .ps-xl-7 {
    padding-left: 5rem !important;
  }
  .ps-xl-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1401px) {
  .d-ds-inline {
    display: inline !important;
  }
  .d-ds-inline-block {
    display: inline-block !important;
  }
  .d-ds-block {
    display: block !important;
  }
  .d-ds-grid {
    display: grid !important;
  }
  .d-ds-table {
    display: table !important;
  }
  .d-ds-table-row {
    display: table-row !important;
  }
  .d-ds-table-cell {
    display: table-cell !important;
  }
  .d-ds-flex {
    display: flex !important;
  }
  .d-ds-inline-flex {
    display: inline-flex !important;
  }
  .d-ds-none {
    display: none !important;
  }
  .flex-ds-row {
    flex-direction: row !important;
  }
  .flex-ds-column {
    flex-direction: column !important;
  }
  .flex-ds-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-ds-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-ds-wrap {
    flex-wrap: wrap !important;
  }
  .flex-ds-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-ds-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-ds-start {
    justify-content: flex-start !important;
  }
  .justify-content-ds-end {
    justify-content: flex-end !important;
  }
  .justify-content-ds-center {
    justify-content: center !important;
  }
  .justify-content-ds-between {
    justify-content: space-between !important;
  }
  .justify-content-ds-around {
    justify-content: space-around !important;
  }
  .justify-content-ds-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-ds-start {
    align-items: flex-start !important;
  }
  .align-items-ds-end {
    align-items: flex-end !important;
  }
  .align-items-ds-center {
    align-items: center !important;
  }
  .align-items-ds-baseline {
    align-items: baseline !important;
  }
  .align-items-ds-stretch {
    align-items: stretch !important;
  }
  .m-ds-0 {
    margin: 0 !important;
  }
  .m-ds-1 {
    margin: 0.25rem !important;
  }
  .m-ds-2 {
    margin: 0.5rem !important;
  }
  .m-ds-3 {
    margin: 1rem !important;
  }
  .m-ds-4 {
    margin: 1.5rem !important;
  }
  .m-ds-5 {
    margin: 3rem !important;
  }
  .m-ds-6 {
    margin: 4rem !important;
  }
  .m-ds-7 {
    margin: 5rem !important;
  }
  .m-ds-8 {
    margin: 6rem !important;
  }
  .m-ds-auto {
    margin: auto !important;
  }
  .mx-ds-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-ds-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-ds-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-ds-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-ds-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-ds-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-ds-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-ds-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-ds-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-ds-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-ds-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-ds-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-ds-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-ds-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-ds-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-ds-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-ds-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-ds-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-ds-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-ds-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-ds-0 {
    margin-top: 0 !important;
  }
  .mt-ds-1 {
    margin-top: 0.25rem !important;
  }
  .mt-ds-2 {
    margin-top: 0.5rem !important;
  }
  .mt-ds-3 {
    margin-top: 1rem !important;
  }
  .mt-ds-4 {
    margin-top: 1.5rem !important;
  }
  .mt-ds-5 {
    margin-top: 3rem !important;
  }
  .mt-ds-6 {
    margin-top: 4rem !important;
  }
  .mt-ds-7 {
    margin-top: 5rem !important;
  }
  .mt-ds-8 {
    margin-top: 6rem !important;
  }
  .mt-ds-auto {
    margin-top: auto !important;
  }
  .me-ds-0 {
    margin-right: 0 !important;
  }
  .me-ds-1 {
    margin-right: 0.25rem !important;
  }
  .me-ds-2 {
    margin-right: 0.5rem !important;
  }
  .me-ds-3 {
    margin-right: 1rem !important;
  }
  .me-ds-4 {
    margin-right: 1.5rem !important;
  }
  .me-ds-5 {
    margin-right: 3rem !important;
  }
  .me-ds-6 {
    margin-right: 4rem !important;
  }
  .me-ds-7 {
    margin-right: 5rem !important;
  }
  .me-ds-8 {
    margin-right: 6rem !important;
  }
  .me-ds-auto {
    margin-right: auto !important;
  }
  .mb-ds-0 {
    margin-bottom: 0 !important;
  }
  .mb-ds-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-ds-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-ds-3 {
    margin-bottom: 1rem !important;
  }
  .mb-ds-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-ds-5 {
    margin-bottom: 3rem !important;
  }
  .mb-ds-6 {
    margin-bottom: 4rem !important;
  }
  .mb-ds-7 {
    margin-bottom: 5rem !important;
  }
  .mb-ds-8 {
    margin-bottom: 6rem !important;
  }
  .mb-ds-auto {
    margin-bottom: auto !important;
  }
  .ms-ds-0 {
    margin-left: 0 !important;
  }
  .ms-ds-1 {
    margin-left: 0.25rem !important;
  }
  .ms-ds-2 {
    margin-left: 0.5rem !important;
  }
  .ms-ds-3 {
    margin-left: 1rem !important;
  }
  .ms-ds-4 {
    margin-left: 1.5rem !important;
  }
  .ms-ds-5 {
    margin-left: 3rem !important;
  }
  .ms-ds-6 {
    margin-left: 4rem !important;
  }
  .ms-ds-7 {
    margin-left: 5rem !important;
  }
  .ms-ds-8 {
    margin-left: 6rem !important;
  }
  .ms-ds-auto {
    margin-left: auto !important;
  }
  .p-ds-0 {
    padding: 0 !important;
  }
  .p-ds-1 {
    padding: 0.25rem !important;
  }
  .p-ds-2 {
    padding: 0.5rem !important;
  }
  .p-ds-3 {
    padding: 1rem !important;
  }
  .p-ds-4 {
    padding: 1.5rem !important;
  }
  .p-ds-5 {
    padding: 3rem !important;
  }
  .p-ds-6 {
    padding: 4rem !important;
  }
  .p-ds-7 {
    padding: 5rem !important;
  }
  .p-ds-8 {
    padding: 6rem !important;
  }
  .px-ds-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-ds-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-ds-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-ds-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-ds-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-ds-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-ds-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-ds-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-ds-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-ds-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-ds-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-ds-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-ds-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-ds-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-ds-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-ds-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-ds-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-ds-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-ds-0 {
    padding-top: 0 !important;
  }
  .pt-ds-1 {
    padding-top: 0.25rem !important;
  }
  .pt-ds-2 {
    padding-top: 0.5rem !important;
  }
  .pt-ds-3 {
    padding-top: 1rem !important;
  }
  .pt-ds-4 {
    padding-top: 1.5rem !important;
  }
  .pt-ds-5 {
    padding-top: 3rem !important;
  }
  .pt-ds-6 {
    padding-top: 4rem !important;
  }
  .pt-ds-7 {
    padding-top: 5rem !important;
  }
  .pt-ds-8 {
    padding-top: 6rem !important;
  }
  .pe-ds-0 {
    padding-right: 0 !important;
  }
  .pe-ds-1 {
    padding-right: 0.25rem !important;
  }
  .pe-ds-2 {
    padding-right: 0.5rem !important;
  }
  .pe-ds-3 {
    padding-right: 1rem !important;
  }
  .pe-ds-4 {
    padding-right: 1.5rem !important;
  }
  .pe-ds-5 {
    padding-right: 3rem !important;
  }
  .pe-ds-6 {
    padding-right: 4rem !important;
  }
  .pe-ds-7 {
    padding-right: 5rem !important;
  }
  .pe-ds-8 {
    padding-right: 6rem !important;
  }
  .pb-ds-0 {
    padding-bottom: 0 !important;
  }
  .pb-ds-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-ds-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-ds-3 {
    padding-bottom: 1rem !important;
  }
  .pb-ds-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-ds-5 {
    padding-bottom: 3rem !important;
  }
  .pb-ds-6 {
    padding-bottom: 4rem !important;
  }
  .pb-ds-7 {
    padding-bottom: 5rem !important;
  }
  .pb-ds-8 {
    padding-bottom: 6rem !important;
  }
  .ps-ds-0 {
    padding-left: 0 !important;
  }
  .ps-ds-1 {
    padding-left: 0.25rem !important;
  }
  .ps-ds-2 {
    padding-left: 0.5rem !important;
  }
  .ps-ds-3 {
    padding-left: 1rem !important;
  }
  .ps-ds-4 {
    padding-left: 1.5rem !important;
  }
  .ps-ds-5 {
    padding-left: 3rem !important;
  }
  .ps-ds-6 {
    padding-left: 4rem !important;
  }
  .ps-ds-7 {
    padding-left: 5rem !important;
  }
  .ps-ds-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1601px) {
  .d-dm-inline {
    display: inline !important;
  }
  .d-dm-inline-block {
    display: inline-block !important;
  }
  .d-dm-block {
    display: block !important;
  }
  .d-dm-grid {
    display: grid !important;
  }
  .d-dm-table {
    display: table !important;
  }
  .d-dm-table-row {
    display: table-row !important;
  }
  .d-dm-table-cell {
    display: table-cell !important;
  }
  .d-dm-flex {
    display: flex !important;
  }
  .d-dm-inline-flex {
    display: inline-flex !important;
  }
  .d-dm-none {
    display: none !important;
  }
  .flex-dm-row {
    flex-direction: row !important;
  }
  .flex-dm-column {
    flex-direction: column !important;
  }
  .flex-dm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-dm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-dm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-dm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-dm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-dm-start {
    justify-content: flex-start !important;
  }
  .justify-content-dm-end {
    justify-content: flex-end !important;
  }
  .justify-content-dm-center {
    justify-content: center !important;
  }
  .justify-content-dm-between {
    justify-content: space-between !important;
  }
  .justify-content-dm-around {
    justify-content: space-around !important;
  }
  .justify-content-dm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-dm-start {
    align-items: flex-start !important;
  }
  .align-items-dm-end {
    align-items: flex-end !important;
  }
  .align-items-dm-center {
    align-items: center !important;
  }
  .align-items-dm-baseline {
    align-items: baseline !important;
  }
  .align-items-dm-stretch {
    align-items: stretch !important;
  }
  .m-dm-0 {
    margin: 0 !important;
  }
  .m-dm-1 {
    margin: 0.25rem !important;
  }
  .m-dm-2 {
    margin: 0.5rem !important;
  }
  .m-dm-3 {
    margin: 1rem !important;
  }
  .m-dm-4 {
    margin: 1.5rem !important;
  }
  .m-dm-5 {
    margin: 3rem !important;
  }
  .m-dm-6 {
    margin: 4rem !important;
  }
  .m-dm-7 {
    margin: 5rem !important;
  }
  .m-dm-8 {
    margin: 6rem !important;
  }
  .m-dm-auto {
    margin: auto !important;
  }
  .mx-dm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-dm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-dm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-dm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-dm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-dm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-dm-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-dm-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-dm-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-dm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-dm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-dm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-dm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-dm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-dm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-dm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-dm-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-dm-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-dm-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-dm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-dm-0 {
    margin-top: 0 !important;
  }
  .mt-dm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-dm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-dm-3 {
    margin-top: 1rem !important;
  }
  .mt-dm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-dm-5 {
    margin-top: 3rem !important;
  }
  .mt-dm-6 {
    margin-top: 4rem !important;
  }
  .mt-dm-7 {
    margin-top: 5rem !important;
  }
  .mt-dm-8 {
    margin-top: 6rem !important;
  }
  .mt-dm-auto {
    margin-top: auto !important;
  }
  .me-dm-0 {
    margin-right: 0 !important;
  }
  .me-dm-1 {
    margin-right: 0.25rem !important;
  }
  .me-dm-2 {
    margin-right: 0.5rem !important;
  }
  .me-dm-3 {
    margin-right: 1rem !important;
  }
  .me-dm-4 {
    margin-right: 1.5rem !important;
  }
  .me-dm-5 {
    margin-right: 3rem !important;
  }
  .me-dm-6 {
    margin-right: 4rem !important;
  }
  .me-dm-7 {
    margin-right: 5rem !important;
  }
  .me-dm-8 {
    margin-right: 6rem !important;
  }
  .me-dm-auto {
    margin-right: auto !important;
  }
  .mb-dm-0 {
    margin-bottom: 0 !important;
  }
  .mb-dm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-dm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-dm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-dm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-dm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-dm-6 {
    margin-bottom: 4rem !important;
  }
  .mb-dm-7 {
    margin-bottom: 5rem !important;
  }
  .mb-dm-8 {
    margin-bottom: 6rem !important;
  }
  .mb-dm-auto {
    margin-bottom: auto !important;
  }
  .ms-dm-0 {
    margin-left: 0 !important;
  }
  .ms-dm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-dm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-dm-3 {
    margin-left: 1rem !important;
  }
  .ms-dm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-dm-5 {
    margin-left: 3rem !important;
  }
  .ms-dm-6 {
    margin-left: 4rem !important;
  }
  .ms-dm-7 {
    margin-left: 5rem !important;
  }
  .ms-dm-8 {
    margin-left: 6rem !important;
  }
  .ms-dm-auto {
    margin-left: auto !important;
  }
  .p-dm-0 {
    padding: 0 !important;
  }
  .p-dm-1 {
    padding: 0.25rem !important;
  }
  .p-dm-2 {
    padding: 0.5rem !important;
  }
  .p-dm-3 {
    padding: 1rem !important;
  }
  .p-dm-4 {
    padding: 1.5rem !important;
  }
  .p-dm-5 {
    padding: 3rem !important;
  }
  .p-dm-6 {
    padding: 4rem !important;
  }
  .p-dm-7 {
    padding: 5rem !important;
  }
  .p-dm-8 {
    padding: 6rem !important;
  }
  .px-dm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-dm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-dm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-dm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-dm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-dm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-dm-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-dm-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-dm-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-dm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-dm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-dm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-dm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-dm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-dm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-dm-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-dm-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-dm-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-dm-0 {
    padding-top: 0 !important;
  }
  .pt-dm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-dm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-dm-3 {
    padding-top: 1rem !important;
  }
  .pt-dm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-dm-5 {
    padding-top: 3rem !important;
  }
  .pt-dm-6 {
    padding-top: 4rem !important;
  }
  .pt-dm-7 {
    padding-top: 5rem !important;
  }
  .pt-dm-8 {
    padding-top: 6rem !important;
  }
  .pe-dm-0 {
    padding-right: 0 !important;
  }
  .pe-dm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-dm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-dm-3 {
    padding-right: 1rem !important;
  }
  .pe-dm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-dm-5 {
    padding-right: 3rem !important;
  }
  .pe-dm-6 {
    padding-right: 4rem !important;
  }
  .pe-dm-7 {
    padding-right: 5rem !important;
  }
  .pe-dm-8 {
    padding-right: 6rem !important;
  }
  .pb-dm-0 {
    padding-bottom: 0 !important;
  }
  .pb-dm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-dm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-dm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-dm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-dm-5 {
    padding-bottom: 3rem !important;
  }
  .pb-dm-6 {
    padding-bottom: 4rem !important;
  }
  .pb-dm-7 {
    padding-bottom: 5rem !important;
  }
  .pb-dm-8 {
    padding-bottom: 6rem !important;
  }
  .ps-dm-0 {
    padding-left: 0 !important;
  }
  .ps-dm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-dm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-dm-3 {
    padding-left: 1rem !important;
  }
  .ps-dm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-dm-5 {
    padding-left: 3rem !important;
  }
  .ps-dm-6 {
    padding-left: 4rem !important;
  }
  .ps-dm-7 {
    padding-left: 5rem !important;
  }
  .ps-dm-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1921px) {
  .d-dl-inline {
    display: inline !important;
  }
  .d-dl-inline-block {
    display: inline-block !important;
  }
  .d-dl-block {
    display: block !important;
  }
  .d-dl-grid {
    display: grid !important;
  }
  .d-dl-table {
    display: table !important;
  }
  .d-dl-table-row {
    display: table-row !important;
  }
  .d-dl-table-cell {
    display: table-cell !important;
  }
  .d-dl-flex {
    display: flex !important;
  }
  .d-dl-inline-flex {
    display: inline-flex !important;
  }
  .d-dl-none {
    display: none !important;
  }
  .flex-dl-row {
    flex-direction: row !important;
  }
  .flex-dl-column {
    flex-direction: column !important;
  }
  .flex-dl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-dl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-dl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-dl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-dl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-dl-start {
    justify-content: flex-start !important;
  }
  .justify-content-dl-end {
    justify-content: flex-end !important;
  }
  .justify-content-dl-center {
    justify-content: center !important;
  }
  .justify-content-dl-between {
    justify-content: space-between !important;
  }
  .justify-content-dl-around {
    justify-content: space-around !important;
  }
  .justify-content-dl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-dl-start {
    align-items: flex-start !important;
  }
  .align-items-dl-end {
    align-items: flex-end !important;
  }
  .align-items-dl-center {
    align-items: center !important;
  }
  .align-items-dl-baseline {
    align-items: baseline !important;
  }
  .align-items-dl-stretch {
    align-items: stretch !important;
  }
  .m-dl-0 {
    margin: 0 !important;
  }
  .m-dl-1 {
    margin: 0.25rem !important;
  }
  .m-dl-2 {
    margin: 0.5rem !important;
  }
  .m-dl-3 {
    margin: 1rem !important;
  }
  .m-dl-4 {
    margin: 1.5rem !important;
  }
  .m-dl-5 {
    margin: 3rem !important;
  }
  .m-dl-6 {
    margin: 4rem !important;
  }
  .m-dl-7 {
    margin: 5rem !important;
  }
  .m-dl-8 {
    margin: 6rem !important;
  }
  .m-dl-auto {
    margin: auto !important;
  }
  .mx-dl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-dl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-dl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-dl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-dl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-dl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-dl-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-dl-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-dl-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-dl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-dl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-dl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-dl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-dl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-dl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-dl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-dl-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-dl-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-dl-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-dl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-dl-0 {
    margin-top: 0 !important;
  }
  .mt-dl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-dl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-dl-3 {
    margin-top: 1rem !important;
  }
  .mt-dl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-dl-5 {
    margin-top: 3rem !important;
  }
  .mt-dl-6 {
    margin-top: 4rem !important;
  }
  .mt-dl-7 {
    margin-top: 5rem !important;
  }
  .mt-dl-8 {
    margin-top: 6rem !important;
  }
  .mt-dl-auto {
    margin-top: auto !important;
  }
  .me-dl-0 {
    margin-right: 0 !important;
  }
  .me-dl-1 {
    margin-right: 0.25rem !important;
  }
  .me-dl-2 {
    margin-right: 0.5rem !important;
  }
  .me-dl-3 {
    margin-right: 1rem !important;
  }
  .me-dl-4 {
    margin-right: 1.5rem !important;
  }
  .me-dl-5 {
    margin-right: 3rem !important;
  }
  .me-dl-6 {
    margin-right: 4rem !important;
  }
  .me-dl-7 {
    margin-right: 5rem !important;
  }
  .me-dl-8 {
    margin-right: 6rem !important;
  }
  .me-dl-auto {
    margin-right: auto !important;
  }
  .mb-dl-0 {
    margin-bottom: 0 !important;
  }
  .mb-dl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-dl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-dl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-dl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-dl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-dl-6 {
    margin-bottom: 4rem !important;
  }
  .mb-dl-7 {
    margin-bottom: 5rem !important;
  }
  .mb-dl-8 {
    margin-bottom: 6rem !important;
  }
  .mb-dl-auto {
    margin-bottom: auto !important;
  }
  .ms-dl-0 {
    margin-left: 0 !important;
  }
  .ms-dl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-dl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-dl-3 {
    margin-left: 1rem !important;
  }
  .ms-dl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-dl-5 {
    margin-left: 3rem !important;
  }
  .ms-dl-6 {
    margin-left: 4rem !important;
  }
  .ms-dl-7 {
    margin-left: 5rem !important;
  }
  .ms-dl-8 {
    margin-left: 6rem !important;
  }
  .ms-dl-auto {
    margin-left: auto !important;
  }
  .p-dl-0 {
    padding: 0 !important;
  }
  .p-dl-1 {
    padding: 0.25rem !important;
  }
  .p-dl-2 {
    padding: 0.5rem !important;
  }
  .p-dl-3 {
    padding: 1rem !important;
  }
  .p-dl-4 {
    padding: 1.5rem !important;
  }
  .p-dl-5 {
    padding: 3rem !important;
  }
  .p-dl-6 {
    padding: 4rem !important;
  }
  .p-dl-7 {
    padding: 5rem !important;
  }
  .p-dl-8 {
    padding: 6rem !important;
  }
  .px-dl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-dl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-dl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-dl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-dl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-dl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-dl-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-dl-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-dl-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-dl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-dl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-dl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-dl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-dl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-dl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-dl-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-dl-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-dl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-dl-0 {
    padding-top: 0 !important;
  }
  .pt-dl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-dl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-dl-3 {
    padding-top: 1rem !important;
  }
  .pt-dl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-dl-5 {
    padding-top: 3rem !important;
  }
  .pt-dl-6 {
    padding-top: 4rem !important;
  }
  .pt-dl-7 {
    padding-top: 5rem !important;
  }
  .pt-dl-8 {
    padding-top: 6rem !important;
  }
  .pe-dl-0 {
    padding-right: 0 !important;
  }
  .pe-dl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-dl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-dl-3 {
    padding-right: 1rem !important;
  }
  .pe-dl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-dl-5 {
    padding-right: 3rem !important;
  }
  .pe-dl-6 {
    padding-right: 4rem !important;
  }
  .pe-dl-7 {
    padding-right: 5rem !important;
  }
  .pe-dl-8 {
    padding-right: 6rem !important;
  }
  .pb-dl-0 {
    padding-bottom: 0 !important;
  }
  .pb-dl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-dl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-dl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-dl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-dl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-dl-6 {
    padding-bottom: 4rem !important;
  }
  .pb-dl-7 {
    padding-bottom: 5rem !important;
  }
  .pb-dl-8 {
    padding-bottom: 6rem !important;
  }
  .ps-dl-0 {
    padding-left: 0 !important;
  }
  .ps-dl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-dl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-dl-3 {
    padding-left: 1rem !important;
  }
  .ps-dl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-dl-5 {
    padding-left: 3rem !important;
  }
  .ps-dl-6 {
    padding-left: 4rem !important;
  }
  .ps-dl-7 {
    padding-left: 5rem !important;
  }
  .ps-dl-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 1201px) {
  .d-dr-inline {
    display: inline !important;
  }
  .d-dr-inline-block {
    display: inline-block !important;
  }
  .d-dr-block {
    display: block !important;
  }
  .d-dr-grid {
    display: grid !important;
  }
  .d-dr-table {
    display: table !important;
  }
  .d-dr-table-row {
    display: table-row !important;
  }
  .d-dr-table-cell {
    display: table-cell !important;
  }
  .d-dr-flex {
    display: flex !important;
  }
  .d-dr-inline-flex {
    display: inline-flex !important;
  }
  .d-dr-none {
    display: none !important;
  }
  .flex-dr-row {
    flex-direction: row !important;
  }
  .flex-dr-column {
    flex-direction: column !important;
  }
  .flex-dr-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-dr-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-dr-wrap {
    flex-wrap: wrap !important;
  }
  .flex-dr-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-dr-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-dr-start {
    justify-content: flex-start !important;
  }
  .justify-content-dr-end {
    justify-content: flex-end !important;
  }
  .justify-content-dr-center {
    justify-content: center !important;
  }
  .justify-content-dr-between {
    justify-content: space-between !important;
  }
  .justify-content-dr-around {
    justify-content: space-around !important;
  }
  .justify-content-dr-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-dr-start {
    align-items: flex-start !important;
  }
  .align-items-dr-end {
    align-items: flex-end !important;
  }
  .align-items-dr-center {
    align-items: center !important;
  }
  .align-items-dr-baseline {
    align-items: baseline !important;
  }
  .align-items-dr-stretch {
    align-items: stretch !important;
  }
  .m-dr-0 {
    margin: 0 !important;
  }
  .m-dr-1 {
    margin: 0.25rem !important;
  }
  .m-dr-2 {
    margin: 0.5rem !important;
  }
  .m-dr-3 {
    margin: 1rem !important;
  }
  .m-dr-4 {
    margin: 1.5rem !important;
  }
  .m-dr-5 {
    margin: 3rem !important;
  }
  .m-dr-6 {
    margin: 4rem !important;
  }
  .m-dr-7 {
    margin: 5rem !important;
  }
  .m-dr-8 {
    margin: 6rem !important;
  }
  .m-dr-auto {
    margin: auto !important;
  }
  .mx-dr-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-dr-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-dr-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-dr-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-dr-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-dr-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-dr-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-dr-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-dr-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-dr-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-dr-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-dr-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-dr-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-dr-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-dr-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-dr-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-dr-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-dr-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-dr-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-dr-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-dr-0 {
    margin-top: 0 !important;
  }
  .mt-dr-1 {
    margin-top: 0.25rem !important;
  }
  .mt-dr-2 {
    margin-top: 0.5rem !important;
  }
  .mt-dr-3 {
    margin-top: 1rem !important;
  }
  .mt-dr-4 {
    margin-top: 1.5rem !important;
  }
  .mt-dr-5 {
    margin-top: 3rem !important;
  }
  .mt-dr-6 {
    margin-top: 4rem !important;
  }
  .mt-dr-7 {
    margin-top: 5rem !important;
  }
  .mt-dr-8 {
    margin-top: 6rem !important;
  }
  .mt-dr-auto {
    margin-top: auto !important;
  }
  .me-dr-0 {
    margin-right: 0 !important;
  }
  .me-dr-1 {
    margin-right: 0.25rem !important;
  }
  .me-dr-2 {
    margin-right: 0.5rem !important;
  }
  .me-dr-3 {
    margin-right: 1rem !important;
  }
  .me-dr-4 {
    margin-right: 1.5rem !important;
  }
  .me-dr-5 {
    margin-right: 3rem !important;
  }
  .me-dr-6 {
    margin-right: 4rem !important;
  }
  .me-dr-7 {
    margin-right: 5rem !important;
  }
  .me-dr-8 {
    margin-right: 6rem !important;
  }
  .me-dr-auto {
    margin-right: auto !important;
  }
  .mb-dr-0 {
    margin-bottom: 0 !important;
  }
  .mb-dr-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-dr-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-dr-3 {
    margin-bottom: 1rem !important;
  }
  .mb-dr-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-dr-5 {
    margin-bottom: 3rem !important;
  }
  .mb-dr-6 {
    margin-bottom: 4rem !important;
  }
  .mb-dr-7 {
    margin-bottom: 5rem !important;
  }
  .mb-dr-8 {
    margin-bottom: 6rem !important;
  }
  .mb-dr-auto {
    margin-bottom: auto !important;
  }
  .ms-dr-0 {
    margin-left: 0 !important;
  }
  .ms-dr-1 {
    margin-left: 0.25rem !important;
  }
  .ms-dr-2 {
    margin-left: 0.5rem !important;
  }
  .ms-dr-3 {
    margin-left: 1rem !important;
  }
  .ms-dr-4 {
    margin-left: 1.5rem !important;
  }
  .ms-dr-5 {
    margin-left: 3rem !important;
  }
  .ms-dr-6 {
    margin-left: 4rem !important;
  }
  .ms-dr-7 {
    margin-left: 5rem !important;
  }
  .ms-dr-8 {
    margin-left: 6rem !important;
  }
  .ms-dr-auto {
    margin-left: auto !important;
  }
  .p-dr-0 {
    padding: 0 !important;
  }
  .p-dr-1 {
    padding: 0.25rem !important;
  }
  .p-dr-2 {
    padding: 0.5rem !important;
  }
  .p-dr-3 {
    padding: 1rem !important;
  }
  .p-dr-4 {
    padding: 1.5rem !important;
  }
  .p-dr-5 {
    padding: 3rem !important;
  }
  .p-dr-6 {
    padding: 4rem !important;
  }
  .p-dr-7 {
    padding: 5rem !important;
  }
  .p-dr-8 {
    padding: 6rem !important;
  }
  .px-dr-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-dr-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-dr-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-dr-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-dr-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-dr-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-dr-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-dr-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-dr-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-dr-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-dr-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-dr-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-dr-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-dr-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-dr-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-dr-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-dr-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-dr-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-dr-0 {
    padding-top: 0 !important;
  }
  .pt-dr-1 {
    padding-top: 0.25rem !important;
  }
  .pt-dr-2 {
    padding-top: 0.5rem !important;
  }
  .pt-dr-3 {
    padding-top: 1rem !important;
  }
  .pt-dr-4 {
    padding-top: 1.5rem !important;
  }
  .pt-dr-5 {
    padding-top: 3rem !important;
  }
  .pt-dr-6 {
    padding-top: 4rem !important;
  }
  .pt-dr-7 {
    padding-top: 5rem !important;
  }
  .pt-dr-8 {
    padding-top: 6rem !important;
  }
  .pe-dr-0 {
    padding-right: 0 !important;
  }
  .pe-dr-1 {
    padding-right: 0.25rem !important;
  }
  .pe-dr-2 {
    padding-right: 0.5rem !important;
  }
  .pe-dr-3 {
    padding-right: 1rem !important;
  }
  .pe-dr-4 {
    padding-right: 1.5rem !important;
  }
  .pe-dr-5 {
    padding-right: 3rem !important;
  }
  .pe-dr-6 {
    padding-right: 4rem !important;
  }
  .pe-dr-7 {
    padding-right: 5rem !important;
  }
  .pe-dr-8 {
    padding-right: 6rem !important;
  }
  .pb-dr-0 {
    padding-bottom: 0 !important;
  }
  .pb-dr-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-dr-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-dr-3 {
    padding-bottom: 1rem !important;
  }
  .pb-dr-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-dr-5 {
    padding-bottom: 3rem !important;
  }
  .pb-dr-6 {
    padding-bottom: 4rem !important;
  }
  .pb-dr-7 {
    padding-bottom: 5rem !important;
  }
  .pb-dr-8 {
    padding-bottom: 6rem !important;
  }
  .ps-dr-0 {
    padding-left: 0 !important;
  }
  .ps-dr-1 {
    padding-left: 0.25rem !important;
  }
  .ps-dr-2 {
    padding-left: 0.5rem !important;
  }
  .ps-dr-3 {
    padding-left: 1rem !important;
  }
  .ps-dr-4 {
    padding-left: 1.5rem !important;
  }
  .ps-dr-5 {
    padding-left: 3rem !important;
  }
  .ps-dr-6 {
    padding-left: 4rem !important;
  }
  .ps-dr-7 {
    padding-left: 5rem !important;
  }
  .ps-dr-8 {
    padding-left: 6rem !important;
  }
}
@media (min-width: 641px) {
  .d-fl-inline {
    display: inline !important;
  }
  .d-fl-inline-block {
    display: inline-block !important;
  }
  .d-fl-block {
    display: block !important;
  }
  .d-fl-grid {
    display: grid !important;
  }
  .d-fl-table {
    display: table !important;
  }
  .d-fl-table-row {
    display: table-row !important;
  }
  .d-fl-table-cell {
    display: table-cell !important;
  }
  .d-fl-flex {
    display: flex !important;
  }
  .d-fl-inline-flex {
    display: inline-flex !important;
  }
  .d-fl-none {
    display: none !important;
  }
  .flex-fl-row {
    flex-direction: row !important;
  }
  .flex-fl-column {
    flex-direction: column !important;
  }
  .flex-fl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-fl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-fl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-fl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-fl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-fl-start {
    justify-content: flex-start !important;
  }
  .justify-content-fl-end {
    justify-content: flex-end !important;
  }
  .justify-content-fl-center {
    justify-content: center !important;
  }
  .justify-content-fl-between {
    justify-content: space-between !important;
  }
  .justify-content-fl-around {
    justify-content: space-around !important;
  }
  .justify-content-fl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-fl-start {
    align-items: flex-start !important;
  }
  .align-items-fl-end {
    align-items: flex-end !important;
  }
  .align-items-fl-center {
    align-items: center !important;
  }
  .align-items-fl-baseline {
    align-items: baseline !important;
  }
  .align-items-fl-stretch {
    align-items: stretch !important;
  }
  .m-fl-0 {
    margin: 0 !important;
  }
  .m-fl-1 {
    margin: 0.25rem !important;
  }
  .m-fl-2 {
    margin: 0.5rem !important;
  }
  .m-fl-3 {
    margin: 1rem !important;
  }
  .m-fl-4 {
    margin: 1.5rem !important;
  }
  .m-fl-5 {
    margin: 3rem !important;
  }
  .m-fl-6 {
    margin: 4rem !important;
  }
  .m-fl-7 {
    margin: 5rem !important;
  }
  .m-fl-8 {
    margin: 6rem !important;
  }
  .m-fl-auto {
    margin: auto !important;
  }
  .mx-fl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-fl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-fl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-fl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-fl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-fl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-fl-6 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-fl-7 {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }
  .mx-fl-8 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }
  .mx-fl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-fl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-fl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-fl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-fl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-fl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-fl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-fl-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-fl-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }
  .my-fl-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .my-fl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-fl-0 {
    margin-top: 0 !important;
  }
  .mt-fl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-fl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-fl-3 {
    margin-top: 1rem !important;
  }
  .mt-fl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-fl-5 {
    margin-top: 3rem !important;
  }
  .mt-fl-6 {
    margin-top: 4rem !important;
  }
  .mt-fl-7 {
    margin-top: 5rem !important;
  }
  .mt-fl-8 {
    margin-top: 6rem !important;
  }
  .mt-fl-auto {
    margin-top: auto !important;
  }
  .me-fl-0 {
    margin-right: 0 !important;
  }
  .me-fl-1 {
    margin-right: 0.25rem !important;
  }
  .me-fl-2 {
    margin-right: 0.5rem !important;
  }
  .me-fl-3 {
    margin-right: 1rem !important;
  }
  .me-fl-4 {
    margin-right: 1.5rem !important;
  }
  .me-fl-5 {
    margin-right: 3rem !important;
  }
  .me-fl-6 {
    margin-right: 4rem !important;
  }
  .me-fl-7 {
    margin-right: 5rem !important;
  }
  .me-fl-8 {
    margin-right: 6rem !important;
  }
  .me-fl-auto {
    margin-right: auto !important;
  }
  .mb-fl-0 {
    margin-bottom: 0 !important;
  }
  .mb-fl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-fl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-fl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-fl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-fl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-fl-6 {
    margin-bottom: 4rem !important;
  }
  .mb-fl-7 {
    margin-bottom: 5rem !important;
  }
  .mb-fl-8 {
    margin-bottom: 6rem !important;
  }
  .mb-fl-auto {
    margin-bottom: auto !important;
  }
  .ms-fl-0 {
    margin-left: 0 !important;
  }
  .ms-fl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-fl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-fl-3 {
    margin-left: 1rem !important;
  }
  .ms-fl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-fl-5 {
    margin-left: 3rem !important;
  }
  .ms-fl-6 {
    margin-left: 4rem !important;
  }
  .ms-fl-7 {
    margin-left: 5rem !important;
  }
  .ms-fl-8 {
    margin-left: 6rem !important;
  }
  .ms-fl-auto {
    margin-left: auto !important;
  }
  .p-fl-0 {
    padding: 0 !important;
  }
  .p-fl-1 {
    padding: 0.25rem !important;
  }
  .p-fl-2 {
    padding: 0.5rem !important;
  }
  .p-fl-3 {
    padding: 1rem !important;
  }
  .p-fl-4 {
    padding: 1.5rem !important;
  }
  .p-fl-5 {
    padding: 3rem !important;
  }
  .p-fl-6 {
    padding: 4rem !important;
  }
  .p-fl-7 {
    padding: 5rem !important;
  }
  .p-fl-8 {
    padding: 6rem !important;
  }
  .px-fl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-fl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-fl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-fl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-fl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-fl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-fl-6 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .px-fl-7 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
  .px-fl-8 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }
  .py-fl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-fl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-fl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-fl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-fl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-fl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-fl-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .py-fl-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .py-fl-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .pt-fl-0 {
    padding-top: 0 !important;
  }
  .pt-fl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-fl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-fl-3 {
    padding-top: 1rem !important;
  }
  .pt-fl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-fl-5 {
    padding-top: 3rem !important;
  }
  .pt-fl-6 {
    padding-top: 4rem !important;
  }
  .pt-fl-7 {
    padding-top: 5rem !important;
  }
  .pt-fl-8 {
    padding-top: 6rem !important;
  }
  .pe-fl-0 {
    padding-right: 0 !important;
  }
  .pe-fl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-fl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-fl-3 {
    padding-right: 1rem !important;
  }
  .pe-fl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-fl-5 {
    padding-right: 3rem !important;
  }
  .pe-fl-6 {
    padding-right: 4rem !important;
  }
  .pe-fl-7 {
    padding-right: 5rem !important;
  }
  .pe-fl-8 {
    padding-right: 6rem !important;
  }
  .pb-fl-0 {
    padding-bottom: 0 !important;
  }
  .pb-fl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-fl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-fl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-fl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-fl-5 {
    padding-bottom: 3rem !important;
  }
  .pb-fl-6 {
    padding-bottom: 4rem !important;
  }
  .pb-fl-7 {
    padding-bottom: 5rem !important;
  }
  .pb-fl-8 {
    padding-bottom: 6rem !important;
  }
  .ps-fl-0 {
    padding-left: 0 !important;
  }
  .ps-fl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-fl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-fl-3 {
    padding-left: 1rem !important;
  }
  .ps-fl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-fl-5 {
    padding-left: 3rem !important;
  }
  .ps-fl-6 {
    padding-left: 4rem !important;
  }
  .ps-fl-7 {
    padding-left: 5rem !important;
  }
  .ps-fl-8 {
    padding-left: 6rem !important;
  }
}
.row-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bxi-gutter-y) * -1);
  margin-left: calc(var(--bxi-gutter-x) * -1);
}
.row-cols .box {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-top: var(--bxi-gutter-y);
  padding-left: calc(var(--bxi-gutter-x) * 1);
}

@media (min-width: 0px) {
  .row-cols-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-0,
  .gx-0 {
    --bxi-gutter-x: 0;
  }
  .g-0,
  .gy-0 {
    --bxi-gutter-y: 0;
  }
  .g-1,
  .gx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-1,
  .gy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-2,
  .gx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-2,
  .gy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-3,
  .gx-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-3,
  .gy-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-4,
  .gx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-4,
  .gy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-5,
  .gx-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-5,
  .gy-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-6,
  .gx-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-6,
  .gy-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-7,
  .gx-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-7,
  .gy-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-8,
  .gx-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-8,
  .gy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .row-cols-sm-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bxi-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bxi-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .row-cols-md-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bxi-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bxi-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .row-cols-lg-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bxi-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bxi-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .row-cols-xl-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bxi-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bxi-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .row-cols-ds-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-ds-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-ds-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-ds-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-ds-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-ds-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-ds-0,
  .gx-ds-0 {
    --bxi-gutter-x: 0;
  }
  .g-ds-0,
  .gy-ds-0 {
    --bxi-gutter-y: 0;
  }
  .g-ds-1,
  .gx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-ds-1,
  .gy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-ds-2,
  .gx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-ds-2,
  .gy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-ds-3,
  .gx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-ds-3,
  .gy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-ds-4,
  .gx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-ds-4,
  .gy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-ds-5,
  .gx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-ds-5,
  .gy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-ds-6,
  .gx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-ds-6,
  .gy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-ds-7,
  .gx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-ds-7,
  .gy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-ds-8,
  .gx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-ds-8,
  .gy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .row-cols-dm-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-dm-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-dm-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-dm-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-dm-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-dm-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-dm-0,
  .gx-dm-0 {
    --bxi-gutter-x: 0;
  }
  .g-dm-0,
  .gy-dm-0 {
    --bxi-gutter-y: 0;
  }
  .g-dm-1,
  .gx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-dm-1,
  .gy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-dm-2,
  .gx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-dm-2,
  .gy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-dm-3,
  .gx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-dm-3,
  .gy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-dm-4,
  .gx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-dm-4,
  .gy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-dm-5,
  .gx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-dm-5,
  .gy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-dm-6,
  .gx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-dm-6,
  .gy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-dm-7,
  .gx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-dm-7,
  .gy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-dm-8,
  .gx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-dm-8,
  .gy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .row-cols-dl-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-dl-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-dl-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-dl-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-dl-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-dl-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-dl-0,
  .gx-dl-0 {
    --bxi-gutter-x: 0;
  }
  .g-dl-0,
  .gy-dl-0 {
    --bxi-gutter-y: 0;
  }
  .g-dl-1,
  .gx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-dl-1,
  .gy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-dl-2,
  .gx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-dl-2,
  .gy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-dl-3,
  .gx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-dl-3,
  .gy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-dl-4,
  .gx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-dl-4,
  .gy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-dl-5,
  .gx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-dl-5,
  .gy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-dl-6,
  .gx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-dl-6,
  .gy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-dl-7,
  .gx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-dl-7,
  .gy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-dl-8,
  .gx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-dl-8,
  .gy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .row-cols-dr-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-dr-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-dr-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-dr-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-dr-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-dr-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-dr-0,
  .gx-dr-0 {
    --bxi-gutter-x: 0;
  }
  .g-dr-0,
  .gy-dr-0 {
    --bxi-gutter-y: 0;
  }
  .g-dr-1,
  .gx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-dr-1,
  .gy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-dr-2,
  .gx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-dr-2,
  .gy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-dr-3,
  .gx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-dr-3,
  .gy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-dr-4,
  .gx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-dr-4,
  .gy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-dr-5,
  .gx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-dr-5,
  .gy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-dr-6,
  .gx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-dr-6,
  .gy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-dr-7,
  .gx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-dr-7,
  .gy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-dr-8,
  .gx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-dr-8,
  .gy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .row-cols-fl-1 .box {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-fl-2 .box {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-fl-3 .box {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-fl-4 .box {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-fl-5 .box {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-fl-6 .box {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .g-fl-0,
  .gx-fl-0 {
    --bxi-gutter-x: 0;
  }
  .g-fl-0,
  .gy-fl-0 {
    --bxi-gutter-y: 0;
  }
  .g-fl-1,
  .gx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .g-fl-1,
  .gy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .g-fl-2,
  .gx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .g-fl-2,
  .gy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .g-fl-3,
  .gx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .g-fl-3,
  .gy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .g-fl-4,
  .gx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .g-fl-4,
  .gy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .g-fl-5,
  .gx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .g-fl-5,
  .gy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .g-fl-6,
  .gx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .g-fl-6,
  .gy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .g-fl-7,
  .gx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .g-fl-7,
  .gy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .g-fl-8,
  .gx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .g-fl-8,
  .gy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
.nth-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  margin-bottom: calc(var(--bxi-gutter-y) * -1);
}
.nth-cols .box {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--bxi-gutter-x);
  margin-bottom: var(--bxi-gutter-y);
}

@media (min-width: 0px) {
  .nth-cols-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-0,
  .ngx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-0,
  .ngy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-1,
  .ngx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-1,
  .ngy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-2,
  .ngx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-2,
  .ngy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-3,
  .ngx-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-3,
  .ngy-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-4,
  .ngx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-4,
  .ngy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-5,
  .ngx-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-5,
  .ngy-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-6,
  .ngx-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-6,
  .ngy-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-7,
  .ngx-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-7,
  .ngy-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-8,
  .ngx-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-8,
  .ngy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .nth-cols-sm-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-sm-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-sm-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-sm-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-sm-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-sm-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-sm-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-sm-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-sm-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-sm-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-sm-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-sm-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-sm-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-sm-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-sm-0,
  .ngx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-sm-0,
  .ngy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-sm-1,
  .ngx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-sm-1,
  .ngy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-sm-2,
  .ngx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-sm-2,
  .ngy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-sm-3,
  .ngx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-sm-3,
  .ngy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-sm-4,
  .ngx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-sm-4,
  .ngy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-sm-5,
  .ngx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-sm-5,
  .ngy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-sm-6,
  .ngx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-sm-6,
  .ngy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-sm-7,
  .ngx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-sm-7,
  .ngy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-sm-8,
  .ngx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-sm-8,
  .ngy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .nth-cols-md-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-md-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-md-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-md-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-md-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-md-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-md-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-md-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-md-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-md-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-md-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-md-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-md-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-md-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-md-0,
  .ngx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-md-0,
  .ngy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-md-1,
  .ngx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-md-1,
  .ngy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-md-2,
  .ngx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-md-2,
  .ngy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-md-3,
  .ngx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-md-3,
  .ngy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-md-4,
  .ngx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-md-4,
  .ngy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-md-5,
  .ngx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-md-5,
  .ngy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-md-6,
  .ngx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-md-6,
  .ngy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-md-7,
  .ngx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-md-7,
  .ngy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-md-8,
  .ngx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-md-8,
  .ngy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .nth-cols-lg-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-lg-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-lg-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-lg-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-lg-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-lg-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-lg-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-lg-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-lg-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-lg-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-lg-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-lg-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-lg-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-lg-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-lg-0,
  .ngx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-lg-0,
  .ngy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-lg-1,
  .ngx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-lg-1,
  .ngy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-lg-2,
  .ngx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-lg-2,
  .ngy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-lg-3,
  .ngx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-lg-3,
  .ngy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-lg-4,
  .ngx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-lg-4,
  .ngy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-lg-5,
  .ngx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-lg-5,
  .ngy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-lg-6,
  .ngx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-lg-6,
  .ngy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-lg-7,
  .ngx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-lg-7,
  .ngy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-lg-8,
  .ngx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-lg-8,
  .ngy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .nth-cols-xl-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-xl-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-xl-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-xl-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-xl-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-xl-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-xl-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-xl-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-xl-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-xl-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-xl-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-xl-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-xl-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-xl-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-xl-0,
  .ngx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-xl-0,
  .ngy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-xl-1,
  .ngx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-xl-1,
  .ngy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-xl-2,
  .ngx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-xl-2,
  .ngy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-xl-3,
  .ngx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-xl-3,
  .ngy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-xl-4,
  .ngx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-xl-4,
  .ngy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-xl-5,
  .ngx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-xl-5,
  .ngy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-xl-6,
  .ngx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-xl-6,
  .ngy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-xl-7,
  .ngx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-xl-7,
  .ngy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-xl-8,
  .ngx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-xl-8,
  .ngy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .nth-cols-ds-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-ds-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-ds-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-ds-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-ds-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-ds-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-ds-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-ds-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-ds-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-ds-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-ds-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-ds-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-ds-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-ds-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-ds-0,
  .ngx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-ds-0,
  .ngy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-ds-1,
  .ngx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-ds-1,
  .ngy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-ds-2,
  .ngx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-ds-2,
  .ngy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-ds-3,
  .ngx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-ds-3,
  .ngy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-ds-4,
  .ngx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-ds-4,
  .ngy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-ds-5,
  .ngx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-ds-5,
  .ngy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-ds-6,
  .ngx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-ds-6,
  .ngy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-ds-7,
  .ngx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-ds-7,
  .ngy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-ds-8,
  .ngx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-ds-8,
  .ngy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .nth-cols-dm-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-dm-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-dm-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-dm-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-dm-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-dm-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-dm-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-dm-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-dm-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-dm-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-dm-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dm-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-dm-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-dm-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-dm-0,
  .ngx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-dm-0,
  .ngy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-dm-1,
  .ngx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-dm-1,
  .ngy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-dm-2,
  .ngx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-dm-2,
  .ngy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-dm-3,
  .ngx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-dm-3,
  .ngy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-dm-4,
  .ngx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-dm-4,
  .ngy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-dm-5,
  .ngx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-dm-5,
  .ngy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-dm-6,
  .ngx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-dm-6,
  .ngy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-dm-7,
  .ngx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-dm-7,
  .ngy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-dm-8,
  .ngx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-dm-8,
  .ngy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .nth-cols-dl-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-dl-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-dl-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-dl-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-dl-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-dl-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-dl-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-dl-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-dl-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-dl-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-dl-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dl-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-dl-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-dl-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-dl-0,
  .ngx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-dl-0,
  .ngy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-dl-1,
  .ngx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-dl-1,
  .ngy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-dl-2,
  .ngx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-dl-2,
  .ngy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-dl-3,
  .ngx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-dl-3,
  .ngy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-dl-4,
  .ngx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-dl-4,
  .ngy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-dl-5,
  .ngx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-dl-5,
  .ngy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-dl-6,
  .ngx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-dl-6,
  .ngy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-dl-7,
  .ngx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-dl-7,
  .ngy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-dl-8,
  .ngx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-dl-8,
  .ngy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .nth-cols-dr-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-dr-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-dr-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-dr-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-dr-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-dr-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-dr-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-dr-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-dr-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-dr-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-dr-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-dr-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-dr-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-dr-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-dr-0,
  .ngx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-dr-0,
  .ngy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-dr-1,
  .ngx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-dr-1,
  .ngy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-dr-2,
  .ngx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-dr-2,
  .ngy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-dr-3,
  .ngx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-dr-3,
  .ngy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-dr-4,
  .ngx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-dr-4,
  .ngy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-dr-5,
  .ngx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-dr-5,
  .ngy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-dr-6,
  .ngx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-dr-6,
  .ngy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-dr-7,
  .ngx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-dr-7,
  .ngy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-dr-8,
  .ngx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-dr-8,
  .ngy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .nth-cols-fl-1 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1);
  }
  .nth-cols-fl-1 .box:nth-child(1n) {
    margin-right: 0;
  }
  .nth-cols-fl-1 .box:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-2 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2);
  }
  .nth-cols-fl-2 .box:nth-child(2n) {
    margin-right: 0;
  }
  .nth-cols-fl-2 .box:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-3 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3);
  }
  .nth-cols-fl-3 .box:nth-child(3n) {
    margin-right: 0;
  }
  .nth-cols-fl-3 .box:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-4 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4);
  }
  .nth-cols-fl-4 .box:nth-child(4n) {
    margin-right: 0;
  }
  .nth-cols-fl-4 .box:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-5 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5);
  }
  .nth-cols-fl-5 .box:nth-child(5n) {
    margin-right: 0;
  }
  .nth-cols-fl-5 .box:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .nth-cols-fl-6 .box {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6);
  }
  .nth-cols-fl-6 .box:nth-child(6n) {
    margin-right: 0;
  }
  .nth-cols-fl-6 .box:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .ng-fl-0,
  .ngx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .ng-fl-0,
  .ngy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .ng-fl-1,
  .ngx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .ng-fl-1,
  .ngy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .ng-fl-2,
  .ngx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .ng-fl-2,
  .ngy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .ng-fl-3,
  .ngx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .ng-fl-3,
  .ngy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .ng-fl-4,
  .ngx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .ng-fl-4,
  .ngy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .ng-fl-5,
  .ngx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .ng-fl-5,
  .ngy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .ng-fl-6,
  .ngx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .ng-fl-6,
  .ngy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .ng-fl-7,
  .ngx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .ng-fl-7,
  .ngy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .ng-fl-8,
  .ngx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .ng-fl-8,
  .ngy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
.sns-cols {
  --bxi-gutter-x: 1.5rem;
  --bxi-gutter-y: 1.5rem;
  margin-bottom: calc(var(--bxi-gutter-y) * -1);
}
.sns-cols .sns_list {
  flex-direction: row;
  flex-wrap: wrap;
}
.sns-cols .sns_list__list {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-right: var(--bxi-gutter-x);
  margin-bottom: var(--bxi-gutter-y);
}

@media (min-width: 0px) {
  .sns-cols-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-0,
  .sgx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-0,
  .sgy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-1,
  .sgx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-1,
  .sgy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-2,
  .sgx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-2,
  .sgy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-3,
  .sgx-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-3,
  .sgy-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-4,
  .sgx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-4,
  .sgy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-5,
  .sgx-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-5,
  .sgy-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-6,
  .sgx-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-6,
  .sgy-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-7,
  .sgx-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-7,
  .sgy-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-8,
  .sgx-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-8,
  .sgy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .sns-cols-sm-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-sm-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-sm-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-sm-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-sm-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-sm-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-sm-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-sm-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-sm-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-sm-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-sm-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-sm-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-sm-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-sm-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-sm-0,
  .sgx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-sm-0,
  .sgy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-sm-1,
  .sgx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-sm-1,
  .sgy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-sm-2,
  .sgx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-sm-2,
  .sgy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-sm-3,
  .sgx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-sm-3,
  .sgy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-sm-4,
  .sgx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-sm-4,
  .sgy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-sm-5,
  .sgx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-sm-5,
  .sgy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-sm-6,
  .sgx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-sm-6,
  .sgy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-sm-7,
  .sgx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-sm-7,
  .sgy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-sm-8,
  .sgx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-sm-8,
  .sgy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .sns-cols-md-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-md-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-md-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-md-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-md-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-md-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-md-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-md-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-md-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-md-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-md-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-md-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-md-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-md-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-md-0,
  .sgx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-md-0,
  .sgy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-md-1,
  .sgx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-md-1,
  .sgy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-md-2,
  .sgx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-md-2,
  .sgy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-md-3,
  .sgx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-md-3,
  .sgy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-md-4,
  .sgx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-md-4,
  .sgy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-md-5,
  .sgx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-md-5,
  .sgy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-md-6,
  .sgx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-md-6,
  .sgy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-md-7,
  .sgx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-md-7,
  .sgy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-md-8,
  .sgx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-md-8,
  .sgy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .sns-cols-lg-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-lg-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-lg-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-lg-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-lg-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-lg-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-lg-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-lg-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-lg-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-lg-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-lg-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-lg-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-lg-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-lg-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-lg-0,
  .sgx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-lg-0,
  .sgy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-lg-1,
  .sgx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-lg-1,
  .sgy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-lg-2,
  .sgx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-lg-2,
  .sgy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-lg-3,
  .sgx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-lg-3,
  .sgy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-lg-4,
  .sgx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-lg-4,
  .sgy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-lg-5,
  .sgx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-lg-5,
  .sgy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-lg-6,
  .sgx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-lg-6,
  .sgy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-lg-7,
  .sgx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-lg-7,
  .sgy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-lg-8,
  .sgx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-lg-8,
  .sgy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .sns-cols-xl-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-xl-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-xl-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-xl-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-xl-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-xl-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-xl-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-xl-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-xl-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-xl-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-xl-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-xl-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-xl-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-xl-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-xl-0,
  .sgx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-xl-0,
  .sgy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-xl-1,
  .sgx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-xl-1,
  .sgy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-xl-2,
  .sgx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-xl-2,
  .sgy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-xl-3,
  .sgx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-xl-3,
  .sgy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-xl-4,
  .sgx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-xl-4,
  .sgy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-xl-5,
  .sgx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-xl-5,
  .sgy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-xl-6,
  .sgx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-xl-6,
  .sgy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-xl-7,
  .sgx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-xl-7,
  .sgy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-xl-8,
  .sgx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-xl-8,
  .sgy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .sns-cols-ds-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-ds-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-ds-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-ds-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-ds-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-ds-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-ds-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-ds-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-ds-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-ds-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-ds-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-ds-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-ds-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-ds-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-ds-0,
  .sgx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-ds-0,
  .sgy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-ds-1,
  .sgx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-ds-1,
  .sgy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-ds-2,
  .sgx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-ds-2,
  .sgy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-ds-3,
  .sgx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-ds-3,
  .sgy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-ds-4,
  .sgx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-ds-4,
  .sgy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-ds-5,
  .sgx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-ds-5,
  .sgy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-ds-6,
  .sgx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-ds-6,
  .sgy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-ds-7,
  .sgx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-ds-7,
  .sgy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-ds-8,
  .sgx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-ds-8,
  .sgy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .sns-cols-dm-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-dm-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-dm-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-dm-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-dm-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-dm-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-dm-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-dm-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-dm-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-dm-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-dm-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dm-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-dm-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-dm-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-dm-0,
  .sgx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-dm-0,
  .sgy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-dm-1,
  .sgx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-dm-1,
  .sgy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-dm-2,
  .sgx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-dm-2,
  .sgy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-dm-3,
  .sgx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-dm-3,
  .sgy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-dm-4,
  .sgx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-dm-4,
  .sgy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-dm-5,
  .sgx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-dm-5,
  .sgy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-dm-6,
  .sgx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-dm-6,
  .sgy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-dm-7,
  .sgx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-dm-7,
  .sgy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-dm-8,
  .sgx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-dm-8,
  .sgy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .sns-cols-dl-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-dl-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-dl-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-dl-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-dl-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-dl-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-dl-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-dl-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-dl-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-dl-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-dl-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dl-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-dl-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-dl-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-dl-0,
  .sgx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-dl-0,
  .sgy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-dl-1,
  .sgx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-dl-1,
  .sgy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-dl-2,
  .sgx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-dl-2,
  .sgy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-dl-3,
  .sgx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-dl-3,
  .sgy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-dl-4,
  .sgx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-dl-4,
  .sgy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-dl-5,
  .sgx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-dl-5,
  .sgy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-dl-6,
  .sgx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-dl-6,
  .sgy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-dl-7,
  .sgx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-dl-7,
  .sgy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-dl-8,
  .sgx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-dl-8,
  .sgy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .sns-cols-dr-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-dr-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-dr-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-dr-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-dr-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-dr-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-dr-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-dr-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-dr-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-dr-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-dr-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-dr-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-dr-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-dr-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-dr-0,
  .sgx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-dr-0,
  .sgy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-dr-1,
  .sgx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-dr-1,
  .sgy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-dr-2,
  .sgx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-dr-2,
  .sgy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-dr-3,
  .sgx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-dr-3,
  .sgy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-dr-4,
  .sgx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-dr-4,
  .sgy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-dr-5,
  .sgx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-dr-5,
  .sgy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-dr-6,
  .sgx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-dr-6,
  .sgy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-dr-7,
  .sgx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-dr-7,
  .sgy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-dr-8,
  .sgx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-dr-8,
  .sgy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .sns-cols-fl-1 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 0) / 1) !important;
  }
  .sns-cols-fl-1 .sns_list__list:nth-child(1n) {
    margin-right: 0;
  }
  .sns-cols-fl-1 .sns_list__list:not(:nth-child(1n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-2 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 1) / 2) !important;
  }
  .sns-cols-fl-2 .sns_list__list:nth-child(2n) {
    margin-right: 0;
  }
  .sns-cols-fl-2 .sns_list__list:not(:nth-child(2n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-3 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 2) / 3) !important;
  }
  .sns-cols-fl-3 .sns_list__list:nth-child(3n) {
    margin-right: 0;
  }
  .sns-cols-fl-3 .sns_list__list:not(:nth-child(3n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-4 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 3) / 4) !important;
  }
  .sns-cols-fl-4 .sns_list__list:nth-child(4n) {
    margin-right: 0;
  }
  .sns-cols-fl-4 .sns_list__list:not(:nth-child(4n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-5 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 4) / 5) !important;
  }
  .sns-cols-fl-5 .sns_list__list:nth-child(5n) {
    margin-right: 0;
  }
  .sns-cols-fl-5 .sns_list__list:not(:nth-child(5n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sns-cols-fl-6 .sns_list__list {
    flex: 0 0 auto;
    width: calc((100% - var(--bxi-gutter-x) * 5) / 6) !important;
  }
  .sns-cols-fl-6 .sns_list__list:nth-child(6n) {
    margin-right: 0;
  }
  .sns-cols-fl-6 .sns_list__list:not(:nth-child(6n)) {
    margin-right: var(--bxi-gutter-x);
  }
  .sg-fl-0,
  .sgx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .sg-fl-0,
  .sgy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .sg-fl-1,
  .sgx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .sg-fl-1,
  .sgy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .sg-fl-2,
  .sgx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .sg-fl-2,
  .sgy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .sg-fl-3,
  .sgx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .sg-fl-3,
  .sgy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .sg-fl-4,
  .sgx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .sg-fl-4,
  .sgy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .sg-fl-5,
  .sgx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .sg-fl-5,
  .sgy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .sg-fl-6,
  .sgx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .sg-fl-6,
  .sgy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .sg-fl-7,
  .sgx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .sg-fl-7,
  .sgy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .sg-fl-8,
  .sgx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .sg-fl-8,
  .sgy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
.flexbox-media {
  --bxi-gutter-y: 1.5rem;
}
.flexbox-media .box {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: var(--bxi-gutter-y);
}

.flexbox-media .box {
  margin-bottom: var(--bxi-gutter-y);
}
.flexbox-media .box:last-child {
  margin-bottom: 0;
}

@media (min-width: 0px) {
  .flg-0,
  .flgx-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-0,
  .flgy-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-1,
  .flgx-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-1,
  .flgy-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-2,
  .flgx-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-2,
  .flgy-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-3,
  .flgx-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-3,
  .flgy-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-4,
  .flgx-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-4,
  .flgy-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-5,
  .flgx-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-5,
  .flgy-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-6,
  .flgx-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-6,
  .flgy-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-7,
  .flgx-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-7,
  .flgy-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-8,
  .flgx-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-8,
  .flgy-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .flg-sm-0,
  .flgx-sm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-sm-0,
  .flgy-sm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-sm-1,
  .flgx-sm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-sm-1,
  .flgy-sm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-sm-2,
  .flgx-sm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-sm-2,
  .flgy-sm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-sm-3,
  .flgx-sm-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-sm-3,
  .flgy-sm-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-sm-4,
  .flgx-sm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-sm-4,
  .flgy-sm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-sm-5,
  .flgx-sm-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-sm-5,
  .flgy-sm-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-sm-6,
  .flgx-sm-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-sm-6,
  .flgy-sm-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-sm-7,
  .flgx-sm-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-sm-7,
  .flgy-sm-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-sm-8,
  .flgx-sm-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-sm-8,
  .flgy-sm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 835px) {
  .flg-md-0,
  .flgx-md-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-md-0,
  .flgy-md-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-md-1,
  .flgx-md-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-md-1,
  .flgy-md-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-md-2,
  .flgx-md-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-md-2,
  .flgy-md-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-md-3,
  .flgx-md-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-md-3,
  .flgy-md-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-md-4,
  .flgx-md-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-md-4,
  .flgy-md-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-md-5,
  .flgx-md-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-md-5,
  .flgy-md-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-md-6,
  .flgx-md-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-md-6,
  .flgy-md-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-md-7,
  .flgx-md-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-md-7,
  .flgy-md-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-md-8,
  .flgx-md-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-md-8,
  .flgy-md-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1001px) {
  .flg-lg-0,
  .flgx-lg-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-lg-0,
  .flgy-lg-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-lg-1,
  .flgx-lg-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-lg-1,
  .flgy-lg-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-lg-2,
  .flgx-lg-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-lg-2,
  .flgy-lg-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-lg-3,
  .flgx-lg-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-lg-3,
  .flgy-lg-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-lg-4,
  .flgx-lg-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-lg-4,
  .flgy-lg-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-lg-5,
  .flgx-lg-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-lg-5,
  .flgy-lg-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-lg-6,
  .flgx-lg-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-lg-6,
  .flgy-lg-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-lg-7,
  .flgx-lg-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-lg-7,
  .flgy-lg-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-lg-8,
  .flgx-lg-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-lg-8,
  .flgy-lg-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .flg-xl-0,
  .flgx-xl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-xl-0,
  .flgy-xl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-xl-1,
  .flgx-xl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-xl-1,
  .flgy-xl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-xl-2,
  .flgx-xl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-xl-2,
  .flgy-xl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-xl-3,
  .flgx-xl-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-xl-3,
  .flgy-xl-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-xl-4,
  .flgx-xl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-xl-4,
  .flgy-xl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-xl-5,
  .flgx-xl-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-xl-5,
  .flgy-xl-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-xl-6,
  .flgx-xl-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-xl-6,
  .flgy-xl-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-xl-7,
  .flgx-xl-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-xl-7,
  .flgy-xl-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-xl-8,
  .flgx-xl-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-xl-8,
  .flgy-xl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1401px) {
  .flg-ds-0,
  .flgx-ds-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-ds-0,
  .flgy-ds-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-ds-1,
  .flgx-ds-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-ds-1,
  .flgy-ds-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-ds-2,
  .flgx-ds-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-ds-2,
  .flgy-ds-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-ds-3,
  .flgx-ds-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-ds-3,
  .flgy-ds-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-ds-4,
  .flgx-ds-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-ds-4,
  .flgy-ds-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-ds-5,
  .flgx-ds-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-ds-5,
  .flgy-ds-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-ds-6,
  .flgx-ds-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-ds-6,
  .flgy-ds-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-ds-7,
  .flgx-ds-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-ds-7,
  .flgy-ds-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-ds-8,
  .flgx-ds-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-ds-8,
  .flgy-ds-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1601px) {
  .flg-dm-0,
  .flgx-dm-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-dm-0,
  .flgy-dm-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-dm-1,
  .flgx-dm-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-dm-1,
  .flgy-dm-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-dm-2,
  .flgx-dm-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-dm-2,
  .flgy-dm-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-dm-3,
  .flgx-dm-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-dm-3,
  .flgy-dm-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-dm-4,
  .flgx-dm-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-dm-4,
  .flgy-dm-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-dm-5,
  .flgx-dm-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-dm-5,
  .flgy-dm-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-dm-6,
  .flgx-dm-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-dm-6,
  .flgy-dm-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-dm-7,
  .flgx-dm-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-dm-7,
  .flgy-dm-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-dm-8,
  .flgx-dm-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-dm-8,
  .flgy-dm-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1921px) {
  .flg-dl-0,
  .flgx-dl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-dl-0,
  .flgy-dl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-dl-1,
  .flgx-dl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-dl-1,
  .flgy-dl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-dl-2,
  .flgx-dl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-dl-2,
  .flgy-dl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-dl-3,
  .flgx-dl-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-dl-3,
  .flgy-dl-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-dl-4,
  .flgx-dl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-dl-4,
  .flgy-dl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-dl-5,
  .flgx-dl-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-dl-5,
  .flgy-dl-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-dl-6,
  .flgx-dl-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-dl-6,
  .flgy-dl-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-dl-7,
  .flgx-dl-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-dl-7,
  .flgy-dl-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-dl-8,
  .flgx-dl-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-dl-8,
  .flgy-dl-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 1201px) {
  .flg-dr-0,
  .flgx-dr-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-dr-0,
  .flgy-dr-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-dr-1,
  .flgx-dr-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-dr-1,
  .flgy-dr-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-dr-2,
  .flgx-dr-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-dr-2,
  .flgy-dr-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-dr-3,
  .flgx-dr-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-dr-3,
  .flgy-dr-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-dr-4,
  .flgx-dr-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-dr-4,
  .flgy-dr-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-dr-5,
  .flgx-dr-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-dr-5,
  .flgy-dr-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-dr-6,
  .flgx-dr-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-dr-6,
  .flgy-dr-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-dr-7,
  .flgx-dr-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-dr-7,
  .flgy-dr-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-dr-8,
  .flgx-dr-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-dr-8,
  .flgy-dr-8 {
    --bxi-gutter-y: 6rem;
  }
}
@media (min-width: 641px) {
  .flg-fl-0,
  .flgx-fl-0 {
    --bxi-gutter-x: 0.01px;
  }
  .flg-fl-0,
  .flgy-fl-0 {
    --bxi-gutter-y: 0.01px;
  }
  .flg-fl-1,
  .flgx-fl-1 {
    --bxi-gutter-x: 0.25rem;
  }
  .flg-fl-1,
  .flgy-fl-1 {
    --bxi-gutter-y: 0.25rem;
  }
  .flg-fl-2,
  .flgx-fl-2 {
    --bxi-gutter-x: 0.5rem;
  }
  .flg-fl-2,
  .flgy-fl-2 {
    --bxi-gutter-y: 0.5rem;
  }
  .flg-fl-3,
  .flgx-fl-3 {
    --bxi-gutter-x: 1rem;
  }
  .flg-fl-3,
  .flgy-fl-3 {
    --bxi-gutter-y: 1rem;
  }
  .flg-fl-4,
  .flgx-fl-4 {
    --bxi-gutter-x: 1.5rem;
  }
  .flg-fl-4,
  .flgy-fl-4 {
    --bxi-gutter-y: 1.5rem;
  }
  .flg-fl-5,
  .flgx-fl-5 {
    --bxi-gutter-x: 3rem;
  }
  .flg-fl-5,
  .flgy-fl-5 {
    --bxi-gutter-y: 3rem;
  }
  .flg-fl-6,
  .flgx-fl-6 {
    --bxi-gutter-x: 4rem;
  }
  .flg-fl-6,
  .flgy-fl-6 {
    --bxi-gutter-y: 4rem;
  }
  .flg-fl-7,
  .flgx-fl-7 {
    --bxi-gutter-x: 5rem;
  }
  .flg-fl-7,
  .flgy-fl-7 {
    --bxi-gutter-y: 5rem;
  }
  .flg-fl-8,
  .flgx-fl-8 {
    --bxi-gutter-x: 6rem;
  }
  .flg-fl-8,
  .flgy-fl-8 {
    --bxi-gutter-y: 6rem;
  }
}
.m-blog .blog_list {
  border: none;
}
.m-blog .blog_list__list {
  display: block;
  border-bottom: none;
}
.m-blog .blog_list .blog_photo {
  width: 100%;
  padding: 0;
}
.m-blog .blog_list .blog_text {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.m-blog .blog_list .blog_text > h3 {
  margin-bottom: 0;
  font-size: 1rem;
}
.m-blog .blog_list .detail {
  margin-top: 0;
}

.m-blog--date_none .blog_date {
  display: none;
}
.m-blog--detail_none .detail {
  display: none;
}
.m-blog--photo_none .blog_photo {
  display: none;
}
.m-blog--style_01 .blog_list {
  position: relative;
}
.m-blog--style_01 .blog_list__list {
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
}
.m-blog--style_01 .blog_list > div {
  border-bottom: none;
}
.m-blog--style_01 .blog_photo {
  margin-bottom: 0.9375rem;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}
.m-blog--style_01 .blog_photo > a {
  position: relative;
  display: block;
}
.m-blog--style_01 .blog_photo > a:has(a) {
  display: block;
}
.m-blog--style_01 .blog_photo > a:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.m-blog--style_01 .blog_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.m-blog--style_01 .blog_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.m-blog--style_01 .blog_photo > a img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.m-blog--style_01 .next-arrow,
.m-blog--style_01 .prev-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background-color: #900008;
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
}
.m-blog--style_01 .next-arrow:before,
.m-blog--style_01 .prev-arrow:before {
  font: var(--fa-font-solid);
}
.m-blog--style_01 .next-arrow {
  right: 0;
}
.m-blog--style_01 .next-arrow:before {
  content: "\f061";
}
.m-blog--style_01 .prev-arrow {
  left: 0;
}
.m-blog--style_01 .prev-arrow:before {
  content: "\f060";
}
.m-blog--style_01 .slick-slide {
  margin: 0 0.9375rem;
}
.m-blog--style_02 .blog_list {
  max-height: 190px;
  overflow-y: scroll;
}
.m-blog--style_02 .blog_list::-webkit-scrollbar {
  width: 5px;
}
.m-blog--style_02 .blog_list::-webkit-scrollbar-track {
  background-color: transparent;
}
.m-blog--style_02 .blog_list::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border-radius: 5px;
}
.m-blog--style_02 .blog_list__list {
  margin-bottom: 1.5625rem;
  padding-bottom: 1.5625rem;
  border-bottom: 1px solid #900008;
}
.m-blog--style_02 .blog_list__list:last-child {
  margin-bottom: 0;
}
.m-blog--style_02 .blog_list .blog_date {
  flex: 0 0 25%;
  padding: 0 0.625rem;
  color: #111111;
}
@media (max-width: 640.98px) {
  .m-blog--style_02 .blog_list .blog_date {
    margin-bottom: 0.625rem;
  }
}
.m-blog--style_02 .blog_list .blog_text {
  display: flex;
}
@media (max-width: 640.98px) {
  .m-blog--style_02 .blog_list .blog_text {
    display: block;
  }
}
.m-blog--style_02 .blog_list .blog_text > h3 {
  flex: 1 0 0;
  padding: 0 0.625rem;
}
.m-blog--style_02 .blog_list .blog_text > h3 > a > span {
  color: #900008;
  text-decoration: underline;
}
.m-blog--style_03 .blog_list__list {
  display: flex;
  margin-bottom: 3.75rem;
  padding-bottom: 3.75rem;
  border-bottom: 1px solid #900008;
}
.m-blog--style_03 .blog_list__list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 1400.98px) {
  .m-blog--style_03 .blog_list__list {
    flex-direction: row;
  }
}
@media (max-width: 640.98px) {
  .m-blog--style_03 .blog_list__list {
    flex-direction: column;
  }
}
.m-blog--style_03 .blog_photo {
  flex: 0 0 30%;
  margin-right: 2.5rem;
}
@media (max-width: 640.98px) {
  .m-blog--style_03 .blog_photo {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 1.25rem;
  }
}
.m-blog--style_03 .blog_date {
  margin-bottom: 0.625rem;
  color: #111111 !important;
}
.m-blog--style_03 .blog_text .detail {
  line-height: 1.6;
}
.m-blog--style_03 .blog_text > h3 > a {
  display: block;
  margin-bottom: 0.625rem;
}
.m-blog--style_03 .blog_text > h3 > a > span {
  color: #900008;
  font-size: 1.25rem;
  line-height: 1.6;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
}
.btn:hover {
  opacity: 0.7;
}

.btn {
  padding: 1.25rem 0.625rem;
}
.btn--style_01 {
  color: #ffffff !important;
  background-color: #900008;
  border: 1px solid transparent;
  transition: 0.5s;
}
.btn--style_01:hover {
  transition: 0.5s;
}
.btn--style_02 {
  color: #900008 !important;
  background-color: #ffffff;
  border: 1px solid #900008;
  transition: 0.5s;
}
.btn--min_width {
  padding: 1.25rem 3.125rem;
}

.form_wrap.dl-company > dl:last-child > dt, .form_wrap.dl-news > dl:last-child > dt, .form_wrap.dl > dl:last-child > dt,
.form_wrap.dl-company > dl:last-child > dd,
.form_wrap.dl-news > dl:last-child > dd,
.form_wrap.dl > dl:last-child > dd {
  border-bottom: none;
}
.form_wrap.dl-company > dl > dt, .form_wrap.dl-news > dl > dt, .form_wrap.dl > dl > dt,
.form_wrap.dl-company > dl > dd,
.form_wrap.dl-news > dl > dd,
.form_wrap.dl > dl > dd {
  padding: 0;
  background-color: transparent;
  border: none;
}
.form_wrap.dl-company > dl > dt, .form_wrap.dl-news > dl > dt, .form_wrap.dl > dl > dt {
  justify-content: flex-start;
}

.dl-news {
  max-height: 200px;
  overflow-y: scroll;
}
.dl-news::-webkit-scrollbar {
  width: 5px;
}
.dl-news::-webkit-scrollbar-track {
  background-color: transparent;
}
.dl-news::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border-radius: 5px;
}
@media (max-width: 834.98px) {
  .dl-news > dl {
    flex-direction: column;
  }
}
@media (max-width: 834.98px) {
  .dl-news > dl > dt,
  .dl-news > dl > dd {
    width: 100% !important;
  }
}
.dl-news > dl > dt {
  color: #6c2816;
}
.dl-news--style_01 > dl {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid black;
}

@media (max-width: 640.98px) {
  .dl-company > dl {
    flex-direction: column;
  }
}
@media (max-width: 640.98px) {
  .dl-company > dl > dt,
  .dl-company > dl > dd {
    width: 100% !important;
  }
}

.dl-company--style_01.form_wrap > dl {
  border-top: 1px solid #f1f1f1;
}
.dl-company--style_01.form_wrap > dl:last-child {
  border-bottom: 1px solid #f1f1f1;
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl {
    margin-bottom: 1.25rem;
    border-top: 0;
  }
}
.dl-company--style_01.form_wrap > dl > dt {
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem !important;
  background-color: rgb(247, 247, 247) !important;
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl > dt {
    align-items: flex-start;
  }
}
.dl-company--style_01.form_wrap > dl > dd {
  padding: 1rem 1.25rem !important;
}
@media (max-width: 640.98px) {
  .dl-company--style_01.form_wrap > dl > dd {
    border-left: none !important;
  }
}

.dpdn .dpdn__lists {
  list-style: none;
}
.dpdn .dpdn__link {
  color: inherit;
  text-decoration: none;
}

.dpdn {
  position: relative;
}
@media (min-width: 1201px) {
  .dpdn__lists {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .dpdn__link:before {
    content: "\f105";
    display: inline-block;
    margin-right: 0.625rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .dpdn:hover .dpdn__lists {
    min-width: -moz-max-content;
    min-width: max-content;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
  }
}
.dpdn.is_checked .dpdn__lists {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
.dpdn.is_checked .dpdn__btn::before {
  transform: rotate(45deg);
}
.dpdn__lists {
  width: -moz-max-content;
  width: max-content;
  height: 0;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  position: absolute;
  top: 30px;
}
@media (max-width: 1200.98px) {
  .dpdn__lists {
    display: block;
    width: 100%;
    background-color: black;
    overflow: hidden;
    position: static;
    transition: all 0.5s ease;
  }
}
.dpdn__list {
  border-bottom: 1px solid #fff9ea;
}
@media (max-width: 1200.98px) {
  .dpdn__list:first-child {
    border-top: 1px solid #fff9ea;
  }
  .dpdn__list:last-child {
    border-bottom: none;
  }
}
.dpdn__btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200.98px) {
  .dpdn__btn {
    width: 89px;
    height: 89px;
    background-color: #fff9ea;
  }
  .dpdn__btn::before {
    content: "+";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 0.3s ease;
  }
}
.dpdn__link {
  display: block;
  padding: 1rem;
}
@media (max-width: 1200.98px) {
  .dpdn__link {
    padding: 2rem 2rem;
  }
}

.eyecatch {
  min-height: 300px;
  background-size: cover;
  background-position: 55% 60%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.eyecatch > article > h1, .eyecatch > article > p {
  font-size: calc(1.375rem + 1.5vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .eyecatch > article > h1, .eyecatch > article > p {
    font-size: 2.5rem;
  }
}

.eyecatch--on-image:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.eyecatch--on-image > article {
  width: 100%;
  padding: 0 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.eyecatch--on-image > article > h1, .eyecatch--on-image > article > p {
  color: black;
}
.eyecatch--sub-text > article > div {
  color: #900008;
}

.box-inner,
.image-wrapper {
  width: 100%;
}

.flexbox-image, .flexbox-txt-on-image, .flexbox-card, .flexbox-media {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  clear: both;
}
.flexbox-image div.box, .flexbox-txt-on-image div.box, .flexbox-card div.box, .flexbox-media div.box {
  box-sizing: border-box;
  overflow: hidden;
}

.flexbox-media .box,
.flexbox-media .box-inner {
  width: 100%;
}
.flexbox-media article {
  display: flex;
  align-items: center;
}
@media (max-width: 640.98px) {
  .flexbox-media article {
    flex-direction: column !important;
  }
}
.flexbox-media article > h3 {
  display: none;
}
.flexbox-media article > div {
  flex: 1 0 0;
}
@media (max-width: 834.98px) {
  .flexbox-media article > div {
    width: 100%;
  }
}
.flexbox-media article > a {
  flex: 0 0 30%;
}
@media (max-width: 834.98px) {
  .flexbox-media article > a {
    width: 100%;
  }
}
.flexbox-media .image-wrapper {
  flex: 0 0 30%;
}
@media (max-width: 834.98px) {
  .flexbox-media .image-wrapper {
    width: 100%;
  }
}
@media (max-width: 640.98px) {
  .flexbox-media .odd article {
    flex-direction: column !important;
  }
}
.flexbox-media .even article {
  flex-direction: row-reverse !important;
}
@media (max-width: 640.98px) {
  .flexbox-media .even article {
    flex-direction: column !important;
  }
}

.flexbox-media--reverse .box article {
  flex-direction: row-reverse;
}
.flexbox-media--style_01 .image-wrapper {
  margin-right: 2.5rem;
}
@media (max-width: 640.98px) {
  .flexbox-media--style_01 .image-wrapper {
    max-width: 300px;
    margin-right: auto;
    margin-bottom: 1.25rem;
    margin-left: auto;
  }
}
.flexbox-media--style_01 article > div {
  line-height: 2;
}
.flexbox-media--style_02 .image-wrapper {
  flex: 0 0 40%;
  margin-right: 3.75rem;
}
@media (max-width: 640.98px) {
  .flexbox-media--style_02 .image-wrapper {
    max-width: 300px;
    margin-right: auto;
    margin-bottom: 1.25rem;
    margin-left: auto;
  }
}
.flexbox-media--style_02 article > div {
  line-height: 2;
}
.flexbox-media--1_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--1_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--1_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-media--1_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--1_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--4_3 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--4_3 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--4_3 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-media--4_3 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--4_3 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--3_2 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--3_2 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--3_2 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-media--3_2 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--3_2 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--16_9 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--16_9 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--16_9 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-media--16_9 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--16_9 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-media--2_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-media--2_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-media--2_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-media--2_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-media--2_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flexbox-card .box article > h3 {
  display: none;
}

.flexbox-card--h3_show .box article > h3 {
  display: block;
}
@media (max-width: 1000.98px) {
  .flexbox-card--style_01 {
    justify-content: center;
  }
}
@media (max-width: 640.98px) {
  .flexbox-card--style_01 .box {
    width: 100%;
    max-width: 300px;
    margin-right: auto !important;
    margin-left: auto;
  }
}
.flexbox-card--style_01 .box article > div {
  font-weight: 600;
  text-align: center;
}
.flexbox-card--style_01 .image-wrapper {
  height: auto;
  margin-bottom: 0.625rem;
  position: relative;
  display: block;
  border: 1px solid #900008;
  border-radius: 100%;
  overflow: hidden;
}
.flexbox-card--style_01 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--style_01 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-card--style_01 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--style_01 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--style_01 .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.flexbox-card--style_02 .box > div {
  line-height: 2;
}
.flexbox-card--style_02 .box > div > h3 {
  margin-bottom: 0.625rem;
  padding: 0.3125rem 0.625rem;
  color: white;
  background-color: #900008;
}
@media (max-width: 640.98px) {
  .flexbox-card--style_03 .box {
    width: 100%;
    max-width: 300px;
    margin-right: auto !important;
    margin-left: auto;
  }
}
.flexbox-card--style_03 .box article > div {
  font-weight: 600;
  text-align: center;
}
.flexbox-card--style_03 .image-wrapper {
  margin-bottom: 0.625rem;
  position: relative;
  display: block;
  border: 1px solid #eeeeee;
}
.flexbox-card--style_03 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--style_03 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-card--style_03 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--style_03 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--style_03 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--style_04 .box {
  padding: 1.25rem;
  background-color: #f7dbdc;
}
.flexbox-card--style_04 .box > div {
  line-height: 2;
}
.flexbox-card--style_04 .box > div h3 {
  position: relative;
  margin-bottom: 2em;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background: white;
}
.flexbox-card--style_04 .box > div h3:before,
.flexbox-card--style_04 .box > div h3:after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: white;
}
.flexbox-card--style_04 .box > div h3:before {
  bottom: -10px;
  left: 30px;
  width: 20px;
  height: 20px;
}
.flexbox-card--style_04 .box > div h3:after {
  bottom: -20px;
  left: 50px;
  width: 10px;
  height: 10px;
}
.flexbox-card--style_05 .box article > div {
  line-height: 2;
}
.flexbox-card--style_05 .box article > div > h3 {
  margin-bottom: 0.625rem;
  padding: 1rem 1.5rem;
  color: #6c2816;
  background-color: #f7dbdc;
}
.flexbox-card--style_05 .image-wrapper {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
}
.flexbox-card--1_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--1_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--1_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-card--1_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--1_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--4_3 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--4_3 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--4_3 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-card--4_3 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--4_3 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--3_2 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--3_2 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--3_2 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-card--3_2 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--3_2 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--16_9 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--16_9 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--16_9 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-card--16_9 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--16_9 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-card--2_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-card--2_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-card--2_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-card--2_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-card--2_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flexbox-txt-on-image .box,
.flexbox-txt-on-image .box-inner {
  width: 100%;
}
.flexbox-txt-on-image .box article {
  position: relative;
  z-index: 0;
}
.flexbox-txt-on-image .box article > h3 {
  display: none;
}
.flexbox-txt-on-image .box article > div {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.flexbox-txt-on-image--h3_show .box article > h3 {
  display: block;
}
@media (max-width: 640.98px) {
  .flexbox-txt-on-image--style_01 {
    flex-direction: column !important;
  }
}
.flexbox-txt-on-image--1_1 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--1_1 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--1_1 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-txt-on-image--1_1 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--1_1 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--4_3 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--4_3 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--4_3 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-txt-on-image--4_3 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--4_3 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--3_2 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--3_2 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--3_2 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-txt-on-image--3_2 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--3_2 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--16_9 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--16_9 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--16_9 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-txt-on-image--16_9 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--16_9 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-txt-on-image--2_1 .box > article > a {
  position: relative;
  display: block;
}
.flexbox-txt-on-image--2_1 .box > article > a:has(a) {
  display: block;
}
.flexbox-txt-on-image--2_1 .box > article > a:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-txt-on-image--2_1 .box > article > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-txt-on-image--2_1 .box > article > a img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flexbox-image .box,
.flexbox-image .box-inner {
  width: 100%;
}

.flexbox-image--style_01 .box {
  padding: 1rem;
}
.flexbox-image--1_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--1_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--1_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.flexbox-image--1_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--1_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--4_3 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--4_3 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--4_3 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.flexbox-image--4_3 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--4_3 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--3_2 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--3_2 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--3_2 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.flexbox-image--3_2 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--3_2 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--16_9 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--16_9 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--16_9 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.flexbox-image--16_9 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--16_9 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.flexbox-image--2_1 .image-wrapper {
  position: relative;
  display: block;
}
.flexbox-image--2_1 .image-wrapper:has(a) {
  display: block;
}
.flexbox-image--2_1 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.flexbox-image--2_1 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.flexbox-image--2_1 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.form.form_wrap dl:last-of-type > dt, .form.form_wrap dl:last-of-type > dd {
  border: none;
}
.form.form_wrap dt,
.form.form_wrap dd {
  border: none;
  background-color: transparent;
}
.form.form_wrap dt {
  flex-direction: row;
  justify-content: flex-start;
  background-color: transparent;
}
.form.form_wrap dd input {
  padding: 10px 5px !important;
}

.form.form_wrap dl {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #eeeeee;
}
.form.form_wrap dl:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#TRANS_ANNOT {
  color: rgb(255, 97, 97);
}

h2.mail.title {
  display: none;
}

section div.form_wrap.error {
  background-color: #ff3838;
}
section div.form_wrap.error p {
  color: white;
}

.submit {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 0;
}
@media (max-width: 640.98px) {
  .submit {
    flex-direction: column;
    align-items: center;
  }
}
.submit button {
  width: 100%;
  flex: 1 0 0;
  margin-top: 0;
}
.submit button:first-child {
  margin-right: 1.25rem;
}
@media (max-width: 640.98px) {
  .submit button:first-child {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}

.bt_confirm,
.bt_back,
.bt_send {
  display: block;
  width: auto;
  height: auto;
  max-width: 300px;
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
  padding: 1rem 1.5rem;
  background: none;
  border-radius: 100vh;
  border: 1px solid #900008;
  text-indent: 0;
}

.hamburger {
  display: none;
}
@media (max-width: 1200.98px) {
  .hamburger {
    display: inline-block;
    z-index: 1100;
  }
}

.hamburger {
  width: 50px;
  height: 25px;
  position: fixed;
  top: 26px;
  right: 26px;
}
.hamburger__line {
  width: 100%;
  height: 0.8px;
  border-radius: 1px;
  background-color: #ffffff;
  position: absolute;
  left: 0;
  transition: all 0.5s ease;
}
.hamburger .line1 {
  top: 0;
}
.hamburger .line2 {
  top: 12px;
}
.hamburger .line3 {
  bottom: 0;
}
.is_open .hamburger__line {
  background-color: #900008;
}
.is_open .hamburger .line1 {
  transform: translateY(12px) rotate(-45deg);
}
.is_open .hamburger .line2 {
  opacity: 0;
  visibility: hidden;
}
.is_open .hamburger .line3 {
  transform: translateY(-12px) rotate(45deg);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 400;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.3125rem + 0.75vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 400;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 400;
}

.h2 {
  margin-bottom: 1.875rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #900008;
}
.h3 h3 {
  margin-bottom: 1.875rem;
  padding: 0.3125rem 0.625rem;
  color: white;
  background-color: #900008;
}
.t-map__wrapper {
  min-height: 400px;
}
.t-map--1_1 t-map__wrapper {
  position: relative;
  display: block;
}
.t-map--1_1 t-map__wrapper:has(a) {
  display: block;
}
.t-map--1_1 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.t-map--1_1 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.t-map--1_1 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.t-map--4_3 t-map__wrapper {
  position: relative;
  display: block;
}
.t-map--4_3 t-map__wrapper:has(a) {
  display: block;
}
.t-map--4_3 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.t-map--4_3 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.t-map--4_3 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.t-map--3_2 t-map__wrapper {
  position: relative;
  display: block;
}
.t-map--3_2 t-map__wrapper:has(a) {
  display: block;
}
.t-map--3_2 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.t-map--3_2 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.t-map--3_2 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.t-map--16_9 t-map__wrapper {
  position: relative;
  display: block;
}
.t-map--16_9 t-map__wrapper:has(a) {
  display: block;
}
.t-map--16_9 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.t-map--16_9 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.t-map--16_9 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.t-map--2_1 t-map__wrapper {
  position: relative;
  display: block;
}
.t-map--2_1 t-map__wrapper:has(a) {
  display: block;
}
.t-map--2_1 t-map__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.t-map--2_1 t-map__wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.t-map--2_1 t-map__wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.mv {
  padding-top: 6.625rem;
  padding-bottom: 12.5rem;
  background-color: #f7f7f7;
}
@media (max-width: 1200.98px) {
  .mv {
    padding-bottom: 0;
  }
}
@media (max-width: 1200.98px) {
  .mv {
    padding-top: 5.5rem;
  }
}
.mv__wrapper {
  position: relative;
  z-index: 0;
  height: 75vh;
}
.mv .title {
  width: 100%;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
  font-size: calc(1.425rem + 2.1vw);
  line-height: 1.875;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (min-width: 1200px) {
  .mv .title {
    font-size: 3rem;
  }
}
@media (max-width: 1200.98px) {
  .mv .title {
    width: auto;
    font-size: calc(1.325rem + 0.9vw);
    text-align: left;
    top: 15%;
    left: 5%;
    transform: translate(5%, -15%);
  }
}
@media (max-width: 1200.98px) and (min-width: 1200px) {
  .mv .title {
    font-size: 2rem;
  }
}
@media (max-width: 640.98px) {
  .mv .title {
    font-size: calc(1.275rem + 0.3vw);
    left: 0;
    transform: translate(0, -15%);
  }
}
@media (max-width: 640.98px) and (min-width: 1200px) {
  .mv .title {
    font-size: 1.5rem;
  }
}
.mv .title__main {
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(144, 0, 8, 0.3), 0px 0px 4px rgba(144, 0, 8, 0.3);
}
.mv .m-slider {
  max-width: 91.6666666667%;
}
@media (max-width: 1200.98px) {
  .mv .m-slider {
    max-width: 100%;
  }
}
.mv .m-slider:before {
  content: "";
  display: block;
  width: 100%;
  height: 110.7692307692%;
  background-color: #f7dbdc;
  position: absolute;
  right: -9.0909090909%;
  z-index: -1;
}
@media (max-width: 1200.98px) {
  .mv .m-slider:before {
    content: none;
  }
}
.mv .m-slider__list:not(:first-child) {
  display: none;
}
.slick-initialized .m-slider__list:not(:first-child) {
  display: block;
}

.mv .m-slider__list img {
  -o-object-fit: contain;
     object-fit: contain;
}
.mv .m-slider__sourse {
  width: 100%;
  height: 100% !important;
}
.mv .m-slider__picture {
  width: 100%;
  height: 100% !important;
}
.mv .m-slider__img {
  width: 100%;
  height: 100% !important;
}

@media (max-width: 1200.98px) {
  .m-slider,
  .m-slider__list,
  .slick-list,
  .slick-track {
    display: block;
    width: 100%;
    height: 100% !important;
  }
}

@media (max-width: 1200.98px) {
  .nav {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    transition-property: opacity, background-color, visibility, transform;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    z-index: 1000;
  }
}
.nav .nav__lists {
  list-style: none;
}
.nav .nav__link {
  color: inherit;
  text-decoration: none;
}
.is_open::-webkit-scrollbar {
  width: 0px;
}
@media (max-width: 1200.98px) {
  .is_open .nav {
    opacity: 1;
  }
}

@media (max-width: 1200.98px) {
  .nav {
    background-color: #f7dbdc;
  }
}
@media (max-width: 1200.98px) {
  .nav {
    opacity: 1;
    visibility: visible;
    transform: translate(150%, 0);
    transition-property: opacity, background-color, visibility, transform;
    transition-duration: 0.5s;
    transition-timing-function: ease;
  }
}
.nav__lists {
  display: flex;
}
@media (max-width: 1200.98px) {
  .nav__lists {
    display: block;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 5rem;
  }
}
.nav__list {
  text-align: center;
  position: relative;
}
.nav__list:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: white;
  position: absolute;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: 0.2s ease-out;
}
.nav__list:hover:before {
  transform: scale(1, 1);
}
@media (max-width: 1200.98px) {
  .nav__list {
    margin-right: 0 !important;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dotted white;
    position: static;
  }
  .nav__list:before {
    content: none;
  }
}
@media (max-width: 1200.98px) {
  .nav__link {
    display: inline-block;
  }
}
@media (max-width: 1200.98px) {
  .is_open .nav {
    transform: translate(0, 0);
  }
}

.breadcrumb {
  margin-top: 1.875rem;
  margin-bottom: 3.75rem;
}
.breadcrumb li {
  margin-right: 0.625rem;
}
.breadcrumb li:last-child {
  margin-right: 0;
}
.breadcrumb li, .breadcrumb a {
  color: #111111 !important;
  font-size: 0.875rem;
  text-decoration: none;
}
.breadcrumb .pankuzu {
  display: flex;
}

.policy h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.policy p {
  margin-bottom: 3rem;
}

.sns .sns_list {
  border: none;
}
.sns .sns_list__list {
  display: block;
  border-bottom: none;
  border: none;
}
.sns .sns_list .sns_photo {
  width: 100%;
  padding: 0;
}
.sns .sns_list .sns_photo a {
  display: block;
}
.sns .sns_list .sns_text {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.sns .sns_list .sns_text .caption {
  word-break: break-all;
}
.sns .sns_list .sns_text ul {
  display: none;
}

.sns--image-only .sns_text {
  display: none;
}
.sns--style_01 .sns_photo img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.sns--style_01 .slick-slide {
  margin: 0 0.625rem;
}
.sns--1_1 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--1_1 .sns_photo > a:has(a) {
  display: block;
}
.sns--1_1 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.sns--1_1 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--1_1 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--4_3 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--4_3 .sns_photo > a:has(a) {
  display: block;
}
.sns--4_3 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 75%;
  text-align: center;
}
.sns--4_3 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--4_3 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--3_2 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--3_2 .sns_photo > a:has(a) {
  display: block;
}
.sns--3_2 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
  text-align: center;
}
.sns--3_2 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--3_2 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--16_9 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--16_9 .sns_photo > a:has(a) {
  display: block;
}
.sns--16_9 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  text-align: center;
}
.sns--16_9 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--16_9 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}
.sns--2_1 .sns_photo > a {
  position: relative;
  display: block;
}
.sns--2_1 .sns_photo > a:has(a) {
  display: block;
}
.sns--2_1 .sns_photo > a:before {
  content: "";
  display: block;
  padding-top: 50%;
  text-align: center;
}
.sns--2_1 .sns_photo > a > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.sns--2_1 .sns_photo > a img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 640.98px) {
  .tbl--style_01 tbody {
    font-size: 0.625rem;
  }
}
.tbl--style_01 tr:first-child {
  background-color: #6c2816;
}
.tbl--style_01 tr:first-child > td > div {
  color: #ffffff;
}

.ul-number li:last-child, .ul-icon li:last-child, .ul-links li:last-child, .ul-tag li:last-child, .ul li:last-child {
  margin-right: 0;
}

.ul--style_01 li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  color: white;
  background-color: #6c2816;
  border-radius: 10px;
}

.ul-tag {
  display: flex;
  flex-wrap: wrap;
  display: flex;
  flex-wrap: wrap;
}
.ul-tag ul {
  display: flex;
  flex-wrap: wrap;
}
.ul-tag ul > li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(225, 242, 255);
}
.ul-tag > li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  background-color: rgb(225, 242, 255);
}
.ul-tag > li > a {
  padding: 0.5rem 1rem;
}

.ul-links ul {
  display: flex;
  flex-wrap: wrap;
}
.ul-links ul > li {
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  background-color: #6c2816;
}
.ul-links ul > li > a {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: color(white);
}
.ul-links ul > li > a:after {
  content: "\f105";
  display: inline-block;
  margin-left: 0.625rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ul-icon ul > li {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}
.ul-icon ul > li:before {
  content: "\f1b9";
  margin-right: 0.3125rem;
  color: #6c2816;
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ul-number ul {
  counter-reset: number;
}
.ul-number ul > li {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding-left: 0.5rem 1rem;
  position: relative;
}
.ul-number ul > li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: white;
  background-color: color(themes);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.header__inner {
  display: flex;
  width: 100%;
  background-color: #900008;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
@media (max-width: 1200.98px) {
  .header__inner {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
}
.header .nav {
  margin-left: auto;
  margin-right: 0.9375rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.header .nav__list {
  margin-right: 0.9375rem;
}
.header .nav__list:last-child {
  margin-right: 0;
}
.header .nav__link {
  color: #ffffff;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
}
@media (max-width: 1400.98px) {
  .header .nav__link {
    font-size: 0.75rem;
  }
}
@media (max-width: 1200.98px) {
  .header .nav__link {
    color: #900008;
    font-size: 1rem;
  }
}
.header .contact {
  display: flex;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media (max-width: 1200.98px) {
  .header .contact {
    align-items: stretch;
    width: 100%;
    border-top: 1px solid #900008;
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
@media (max-width: 1200.98px) {
  .header .contact.is_fadeout {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
}
.header .tel,
.header .shop {
  display: flex;
}
@media (max-width: 1200.98px) {
  .header .tel,
  .header .shop {
    flex: 1 0 0;
    height: auto;
    padding: 0.625rem;
  }
}
@media (max-width: 640.98px) {
  .header .tel__text,
  .header .shop__text {
    display: none;
  }
}
.header .tel {
  align-items: center;
  margin-right: 1.5625rem;
}
@media (max-width: 1200.98px) {
  .header .tel {
    justify-content: center;
    margin-right: 0;
    background-color: #900008;
  }
}
.header .tel * {
  color: #ffffff;
  font-size: 1.125rem;
}
.header .tel i {
  margin-right: 0.3125rem;
  font-size: 1rem;
}
.header .shop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1.25rem 0.9375rem;
  background-color: #ffffff;
}
.header .shop * {
  color: #900008;
}
.header .shop i {
  font-size: 1.375rem;
}
.header .shop__text {
  font-size: 0.8125rem;
}

header .pr {
  display: block;
  opacity: 0;
  animation: pr-fade-in 0.2s ease 0.1s forwards;
}
@media (max-width: 1200.98px) {
  header .pr {
    opacity: 1;
    animation: none;
  }
}
@keyframes pr-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
header .pr__img {
  position: absolute;
  top: 22.619047619%;
  right: 40px;
  z-index: 0;
}
@media (max-width: 1200.98px) {
  header .pr__img {
    width: auto;
    height: 50vh !important;
    top: auto;
    bottom: 0;
  }
}
@media (max-width: 640.98px) {
  header .pr__img {
    width: auto;
    height: 40vh !important;
    top: auto;
    bottom: 0;
  }
}
header .pr-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background-color: #900008;
  border-radius: 100%;
  position: absolute;
  top: 79.7619047619%;
  right: 10px;
  z-index: 1;
}
@media (max-width: 1200.98px) {
  header .pr-text {
    display: none;
  }
}
header .pr-text * {
  color: #ffffff;
}
header .pr-text__main {
  margin-bottom: 0.9375rem;
  font-size: 1.375rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
}
header .pr-text__sub {
  font-size: 0.875rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
}
@media (max-width: 1200.98px) {
  header .pr-text__sub {
    font-size: 1.125rem;
  }
}
header .clone.pr {
  display: none;
}
@media (max-width: 1200.98px) {
  header .clone.pr {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: static;
  }
}
@media (max-width: 1200.98px) {
  header .clone.pr .pr__img {
    display: none;
  }
}
header .clone.pr .pr-text {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: 0;
  position: static;
}
@media (max-width: 1200.98px) {
  header .clone.pr .pr-text {
    margin-bottom: 0;
  }
}
@media (max-width: 1200.98px) {
  header .clone.pr .pr-text__main {
    margin-right: 1.25rem;
    margin-bottom: 0;
    font-size: 1.25rem;
  }
}
@media (max-width: 1200.98px) {
  header .clone.pr .pr-text__sub {
    font-size: 0.875rem;
  }
}
header .fixed {
  display: flex !important;
  position: fixed;
  top: auto;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 10;
}
@media (max-width: 1200.98px) {
  header .fixed {
    width: 120px;
    height: 120px;
    bottom: 5.625rem;
  }
}
@media (max-width: 1200.98px) {
  header .fixed .pr-text__main {
    margin-bottom: 0.3125rem;
    font-size: 1rem;
  }
}
@media (max-width: 1200.98px) {
  header .fixed .pr-text__sub {
    font-size: 0.625rem;
  }
}

.footer {
  background-color: #900008;
}
.footer__inner {
  display: flex;
  align-items: center;
  max-width: 1706.6666666667px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media (max-width: 834.98px) {
  .footer__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 1200.98px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1200.98px) {
  .footer .logo {
    margin-bottom: 1.25rem;
  }
}
.footer .f-nav {
  margin-left: auto;
}
@media (max-width: 1200.98px) {
  .footer .f-nav {
    margin-left: 0;
  }
}
.footer .f-nav__lists {
  display: flex;
}
@media (max-width: 834.98px) {
  .footer .f-nav__lists {
    display: block;
  }
}
.footer .f-nav__list {
  margin-right: 0.9375rem;
}
@media (max-width: 834.98px) {
  .footer .f-nav__list {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.footer .f-nav__link {
  color: #ffffff;
  font-size: 0.75rem;
}
.footer .copyright {
  padding: 1.25rem;
  background-color: #ffffff;
  color: #111111;
  font-size: 0.875rem;
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
}

.concept {
  padding-bottom: 10.625rem;
  position: relative;
  z-index: 0;
}
.concept:before {
  content: "";
  display: block;
  width: 88.8888888889%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 1000.98px) {
  .concept {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.concept__inner {
  display: flex;
  max-width: 1706.6666666667px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  min-height: 660px;
  position: relative;
  z-index: 1;
}
@media (max-width: 834.98px) {
  .concept__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 1000.98px) {
  .concept__inner {
    display: block;
  }
}
.concept__title {
  margin-bottom: 2.5rem;
}
.concept__title article {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 1000.98px) {
  .concept__title article {
    align-items: center;
  }
}
.concept__title article > h2 {
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
}
.concept__body {
  margin-bottom: 3.75rem;
}
@media (max-width: 640.98px) {
  .concept__body {
    margin-bottom: 2.5rem;
  }
}
.concept__body div {
  font-size: 0.875rem;
  line-height: 3;
}
@media (max-width: 1000.98px) {
  .concept__body div {
    text-align: center !important;
  }
}
@media (max-width: 640.98px) {
  .concept__body div {
    text-align: left !important;
  }
}
.concept__wrapper {
  flex: 0 0 50%;
  padding-right: 2.5rem;
  position: relative;
}
@media (max-width: 1000.98px) {
  .concept__wrapper {
    margin-bottom: 2.5rem;
    padding: 0;
  }
}
.concept__btn {
  margin-top: -20px;
  margin-left: -20px;
}
@media (max-width: 640.98px) {
  .concept__btn {
    display: block !important;
  }
}
.concept__btn .box {
  padding-top: 20px;
  padding-left: 20px;
  flex: 1 1 50%;
  max-width: 230px;
}
@media (max-width: 1000.98px) {
  .concept__btn .box {
    max-width: 100%;
  }
}
.concept__btn .btn {
  display: block;
}
.concept__img {
  flex: 1 0 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 1000.98px) {
  .concept__img {
    align-items: center;
  }
}
.concept__img .box {
  flex: 1 1 calc((100% - 1.25rem) / 2);
  position: absolute;
}
@media (max-width: 1000.98px) {
  .concept__img .box {
    position: static;
    width: 100%;
  }
}
.concept__img .box:first-child {
  width: 48.5294117647%;
  z-index: 2;
  top: 37.5%;
}
@media (max-width: 1000.98px) {
  .concept__img .box:first-child {
    margin-right: 1.25rem;
  }
}
.concept__img .box:last-child {
  width: 63.2352941176%;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1000.98px) {
  .concept__img .box .image-wrapper {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
}

.efficacy {
  margin-bottom: 8.125rem;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.efficacy__inner {
  max-width: 1706.6666666667px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .efficacy__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.efficacy__conts {
  margin-bottom: 2.5rem;
}
@media (max-width: 640.98px) {
  .efficacy__conts {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 1200.98px) {
  .efficacy__conts {
    justify-content: center;
  }
}
.efficacy__img {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  position: absolute;
}

.video__inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .video__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.video__title {
  max-width: 1173.3333333333px;
  margin-right: auto;
  margin-bottom: 3.125rem;
  margin-left: auto;
  padding: 1.25rem 1.25rem;
  background-color: #900008;
  border-radius: 10px;
}
.video__title h2 {
  font-size: calc(1.3125rem + 0.75vw);
  color: #ffffff;
}
@media (min-width: 1200px) {
  .video__title h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 640.98px) {
  .video__title h2 {
    text-align: left !important;
  }
}
.video__conts {
  margin-bottom: 6.25rem;
}
.video__conts .box > div {
  position: relative;
  display: block;
}
.video__conts .box > div:has(a) {
  display: block;
}
.video__conts .box > div:before {
  content: "";
  display: block;
  padding-top: 62.5%;
  text-align: center;
}
.video__conts .box > div > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.video__conts .box > div img {
  -o-object-fit: contain;
     object-fit: contain;
}

.step__title,
.usage__title,
.faq__title,
.b-blog__title {
  margin-bottom: 4.375rem;
}
.step__title article,
.usage__title article,
.faq__title article,
.b-blog__title article {
  display: flex;
  flex-direction: column-reverse !important;
  position: relative;
}
.step__title article:after,
.usage__title article:after,
.faq__title article:after,
.b-blog__title article:after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.step__title article > h2,
.usage__title article > h2,
.faq__title article > h2,
.b-blog__title article > h2 {
  margin-bottom: 0.625rem;
  font-size: calc(1.375rem + 1.5vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .step__title article > h2,
  .usage__title article > h2,
  .faq__title article > h2,
  .b-blog__title article > h2 {
    font-size: 2.5rem;
  }
}
.step__title article > div,
.usage__title article > div,
.faq__title article > div,
.b-blog__title article > div {
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
}

.step {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 834.98px) {
  .step {
    padding-bottom: 0;
  }
}
.step__inner {
  max-width: 1706.6666666667px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .step__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.step__title * {
  color: #ffffff;
}
.step__title article:after {
  background-color: #ffffff;
}
.step__conts-01 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.5rem;
  border: 1px solid #ffffff;
}
.step__conts-01 .box {
  flex: 1 0 0;
  padding: 1.875rem;
  text-align: center;
  overflow: visible !important;
}
.step__conts-01 .box:first-child {
  background-color: #ffffff;
  position: relative;
}
.step__conts-01 .box:first-child > div {
  color: #900008;
}
.step__conts-01 .box:first-child:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 45px 0 45px 20px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, 0);
}
.step__conts-01 .box:last-child > div {
  color: #ffffff;
}
.step__conts-01 .box > div {
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
}
.step__conts-02 .box {
  padding: 1.875rem;
  position: relative;
  overflow: visible !important;
}
@media (max-width: 834.98px) {
  .step__conts-02 .box {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.step__conts-02 .box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 85px 0 85px 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  z-index: 1;
}
@media (max-width: 834.98px) {
  .step__conts-02 .box:after {
    border-width: 20px 85px 0 85px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }
}
.step__conts-02 .box:last-child:after {
  content: none;
}
.step__conts-02 .box:nth-child(1) *, .step__conts-02 .box:nth-child(2) * {
  color: #ffffff;
}
.step__conts-02 .box:nth-child(3) > div, .step__conts-02 .box:nth-child(4) > div {
  color: #111111;
}
.step__conts-02 .box:nth-child(3) > div h3, .step__conts-02 .box:nth-child(4) > div h3 {
  color: #900008;
}
.step__conts-02 .box:nth-child(1) {
  background-color: #900008;
}
.step__conts-02 .box:nth-child(1):after {
  border-color: transparent transparent transparent #900008;
}
@media (max-width: 834.98px) {
  .step__conts-02 .box:nth-child(1):after {
    border-color: #900008 transparent transparent transparent;
  }
}
.step__conts-02 .box:nth-child(2) {
  background-color: #c36f74;
}
.step__conts-02 .box:nth-child(2):after {
  border-color: transparent transparent transparent #c36f74;
}
@media (max-width: 834.98px) {
  .step__conts-02 .box:nth-child(2):after {
    border-color: #c36f74 transparent transparent transparent;
  }
}
.step__conts-02 .box:nth-child(3) {
  background-color: #eac4c6;
}
.step__conts-02 .box:nth-child(3):after {
  border-color: transparent transparent transparent #eac4c6;
}
@media (max-width: 834.98px) {
  .step__conts-02 .box:nth-child(3):after {
    border-color: #eac4c6 transparent transparent transparent;
  }
}
.step__conts-02 .box:nth-child(4) {
  background-color: #fff8f8;
}
.step__conts-02 .box:nth-child(4):after {
  border-color: transparent transparent transparent #fff8f8;
}
@media (max-width: 834.98px) {
  .step__conts-02 .box:nth-child(4):after {
    border-color: #fff8f8 transparent transparent transparent;
  }
}
.step__conts-02 .box article > h3 {
  display: none;
}
.step__conts-02 .box article > div {
  font-size: 0.875rem;
  line-height: 2.1428571429;
}
.step__conts-02 .box article > div > h3 {
  margin-bottom: 0.3125rem;
}
.step__conts-02 .image-wrapper {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1.25rem;
  position: relative;
  display: block;
}
.step__conts-02 .image-wrapper:has(a) {
  display: block;
}
.step__conts-02 .image-wrapper:before {
  content: "";
  display: block;
  padding-top: 100%;
  text-align: center;
}
.step__conts-02 .image-wrapper > :first-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.step__conts-02 .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}

.usage {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.usage__inner {
  max-width: 1706.6666666667px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .usage__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.usage__title article:after {
  background-color: #900008;
}
.usage__title article > h2 {
  color: #111111;
}
.usage__title article > div {
  color: #900008;
}
.usage__conts {
  margin-bottom: 3.75rem;
}
.usage__conts .box {
  display: flex;
  align-items: center;
  padding: 2.8125rem 2.5rem;
  background-color: #f7dbdc;
}
.usage__conts article {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 640.98px) {
  .usage__conts article {
    flex-direction: column;
  }
}
.usage__conts article > h3 {
  display: none;
}
.usage__conts article > div {
  flex: 1 0 47.9166666667%;
  margin-right: 3.125rem;
  font-size: 0.875rem;
}
@media (max-width: 640.98px) {
  .usage__conts article > div {
    margin-right: 0;
  }
}
.usage__conts article > div > h3 {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  color: #900008;
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 900;
  border-bottom: 1px solid #900008;
}
@media (max-width: 640.98px) {
  .usage__conts article > div > h3 {
    text-align: center;
  }
}
.usage .image-wrapper {
  max-width: 200px;
  border-radius: 100vh;
  overflow: hidden;
}
@media (max-width: 640.98px) {
  .usage .image-wrapper {
    margin-bottom: 1.25rem;
  }
}
.usage .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
}
.usage__btn {
  margin-bottom: 10rem;
}
.usage__items {
  flex-direction: row-reverse;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding: 2.5rem 1rem;
  background-color: #900008;
  border-radius: 10px;
  box-shadow: 0px 0px 0px 1px #ffffff, 0px 0px 0px 16px #900008;
  position: relative;
  z-index: 0;
}
.usage__items img {
  width: auto !important;
  height: 123.2142857143% !important;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -15.9420289855%);
}
@media (max-width: 834.98px) {
  .usage__items img {
    display: none;
  }
}
.usage__items div {
  width: 75%;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
  line-height: 1.9;
}
@media (max-width: 834.98px) {
  .usage__items div {
    width: 100%;
  }
}

.faq {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.faq__inner {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .faq__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.faq__title article:after {
  background-color: #900008;
}
.faq__title article > h2 {
  color: #111111;
}
.faq__title article > div {
  color: #900008;
}
.faq__blog {
  margin-bottom: 3.75rem;
}

.b-blog {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.b-blog__inner {
  max-width: 1013.3333333333px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .b-blog__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.b-blog__title article:after {
  background-color: #900008;
}
.b-blog__title article > h2 {
  color: #111111;
}
.b-blog__title article > div {
  color: #900008;
}
.b-blog__blog {
  margin-bottom: 6.25rem;
}

.blog .wrap {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.blog #contents {
  width: auto;
  min-width: 0 !important;
  overflow: unset;
}
.blog #contents > article {
  padding: 0;
}
.blog #contents > article > h1 {
  padding-bottom: 0;
  line-height: 1.6;
  font-size: 16px;
  color: initial;
}
.blog #contents > article > ul {
  margin-bottom: 0;
}
.blog #contents > article > ul > li > a {
  margin-right: 0;
}
.blog #contents > article > div > article {
  padding: 0;
}
.blog #contents > dl {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.blog #contents > dl > dt {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  border: none;
  border-radius: 0;
}
.blog #contents > dl > dt > div > .date {
  font-size: 1rem;
}
.blog #contents > dl > dt > div > a {
  font-size: 1rem;
}
.blog #contents > dl > dt > div > a > .translate {
  font-size: 1rem;
}
.blog #contents .clearfix > li > a {
  margin-right: 0;
  line-height: 1.6;
}
.blog #contents .box article {
  padding: 0;
}
.blog #contents article h2 {
  padding-bottom: 0;
  font-size: 1rem;
  color: #111111;
  line-height: 1.6;
}
.blog #contents article img {
  margin: 0;
}
.blog aside {
  width: auto;
  min-width: 0;
  padding: 0;
  overflow: unset;
}
.blog aside > nav {
  padding: 0;
  text-align: left;
}
.blog aside > nav > div {
  color: #111111;
  font-size: 1rem;
  line-height: 1.6;
}
.blog aside > nav > div:nth-of-type(2) {
  margin-top: 0;
}
.blog aside > nav > a {
  padding-right: 0;
  margin-top: 0px;
}
.blog #calendar {
  margin: 0;
}
.blog #form_calendar {
  max-width: 100%;
  min-width: 0;
  box-shadow: none;
  margin: 0;
}
.blog #form_calendar > table {
  margin-bottom: 0;
}
.blog #form_calendar > table > thead > tr > th {
  font-size: 0.625rem;
}
.blog #search > form > button {
  top: 50%;
  right: 0.3125rem;
  transform: translate(0, -50%);
}
.blog .category > li {
  padding: 0;
  border-bottom: none;
}
.blog .category > li:first-child {
  border-top: 0;
}
.blog .pages > li {
  padding: 0;
  text-align: left;
  border-bottom: none;
}
.blog .pages > li:first-child {
  border-top: 0;
}
.blog span[id*=TRANS_] {
  padding-right: 0;
}

.blog-page {
  box-sizing: inherit;
  margin-top: 2.5rem;
  margin-bottom: 6.25rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .blog-page {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.blog-page #contents {
  flex: 1 0 0;
}
.blog-page #contents > article > h1 {
  margin-bottom: 0.3125rem;
}
.blog-page #contents > article > h1 > span {
  font-size: 2.125rem;
}
.blog-page #contents .h2 h2 {
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .blog-page #contents .h2 h2 {
    font-size: 1.875rem;
  }
}
.blog-page #contents > article > ul {
  margin-bottom: 1.875rem;
}
.blog-page #contents > article > ul > li {
  margin-right: 0.625rem;
}
.blog-page #contents > article > ul > li:last-child {
  margin-right: 0;
}
.blog-page #contents > article > ul > li > a {
  font-size: 0.875rem;
}
.blog-page aside {
  flex: 0 0 30%;
  margin-right: 2.5rem;
}
@media (max-width: 640.98px) {
  .blog-page aside {
    margin-right: 0;
  }
}
.blog-page aside nav > div {
  margin-bottom: 0.3125rem;
  font-size: 1.5rem;
}
.blog-page #calendar {
  margin-bottom: 1.25rem;
}
.blog-page #search {
  margin-bottom: 1.25rem;
}
.blog-page .category {
  margin-bottom: 2.5rem;
}
.blog-page .category li {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #dddddd;
}
.blog-page .category li:last-child {
  margin-bottom: 0;
}
.blog-page .pages li {
  margin-bottom: 1.25rem;
}
.blog-page .pages li > a {
  color: #111111;
  font-size: 0.875rem;
}
.blog-page .pages li > a > span {
  color: #900008;
  font-size: 1rem;
}

.midashi {
  padding-top: 100px;
  padding-bottom: 100px;
}
.midashi__inner {
  display: flex;
  align-items: center;
  max-width: 1706.6666666667px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media (max-width: 834.98px) {
  .midashi__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 834.98px) {
  .midashi__inner {
    display: block;
  }
}
.midashi__wrapper {
  flex: 0 0 50%;
  margin-right: 40px;
}
@media (max-width: 834.98px) {
  .midashi__wrapper {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.midashi__title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #6c2816;
}
.midashi__images {
  flex: 1 0 0;
}
@media (max-width: 834.98px) {
  .midashi__images {
    flex-direction: row !important;
  }
}
.midashi__images .box {
  width: 100%;
  flex: 1 0 0;
}
.midashi__images .box:first-child {
  margin-right: 20px;
}
.midashi__images .box img {
  width: 100% !important;
}

.logo-text {
  margin-bottom: 4.375rem;
}
.logo-text article {
  display: flex;
  flex-direction: row !important;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 10px;
  position: relative;
}
.logo-text article:after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}
.logo-text article > img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640.98px) {
  .logo-text article > img {
    max-width: 170px;
  }
}
.logo-text article > h2 {
  margin-bottom: 0 !important;
  font-size: calc(1.375rem + 1.5vw);
  font-family: Noto Serif JP, sans-serif;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1200px) {
  .logo-text article > h2 {
    font-size: 2.5rem;
  }
}
.logo-text article > div {
  font-size: 1.25rem;
  font-family: Noto Serif JP, sans-serif;
  font-weight: 500;
}/*# sourceMappingURL=common_style.css.map */