@charset "UTF-8";
/******************************************************************************
 * Version 1.0 Release;
 * Copyright 2018
 ******************************************************************************/
@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,400i,700,900");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  word-wrap: break-word;
  word-break: normal;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}
html body, body body {
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
mark {
  background: #ff0;
  color: #000;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 100%;
  background-color: transparent;
}

table > caption {
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
}

input, select {
  vertical-align: middle;
}

/*==================== 表單元素 - 去除ios預設外觀 input ====================*/
input,
textarea,
button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
}

/*==================== 表單元素 - 去除ie預設外觀 select ====================*/
select::-ms-expand {
  display: none;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*改寫iOS Safari中可點擊元素的高亮顏色*/
  font-size: initial;
}

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

a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*去除focus outline-chrome預設*/
a:focus,
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: 0;
}

form {
  width: 100%;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: none;
  padding: 0;
  line-height: inherit;
  color: #333;
  overflow: hidden;
  width: 100%;
}

label {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin-bottom: 3px;
  font-weight: bold;
}

/*隱藏小箭頭*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /*margin: 0;*/
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
}

input[type=radio],
input[type=checkbox] {
  margin-top: 1px \9 ;
  line-height: normal;
  vertical-align: baseline;
}

input[type=radio] {
  -webkit-appearance: radio;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=range] {
  display: block;
  width: 100%;
}

/*file、radio、checkbox的focus設定*/
input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/*placeholder*/
::-webkit-input-placeholder { /* WebKit browsers */
  color: #999;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #999;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #999;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #999;
}

/*額外新增*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*==================== 清單 ====================*/
ul,
ol {
  margin-top: 0;
  margin-bottom: 0.625em; /*10/16*/
  /* padding-left: 30px; */
}

/* 第二層崁套margin皆為0 */
ul > li > ul,
ul > li > ol,
ol > li > ol,
ol > li > ul {
  margin: 0;
  padding-left: 30px;
}

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

strong {
  font-weight: normal;
}

em {
  font-weight: normal;
  font-style: normal;
}

body {
  content: "xs";
}
@media (min-width: 768px) {
  body {
    content: "s";
  }
}
@media (min-width: 1024px) {
  body {
    content: "m";
  }
}
@media (min-width: 1280px) {
  body {
    content: "l";
  }
}
@media (min-width: 1440px) {
  body {
    content: "xl";
  }
}

::-moz-selection {
  color: #fff;
  background: #f0aa00;
}

::selection {
  color: #fff;
  background: #f0aa00;
}

.hide {
  display: none;
}
@media (min-width: 0) {
  .hide-xs {
    display: none;
  }
}
@media (min-width: 600px) {
  .hide-sm {
    display: none;
  }
}
@media (min-width: 768px) {
  .hide-md {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hide-lg {
    display: none;
  }
}
@media (min-width: 1280px) {
  .hide-xl {
    display: none;
  }
}
@media (min-width: 1440px) {
  .hide-xxl {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hide--lg {
    display: none;
  }
}

.block {
  display: block;
}
@media (min-width: 0) {
  .block-xs {
    display: block;
  }
}
@media (min-width: 600px) {
  .block-sm {
    display: block;
  }
}
@media (min-width: 768px) {
  .block-md {
    display: block;
  }
}
@media (min-width: 1024px) {
  .block-lg {
    display: block;
  }
}
@media (min-width: 1280px) {
  .block-xl {
    display: block;
  }
}
@media (min-width: 1440px) {
  .block-xxl {
    display: block;
  }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
}

.link-break {
  word-break: break-all;
}

.border {
  border: 1px solid #ddd;
}

.bg-gray {
  background: #F5F5F5;
}

.price-sell {
  color: #333;
  font-size: 12px;
  margin-bottom: 5px;
}

.price-offer {
  color: #e33000;
  margin-bottom: 5px;
}

.price-cht {
  margin-right: 5px;
}

.price-num {
  display: inline-block;
}
.price-num::before {
  content: "NT$";
  display: inline;
  margin-right: 0.3125em;
}

.price-num-simple::before {
  content: "$";
  display: inline;
  margin-right: 0.15em;
}

.integral {
  color: #F09400;
  margin-bottom: 5px;
}

.integral-cht {
  margin-right: 3px;
  font-size: 12px;
}

.integral-num {
  font-size: 16px;
  font-weight: bold;
}

.price-range {
  font-size: 16px;
}
.price-range__pre-text {
  color: #333;
  font-weight: bold;
}
.price-range__num::before {
  content: "$";
  display: inline;
  margin-right: 0.3125em;
}
.phone-verify {
  position: relative;
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
  color: #333;
  width: 26px;
  margin: -4px 0;
}
.phone-verify::before, .phone-verify::after {
  font-family: "icomoon";
}
.phone-verify::before {
  content: "\e912";
  font-size: 22px;
  color: #999;
}
.phone-verify::after {
  content: "\e919";
  color: #999;
  position: absolute;
  right: -1px;
  top: -1px;
  font-size: 16px;
}
.phone-verify--success::after {
  content: "\e91a";
  color: #0cac00;
}

.info-finish {
  display: none;
}
.info-finish--show {
  display: block;
}

.hover-mask {
  position: relative;
}
.hover-mask::before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 1;
}
.hover-mask:hover::before {
  opacity: 0.06;
}

.btnbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 10px;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  background-image: none;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: bold;
  border-radius: 50px;
}
.btn:focus, .btn:active {
  outline-offset: -2px;
  text-decoration: none;
}
.btn:active {
  background-image: none;
  outline: 0;
}
@media (min-width: 1024px) {
  .btn:hover {
    text-decoration: none;
  }
}
.btn-md {
  font-weight: bold;
  font-size: 28px;
  height: 60px;
  width: 190px;
  line-height: 1;
}
@media (min-width: 1024px) {
  .btn-md {
    height: 80px;
    width: 300px;
    font-size: 34px;
  }
}
.btn--default {
  background: #fff;
  color: #FF30DF;
}
.btn--default:focus, .btn--default:active {
  background: rgba(255, 48, 223, 0.8);
  color: #fff;
}
@media (min-width: 1024px) {
  .btn--default:hover {
    background: rgba(255, 48, 223, 0.8);
    color: #fff;
  }
}
.btn--primary {
  background: #333;
  color: #fff;
}
.btn--primary:focus, .btn--primary:active {
  background: rgba(51, 51, 51, 0.8);
  color: #fff;
}
@media (min-width: 1024px) {
  .btn--primary:hover {
    background: rgba(51, 51, 51, 0.8);
    color: #fff;
  }
}

.bg-round {
  border-radius: 100px;
  position: relative;
}
@media (min-width: 1024px) {
  .bg-round {
    border-radius: 400px;
  }
}
.bg-round::before {
  content: "";
  display: block;
  border-radius: 100px;
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .bg-round::before {
    border-radius: 400px;
  }
}
.bg-round--blue::before {
  top: -58px;
  bottom: 295px;
  background: #3AC9FF;
}
@media (min-width: 1024px) {
  .bg-round--blue::before {
    top: -225px;
  }
}
.bg-round--yellow::before {
  top: 0;
  bottom: 700px;
  background: #FFBE4D;
}
@media (min-width: 768px) {
  .bg-round--yellow::before {
    bottom: 310px;
  }
}
@media (min-width: 1280px) {
  .bg-round--yellow::before {
    bottom: 410px;
  }
}
.hide-text {
  height: 0;
  display: block;
  text-indent: 100%;
  overflow: hidden;
}

/*iconfont*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?t=20210906v1");
  src: url("../fonts/icomoon.eot?t=20210906v1") format("embedded-opentype"), url("../fonts/icomoon.ttf?t=20210906v1") format("truetype"), url("../fonts/icomoon.woff?t=20210906v1") format("woff"), url("../fonts/icomoon.svg?t=20210906v1") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  /*overflow: hidden;*/
  vertical-align: middle;
  /*i元素-目前專給icon使用*/
  font-size: 24px;
  position: relative;
  pointer-events: none;
}

.icon-arrow_upward:before {
  content: "\e906";
}

.icon-arrow_left:before {
  content: "\e904";
}

.icon-arrow_right:before {
  content: "\e905";
}

.icon-close:before {
  content: "\e903";
}

.icon-nav:before {
  content: "\e900";
}

.icon-instagram:before {
  content: "\e901";
}

.icon-facebook:before {
  content: "\e902";
}

/*!
 * Bootstrap Grid v4.6.0 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 600px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.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-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-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-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-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%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.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: 600px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .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: 1024px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .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: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .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: 1440px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-last {
    order: 13;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-6 {
    order: 6;
  }
  .order-xxl-7 {
    order: 7;
  }
  .order-xxl-8 {
    order: 8;
  }
  .order-xxl-9 {
    order: 9;
  }
  .order-xxl-10 {
    order: 10;
  }
  .order-xxl-11 {
    order: 11;
  }
  .order-xxl-12 {
    order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.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 {
  display: flex !important;
}

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

@media (min-width: 600px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .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: 1024px) {
  .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: 1280px) {
  .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: 1440px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-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;
  }
}
.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 {
  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: 600px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .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: 1024px) {
  .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: 1280px) {
  .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: 1440px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

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

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

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

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

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

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

.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-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: 600px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-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;
  }
  .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;
  }
  .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-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: 1024px) {
  .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;
  }
  .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;
  }
  .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-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: 1280px) {
  .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;
  }
  .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;
  }
  .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-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: 1440px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
body {
  color: #333;
  font: 100%/1.7 "Rubik", "-apple-system", BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

a {
  color: #333;
  text-decoration: none;
}
a:focus, a:active {
  color: #333;
  text-decoration: none;
  outline: 0;
}
@media (min-width: 1024px) {
  a:hover {
    color: #333;
    text-decoration: none;
    outline: 0;
  }
}

.heading1,
.heading2,
.heading3,
.heading4,
.heading5,
.heading6 {
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
  color: #333;
}

.heading1 {
  font-size: 30px;
  margin-bottom: 5px;
}
@media (min-width: 1024px) {
  .heading1 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

.heading2 {
  font-size: 16px;
  margin: 0 0 15px;
}

.heading6 {
  font-size: 1em;
}

.heading-desc {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .heading-desc {
    margin-bottom: 40px;
  }
}

.page-paragraph {
  font-size: 14px;
  line-height: 1.7;
}

.time {
  font-size: 12px;
  color: #999;
  font-weight: 300;
}

.text {
  font-size: 14px;
}

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

.text-primary {
  color: #F09400;
}
.text-primary:hover, .text-primary:focus {
  color: #F09400;
}

.text-secondary {
  color: #e33000;
}
.text-secondary:hover, .text-secondary:focus {
  color: #e33000;
}

.text-dark {
  color: #333;
}
.text-dark:hover, .text-dark:focus {
  color: #333;
}

.text-third {
  color: #888;
}

.text-fourth {
  color: #eee;
}

.text-success {
  color: #0cac00;
}
.text-success:hover, .text-success:focus {
  color: #0cac00;
}

.text-info {
  color: #888;
}
.text-info:hover, .text-info:focus {
  color: #888;
}

.text-warning {
  color: #e33000;
}
.text-warning:hover, .text-warning:focus {
  color: #e33000;
}

.bg-primary {
  background: #FF30DF;
}

.btn-link {
  text-decoration: underline;
  background: transparent;
}
.btn-link:active {
  text-decoration: none;
}

.listtext {
  padding: 0 0 0 30px;
  line-height: 1.4;
}
.listtext--no {
  padding-left: 0;
  list-style-type: none;
}
.listtext--decimal-arc {
  counter-reset: counter;
}
.listtext--decimal-arc > .listtext__item {
  list-style: none;
  position: relative;
}
.listtext--decimal-arc > .listtext__item::before {
  counter-increment: counter;
  content: "(" counter(counter) ")";
  position: absolute;
  left: -1.5em;
}
.listtext--cjk-arc {
  counter-reset: counter;
  padding-left: 1.5em;
}
.listtext--cjk-arc > .listtext__item {
  list-style: none;
  position: relative;
  padding-left: 0.3em;
}
.listtext--cjk-arc > .listtext__item::before {
  counter-increment: counter;
  content: "(" counter(counter, cjk-ideographic) ")";
  position: absolute;
  left: -1.5em;
}
.listtext__item {
  margin-bottom: 15px;
}
.listtext--disc > .listtext__item {
  list-style-type: disc;
}
.listtext--circle > .listtext__item {
  list-style-type: circle;
}
.listtext--square > .listtext__item {
  list-style-type: square;
}
.listtext--no > .listtext__item {
  list-style-type: none;
}
.listtext--decimal > .listtext__item {
  list-style-type: decimal;
}
.listtext--cjk > .listtext__item {
  list-style-type: cjk-ideographic;
}
.listtext--lowerlatin > .listtext__item {
  list-style-type: lower-latin;
}
.listtext__field {
  display: block;
  float: left;
  text-align: right;
  width: 90px;
}
.listtext__data {
  display: block;
  padding: 0 0 0 90px;
  word-break: break-all;
  word-wrap: break-word;
}

.listtext--gap > .listtext__item {
  margin-bottom: 1.5em;
}
.listtext--lg > .listtext__item {
  font-size: 14px;
  font-weight: bold;
}
.listtext__item * {
  font-weight: initial;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .listtext__item * {
    font-size: medium;
    font-weight: normal;
  }
}

.text-article {
  line-height: 1.625;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.text-article .listtext--cjk {
  padding-left: 2.5em;
}
.text-article .listtext--disc {
  padding-left: 1.5em;
}
.text-article__heading {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}
.text-article__heading--bg {
  font-size: 16px;
  background: #F5F5F5;
  padding: 0.625em;
}
@media (min-width: 768px) {
  .text-article__heading:first-child {
    margin-top: 20px;
  }
}
.text-article__heading--black {
  color: inherit;
}
.text-article__heading--gap-sm {
  margin-bottom: 0.3333333333em;
}
.text-article__subheading {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  font-size: 14px;
}
.text-article__paragraph {
  margin: 0 0 2.15em;
}
.text-article__paragraph--gap-top {
  margin-top: 2.15em;
}

.note {
  font-size: 14px;
  margin-bottom: 10px;
}

.list-report {
  padding: 0;
  list-style: none;
}
.list-report__item {
  margin-bottom: 15px;
  display: flex;
  font-size: 14px;
}
.list-report__item:last-child {
  margin-bottom: 0;
}
.list-report__item--all {
  flex-wrap: wrap;
}
.list-report__title {
  font-weight: bold;
  flex-shrink: 0;
  color: #333;
  float: none;
  width: 80px;
  text-align: left;
}
.list-report__item--all .list-report__title {
  float: none;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}
.list-report__title::after {
  content: "：";
  display: inline;
}
.list-report__item--all .list-report__title::after {
  display: none;
}
.list-report__data {
  word-break: break-all;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .list-report__data {
    padding-left: 0;
  }
}
.list-report__item--all .list-report__data {
  padding-left: 0;
}

.slide {
  position: relative;
}
@media (min-width: 1024px) {
  .slide--padding-lg {
    padding: 0 42px;
  }
}

.carousel__imgbox {
  overflow: hidden;
  position: relative;
}
.carousel__imgbox::after {
  content: "";
  display: block;
}
.carousel__link {
  display: block;
}
.carousel__img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
}
.carousel__dotbox {
  font-size: 0;
  letter-spacing: -4px;
  padding: 10px 0;
  text-align: center;
  word-spacing: 0;
  position: absolute;
  bottom: 0;
  text-align: center;
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .carousel__dotbox {
    bottom: 5px;
  }
}
.carousel__dotbox-item {
  width: 14px;
  height: 14px;
  display: inline-block;
  *display: inline;
  font-size: 16px;
  letter-spacing: normal;
  margin: 0 5px;
  vertical-align: top;
  word-spacing: normal;
  zoom: 1;
}
.carousel__dotbox-link {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  pointer-events: none;
  cursor: default;
}
@media (min-width: 1024px) {
  .carousel__dotbox-link {
    pointer-events: inherit;
    cursor: pointer;
  }
}
.carousel__dotbox-item--current > .carousel__dotbox-link {
  background: none;
}
.carousel__btnbox {
  display: none;
}
@media (min-width: 1024px) {
  .carousel__btnbox {
    display: block;
  }
}
.carousel__btn {
  position: absolute;
  z-index: 2;
  display: inline-block;
  height: 52px;
  width: 52px;
  top: 50%;
  bottom: inherit;
  margin: -26px 0 0;
  text-align: center;
  line-height: 52px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}
.carousel__btn:focus, .carousel__btn:active {
  color: #fff;
}
@media (min-width: 1024px) {
  .carousel__btn:hover {
    color: #fff;
  }
}
.carousel__btnbox--sm .carousel__btn {
  font-size: 30px;
}
.carousel__btnbox--box .carousel__btn {
  border: 1px solid #ddd;
  width: 28px;
  height: 28px;
  color: #888;
  border-color: #bbb;
  line-height: 26px;
  text-align: center;
}
.carousel__btnbox--box .carousel__btn:focus, .carousel__btnbox--box .carousel__btn:active {
  color: #FF30DF;
}
@media (min-width: 1024px) {
  .carousel__btnbox--box .carousel__btn:hover {
    color: #FF30DF;
  }
}
.carousel__btnbox--box .carousel__btn--disabled {
  background: #eee;
  border-color: #eee;
  color: #bbb;
  cursor: not-allowed;
  border: none;
}
.carousel__btnbox--box .carousel__btn--disabled:focus, .carousel__btnbox--box .carousel__btn--disabled:active {
  background: #eee;
  border-color: #eee;
  color: #bbb;
}
@media (min-width: 1024px) {
  .carousel__btnbox--box .carousel__btn--disabled:hover {
    background: #eee;
    border-color: #eee;
    color: #bbb;
  }
}
.carousel__btn-icon {
  font-size: 52px;
  display: inline-block;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.carousel__btnbox--box .carousel__btn-icon {
  font-size: 12px;
  text-shadow: none;
  font-weight: bold;
}
.carousel__btn-prev {
  left: 0;
}
.carousel__btn-next {
  right: 0;
}

.owl-carousel .owl-nav {
  cursor: pointer;
  z-index: 999;
  width: 100%;
}

.owl-theme .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF30DF;
  border: none;
  font-weight: normal;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  top: 18%;
}
@media (min-width: 768px) {
  .owl-theme .owl-nav [class*=owl-] {
    top: 16%;
  }
}
@media (min-width: 1024px) {
  .owl-theme .owl-nav [class*=owl-] {
    width: 60px;
    height: 60px;
    top: calc(50% - 45px);
  }
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  font-size: 38px;
  color: #FF30DF;
  overflow: hidden;
}

.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:active,
.owl-carousel .owl-nav button.owl-prev:hover {
  background: transparent;
  color: #333;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 62px;
}
@media (min-width: 768px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: 57px;
  }
}
@media (min-width: 1024px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: -90px;
  }
}

.owl-carousel .owl-nav button.owl-next {
  right: 62px;
}
@media (min-width: 768px) {
  .owl-carousel .owl-nav button.owl-next {
    right: 57px;
  }
}
@media (min-width: 1024px) {
  .owl-carousel .owl-nav button.owl-next {
    right: -90px;
  }
}

.owl-theme .owl-nav [class*=owl-] span {
  padding-top: 60px;
}

.owl-theme .owl-nav [class*=owl-] span:before {
  font-family: "icomoon";
  font-size: 18px;
  display: inline;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.owl-theme .owl-nav .owl-prev span:before {
  content: "\e92b";
}

.owl-theme .owl-nav .owl-next span:before {
  content: "\e904";
}

.owl-theme .owl-nav [class*=owl-] i {
  font-size: 36px;
}
@media (min-width: 1024px) {
  .owl-theme .owl-nav [class*=owl-] i {
    font-size: 60px;
  }
}

.owl-carousel.carousel__nav--over .owl-nav [class*=owl-] {
  width: 50px;
  height: 50px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.owl-carousel.carousel__nav--over .owl-nav button.owl-next,
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev {
  font-size: 50px;
  color: #fff;
  background-color: transparent;
  opacity: 0.5;
}
.owl-carousel.carousel__nav--over .owl-nav button.owl-next:active,
.owl-carousel.carousel__nav--over .owl-nav button.owl-next:hover,
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev:active,
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev:hover {
  background: transparent;
  color: #fff;
  opacity: 1;
}
.owl-carousel.carousel__nav--over .owl-nav button.owl-prev {
  left: 0;
}
.owl-carousel.carousel__nav--over .owl-nav button.owl-next {
  right: 0;
}
.owl-carousel.carousel__nav--over .owl-nav [class*=owl-] span {
  padding-top: 50px;
}
.owl-carousel.carousel__nav--over .owl-nav [class*=owl-] span:before {
  font-size: 50px;
}

.carousel__dotbox--over .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.owl-theme .owl-dots {
  margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
  background: #fff;
  border: 1px solid #FF30DF;
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 18px;
    height: 18px;
  }
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #FF30DF;
  opacity: 1;
}

.owl-theme.carousel__dotbox--dark .owl-dots .owl-dot span {
  background: #000;
}

.owl-theme.carousel__dotbox--dark .owl-dots .owl-dot.active span,
.owl-theme.carousel__dotbox--dark .owl-dots .owl-dot:hover span {
  background: #000;
}

/* @charset "UTF-8"; */
:root {
  /* 自行設定 */
  --f-offset: 100px; /* 偏移量 */
  --f-time: 0.05s; /* transition duration */
}

.js-animate--text span.js-animate__item {
  display: inline-block;
}

/* 漸入 FadeIn
==================================== */
.js-animate--fadein {
  opacity: 0;
}

.js-animate--fadein-up {
  opacity: 0;
  transform: translate(0, -30px);
  /* transform: translate(0, calc( var(--f-offset) * -1)); */
}

.js-animate--fadein-down {
  opacity: 0;
  transform: translate(0, 30px);
  /* transform: translate(0, var(--f-offset)); */
}

.js-animate--fadein-left {
  opacity: 0;
  transform: translate(-80px, 0);
  /* transform: translate(calc( var(--f-offset) * -1), 0); */
}

.js-animate--fadein-right {
  opacity: 0;
  transform: translate(80px, 0);
  /* transform: translate(var(--f-offset), 0); */
}

/* 色塊進入 SolidIn
==================================== */
[class*=js-animate--solidin] {
  position: relative;
  opacity: 0;
  transition: 1700ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms;
}

[class*=js-animate--solidin]::before,
[class*=js-animate--solidin]::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

[class*=js-animate--solidin]::before {
  background: #183981; /* 色塊顏色 */
  z-index: 1;
  transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

[class*=js-animate--solidin]::after {
  background: #fff; /* 父層背景顏色 */
  z-index: 2;
  transition: 1.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-animate--solidin-up {
  transform: translateY(50px);
}

.js-animate--solidin-up::before,
.js-animate--solidin-up::after {
  transform-origin: center top;
}

.js-animate--solidin-down {
  transform: translateY(-50px);
}

.js-animate--solidin-down::before,
.js-animate--solidin-down::after {
  transform-origin: center bottom;
}

.js-animate--solidin-left {
  transform: translateX(-50px);
}

.js-animate--solidin-left::before,
.js-animate--solidin-left::after {
  transform-origin: right top;
}

.js-animate--solidin-right {
  transform: translateX(50px);
}

.js-animate--solidin-right::before,
.js-animate--solidin-right::after {
  transform-origin: left top;
}

/* 遮罩overflow MaskIn
==================================== */
[class*=js-animate--maskin] {
  overflow: hidden;
}

.js-animate--maskin-up,
.js-animate--maskin-down {
  white-space: nowrap;
}

.js-animate--maskin-left .js-animate__item {
  transform: translateX(-100%);
}

.js-animate--maskin-right .js-animate__item {
  transform: translateX(100%);
}

.js-animate--maskin-up .js-animate__item {
  transform: translateY(-100%);
}

.js-animate--maskin-down .js-animate__item {
  transform: translateY(100%);
}

/* 翻牌 FlipIn
==================================== */
.js-animate--flipin .js-animate__item {
  /* perspective: 100px; */
  display: inline-block;
  opacity: 0;
  transform: perspective(100px) rotateY(-45deg);
}

/* Active 放後面覆蓋
==================================== */
.js-animate--active,
.js-animate--active .js-animate__item {
  opacity: 1;
  transform: none;
  /* transition: opacity 1s, transform 1s; */
  transition-duration: 1s, 1s;
  transition-property: opacity, transform;
  /* transition: opacity var(--f-time), transform var(--f-time); */
}

.js-animate--solidin-up.js-animate--active::before,
.js-animate--solidin-up.js-animate--active::after,
.js-animate--solidin-down.js-animate--active::before,
.js-animate--solidin-down.js-animate--active::after {
  transform: scaleY(0);
}

.js-animate--solidin-left.js-animate--active::before,
.js-animate--solidin-left.js-animate--active::after,
.js-animate--solidin-right.js-animate--active::before,
.js-animate--solidin-right.js-animate--active::after {
  transform: scaleX(0);
}

[class*=js-animate--maskin].js-animate--active .js-animate__item {
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.js-animate--flipin.js-animate--active .js-animate__item {
  transform: perspective(100px) rotateY(0);
}

/* Delay & Duration
==================================== */
.animate-delay50 {
  transition-delay: 0.05s;
}

.animate-delay100 {
  transition-delay: 0.1s;
}

.animate-delay150 {
  transition-delay: 0.15s;
}

.animate-delay200 {
  transition-delay: 0.2s;
}

.animate-delay250 {
  transition-delay: 0.25s;
}

.animate-delay300 {
  transition-delay: 0.3s;
}

.animate-delay400 {
  transition-delay: 0.4s;
}

.animate-delay500 {
  transition-delay: 0.5s;
}

.animate-delay600 {
  transition-delay: 0.6s;
}

.animate-delay700 {
  transition-delay: 0.7s;
}

.animate-delay800 {
  transition-delay: 0.8s;
}

.animate-delay900 {
  transition-delay: 0.9s;
}

.animate-delay1000 {
  transition-delay: 1s;
}

.animate-dur100,
.animate-dur100::before,
.animate-dur100::after {
  transition-duration: 0.1s;
}

.animate-dur200,
.animate-dur200::before,
.animate-dur200::after {
  transition-duration: 0.2s;
}

.animate-dur300,
.animate-dur300::before,
.animate-dur300::after {
  transition-duration: 0.3s;
}

.animate-dur400,
.animate-dur400::before,
.animate-dur400::after {
  transition-duration: 0.4s;
}

.animate-dur500,
.animate-dur500::before,
.animate-dur500::after {
  transition-duration: 0.5s;
}

.animate-dur1500 {
  transition-duration: 1.5s;
}

.animate-dur2000 {
  transition-duration: 2s;
}

@media (min-width: 768px) {
  .animate-delay100-md {
    transition-delay: 0.1s;
  }
  .animate-delay150-md {
    transition-delay: 0.15s;
  }
  .animate-delay200-md {
    transition-delay: 0.2s;
  }
  .animate-delay250-md {
    transition-delay: 0.25s;
  }
  .animate-delay300-md {
    transition-delay: 0.3s;
  }
  .animate-delay400-md {
    transition-delay: 0.4s;
  }
  .animate-delay500-md {
    transition-delay: 0.5s;
  }
  .animate-delay600-md {
    transition-delay: 0.6s;
  }
  .animate-delay700-md {
    transition-delay: 0.7s;
  }
  .animate-delay800-md {
    transition-delay: 0.8s;
  }
  .animate-delay900-md {
    transition-delay: 0.9s;
  }
  .animate-delay1000-md {
    transition-delay: 1s;
  }
}
@media (min-width: 1024px) {
  .animate-delay100-lg {
    transition-delay: 0.1s;
  }
  .animate-delay150-lg {
    transition-delay: 0.15s;
  }
  .animate-delay200-lg {
    transition-delay: 0.2s;
  }
  .animate-delay250-lg {
    transition-delay: 0.25s;
  }
  .animate-delay300-lg {
    transition-delay: 0.3s;
  }
  .animate-delay400-lg {
    transition-delay: 0.4s;
  }
  .animate-delay500-lg {
    transition-delay: 0.5s;
  }
  .animate-delay600-lg {
    transition-delay: 0.6s;
  }
  .animate-delay700-lg {
    transition-delay: 0.7s;
  }
  .animate-delay800-lg {
    transition-delay: 0.8s;
  }
  .animate-delay900-lg {
    transition-delay: 0.9s;
  }
  .animate-delay1000-lg {
    transition-delay: 1s;
  }
}
body.header-fixed {
  overflow: hidden;
}
body.scroll-fixed {
  overflow: hidden;
}
body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.wrap {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  background: #F5F5F5;
}
@media (min-width: 1024px) {
  .wrap {
    font-size: 18px;
    min-height: 100%;
  }
}

.tool {
  position: fixed;
  right: 10px;
  top: 30px;
  z-index: 100000000000;
}
@media (min-width: 1024px) {
  .tool {
    position: static;
  }
}

.wrap__inner {
  margin: 0 auto;
  padding: 0 36px;
  max-width: 1280px;
  position: relative;
}
@media (min-width: 1440pxpx) {
  .wrap__inner {
    padding: 0;
  }
}
.wrap__inner--no-padding {
  padding: 0;
}
.wrap__inner--768 {
  max-width: 768px;
}
@media (min-width: 768px) {
  .wrap__inner--768 {
    padding: 0 15px;
  }
}
.wrap__inner--1000 {
  max-width: 1000px;
}
@media (min-width: 1024px) {
  .wrap__inner--1000 {
    padding: 0;
  }
}
.wrap__inner--full {
  max-width: 100%;
}
@media (min-width: 1024px) {
  .wrap__inner::after {
    content: " ";
    display: block;
    clear: both;
    line-height: 0;
    height: 0;
    visibility: hidden;
  }
}

.no-padding-top {
  margin: -15px 0 0;
}
@media (min-width: 768px) {
  .no-padding-top {
    margin: -30px 0 0;
  }
}

.header {
  background: #333;
  height: 50px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .header {
    height: 80px;
    display: flex;
    align-items: center;
  }
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.header__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  min-width: 45px;
  text-decoration: none;
  color: #fff;
}
.header__btn-text {
  display: none;
}
@media (min-width: 1024px) {
  .header__function {
    z-index: 11;
    position: relative;
  }
}
@media (min-width: 1280px) {
  .header__function {
    right: 0;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    position: static;
    transform: translateX(0%);
    float: left;
  }
}

@media (min-width: 1024px) {
  .header-fixed-web .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header::before {
    content: none;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header__inner {
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1400px;
  }
}
@media (min-width: 1280px) {
  .header-fixed-web .header__inner {
    padding: 0 15px;
  }
}
@media (min-width: 1430px) {
  .header-fixed-web .header__inner {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header__logo {
    width: 100px;
    height: 34px;
    margin: 0;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .header__inner-bar {
    flex-grow: 1;
    padding-left: 30px;
  }
}
@media (min-width: 1280px) {
  .header-fixed-web .header__inner-bar {
    padding-left: 50px;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .nav__item {
    margin-right: 30px;
  }
}
@media (min-width: 1280px) {
  .header-fixed-web .nav__item {
    margin-right: 50px;
  }
}
@media (min-width: 1024px) {
  .header-fixed-web .content:before {
    content: "";
    height: 64px;
  }
}

.content {
  min-height: 50vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .content {
    min-height: initial;
  }
}

.section {
  margin: 0 0 30px;
}
.section:last-child.section--gray {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .section--gap-large {
    margin: 0 0 50px;
  }
}
.section--gray {
  padding: 25px 0;
  background: #F5F5F5;
}
@media (min-width: 1024px) {
  .section--gray {
    padding: 35px 0;
  }
}
.section__heading {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .section__heading {
    text-align: center;
  }
}
.section__subheading {
  margin-bottom: 15px;
  color: #333;
  line-height: 1.3;
  font-weight: bold;
  font-size: 16px;
}
.section__title {
  margin-bottom: 15px;
  color: #333;
  line-height: 1.3;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 1024px) {
  .section--gap-large .section__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
.section__text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.section__btn-loadmore {
  margin: 20px 0 0 0;
}
@media (min-width: 1024px) {
  .section__btn-loadmore {
    background: transparent;
    border: none;
    color: #333;
    font-weight: normal;
    width: auto;
    margin: 0;
    position: absolute;
    right: 0;
    top: 5px;
    padding: 0;
  }
  .section__btn-loadmore:hover {
    background: transparent;
    border: none;
    color: #F09400;
  }
}
.section__btn-loadmore-icon {
  font-size: 20px;
  display: none;
}
@media (min-width: 1024px) {
  .section__btn-loadmore-icon {
    display: inline-block;
    margin: -1px 0 0 5px;
  }
}

.section2 {
  margin: 0 0 20px;
}

@media (min-width: 1024px) {
  .section-side {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .section-side--gray {
    background: #F5F5F5;
    padding: 16px 14px;
  }
}
@media (min-width: 1024px) {
  .section-side__heading {
    color: #033e7c;
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1em;
  }
}

@media (min-width: 1024px) {
  .wrap-content::after {
    content: " ";
    display: block;
    clear: both;
    line-height: 0;
    height: 0;
    visibility: hidden;
  }
}

.main {
  width: 100%;
}
@media (min-width: 1024px) {
  .main {
    padding-left: calc(200px + 3.5%);
    flex-grow: 1;
  }
}

.sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar {
    display: block;
    float: left;
    width: 200px;
    position: sticky;
    top: 10px;
    z-index: 3;
  }
}

.footer {
  background: #333;
  color: #fff;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .footer {
    height: 80px;
  }
}
.footer a {
  color: #fff;
}
@media (min-width: 1024px) {
  .footer__inner::after {
    display: none;
  }
}
@media (min-width: 1024px) {
  .footer__infobox {
    display: flex;
    align-items: center;
  }
}
.footer__logobox {
  width: 85px;
  margin: 0 0 25px;
}
@media (min-width: 1024px) {
  .footer__logobox {
    width: 118px;
    margin: 0 30px 0 0;
  }
}
@media (min-width: 1024px) {
  .footer__copyright {
    font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .footer__copyright br {
    display: none;
  }
}

.contactlist {
  margin: 0 0 15px;
}
@media (min-width: 1024px) {
  .contactlist {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    font-size: 18px;
  }
}
.contactlist__item {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .contactlist__item {
    position: relative;
  }
}
@media (min-width: 1024px) {
  .contactlist__item:first-child {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .contactlist__item:nth-child(2) {
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  .contactlist__item:nth-child(2)::after {
    content: "";
    width: 1px;
    background: #fff;
    height: 18px;
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 0;
  }
}
@media (min-width: 1024px) {
  .contactlist__item:nth-child(3) {
    padding-left: 10px;
  }
}

.gotop {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}
@media (min-width: 1024px) {
  .gotop {
    bottom: 30px;
    left: 50px;
  }
}
.gotop__btn {
  border-radius: 50%;
  background: #FF30DF;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  text-decoration: none;
}
.gotop__btn:focus, .gotop__btn:active {
  background: rgba(255, 48, 223, 0.8);
}
@media (min-width: 1024px) {
  .gotop__btn:hover {
    background: rgba(255, 48, 223, 0.8);
  }
}
@media (min-width: 1024px) {
  .gotop__btn {
    transition: 0.3s background cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.gotop__btn-icon {
  color: #fff;
  font-size: 20px;
  margin-top: -3px;
  transition: transform 0.25s ease-in-out;
}
.gotop--down .gotop__btn-icon {
  transform: rotate(180deg);
}
.gotop__text {
  display: none;
}

.logo {
  overflow: hidden;
  width: 165px;
  height: 25px;
}
@media (min-width: 1024px) {
  .logo {
    width: 220px;
    height: 29px;
  }
}
.logo__link {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
}
.logo__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}

@media (min-width: 1024px) {
  .navbar__inner {
    position: relative;
  }
}

@media (min-width: 1024px) {
  .nav-wrap {
    position: fixed;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 10;
  }
}
.nav-wrap__trigger {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff30df;
  position: relative;
  z-index: 2;
  color: #fff;
}
.nav-wrap__trigger:focus, .nav-wrap__trigger:active {
  color: #fff;
}
@media (min-width: 1024px) {
  .nav-wrap__trigger:hover {
    color: #fff;
  }
}
@media (min-width: 1024px) {
  .nav-wrap__trigger {
    display: none;
  }
}
.nav-wrap--open .nav-wrap__trigger-icon::before {
  content: "\e903";
}
.nav-wrap__dropbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.15s;
}
@media (min-width: 1024px) {
  .nav-wrap__dropbox-overlay {
    position: static;
    overflow: visible;
    transform: none;
    background: none;
    width: 100%;
    height: auto;
    pointer-events: auto;
  }
}
.nav-wrap--open .nav-wrap__dropbox-overlay {
  background: rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .nav-wrap--open .nav-wrap__dropbox-overlay {
    background: none;
  }
}
.nav-wrap__dropbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 350ms;
  overflow-y: auto;
  z-index: 2;
  overflow-X: hidden;
  background: rgba(255, 48, 223, 0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(101%);
  padding: 60px 0;
}
@media (min-width: 1024px) {
  .nav-wrap__dropbox {
    padding: 0;
    position: static;
    overflow: visible;
    transform: none;
    background: none;
    width: 100%;
    height: auto;
    max-height: none;
    transition: none;
    pointer-events: auto;
  }
}
.nav-wrap--open .nav-wrap__dropbox {
  z-index: 6;
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .nav-wrap--open .nav-wrap__dropbox {
    transform: none;
  }
}
.nav-wrap__dropbox-btnbox {
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .nav-wrap__dropbox-btnbox {
    display: none;
  }
}

.nav {
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .nav {
    margin: -10px 0;
  }
}
@media (min-width: 1024px) {
  .nav__item {
    margin: 10px 0;
  }
}
.nav__heading, .nav__link, .nav__sub-heading, .nav__sub-link, .nav__third-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  padding: 20px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.nav__heading:focus, .nav__heading:active, .nav__link:focus, .nav__link:active, .nav__sub-heading:focus, .nav__sub-heading:active, .nav__sub-link:focus, .nav__sub-link:active, .nav__third-link:focus, .nav__third-link:active {
  color: inherit;
}
@media (min-width: 1024px) {
  .nav__heading:focus, .nav__heading:hover, .nav__heading:active, .nav__link:focus, .nav__link:hover, .nav__link:active, .nav__sub-heading:focus, .nav__sub-heading:hover, .nav__sub-heading:active, .nav__sub-link:focus, .nav__sub-link:hover, .nav__sub-link:active, .nav__third-link:focus, .nav__third-link:hover, .nav__third-link:active {
    background: #fff;
  }
}
.nav__heading, .nav__link {
  position: relative;
}
@media (min-width: 1024px) {
  .nav__heading, .nav__link {
    text-indent: 100%;
    overflow: hidden;
    padding: 0;
    background: #FF30DF;
    border: 1px solid #FF30DF;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    overflow: hidden;
  }
}
@media (min-width: 1024px) {
  .nav__item--current .nav__heading, .nav__item--current .nav__link {
    background: #fff;
  }
}
.nav__heading {
  padding: 10px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 1024px) {
  .nav__heading {
    text-align: center;
    padding: 0;
    border: none;
  }
}
@media (min-width: 1024px) {
  .nav__heading:before {
    content: "";
    width: 100px;
    height: 67px;
    display: block;
    overflow: hidden;
    margin: 0 auto;
    background: url("../images/nav_bg.png?t=20210811v1") no-repeat;
  }
}
@media (min-width: 1024px) {
  .nav__item:nth-child(1) .nav__heading:before {
    background-position: 0 0;
  }
}
@media (min-width: 1024px) {
  .nav__item:nth-child(2) .nav__heading:before {
    background-position: -100px 0;
  }
}
@media (min-width: 1024px) {
  .nav__item:nth-child(3) .nav__heading:before {
    background-position: -200px 0;
  }
}
@media (min-width: 1024px) {
  .nav__item:nth-child(4) .nav__heading:before {
    background-position: -300px 0;
  }
}
@media (min-width: 1024px) {
  .nav__item:nth-child(5) .nav__heading:before {
    background-position: -400px 0;
  }
}
@media (min-width: 1024px) {
  .nav__item:nth-child(6) .nav__heading:before {
    background-position: -500px 0;
  }
}
.nav__heading-icon {
  width: 30px;
  height: 30px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ddd;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .nav__heading-icon {
    display: none;
  }
}
.nav__sub-heading {
  border-bottom: 1px solid hsla(0deg, 0%, 87%, 0.3);
}
@media (min-width: 1024px) {
  .nav__sub-heading {
    display: none;
  }
}
.nav__sub-heading-icon {
  font-size: 1em;
  margin-right: 0.5em;
  vertical-align: baseline;
}
.nav__sub-nav-wrap {
  transition: transform 0.35s;
  transition: all 0.35s;
  max-height: 0;
  opacity: 0;
}
@media (min-width: 1024px) {
  .nav__sub-nav-wrap {
    width: 170px;
    border: 1px solid #ddd;
    background: #fff;
    position: absolute;
    left: 0;
    top: 105px;
    visibility: hidden;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .nav__heading--active + .nav__sub-nav-wrap, .nav__item:hover .nav__sub-nav-wrap {
    max-height: initial;
    opacity: 1;
    visibility: visible;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav__sub-nav-wrap {
    width: 100%;
  }
}
.nav__heading--active + .nav__sub-nav-wrap {
  max-height: 2000px;
  opacity: 1;
}
@media (min-width: 1024px) {
  .nav__heading--active + .nav__sub-nav-wrap::before, .nav__item:hover .nav__sub-nav-wrap::before {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}
.nav__sub-nav {
  margin: 0;
  padding: 10px 0;
}
@media (min-width: 1024px) {
  .nav__sub-nav {
    padding: 20px;
    margin: -5px 0;
  }
}
@media (min-width: 1024px) {
  .nav__sub-item {
    flex: 0 0 100%;
  }
}
.nav__sub-link {
  padding-left: 20px;
}
@media (min-width: 1024px) {
  .nav__sub-link {
    padding: 10px 0;
  }
  .nav__sub-link:hover {
    font-weight: bold;
  }
}
@media (min-width: 1024px) {
  .nav__sub-item--current .nav__sub-link {
    color: #e33000;
  }
}

.nav-event {
  display: none;
}
@media (min-width: 1024px) {
  .nav-event {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    transition: transform 0.5s 0.35s, opacity 0.5s 0.35s;
    transform: translateY(10px);
    opacity: 0;
  }
}
@media (min-width: 1024px) {
  .nav__heading--active + .nav__sub-nav-wrap .nav-event, .nav__item:hover .nav-event {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (min-width: 1024px) {
  .nav-event__item {
    width: 50%;
    max-width: 210px;
    margin-left: 24px;
    position: relative;
  }
}
@media (min-width: 1024px) {
  .nav-event__imgbox {
    margin-bottom: 15px;
  }
}
@media (min-width: 1024px) {
  .nav-event__name {
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.4em;
    min-height: 3.4em;
    line-height: 1.7;
  }
}
@media (min-width: 1024px) {
  .nav-event__link {
    display: block;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 0;
    text-decoration: none;
  }
}

.social-media {
  margin-top: 5px;
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .social-media {
    position: fixed;
    top: 30px;
    right: 50px;
  }
}
@media (min-width: 1280px) {
  .social-media {
    right: 120px;
  }
}

.list-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: -5px 0;
}
.list-icon__item {
  overflow: hidden;
  margin: 5px 0;
}
.list-icon__link {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: 0.35s color cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .list-icon__link {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 1440px) {
  .list-icon__link {
    width: 100px;
    height: 100px;
  }
}
.list-icon__link:focus, .list-icon__link:active {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1024px) {
  .list-icon__link:hover {
    text-decoration: none;
    color: #fff;
  }
}
.list-icon__item--facebook .list-icon__link {
  background: #1877F2;
}
.list-icon__item--facebook .list-icon__link:focus, .list-icon__item--facebook .list-icon__link:active {
  background: rgba(24, 119, 242, 0.8);
}
@media (min-width: 1024px) {
  .list-icon__item--facebook .list-icon__link:hover {
    background: rgba(24, 119, 242, 0.8);
  }
}
.list-icon__item--instagram .list-icon__link {
  background: #ED000E; /* Old browsers */
  background: -moz-linear-gradient(45deg, #ED000E 0%, #C80081 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #ED000E 0%, #C80081 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #ED000E 0%, #C80081 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$instagram-end", endColorstr="$instagram-start",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.list-icon__item--instagram .list-icon__link:focus, .list-icon__item--instagram .list-icon__link:active {
  background: rgba(237, 0, 14, 0.8);
}
@media (min-width: 1024px) {
  .list-icon__item--instagram .list-icon__link:hover {
    background: rgba(237, 0, 14, 0.8);
  }
}
.list-icon__icon {
  font-size: 30px;
}
@media (min-width: 1024px) {
  .list-icon__icon {
    font-size: 50px;
  }
}
@media (min-width: 1440px) {
  .list-icon__icon {
    font-size: 70px;
  }
}

.nav-footer {
  padding: 0;
}
@media (min-width: 768px) {
  .nav-footer {
    display: flex;
    justify-content: space-around;
  }
}
.nav-footer__item {
  text-align: left;
  border-top: 1px solid hsla(0deg, 0%, 87%, 0.3);
}
@media (min-width: 768px) {
  .nav-footer__item {
    border: none;
  }
}
@media (min-width: 1024px) {
  .nav-footer__item {
    width: 160px;
  }
}
.nav-footer__heading {
  padding: 0 0 25px;
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
.nav-footer__heading-icon {
  transition: transform 0.25s ease-in-out;
  float: right;
  font-size: 20px;
  color: #bbb;
}
@media (min-width: 768px) {
  .nav-footer__heading-icon {
    display: none;
  }
}
.nav-footer__heading--open .nav-footer__heading-icon {
  transform: rotate(-180deg);
}
.nav-footer__sub-nav {
  padding: 0;
  margin: -15px 0 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .nav-footer__sub-item {
    margin: 15px 0;
  }
}
.nav-footer__sub-link {
  display: block;
  line-height: 1.25;
  text-decoration: none;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .nav-footer__sub-link {
    display: inline-block;
    transition: color 0.25s ease;
  }
}

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