.container {
    width: 100%;
    max-width: 935px;
    margin: 0 auto;
    padding: 0 35px;
}
@media screen and (max-width: 1279px) {
  .container {
    max-width: 870px;
  }
}
@media screen and (max-width: 749px) {
  .container {
  }
}
@media screen and (max-width: 425px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 369px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.w-full {
  width: 100%;
}

@media screen and (max-width: 1279px) {
  .tablet-w-full {
    width: 100%;
  }
}

.h-full {
  height: 100%;
}

.d-none {
    display: none;
}

@media screen and (max-width: 1279px) {
  .tablet-h-auto {
    height: auto;
  }
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.border-white {
  border-color: #ffffff;
}

.bg-black {
  background-color: #000000;
}

.text-black {
  color: #000000;
}

.border-black {
  border-color: #000000;
}

.bg-dark {
  background-color: #080808;
}

.text-dark {
  color: #080808;
}

.border-dark {
  border-color: #080808;
}

.bg-red {
  background-color: #de3c3c;
}

.text-red {
  color: #de3c3c;
}

.border-red {
  border-color: #de3c3c;
}

.bg-strong-red {
  background-color: #cb0000;
}

.text-strong-red {
  color: #cb0000;
}

.border-strong-red {
  border-color: #cb0000;
}

.bg-cyan {
  background-color: #5cbec6;
}

.text-cyan {
  color: #5cbec6;
}

.border-cyan {
  border-color: #5cbec6;
}

.bg-light-gray {
  background-color: #f2f2f2;
}

.text-light-gray {
  color: #f2f2f2;
}

.border-light-gray {
  border-color: #f2f2f2;
}

.bg-transparent {
  background-color: transparent;
}

.text-transparent {
  color: transparent;
}

.border-transparent {
  border-color: transparent;
}

.bg-light-gray_2 {
  background-color: #f5f7f7;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.items-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.justify-space-around {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          -webkit-justify-content: space-around;
	justify-content: space-around;
}

.direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.direction-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.direction-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.none {
  display: none;
}

.contents {
  display: contents;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-static {
  position: static;
}

.text-start {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

.font-700 {
  font-weight: 700;
}

.m-0 {
  margin: 0;
}

.m-10 {
  margin: 10px;
}

.m-20 {
  margin: 20px;
}

.m-25 {
  margin: 25px;
}

.m-40 {
  margin: 40px;
}

.m-60 {
  margin: 60px;
}

.m-70 {
  margin: 70px;
}

.m-80 {
  margin: 80px;
}

.m-90 {
  margin: 90px;
}

.m-120 {
  margin: 120px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-120 {
  margin-top: 120px;
}

.mr-0 {
  margin-right: 0;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-120 {
  margin-right: 120px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-120 {
  margin-bottom: 120px;
}

.ml-0 {
  margin-left: 0;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-120 {
  margin-left: 120px;
}

.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-25 {
  padding: 25px;
}

.p-40 {
  padding: 40px;
}

.p-60 {
  padding: 60px;
}

.p-70 {
  padding: 70px;
}

.p-80 {
  padding: 80px;
}

.p-90 {
  padding: 90px;
}

.p-120 {
  padding: 120px;
}

.pt-0 {
  padding-top: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}
.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-120 {
  padding-top: 120px;
}

.pr-0 {
  padding-right: 0;
}

.pr-10 {
  padding-right: 10px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-120 {
  padding-right: 120px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}


.pb-40 {
  padding-bottom: 40px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}


.pb-120 {
  padding-bottom: 120px;
}

.pl-0 {
  padding-left: 0;
}

.pl-10 {
  padding-left: 10px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-120 {
  padding-left: 120px;
}

@media screen and (max-width: 1024px) {
  .tablet-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .tablet-items-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .tablet-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .tablet-items-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .tablet-justify-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .tablet-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .tablet-justify-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .tablet-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .tablet-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .tablet-direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .tablet-direction-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .tablet-direction-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .tablet-flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .tablet-flex-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .tablet-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .tablet-inline-block {
    display: inline-block;
  }

  .tablet-block {
    display: block;
  }

  .tablet-grid {
    display: grid;
  }

  .tablet-none {
    display: none;
  }

  .tablet-contents {
    display: contents;
  }

  .tablet-position-relative {
    position: relative;
  }

  .tablet-position-absolute {
    position: absolute;
  }

  .tablet-position-fixed {
    position: fixed;
  }

  .tablet-position-static {
    position: static;
  }

  .tablet-text-start {
    text-align: start;
  }

  .tablet-text-center {
    text-align: center;
  }

  .tablet-text-end {
    text-align: end;
  }

  .tablet-font-400 {
    font-weight: 400;
  }

  .tablet-font-500 {
    font-weight: 500;
  }

  .tablet-font-700 {
    font-weight: 700;
  }

  .tablet-m-0 {
    margin: 0;
  }

  .tablet-m-10 {
    margin: 10px;
  }

  .tablet-m-20 {
    margin: 20px;
  }

  .tablet-m-25 {
    margin: 25px;
  }

  .tablet-m-40 {
    margin: 40px;
  }

  .tablet-m-60 {
    margin: 60px;
  }

  .tablet-m-70 {
    margin: 70px;
  }

  .tablet-m-80 {
    margin: 80px;
  }

  .tablet-m-90 {
    margin: 90px;
  }

  .tablet-m-120 {
    margin: 120px;
  }

  .tablet-mt-0 {
    margin-top: 0;
  }

  .tablet-mt-10 {
    margin-top: 10px;
  }

  .tablet-mt-20 {
    margin-top: 20px;
  }

  .tablet-mt-25 {
    margin-top: 25px;
  }

  .tablet-mt-40 {
    margin-top: 40px;
  }

  .tablet-mt-60 {
    margin-top: 60px;
  }

  .tablet-mt-70 {
    margin-top: 70px;
  }

  .tablet-mt-80 {
    margin-top: 80px;
  }

  .tablet-mt-90 {
    margin-top: 90px;
  }

  .tablet-mt-120 {
    margin-top: 120px;
  }

  .tablet-mr-0 {
    margin-right: 0;
  }

  .tablet-mr-10 {
    margin-right: 10px;
  }

  .tablet-mr-20 {
    margin-right: 20px;
  }

  .tablet-mr-25 {
    margin-right: 25px;
  }

  .tablet-mr-40 {
    margin-right: 40px;
  }

  .tablet-mr-60 {
    margin-right: 60px;
  }

  .tablet-mr-70 {
    margin-right: 70px;
  }

  .tablet-mr-80 {
    margin-right: 80px;
  }

  .tablet-mr-90 {
    margin-right: 90px;
  }

  .tablet-mr-120 {
    margin-right: 120px;
  }

  .tablet-mb-0 {
    margin-bottom: 0;
  }

  .tablet-mb-10 {
    margin-bottom: 10px;
  }

  .tablet-mb-20 {
    margin-bottom: 20px;
  }

  .tablet-mb-25 {
    margin-bottom: 25px;
  }

  .tablet-mb-40 {
    margin-bottom: 40px;
  }

  .tablet-mb-60 {
    margin-bottom: 60px;
  }

  .tablet-mb-70 {
    margin-bottom: 70px;
  }

  .tablet-mb-80 {
    margin-bottom: 80px;
  }

  .tablet-mb-90 {
    margin-bottom: 90px;
  }

  .tablet-mb-120 {
    margin-bottom: 120px;
  }

  .tablet-ml-0 {
    margin-left: 0;
  }

  .tablet-ml-10 {
    margin-left: 10px;
  }

  .tablet-ml-20 {
    margin-left: 20px;
  }

  .tablet-ml-25 {
    margin-left: 25px;
  }

  .tablet-ml-40 {
    margin-left: 40px;
  }

  .tablet-ml-60 {
    margin-left: 60px;
  }

  .tablet-ml-70 {
    margin-left: 70px;
  }

  .tablet-ml-80 {
    margin-left: 80px;
  }

  .tablet-ml-90 {
    margin-left: 90px;
  }

  .tablet-ml-120 {
    margin-left: 120px;
  }

  .tablet-p-0 {
    padding: 0;
  }

  .tablet-p-10 {
    padding: 10px;
  }

  .tablet-p-20 {
    padding: 20px;
  }

  .tablet-p-25 {
    padding: 25px;
  }

  .tablet-p-40 {
    padding: 40px;
  }

  .tablet-p-60 {
    padding: 60px;
  }

  .tablet-p-70 {
    padding: 70px;
  }

  .tablet-p-80 {
    padding: 80px;
  }

  .tablet-p-90 {
    padding: 90px;
  }

  .tablet-p-120 {
    padding: 120px;
  }

  .tablet-pt-0 {
    padding-top: 0;
  }

  .tablet-pt-10 {
    padding-top: 10px;
  }

  .tablet-pt-20 {
    padding-top: 20px;
  }

  .tablet-pt-25 {
    padding-top: 25px;
  }

  .tablet-pt-40 {
    padding-top: 40px;
  }

  .tablet-pt-60 {
    padding-top: 60px;
  }

  .tablet-pt-70 {
    padding-top: 70px;
  }

  .tablet-pt-80 {
    padding-top: 80px;
  }

  .tablet-pt-90 {
    padding-top: 90px;
  }

  .tablet-pt-120 {
    padding-top: 120px;
  }

  .tablet-pr-0 {
    padding-right: 0;
  }

  .tablet-pr-10 {
    padding-right: 10px;
  }

  .tablet-pr-20 {
    padding-right: 20px;
  }

  .tablet-pr-25 {
    padding-right: 25px;
  }

  .tablet-pr-40 {
    padding-right: 40px;
  }

  .tablet-pr-60 {
    padding-right: 60px;
  }

  .tablet-pr-70 {
    padding-right: 70px;
  }

  .tablet-pr-80 {
    padding-right: 80px;
  }

  .tablet-pr-90 {
    padding-right: 90px;
  }

  .tablet-pr-120 {
    padding-right: 120px;
  }

  .tablet-pb-0 {
    padding-bottom: 0;
  }

  .tablet-pb-10 {
    padding-bottom: 10px;
  }

  .tablet-pb-20 {
    padding-bottom: 20px;
  }

  .tablet-pb-25 {
    padding-bottom: 25px;
  }

  .tablet-pb-40 {
    padding-bottom: 40px;
  }

  .tablet-pb-60 {
    padding-bottom: 60px;
  }

  .tablet-pb-70 {
    padding-bottom: 70px;
  }

  .tablet-pb-80 {
    padding-bottom: 80px;
  }

  .tablet-pb-90 {
    padding-bottom: 90px;
  }

  .tablet-pb-120 {
    padding-bottom: 120px;
  }

  .tablet-pl-0 {
    padding-left: 0;
  }

  .tablet-pl-10 {
    padding-left: 10px;
  }

  .tablet-pl-20 {
    padding-left: 20px;
  }

  .tablet-pl-25 {
    padding-left: 25px;
  }

  .tablet-pl-40 {
    padding-left: 40px;
  }

  .tablet-pl-60 {
    padding-left: 60px;
  }

  .tablet-pl-70 {
    padding-left: 70px;
  }

  .tablet-pl-80 {
    padding-left: 80px;
  }

  .tablet-pl-90 {
    padding-left: 90px;
  }

  .tablet-pl-120 {
    padding-left: 120px;
  }

  .tablet-bg-white {
    background-color: #ffffff;
  }

  .tablet-text-white {
    color: #ffffff;
  }

  .tablet-border-white {
    border-color: #ffffff;
  }

  .tablet-bg-black {
    background-color: #000000;
  }

  .tablet-text-black {
    color: #000000;
  }

  .tablet-border-black {
    border-color: #000000;
  }

  .tablet-bg-dark {
    background-color: #080808;
  }

  .tablet-text-dark {
    color: #080808;
  }

  .tablet-border-dark {
    border-color: #080808;
  }

  .tablet-bg-red {
    background-color: #de3c3c;
  }

  .tablet-text-red {
    color: #de3c3c;
  }

  .tablet-border-red {
    border-color: #de3c3c;
  }

  .tablet-bg-strong-red {
    background-color: #cb0000;
  }

  .tablet-text-strong-red {
    color: #cb0000;
  }

  .tablet-border-strong-red {
    border-color: #cb0000;
  }

  .tablet-bg-cyan {
    background-color: #5cbec6;
  }

  .tablet-text-cyan {
    color: #5cbec6;
  }

  .tablet-border-cyan {
    border-color: #5cbec6;
  }

  .tablet-bg-light-gray {
    background-color: #f2f2f2;
  }

  .tablet-text-light-gray {
    color: #f2f2f2;
  }

  .tablet-border-light-gray {
    border-color: #f2f2f2;
  }

  .tablet-bg-transparent {
    background-color: transparent;
  }

  .tablet-text-transparent {
    color: transparent;
  }

  .tablet-border-transparent {
    border-color: transparent;
  }
}
@media screen and (max-width: 520px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .sp-items-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .sp-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sp-items-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .sp-justify-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .sp-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .sp-justify-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .sp-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .sp-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sp-direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .sp-direction-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .sp-direction-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .sp-flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .sp-flex-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .sp-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .sp-inline-block {
    display: inline-block;
  }

  .sp-block {
    display: block;
  }

  .sp-grid {
    display: grid;
  }

  .sp-none {
    display: none;
  }

  .sp-contents {
    display: contents;
  }

  .sp-position-relative {
    position: relative;
  }

  .sp-position-absolute {
    position: absolute;
  }

  .sp-position-fixed {
    position: fixed;
  }

  .sp-position-static {
    position: static;
  }

  .sp-text-start {
    text-align: start;
  }

  .sp-text-center {
    text-align: center;
  }

  .sp-text-end {
    text-align: end;
  }

  .sp-font-400 {
    font-weight: 400;
  }

  .sp-font-500 {
    font-weight: 500;
  }

  .sp-font-700 {
    font-weight: 700;
  }

  .sp-m-0 {
    margin: 0;
  }

  .sp-m-10 {
    margin: 10px;
  }

  .sp-m-20 {
    margin: 20px;
  }

  .sp-m-25 {
    margin: 25px;
  }

  .sp-m-40 {
    margin: 40px;
  }

  .sp-m-60 {
    margin: 60px;
  }

  .sp-m-70 {
    margin: 70px;
  }

  .sp-m-80 {
    margin: 80px;
  }

  .sp-m-90 {
    margin: 90px;
  }

  .sp-m-120 {
    margin: 120px;
  }

  .sp-mt-0 {
    margin-top: 0;
  }

  .sp-mt-10 {
    margin-top: 10px;
  }

  .sp-mt-20 {
    margin-top: 20px;
  }

  .sp-mt-25 {
    margin-top: 25px;
  }

  .sp-mt-40 {
    margin-top: 40px;
  }

  .sp-mt-50 {
    margin-top: 50px;
  }

  .sp-mt-60 {
    margin-top: 60px;
  }

  .sp-mt-70 {
    margin-top: 70px;
  }

  .sp-mt-80 {
    margin-top: 80px;
  }

  .sp-mt-90 {
    margin-top: 90px;
  }

  .sp-mt-120 {
    margin-top: 120px;
  }

  .sp-mr-0 {
    margin-right: 0;
  }

  .sp-mr-10 {
    margin-right: 10px;
  }

  .sp-mr-20 {
    margin-right: 20px;
  }

  .sp-mr-25 {
    margin-right: 25px;
  }

  .sp-mr-40 {
    margin-right: 40px;
  }

  .sp-mr-50 {
    margin-right: 50px;
  }

  .sp-mr-60 {
    margin-right: 60px;
  }

  .sp-mr-70 {
    margin-right: 70px;
  }

  .sp-mr-80 {
    margin-right: 80px;
  }

  .sp-mr-90 {
    margin-right: 90px;
  }

  .sp-mr-120 {
    margin-right: 120px;
  }

  .sp-mb-0 {
    margin-bottom: 0;
  }

  .sp-mb-10 {
    margin-bottom: 10px;
  }

  .sp-mb-20 {
    margin-bottom: 20px;
  }

  .sp-mb-25 {
    margin-bottom: 25px;
  }
    
.sp-mb-30 {
    margin-bottom: 30px;
  }

  .sp-mb-40 {
    margin-bottom: 40px;
  }

  .sp-mb-60 {
    margin-bottom: 60px;
  }

  .sp-mb-70 {
    margin-bottom: 70px;
  }

  .sp-mb-80 {
    margin-bottom: 80px;
  }

  .sp-mb-90 {
    margin-bottom: 90px;
  }

  .sp-mb-120 {
    margin-bottom: 120px;
  }

  .sp-ml-0 {
    margin-left: 0;
  }

  .sp-ml-10 {
    margin-left: 10px;
  }

  .sp-ml-20 {
    margin-left: 20px;
  }

  .sp-ml-25 {
    margin-left: 25px;
  }

  .sp-ml-40 {
    margin-left: 40px;
  }

  .sp-ml-60 {
    margin-left: 60px;
  }

  .sp-ml-70 {
    margin-left: 70px;
  }

  .sp-ml-80 {
    margin-left: 80px;
  }

  .sp-ml-90 {
    margin-left: 90px;
  }

  .sp-ml-120 {
    margin-left: 120px;
  }

  .sp-p-0 {
    padding: 0;
  }

  .sp-p-10 {
    padding: 10px;
  }

  .sp-p-20 {
    padding: 20px;
  }

  .sp-p-25 {
    padding: 25px;
  }

  .sp-p-40 {
    padding: 40px;
  }

  .sp-p-60 {
    padding: 60px;
  }

  .sp-p-70 {
    padding: 70px;
  }

  .sp-p-80 {
    padding: 80px;
  }

  .sp-p-90 {
    padding: 90px;
  }

  .sp-p-120 {
    padding: 120px;
  }

  .sp-pt-0 {
    padding-top: 0;
  }

  .sp-pt-10 {
    padding-top: 10px;
  }

  .sp-pt-20 {
    padding-top: 20px;
  }

  .sp-pt-25 {
    padding-top: 25px;
  }

  .sp-pt-40 {
    padding-top: 40px;
  }

  .sp-pt-60 {
    padding-top: 60px;
  }

  .sp-pt-70 {
    padding-top: 70px;
  }

  .sp-pt-80 {
    padding-top: 80px;
  }

  .sp-pt-90 {
    padding-top: 90px;
  }

  .sp-pt-120 {
    padding-top: 120px;
  }

  .sp-pr-0 {
    padding-right: 0;
  }

  .sp-pr-10 {
    padding-right: 10px;
  }

  .sp-pr-20 {
    padding-right: 20px;
  }

  .sp-pr-25 {
    padding-right: 25px;
  }

  .sp-pr-40 {
    padding-right: 40px;
  }

  .sp-pr-60 {
    padding-right: 60px;
  }

  .sp-pr-70 {
    padding-right: 70px;
  }

  .sp-pr-80 {
    padding-right: 80px;
  }

  .sp-pr-90 {
    padding-right: 90px;
  }

  .sp-pr-120 {
    padding-right: 120px;
  }

  .sp-pb-0 {
    padding-bottom: 0;
  }

  .sp-pb-10 {
    padding-bottom: 10px;
  }

  .sp-pb-20 {
    padding-bottom: 20px;
  }

  .sp-pb-25 {
    padding-bottom: 25px;
  }

  .sp-pb-40 {
    padding-bottom: 40px;
  }

  .sp-pb-60 {
    padding-bottom: 60px;
  }

  .sp-pb-70 {
    padding-bottom: 70px;
  }

  .sp-pb-80 {
    padding-bottom: 80px;
  }

  .sp-pb-90 {
    padding-bottom: 90px;
  }

  .sp-pb-120 {
    padding-bottom: 120px;
  }

  .sp-pl-0 {
    padding-left: 0;
  }

  .sp-pl-10 {
    padding-left: 10px;
  }

  .sp-pl-20 {
    padding-left: 20px;
  }

  .sp-pl-25 {
    padding-left: 25px;
  }

  .sp-pl-40 {
    padding-left: 40px;
  }

  .sp-pl-60 {
    padding-left: 60px;
  }

  .sp-pl-70 {
    padding-left: 70px;
  }

  .sp-pl-80 {
    padding-left: 80px;
  }

  .sp-pl-90 {
    padding-left: 90px;
  }

  .sp-pl-120 {
    padding-left: 120px;
  }

  .sp-bg-white {
    background-color: #ffffff;
  }

  .sp-text-white {
    color: #ffffff;
  }

  .sp-border-white {
    border-color: #ffffff;
  }

  .sp-bg-black {
    background-color: #000000;
  }

  .sp-text-black {
    color: #000000;
  }

  .sp-border-black {
    border-color: #000000;
  }

  .sp-bg-dark {
    background-color: #080808;
  }

  .sp-text-dark {
    color: #080808;
  }

  .sp-border-dark {
    border-color: #080808;
  }

  .sp-bg-red {
    background-color: #de3c3c;
  }

  .sp-text-red {
    color: #de3c3c;
  }

  .sp-border-red {
    border-color: #de3c3c;
  }

  .sp-bg-strong-red {
    background-color: #cb0000;
  }

  .sp-text-strong-red {
    color: #cb0000;
  }

  .sp-border-strong-red {
    border-color: #cb0000;
  }

  .sp-bg-cyan {
    background-color: #5cbec6;
  }

  .sp-text-cyan {
    color: #5cbec6;
  }

  .sp-border-cyan {
    border-color: #5cbec6;
  }

  .sp-bg-light-gray {
    background-color: #f2f2f2;
  }

  .sp-text-light-gray {
    color: #f2f2f2;
  }

  .sp-border-light-gray {
    border-color: #f2f2f2;
  }

  .sp-bg-transparent {
    background-color: transparent;
  }

  .sp-text-transparent {
    color: transparent;
  }

  .sp-border-transparent {
    border-color: transparent;
  }
}
@media screen and (max-width: 319px) {
  .small-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .small-items-flex-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .small-items-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .small-items-flex-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }

  .small-justify-flex-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .small-justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .small-justify-flex-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .small-justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .small-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .small-direction-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .small-direction-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }

  .small-direction-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .small-flex-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .small-flex-nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .small-inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .small-inline-block {
    display: inline-block;
  }

  .small-block {
    display: block;
  }

  .small-grid {
    display: grid;
  }

  .small-none {
    display: none;
  }

  .small-contents {
    display: contents;
  }

  .small-position-relative {
    position: relative;
  }

  .small-position-absolute {
    position: absolute;
  }

  .small-position-fixed {
    position: fixed;
  }

  .small-position-static {
    position: static;
  }

  .small-text-start {
    text-align: start;
  }

  .small-text-center {
    text-align: center;
  }

  .small-text-end {
    text-align: end;
  }

  .small-font-400 {
    font-weight: 400;
  }

  .small-font-500 {
    font-weight: 500;
  }

  .small-font-700 {
    font-weight: 700;
  }

  .small-m-0 {
    margin: 0;
  }

  .small-m-10 {
    margin: 10px;
  }

  .small-m-20 {
    margin: 20px;
  }

  .small-m-25 {
    margin: 25px;
  }

  .small-m-40 {
    margin: 40px;
  }

  .small-m-60 {
    margin: 60px;
  }

  .small-m-70 {
    margin: 70px;
  }

  .small-m-80 {
    margin: 80px;
  }

  .small-m-90 {
    margin: 90px;
  }

  .small-m-120 {
    margin: 120px;
  }

  .small-mt-0 {
    margin-top: 0;
  }

  .small-mt-10 {
    margin-top: 10px;
  }

  .small-mt-20 {
    margin-top: 20px;
  }

  .small-mt-25 {
    margin-top: 25px;
  }

  .small-mt-40 {
    margin-top: 40px;
  }

  .small-mt-60 {
    margin-top: 60px;
  }

  .small-mt-70 {
    margin-top: 70px;
  }

  .small-mt-80 {
    margin-top: 80px;
  }

  .small-mt-90 {
    margin-top: 90px;
  }

  .small-mt-120 {
    margin-top: 120px;
  }

  .small-mr-0 {
    margin-right: 0;
  }

  .small-mr-10 {
    margin-right: 10px;
  }

  .small-mr-20 {
    margin-right: 20px;
  }

  .small-mr-25 {
    margin-right: 25px;
  }

  .small-mr-40 {
    margin-right: 40px;
  }

  .small-mr-60 {
    margin-right: 60px;
  }

  .small-mr-70 {
    margin-right: 70px;
  }

  .small-mr-80 {
    margin-right: 80px;
  }

  .small-mr-90 {
    margin-right: 90px;
  }

  .small-mr-120 {
    margin-right: 120px;
  }

  .small-mb-0 {
    margin-bottom: 0;
  }

  .small-mb-10 {
    margin-bottom: 10px;
  }

  .small-mb-20 {
    margin-bottom: 20px;
  }

  .small-mb-25 {
    margin-bottom: 25px;
  }

  .small-mb-40 {
    margin-bottom: 40px;
  }

  .small-mb-60 {
    margin-bottom: 60px;
  }

  .small-mb-70 {
    margin-bottom: 70px;
  }

  .small-mb-80 {
    margin-bottom: 80px;
  }

  .small-mb-90 {
    margin-bottom: 90px;
  }

  .small-mb-120 {
    margin-bottom: 120px;
  }

  .small-ml-0 {
    margin-left: 0;
  }

  .small-ml-10 {
    margin-left: 10px;
  }

  .small-ml-20 {
    margin-left: 20px;
  }

  .small-ml-25 {
    margin-left: 25px;
  }

  .small-ml-40 {
    margin-left: 40px;
  }

  .small-ml-60 {
    margin-left: 60px;
  }

  .small-ml-70 {
    margin-left: 70px;
  }

  .small-ml-80 {
    margin-left: 80px;
  }

  .small-ml-90 {
    margin-left: 90px;
  }

  .small-ml-120 {
    margin-left: 120px;
  }

  .small-p-0 {
    padding: 0;
  }

  .small-p-10 {
    padding: 10px;
  }

  .small-p-20 {
    padding: 20px;
  }

  .small-p-25 {
    padding: 25px;
  }

  .small-p-40 {
    padding: 40px;
  }

  .small-p-60 {
    padding: 60px;
  }

  .small-p-70 {
    padding: 70px;
  }

  .small-p-80 {
    padding: 80px;
  }

  .small-p-90 {
    padding: 90px;
  }

  .small-p-120 {
    padding: 120px;
  }

  .small-pt-0 {
    padding-top: 0;
  }

  .small-pt-10 {
    padding-top: 10px;
  }

  .small-pt-20 {
    padding-top: 20px;
  }

  .small-pt-25 {
    padding-top: 25px;
  }

  .small-pt-40 {
    padding-top: 40px;
  }

  .small-pt-60 {
    padding-top: 60px;
  }

  .small-pt-70 {
    padding-top: 70px;
  }

  .small-pt-80 {
    padding-top: 80px;
  }

  .small-pt-90 {
    padding-top: 90px;
  }

  .small-pt-120 {
    padding-top: 120px;
  }

  .small-pr-0 {
    padding-right: 0;
  }

  .small-pr-10 {
    padding-right: 10px;
  }

  .small-pr-20 {
    padding-right: 20px;
  }

  .small-pr-25 {
    padding-right: 25px;
  }

  .small-pr-40 {
    padding-right: 40px;
  }

  .small-pr-60 {
    padding-right: 60px;
  }

  .small-pr-70 {
    padding-right: 70px;
  }

  .small-pr-80 {
    padding-right: 80px;
  }

  .small-pr-90 {
    padding-right: 90px;
  }

  .small-pr-120 {
    padding-right: 120px;
  }

  .small-pb-0 {
    padding-bottom: 0;
  }

  .small-pb-10 {
    padding-bottom: 10px;
  }

  .small-pb-20 {
    padding-bottom: 20px;
  }

  .small-pb-25 {
    padding-bottom: 25px;
  }

  .small-pb-40 {
    padding-bottom: 40px;
  }

  .small-pb-60 {
    padding-bottom: 60px;
  }

  .small-pb-70 {
    padding-bottom: 70px;
  }

  .small-pb-80 {
    padding-bottom: 80px;
  }

  .small-pb-90 {
    padding-bottom: 90px;
  }

  .small-pb-120 {
    padding-bottom: 120px;
  }

  .small-pl-0 {
    padding-left: 0;
  }

  .small-pl-10 {
    padding-left: 10px;
  }

  .small-pl-20 {
    padding-left: 20px;
  }

  .small-pl-25 {
    padding-left: 25px;
  }

  .small-pl-40 {
    padding-left: 40px;
  }

  .small-pl-60 {
    padding-left: 60px;
  }

  .small-pl-70 {
    padding-left: 70px;
  }

  .small-pl-80 {
    padding-left: 80px;
  }

  .small-pl-90 {
    padding-left: 90px;
  }

  .small-pl-120 {
    padding-left: 120px;
  }

  .small-bg-white {
    background-color: #ffffff;
  }

  .small-text-white {
    color: #ffffff;
  }

  .small-border-white {
    border-color: #ffffff;
  }

  .small-bg-black {
    background-color: #000000;
  }

  .small-text-black {
    color: #000000;
  }

  .small-border-black {
    border-color: #000000;
  }

  .small-bg-dark {
    background-color: #080808;
  }

  .small-text-dark {
    color: #080808;
  }

  .small-border-dark {
    border-color: #080808;
  }

  .small-bg-red {
    background-color: #de3c3c;
  }

  .small-text-red {
    color: #de3c3c;
  }

  .small-border-red {
    border-color: #de3c3c;
  }

  .small-bg-strong-red {
    background-color: #cb0000;
  }

  .small-text-strong-red {
    color: #cb0000;
  }

  .small-border-strong-red {
    border-color: #cb0000;
  }

  .small-bg-cyan {
    background-color: #5cbec6;
  }

  .small-text-cyan {
    color: #5cbec6;
  }

  .small-border-cyan {
    border-color: #5cbec6;
  }

  .small-bg-light-gray {
    background-color: #f2f2f2;
  }

  .small-text-light-gray {
    color: #f2f2f2;
  }

  .small-border-light-gray {
    border-color: #f2f2f2;
  }

  .small-bg-transparent {
    background-color: transparent;
  }

  .small-text-transparent {
    color: transparent;
  }

  .small-border-transparent {
    border-color: transparent;
  }
}

/*# sourceMappingURL=globals.css.map */