@charset "UTF-8";
#divGoTop {
  right: 2.5vw;
  bottom: 2vw;
  margin-bottom: 0;
}

.LowerRightCorner #divGoTop {
  right: 2.5vw;
  bottom: 2vw;
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .Rwd #divGoTop {
    right: 5%;
    bottom: 2%;
  }
}
body .model-header-fixed, body .navbar-fixed-top {
  transition: transform ease 400ms;
}
body.toggle-header-on .model-header-fixed, body.toggle-header-on .navbar-fixed-top {
  transform: translateY(-100%);
}
body.toggle-header-on.scroll-direction-up .model-header-fixed, body.toggle-header-on.scroll-direction-up .navbar-fixed-top {
  transform: translateY(0);
}
body.toggle-header-on .model-content {
  margin-top: 0 !important;
}

/* //Animation 擴充
//慢速上升 Start */
@-webkit-keyframes fadeInUpSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpSlow {
  -webkit-animation-name: fadeInUpSlow;
  animation-name: fadeInUpSlow;
}

@-webkit-keyframes fadeInLeftSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftSlow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(60px, 0, 0);
    transform: translate3d(-60px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftSlow {
  -webkit-animation-name: fadeInLeftSlow;
  animation-name: fadeInLeftSlow;
}

/* //End */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.fadeInUpSlow, .scaleLeft, .fadeInLeftSlow {
  visibility: hidden;
  animation-duration: 1s;
}

@-webkit-keyframes scaleLeft {
  from {
    -webkit-transform: scaleX(0.01);
    transform: scaleX(0.01);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}
@keyframes scaleLeft {
  from {
    -webkit-transform: scaleX(0.01);
    transform: scaleX(0.01);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}
.scaleLeft {
  -webkit-animation-name: scaleLeft;
  animation-name: scaleLeft;
}

body {
  margin: 0;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
}

.modal-dialog-scrollable {
  max-height: calc(100% - 3.5rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 3.5rem);
}

.modal-dialog-centered {
  min-height: calc(100% - 3.5rem);
}
.modal-dialog-centered::before {
  height: calc(100vh - 3.5rem);
}

.modal-sm {
  max-width: 300px;
}

@media (min-width: 961px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1321px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 630.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 960.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1320.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1920.98px) {
  .table-responsive-threek {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-threek > .table-bordered {
    border: 0;
  }
}
@media (max-width: 2560.98px) {
  .table-responsive-fourk {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-fourk > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 631px) {
  .container {
    max-width: 630px;
  }
}
@media (min-width: 961px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1321px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1921px) {
  .container {
    max-width: 1321px;
  }
}
@media (min-width: 2561px) {
  .container {
    max-width: 1920px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-fourk,
.col-fourk-auto, .col-fourk-12, .col-fourk-11, .col-fourk-10, .col-fourk-9, .col-fourk-8, .col-fourk-7, .col-fourk-6, .col-fourk-5, .col-fourk-4, .col-fourk-3, .col-fourk-2, .col-fourk-1, .col-threek,
.col-threek-auto, .col-threek-12, .col-threek-11, .col-threek-10, .col-threek-9, .col-threek-8, .col-threek-7, .col-threek-6, .col-threek-5, .col-threek-4, .col-threek-3, .col-threek-2, .col-threek-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 631px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 961px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1321px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1921px) {
  .col-threek {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-threek-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-threek-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-threek-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-threek-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-threek-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-threek-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-threek-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-threek-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-threek-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-threek-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-threek-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-threek-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-threek-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-threek-first {
    order: -1;
  }
  .order-threek-last {
    order: 13;
  }
  .order-threek-0 {
    order: 0;
  }
  .order-threek-1 {
    order: 1;
  }
  .order-threek-2 {
    order: 2;
  }
  .order-threek-3 {
    order: 3;
  }
  .order-threek-4 {
    order: 4;
  }
  .order-threek-5 {
    order: 5;
  }
  .order-threek-6 {
    order: 6;
  }
  .order-threek-7 {
    order: 7;
  }
  .order-threek-8 {
    order: 8;
  }
  .order-threek-9 {
    order: 9;
  }
  .order-threek-10 {
    order: 10;
  }
  .order-threek-11 {
    order: 11;
  }
  .order-threek-12 {
    order: 12;
  }
  .offset-threek-0 {
    margin-left: 0;
  }
  .offset-threek-1 {
    margin-left: 8.3333333333%;
  }
  .offset-threek-2 {
    margin-left: 16.6666666667%;
  }
  .offset-threek-3 {
    margin-left: 25%;
  }
  .offset-threek-4 {
    margin-left: 33.3333333333%;
  }
  .offset-threek-5 {
    margin-left: 41.6666666667%;
  }
  .offset-threek-6 {
    margin-left: 50%;
  }
  .offset-threek-7 {
    margin-left: 58.3333333333%;
  }
  .offset-threek-8 {
    margin-left: 66.6666666667%;
  }
  .offset-threek-9 {
    margin-left: 75%;
  }
  .offset-threek-10 {
    margin-left: 83.3333333333%;
  }
  .offset-threek-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 2561px) {
  .col-fourk {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-fourk-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-fourk-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-fourk-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-fourk-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-fourk-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-fourk-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-fourk-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-fourk-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-fourk-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-fourk-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-fourk-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-fourk-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-fourk-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-fourk-first {
    order: -1;
  }
  .order-fourk-last {
    order: 13;
  }
  .order-fourk-0 {
    order: 0;
  }
  .order-fourk-1 {
    order: 1;
  }
  .order-fourk-2 {
    order: 2;
  }
  .order-fourk-3 {
    order: 3;
  }
  .order-fourk-4 {
    order: 4;
  }
  .order-fourk-5 {
    order: 5;
  }
  .order-fourk-6 {
    order: 6;
  }
  .order-fourk-7 {
    order: 7;
  }
  .order-fourk-8 {
    order: 8;
  }
  .order-fourk-9 {
    order: 9;
  }
  .order-fourk-10 {
    order: 10;
  }
  .order-fourk-11 {
    order: 11;
  }
  .order-fourk-12 {
    order: 12;
  }
  .offset-fourk-0 {
    margin-left: 0;
  }
  .offset-fourk-1 {
    margin-left: 8.3333333333%;
  }
  .offset-fourk-2 {
    margin-left: 16.6666666667%;
  }
  .offset-fourk-3 {
    margin-left: 25%;
  }
  .offset-fourk-4 {
    margin-left: 33.3333333333%;
  }
  .offset-fourk-5 {
    margin-left: 41.6666666667%;
  }
  .offset-fourk-6 {
    margin-left: 50%;
  }
  .offset-fourk-7 {
    margin-left: 58.3333333333%;
  }
  .offset-fourk-8 {
    margin-left: 66.6666666667%;
  }
  .offset-fourk-9 {
    margin-left: 75%;
  }
  .offset-fourk-10 {
    margin-left: 83.3333333333%;
  }
  .offset-fourk-11 {
    margin-left: 91.6666666667%;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #28a745 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

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

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

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

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

@media (min-width: 631px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !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;
  }
}
@media (min-width: 961px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !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;
  }
}
@media (min-width: 1321px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !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;
  }
}
@media (min-width: 1921px) {
  .d-threek-none {
    display: none !important;
  }
  .d-threek-inline {
    display: inline !important;
  }
  .d-threek-inline-block {
    display: inline-block !important;
  }
  .d-threek-block {
    display: block !important;
  }
  .d-threek-table {
    display: table !important;
  }
  .d-threek-table-row {
    display: table-row !important;
  }
  .d-threek-table-cell {
    display: table-cell !important;
  }
  .d-threek-flex {
    display: flex !important;
  }
  .d-threek-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 2561px) {
  .d-fourk-none {
    display: none !important;
  }
  .d-fourk-inline {
    display: inline !important;
  }
  .d-fourk-inline-block {
    display: inline-block !important;
  }
  .d-fourk-block {
    display: block !important;
  }
  .d-fourk-table {
    display: table !important;
  }
  .d-fourk-table-row {
    display: table-row !important;
  }
  .d-fourk-table-cell {
    display: table-cell !important;
  }
  .d-fourk-flex {
    display: flex !important;
  }
  .d-fourk-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.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;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !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;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center, .d-flex-frame {
  align-items: center !important;
}

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

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

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

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

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

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

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

.align-content-stretch {
  align-content: stretch !important;
}

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

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

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

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

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

@media (min-width: 631px) {
  .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;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !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;
  }
  .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;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 961px) {
  .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;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !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;
  }
  .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;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1321px) {
  .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;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !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;
  }
  .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;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1921px) {
  .flex-threek-row {
    flex-direction: row !important;
  }
  .flex-threek-column {
    flex-direction: column !important;
  }
  .flex-threek-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-threek-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-threek-wrap {
    flex-wrap: wrap !important;
  }
  .flex-threek-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-threek-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-threek-fill {
    flex: 1 1 auto !important;
  }
  .flex-threek-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-threek-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-threek-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-threek-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-threek-start {
    justify-content: flex-start !important;
  }
  .justify-content-threek-end {
    justify-content: flex-end !important;
  }
  .justify-content-threek-center {
    justify-content: center !important;
  }
  .justify-content-threek-between {
    justify-content: space-between !important;
  }
  .justify-content-threek-around {
    justify-content: space-around !important;
  }
  .align-items-threek-start {
    align-items: flex-start !important;
  }
  .align-items-threek-end {
    align-items: flex-end !important;
  }
  .align-items-threek-center {
    align-items: center !important;
  }
  .align-items-threek-baseline {
    align-items: baseline !important;
  }
  .align-items-threek-stretch {
    align-items: stretch !important;
  }
  .align-content-threek-start {
    align-content: flex-start !important;
  }
  .align-content-threek-end {
    align-content: flex-end !important;
  }
  .align-content-threek-center {
    align-content: center !important;
  }
  .align-content-threek-between {
    align-content: space-between !important;
  }
  .align-content-threek-around {
    align-content: space-around !important;
  }
  .align-content-threek-stretch {
    align-content: stretch !important;
  }
  .align-self-threek-auto {
    align-self: auto !important;
  }
  .align-self-threek-start {
    align-self: flex-start !important;
  }
  .align-self-threek-end {
    align-self: flex-end !important;
  }
  .align-self-threek-center {
    align-self: center !important;
  }
  .align-self-threek-baseline {
    align-self: baseline !important;
  }
  .align-self-threek-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 2561px) {
  .flex-fourk-row {
    flex-direction: row !important;
  }
  .flex-fourk-column {
    flex-direction: column !important;
  }
  .flex-fourk-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-fourk-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-fourk-wrap {
    flex-wrap: wrap !important;
  }
  .flex-fourk-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-fourk-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-fourk-fill {
    flex: 1 1 auto !important;
  }
  .flex-fourk-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-fourk-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-fourk-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-fourk-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-fourk-start {
    justify-content: flex-start !important;
  }
  .justify-content-fourk-end {
    justify-content: flex-end !important;
  }
  .justify-content-fourk-center {
    justify-content: center !important;
  }
  .justify-content-fourk-between {
    justify-content: space-between !important;
  }
  .justify-content-fourk-around {
    justify-content: space-around !important;
  }
  .align-items-fourk-start {
    align-items: flex-start !important;
  }
  .align-items-fourk-end {
    align-items: flex-end !important;
  }
  .align-items-fourk-center {
    align-items: center !important;
  }
  .align-items-fourk-baseline {
    align-items: baseline !important;
  }
  .align-items-fourk-stretch {
    align-items: stretch !important;
  }
  .align-content-fourk-start {
    align-content: flex-start !important;
  }
  .align-content-fourk-end {
    align-content: flex-end !important;
  }
  .align-content-fourk-center {
    align-content: center !important;
  }
  .align-content-fourk-between {
    align-content: space-between !important;
  }
  .align-content-fourk-around {
    align-content: space-around !important;
  }
  .align-content-fourk-stretch {
    align-content: stretch !important;
  }
  .align-self-fourk-auto {
    align-self: auto !important;
  }
  .align-self-fourk-start {
    align-self: flex-start !important;
  }
  .align-self-fourk-end {
    align-self: flex-end !important;
  }
  .align-self-fourk-center {
    align-self: center !important;
  }
  .align-self-fourk-baseline {
    align-self: baseline !important;
  }
  .align-self-fourk-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 631px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 961px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1321px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1921px) {
  .float-threek-left {
    float: left !important;
  }
  .float-threek-right {
    float: right !important;
  }
  .float-threek-none {
    float: none !important;
  }
}
@media (min-width: 2561px) {
  .float-fourk-left {
    float: left !important;
  }
  .float-fourk-right {
    float: right !important;
  }
  .float-fourk-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 631px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .m-md-xl {
    margin: 5rem !important;
  }
  .mt-md-xl,
  .my-md-xl {
    margin-top: 5rem !important;
  }
  .mr-md-xl,
  .mx-md-xl {
    margin-right: 5rem !important;
  }
  .mb-md-xl,
  .my-md-xl {
    margin-bottom: 5rem !important;
  }
  .ml-md-xl,
  .mx-md-xl {
    margin-left: 5rem !important;
  }
  .m-md-2xl {
    margin: 10rem !important;
  }
  .mt-md-2xl,
  .my-md-2xl {
    margin-top: 10rem !important;
  }
  .mr-md-2xl,
  .mx-md-2xl {
    margin-right: 10rem !important;
  }
  .mb-md-2xl,
  .my-md-2xl {
    margin-bottom: 10rem !important;
  }
  .ml-md-2xl,
  .mx-md-2xl {
    margin-left: 10rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .p-md-xl {
    padding: 5rem !important;
  }
  .pt-md-xl,
  .py-md-xl {
    padding-top: 5rem !important;
  }
  .pr-md-xl,
  .px-md-xl {
    padding-right: 5rem !important;
  }
  .pb-md-xl,
  .py-md-xl {
    padding-bottom: 5rem !important;
  }
  .pl-md-xl,
  .px-md-xl {
    padding-left: 5rem !important;
  }
  .p-md-2xl {
    padding: 10rem !important;
  }
  .pt-md-2xl,
  .py-md-2xl {
    padding-top: 10rem !important;
  }
  .pr-md-2xl,
  .px-md-2xl {
    padding-right: 10rem !important;
  }
  .pb-md-2xl,
  .py-md-2xl {
    padding-bottom: 10rem !important;
  }
  .pl-md-2xl,
  .px-md-2xl {
    padding-left: 10rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-nxl {
    margin: -5rem !important;
  }
  .mt-md-nxl,
  .my-md-nxl {
    margin-top: -5rem !important;
  }
  .mr-md-nxl,
  .mx-md-nxl {
    margin-right: -5rem !important;
  }
  .mb-md-nxl,
  .my-md-nxl {
    margin-bottom: -5rem !important;
  }
  .ml-md-nxl,
  .mx-md-nxl {
    margin-left: -5rem !important;
  }
  .m-md-n2xl {
    margin: -10rem !important;
  }
  .mt-md-n2xl,
  .my-md-n2xl {
    margin-top: -10rem !important;
  }
  .mr-md-n2xl,
  .mx-md-n2xl {
    margin-right: -10rem !important;
  }
  .mb-md-n2xl,
  .my-md-n2xl {
    margin-bottom: -10rem !important;
  }
  .ml-md-n2xl,
  .mx-md-n2xl {
    margin-left: -10rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 961px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .m-lg-xl {
    margin: 5rem !important;
  }
  .mt-lg-xl,
  .my-lg-xl {
    margin-top: 5rem !important;
  }
  .mr-lg-xl,
  .mx-lg-xl {
    margin-right: 5rem !important;
  }
  .mb-lg-xl,
  .my-lg-xl {
    margin-bottom: 5rem !important;
  }
  .ml-lg-xl,
  .mx-lg-xl {
    margin-left: 5rem !important;
  }
  .m-lg-2xl {
    margin: 10rem !important;
  }
  .mt-lg-2xl,
  .my-lg-2xl {
    margin-top: 10rem !important;
  }
  .mr-lg-2xl,
  .mx-lg-2xl {
    margin-right: 10rem !important;
  }
  .mb-lg-2xl,
  .my-lg-2xl {
    margin-bottom: 10rem !important;
  }
  .ml-lg-2xl,
  .mx-lg-2xl {
    margin-left: 10rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .p-lg-xl {
    padding: 5rem !important;
  }
  .pt-lg-xl,
  .py-lg-xl {
    padding-top: 5rem !important;
  }
  .pr-lg-xl,
  .px-lg-xl {
    padding-right: 5rem !important;
  }
  .pb-lg-xl,
  .py-lg-xl {
    padding-bottom: 5rem !important;
  }
  .pl-lg-xl,
  .px-lg-xl {
    padding-left: 5rem !important;
  }
  .p-lg-2xl {
    padding: 10rem !important;
  }
  .pt-lg-2xl,
  .py-lg-2xl {
    padding-top: 10rem !important;
  }
  .pr-lg-2xl,
  .px-lg-2xl {
    padding-right: 10rem !important;
  }
  .pb-lg-2xl,
  .py-lg-2xl {
    padding-bottom: 10rem !important;
  }
  .pl-lg-2xl,
  .px-lg-2xl {
    padding-left: 10rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-nxl {
    margin: -5rem !important;
  }
  .mt-lg-nxl,
  .my-lg-nxl {
    margin-top: -5rem !important;
  }
  .mr-lg-nxl,
  .mx-lg-nxl {
    margin-right: -5rem !important;
  }
  .mb-lg-nxl,
  .my-lg-nxl {
    margin-bottom: -5rem !important;
  }
  .ml-lg-nxl,
  .mx-lg-nxl {
    margin-left: -5rem !important;
  }
  .m-lg-n2xl {
    margin: -10rem !important;
  }
  .mt-lg-n2xl,
  .my-lg-n2xl {
    margin-top: -10rem !important;
  }
  .mr-lg-n2xl,
  .mx-lg-n2xl {
    margin-right: -10rem !important;
  }
  .mb-lg-n2xl,
  .my-lg-n2xl {
    margin-bottom: -10rem !important;
  }
  .ml-lg-n2xl,
  .mx-lg-n2xl {
    margin-left: -10rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1321px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .m-xl-xl {
    margin: 5rem !important;
  }
  .mt-xl-xl,
  .my-xl-xl {
    margin-top: 5rem !important;
  }
  .mr-xl-xl,
  .mx-xl-xl {
    margin-right: 5rem !important;
  }
  .mb-xl-xl,
  .my-xl-xl {
    margin-bottom: 5rem !important;
  }
  .ml-xl-xl,
  .mx-xl-xl {
    margin-left: 5rem !important;
  }
  .m-xl-2xl {
    margin: 10rem !important;
  }
  .mt-xl-2xl,
  .my-xl-2xl {
    margin-top: 10rem !important;
  }
  .mr-xl-2xl,
  .mx-xl-2xl {
    margin-right: 10rem !important;
  }
  .mb-xl-2xl,
  .my-xl-2xl {
    margin-bottom: 10rem !important;
  }
  .ml-xl-2xl,
  .mx-xl-2xl {
    margin-left: 10rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .p-xl-xl {
    padding: 5rem !important;
  }
  .pt-xl-xl,
  .py-xl-xl {
    padding-top: 5rem !important;
  }
  .pr-xl-xl,
  .px-xl-xl {
    padding-right: 5rem !important;
  }
  .pb-xl-xl,
  .py-xl-xl {
    padding-bottom: 5rem !important;
  }
  .pl-xl-xl,
  .px-xl-xl {
    padding-left: 5rem !important;
  }
  .p-xl-2xl {
    padding: 10rem !important;
  }
  .pt-xl-2xl,
  .py-xl-2xl {
    padding-top: 10rem !important;
  }
  .pr-xl-2xl,
  .px-xl-2xl {
    padding-right: 10rem !important;
  }
  .pb-xl-2xl,
  .py-xl-2xl {
    padding-bottom: 10rem !important;
  }
  .pl-xl-2xl,
  .px-xl-2xl {
    padding-left: 10rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-nxl {
    margin: -5rem !important;
  }
  .mt-xl-nxl,
  .my-xl-nxl {
    margin-top: -5rem !important;
  }
  .mr-xl-nxl,
  .mx-xl-nxl {
    margin-right: -5rem !important;
  }
  .mb-xl-nxl,
  .my-xl-nxl {
    margin-bottom: -5rem !important;
  }
  .ml-xl-nxl,
  .mx-xl-nxl {
    margin-left: -5rem !important;
  }
  .m-xl-n2xl {
    margin: -10rem !important;
  }
  .mt-xl-n2xl,
  .my-xl-n2xl {
    margin-top: -10rem !important;
  }
  .mr-xl-n2xl,
  .mx-xl-n2xl {
    margin-right: -10rem !important;
  }
  .mb-xl-n2xl,
  .my-xl-n2xl {
    margin-bottom: -10rem !important;
  }
  .ml-xl-n2xl,
  .mx-xl-n2xl {
    margin-left: -10rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1921px) {
  .m-threek-0 {
    margin: 0 !important;
  }
  .mt-threek-0,
  .my-threek-0 {
    margin-top: 0 !important;
  }
  .mr-threek-0,
  .mx-threek-0 {
    margin-right: 0 !important;
  }
  .mb-threek-0,
  .my-threek-0 {
    margin-bottom: 0 !important;
  }
  .ml-threek-0,
  .mx-threek-0 {
    margin-left: 0 !important;
  }
  .m-threek-1 {
    margin: 0.25rem !important;
  }
  .mt-threek-1,
  .my-threek-1 {
    margin-top: 0.25rem !important;
  }
  .mr-threek-1,
  .mx-threek-1 {
    margin-right: 0.25rem !important;
  }
  .mb-threek-1,
  .my-threek-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-threek-1,
  .mx-threek-1 {
    margin-left: 0.25rem !important;
  }
  .m-threek-2 {
    margin: 0.5rem !important;
  }
  .mt-threek-2,
  .my-threek-2 {
    margin-top: 0.5rem !important;
  }
  .mr-threek-2,
  .mx-threek-2 {
    margin-right: 0.5rem !important;
  }
  .mb-threek-2,
  .my-threek-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-threek-2,
  .mx-threek-2 {
    margin-left: 0.5rem !important;
  }
  .m-threek-3 {
    margin: 1rem !important;
  }
  .mt-threek-3,
  .my-threek-3 {
    margin-top: 1rem !important;
  }
  .mr-threek-3,
  .mx-threek-3 {
    margin-right: 1rem !important;
  }
  .mb-threek-3,
  .my-threek-3 {
    margin-bottom: 1rem !important;
  }
  .ml-threek-3,
  .mx-threek-3 {
    margin-left: 1rem !important;
  }
  .m-threek-4 {
    margin: 1.5rem !important;
  }
  .mt-threek-4,
  .my-threek-4 {
    margin-top: 1.5rem !important;
  }
  .mr-threek-4,
  .mx-threek-4 {
    margin-right: 1.5rem !important;
  }
  .mb-threek-4,
  .my-threek-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-threek-4,
  .mx-threek-4 {
    margin-left: 1.5rem !important;
  }
  .m-threek-5 {
    margin: 3rem !important;
  }
  .mt-threek-5,
  .my-threek-5 {
    margin-top: 3rem !important;
  }
  .mr-threek-5,
  .mx-threek-5 {
    margin-right: 3rem !important;
  }
  .mb-threek-5,
  .my-threek-5 {
    margin-bottom: 3rem !important;
  }
  .ml-threek-5,
  .mx-threek-5 {
    margin-left: 3rem !important;
  }
  .m-threek-xl {
    margin: 5rem !important;
  }
  .mt-threek-xl,
  .my-threek-xl {
    margin-top: 5rem !important;
  }
  .mr-threek-xl,
  .mx-threek-xl {
    margin-right: 5rem !important;
  }
  .mb-threek-xl,
  .my-threek-xl {
    margin-bottom: 5rem !important;
  }
  .ml-threek-xl,
  .mx-threek-xl {
    margin-left: 5rem !important;
  }
  .m-threek-2xl {
    margin: 10rem !important;
  }
  .mt-threek-2xl,
  .my-threek-2xl {
    margin-top: 10rem !important;
  }
  .mr-threek-2xl,
  .mx-threek-2xl {
    margin-right: 10rem !important;
  }
  .mb-threek-2xl,
  .my-threek-2xl {
    margin-bottom: 10rem !important;
  }
  .ml-threek-2xl,
  .mx-threek-2xl {
    margin-left: 10rem !important;
  }
  .p-threek-0 {
    padding: 0 !important;
  }
  .pt-threek-0,
  .py-threek-0 {
    padding-top: 0 !important;
  }
  .pr-threek-0,
  .px-threek-0 {
    padding-right: 0 !important;
  }
  .pb-threek-0,
  .py-threek-0 {
    padding-bottom: 0 !important;
  }
  .pl-threek-0,
  .px-threek-0 {
    padding-left: 0 !important;
  }
  .p-threek-1 {
    padding: 0.25rem !important;
  }
  .pt-threek-1,
  .py-threek-1 {
    padding-top: 0.25rem !important;
  }
  .pr-threek-1,
  .px-threek-1 {
    padding-right: 0.25rem !important;
  }
  .pb-threek-1,
  .py-threek-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-threek-1,
  .px-threek-1 {
    padding-left: 0.25rem !important;
  }
  .p-threek-2 {
    padding: 0.5rem !important;
  }
  .pt-threek-2,
  .py-threek-2 {
    padding-top: 0.5rem !important;
  }
  .pr-threek-2,
  .px-threek-2 {
    padding-right: 0.5rem !important;
  }
  .pb-threek-2,
  .py-threek-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-threek-2,
  .px-threek-2 {
    padding-left: 0.5rem !important;
  }
  .p-threek-3 {
    padding: 1rem !important;
  }
  .pt-threek-3,
  .py-threek-3 {
    padding-top: 1rem !important;
  }
  .pr-threek-3,
  .px-threek-3 {
    padding-right: 1rem !important;
  }
  .pb-threek-3,
  .py-threek-3 {
    padding-bottom: 1rem !important;
  }
  .pl-threek-3,
  .px-threek-3 {
    padding-left: 1rem !important;
  }
  .p-threek-4 {
    padding: 1.5rem !important;
  }
  .pt-threek-4,
  .py-threek-4 {
    padding-top: 1.5rem !important;
  }
  .pr-threek-4,
  .px-threek-4 {
    padding-right: 1.5rem !important;
  }
  .pb-threek-4,
  .py-threek-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-threek-4,
  .px-threek-4 {
    padding-left: 1.5rem !important;
  }
  .p-threek-5 {
    padding: 3rem !important;
  }
  .pt-threek-5,
  .py-threek-5 {
    padding-top: 3rem !important;
  }
  .pr-threek-5,
  .px-threek-5 {
    padding-right: 3rem !important;
  }
  .pb-threek-5,
  .py-threek-5 {
    padding-bottom: 3rem !important;
  }
  .pl-threek-5,
  .px-threek-5 {
    padding-left: 3rem !important;
  }
  .p-threek-xl {
    padding: 5rem !important;
  }
  .pt-threek-xl,
  .py-threek-xl {
    padding-top: 5rem !important;
  }
  .pr-threek-xl,
  .px-threek-xl {
    padding-right: 5rem !important;
  }
  .pb-threek-xl,
  .py-threek-xl {
    padding-bottom: 5rem !important;
  }
  .pl-threek-xl,
  .px-threek-xl {
    padding-left: 5rem !important;
  }
  .p-threek-2xl {
    padding: 10rem !important;
  }
  .pt-threek-2xl,
  .py-threek-2xl {
    padding-top: 10rem !important;
  }
  .pr-threek-2xl,
  .px-threek-2xl {
    padding-right: 10rem !important;
  }
  .pb-threek-2xl,
  .py-threek-2xl {
    padding-bottom: 10rem !important;
  }
  .pl-threek-2xl,
  .px-threek-2xl {
    padding-left: 10rem !important;
  }
  .m-threek-n1 {
    margin: -0.25rem !important;
  }
  .mt-threek-n1,
  .my-threek-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-threek-n1,
  .mx-threek-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-threek-n1,
  .my-threek-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-threek-n1,
  .mx-threek-n1 {
    margin-left: -0.25rem !important;
  }
  .m-threek-n2 {
    margin: -0.5rem !important;
  }
  .mt-threek-n2,
  .my-threek-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-threek-n2,
  .mx-threek-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-threek-n2,
  .my-threek-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-threek-n2,
  .mx-threek-n2 {
    margin-left: -0.5rem !important;
  }
  .m-threek-n3 {
    margin: -1rem !important;
  }
  .mt-threek-n3,
  .my-threek-n3 {
    margin-top: -1rem !important;
  }
  .mr-threek-n3,
  .mx-threek-n3 {
    margin-right: -1rem !important;
  }
  .mb-threek-n3,
  .my-threek-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-threek-n3,
  .mx-threek-n3 {
    margin-left: -1rem !important;
  }
  .m-threek-n4 {
    margin: -1.5rem !important;
  }
  .mt-threek-n4,
  .my-threek-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-threek-n4,
  .mx-threek-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-threek-n4,
  .my-threek-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-threek-n4,
  .mx-threek-n4 {
    margin-left: -1.5rem !important;
  }
  .m-threek-n5 {
    margin: -3rem !important;
  }
  .mt-threek-n5,
  .my-threek-n5 {
    margin-top: -3rem !important;
  }
  .mr-threek-n5,
  .mx-threek-n5 {
    margin-right: -3rem !important;
  }
  .mb-threek-n5,
  .my-threek-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-threek-n5,
  .mx-threek-n5 {
    margin-left: -3rem !important;
  }
  .m-threek-nxl {
    margin: -5rem !important;
  }
  .mt-threek-nxl,
  .my-threek-nxl {
    margin-top: -5rem !important;
  }
  .mr-threek-nxl,
  .mx-threek-nxl {
    margin-right: -5rem !important;
  }
  .mb-threek-nxl,
  .my-threek-nxl {
    margin-bottom: -5rem !important;
  }
  .ml-threek-nxl,
  .mx-threek-nxl {
    margin-left: -5rem !important;
  }
  .m-threek-n2xl {
    margin: -10rem !important;
  }
  .mt-threek-n2xl,
  .my-threek-n2xl {
    margin-top: -10rem !important;
  }
  .mr-threek-n2xl,
  .mx-threek-n2xl {
    margin-right: -10rem !important;
  }
  .mb-threek-n2xl,
  .my-threek-n2xl {
    margin-bottom: -10rem !important;
  }
  .ml-threek-n2xl,
  .mx-threek-n2xl {
    margin-left: -10rem !important;
  }
  .m-threek-auto {
    margin: auto !important;
  }
  .mt-threek-auto,
  .my-threek-auto {
    margin-top: auto !important;
  }
  .mr-threek-auto,
  .mx-threek-auto {
    margin-right: auto !important;
  }
  .mb-threek-auto,
  .my-threek-auto {
    margin-bottom: auto !important;
  }
  .ml-threek-auto,
  .mx-threek-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 2561px) {
  .m-fourk-0 {
    margin: 0 !important;
  }
  .mt-fourk-0,
  .my-fourk-0 {
    margin-top: 0 !important;
  }
  .mr-fourk-0,
  .mx-fourk-0 {
    margin-right: 0 !important;
  }
  .mb-fourk-0,
  .my-fourk-0 {
    margin-bottom: 0 !important;
  }
  .ml-fourk-0,
  .mx-fourk-0 {
    margin-left: 0 !important;
  }
  .m-fourk-1 {
    margin: 0.25rem !important;
  }
  .mt-fourk-1,
  .my-fourk-1 {
    margin-top: 0.25rem !important;
  }
  .mr-fourk-1,
  .mx-fourk-1 {
    margin-right: 0.25rem !important;
  }
  .mb-fourk-1,
  .my-fourk-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-fourk-1,
  .mx-fourk-1 {
    margin-left: 0.25rem !important;
  }
  .m-fourk-2 {
    margin: 0.5rem !important;
  }
  .mt-fourk-2,
  .my-fourk-2 {
    margin-top: 0.5rem !important;
  }
  .mr-fourk-2,
  .mx-fourk-2 {
    margin-right: 0.5rem !important;
  }
  .mb-fourk-2,
  .my-fourk-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-fourk-2,
  .mx-fourk-2 {
    margin-left: 0.5rem !important;
  }
  .m-fourk-3 {
    margin: 1rem !important;
  }
  .mt-fourk-3,
  .my-fourk-3 {
    margin-top: 1rem !important;
  }
  .mr-fourk-3,
  .mx-fourk-3 {
    margin-right: 1rem !important;
  }
  .mb-fourk-3,
  .my-fourk-3 {
    margin-bottom: 1rem !important;
  }
  .ml-fourk-3,
  .mx-fourk-3 {
    margin-left: 1rem !important;
  }
  .m-fourk-4 {
    margin: 1.5rem !important;
  }
  .mt-fourk-4,
  .my-fourk-4 {
    margin-top: 1.5rem !important;
  }
  .mr-fourk-4,
  .mx-fourk-4 {
    margin-right: 1.5rem !important;
  }
  .mb-fourk-4,
  .my-fourk-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-fourk-4,
  .mx-fourk-4 {
    margin-left: 1.5rem !important;
  }
  .m-fourk-5 {
    margin: 3rem !important;
  }
  .mt-fourk-5,
  .my-fourk-5 {
    margin-top: 3rem !important;
  }
  .mr-fourk-5,
  .mx-fourk-5 {
    margin-right: 3rem !important;
  }
  .mb-fourk-5,
  .my-fourk-5 {
    margin-bottom: 3rem !important;
  }
  .ml-fourk-5,
  .mx-fourk-5 {
    margin-left: 3rem !important;
  }
  .m-fourk-xl {
    margin: 5rem !important;
  }
  .mt-fourk-xl,
  .my-fourk-xl {
    margin-top: 5rem !important;
  }
  .mr-fourk-xl,
  .mx-fourk-xl {
    margin-right: 5rem !important;
  }
  .mb-fourk-xl,
  .my-fourk-xl {
    margin-bottom: 5rem !important;
  }
  .ml-fourk-xl,
  .mx-fourk-xl {
    margin-left: 5rem !important;
  }
  .m-fourk-2xl {
    margin: 10rem !important;
  }
  .mt-fourk-2xl,
  .my-fourk-2xl {
    margin-top: 10rem !important;
  }
  .mr-fourk-2xl,
  .mx-fourk-2xl {
    margin-right: 10rem !important;
  }
  .mb-fourk-2xl,
  .my-fourk-2xl {
    margin-bottom: 10rem !important;
  }
  .ml-fourk-2xl,
  .mx-fourk-2xl {
    margin-left: 10rem !important;
  }
  .p-fourk-0 {
    padding: 0 !important;
  }
  .pt-fourk-0,
  .py-fourk-0 {
    padding-top: 0 !important;
  }
  .pr-fourk-0,
  .px-fourk-0 {
    padding-right: 0 !important;
  }
  .pb-fourk-0,
  .py-fourk-0 {
    padding-bottom: 0 !important;
  }
  .pl-fourk-0,
  .px-fourk-0 {
    padding-left: 0 !important;
  }
  .p-fourk-1 {
    padding: 0.25rem !important;
  }
  .pt-fourk-1,
  .py-fourk-1 {
    padding-top: 0.25rem !important;
  }
  .pr-fourk-1,
  .px-fourk-1 {
    padding-right: 0.25rem !important;
  }
  .pb-fourk-1,
  .py-fourk-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-fourk-1,
  .px-fourk-1 {
    padding-left: 0.25rem !important;
  }
  .p-fourk-2 {
    padding: 0.5rem !important;
  }
  .pt-fourk-2,
  .py-fourk-2 {
    padding-top: 0.5rem !important;
  }
  .pr-fourk-2,
  .px-fourk-2 {
    padding-right: 0.5rem !important;
  }
  .pb-fourk-2,
  .py-fourk-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-fourk-2,
  .px-fourk-2 {
    padding-left: 0.5rem !important;
  }
  .p-fourk-3 {
    padding: 1rem !important;
  }
  .pt-fourk-3,
  .py-fourk-3 {
    padding-top: 1rem !important;
  }
  .pr-fourk-3,
  .px-fourk-3 {
    padding-right: 1rem !important;
  }
  .pb-fourk-3,
  .py-fourk-3 {
    padding-bottom: 1rem !important;
  }
  .pl-fourk-3,
  .px-fourk-3 {
    padding-left: 1rem !important;
  }
  .p-fourk-4 {
    padding: 1.5rem !important;
  }
  .pt-fourk-4,
  .py-fourk-4 {
    padding-top: 1.5rem !important;
  }
  .pr-fourk-4,
  .px-fourk-4 {
    padding-right: 1.5rem !important;
  }
  .pb-fourk-4,
  .py-fourk-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-fourk-4,
  .px-fourk-4 {
    padding-left: 1.5rem !important;
  }
  .p-fourk-5 {
    padding: 3rem !important;
  }
  .pt-fourk-5,
  .py-fourk-5 {
    padding-top: 3rem !important;
  }
  .pr-fourk-5,
  .px-fourk-5 {
    padding-right: 3rem !important;
  }
  .pb-fourk-5,
  .py-fourk-5 {
    padding-bottom: 3rem !important;
  }
  .pl-fourk-5,
  .px-fourk-5 {
    padding-left: 3rem !important;
  }
  .p-fourk-xl {
    padding: 5rem !important;
  }
  .pt-fourk-xl,
  .py-fourk-xl {
    padding-top: 5rem !important;
  }
  .pr-fourk-xl,
  .px-fourk-xl {
    padding-right: 5rem !important;
  }
  .pb-fourk-xl,
  .py-fourk-xl {
    padding-bottom: 5rem !important;
  }
  .pl-fourk-xl,
  .px-fourk-xl {
    padding-left: 5rem !important;
  }
  .p-fourk-2xl {
    padding: 10rem !important;
  }
  .pt-fourk-2xl,
  .py-fourk-2xl {
    padding-top: 10rem !important;
  }
  .pr-fourk-2xl,
  .px-fourk-2xl {
    padding-right: 10rem !important;
  }
  .pb-fourk-2xl,
  .py-fourk-2xl {
    padding-bottom: 10rem !important;
  }
  .pl-fourk-2xl,
  .px-fourk-2xl {
    padding-left: 10rem !important;
  }
  .m-fourk-n1 {
    margin: -0.25rem !important;
  }
  .mt-fourk-n1,
  .my-fourk-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-fourk-n1,
  .mx-fourk-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-fourk-n1,
  .my-fourk-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-fourk-n1,
  .mx-fourk-n1 {
    margin-left: -0.25rem !important;
  }
  .m-fourk-n2 {
    margin: -0.5rem !important;
  }
  .mt-fourk-n2,
  .my-fourk-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-fourk-n2,
  .mx-fourk-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-fourk-n2,
  .my-fourk-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-fourk-n2,
  .mx-fourk-n2 {
    margin-left: -0.5rem !important;
  }
  .m-fourk-n3 {
    margin: -1rem !important;
  }
  .mt-fourk-n3,
  .my-fourk-n3 {
    margin-top: -1rem !important;
  }
  .mr-fourk-n3,
  .mx-fourk-n3 {
    margin-right: -1rem !important;
  }
  .mb-fourk-n3,
  .my-fourk-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-fourk-n3,
  .mx-fourk-n3 {
    margin-left: -1rem !important;
  }
  .m-fourk-n4 {
    margin: -1.5rem !important;
  }
  .mt-fourk-n4,
  .my-fourk-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-fourk-n4,
  .mx-fourk-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-fourk-n4,
  .my-fourk-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-fourk-n4,
  .mx-fourk-n4 {
    margin-left: -1.5rem !important;
  }
  .m-fourk-n5 {
    margin: -3rem !important;
  }
  .mt-fourk-n5,
  .my-fourk-n5 {
    margin-top: -3rem !important;
  }
  .mr-fourk-n5,
  .mx-fourk-n5 {
    margin-right: -3rem !important;
  }
  .mb-fourk-n5,
  .my-fourk-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-fourk-n5,
  .mx-fourk-n5 {
    margin-left: -3rem !important;
  }
  .m-fourk-nxl {
    margin: -5rem !important;
  }
  .mt-fourk-nxl,
  .my-fourk-nxl {
    margin-top: -5rem !important;
  }
  .mr-fourk-nxl,
  .mx-fourk-nxl {
    margin-right: -5rem !important;
  }
  .mb-fourk-nxl,
  .my-fourk-nxl {
    margin-bottom: -5rem !important;
  }
  .ml-fourk-nxl,
  .mx-fourk-nxl {
    margin-left: -5rem !important;
  }
  .m-fourk-n2xl {
    margin: -10rem !important;
  }
  .mt-fourk-n2xl,
  .my-fourk-n2xl {
    margin-top: -10rem !important;
  }
  .mr-fourk-n2xl,
  .mx-fourk-n2xl {
    margin-right: -10rem !important;
  }
  .mb-fourk-n2xl,
  .my-fourk-n2xl {
    margin-bottom: -10rem !important;
  }
  .ml-fourk-n2xl,
  .mx-fourk-n2xl {
    margin-left: -10rem !important;
  }
  .m-fourk-auto {
    margin: auto !important;
  }
  .mt-fourk-auto,
  .my-fourk-auto {
    margin-top: auto !important;
  }
  .mr-fourk-auto,
  .mx-fourk-auto {
    margin-right: auto !important;
  }
  .mb-fourk-auto,
  .my-fourk-auto {
    margin-bottom: auto !important;
  }
  .ml-fourk-auto,
  .mx-fourk-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

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

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

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 631px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 961px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1321px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1921px) {
  .text-threek-left {
    text-align: left !important;
  }
  .text-threek-right {
    text-align: right !important;
  }
  .text-threek-center {
    text-align: center !important;
  }
}
@media (min-width: 2561px) {
  .text-fourk-left {
    text-align: left !important;
  }
  .text-fourk-right {
    text-align: right !important;
  }
  .text-fourk-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

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

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.bootstrap-grid-template {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ff46fe;
  pointer-events: none;
  z-index: 1000000;
}
.bootstrap-grid-template .row {
  outline: 1px solid;
}
.bootstrap-grid-template [class^=col] {
  position: relative;
}
.bootstrap-grid-template [class^=col]:before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 100%;
  outline: 1px solid;
}

/*
<div class="bootstrap-grid-template">
                <div class="container h-100">
                    <div class="row h-100">
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                        <div class="col-1"></div>
                    </div>
                </div>
            </div>
*/
.kf-content {
  font-family: "roboto", "Noto Sans", "Noto Sans TC", "Noto Sans SC", "Noto Sans KR", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.5;
  color: #eee;
}

.wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

.canvas, canvas {
  pointer-events: none;
}

a,
a[href],
a:visited {
  color: inherit;
}

.tips {
  font-size: 0.8em;
}

.color-aero {
  color: #00ffc6;
}

.timeline {
  height: 100vh;
}

[data-tip] {
  font-size: 14px;
  vertical-align: top;
  margin-top: -7px;
  display: inline-block;
  font-weight: 400;
  line-height: inherit;
  cursor: pointer;
}

.content-title {
  font-size: 2em;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 0.9em;
}

.tg-group {
  position: relative;
}
.tg-group .tg-main {
  font-size: 1.4em;
  line-height: 1.1;
}
.tg-group .tg-sub {
  font-size: 0.85em;
  line-height: 1;
}

.modal {
  z-index: 500000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.modal p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.modal h4 {
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.5rem;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.modal ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 1rem;
}
.modal ul li {
  display: list-item;
  text-align: -webkit-match-parent;
}

.modal-backdrop {
  z-index: 490000 !important;
}

.icons > .icon {
  margin-right: 50px;
  margin-bottom: 30px;
}
.icons > .icon:last-child {
  margin-right: 0;
}

.icon-intel-core-i9 {
  background: url("../../innergigabyte/images/icon-intel-core-i9.jpg") center 0 no-repeat;
  width: 114px;
  background-size: 100% 100%;
}
.icon-intel-core-i9:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.icon-nv-studio-w {
  background: url("../../innergigabyte/images/icon-nv-studio-w.png") center 0 no-repeat;
  width: 572.55px;
  background-size: 100% 100%;
}
.icon-nv-studio-w:after {
  content: "";
  display: block;
  padding-bottom: 10.9510086455%;
}

.icon-nv-studio {
  background: url("../../innergigabyte/images/icon-nv-studio.png") center 0 no-repeat;
  width: 398px;
  background-size: 100% 100%;
}
.icon-nv-studio:after {
  content: "";
  display: block;
  padding-bottom: 11.5577889447%;
}

.icon-smg-amoled-b {
  background: url("../../innergigabyte/images/icon-smg-amoled-b.png") center 0 no-repeat;
  width: 283.1px;
  background-size: 100% 100%;
}
.icon-smg-amoled-b:after {
  content: "";
  display: block;
  padding-bottom: 28.1879194631%;
}

.icon-auo-amleo-b {
  background: url("../../innergigabyte/images/icon-auo-amleo-b.png") center 0 no-repeat;
  width: 362px;
  background-size: 100% 100%;
}
.icon-auo-amleo-b:after {
  content: "";
  display: block;
  padding-bottom: 31.4754098361%;
}

.icon-nv-app-canvas {
  background: url("../../innergigabyte/images/icon-nv-app-canvas.png") center 0 no-repeat;
  width: 111px;
  background-size: 100% 100%;
}
.icon-nv-app-canvas:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.icon-nv-app-broadcast {
  background: url("../../innergigabyte/images/icon-nv-app-broadcast.png") center 0 no-repeat;
  width: 111px;
  background-size: 100% 100%;
}
.icon-nv-app-broadcast:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.icon-nv-app-omniverse {
  background: url("../../innergigabyte/images/icon-nv-app-omniverse.png") center 0 no-repeat;
  width: 111px;
  background-size: 100% 100%;
}
.icon-nv-app-omniverse:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.section {
  position: relative;
  z-index: 3;
}

.kf-content {
  max-width: 2560px;
  margin: 0 auto;
}

.d-flex-frame {
  height: 100vh;
}

.section-kv {
  background: #fff url("../../innergigabyte/images/hero.jpg") center bottom no-repeat;
  background-size: 2560px auto;
  /* height: 100vh; */
  height: 1360px;
}
.section-kv .content-box {
  margin-top: 200px;
}
.section-kv .content-box .small {
  font-size: 60%;
}
.section-kv .icons {
  margin-bottom: 2.4em;
  font-size: 0;
}
.section-kv .icons > .icon {
  margin: 30px;
  max-height: 114px;
}
.section-kv .hero-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  color: #ddd;
}
.section-kv .hero-icon > span {
  margin-left: 0.5rem;
}
.section-kv .link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-kv .link-btn a {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 10rem;
  margin: 2rem 1rem 0 1rem;
  transition: all 250ms ease-in-out;
}
.section-kv .link-btn a:hover {
  padding: 12px 50px;
  background: #000;
  border: solid 2px #000;
}
.section-kv .link-btn .btn-support {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 2px #888;
}
.section-kv .link-btn .btn-support img {
  width: 16px;
}
.section-kv .link-btn .btn-support span {
  margin-right: 1rem;
}
.section-kv .link-btn .btn-download {
  border: solid 2px #ff6400;
  background-color: #ff6400;
}

.section-design-bg {
  background: url("../../innergigabyte/images/sec2.jpg") center 0 no-repeat;
  background-size: cover;
}

.section-design {
  margin-top: -100vh;
  margin-bottom: -100vh;
  z-index: 2;
}
.section-design::after {
  content: "";
  display: block;
  height: 100vh;
}
.section-design .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-design .section-design-bg {
  height: 100%;
}
.section-design .section-content .row {
  min-height: 100vh;
}

.section-creative .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-creative .section-creative-bg {
  background: #2a3038 url("../../innergigabyte/images/sec3-bg.png") left center no-repeat;
  background-size: 1450px auto;
  height: 100%;
}
.section-creative .section-content {
  padding: 0 0;
  margin-top: -100vh;
}
.section-creative .tg-group {
  margin-bottom: 1.5em;
}
.section-creative .icons img {
  width: 150px;
}
.section-creative .sec3-pics {
  margin-top: 40vh;
  padding-bottom: 35vh;
}

.section-sec4-bg {
  background: url("../../innergigabyte/images/sec4-bg.jpg") center 0 no-repeat;
  background-size: cover;
}

.section-sec4 {
  margin-top: -100vh;
  margin-bottom: -100vh;
  z-index: 2;
}
.section-sec4::after {
  content: "";
  display: block;
  height: 100vh;
}
.section-sec4 .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-sec4 .section-sec4-bg {
  height: 100%;
}
.section-sec4 .section-content .row {
  min-height: 100vh;
}

.section-sec5 {
  background: #000 url("../../innergigabyte/images/sec5-bg.jpg") center center no-repeat;
  background-size: cover;
  /* height: 100vh; */
}
.section-sec5 .section-content {
  padding: 100px 0;
}
.section-sec5 img {
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.59), 0 8px 13px rgba(0, 0, 0, 0.51);
}

.section-gpu-bg {
  height: auto;
  min-height: 1000px;
  padding-top: 980px;
  color: #fff;
}

.section-gpu .section-gpu-bg {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #7d8386;
}
.section-gpu .canvas {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2560px;
  margin-left: -1280px;
}
.section-gpu .canvas > canvas {
  width: 100%;
}
.section-studio {
  background-color: #a5aaad;
  color: #fff;
}

.rtx-feature {
  margin-bottom: 2em;
}
.rtx-feature .rtx-feature-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
}
.rtx-feature .rtx-feature-img:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.rtx-feature .rtx-feature-img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rtx-feature .content-title {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 0;
}

.section-ai-bg {
  background: url("../../innergigabyte/images/ai.jpg") center 0 no-repeat;
  height: 916px;
}

.section-ai {
  background-color: #fff;
  margin-top: -100vh;
  z-index: 2;
}
.section-ai canvas {
  width: 2560px;
}
.section-ai .sticky-content {
  position: sticky;
  top: calc((100vh - 1620px) / 2);
}
.section-ai::after {
  content: "";
  display: block;
  height: 100vh;
}
.section-ai .section-ai-bg {
  background: none;
  position: relative;
  overflow: hidden;
  height: 1620px;
}
.section-ai .canvas {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.section-ai .section-content {
  position: relative;
  height: 100%;
}
.section-ai .section-ai-bg {
  position: relative;
}
.section-ai .content-title {
  position: absolute;
  top: 34%;
  left: 50%;
  margin-left: -232px;
  width: 555px;
  min-height: 285px;
  display: flex;
  align-items: center;
}

.section-ai-eyecare {
  background: #fff url("../../innergigabyte/images/eyecare-bg.jpg") center top no-repeat;
  color: #3c3c3c;
}
.section-ai-eyecare .section-content {
  height: 600px;
}
.section-ai-eyecare .canvas {
  background-size: cover !important;
}
.section-ai-eyecare .canvas:after {
  content: "";
  display: block;
  padding-bottom: 44.0310077519%;
}
.section-ai-eyecare .ai-eyecare {
  background: url("../../innergigabyte/images/ai-eyecare.png") 0 0 no-repeat;
  width: 117px;
  height: 90px;
}
.section-ai-eyecare .canvas-eyecare-on {
  animation: ai-eyecare-on 4s linear 0s infinite;
}
.section-ai-eyecare .canvas-eyecare-off {
  animation: ai-eyecare-off 4s linear 0s infinite;
}
.section-ai-eyecare .icon-ai-eyecare {
  background: url("../../innergigabyte/images/icon-ai-eyecare.jpg") 0 0 no-repeat;
  background-size: cover;
  width: 266px;
}
.section-ai-eyecare .icon-ai-eyecare:after {
  content: "";
  display: block;
  padding-bottom: 76.3157894737%;
}
.section-ai-eyecare .icon-ai-eyecare-w {
  background: url("../../innergigabyte/images/icon-ai-eyecare-w.png") 0 0 no-repeat;
  width: 42px;
  background-size: cover;
}
.section-ai-eyecare .icon-ai-eyecare-w:after {
  content: "";
  display: block;
  padding-bottom: 47.619047619%;
}
.section-ai-eyecare .icon-switch {
  margin-top: 0.5em;
}
.section-ai-eyecare .icon + .vm {
  margin-left: 0.5em;
}
.section-ai-eyecare .canvas-wrap {
  position: relative;
}
.section-ai-eyecare .canvas-wrap .canvas-eyecare-off {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.section-ai-eyecare .canvas-wrap .canvas-eyecare-on {
  position: relative;
}
.section-ai-eyecare .ba-slider {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.section-ai-eyecare .ba-slider .icon-switch {
  background: url("../../innergigabyte/images/switch-off.png") 0 0 no-repeat;
  width: 62px;
  height: 23px;
}
.section-ai-eyecare .ba-slider .canvas-eyecare-on {
  opacity: 0.01;
  transition: opacity 250ms ease-out;
}
.section-ai-eyecare .ba-slider.on .canvas-eyecare-on {
  opacity: 1;
}
.section-ai-eyecare .ba-slider.on .icon-switch {
  background-image: url("../../innergigabyte/images/switch-on.png");
}
.section-ai-eyecare .ba-slider .ba-tag {
  background: rgba(26, 27, 31, 0.6509803922);
  position: absolute;
  font-size: 0.8em;
  line-height: 1;
  color: #fff;
  padding: 1em 0.8em;
  text-align: right;
  white-space: nowrap;
  z-index: 3;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all ease-in-out 150ms;
}
.section-ai-eyecare .ba-slider .ba-tag:hover {
  background: #1a1b1f;
}
.section-ai-eyecare .ba-slider .resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.section-ai-eyecare .ba-slider .resize .ba-tag {
  right: auto;
  left: 0;
}
.section-ai-eyecare .ba-slider .vs-control {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
}
.section-ai-eyecare .ba-slider .vs-control .left,
.section-ai-eyecare .ba-slider .vs-control .right {
  position: absolute;
  top: 50%;
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  width: 28px;
  width: 2vw;
  min-width: 12px;
  max-width: 28px;
  opacity: 0.7;
  transition: opacity 250ms ease;
}
.section-ai-eyecare .ba-slider .vs-control .left:hover,
.section-ai-eyecare .ba-slider .vs-control .right:hover {
  opacity: 1;
}
.section-ai-eyecare .ba-slider .vs-control .left:before,
.section-ai-eyecare .ba-slider .vs-control .right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450%;
  padding-top: 450%;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  z-index: 11;
}
.section-ai-eyecare .ba-slider .vs-control .left:after,
.section-ai-eyecare .ba-slider .vs-control .right:after {
  content: "";
  position: relative;
  font-size: 0;
  width: 100%;
  padding-top: 171.43%;
  background: url(../../innergigabyte/images/gallery-arrow.png) 0 0 no-repeat;
  background-size: 100%;
  z-index: 12;
}
.section-ai-eyecare .ba-slider .vs-control .left {
  left: 30px;
  transform: rotate(180deg);
}
.section-ai-eyecare .ba-slider .vs-control .right {
  right: 30px;
}
.section-ai-eyecare .ba-slider .ba-img-wrap {
  overflow: hidden;
}
.section-ai-eyecare .ba-slider .ba-img-wrap img,
.section-ai-eyecare .ba-slider .ba-img-wrap video {
  width: 100% !important;
  margin-left: -50%;
}
.section-ai-eyecare .ba-slider .resize .ba-img-wrap img,
.section-ai-eyecare .ba-slider .resize .ba-img-wrap video {
  margin-left: 0;
}
.section-ai-eyecare .ba-slider .handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: #b2b2b2;
  cursor: ew-resize;
}
.section-ai-eyecare .ba-slider .handle:after {
  position: absolute;
  top: 50%;
  width: 37px;
  height: 20px;
  margin: -10px 0 0 -19px;
  content: "";
  text-align: center;
  line-height: 20px;
  border: none;
  /* darken(@orange, 5%) */
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: none;
  background: url("../../innergigabyte/images/ba-handle.png") 0 0 no-repeat;
}
.section-ai-eyecare .ba-slider img {
  width: 100%;
  display: block;
  max-width: none;
}

@keyframes ai-eyecare-off {
  0% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-01.jpg);
  }
  5%, 25% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-02.jpg);
  }
  50% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-02.jpg);
  }
  55%, 75% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-01.jpg);
  }
  100% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-01.jpg);
  }
}
@keyframes ai-eyecare-on {
  0% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-01.jpg);
  }
  5%, 10% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-02.jpg);
  }
  22%, 50% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-03.jpg);
  }
  55%, 60% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-04.jpg);
  }
  72%, 100% {
    background: url(../../innergigabyte/images/frames/ai-eyecare/ai-eyecare-f-01.jpg);
  }
}
.design-slider .swiper-slide {
  flex: 0 1 auto;
  height: 640px;
}
.design-slider .swiper-slide img {
  display: block;
  height: 100%;
}

.section-scenario {
  background: #fff;
  padding-bottom: 80px;
}
.section-scenario .swiper-wrapper {
  gap: 10px;
}
.section-scenario .swiper-wrapper .swiper-slide {
  position: relative;
}
.section-scenario .swiper-wrapper .swiper-slide img {
  display: block;
}
.section-scenario .swiper-wrapper .text {
  background: rgba(0, 225, 161, 0.9);
  color: #fff;
  position: absolute;
  padding: 1.5em;
  font-size: 0.9em;
  max-width: 180px;
}
.section-scenario .swiper-wrapper .scenario-01 .text {
  top: 15%;
  left: 0;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.section-scenario .swiper-wrapper .scenario-02 .text {
  bottom: 5%;
  right: 0;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.section-scenario .swiper-wrapper .scenario-03 .text {
  top: 15%;
  right: 0;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.section-scenario .swiper-wrapper .scenario-04 .text {
  top: 15%;
  left: 0;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}

.section-thermal-bg {
  background: #1e252b url("../../innergigabyte/images/thermal.jpg") center 25% no-repeat;
  color: #fff;
}

.section-thermal {
  margin-top: -100vh;
  margin-bottom: -100vh;
  z-index: 1;
  background: #1e252b;
  color: #fff;
}
.section-thermal:after {
  content: "";
  display: block;
  height: 100vh;
}
.section-thermal .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-thermal .sticky-content .canvas {
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.section-thermal .sticky-content .canvas canvas {
  height: 100%;
  margin: 0 auto;
  display: block;
}
.section-thermal .section-content {
  margin-top: 500px;
}
.section-thermal .section-thermal-bg {
  background: none;
}
.section-thermal .tg-group {
  margin-bottom: 1.4em;
}
.section-thermal img {
  width: 100%;
}

.section-wifi {
  position: relative;
  z-index: 3;
  background-color: #000910;
  color: #fff;
  min-height: 100vh;
}
.section-wifi .icon {
  max-width: 100%;
}
.section-wifi .icon-text-wifi6 {
  width: 100%;
}

.icon-text-wifi6 {
  background: url("../../innergigabyte/images/icon-text-wif6.png") center 0 no-repeat;
  background-size: 100% 100%;
}
.icon-text-wifi6:after {
  content: "";
  display: block;
  padding-bottom: 67.585089141%;
}

.icon-wifi6e {
  background: url("../../innergigabyte/images/icon-wifi6e.jpg") center 0 no-repeat;
  width: 166.5px;
  background-size: 100% 100%;
}
.icon-wifi6e:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.section-display-bg {
  background: #191d20 url("../../innergigabyte/images/display.jpg") center 0 no-repeat;
  height: 1127px;
}
.section-display-bg.step2 {
  background-image: url("../../innergigabyte/images/display-step2.jpg");
}

.section-display {
  margin-top: -100vh;
  z-index: 2;
  background: #191d20;
  color: #fff;
}
.section-display:after {
  content: "";
  display: block;
  height: 50vh;
}
.section-display .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-display .sticky-content .section-display-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
}
.section-display .section-content {
  padding-top: 50vh;
}

.section-panel-bg {
  background: url("../../innergigabyte/images/panel.jpg") center 0 no-repeat;
  height: 1080px;
}

.section-panel {
  margin-top: -100vh;
  margin-bottom: -100vh;
  z-index: 1;
  position: relative;
}
.section-panel:after {
  content: "";
  display: block;
  height: 100vh;
}
.section-panel .wrapper {
  max-width: 100%;
  position: relative;
}
.section-panel .wrapper + .wrapper {
  margin-top: 2em;
}
.section-panel .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-panel .sticky-content .section-panel-bg {
  height: 100vh;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.section-panel .sticky-content ~ .wrapper {
  z-index: 1021;
}
.section-panel .left-100 {
  left: 100%;
}
.section-panel .right-100 {
  right: 100%;
}
.section-panel img {
  margin: 0 1.5em;
  min-width: 100%;
}
.section-panel .content-box {
  padding: 1px 2.5rem;
}
.section-panel .content-title {
  font-weight: 500;
  margin-top: 1em;
}
.section-panel .white-pane {
  position: relative;
  padding-bottom: 1em;
}
.section-panel .white-pane > * {
  position: relative;
  z-index: 2;
}
.section-panel .white-pane:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: max(100vh, 100%);
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
.section-panel .position-absolute.left-100 {
  padding-left: 1.5em;
}
.section-panel .position-absolute.right-100 {
  padding-right: 1.5em;
}
.section-panel .position-absolute img {
  margin: 0;
}

.section-bezel-bg {
  background: #dcdedd url("../../innergigabyte/images/bezel.jpg") center 0 no-repeat;
  height: 1439px;
  background-size: 2560px auto;
}

.section-bezel {
  background: #dcdedd;
}
.section-bezel .sticky-content {
  position: sticky;
  top: 0;
}
.section-bezel .screen-container {
  color: #fff;
  width: 1180px;
  padding-bottom: 510px;
  margin: 0 auto;
}
.section-bezel .section-content {
  padding: 60px 0;
}
.section-bezel .section-bezel-bg {
  position: relative;
  color: #fff;
}
.section-bezel .section-bezel-bg .frame {
  position: absolute;
  top: 124px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 14px;
  width: 920px;
  height: 580px;
  padding: 0.5em;
  overflow: hidden;
  font-size: 0.75em;
}
.section-bezel .right {
  margin-left: 3em;
}
.section-bezel .tg-group {
  margin-bottom: 1.5em;
}
.section-bezel .big {
  font-size: 2em;
}
.section-bezel .content-title {
  margin-bottom: 30px;
}
.section-bezel .content-title strong {
  font-size: 1.875em;
}

.section-friendly-bg {
  background: #d9dbda url("../../innergigabyte/images/friendly.jpg") center 0 no-repeat;
  padding-top: 450px;
  background-size: 2560px auto;
}

.section-friendly {
  background: #d9dbda;
  margin-top: -100vh;
  z-index: 2;
}
.section-friendly .sticky-content {
  position: sticky;
  top: 0;
}
.section-friendly .section-top {
  min-height: 100vh;
}
.section-friendly .friendly-text {
  width: 700px;
  margin: 0 auto;
  padding: 1px 0;
}
.section-friendly .icons {
  flex-shrink: 0;
}
.section-friendly .icons img {
  width: 700px;
}
.section-friendly .tips {
  max-width: 700px;
  line-height: 1.2;
}
.section-friendly img {
  display: block;
  max-width: 100%;
}

.section-io-bg {
  background: #000 url("../../innergigabyte/images/io.jpg") center 0 no-repeat;
  height: 1461px;
  color: #fff;
  background-size: 2560px auto;
}

.section-io .section-io-bg {
  position: relative;
}
.section-io .icons .icon {
  max-width: 100%;
}
.section-io .tg-group-list .tg-group {
  margin-top: 1.5em;
}
.section-io .icon {
  max-width: 100%;
}

.section-tip {
  padding-top: 3em;
  padding-bottom: 3em;
  font-size: 0.7em;
  line-height: 1.4;
  font-family: "Titillium Web";
}
.section-tip > .container {
  max-width: 74%;
}
.section-tip ol {
  padding: 0;
  margin: 0;
}
.section-tip ol li {
  margin-bottom: 10px;
}
.section-tip .content-box {
  padding: 0;
}
.KeyfeatureParseContenArea.blackBackGround .section-tip, .theme-dark .section-tip {
  background: #262d2a;
  color: #7c8c85;
}

.icon-windowshelloicon {
  background: url("../../innergigabyte/images/icon-windowshelloicon.png") center 0 no-repeat;
  width: 165px;
  background-size: 100% 100%;
}
.icon-windowshelloicon:after {
  content: "";
  display: block;
  padding-bottom: 85%;
}

.icon-dts-b {
  background: url("../../innergigabyte/images/icon-dts-b.png") center 0 no-repeat;
  width: 177px;
  background-size: 100% 100%;
}
.icon-dts-b:after {
  content: "";
  display: block;
  padding-bottom: 54.2056074766%;
}

.section-effects {
  margin-top: -100vh;
  background: #000;
  color: #fff;
  position: relative;
  z-index: 2;
}
.section-effects .sticky-content {
  position: sticky;
  top: 0;
  height: 100vh;
}
.section-effects .sticky-content .section-effects-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-effects .section-content {
  padding-top: 50vh;
}
.section-effects .section-content .section-effects-bg {
  background-size: 0 0;
}
.section-effects .row {
  padding: 20vh 0;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
#FAQ {
  background: #293038;
}
#FAQ .table {
  color: rgba(255, 255, 255, 0.7) !important;
}
#FAQ .table .table td, #FAQ .table .table th {
  border-bottom: 1px solid #999;
  border-top: none !important;
}
#FAQ .faq-frame > ul.faq-list {
  list-style: none;
  padding-left: 0;
}
#FAQ .faq-frame > ul.faq-list > li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
#FAQ .faq-frame > ul.faq-list > li:first-child {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title {
  color: rgba(255, 255, 255, 0.9);
  padding: 28px;
  display: block;
  border: dotted 3px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  background: rgba(84, 98, 104, 0.4);
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title .icon-show {
  display: none;
  margin-left: -20px;
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title .icon-close {
  display: inline-block;
  margin-left: -20px;
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title.collapsed {
  border: dotted 3px rgba(255, 255, 255, 0);
  background: rgba(0, 0, 0, 0);
  transition: all 250ms ease-out;
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title.collapsed:hover {
  background: rgba(255, 255, 255, 0.08);
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title.collapsed .icon-show {
  display: inline-block;
}
#FAQ .faq-frame > ul.faq-list > li a.faq-list-title.collapsed .icon-close {
  display: none;
}
#FAQ .faq-frame > ul.faq-list > li div {
  background: rgb(70, 83, 97);
  color: rgba(255, 255, 255, 0.7);
  transition: all 250ms ease-out;
}
#FAQ .faq-frame > ul.faq-list > li div p {
  margin: 0 auto;
  padding: 28px;
}
#FAQ .faq-frame > ul.faq-list > li div p a {
  color: #ffa500;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
#FAQ .faq-frame > ul.faq-list > li div p a:hover {
  color: #fff;
}
#FAQ .section-content {
  padding: 200px 0 100px 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #eee;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  background: #000;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffb03b;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #ffb03b;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

@media screen and (max-width: 640px) {
  .Campaign p {
    font-size: 1rem !important;
    line-height: 1.4rem;
  }
  .Campaign .h3, h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -1px;
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 500000;
  display: none;
}
.back-to-top .iconText {
  color: #949494;
  font-size: 0.8vw;
  font-weight: 700;
  margin-top: -3vh;
  opacity: 0;
  position: absolute;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.back-to-top:hover .iconText {
  opacity: 1;
  margin-left: -2px;
}
.back-to-top svg {
  display: block;
  height: 65px;
  width: 65px;
  margin-top: 0;
  margin-left: 0;
  background-color: rgba(255, 100, 0, 0.5);
  border-radius: 50%;
  transition: all 250ms ease-in-out;
}
.back-to-top svg .b {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1px;
  transition: all 500ms ease-in;
}
.back-to-top:hover svg {
  background-color: #ff6400;
  height: 69px;
  width: 69px;
  opacity: 1;
}
.back-to-top:hover svg .b {
  stroke-miterlimit: 20;
  stroke-width: 5px;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #ff6400;
  color: #fff;
  transition: all 0.4s;
}

.btn-close {
  color: #fff;
  background-color: transparent;
  border-color: #7a7a7a;
  border-radius: 30px;
  transition: all 250ms ease-in-out;
}
.btn-close:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
  padding-left: 20px;
  padding-right: 20px;
}

.btn-orange {
  color: #fff;
  background-color: #ff6400;
  border-color: #ff6400;
  border-radius: 30px;
  transition: all 250ms ease-in-out;
  text-decoration: none;
}
.btn-orange:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
  padding-left: 20px;
  padding-right: 20px;
}

button:hover {
  cursor: pointer;
}

.modal-dialog .support-list {
  background: rgba(131, 141, 147, 0.5);
  padding: 17px 25px;
  border-radius: 5px;
  margin-top: 30px;
  /* &.table-responsive {
      max-height:300px;
  } */
}
.modal-dialog .support-list p {
  font-size: 24px;
  font-weight: bold;
}
.modal-dialog .support-list iframe {
  border: none;
  width: 100%;
  height: 25vh;
  max-height: 600px;
  min-height: 250px;
}
.modal-dialog .support-list table {
  font-size: smaller;
}
.modal-dialog .support-list table thead th:nth-child(1) {
  width: 20%;
}
.modal-dialog .support-list table thead th:nth-child(2) {
  width: 25%;
}
.modal-dialog .support-list table thead th:nth-child(3) {
  width: 55%;
}

.support-list-full table {
  font-size: smaller;
}
.support-list-full table thead th:nth-child(1) {
  width: 20%;
}
.support-list-full table thead th:nth-child(2) {
  width: 25%;
}
.support-list-full table thead th:nth-child(3) {
  width: 55%;
}

@media screen and (max-width: 2560px) {
  .kf-content {
    font-size: 24px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 1920px) {
  .kf-content {
    font-size: 20px;
  }
  .icons > .icon {
    margin-right: 25px;
    margin-bottom: 15px;
  }
  .icon-intel-core-i9 {
    width: 57px;
  }
  .icon-nv-studio-w {
    width: 347px;
  }
  .icon-nv-studio {
    width: 199px;
  }
  .icon-smg-amoled-b {
    width: 141.55px;
  }
  .icon-auo-amleo-b {
    width: 181px;
  }
  .icon-nv-app-canvas {
    width: 67px;
  }
  .icon-nv-app-broadcast {
    width: 67px;
  }
  .icon-nv-app-omniverse {
    width: 67px;
  }
  .section-kv {
    min-height: 0;
    background-size: 1920px auto;
    height: auto;
  }
  .section-kv .content-box {
    margin-top: 150px;
    margin-bottom: 540px;
  }
  .section-kv .link-btn a {
    margin-top: 4rem;
  }
  .section-design .section-content {
    padding: 200px 0;
  }
  .section-creative .section-creative-bg {
    background-size: 984px auto;
  }
  .section-creative .icons img {
    width: auto;
  }
  .section-creative .sec3-pics {
    margin-top: 40vh;
    padding-bottom: 220px;
  }
  .section-gpu-bg {
    min-height: 0;
    padding-top: 700px;
  }
  .section-gpu .canvas {
    width: 1920px;
    margin-left: -960px;
  }
  .section-ai canvas {
    width: auto;
  }
  .section-ai .sticky-content {
    top: calc((100vh - 1080px) / 2);
  }
  .section-ai .section-ai-bg {
    height: 1080px;
  }
  .section-ai .content-title {
    top: 39%;
    left: 50%;
    margin-left: -175px;
    width: 370px;
    min-height: 190px;
  }
  .section-thermal-bg {
    background: #1e252b url("../../innergigabyte/images/thermal.jpg") center 25% no-repeat;
    color: #fff;
  }
  .icon-wifi6e {
    width: 111px;
  }
  .section-bezel-bg {
    height: 1080px;
    background-size: auto;
  }
  .section-bezel .screen-container {
    width: 880px;
    padding-bottom: 380px;
  }
  .section-friendly-bg {
    padding-top: 340px;
    background-size: auto;
  }
  .section-friendly .friendly-text {
    width: 580px;
  }
  .section-friendly .icons img {
    width: auto;
  }
  .section-friendly .tips {
    max-width: 410px;
  }
  .section-io-bg {
    height: 1090px;
    background-size: auto;
  }
  .section-aerohub-bg {
    height: 1767px;
    width: 1231px;
    background-size: auto;
  }
  .section-aerohub .content-box {
    width: 360px;
    padding-top: 67px;
    padding-left: 2px;
  }
  .icon-windowshelloicon {
    width: 100px;
  }
  .icon-dts-b {
    width: 107px;
  }
}
@media screen and (max-width: 1320px) {
  .section-creative .section-creative-bg {
    background-size: 644px auto;
  }
  .section-creative .sec3-pics {
    margin-top: 35vh;
    padding-bottom: 260px;
  }
  .section-thermal-bg {
    background-position-x: 40%;
  }
  .section-io-bg {
    background-size: 1320px auto;
    height: 749px;
  }
  .section-aerohub-bg {
    background-image: url("../../innergigabyte/images/aerohub-1320.png");
    width: auto;
    height: 1643px;
  }
  .section-aerohub .section-aerohub-bg > .container {
    max-width: 960px;
  }
  .section-aerohub .content-box {
    width: 362px;
    padding-top: 80px;
    padding-left: 0px;
    padding-bottom: 1277px;
  }
  .back-to-top:hover .iconText {
    margin-left: 2px;
  }
}
@media screen and (max-width: 960px) {
  .section-kv {
    background-size: cover;
  }
  .section-design .section-content {
    padding: 0;
  }
  .section-creative-bg {
    background-size: 1412px auto;
    padding-top: 496px;
  }
  .section-creative .row .sticky-content {
    position: static;
  }
  .section-creative .sec3-pics {
    margin-top: -35vh;
    padding-bottom: 260px;
  }
  .section-gpu .section-gpu-bg {
    padding-top: 350px;
    min-height: 0;
  }
  .section-gpu .canvas {
    width: 960px;
    margin-left: -480px;
  }
  .section-ai .sticky-content {
    top: 0;
  }
  .section-ai .section-ai-bg {
    background: url("../../innergigabyte/images/ai-960.jpg") center 0 no-repeat;
    height: auto;
    padding-top: 632px;
  }
  .section-ai .canvas {
    display: none;
  }
  .section-ai .content-title {
    position: static;
    width: auto;
    margin-left: auto;
    display: block;
    min-height: 0;
  }
  .section-ai-eyecare {
    background-position-x: 40%;
    background-position-y: top;
    color: #3c3c3c;
    background-size: 100%;
    padding-top: 100px;
  }
  .section-ai-eyecare .section-content {
    min-height: 400px;
    height: auto;
  }
  .section-ai-eyecare .section-content .ai-eyecare {
    margin-left: auto;
    margin-right: auto;
  }
  .section-ai-eyecare .canvas {
    background-size: cover !important;
    background-position: center !important;
  }
  .section-ai-eyecare .canvas:after {
    content: "";
    display: block;
    padding-bottom: 64.1025641026%;
  }
  .section-thermal-bg {
    background-position: 59% 0;
    height: auto;
    padding-top: 743px;
  }
  .section-thermal .section-content {
    position: relative;
    margin-top: -35vh;
  }
  .section-thermal > .sticky-content {
    position: relative;
    height: auto;
  }
  .section-thermal > .sticky-content::after {
    content: "";
    display: block;
    height: 100vh;
  }
  .section-thermal .sticky-content .canvas {
    height: 100vh;
  }
  .section-display {
    background: url("../../innergigabyte/images/display-step2-line.jpg") center 0 repeat-y;
    background-size: 170vh 1px;
  }
  .section-display > .sticky-content {
    position: relative;
    height: auto;
  }
  .section-display > .sticky-content::after {
    content: "";
    display: block;
    height: 100vh;
  }
  .section-display:after {
    height: 0;
  }
  .section-display .section-content {
    padding-top: 0;
    margin-top: -15vh;
  }
  .section-display-bg {
    background-size: 1100px auto;
    height: auto;
  }
  .section-bezel-bg {
    background: #d9dbda url("../../innergigabyte/images/bezel-960.jpg") center -150px no-repeat;
    height: auto;
    padding-top: 870px;
  }
  .section-bezel {
    background: url("../../innergigabyte/images/bezel-960-line.jpg") center 0 repeat-y;
  }
  .section-bezel > .sticky-content {
    position: relative;
    height: auto;
  }
  .section-bezel .screen-container {
    width: auto;
    padding-bottom: 0;
  }
  .section-bezel .section-content {
    color: #1e252a;
  }
  .section-bezel .right {
    margin-left: 0;
  }
  .section-bezel .color-aero {
    color: inherit;
  }
  .section-friendly {
    margin-top: 0;
  }
  .section-friendly .section-top {
    min-height: 0;
  }
  .section-friendly .timeline {
    display: none;
  }
  .section-friendly-bg {
    background-image: none;
    padding-top: 0;
  }
  .section-io-bg {
    background: #000 url("../../innergigabyte/images/io-960.jpg") center bottom no-repeat;
    background-size: 960px auto;
    height: auto;
    padding-bottom: 800px;
  }
  .section-io .tg-group-list {
    position: absolute;
    width: 100%;
    text-align: center;
    margin: 430px -15px 0;
  }
  .section-aerohub-bg {
    background-image: url("../../innergigabyte/images/aerohub-960.jpg");
    height: 796px;
  }
  .section-aerohub .section-aerohub-bg {
    background-position: center bottom;
    padding-bottom: 796px;
    height: auto;
  }
  .section-aerohub .section-aerohub-bg > .container {
    max-width: 640px;
  }
  .section-aerohub .content-box {
    width: auto;
    padding-top: auto;
    padding-left: 0px;
    margin-top: 0;
    padding-bottom: 3em;
  }
  .section-effects {
    margin-top: 0;
  }
  .section-effects .section-content {
    padding-top: 0;
  }
  .section-effects .section-content .section-effects-bg {
    height: auto;
    background-size: 1440px 810px;
  }
  .section-effects .section-content .section-effects-bg.step2 {
    padding-top: 570px;
  }
  .section-effects .section-content .section-effects-bg.step3 {
    background-position: 61% -350px;
    padding-top: 250px;
  }
  .section-effects .section-content .section-effects-bg.step4 {
    background-position: center bottom;
    padding-bottom: 740px;
    background-color: #949ab4;
    color: #231815;
  }
  .section-effects .row {
    padding: 0;
  }
  .section-sound-bg {
    background-size: 1440px auto;
    padding-top: 630px;
  }
  .design-slider li {
    height: 480px;
  }
  .design-slider .swiper-slide {
    height: 390px;
  }
  .design-slider .swiper-slide .text {
    padding: 0.8em;
    font-size: 0.8em;
    max-width: 150px;
  }
}
@media screen and (max-width: 631px) {
  .section-kv {
    background: url("../../innergigabyte/images/hero-sm.jpg") center bottom no-repeat;
    background-size: cover;
    min-height: 100vh;
  }
  .section-kv .content-box {
    margin-top: 100px;
    margin-bottom: 450px;
  }
  .section-kv .link-btn {
    flex-flow: column;
  }
  .section-kv .link-btn a {
    margin: 1.5rem 1rem 0 1rem;
  }
  .section-ai-eyecare {
    background-size: 200%;
    padding-top: 180px;
  }
  .section-ai-eyecare .section-content {
    margin-bottom: 60px;
    margin-top: 60px;
  }
  .section-ai-eyecare .ba-slider .ba-tag {
    transform-origin: right top;
    transform: scale(0.75);
  }
  .section-thermal-bg {
    background-size: 1440px auto;
    padding-top: 558px;
    background-position: 66% 0;
  }
  #fan-cancvas {
    transform: translateX(-10%);
  }
  .section-display-bg {
    background-size: 630px auto;
    padding-top: 310px;
  }
  .section-panel .section-panel-bg {
    height: auto;
    background-size: 3000px auto;
    background-position: 74% 0;
  }
  .section-bezel-bg {
    background-size: 720px auto;
    padding-top: 610px;
  }
  .section-bezel .big {
    font-size: 1em;
  }
  .section-bezel strong {
    font-weight: 500;
  }
  .section-aerohub-bg {
    background-image: url("../../innergigabyte/images/aerohub-600.jpg");
    height: 796px;
  }
  .section-sound-bg {
    background-size: 960px auto;
    padding-top: 430px;
  }
  .design-slider .swiper-slide {
    height: 290px;
  }
  .design-slider .swiper-slide .text {
    padding: 10px;
    font-size: 0.6em;
    max-width: 100px;
  }
}
.img-flex {
  position: relative;
  overflow: hidden;
}

.img-flex-wrapper {
  display: flex;
  width: 100%;
  transform: translateX(0);
}

.img-flex-wrapper > img {
  width: 100%;
  flex: 1 1 100%;
}

.carousel-caption {
  position: relative;
  right: 0px;
  bottom: 25px;
  left: 0;
  z-index: 10;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 10px;
  color: #8b8b8b;
  text-align: right;
  font-size: 11px;
  font-weight: bold;
}

.innergigabyteContent {
  box-sizing: border-box;
}
.innergigabyteContent *, .innergigabyteContent *::after, .innergigabyteContent *::before {
  box-sizing: inherit;
}

/*# sourceMappingURL=style.css.map */
