@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 56.25%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 62em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  box-sizing: border-box;
  padding-top: 0;
}
@media only screen and (max-width: 62em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  body {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #2F50AE;
  color: #ffffff;
}

@font-face {
  font-family: "LibreFranklinRegular";
  src: url("../fonts/LibreFranklin-Regular.ttf");
}
@font-face {
  font-family: "LibreFranklinBold";
  src: url("../fonts/LibreFranklin-Bold.ttf");
}
@font-face {
  font-family: "LibreFranklinMedium";
  src: url("../fonts/LibreFranklin-Medium.ttf");
}
@font-face {
  font-family: "LibreFranklinLight";
  src: url("../fonts/LibreFranklin-Light.ttf");
}
@font-face {
  font-family: "LibreFranklinThin";
  src: url("../fonts/LibreFranklin-Thin.ttf");
}
@font-face {
  font-family: "MontserratRegular";
  src: url("../fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "MontserratBold";
  src: url("../fonts/Montserrat-Bold.ttf");
}
@font-face {
  font-family: "MontserratMedium";
  src: url("../fonts/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "MontserratLight";
  src: url("../fonts/Montserrat-Light.ttf");
}
@font-face {
  font-family: "MontserratThin";
  src: url("../fonts/Montserrat-Thin.ttf");
}
@font-face {
  font-family: "hlbsjt";
  src: url("../fonts/hlbsjt.ttf");
}
@font-face {
  font-family: "syst";
  src: url("../fonts/syst.otf");
}
body {
  /*font-size: 16px;*/
  line-height: 1.7;
  color: #777;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 168rem;
  margin: 0 auto;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: end;
}

.items-center {
  align-items: center;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

@media only screen and (max-width: 48em) {
  .sm\:hidden {
    display: none;
  }
}
@media only screen and (max-width: 62em) {
  .md\:hidden {
    display: none;
  }
}
@media only screen and (min-width: 62em) {
  .lg\:hidden {
    display: none;
  }
}
span > img {
  display: inline;
}

.col-0 {
  flex: 0 0 auto;
  max-width: none;
}

.gutter-0,
.space-0 {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.gutter-0 > [class^=col-],
.space-0 > [class^=col-] {
  padding: 0;
}

.m-0,
.mt-0,
.mr-0,
.mb-0,
.ml-0,
.p-0,
.pt-0,
.pr-0,
.pb-0,
.pl-0,
.px-0,
.py-0 {
  margin: 0;
  padding: 0;
}

.col-1 {
  flex: 0 0 100%;
  max-width: 100%;
}

.gutter-1 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.gutter-1 > [class^=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.space-1 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.space-1 > [class^=col-] {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1rem;
}

.p-1 {
  padding: 1rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.col-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.gutter-2 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.gutter-2 > [class^=col-] {
  padding-left: 1rem;
  padding-right: 1rem;
}

.space-2 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.space-2 > [class^=col-] {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.m-2 {
  margin: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 2rem;
}

.p-2 {
  padding: 2rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.col-3 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.gutter-3 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.gutter-3 > [class^=col-] {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.space-3 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}
.space-3 > [class^=col-] {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.m-3 {
  margin: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.ml-3 {
  margin-left: 3rem;
}

.p-3 {
  padding: 3rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pl-3 {
  padding-left: 3rem;
}

.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.col-4 {
  flex: 0 0 25%;
  max-width: 25%;
}

.gutter-4 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.gutter-4 > [class^=col-] {
  padding-left: 2rem;
  padding-right: 2rem;
}

.space-4 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.space-4 > [class^=col-] {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.m-4 {
  margin: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.ml-4 {
  margin-left: 4rem;
}

.p-4 {
  padding: 4rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pl-4 {
  padding-left: 4rem;
}

.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.col-5 {
  flex: 0 0 20%;
  max-width: 20%;
}

.gutter-5 {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
.gutter-5 > [class^=col-] {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.space-5 {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}
.space-5 > [class^=col-] {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.m-5 {
  margin: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.ml-5 {
  margin-left: 5rem;
}

.p-5 {
  padding: 5rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pl-5 {
  padding-left: 5rem;
}

.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.col-6 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.gutter-6 {
  margin-left: -3rem;
  margin-right: -3rem;
}
.gutter-6 > [class^=col-] {
  padding-left: 3rem;
  padding-right: 3rem;
}

.space-6 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}
.space-6 > [class^=col-] {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.m-6 {
  margin: 6rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.ml-6 {
  margin-left: 6rem;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pl-6 {
  padding-left: 6rem;
}

.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.col-7 {
  flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.gutter-7 {
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}
.gutter-7 > [class^=col-] {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.space-7 {
  margin-top: -3.5rem;
  margin-bottom: -3.5rem;
}
.space-7 > [class^=col-] {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.m-7 {
  margin: 7rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.ml-7 {
  margin-left: 7rem;
}

.p-7 {
  padding: 7rem;
}

.pt-7 {
  padding-top: 7rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pl-7 {
  padding-left: 7rem;
}

.px-7 {
  padding-left: 7rem;
  padding-right: 7rem;
}

.py-7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.col-8 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.gutter-8 {
  margin-left: -4rem;
  margin-right: -4rem;
}
.gutter-8 > [class^=col-] {
  padding-left: 4rem;
  padding-right: 4rem;
}

.space-8 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}
.space-8 > [class^=col-] {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.m-8 {
  margin: 8rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.ml-8 {
  margin-left: 8rem;
}

.p-8 {
  padding: 8rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pl-8 {
  padding-left: 8rem;
}

.px-8 {
  padding-left: 8rem;
  padding-right: 8rem;
}

.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media only screen and (min-width: 62em) {
  .col-lg-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-lg-0,
.space-lg-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-lg-0 > [class^=col-],
.space-lg-0 > [class^=col-] {
    padding: 0;
  }

  .m-lg-0,
.mt-lg-0,
.mr-lg-0,
.mb-lg-0,
.ml-lg-0,
.p-lg-0,
.pt-lg-0,
.pr-lg-0,
.pb-lg-0,
.pl-lg-0,
.px-lg-0,
.py-lg-0 {
    margin: 0;
    padding: 0;
  }

  .col-lg-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gutter-lg-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-lg-1 > [class^=col-] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .space-lg-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-lg-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .m-lg-1 {
    margin: 1rem;
  }

  .mt-lg-1 {
    margin-top: 1rem;
  }

  .mr-lg-1 {
    margin-right: 1rem;
  }

  .mb-lg-1 {
    margin-bottom: 1rem;
  }

  .ml-lg-1 {
    margin-left: 1rem;
  }

  .p-lg-1 {
    padding: 1rem;
  }

  .pt-lg-1 {
    padding-top: 1rem;
  }

  .pr-lg-1 {
    padding-right: 1rem;
  }

  .pb-lg-1 {
    padding-bottom: 1rem;
  }

  .pl-lg-1 {
    padding-left: 1rem;
  }

  .px-lg-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-lg-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gutter-lg-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-lg-2 > [class^=col-] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .space-lg-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-lg-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .m-lg-2 {
    margin: 2rem;
  }

  .mt-lg-2 {
    margin-top: 2rem;
  }

  .mr-lg-2 {
    margin-right: 2rem;
  }

  .mb-lg-2 {
    margin-bottom: 2rem;
  }

  .ml-lg-2 {
    margin-left: 2rem;
  }

  .p-lg-2 {
    padding: 2rem;
  }

  .pt-lg-2 {
    padding-top: 2rem;
  }

  .pr-lg-2 {
    padding-right: 2rem;
  }

  .pb-lg-2 {
    padding-bottom: 2rem;
  }

  .pl-lg-2 {
    padding-left: 2rem;
  }

  .px-lg-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .py-lg-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .col-lg-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .gutter-lg-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-lg-3 > [class^=col-] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .space-lg-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-lg-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .m-lg-3 {
    margin: 3rem;
  }

  .mt-lg-3 {
    margin-top: 3rem;
  }

  .mr-lg-3 {
    margin-right: 3rem;
  }

  .mb-lg-3 {
    margin-bottom: 3rem;
  }

  .ml-lg-3 {
    margin-left: 3rem;
  }

  .p-lg-3 {
    padding: 3rem;
  }

  .pt-lg-3 {
    padding-top: 3rem;
  }

  .pr-lg-3 {
    padding-right: 3rem;
  }

  .pb-lg-3 {
    padding-bottom: 3rem;
  }

  .pl-lg-3 {
    padding-left: 3rem;
  }

  .px-lg-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .py-lg-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gutter-lg-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-lg-4 > [class^=col-] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .space-lg-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-lg-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .m-lg-4 {
    margin: 4rem;
  }

  .mt-lg-4 {
    margin-top: 4rem;
  }

  .mr-lg-4 {
    margin-right: 4rem;
  }

  .mb-lg-4 {
    margin-bottom: 4rem;
  }

  .ml-lg-4 {
    margin-left: 4rem;
  }

  .p-lg-4 {
    padding: 4rem;
  }

  .pt-lg-4 {
    padding-top: 4rem;
  }

  .pr-lg-4 {
    padding-right: 4rem;
  }

  .pb-lg-4 {
    padding-bottom: 4rem;
  }

  .pl-lg-4 {
    padding-left: 4rem;
  }

  .px-lg-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .py-lg-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .col-lg-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .gutter-lg-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-lg-5 > [class^=col-] {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .space-lg-5 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .space-lg-5 > [class^=col-] {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .m-lg-5 {
    margin: 5rem;
  }

  .mt-lg-5 {
    margin-top: 5rem;
  }

  .mr-lg-5 {
    margin-right: 5rem;
  }

  .mb-lg-5 {
    margin-bottom: 5rem;
  }

  .ml-lg-5 {
    margin-left: 5rem;
  }

  .p-lg-5 {
    padding: 5rem;
  }

  .pt-lg-5 {
    padding-top: 5rem;
  }

  .pr-lg-5 {
    padding-right: 5rem;
  }

  .pb-lg-5 {
    padding-bottom: 5rem;
  }

  .pl-lg-5 {
    padding-left: 5rem;
  }

  .px-lg-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .py-lg-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .col-lg-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .gutter-lg-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-lg-6 > [class^=col-] {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .space-lg-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-lg-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .m-lg-6 {
    margin: 6rem;
  }

  .mt-lg-6 {
    margin-top: 6rem;
  }

  .mr-lg-6 {
    margin-right: 6rem;
  }

  .mb-lg-6 {
    margin-bottom: 6rem;
  }

  .ml-lg-6 {
    margin-left: 6rem;
  }

  .p-lg-6 {
    padding: 6rem;
  }

  .pt-lg-6 {
    padding-top: 6rem;
  }

  .pr-lg-6 {
    padding-right: 6rem;
  }

  .pb-lg-6 {
    padding-bottom: 6rem;
  }

  .pl-lg-6 {
    padding-left: 6rem;
  }

  .px-lg-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .col-lg-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .gutter-lg-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-lg-7 > [class^=col-] {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .space-lg-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-lg-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .m-lg-7 {
    margin: 7rem;
  }

  .mt-lg-7 {
    margin-top: 7rem;
  }

  .mr-lg-7 {
    margin-right: 7rem;
  }

  .mb-lg-7 {
    margin-bottom: 7rem;
  }

  .ml-lg-7 {
    margin-left: 7rem;
  }

  .p-lg-7 {
    padding: 7rem;
  }

  .pt-lg-7 {
    padding-top: 7rem;
  }

  .pr-lg-7 {
    padding-right: 7rem;
  }

  .pb-lg-7 {
    padding-bottom: 7rem;
  }

  .pl-lg-7 {
    padding-left: 7rem;
  }

  .px-lg-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .py-lg-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .col-lg-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .gutter-lg-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-lg-8 > [class^=col-] {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .space-lg-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-lg-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .m-lg-8 {
    margin: 8rem;
  }

  .mt-lg-8 {
    margin-top: 8rem;
  }

  .mr-lg-8 {
    margin-right: 8rem;
  }

  .mb-lg-8 {
    margin-bottom: 8rem;
  }

  .ml-lg-8 {
    margin-left: 8rem;
  }

  .p-lg-8 {
    padding: 8rem;
  }

  .pt-lg-8 {
    padding-top: 8rem;
  }

  .pr-lg-8 {
    padding-right: 8rem;
  }

  .pb-lg-8 {
    padding-bottom: 8rem;
  }

  .pl-lg-8 {
    padding-left: 8rem;
  }

  .px-lg-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .py-lg-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (max-width: 62em) {
  .col-md-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-md-0,
.space-md-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-md-0 > [class^=col-],
.space-md-0 > [class^=col-] {
    padding: 0;
  }

  .m-md-0,
.mt-md-0,
.mr-md-0,
.mb-md-0,
.ml-md-0,
.p-md-0,
.pt-md-0,
.pr-md-0,
.pb-md-0,
.pl-md-0,
.px-md-0,
.py-md-0 {
    margin: 0;
    padding: 0;
  }

  .col-md-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gutter-md-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-md-1 > [class^=col-] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .space-md-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-md-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .m-md-1 {
    margin: 1rem;
  }

  .mt-md-1 {
    margin-top: 1rem;
  }

  .mr-md-1 {
    margin-right: 1rem;
  }

  .mb-md-1 {
    margin-bottom: 1rem;
  }

  .ml-md-1 {
    margin-left: 1rem;
  }

  .p-md-1 {
    padding: 1rem;
  }

  .pt-md-1 {
    padding-top: 1rem;
  }

  .pr-md-1 {
    padding-right: 1rem;
  }

  .pb-md-1 {
    padding-bottom: 1rem;
  }

  .pl-md-1 {
    padding-left: 1rem;
  }

  .px-md-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-md-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gutter-md-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-md-2 > [class^=col-] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .space-md-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-md-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .m-md-2 {
    margin: 2rem;
  }

  .mt-md-2 {
    margin-top: 2rem;
  }

  .mr-md-2 {
    margin-right: 2rem;
  }

  .mb-md-2 {
    margin-bottom: 2rem;
  }

  .ml-md-2 {
    margin-left: 2rem;
  }

  .p-md-2 {
    padding: 2rem;
  }

  .pt-md-2 {
    padding-top: 2rem;
  }

  .pr-md-2 {
    padding-right: 2rem;
  }

  .pb-md-2 {
    padding-bottom: 2rem;
  }

  .pl-md-2 {
    padding-left: 2rem;
  }

  .px-md-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .py-md-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .col-md-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .gutter-md-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-md-3 > [class^=col-] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .space-md-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-md-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .m-md-3 {
    margin: 3rem;
  }

  .mt-md-3 {
    margin-top: 3rem;
  }

  .mr-md-3 {
    margin-right: 3rem;
  }

  .mb-md-3 {
    margin-bottom: 3rem;
  }

  .ml-md-3 {
    margin-left: 3rem;
  }

  .p-md-3 {
    padding: 3rem;
  }

  .pt-md-3 {
    padding-top: 3rem;
  }

  .pr-md-3 {
    padding-right: 3rem;
  }

  .pb-md-3 {
    padding-bottom: 3rem;
  }

  .pl-md-3 {
    padding-left: 3rem;
  }

  .px-md-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .py-md-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .col-md-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gutter-md-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-md-4 > [class^=col-] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .space-md-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-md-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .m-md-4 {
    margin: 4rem;
  }

  .mt-md-4 {
    margin-top: 4rem;
  }

  .mr-md-4 {
    margin-right: 4rem;
  }

  .mb-md-4 {
    margin-bottom: 4rem;
  }

  .ml-md-4 {
    margin-left: 4rem;
  }

  .p-md-4 {
    padding: 4rem;
  }

  .pt-md-4 {
    padding-top: 4rem;
  }

  .pr-md-4 {
    padding-right: 4rem;
  }

  .pb-md-4 {
    padding-bottom: 4rem;
  }

  .pl-md-4 {
    padding-left: 4rem;
  }

  .px-md-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .py-md-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .col-md-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .gutter-md-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-md-5 > [class^=col-] {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .space-md-5 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .space-md-5 > [class^=col-] {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .m-md-5 {
    margin: 5rem;
  }

  .mt-md-5 {
    margin-top: 5rem;
  }

  .mr-md-5 {
    margin-right: 5rem;
  }

  .mb-md-5 {
    margin-bottom: 5rem;
  }

  .ml-md-5 {
    margin-left: 5rem;
  }

  .p-md-5 {
    padding: 5rem;
  }

  .pt-md-5 {
    padding-top: 5rem;
  }

  .pr-md-5 {
    padding-right: 5rem;
  }

  .pb-md-5 {
    padding-bottom: 5rem;
  }

  .pl-md-5 {
    padding-left: 5rem;
  }

  .px-md-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .py-md-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .col-md-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .gutter-md-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-md-6 > [class^=col-] {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .space-md-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-md-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .m-md-6 {
    margin: 6rem;
  }

  .mt-md-6 {
    margin-top: 6rem;
  }

  .mr-md-6 {
    margin-right: 6rem;
  }

  .mb-md-6 {
    margin-bottom: 6rem;
  }

  .ml-md-6 {
    margin-left: 6rem;
  }

  .p-md-6 {
    padding: 6rem;
  }

  .pt-md-6 {
    padding-top: 6rem;
  }

  .pr-md-6 {
    padding-right: 6rem;
  }

  .pb-md-6 {
    padding-bottom: 6rem;
  }

  .pl-md-6 {
    padding-left: 6rem;
  }

  .px-md-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .py-md-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .col-md-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .gutter-md-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-md-7 > [class^=col-] {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .space-md-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-md-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .m-md-7 {
    margin: 7rem;
  }

  .mt-md-7 {
    margin-top: 7rem;
  }

  .mr-md-7 {
    margin-right: 7rem;
  }

  .mb-md-7 {
    margin-bottom: 7rem;
  }

  .ml-md-7 {
    margin-left: 7rem;
  }

  .p-md-7 {
    padding: 7rem;
  }

  .pt-md-7 {
    padding-top: 7rem;
  }

  .pr-md-7 {
    padding-right: 7rem;
  }

  .pb-md-7 {
    padding-bottom: 7rem;
  }

  .pl-md-7 {
    padding-left: 7rem;
  }

  .px-md-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .py-md-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .col-md-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .gutter-md-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-md-8 > [class^=col-] {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .space-md-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-md-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .m-md-8 {
    margin: 8rem;
  }

  .mt-md-8 {
    margin-top: 8rem;
  }

  .mr-md-8 {
    margin-right: 8rem;
  }

  .mb-md-8 {
    margin-bottom: 8rem;
  }

  .ml-md-8 {
    margin-left: 8rem;
  }

  .p-md-8 {
    padding: 8rem;
  }

  .pt-md-8 {
    padding-top: 8rem;
  }

  .pr-md-8 {
    padding-right: 8rem;
  }

  .pb-md-8 {
    padding-bottom: 8rem;
  }

  .pl-md-8 {
    padding-left: 8rem;
  }

  .px-md-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .py-md-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  .col-sm-0 {
    flex: 0 0 auto;
    max-width: none;
  }

  .gutter-sm-0,
.space-sm-0 {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
  .gutter-sm-0 > [class^=col-],
.space-sm-0 > [class^=col-] {
    padding: 0;
  }

  .m-sm-0,
.mt-sm-0,
.mr-sm-0,
.mb-sm-0,
.ml-sm-0,
.p-sm-0,
.pt-sm-0,
.pr-sm-0,
.pb-sm-0,
.pl-sm-0,
.px-sm-0,
.py-sm-0 {
    margin: 0;
    padding: 0;
  }

  .col-sm-1 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .gutter-sm-1 {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .gutter-sm-1 > [class^=col-] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .space-sm-1 {
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
  }
  .space-sm-1 > [class^=col-] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .m-sm-1 {
    margin: 1rem;
  }

  .mt-sm-1 {
    margin-top: 1rem;
  }

  .mr-sm-1 {
    margin-right: 1rem;
  }

  .mb-sm-1 {
    margin-bottom: 1rem;
  }

  .ml-sm-1 {
    margin-left: 1rem;
  }

  .p-sm-1 {
    padding: 1rem;
  }

  .pt-sm-1 {
    padding-top: 1rem;
  }

  .pr-sm-1 {
    padding-right: 1rem;
  }

  .pb-sm-1 {
    padding-bottom: 1rem;
  }

  .pl-sm-1 {
    padding-left: 1rem;
  }

  .px-sm-1 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .py-sm-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .gutter-sm-2 {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .gutter-sm-2 > [class^=col-] {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .space-sm-2 {
    margin-top: -1rem;
    margin-bottom: -1rem;
  }
  .space-sm-2 > [class^=col-] {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .m-sm-2 {
    margin: 2rem;
  }

  .mt-sm-2 {
    margin-top: 2rem;
  }

  .mr-sm-2 {
    margin-right: 2rem;
  }

  .mb-sm-2 {
    margin-bottom: 2rem;
  }

  .ml-sm-2 {
    margin-left: 2rem;
  }

  .p-sm-2 {
    padding: 2rem;
  }

  .pt-sm-2 {
    padding-top: 2rem;
  }

  .pr-sm-2 {
    padding-right: 2rem;
  }

  .pb-sm-2 {
    padding-bottom: 2rem;
  }

  .pl-sm-2 {
    padding-left: 2rem;
  }

  .px-sm-2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .py-sm-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .col-sm-3 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .gutter-sm-3 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .gutter-sm-3 > [class^=col-] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .space-sm-3 {
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
  .space-sm-3 > [class^=col-] {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .m-sm-3 {
    margin: 3rem;
  }

  .mt-sm-3 {
    margin-top: 3rem;
  }

  .mr-sm-3 {
    margin-right: 3rem;
  }

  .mb-sm-3 {
    margin-bottom: 3rem;
  }

  .ml-sm-3 {
    margin-left: 3rem;
  }

  .p-sm-3 {
    padding: 3rem;
  }

  .pt-sm-3 {
    padding-top: 3rem;
  }

  .pr-sm-3 {
    padding-right: 3rem;
  }

  .pb-sm-3 {
    padding-bottom: 3rem;
  }

  .pl-sm-3 {
    padding-left: 3rem;
  }

  .px-sm-3 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .py-sm-3 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .col-sm-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .gutter-sm-4 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .gutter-sm-4 > [class^=col-] {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .space-sm-4 {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
  .space-sm-4 > [class^=col-] {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .m-sm-4 {
    margin: 4rem;
  }

  .mt-sm-4 {
    margin-top: 4rem;
  }

  .mr-sm-4 {
    margin-right: 4rem;
  }

  .mb-sm-4 {
    margin-bottom: 4rem;
  }

  .ml-sm-4 {
    margin-left: 4rem;
  }

  .p-sm-4 {
    padding: 4rem;
  }

  .pt-sm-4 {
    padding-top: 4rem;
  }

  .pr-sm-4 {
    padding-right: 4rem;
  }

  .pb-sm-4 {
    padding-bottom: 4rem;
  }

  .pl-sm-4 {
    padding-left: 4rem;
  }

  .px-sm-4 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .py-sm-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .col-sm-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .gutter-sm-5 {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
  .gutter-sm-5 > [class^=col-] {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .space-sm-5 {
    margin-top: -2.5rem;
    margin-bottom: -2.5rem;
  }
  .space-sm-5 > [class^=col-] {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .m-sm-5 {
    margin: 5rem;
  }

  .mt-sm-5 {
    margin-top: 5rem;
  }

  .mr-sm-5 {
    margin-right: 5rem;
  }

  .mb-sm-5 {
    margin-bottom: 5rem;
  }

  .ml-sm-5 {
    margin-left: 5rem;
  }

  .p-sm-5 {
    padding: 5rem;
  }

  .pt-sm-5 {
    padding-top: 5rem;
  }

  .pr-sm-5 {
    padding-right: 5rem;
  }

  .pb-sm-5 {
    padding-bottom: 5rem;
  }

  .pl-sm-5 {
    padding-left: 5rem;
  }

  .px-sm-5 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .py-sm-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .col-sm-6 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .gutter-sm-6 {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .gutter-sm-6 > [class^=col-] {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .space-sm-6 {
    margin-top: -3rem;
    margin-bottom: -3rem;
  }
  .space-sm-6 > [class^=col-] {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .m-sm-6 {
    margin: 6rem;
  }

  .mt-sm-6 {
    margin-top: 6rem;
  }

  .mr-sm-6 {
    margin-right: 6rem;
  }

  .mb-sm-6 {
    margin-bottom: 6rem;
  }

  .ml-sm-6 {
    margin-left: 6rem;
  }

  .p-sm-6 {
    padding: 6rem;
  }

  .pt-sm-6 {
    padding-top: 6rem;
  }

  .pr-sm-6 {
    padding-right: 6rem;
  }

  .pb-sm-6 {
    padding-bottom: 6rem;
  }

  .pl-sm-6 {
    padding-left: 6rem;
  }

  .px-sm-6 {
    padding-left: 6rem;
    padding-right: 6rem;
  }

  .py-sm-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .col-sm-7 {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }

  .gutter-sm-7 {
    margin-left: -3.5rem;
    margin-right: -3.5rem;
  }
  .gutter-sm-7 > [class^=col-] {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .space-sm-7 {
    margin-top: -3.5rem;
    margin-bottom: -3.5rem;
  }
  .space-sm-7 > [class^=col-] {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .m-sm-7 {
    margin: 7rem;
  }

  .mt-sm-7 {
    margin-top: 7rem;
  }

  .mr-sm-7 {
    margin-right: 7rem;
  }

  .mb-sm-7 {
    margin-bottom: 7rem;
  }

  .ml-sm-7 {
    margin-left: 7rem;
  }

  .p-sm-7 {
    padding: 7rem;
  }

  .pt-sm-7 {
    padding-top: 7rem;
  }

  .pr-sm-7 {
    padding-right: 7rem;
  }

  .pb-sm-7 {
    padding-bottom: 7rem;
  }

  .pl-sm-7 {
    padding-left: 7rem;
  }

  .px-sm-7 {
    padding-left: 7rem;
    padding-right: 7rem;
  }

  .py-sm-7 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .col-sm-8 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }

  .gutter-sm-8 {
    margin-left: -4rem;
    margin-right: -4rem;
  }
  .gutter-sm-8 > [class^=col-] {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .space-sm-8 {
    margin-top: -4rem;
    margin-bottom: -4rem;
  }
  .space-sm-8 > [class^=col-] {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .m-sm-8 {
    margin: 8rem;
  }

  .mt-sm-8 {
    margin-top: 8rem;
  }

  .mr-sm-8 {
    margin-right: 8rem;
  }

  .mb-sm-8 {
    margin-bottom: 8rem;
  }

  .ml-sm-8 {
    margin-left: 8rem;
  }

  .p-sm-8 {
    padding: 8rem;
  }

  .pt-sm-8 {
    padding-top: 8rem;
  }

  .pr-sm-8 {
    padding-right: 8rem;
  }

  .pb-sm-8 {
    padding-bottom: 8rem;
  }

  .pl-sm-8 {
    padding-left: 8rem;
  }

  .px-sm-8 {
    padding-left: 8rem;
    padding-right: 8rem;
  }

  .py-sm-8 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.percent {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background-color: #ffffff;
  position: relative;
}
.percent__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 800;
  color: #2F50AE;
}
.percent__text::after {
  content: "%";
  font-size: 1.4rem;
}

.ratio-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  box-sizing: border-box;
  position: relative;
}
.ratio-image--1-of-2, .ratio-image--2-of-4 {
  padding-bottom: 50%;
}
.ratio-image--1-of-3 {
  padding-bottom: 33.33%;
}
.ratio-image--2-of-3 {
  padding-bottom: 66.66%;
}
.ratio-image--1-of-4 {
  padding-bottom: 25%;
}
.ratio-image--3-of-4 {
  padding-bottom: 75%;
}
.ratio-image--1-of-5 {
  padding-bottom: 20%;
}
.ratio-image--2-of-5 {
  padding-bottom: 40%;
}
.ratio-image--3-of-5 {
  padding-bottom: 60%;
}
.ratio-image--4-of-5 {
  padding-bottom: 80%;
}
.ratio-image__box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.ratio-image__source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.more-button {
  font-size: 1.6rem;
  color: #666666;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.more-button:hover {
  color: #2F50AE;
  font-weight: 600;
}
.more-button::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/more-icon.png) no-repeat center center/cover;
  margin-right: 4px;
}
.more-button::after {
  content: "";
  font-family: "iconfont";
  content: "";
  margin-left: 4px;
  font-size: 1.8rem;
}

.card {
  position: relative;
}
.card--horizontal {
  display: flex;
}
.card:hover .cover img {
  transform: scale(1.05);
}
.card:hover .info .title,
.card:hover .info .desc {
  color: #D4A155;
}
.card .cover {
  flex: none;
  overflow: hidden;
}
.card .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
.card .info h2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 1.5rem;
}
.card .info p {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.4rem;
  color: #888888;
}
.card--horizontal .info {
  padding-left: 2rem;
}
.card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.text-card {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.text-card:hover .title {
  color: #2F50AE;
}
.text-card:hover .date {
  color: #2F50AE;
}
.text-card--secondary:hover .title {
  color: #D4A155;
}
.text-card--secondary:hover .date {
  color: #D4A155;
}
.text-card > .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  flex: 1;
  font-size: 1.6rem;
  color: #111;
}
.text-card > .date {
  margin-left: 2rem;
  font-size: 1.4rem;
  color: #888888;
  flex: none;
  font-family: tm;
}
.text-card > .date-box {
  flex: none;
}
.text-card > .date-box .main {
  display: block;
  text-align: center;
  font-size: 3rem;
  color: #2F50AE;
  line-height: 1;
  padding-bottom: 0.6rem;
  font-family: tm;
}
.text-card > .date-box .sub {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color: #2F50AE;
  line-height: 1;
  font-family: tm;
}
.text-card > .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  z-index: 99;
}

.banner-card {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 48em) {
  .banner-card {
    height: 24rem;
  }
}
.banner-card .cover {
  width: 100%;
  height: 100%;
}
.banner-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 5s ease-in-out;
  transform: scale(1.1);
}
.banner-card .link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.person-card {
  display: flex;
  padding: 3.4rem 0;
  border-bottom: 1px solid #DCDCDC;
}
@media only screen and (max-width: 48em) {
  .person-card {
    padding: 2rem 0;
  }
}
.person-card .cover {
  flex: none;
  width: 14rem;
  height: 19rem;
  border: 1px solid #DCDCDC;
}
.person-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.person-card .info {
  flex: 1;
  padding-left: 3rem;
  height: 100%;
}
.person-card .info .base {
  display: flex;
  padding-bottom: 1rem;
}
.person-card .info .base .name {
  font-size: 2.2rem;
  color: #111;
}
.person-card .info .base .tag {
  padding-left: 1rem;
  font-size: 1.8rem;
  color: #111;
  position: relative;
  top: 0.5rem;
}
.person-card .info .desc {
  font-size: 1.6rem;
  color: #666;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.person-card .info .source {
  font-size: 1.6rem;
  color: #2F50AE;
  position: absolute;
  right: 0;
  bottom: 3rem;
  display: flex;
  align-items: center;
}
.person-card .info .source::before {
  content: "";
  display: block;
  width: 6rem;
  height: 1px;
  border-bottom: 1px solid #2F50AE;
  margin-right: 1rem;
}
.person-card:hover .info .base .name {
  color: #2F50AE;
}
.person-card:hover .info .base .tag {
  color: #2F50AE;
}
.person-card:hover .info .desc {
  color: #2F50AE;
}

.active-card {
  display: flex;
}
.active-card .cover {
  width: 18rem;
  height: 10.4rem;
  flex: none;
}
.active-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.active-card .info {
  padding-left: 2rem;
}
.active-card .info .title {
  font-size: 1.8rem;
  line-height: 3rem;
  height: 6rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.active-card .info .date {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #D4A155;
}

.activity-card {
  padding: 2.5rem 0;
  border-bottom: 1px solid #DCDCDC;
}
@media only screen and (max-width: 48em) {
  .activity-card {
    padding: 2rem 0;
  }
}
.activity-card .title {
  font-size: 1.8rem;
  line-height: 3rem;
  height: 6rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.activity-card .tips {
  padding-top: 1rem;
}
.activity-card .tips .text {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 1.5rem;
  color: #666;
  position: relative;
  padding-left: 3rem;
}
.activity-card .tips .text:not(:last-child) {
  margin-bottom: 0.5rem;
}
.activity-card .tips .text::before {
  content: "";
  font-family: "iconfont";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2rem;
  height: 2.2rem;
  line-height: 3rem;
  border-radius: 50%;
  background-color: #D4A155;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #fff;
}
.activity-card .tips .text--user::before {
  content: "";
}
.activity-card .tips .text--date::before {
  content: "";
}
.activity-card .tips .text--address::before {
  content: "";
}
.activity-card:hover .title {
  color: #2F50AE;
}
.activity-card:hover .tips .text {
  color: #2F50AE;
}
.activity-card:hover .tips .text::before {
  background-color: #2F50AE;
}

.science-card .title {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #111;
}
.science-card .title strong {
  color: #2F50AE;
}
.science-card .date {
  color: #D4A155;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.science-card .date::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  border-bottom: 1px solid #e7e7e7;
  margin-left: 1rem;
}
.science-card:hover .title {
  color: #2F50AE;
}
.science-card:hover .date::after {
  border-bottom: 1px solid #2F50AE;
}

.Journal-card {
  padding: 3rem 0;
  border-bottom: 1px solid #DCDCDC;
}
@media only screen and (max-width: 48em) {
  .Journal-card {
    padding: 2rem 0;
  }
}
.Journal-card .title {
  font-size: 1.8rem;
  color: #111;
  line-height: 3rem;
  height: 6rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.Journal-card .desc {
  font-size: 1.6rem;
  color: #888;
  line-height: 2.6rem;
  height: 5.2rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 1rem;
}
.Journal-card .date {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #D4A155;
}
.Journal-card:hover {
  border-bottom: 1px solid #2F50AE;
}
.Journal-card:hover .title {
  color: #2F50AE;
}
.Journal-card:hover .desc {
  color: #2F50AE;
}
.Journal-card:hover .date {
  color: #2F50AE;
}

.article-card {
  display: flex;
  align-items: center;
  padding: 3rem 2rem;
  border-bottom: 1px solid #DCDCDC;
}
@media only screen and (max-width: 48em) {
  .article-card {
    padding: 2rem 0;
    flex-wrap: wrap;
    align-items: start;
  }
}
.article-card .date {
  flex: none;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .article-card .date {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    position: absolute;
    right: 0;
    bottom: 2rem;
  }
}
.article-card .date::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #949191;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(3rem, -1rem);
}
@media only screen and (max-width: 48em) {
  .article-card .date::after {
    display: none;
  }
}
.article-card .date .day {
  font-size: 4.8rem;
  font-weight: 600;
  color: #2F50AE;
  line-height: 1;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 48em) {
  .article-card .date .day {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 400;
  }
  .article-card .date .day::before {
    content: "-";
  }
}
.article-card .date .year {
  font-size: 1.4rem;
  color: #2F50AE;
  line-height: 1;
}
@media only screen and (max-width: 48em) {
  .article-card .date .year {
    font-size: 2rem;
  }
}
.article-card .info {
  flex: 1;
  padding: 0 2.5rem;
  padding-left: 5rem;
}
@media only screen and (max-width: 48em) {
  .article-card .info {
    order: 2;
    padding-left: 2rem;
    padding-right: 0;
  }
}
.article-card .info .title {
  font-size: 1.8rem;
  color: #111;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 48em) {
  .article-card .info .title {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.article-card .info .desc {
  font-size: 1.6rem;
  color: #888888;
  line-height: 2.6rem;
  height: 5.2rem;
}
@media only screen and (max-width: 48em) {
  .article-card .info .desc {
    display: none;
  }
}
.article-card .cover {
  flex: none;
  width: 18.5rem;
  height: 10.4rem;
}
.article-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
}
.article-card:hover {
  background-color: #F8EFE0;
  border-bottom: 1px solid #F8EFE0;
}
.article-card:hover .date::after {
  color: #2F50AE;
}
.article-card:hover .info .title {
  color: #2F50AE;
}
.article-card:hover .info .desc {
  color: #2F50AE;
}
.teacher-card {
  display: flex;
  padding: 2.6rem;
  background-color: #F8F8F8;
  border: 1px solid #EFEFEF;
  overflow: hidden;
}
.teacher-card::before {
  content: "";
  display: block;
  width: 25.6rem;
  height: 19.3rem;
  position: absolute;
  right: -6rem;
  top: -2rem;
  background: url(../images/flower.png) no-repeat center center/cover;
  display: none;
}
.teacher-card::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 1rem solid #2F50AE;
  border-left: 1rem solid transparent;
  border-top: 1rem solid transparent;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.teacher-card .cover {
  flex: none;
  width: 14rem;
  height: 19rem;
  border: 1px solid #DCDCDC;
}
.teacher-card .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teacher-card .info {
  flex: 1;
  padding-left: 3rem;
  height: 100%;
}
.teacher-card .info .base {
  display: flex;
  padding-bottom: 1rem;
}
.teacher-card .info .base .name {
  font-size: 2.2rem;
  color: #111;
  flex: none;
}
.teacher-card .info .base .tag {
  padding-left: 1rem;
  font-size: 1.8rem;
  height: 3rem;
  line-height: 3rem;
  color: #111;
  position: relative;
  top: 0.5rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.teacher-card .info .desc {
  font-size: 1.6rem;
  color: #666;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}
.teacher-card:hover {
  background-color: #2F50AE;
}
.teacher-card:hover::before {
  display: block;
}
.teacher-card:hover::after {
  border: 1rem solid #FFE3B5;
  border-left: 1rem solid transparent;
  border-top: 1rem solid transparent;
}
.teacher-card:hover .info .base .name {
  color: #FFE3B5;
}
.teacher-card:hover .info .base .tag {
  color: #FFE3B5;
}
.teacher-card:hover .info .desc {
  color: #FFE3B5;
}

.inner-banner {
  height: 45rem;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-banner__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 168rem;
  color: #ffffff;
}
.inner-banner h2 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 62em) {
  .inner-banner h2 {
    font-size: 2.8rem;
  }
}
.inner-banner h3 {
  font-size: 3.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .inner-banner h3 {
    font-size: 1.6rem;
  }
}

.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4.6rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(166, 166, 166, 0.4);
}
@media only screen and (max-width: 75em) {
  .custom-breadcrumb {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.custom-breadcrumb .title {
  font-size: 3.6rem;
  color: #2F50AE;
  font-weight: 900;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  font-family: "MontserratRegular";
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb .title {
    font-size: 1.8rem;
  }
}
.custom-breadcrumb .breadcrumb-navs {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs .pos {
  font-size: 1.4rem;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  color: #2F50AE;
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "";
  font-size: 1.4rem;
  color: #2F50AE;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #111;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "";
  margin-right: 0.8rem;
  margin-left: 0.5rem;
}
.custom-breadcrumb .breadcrumb-navs nav a:first-child::before {
  display: none;
}
.custom-breadcrumb .breadcrumb-navs nav a:last-child {
  color: #2F50AE;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover {
  color: #2F50AE;
}
.custom-breadcrumb .breadcrumb-navs nav a:hover::before {
  color: #2F50AE;
}

.form-item {
  height: 100%;
}
.form-item--error input, .form-item--error textarea {
  outline: 2px solid #f56c6c !important;
}
.form-item--error small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item--success input, .form-item--success textarea {
  outline: 2px solid #67c23a !important;
}
.form-item--success small {
  transform: translate3d(0, 0, 0) !important;
  opacity: 1 !important;
}
.form-item input {
  width: 100%;
  padding: 0 2rem;
  height: 100%;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item textarea {
  width: 100%;
  height: 100%;
  padding: 1rem 2rem;
  background: #F1F1F1;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  border: none;
  outline: none;
  border-radius: 2px;
}
.form-item a,
.form-item button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #2F50AE;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.form-item a:active,
.form-item button:active {
  filter: brightness(0.8);
}
.form-item small {
  color: #f56c6c;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, -10px, 0);
  opacity: 0;
}

.custom-search__open {
  display: none;
}
.custom-search__open .iconfont {
  font-size: 2.5rem;
  color: #ffffff;
}
@media only screen and (max-width: 62em) {
  .custom-search__open {
    display: block;
  }
}
.custom-search__content {
  display: block;
}

.search-input {
  display: flex;
  align-items: center;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.search-input__input {
  width: 20rem;
  padding: 0 1.5rem;
  height: 3.6rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: rgba(17, 17, 17, 0.5);
  font-weight: 400;
  background-color: rgba(227, 240, 255, 0.8);
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 30rem;
    height: 6rem;
    font-size: 2rem;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  width: 4rem;
  height: 3.6rem;
  background-color: rgba(227, 240, 255, 0.2);
}
.search-input__button:hover {
  background-color: #2F50AE;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 6rem;
    height: 6rem;
  }
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.5);
}
.search-input__button:hover::after {
  color: #ffffff;
}

.custom-selector {
  width: 100%;
  height: 4rem;
  position: relative;
}
.custom-selector__input {
  background: rgba(20, 20, 20, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1000px;
  position: relative;
  color: #2F50AE;
}
.custom-selector__input::after {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  bottom: auto;
  left: auto;
  z-index: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  width: 0;
  height: 0;
  border-top: 8px solid rgba(255, 255, 255, 0.6);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.custom-selector__placeholder {
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #ffffff;
  overflow: 0.6;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.custom-selector__options {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 50px;
  left: 0;
  z-index: 999;
  display: none;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.custom-selector__options a {
  display: block;
  padding: 1rem;
  font-size: 1.6rem;
  border: 4px;
  color: #ffffff;
  line-height: 2;
  transition: 0.1s ease-in-out;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
}
.custom-selector__options a:last-child {
  border-bottom: none;
}
.custom-selector__options a:hover {
  background-color: #2F50AE;
  color: #ffffff;
}

.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 8rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid #2F50AE;
  border-radius: 50%;
  background-color: #2F50AE;
  color: #ffffff;
  transition: 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
.back-top-menu .iconfont {
  font-size: 20px;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #2F50AE;
  border: 3px solid #2F50AE;
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 5px;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d:hover {
  color: #2F50AE;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun_d {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #2F50AE;
  color: #ffffff;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no_d {
    display: none;
  }
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a:hover {
  color: #2F50AE;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_no a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot:hover {
  color: #2F50AE;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages span.p_dot {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f4f4f5;
  color: #606266;
  transition: 0.3s;
  cursor: pointer;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a:hover {
  color: #2F50AE;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_pages .p_fun a {
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    font-size: 14px;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
  font-size: 12px;
  color: #5a5a5a;
  line-height: 26px;
  padding: 0 10px;
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_t {
    display: none;
  }
}
@media only screen and (max-width: 62em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto {
    display: none;
  }
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto input#u6_goto.p_goto_input {
  width: 40px;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  text-align: center;
  font-size: 12px;
  color: #5a5a5a;
}
div.pb_sys_common.pb_sys_normal.pb_sys_style1 span.p_goto a {
  display: block;
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border-radius: 4px;
  font-size: 12px;
  color: #2f2f2f;
  transition: 0.3s;
  background-color: #2F50AE;
  color: #ffffff;
}

.popover {
  position: relative;
  display: inline-block;
}
.popover__title {
  display: inline-block;
}
.popover__content {
  position: absolute;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  right: 0;
  bottom: 0;
  z-index: 999;
  transform: translate3d(0, 110%, 0);
}

.article-details__heading {
  font-size: 3.4rem;
  line-height: 1.3;
  color: #111;
  font-family: "MontserratBold";
  margin-bottom: 2rem;
}
@media only screen and (max-width: 75em) {
  .article-details__heading {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 62em) {
  .article-details__heading {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 48em) {
  .article-details__heading {
    font-size: 2.4rem;
  }
}
.article-details__describe {
  margin-bottom: 2rem;
}
.article-details__tag {
  font-size: 2rem;
  color: #2457A9;
  font-family: "MontserratRegular";
}
@media only screen and (max-width: 75em) {
  .article-details__tag {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 62em) {
  .article-details__tag {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 48em) {
  .article-details__tag {
    font-size: 1.4rem;
  }
}
.article-details__content {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #2f2f2f;
  font-family: "MontserratRegular";
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  margin: 2rem 0;
}

.article-prev-next a {
  display: block;
  padding: 1.5rem 2rem;
  background: #f4f4f4;
  font-size: 1.6rem;
  color: #111111;
  border-top: 2px solid #024593;
}
.article-prev-next a span {
  display: block;
  font-weight: 600;
  color: #024593;
}
.article-prev-next a:not(:last-child) {
  margin-bottom: 3rem;
}
.article-prev-next a:hover {
  background: rgba(219, 59, 27, 0.1);
  border-top: 2px solid #db3b1b;
  color: #db3b1b;
}
.article-prev-next a:hover span {
  color: #db3b1b;
}

.gallery {
  display: grid;
  grid-template-rows: repeat(4, 5rem);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 62em) {
  .gallery {
    grid-template-rows: repeat(5, 5rem);
  }
}
.gallery__item--1 {
  grid-row: 1/span 1;
  grid-column: 1/span 1;
}
@media only screen and (max-width: 62em) {
  .gallery__item--1 {
    grid-row: 1/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--2 {
  grid-row: 1/span 1;
  grid-column: 2/span 1;
}
@media only screen and (max-width: 62em) {
  .gallery__item--2 {
    grid-row: 2/span 1;
    grid-column: 1/span 2;
  }
}
.gallery__item--3 {
  grid-row: 2/span 2;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 62em) {
  .gallery__item--3 {
    grid-row: 3/span 2;
  }
}
.gallery__item--4 {
  grid-row: 4/span 1;
  grid-column: 1/span 2;
}
@media only screen and (max-width: 62em) {
  .gallery__item--4 {
    grid-row: 5/span 1;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 99999;
}
@media only screen and (max-width: 75em) {
  .header {
    background: #2F50AE;
  }
  .header::after {
    display: none;
  }
}
.header.scroll {
  background: #2F50AE;
}
.header.scroll::after {
  display: none;
}
.header::after {
  display: block;
  content: "";
  width: 100%;
  height: 20rem;
  background: linear-gradient(rgba(0, 0, 0, 0.9), transparent);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 75em) {
  .header::after {
    display: none;
  }
}
.header__content {
  height: 10rem;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 62em) {
  .header__content {
    height: 8rem;
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 48em) {
  .header__content {
    height: 6rem;
    padding: 0 2rem;
  }
}
.header__content-left {
  height: 100%;
}
.header__content-left .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__content-left .logo img {
  display: block;
  max-height: 70%;
  width: auto;
}
.header__content-right {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__content-right {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #2F50AE;
  }
  .header__content-right.active {
    display: block;
  }
}
.header__content-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__content-top {
    padding: 2rem 0;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 75em) {
  .header__content-bottom {
    height: calc(100vh - 100px);
    overflow-y: auto;
  }
}
.header__menus {
  display: flex;
  padding-left: 3rem;
  align-items: center;
}
@media only screen and (min-width: 112.5em) {
  .header__menus {
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 48em) {
  .header__menus {
    padding-left: 1.6rem;
  }
}
.header__menus > *:not(:last-child) {
  margin-right: 3rem;
}
.header__menus .icon {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 2.4rem;
  cursor: pointer;
}
.header__menus .icon:hover {
  color: #D4A155;
}
.header__open-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #fff;
  line-height: 6rem;
  text-align: center;
  display: none;
  z-index: 9;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__open-btn {
    display: block;
  }
}
@media only screen and (max-width: 75em) {
  .header__open-btn {
    font-size: 3rem;
  }
}
.header__close-btn {
  font-size: 4rem;
  color: #ffffff;
  position: absolute;
  right: 1.5rem;
  top: 1.8rem;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__close-btn {
    display: block;
  }
}

.search-popover {
  position: relative;
}
@media only screen and (max-width: 75em) {
  .search-popover__icon {
    display: none;
  }
}
.search-popover__content {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
  transform: translate(1rem, 100%);
}
@media only screen and (max-width: 75em) {
  .search-popover__content {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 0);
    z-index: 1;
  }
}

.web-nav__1-list {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    display: block;
    padding: 0rem 2rem;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
}
.web-nav__1-item:not(:last-child) {
  margin-right: 2vw;
}
@media (max-width: 1600px) {
  .web-nav__1-item:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media (max-width: 1400px) {
  .web-nav__1-item:not(:last-child) {
    margin-right: 1.2rem;
  }
}
.web-nav__1-link {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 4rem;
}
@media (max-width: 1400px) {
  .web-nav__1-link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link {
    min-width: 100%;
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: auto;
    line-height: 6rem;
    font-size: 2.4rem;
  }
}
.web-nav__1-link.active {
  color: #D4A155;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link.active {
    color: #fff;
  }
}
.web-nav__1-open {
  display: none;
}
.web-nav__2-list {
  position: absolute;
  top: 4rem;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9999;
  width: 18rem;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  transform: translateX(-50%);
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list {
    position: static;
    background-color: transparent;
    display: block;
    padding-left: 3rem;
    transform: translateX(0);
    width: max-content;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
.web-nav__2-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  text-align: center;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link {
    color: #ffffff;
    line-height: 5rem;
    text-align: left;
    font-size: 2rem;
  }
}
.web-nav__2-link:hover, .web-nav__2-link.active {
  color: #ffffff;
  background: #2F50AE;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link:hover, .web-nav__2-link.active {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "";
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link--arrow::after {
    display: none;
  }
}
.web-nav__2-open {
  display: none;
}
.web-nav__3-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  border-left: 1px solid rgba(47, 80, 174, 0.1);
}
@media only screen and (max-width: 75em) {
  .web-nav__3-list {
    position: static;
    padding: 0;
    padding-left: 6rem;
    border-left: none;
    background-color: transparent;
    display: block;
  }
}
.web-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (min-width: 112.5em) {
  .web-nav__3-link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link {
    color: #ffffff;
    line-height: 5rem;
    padding: 0;
  }
}
.web-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #2F50AE;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link:hover {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}

.footer {
  background: url(../images/footer-bg.jpg) no-repeat center center/cover;
}
.footer__main {
  display: flex;
  flex-wrap: wrap;
}
.footer__left {
  flex: 1;
}
@media only screen and (max-width: 75em) {
  .footer__left {
    flex: none;
    width: 100%;
    order: 2;
    padding-bottom: 3rem;
  }
}
.footer__medium {
  flex: 1;
  padding: 0 5rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer__medium {
    flex: none;
    width: 100%;
    order: 1;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
.footer__medium img {
  margin: 0 auto;
  display: block;
  max-width: 80%;
}
.footer__right {
  flex: 1;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer__right {
    flex: none;
    width: 100%;
    order: 3;
  }
}

.footer-base {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .footer-base {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.footer-base__left {
  padding-right: 2rem;
}
.footer-base__left p {
  font-size: 1.6rem;
  color: #fff;
}
.footer-base__left p:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 75em) {
  .footer-base__left p:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 48em) {
  .footer-base__left p:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
.footer-base__left p strong {
  color: #fff;
  font-weight: 400;
}
@media only screen and (max-width: 75em) {
  .footer-base__right {
    padding-top: 3rem;
  }
}

.wx-icon {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: #fff;
}
.wx-icon span {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fff;
  margin-right: 1rem;
}

.qr-code img {
  width: 10rem;
  height: 10rem;
  background-color: #fff;
}
.qr-code .text {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  margin-top: 1rem;
}

.copyright {
  text-align: center;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-page {
  position: relative;
}
.inner-page__wrapper {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .inner-page__wrapper {
    padding: 0;
    display: block;
  }
}
.inner-page__left {
  flex: none;
}
.inner-page__medium {
  flex: 1;
  overflow: hidden;
  padding-right: 5rem;
}
@media only screen and (max-width: 62em) {
  .inner-page__medium {
    padding-right: 0;
  }
}
.inner-page__right {
  width: 32rem;
  flex: none;
}
@media only screen and (max-width: 48em) {
  .inner-page__right {
    width: auto;
    margin-top: 2rem;
  }
}

.side-bar {
  flex: none;
  width: 40rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 24rem;
    padding-left: 0rem;
  }
}
.side-bar__title {
  display: flex;
  align-items: center;
  line-height: 10rem;
  font-size: 3.6rem;
  font-weight: 600;
  color: #fff;
  padding-left: 5.3rem;
  background: url(../images/heading-bg.png) #0F4F99 no-repeat right center/contain;
}

.side-nav {
  background-color: #fff;
  box-sizing: border-box;
  padding-bottom: 8rem;
  border-left: 1.3rem solid #F2C584;
  border-bottom: 1.3rem solid #F2C584;
}
.side-nav__1-item {
  list-style: none;
  position: relative;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
}
.side-nav__1-item.active > .side-nav__1-link {
  background-color: #DCE7F2;
}
.side-nav__1-item.active > .side-nav__1-link::before {
  content: "";
  display: block;
  width: 1.3rem;
  left: -1.3rem;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #0F4F99;
}
.side-nav__1-item.active > .side-nav__1-link::after {
  content: "";
  font-family: "iconfont";
  content: "";
  display: block;
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  color: #0F4F99;
  font-size: 2rem;
}
.side-nav__1-link {
  display: block;
  padding-left: 4rem;
  line-height: 8.5rem;
  font-size: 2.4rem;
  color: #111;
  position: relative;
}
.side-nav__2-list {
  display: none;
  padding: 2rem;
  background-color: #F5F9FC;
}
.side-nav__2-item {
  list-style: none;
  position: relative;
}
.side-nav__2-item.active > .side-nav__3-list {
  display: block;
}
.side-nav__2-item.active > .side-nav__2-link {
  color: #2F50AE;
}
.side-nav__2-link {
  font-size: 1.8rem;
  line-height: 5rem;
  color: #111;
  white-space: nowrap;
  padding-left: 4rem;
}
.side-nav__3-list {
  padding: 1rem 0;
  background-color: #ffffff;
}
.side-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.8rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
.side-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #2F50AE;
}

.section-banner {
  position: relative;
}
.section-banner .swiper-slide {
  position: relative;
}
.section-banner .swiper-slide.swiper-slide-active .cover img {
  transform: scale(1);
}
.section-banner .swiper-pagination {
  width: auto;
  padding: 2rem 5rem;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination {
    width: 100%;
    padding: 0;
  }
}
.section-banner .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0.6;
  margin: 0 1rem !important;
  font-family: "syst";
  position: relative;
}
.section-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-weight: 600;
  opacity: 1;
}
.section-banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1px;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(1.6rem, -50%);
}
.section-banner .mouse-wrapper {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .section-banner .mouse-wrapper {
    display: none;
  }
}
.section-banner .mouse-wrapper .cover img {
  width: 20px;
  height: 28px;
}
.section-banner .mouse-wrapper .info {
  padding-top: 0.8rem;
  font-size: 1.4rem;
  color: #fff;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-heading__title {
  position: relative;
  padding-left: 1.5rem;
}
.section-heading__title::before {
  content: "";
  display: block;
  width: 3px;
  height: 2.8rem;
  background: linear-gradient(#C7903E 0 50%, #2F50AE 50% 100%);
  position: absolute;
  left: 0;
  bottom: 2px;
}
.section-heading__title .text {
  font-size: 2.8rem;
  color: #2F50AE;
  font-family: "syst";
  line-height: 1;
}
.section-heading__title .text strong {
  font-size: 5.6rem;
  color: #C7903E;
  font-family: "hlbsjt";
  position: relative;
  top: 3px;
}
.section-heading__more {
  padding-top: 2rem;
}
.section-heading__more .more-link {
  font-size: 1.8rem;
  color: #2F50AE;
  font-family: "syst";
  display: flex;
  align-items: center;
}
.section-heading__more .more-link::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/arrow.png) no-repeat center center/cover;
}

.web-main__box-1 {
  background-color: #f7f9fb;
}
.web-main__box-3 {
  background-color: #f7f9fb;
}

.section-1__content .swiper {
  height: 158rem;
}
@media only screen and (max-width: 48em) {
  .section-1__content .swiper {
    height: 48rem;
  }
}
.section-2__list .item:not(:last-child) {
  margin-bottom: 3rem;
}

.section-3 {
  background-color: #edf1f8;
}
.section-4__list .item:not(:last-child) {
  margin-bottom: 2rem;
}

.static-banner {
  width: 100%;
  height: 60rem;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .static-banner {
    height: 50rem;
  }
}
@media only screen and (max-width: 62em) {
  .static-banner {
    height: 40rem;
  }
}
@media only screen and (max-width: 48em) {
  .static-banner {
    height: 20rem;
  }
}
.static-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-details .base-info {
  display: flex;
  padding: 2rem;
  background-color: #DCE3F7;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.teacher-details .base-info::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 1rem solid #2F50AE;
  border-left: 1rem solid transparent;
  border-top: 1rem solid transparent;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.teacher-details .base-info::before {
  content: "";
  display: block;
  width: 8rem;
  height: 11rem;
  background: #2F50AE;
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info {
    display: block;
  }
}
.teacher-details .base-info .flower {
  display: block;
  width: 25.6rem;
  height: 19.3rem;
  position: absolute;
  right: -2rem;
  top: 0rem;
  background: url(../images/flower-blue.png) no-repeat center center/cover;
}
.teacher-details .base-info .cover {
  width: 18rem;
  height: 25rem;
  flex: none;
  position: relative;
  border: 1px solid #DCDCDC;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .cover {
    width: 100%;
    height: auto;
  }
}
.teacher-details .base-info .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .cover img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}
.teacher-details .base-info .info {
  padding-left: 3rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info {
    padding-left: 0;
  }
}
.teacher-details .base-info .info .top {
  display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(90, 90, 90, 0.3);
}
.teacher-details .base-info .info .top .name {
  font-size: 3rem;
  font-weight: 600;
  font-family: "MicrosoftYaHei-Bold";
  padding-right: 2rem;
  color: #2F50AE;
}
.teacher-details .base-info .info .top .tag {
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  top: -0.5rem;
  color: #2F50AE;
}
.teacher-details .base-info .info .labels {
  display: flex;
  flex-wrap: wrap;
  padding-top: 3rem;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .labels {
    display: block;
  }
}
.teacher-details .base-info .info .labels .text {
  font-size: 1.6rem;
  box-sizing: border-box;
  padding-bottom: 1rem;
  color: #2f2f2f;
}
.teacher-details .base-info .info .labels .text:not(:last-child) {
  margin-right: 4rem;
}
.teacher-details .base-info .info .desc {
  padding-top: 2rem;
  font-size: 1.6rem;
  color: #2f2f2f;
  line-height: 1.6;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.teacher-details .details-info {
  border: 1px solid #C8C8C8;
}
.teacher-details .details-info h3 {
  display: flex;
  align-items: center;
  height: 5rem;
  background: #DCE3F7;
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: #024593;
  position: relative;
  margin-bottom: 1rem;
}
.teacher-details .details-info h3:not(:first-child) {
  margin-top: 5rem;
}
.teacher-details .details-info h3:not(:first-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  right: -1px;
  top: -3rem;
  height: 3rem;
  background-color: #fff;
  border-top: 1px solid #C8C8C8;
  border-bottom: 3px solid #2F50AE;
}
.teacher-details .details-info p {
  padding: 1rem 3rem;
  font-size: 1.6rem;
  color: #2f2f2f;
}
