@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);
  }
}
@keyframes banner-video-spin {
  to {
    transform: rotate(360deg);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  overflow-x: hidden;
  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;
}
@media only screen and (max-width: 62em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  body {
    padding-top: 6rem;
  }
}

.fixed-header {
  padding-top: 10rem;
}
@media only screen and (max-width: 62em) {
  .fixed-header {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  .fixed-header {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #2B573E;
  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");
}
body {
  font-family: "MontserratRegular", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: #777;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 168rem;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.gutter-9 {
  margin-left: -4.5rem;
  margin-right: -4.5rem;
}
.gutter-9 > [class^=col-] {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}

.space-9 {
  margin-top: -4.5rem;
  margin-bottom: -4.5rem;
}
.space-9 > [class^=col-] {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.m-9 {
  margin: 9rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.ml-9 {
  margin-left: 9rem;
}

.p-9 {
  padding: 9rem;
}

.pt-9 {
  padding-top: 9rem;
}

.pr-9 {
  padding-right: 9rem;
}

.pb-9 {
  padding-bottom: 9rem;
}

.pl-9 {
  padding-left: 9rem;
}

.px-9 {
  padding-left: 9rem;
  padding-right: 9rem;
}

.py-9 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

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

.gutter-10 {
  margin-left: -5rem;
  margin-right: -5rem;
}
.gutter-10 > [class^=col-] {
  padding-left: 5rem;
  padding-right: 5rem;
}

.space-10 {
  margin-top: -5rem;
  margin-bottom: -5rem;
}
.space-10 > [class^=col-] {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.m-10 {
  margin: 10rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mr-10 {
  margin-right: 10rem;
}

.mb-10 {
  margin-bottom: 10rem;
}

.ml-10 {
  margin-left: 10rem;
}

.p-10 {
  padding: 10rem;
}

.pt-10 {
  padding-top: 10rem;
}

.pr-10 {
  padding-right: 10rem;
}

.pb-10 {
  padding-bottom: 10rem;
}

.pl-10 {
  padding-left: 10rem;
}

.px-10 {
  padding-left: 10rem;
  padding-right: 10rem;
}

.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

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

.gutter-12 {
  margin-left: -6rem;
  margin-right: -6rem;
}
.gutter-12 > [class^=col-] {
  padding-left: 6rem;
  padding-right: 6rem;
}

.space-12 {
  margin-top: -6rem;
  margin-bottom: -6rem;
}
.space-12 > [class^=col-] {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.m-12 {
  margin: 12rem;
}

.mt-12 {
  margin-top: 12rem;
}

.mr-12 {
  margin-right: 12rem;
}

.mb-12 {
  margin-bottom: 12rem;
}

.ml-12 {
  margin-left: 12rem;
}

.p-12 {
  padding: 12rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pr-12 {
  padding-right: 12rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

.pl-12 {
  padding-left: 12rem;
}

.px-12 {
  padding-left: 12rem;
  padding-right: 12rem;
}

.py-12 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.col-15 {
  flex: 0 0 6.6666666667%;
  max-width: 6.6666666667%;
}

.gutter-15 {
  margin-left: -7.5rem;
  margin-right: -7.5rem;
}
.gutter-15 > [class^=col-] {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}

.space-15 {
  margin-top: -7.5rem;
  margin-bottom: -7.5rem;
}
.space-15 > [class^=col-] {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.m-15 {
  margin: 15rem;
}

.mt-15 {
  margin-top: 15rem;
}

.mr-15 {
  margin-right: 15rem;
}

.mb-15 {
  margin-bottom: 15rem;
}

.ml-15 {
  margin-left: 15rem;
}

.p-15 {
  padding: 15rem;
}

.pt-15 {
  padding-top: 15rem;
}

.pr-15 {
  padding-right: 15rem;
}

.pb-15 {
  padding-bottom: 15rem;
}

.pl-15 {
  padding-left: 15rem;
}

.px-15 {
  padding-left: 15rem;
  padding-right: 15rem;
}

.py-15 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}

@media only screen and (min-width: 62em) {
  .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;
  }
  .col-lg-9 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .gutter-lg-9 {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
  .gutter-lg-9 > [class^=col-] {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  .space-lg-9 {
    margin-top: -4.5rem;
    margin-bottom: -4.5rem;
  }
  .space-lg-9 > [class^=col-] {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .m-lg-9 {
    margin: 9rem;
  }
  .mt-lg-9 {
    margin-top: 9rem;
  }
  .mr-lg-9 {
    margin-right: 9rem;
  }
  .mb-lg-9 {
    margin-bottom: 9rem;
  }
  .ml-lg-9 {
    margin-left: 9rem;
  }
  .p-lg-9 {
    padding: 9rem;
  }
  .pt-lg-9 {
    padding-top: 9rem;
  }
  .pr-lg-9 {
    padding-right: 9rem;
  }
  .pb-lg-9 {
    padding-bottom: 9rem;
  }
  .pl-lg-9 {
    padding-left: 9rem;
  }
  .px-lg-9 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .py-lg-9 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .col-lg-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .gutter-lg-10 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .gutter-lg-10 > [class^=col-] {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .space-lg-10 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .space-lg-10 > [class^=col-] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .m-lg-10 {
    margin: 10rem;
  }
  .mt-lg-10 {
    margin-top: 10rem;
  }
  .mr-lg-10 {
    margin-right: 10rem;
  }
  .mb-lg-10 {
    margin-bottom: 10rem;
  }
  .ml-lg-10 {
    margin-left: 10rem;
  }
  .p-lg-10 {
    padding: 10rem;
  }
  .pt-lg-10 {
    padding-top: 10rem;
  }
  .pr-lg-10 {
    padding-right: 10rem;
  }
  .pb-lg-10 {
    padding-bottom: 10rem;
  }
  .pl-lg-10 {
    padding-left: 10rem;
  }
  .px-lg-10 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .py-lg-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .col-lg-12 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .gutter-lg-12 {
    margin-left: -6rem;
    margin-right: -6rem;
  }
  .gutter-lg-12 > [class^=col-] {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .space-lg-12 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }
  .space-lg-12 > [class^=col-] {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .m-lg-12 {
    margin: 12rem;
  }
  .mt-lg-12 {
    margin-top: 12rem;
  }
  .mr-lg-12 {
    margin-right: 12rem;
  }
  .mb-lg-12 {
    margin-bottom: 12rem;
  }
  .ml-lg-12 {
    margin-left: 12rem;
  }
  .p-lg-12 {
    padding: 12rem;
  }
  .pt-lg-12 {
    padding-top: 12rem;
  }
  .pr-lg-12 {
    padding-right: 12rem;
  }
  .pb-lg-12 {
    padding-bottom: 12rem;
  }
  .pl-lg-12 {
    padding-left: 12rem;
  }
  .px-lg-12 {
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .py-lg-12 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .col-lg-15 {
    flex: 0 0 6.6666666667%;
    max-width: 6.6666666667%;
  }
  .gutter-lg-15 {
    margin-left: -7.5rem;
    margin-right: -7.5rem;
  }
  .gutter-lg-15 > [class^=col-] {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
  .space-lg-15 {
    margin-top: -7.5rem;
    margin-bottom: -7.5rem;
  }
  .space-lg-15 > [class^=col-] {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .m-lg-15 {
    margin: 15rem;
  }
  .mt-lg-15 {
    margin-top: 15rem;
  }
  .mr-lg-15 {
    margin-right: 15rem;
  }
  .mb-lg-15 {
    margin-bottom: 15rem;
  }
  .ml-lg-15 {
    margin-left: 15rem;
  }
  .p-lg-15 {
    padding: 15rem;
  }
  .pt-lg-15 {
    padding-top: 15rem;
  }
  .pr-lg-15 {
    padding-right: 15rem;
  }
  .pb-lg-15 {
    padding-bottom: 15rem;
  }
  .pl-lg-15 {
    padding-left: 15rem;
  }
  .px-lg-15 {
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .py-lg-15 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}
@media only screen and (max-width: 62em) {
  .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;
  }
  .col-md-9 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .gutter-md-9 {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
  .gutter-md-9 > [class^=col-] {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  .space-md-9 {
    margin-top: -4.5rem;
    margin-bottom: -4.5rem;
  }
  .space-md-9 > [class^=col-] {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .m-md-9 {
    margin: 9rem;
  }
  .mt-md-9 {
    margin-top: 9rem;
  }
  .mr-md-9 {
    margin-right: 9rem;
  }
  .mb-md-9 {
    margin-bottom: 9rem;
  }
  .ml-md-9 {
    margin-left: 9rem;
  }
  .p-md-9 {
    padding: 9rem;
  }
  .pt-md-9 {
    padding-top: 9rem;
  }
  .pr-md-9 {
    padding-right: 9rem;
  }
  .pb-md-9 {
    padding-bottom: 9rem;
  }
  .pl-md-9 {
    padding-left: 9rem;
  }
  .px-md-9 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .py-md-9 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .col-md-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .gutter-md-10 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .gutter-md-10 > [class^=col-] {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .space-md-10 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .space-md-10 > [class^=col-] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .m-md-10 {
    margin: 10rem;
  }
  .mt-md-10 {
    margin-top: 10rem;
  }
  .mr-md-10 {
    margin-right: 10rem;
  }
  .mb-md-10 {
    margin-bottom: 10rem;
  }
  .ml-md-10 {
    margin-left: 10rem;
  }
  .p-md-10 {
    padding: 10rem;
  }
  .pt-md-10 {
    padding-top: 10rem;
  }
  .pr-md-10 {
    padding-right: 10rem;
  }
  .pb-md-10 {
    padding-bottom: 10rem;
  }
  .pl-md-10 {
    padding-left: 10rem;
  }
  .px-md-10 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .py-md-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .col-md-12 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .gutter-md-12 {
    margin-left: -6rem;
    margin-right: -6rem;
  }
  .gutter-md-12 > [class^=col-] {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .space-md-12 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }
  .space-md-12 > [class^=col-] {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .m-md-12 {
    margin: 12rem;
  }
  .mt-md-12 {
    margin-top: 12rem;
  }
  .mr-md-12 {
    margin-right: 12rem;
  }
  .mb-md-12 {
    margin-bottom: 12rem;
  }
  .ml-md-12 {
    margin-left: 12rem;
  }
  .p-md-12 {
    padding: 12rem;
  }
  .pt-md-12 {
    padding-top: 12rem;
  }
  .pr-md-12 {
    padding-right: 12rem;
  }
  .pb-md-12 {
    padding-bottom: 12rem;
  }
  .pl-md-12 {
    padding-left: 12rem;
  }
  .px-md-12 {
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .py-md-12 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .col-md-15 {
    flex: 0 0 6.6666666667%;
    max-width: 6.6666666667%;
  }
  .gutter-md-15 {
    margin-left: -7.5rem;
    margin-right: -7.5rem;
  }
  .gutter-md-15 > [class^=col-] {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
  .space-md-15 {
    margin-top: -7.5rem;
    margin-bottom: -7.5rem;
  }
  .space-md-15 > [class^=col-] {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .m-md-15 {
    margin: 15rem;
  }
  .mt-md-15 {
    margin-top: 15rem;
  }
  .mr-md-15 {
    margin-right: 15rem;
  }
  .mb-md-15 {
    margin-bottom: 15rem;
  }
  .ml-md-15 {
    margin-left: 15rem;
  }
  .p-md-15 {
    padding: 15rem;
  }
  .pt-md-15 {
    padding-top: 15rem;
  }
  .pr-md-15 {
    padding-right: 15rem;
  }
  .pb-md-15 {
    padding-bottom: 15rem;
  }
  .pl-md-15 {
    padding-left: 15rem;
  }
  .px-md-15 {
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .py-md-15 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}
@media only screen and (max-width: 48em) {
  .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;
  }
  .col-sm-9 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .gutter-sm-9 {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
  }
  .gutter-sm-9 > [class^=col-] {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }
  .space-sm-9 {
    margin-top: -4.5rem;
    margin-bottom: -4.5rem;
  }
  .space-sm-9 > [class^=col-] {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .m-sm-9 {
    margin: 9rem;
  }
  .mt-sm-9 {
    margin-top: 9rem;
  }
  .mr-sm-9 {
    margin-right: 9rem;
  }
  .mb-sm-9 {
    margin-bottom: 9rem;
  }
  .ml-sm-9 {
    margin-left: 9rem;
  }
  .p-sm-9 {
    padding: 9rem;
  }
  .pt-sm-9 {
    padding-top: 9rem;
  }
  .pr-sm-9 {
    padding-right: 9rem;
  }
  .pb-sm-9 {
    padding-bottom: 9rem;
  }
  .pl-sm-9 {
    padding-left: 9rem;
  }
  .px-sm-9 {
    padding-left: 9rem;
    padding-right: 9rem;
  }
  .py-sm-9 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .col-sm-10 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .gutter-sm-10 {
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .gutter-sm-10 > [class^=col-] {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .space-sm-10 {
    margin-top: -5rem;
    margin-bottom: -5rem;
  }
  .space-sm-10 > [class^=col-] {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .m-sm-10 {
    margin: 10rem;
  }
  .mt-sm-10 {
    margin-top: 10rem;
  }
  .mr-sm-10 {
    margin-right: 10rem;
  }
  .mb-sm-10 {
    margin-bottom: 10rem;
  }
  .ml-sm-10 {
    margin-left: 10rem;
  }
  .p-sm-10 {
    padding: 10rem;
  }
  .pt-sm-10 {
    padding-top: 10rem;
  }
  .pr-sm-10 {
    padding-right: 10rem;
  }
  .pb-sm-10 {
    padding-bottom: 10rem;
  }
  .pl-sm-10 {
    padding-left: 10rem;
  }
  .px-sm-10 {
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .py-sm-10 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .col-sm-12 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .gutter-sm-12 {
    margin-left: -6rem;
    margin-right: -6rem;
  }
  .gutter-sm-12 > [class^=col-] {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .space-sm-12 {
    margin-top: -6rem;
    margin-bottom: -6rem;
  }
  .space-sm-12 > [class^=col-] {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .m-sm-12 {
    margin: 12rem;
  }
  .mt-sm-12 {
    margin-top: 12rem;
  }
  .mr-sm-12 {
    margin-right: 12rem;
  }
  .mb-sm-12 {
    margin-bottom: 12rem;
  }
  .ml-sm-12 {
    margin-left: 12rem;
  }
  .p-sm-12 {
    padding: 12rem;
  }
  .pt-sm-12 {
    padding-top: 12rem;
  }
  .pr-sm-12 {
    padding-right: 12rem;
  }
  .pb-sm-12 {
    padding-bottom: 12rem;
  }
  .pl-sm-12 {
    padding-left: 12rem;
  }
  .px-sm-12 {
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .py-sm-12 {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .col-sm-15 {
    flex: 0 0 6.6666666667%;
    max-width: 6.6666666667%;
  }
  .gutter-sm-15 {
    margin-left: -7.5rem;
    margin-right: -7.5rem;
  }
  .gutter-sm-15 > [class^=col-] {
    padding-left: 7.5rem;
    padding-right: 7.5rem;
  }
  .space-sm-15 {
    margin-top: -7.5rem;
    margin-bottom: -7.5rem;
  }
  .space-sm-15 > [class^=col-] {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .m-sm-15 {
    margin: 15rem;
  }
  .mt-sm-15 {
    margin-top: 15rem;
  }
  .mr-sm-15 {
    margin-right: 15rem;
  }
  .mb-sm-15 {
    margin-bottom: 15rem;
  }
  .ml-sm-15 {
    margin-left: 15rem;
  }
  .p-sm-15 {
    padding: 15rem;
  }
  .pt-sm-15 {
    padding-top: 15rem;
  }
  .pr-sm-15 {
    padding-right: 15rem;
  }
  .pb-sm-15 {
    padding-bottom: 15rem;
  }
  .pl-sm-15 {
    padding-left: 15rem;
  }
  .px-sm-15 {
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .py-sm-15 {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }
}
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (min-width: 62em) {
  .m-lg-0 {
    margin: 0;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
  .mr-lg-0 {
    margin-right: 0;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .ml-lg-0 {
    margin-left: 0;
  }
  .p-lg-0 {
    padding: 0;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pr-lg-0 {
    padding-right: 0;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pl-lg-0 {
    padding-left: 0;
  }
  .px-lg-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 62em) {
  .m-md-0 {
    margin: 0;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mr-md-0 {
    margin-right: 0;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .ml-md-0 {
    margin-left: 0;
  }
  .p-md-0 {
    padding: 0;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pr-md-0 {
    padding-right: 0;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pl-md-0 {
    padding-left: 0;
  }
  .px-md-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 48em) {
  .m-sm-0 {
    margin: 0;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
  .mr-sm-0 {
    margin-right: 0;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .ml-sm-0 {
    margin-left: 0;
  }
  .p-sm-0 {
    padding: 0;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pr-sm-0 {
    padding-right: 0;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pl-sm-0 {
    padding-left: 0;
  }
  .px-sm-0 {
    padding-left: 0;
    padding-right: 0;
  }
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.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: #2B573E;
}
.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: #2B573E;
  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: "\e8c8";
  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: #005FAB;
}
.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: #2B573E;
}
.text-card:hover .date {
  color: #2B573E;
}
.text-card--secondary:hover .title {
  color: #005FAB;
}
.text-card--secondary:hover .date {
  color: #005FAB;
}
.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: #2B573E;
  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: #2B573E;
  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;
}

.exchange-card {
  padding: 1.4rem;
  position: relative;
  z-index: 0;
  isolation: isolate;
  background: #fff;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}
.exchange-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, rgba(0, 95, 171, 0.96), rgba(0, 147, 68, 0.94)), radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 34%);
  opacity: 0;
  transform: translate3d(0, 0.8rem, 0) scale(0.96);
  transform-origin: center bottom;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.exchange-card::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(#005FAB, #009344);
  opacity: 0;
  transform: translate3d(0.4rem, 0.4rem, 0) scale(0.98);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.exchange-card .cover {
  aspect-ratio: 1.8;
  position: relative;
  z-index: 1;
}
.exchange-card .cover img {
  transition-duration: 0.55s;
}
.exchange-card .info {
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.exchange-card .info .title {
  font-size: 2rem;
  color: #111;
  font-family: "MontserratRegular";
  transition: color 0.35s ease;
}
.exchange-card:hover {
  transform: translate3d(0, -0.6rem, 0);
  box-shadow: 0 2rem 4rem rgba(0, 95, 171, 0.12);
}
.exchange-card:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.exchange-card:hover::after {
  opacity: 0.22;
  transform: translate3d(1rem, 1rem, 0) scale(1);
}
.exchange-card:hover .info .title {
  color: #fff;
}

.class-card {
  padding-top: 2.4rem;
  padding-bottom: 1.6rem;
  padding-left: 15rem;
  padding-right: 4rem;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  background-color: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}
.class-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43, 87, 62, 0.06), rgba(0, 95, 171, 0.04));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.class-card:hover, .class-card:focus-within {
  transform: translateY(-0.6rem);
  box-shadow: 0 1.2rem 2.8rem rgba(17, 31, 25, 0.12);
}
.class-card:hover::before, .class-card:focus-within::before {
  opacity: 1;
}
.class-card:hover .special-date, .class-card:focus-within .special-date {
  transform: translateY(-0.5rem) scale(1.02);
  border-color: transparent;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 95, 171, 0.15);
}
.class-card:hover .special-date::before, .class-card:focus-within .special-date::before {
  background: #f9dd27;
}
.class-card:hover .special-date .d,
.class-card:hover .special-date .m,
.class-card:hover .special-date .y, .class-card:focus-within .special-date .d,
.class-card:focus-within .special-date .m,
.class-card:focus-within .special-date .y {
  color: #333;
}
.class-card:hover .info .title, .class-card:focus-within .info .title {
  color: #2B573E;
}
.class-card:hover .info .details, .class-card:focus-within .info .details {
  border-top-color: rgba(43, 87, 62, 0.18);
}
.class-card:hover .info .details .text::before, .class-card:focus-within .info .details .text::before {
  color: #005FAB;
}
.class-card .special-date {
  position: absolute;
  left: 3rem;
  top: -2.4rem;
  z-index: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.class-card .info {
  position: relative;
  z-index: 1;
}
.class-card .info .title {
  font-size: 2rem;
  line-height: 3.3rem;
  color: #111;
  height: 6.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;
  transition: color 0.28s ease;
}
.class-card .info .details {
  border-top: 1px solid rgba(102, 102, 102, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  transition: border-color 0.28s ease;
}
.class-card .info .details .text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  min-height: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 2.8rem;
  position: relative;
  min-width: 0;
}
.class-card .info .details .text:empty::before {
  display: none;
}
.class-card .info .details .text::before {
  display: block;
  content: "";
  font-family: "iconfont";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: #2B573E;
  transition: color 0.28s ease;
}
.class-card .info .details .text--user::before {
  content: "\e677";
}
.class-card .info .details .text--date::before {
  content: "\e609";
}
.class-card .info .details .text--address::before {
  content: "\e642";
}
.class-card .link {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.progress-card {
  background-color: #fff;
  flex: 0 1 28rem;
  height: 56rem;
  min-width: 0;
  overflow: visible;
  position: relative;
  transition: flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1), flex-grow 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.progress-card + .progress-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #2B573E;
  z-index: 5;
  pointer-events: none;
}
.progress-card.active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(43, 87, 62, 0.28);
  z-index: 6;
  pointer-events: none;
}
.progress-card:not(.active) {
  cursor: pointer;
}
.progress-card:hover .special-date::before, .progress-card:focus-within .special-date::before {
  background: #f9dd27;
}
.progress-card:hover .special-date .d,
.progress-card:hover .special-date .m,
.progress-card:hover .special-date .y, .progress-card:focus-within .special-date .d,
.progress-card:focus-within .special-date .m,
.progress-card:focus-within .special-date .y {
  color: #333;
}
.progress-card.active .progress-card__close {
  opacity: 0;
  transform: translateX(-1rem);
  pointer-events: none;
}
.progress-card.active .progress-card__expend {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.progress-card.active .progress-card__expend .info {
  background-color: #fff;
}
.progress-card.active .progress-card__expend .info::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(43, 87, 62, 0.2);
}
.progress-card.active .progress-card__expend .bg img {
  transform: scale(1);
}
.progress-card.active {
  flex: 1 1 84rem;
  box-shadow: 0 1.2rem 3rem rgba(43, 87, 62, 0.12);
}
.progress-card__close {
  position: absolute;
  inset: 0;
  opacity: 1;
  transform: translateX(0);
  overflow: hidden;
  transition: opacity 0.35s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-card__close .bg {
  width: 100%;
  height: 100%;
}
.progress-card__close .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-card__close .info {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 147, 68, 0.72), rgba(0, 95, 171, 0.72));
  display: flex;
  justify-content: center;
  align-items: center;
}
.progress-card__close .info .title {
  font-size: 2rem;
  line-height: 3.2rem;
  color: #fff;
  font-family: "MontserratRegular";
}
.progress-card__expend {
  display: flex;
  position: absolute;
  inset: 0;
  min-width: 84rem;
  opacity: 0;
  transform: translateX(3rem);
  pointer-events: none;
  transition: opacity 0.32s ease 0.12s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress-card__expend .info {
  flex: 1;
  min-width: 0;
  padding: 3rem;
  position: relative;
  z-index: 2;
}
.progress-card__expend .info .special-date {
  transform: translateY(-4.5rem);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.progress-card__expend .info .special-date:hover {
  transform: translateY(-5rem) scale(1.02);
}
.progress-card__expend .info .title {
  font-size: 2rem;
  line-height: 3.3rem;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 3rem;
}
.progress-card__expend .info .desc {
  font-size: 1.6rem;
  line-height: 2;
  color: #666;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 6rem;
}
.progress-card__expend .info .more {
  width: 16rem;
  border-radius: 1px 1px 1px 1px;
  border: 1px solid #2B573E;
  opacity: 0.5;
  font-size: 1.6rem;
  line-height: 4.2rem;
  color: #265542;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}
.progress-card__expend .info .more:hover, .progress-card__expend .info .more:focus-visible {
  opacity: 1;
  color: #fff;
  background-color: #2B573E;
  border-color: #2B573E;
  box-shadow: 0 0.8rem 1.8rem rgba(43, 87, 62, 0.18);
}
.progress-card__expend .info .more:hover::after, .progress-card__expend .info .more:focus-visible::after {
  transform: translateX(0.4rem) rotate(180deg);
}
.progress-card__expend .info .more:focus-visible {
  outline: 2px solid rgba(0, 95, 171, 0.35);
  outline-offset: 0.3rem;
}
.progress-card__expend .info .more::after {
  content: "";
  font-family: "iconfont";
  content: "\eb92";
  transform: rotate(180deg);
  margin-left: 1rem;
  font-size: 2rem;
  transition: transform 0.28s ease;
}
.progress-card__expend .bg {
  flex: none;
  width: 56rem;
  height: 56rem;
  overflow: hidden;
}
.progress-card__expend .bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@media only screen and (max-width: 62em) {
  .progress-card {
    flex: 0 0 auto;
    width: 100%;
    height: 11.2rem;
    overflow: hidden;
    box-shadow: 0 0.8rem 2rem rgba(43, 87, 62, 0.08);
    transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
  }
  .progress-card + .progress-card::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: auto;
    height: 3px;
  }
  .progress-card.active::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }
  .progress-card.active {
    flex: 0 0 auto;
    height: auto;
    min-height: 0;
    box-shadow: 0 1rem 2.4rem rgba(43, 87, 62, 0.14);
  }
  .progress-card.active .progress-card__close {
    opacity: 0;
    transform: translateY(-1rem);
  }
  .progress-card.active .progress-card__expend {
    transform: translateY(0);
  }
  .progress-card__close {
    transform: translateY(0);
  }
  .progress-card__close .info {
    padding: 2rem;
    justify-content: flex-start;
    background: linear-gradient(135deg, rgba(0, 147, 68, 0.72), rgba(0, 95, 171, 0.72));
  }
  .progress-card__close .info .title {
    font-size: 1.7rem;
    line-height: 2.5rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .progress-card__expend {
    flex-direction: column-reverse;
    position: relative;
    min-width: 0;
    opacity: 0;
    transform: translateY(2rem);
  }
  .progress-card__expend .info {
    padding: 2.2rem 2rem 2.6rem;
    background-color: #fff;
  }
  .progress-card__expend .info::after {
    display: none;
  }
  .progress-card__expend .info .special-date {
    transform: none;
    margin-bottom: 1.6rem;
  }
  .progress-card__expend .info .title {
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin-bottom: 1.4rem;
    color: #333;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .progress-card__expend .info .desc {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 2.4rem;
    color: #666;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .progress-card__expend .info .more {
    width: 13.6rem;
    font-size: 1.4rem;
    line-height: 3.8rem;
  }
  .progress-card__expend .bg {
    width: 100%;
    height: auto;
    aspect-ratio: 1.75;
  }
}

.news-card {
  padding-bottom: 7rem;
}
@media only screen and (max-width: 62em) {
  .news-card {
    padding-bottom: 0;
  }
}
.news-card .cover {
  aspect-ratio: 1.8;
}
.news-card .info {
  padding: 3rem 4rem;
  background: linear-gradient(to right, #009344, #005FAB);
  position: absolute;
  left: 0;
  right: 24rem;
  bottom: 0;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
@media only screen and (max-width: 62em) {
  .news-card .info {
    position: relative;
    padding: 1rem 1.5rem;
  }
}
.news-card .info .title {
  font-size: 2.8rem;
  line-height: 4rem;
  height: 8rem;
  color: #fff;
  font-family: "MontserratMedium";
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), text-shadow 0.35s ease, letter-spacing 0.35s ease;
}
@media only screen and (max-width: 62em) {
  .news-card .info .title {
    font-size: 1.8rem;
    line-height: 3rem;
    height: 6rem;
  }
}
.news-card:hover .info {
  background: linear-gradient(to right, #00A650, #006BC2);
  transform: translateY(-0.4rem);
  box-shadow: 0 1rem 2.4rem rgba(0, 95, 171, 0.18);
}
.news-card:hover .info .title {
  color: #fff;
  text-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.18);
  transform: translateX(0.4rem);
}

.news-text-card {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #DBDBDB;
  position: relative;
}
.news-text-card::before {
  content: "";
  display: block;
  width: 10rem;
  height: 1px;
  border-bottom: 1px solid #2B573E;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: 0.3s ease-in-out;
}
.news-text-card .date {
  font-size: 1.6rem;
  color: #666;
  font-family: "MontserratMedium";
  margin-bottom: 1rem;
}
.news-text-card .title {
  font-size: 2rem;
  line-height: 2.8rem;
  height: 5.6rem;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-text-card .link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.news-text-card:hover::before {
  width: 100%;
}
.news-text-card:hover .date {
  color: #2B573E;
}
.news-text-card:hover .title {
  color: #2B573E;
}

.article-text-card {
  padding: 5rem 0;
  display: flex;
  border-bottom: 1px solid rgba(149, 149, 149, 0.2);
}
@media only screen and (max-width: 48em) {
  .article-text-card {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 1.4rem;
    margin-bottom: 1.8rem;
    border: 1px solid rgba(43, 87, 62, 0.08);
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 0 0.8rem 2.4rem rgba(43, 87, 62, 0.08);
    overflow: hidden;
  }
}
.article-text-card .date-box {
  flex: none;
}
.article-text-card .date-box .special-date {
  width: 10rem;
  height: 10.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 247, 0.7));
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  border-radius: 2rem 0.8rem 2rem 0.8rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 95, 171, 0.15);
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-text-card .date-box .special-date .d {
  font-size: 3.8rem;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: "MontserratRegular", sans-serif;
  transition: all 0.4s ease;
}
.article-text-card .date-box .special-date .m {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.15rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  border: none;
  padding: 0;
  width: auto;
  transition: all 0.4s ease;
}
.article-text-card .date-box .special-date .y {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.05rem;
  position: static;
  transform: none;
  margin: 0;
  padding: 0;
  border: none;
  transition: all 0.4s ease;
}
.article-text-card .date-box .special-date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #009344, #005FAB);
  opacity: 1;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.article-text-card .date-box .special-date::after {
  display: none;
}
@media only screen and (max-width: 48em) {
  .article-text-card .date-box {
    order: 2;
    position: relative;
    z-index: 2;
    margin-top: -0.2rem;
  }
  .article-text-card .date-box .special-date {
    width: auto;
    height: auto;
    padding: 0.8rem 1.6rem;
    border-radius: 1.2rem;
    flex-direction: row;
    align-items: baseline;
    gap: 0.8rem;
  }
  .article-text-card .date-box .special-date .d {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .article-text-card .date-box .special-date .m {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .article-text-card .date-box .special-date .y {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
.article-text-card .info {
  flex: 1;
  padding-left: 3.8rem;
}
@media only screen and (max-width: 48em) {
  .article-text-card .info {
    order: 3;
    min-width: 0;
    padding-left: 0;
    padding-right: 0.2rem;
  }
}
.article-text-card .info .title {
  font-size: 2.6rem;
  line-height: 3.7rem;
  color: #111;
  font-family: "MontserratRegular";
  margin-bottom: 1.5rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 48em) {
  .article-text-card .info .title {
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin-bottom: 0.8rem;
  }
}
.article-text-card .info .desc {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #333;
  font-family: "MontserratRegular";
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 48em) {
  .article-text-card .info .desc {
    font-size: 1.35rem;
    line-height: 2.2rem;
    color: #5c625f;
  }
}
.article-text-card .cover {
  flex: none;
  width: 20rem;
  margin-left: 3.8rem;
}
@media only screen and (max-width: 48em) {
  .article-text-card .cover {
    order: 1;
    width: calc(100% + 2.8rem);
    margin: -1.4rem -1.4rem 0;
    aspect-ratio: 1.72;
    border-radius: 1.2rem 1.2rem 0 0;
  }
}
.article-text-card:hover .special-date {
  transform: translateY(-0.5rem) scale(1.02);
}
.article-text-card:hover .info .title {
  color: #2B574C;
}
.article-text-card:hover .info .desc {
  color: #2B574C;
}
.article-text-card:hover .cover {
  outline: 3px solid #2B574C;
}

.teacher-list {
  margin-top: 5rem;
}
@media only screen and (max-width: 48em) {
  .teacher-list {
    margin-top: 3rem;
  }
}
.teacher-list > li {
  transition: opacity 0.25s ease;
}
.teacher-list > li.is-hidden {
  display: none;
}

.teacher-list-empty {
  display: none;
  padding: 4rem 2rem;
  background-color: #f0f3f2;
  color: #666;
  font-family: "MontserratRegular";
  font-size: 1.6rem;
  text-align: center;
}
.teacher-list-empty.is-visible {
  display: block;
}

.pb_sys_common.is-hidden {
  display: none;
}

.teacher-card {
  padding: 2.5rem;
  padding-top: 0;
  background-color: #f0f3f2;
}
.teacher-card .cover {
  aspect-ratio: 0.8;
  transform: translateY(-2rem);
}
.teacher-card .info {
  text-align: center;
}
.teacher-card .info .title {
  font-size: 2rem;
  color: #111;
  font-family: "MontserratMedium";
  line-height: 1.4;
  height: 5.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;
  margin-bottom: 3rem;
  position: relative;
}
.teacher-card .info .title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background-color: #666;
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
}
.teacher-card .info .desc {
  font-size: 1.4rem;
  color: #666;
  font-family: "MontserratRegular";
  line-height: 1.4;
  height: 3.92rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.teacher-card:hover {
  background: linear-gradient(135deg, #00972F 60%, #1F59AA 100%);
}
.teacher-card:hover .info .title {
  color: #fff;
}
.teacher-card:hover .info .title::after {
  background-color: #fff;
}
.teacher-card:hover .info .desc {
  color: #fff;
}

.side-news-card {
  padding: 2rem 0;
  position: relative;
}
.side-news-card .info .title {
  font-size: 2rem;
  color: #000;
  line-height: 3.2rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.side-news-card .info .date {
  font-size: 1.6rem;
  color: #2B574C;
  margin-top: 1rem;
}
.side-news-card .link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.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;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb {
    display: block;
    height: auto;
    padding: 2rem;
  }
}
.custom-breadcrumb .title {
  font-size: 3.4rem;
  color: #fff;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
}
@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;
  color: #fff;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb .breadcrumb-navs .pos {
    display: none;
  }
}
.custom-breadcrumb .breadcrumb-navs .pos::before {
  content: "";
  font-family: "iconfont";
  content: "\e60e";
  font-size: 1.4rem;
  color: #fff;
  margin-right: 4px;
}
.custom-breadcrumb .breadcrumb-navs nav {
  display: flex;
  align-items: center;
}
.custom-breadcrumb .breadcrumb-navs nav a {
  font-size: 1.4rem;
  color: #fff;
  transition: 0.3s;
}
.custom-breadcrumb .breadcrumb-navs nav a::before {
  font-family: "iconfont";
  content: "\e63d";
  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:hover {
  font-weight: 600;
}

.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: #2B573E;
  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;
}
.search-input__input {
  width: 16rem;
  padding: 0 1.5rem;
  height: 3rem;
  opacity: 1;
  border: none;
  outline: none;
  font-size: 1.4rem;
  color: rgba(17, 17, 17, 0.8);
  font-weight: 400;
  background-color: #e3f0ff;
}
@media only screen and (max-width: 75em) {
  .search-input__input {
    width: 30rem;
    height: 5rem;
    font-size: 1.8rem;
  }
}
.search-input__input::placeholder {
  color: currentColor;
  opacity: 1;
}
.search-input__button {
  transition: all 0.3s ease-in-out;
}
.search-input__button:hover {
  background-color: #2B573E;
  color: #ffffff;
}
.search-input__button:active {
  filter: brightness(0.8);
}
.search-input__button {
  position: relative;
  display: block;
  width: 4rem;
  height: 3rem;
  background-color: #e3f0ff;
}
@media only screen and (max-width: 75em) {
  .search-input__button {
    width: 5rem;
    height: 5rem;
  }
}
.search-input__button::after {
  content: "";
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "\e8d6";
  position: absolute;
  font-size: 2rem;
  color: #2f2f2f;
}
.search-input__button:hover::after {
  color: #fff;
}

.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: #2B573E;
}
.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: #2B573E;
  color: #ffffff;
}

.super-search {
  display: flex;
  align-items: center;
}
.super-search .mini-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}
@media only screen and (max-width: 75em) {
  .super-search .mini-btn {
    display: none;
  }
}
.super-search .mini-btn:hover {
  opacity: 1;
}
.super-search .mini-btn .iconfont {
  font-size: 2.6rem;
  color: #ffffff;
}

@keyframes energy-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0, 95, 171, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 95, 171, 0.7), 0 0 40px rgba(0, 95, 171, 0.3);
  }
}
.back-top-menu {
  position: fixed;
  top: auto;
  right: 2rem;
  bottom: 10rem;
  left: auto;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0, 95, 171, 0.5);
  border-radius: 12px;
  background-color: #2B573E;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.53, -0.31, 0.56, 2.18);
  transform: translate3d(50px, 0, 0);
  opacity: 0;
  cursor: pointer;
}
.back-top-menu .back-top-icon {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.back-top-menu.show {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.back-top-menu:hover {
  background-color: #005FAB;
  border-color: #005FAB;
  animation: energy-pulse 1.5s ease-in-out infinite;
}
.back-top-menu:hover .back-top-icon {
  transform: translateY(-3px);
}

div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
}
@media only screen and (max-width: 75em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
    padding: 4rem 0;
  }
}
@media only screen and (max-width: 48em) {
  div.pb_sys_common.pb_sys_normal.pb_sys_style1 {
    padding: 2rem 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: #2B573E;
}
@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: #2B573E;
  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: #2B573E;
}
@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: #2B573E;
}
@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: #2B573E;
}
@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: #2B573E;
  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: 24px;
  font-weight: 600;
  color: #050505;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 75em) {
  .article-details__heading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 62em) {
  .article-details__heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 48em) {
  .article-details__heading {
    font-size: 18px;
    font-family: "MontserratRegular";
  }
}
.article-details__describe {
  display: flex;
  padding-bottom: 3rem;
}
.article-details__tag {
  font-size: 1.4rem;
  color: #050505;
}
.article-details__content > * {
  margin-bottom: 15px;
}
.article-details__content p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
  color: #2f2f2f;
  font-family: "Arial";
  margin-bottom: 1rem;
}
.article-details__content img {
  display: inline-block;
  max-width: 100%;
  height: auto !important;
  margin: 2rem 0;
}
.article-details__content > * {
  max-width: 100%;
}
.article-details__content .edui-upload-video {
  max-width: 100%;
}
.article-details__content span img {
  display: inline-block;
  margin: 0;
  margin-right: 6px;
}

.article-prev-next {
  display: flex;
  justify-content: space-between;
}
.article-prev-next a {
  font-weight: 600;
  padding: 0.5rem 3rem;
  display: block;
  font-size: 1.6rem;
  color: #2B574C;
  background-color: rgba(43, 87, 76, 0.1);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(43, 87, 76, 0);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
@media only screen and (max-width: 75em) {
  .article-prev-next a {
    padding: 0.5rem 1rem;
  }
}
.article-prev-next a.prev::before {
  content: "";
  font-family: "iconfont";
  content: "\edac";
  margin-right: 1rem;
  display: inline-block;
  transition: transform 0.25s ease;
}
.article-prev-next a.next::after {
  content: "";
  font-family: "iconfont";
  content: "\eb08";
  margin-left: 1rem;
  display: inline-block;
  transition: transform 0.25s ease;
}
.article-prev-next a:hover {
  background: linear-gradient(135deg, #2B574C, #2b4b43);
  border-color: #2B574C;
  color: #fff;
  box-shadow: 0 8px 18px rgba(43, 87, 76, 0.22);
  text-decoration: none;
  transform: translateY(-2px);
}
.article-prev-next a.prev:hover::before {
  transform: translateX(-4px);
}
.article-prev-next a.next:hover::after {
  transform: translateX(4px);
}

.header__search {
  position: fixed;
  inset: 0;
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.header__search.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.header__search.active .header__search-content {
  transform: translateY(0);
}
.header__search-content {
  width: 100%;
  max-width: 680px;
  padding: 0 20px;
  transform: translateY(20px);
  transition: all 0.35s ease;
}
.header__search-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px 28px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.header__search-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #222;
}
.header__search-input {
  position: relative;
  display: flex;
  align-items: center;
  background: #f5f6f7;
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  transition: all 0.25s ease;
}
.header__search-input:focus-within {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(0, 0, 0, 0.1);
}
.header__search-input-field {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #333;
}
.header__search-input-field::placeholder {
  color: #aaa;
}
.header__search-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2B573E, rgb(59.8692307692, 121.1307692308, 86.3230769231));
  color: #fff;
  transition: all 0.25s ease;
}
.header__search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(43, 87, 62, 0.4);
}
.header__search-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.2s ease;
}
.header__search-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.page-loading {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, #064e3b 0%, #022c22 40%, #010f0a 100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.page-loading.loaded {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}
.page-loading__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-loading .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  left: var(--x);
  top: var(--y);
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 6px #6ee7b7, 0 0 12px rgba(110, 231, 183, 0.5);
  animation: particleFloat 4s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0;
}
.page-loading .particle:nth-child(1) {
  animation-delay: 0.2s;
  animation-duration: 3.15s;
}
.page-loading .particle:nth-child(2) {
  animation-delay: 0.4s;
  animation-duration: 3.3s;
}
.page-loading .particle:nth-child(3) {
  animation-delay: 0.6s;
  animation-duration: 3.45s;
}
.page-loading .particle:nth-child(4) {
  animation-delay: 0.8s;
  animation-duration: 3.6s;
}
.page-loading .particle:nth-child(5) {
  animation-delay: 1s;
  animation-duration: 3.75s;
}
.page-loading .particle:nth-child(6) {
  animation-delay: 1.2s;
  animation-duration: 3.9s;
}
.page-loading .particle:nth-child(7) {
  animation-delay: 1.4s;
  animation-duration: 4.05s;
}
.page-loading .particle:nth-child(8) {
  animation-delay: 1.6s;
  animation-duration: 4.2s;
}
.page-loading .particle:nth-child(9) {
  animation-delay: 1.8s;
  animation-duration: 4.35s;
}
.page-loading .particle:nth-child(10) {
  animation-delay: 2s;
  animation-duration: 4.5s;
}
.page-loading .particle:nth-child(11) {
  animation-delay: 2.2s;
  animation-duration: 4.65s;
}
.page-loading .particle:nth-child(12) {
  animation-delay: 2.4s;
  animation-duration: 4.8s;
}
.page-loading .particle:nth-child(13) {
  animation-delay: 2.6s;
  animation-duration: 4.95s;
}
.page-loading .particle:nth-child(14) {
  animation-delay: 2.8s;
  animation-duration: 5.1s;
}
.page-loading .particle:nth-child(15) {
  animation-delay: 3s;
  animation-duration: 5.25s;
}
.page-loading .particle:nth-child(16) {
  animation-delay: 3.2s;
  animation-duration: 5.4s;
}
.page-loading .particle:nth-child(17) {
  animation-delay: 3.4s;
  animation-duration: 5.55s;
}
.page-loading .particle:nth-child(18) {
  animation-delay: 3.6s;
  animation-duration: 5.7s;
}
.page-loading .particle:nth-child(3n+1) {
  width: 2px;
  height: 2px;
}
.page-loading .particle:nth-child(3n) {
  width: 4px;
  height: 4px;
}
.page-loading .particle:nth-child(even) {
  background: #a7f3d0;
  box-shadow: 0 0 6px #a7f3d0, 0 0 12px rgba(167, 243, 208, 0.4);
}
.page-loading__container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-loading__leaf {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.page-loading .leaf__outline {
  position: absolute;
  inset: 0;
  border-radius: 50% 0 50% 0;
  transform: rotate(-45deg);
  background: rgba(110, 231, 183, 0.06);
  animation: leafSpin 6s linear infinite;
}
.page-loading .leaf__outline::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50% 0 50% 0;
  background: rgba(6, 78, 59, 0.2);
  border: 1.5px solid rgba(110, 231, 183, 0.2);
}
.page-loading .leaf__outline::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50% 0 50% 0;
  background: radial-gradient(circle at 50% 0%, #6ee7b7 2px, transparent 2px), radial-gradient(circle at 100% 50%, #6ee7b7 2px, transparent 2px), radial-gradient(circle at 50% 100%, #6ee7b7 2px, transparent 2px), radial-gradient(circle at 0% 50%, #6ee7b7 2px, transparent 2px);
  animation: vertexGlow 2s ease-in-out infinite alternate;
}
.page-loading .leaf__outline--1 {
  animation-duration: 8s;
  animation-direction: normal;
}
.page-loading .leaf__outline--2 {
  inset: 18px;
  animation-duration: 10s;
  animation-direction: reverse;
}
.page-loading .leaf__outline--2::before {
  border-color: rgba(52, 211, 153, 0.25);
}
.page-loading .leaf__outline--3 {
  inset: 36px;
  animation-duration: 12s;
  animation-direction: normal;
}
.page-loading .leaf__outline--3::before {
  border-color: rgba(16, 185, 129, 0.4);
}
.page-loading .leaf__outline--3::after {
  background: radial-gradient(circle at 50% 0%, #34d399 3px, transparent 3px), radial-gradient(circle at 100% 50%, #34d399 3px, transparent 3px), radial-gradient(circle at 50% 100%, #34d399 3px, transparent 3px), radial-gradient(circle at 0% 50%, #34d399 3px, transparent 3px);
}
.page-loading .leaf__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 28px;
  height: 28px;
  border-radius: 50% 0 50% 0;
  background: linear-gradient(135deg, #34d399, #059669);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.3);
  animation: corePulse 2s ease-in-out infinite;
  z-index: 2;
}

/* ===== 动画关键帧 ===== */
@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  20% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    transform: translateY(-30px) scale(1.5);
  }
  80% {
    opacity: 0.6;
  }
}
@keyframes leafSpin {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(315deg);
  }
}
@keyframes vertexGlow {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
@keyframes corePulse {
  0%, 100% {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }
  50% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8), 0 0 40px rgba(16, 185, 129, 0.4);
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.15);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ===== 移动端适配 ===== */
@media (max-width: 768px) {
  .page-loading__leaf {
    width: 90px;
    height: 90px;
  }
  .page-loading .leaf__outline--2 {
    inset: 14px;
  }
  .page-loading .leaf__outline--3 {
    inset: 28px;
  }
  .page-loading .leaf__core {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .page-loading__leaf {
    width: 75px;
    height: 75px;
  }
  .page-loading .leaf__outline--2 {
    inset: 12px;
  }
  .page-loading .leaf__outline--3 {
    inset: 24px;
  }
  .page-loading .leaf__core {
    width: 18px;
    height: 18px;
  }
}
.sidebar-recommend {
  padding: 2rem 0;
  margin-bottom: 2rem;
}
.sidebar-recommend__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2B573E;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(43, 87, 62, 0.2);
  display: inline-block;
}
@media only screen and (max-width: 75em) {
  .sidebar-recommend__title {
    font-size: 1.6rem;
  }
}
.sidebar-recommend__item {
  padding: 1.2rem 0;
  border-bottom: 1px dashed #e8e8e8;
}
.sidebar-recommend__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-recommend__item:first-child {
  padding-top: 0;
}
.sidebar-recommend__link {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.sidebar-recommend__link .cover {
  flex: none;
  width: 10rem;
  aspect-ratio: 1.4;
  border-radius: 0.4rem;
  overflow: hidden;
}
.sidebar-recommend__link .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.sidebar-recommend__link .info {
  flex: 1;
  min-width: 0;
}
.sidebar-recommend__link .info .title {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #444;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease-in-out;
}
.sidebar-recommend__link:hover .cover img {
  transform: scale(1.05);
}
.sidebar-recommend__link:hover .info .title {
  color: #2B573E;
}

.sidebar-tags {
  padding: 2rem 0;
}
.sidebar-tags__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2B573E;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(43, 87, 62, 0.2);
  display: inline-block;
}
@media only screen and (max-width: 75em) {
  .sidebar-tags__title {
    font-size: 1.6rem;
  }
}
.sidebar-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.sidebar-tags__item {
  display: inline-block;
  padding: 0.5rem 1.4rem;
  background-color: #f5f7fa;
  color: #666;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  transition: all 0.3s ease-in-out;
}
.sidebar-tags__item:hover {
  background-color: #2B573E;
  color: #ffffff;
}

.energy-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.energy-decor.is-active .solar-glow,
.energy-decor.is-active .solar-rays,
.energy-decor.is-active .solar-sweep,
.energy-decor.is-active .solar-particle,
.energy-decor.is-active .wind-flow,
.energy-decor.is-active .wind-flow__path,
.energy-decor.is-active .wind-turbine,
.energy-decor.is-active .battery-ripple,
.energy-decor.is-active .battery-particle,
.energy-decor.is-active .battery-pulse,
.energy-decor.is-active .water-ripple,
.energy-decor.is-active .water-bubble,
.energy-decor.is-active .water-shimmer,
.energy-decor.is-active .footer-particle,
.energy-decor.is-active .energy-title-icon {
  animation-play-state: running;
}

.energy-decor--solar .solar-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.1) 0%, transparent 70%);
  animation: solarGlowPulse 6s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.energy-decor--solar .solar-rays {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  animation: solarRaysSpin 30s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.energy-decor--solar .solar-rays::before, .energy-decor--solar .solar-rays::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.energy-decor--solar .solar-rays::before {
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 200, 100, 0.08) 5deg, transparent 10deg, transparent 30deg, rgba(255, 200, 100, 0.06) 35deg, transparent 40deg, transparent 60deg, rgba(255, 200, 100, 0.08) 65deg, transparent 70deg, transparent 90deg, rgba(255, 200, 100, 0.06) 95deg, transparent 100deg, transparent 120deg, rgba(255, 200, 100, 0.08) 125deg, transparent 130deg, transparent 150deg, rgba(255, 200, 100, 0.06) 155deg, transparent 160deg, transparent 180deg, rgba(255, 200, 100, 0.08) 185deg, transparent 190deg, transparent 210deg, rgba(255, 200, 100, 0.06) 215deg, transparent 220deg, transparent 240deg, rgba(255, 200, 100, 0.08) 245deg, transparent 250deg, transparent 270deg, rgba(255, 200, 100, 0.06) 275deg, transparent 280deg, transparent 300deg, rgba(255, 200, 100, 0.08) 305deg, transparent 310deg, transparent 330deg, rgba(255, 200, 100, 0.06) 335deg, transparent 340deg, transparent 360deg);
}
.energy-decor--solar .solar-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 45%, rgba(255, 200, 100, 0.06) 48%, rgba(255, 200, 100, 0.08) 50%, rgba(255, 200, 100, 0.06) 52%, transparent 55%);
  animation: solarSweep 8s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}
.energy-decor--solar .solar-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 200, 100, 0.15);
  box-shadow: 0 0 4px rgba(255, 200, 100, 0.2);
  animation: solarFloat var(--d) ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.4s);
  animation-play-state: paused;
  will-change: transform, opacity;
}

.energy-decor--wind .wind-flow {
  position: absolute;
  width: 200%;
  height: 40px;
  fill: none;
  stroke: rgba(1, 81, 166, 0.05);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.energy-decor--wind .wind-flow__path {
  stroke-dasharray: 200;
  stroke-dashoffset: 400;
  animation: windFlowMove 14s linear infinite;
  animation-play-state: paused;
}
.energy-decor--wind .wind-flow--2 {
  top: auto;
  bottom: 30%;
}
.energy-decor--wind .wind-flow--2 .wind-flow__path {
  stroke: rgba(1, 81, 166, 0.04);
  animation-duration: 18s;
  animation-delay: 3s;
}
.energy-decor--wind .wind-flow--3 {
  top: 20%;
  left: -50%;
}
.energy-decor--wind .wind-flow--3 .wind-flow__path {
  stroke: rgba(1, 81, 166, 0.03);
  animation-duration: 16s;
  animation-delay: 6s;
}
.energy-decor--wind .wind-turbine {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 20px;
  height: 20px;
  opacity: 0.15;
  animation: windTurbineSpin 8s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.energy-decor--wind .wind-turbine svg {
  width: 100%;
  height: 100%;
}

.energy-decor--battery {
  left: 0;
  right: auto;
  width: 60rem;
}
.energy-decor--battery .battery-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border: 1.5px solid rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  animation: batteryRippleExpand 4s ease-out infinite;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.energy-decor--battery .battery-ripple--2 {
  animation-delay: 1.3s;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
}
.energy-decor--battery .battery-ripple--3 {
  animation-delay: 2.6s;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
}
.energy-decor--battery .battery-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.15);
  box-shadow: 0 0 4px rgba(96, 165, 250, 0.2);
  left: var(--sx);
  top: var(--sy);
  animation: batteryConverge var(--d) ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
  animation-play-state: paused;
  will-change: transform, opacity;
}
.energy-decor--battery .battery-pulse {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  animation: batteryPulseGlow 3s ease-in-out infinite;
  animation-play-state: paused;
  will-change: box-shadow, opacity;
}
.energy-decor--battery .battery-pulse:nth-child(2) {
  animation-delay: 1s;
}

.energy-decor--water .water-ripple {
  position: absolute;
  bottom: 15%;
  left: 50%;
  width: 60%;
  height: 20px;
  margin-left: -30%;
  border: 1px solid rgba(8, 145, 178, 0.06);
  border-radius: 50%;
  animation: waterRippleSpread 5s ease-out infinite;
  animation-play-state: paused;
  will-change: transform, opacity;
}
.energy-decor--water .water-ripple--2 {
  bottom: 25%;
  width: 40%;
  margin-left: -20%;
  animation-delay: 2.5s;
}
.energy-decor--water .water-bubble {
  position: absolute;
  bottom: 0;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.08);
  animation: waterBubbleRise var(--d) ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.5s);
  animation-play-state: paused;
  will-change: transform, opacity;
}
.energy-decor--water .water-shimmer {
  position: absolute;
  top: 10%;
  left: -20%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.12), transparent);
  animation: waterShimmerMove 10s ease-in-out infinite;
  animation-play-state: paused;
  will-change: transform;
}

.energy-decor--footer .footer-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.1);
  left: var(--x);
  top: var(--y);
  animation: footerFloat var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
  animation-play-state: paused;
  will-change: transform, opacity;
}

.energy-title-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.8rem;
  vertical-align: middle;
  opacity: 0.15;
  animation: iconBreath 3s ease-in-out infinite;
  animation-play-state: running;
  will-change: transform;
}
.energy-title-icon svg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 48em) {
  .energy-title-icon {
    width: 12px;
    height: 12px;
  }
}

@media only screen and (max-width: 62em) {
  .energy-decor--solar .solar-rays,
  .energy-decor--solar .solar-sweep,
  .energy-decor--solar .solar-particle {
    display: none;
  }
  .energy-decor--wind .wind-flow {
    display: none;
  }
  .energy-decor--battery {
    width: 100%;
  }
  .energy-decor--battery .battery-particle,
  .energy-decor--battery .battery-pulse {
    display: none;
  }
  .energy-decor--battery .battery-ripple--2,
  .energy-decor--battery .battery-ripple--3 {
    display: none;
  }
  .energy-decor--water .water-ripple--2,
  .energy-decor--water .water-shimmer {
    display: none;
  }
  .energy-decor--water .water-bubble:nth-child(n+4) {
    display: none;
  }
  .energy-decor--footer {
    display: none;
  }
}
@keyframes solarRaysSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes solarSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes solarGlowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
@keyframes solarFloat {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.1;
  }
  25% {
    transform: translate(8px, -12px);
    opacity: 0.2;
  }
  50% {
    transform: translate(-5px, -20px);
    opacity: 0.15;
  }
  75% {
    transform: translate(10px, -8px);
    opacity: 0.2;
  }
}
@keyframes windFlowMove {
  from {
    stroke-dashoffset: 400;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes windTurbineSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes batteryRippleExpand {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes batteryConverge {
  0% {
    transform: translate(0, 0);
    opacity: 0.15;
  }
  50% {
    transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy)));
    opacity: 0.3;
  }
  80% {
    transform: translate(-50%, -50%);
    opacity: 0.1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0;
  }
}
@keyframes batteryPulseGlow {
  0%, 100% {
    box-shadow: 0 0 3px rgba(59, 130, 246, 0.15);
    opacity: 0.15;
  }
  50% {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    opacity: 0.3;
  }
}
@keyframes waterRippleSpread {
  0% {
    transform: scaleX(0.5) scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1.8) scaleY(1);
    opacity: 0;
  }
}
@keyframes waterBubbleRise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.12;
  }
  50% {
    transform: translateY(-80px) translateX(5px);
    opacity: 0.1;
  }
  90% {
    opacity: 0.05;
  }
  100% {
    transform: translateY(-150px) translateX(-3px);
    opacity: 0;
  }
}
@keyframes waterShimmerMove {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(400%);
    opacity: 0;
  }
}
@keyframes footerFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-15px);
    opacity: 0.12;
  }
}
@keyframes iconBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.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;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999999;
  background: #fff;
  box-shadow: 0 0 4px #ccc;
}
.header .content {
  height: 10rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  .header .content {
    height: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  .header .content {
    height: 6rem;
  }
}
.header__logo {
  flex: none;
}
.header__logo img {
  height: 7rem;
}
@media only screen and (max-width: 62em) {
  .header__logo img {
    height: 5rem;
  }
}
@media only screen and (max-width: 48em) {
  .header__logo img {
    height: 4rem;
  }
}
.header .inner-nav-wrapper {
  flex: 1;
  padding-right: 5rem;
}
.header .open-btn {
  cursor: pointer;
  width: 4.4rem;
  height: 4.4rem;
  display: none;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  .header .open-btn {
    display: flex;
  }
}
.header .open-btn span {
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #111;
  color: #111;
  font-size: 0;
  position: relative;
  transition: background-color 0.25s ease;
}
.header .open-btn span::before, .header .open-btn span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 3rem;
  height: 2px;
  background-color: currentColor;
  transition: width 0.25s ease, transform 0.25s ease;
}
.header .open-btn span::before {
  top: -0.9rem;
}
.header .open-btn span::after {
  bottom: -0.9rem;
}
.header .open-btn span::before,
.header .open-btn span::after {
  color: #111;
}
.header .open-btn span {
  width: 2.1rem;
  margin-left: 0.9rem;
}
.header .open-btn:hover span {
  width: 3rem;
  margin-left: 0;
}

.i18n {
  text-align: right;
  padding-bottom: 0.5rem;
}
.i18n a {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.5;
}
.i18n span {
  color: rgba(255, 255, 255, 0.3);
}

.section-nav.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 2rem;
  bottom: auto;
}
.section-nav.section-nav-inner {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  padding-bottom: 0;
}
@media only screen and (max-width: 62em) {
  .section-nav.section-nav-inner {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    background: linear-gradient(45deg, #00A650, #006BC2);
    display: flex;
    flex-direction: column;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
}
@media only screen and (max-width: 62em) {
  .section-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    background: linear-gradient(45deg, #00A650, #006BC2);
    display: flex;
    flex-direction: column;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
}
.section-nav.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.section-nav .mobile-operator {
  flex: none;
}
.section-nav .mobile-operator .close-btn {
  cursor: pointer;
}
.section-nav .mobile-operator .close-btn span {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 62em) {
  .section-nav .container {
    flex: 1;
    overflow-y: auto;
  }
}

.search-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 4px;
  background: linear-gradient(45deg, #00A650, #006BC2);
  background-color: #2B574C;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 62em) {
  .search-icon {
    width: 5rem;
    height: 5rem;
    right: 7rem;
    top: 0.5rem;
    border-radius: 4px;
    background: none;
  }
}
.search-icon::after {
  content: "";
  font-family: "iconfont";
  content: "\e8d6";
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 62em) {
  .search-icon::after {
    color: #111;
    font-size: 2.4rem;
  }
}
.search-icon:hover {
  background: linear-gradient(95deg, #00A650, #006BC2);
}
@media only screen and (max-width: 62em) {
  .search-icon:hover {
    background: none;
  }
}
.search-icon:hover::after {
  color: #fff;
}

.web-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}
@media only screen and (max-width: 62em) {
  .web-nav {
    display: block;
    padding: 0 2rem;
  }
}
.web-nav__1-list {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}
@media only screen and (max-width: 62em) {
  .web-nav__1-list {
    display: block;
  }
}
.web-nav__1-item {
  position: relative;
}
.web-nav__1-item:hover {
  z-index: 10;
}
@media only screen and (max-width: 62em) {
  .web-nav__1-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.web-nav__1-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 5rem;
  height: 100%;
  padding: 0 2rem;
  border-radius: 4px;
  line-height: 1.25;
  text-align: center;
  color: #111;
  font-size: 1.6rem;
  font-family: "MontserratMedium";
  word-break: normal;
  overflow-wrap: anywhere;
}
.web-nav__1-link:hover, .web-nav__1-link.active {
  background: linear-gradient(135deg, #009344, #005FAB);
  color: #fff;
}
@media only screen and (max-width: 62em) {
  .web-nav__1-link:hover, .web-nav__1-link.active {
    background: none !important;
    color: #f9dd27 !important;
  }
}
@media only screen and (max-width: 62em) {
  .web-nav__1-link {
    background: none !important;
    display: block;
    min-height: 0;
    height: auto;
    padding: 0 1rem;
    line-height: 6rem;
    text-align: left;
    overflow-wrap: normal;
    color: #fff;
  }
}
.web-nav__2-list {
  background-color: #fff;
  display: none;
  position: absolute;
  bottom: 0;
  transform: translateY(100%);
  min-width: 100%;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 10px #666;
  z-index: 100;
}
@media only screen and (max-width: 62em) {
  .web-nav__2-list {
    display: block;
    position: relative;
    top: auto;
    transform: none;
    min-width: auto;
    background-color: transparent;
    padding: 0 0 0 3rem;
    box-shadow: none;
  }
}
.web-nav.pos-top .web-nav__2-list {
  top: auto;
  bottom: 0;
  transform: translateY(100%);
}
.web-nav__2-item {
  position: relative;
}
.web-nav__2-item:hover {
  z-index: 10;
}
.web-nav__2-link {
  display: block;
  font-size: 1.6rem;
  color: #111111;
  position: relative;
  padding: 0 0.5rem;
  line-height: 2.4;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .web-nav__2-link {
    color: #fff;
    text-align: left;
  }
}
.web-nav__2-link:hover {
  color: #003C88;
  background-color: #f2f2f2;
}
.web-nav__2-link:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 62em) {
  .web-nav__2-link:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 62em) {
  .web-nav__2-link:hover {
    color: #fff;
  }
}
.web-nav__3-list {
  background-color: #fff;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  padding: 1rem 0;
  border-left: 2px solid #16468E;
  z-index: 101;
  box-shadow: 0 0 10px #666;
}
@media only screen and (max-width: 62em) {
  .web-nav__3-list {
    display: block;
    position: relative;
    top: auto;
    transform: none;
    border-left: none;
    background-color: transparent;
    padding-left: 3rem;
    box-shadow: none;
  }
}
.web-nav__3-link {
  display: block;
  font-size: 1.6rem;
  color: #111111;
  position: relative;
  padding: 0 0.5rem;
  line-height: 2.4;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .web-nav__3-link {
    color: #fff;
    text-align: left;
  }
}
.web-nav__3-link:hover {
  color: #003C88;
  background-color: #f2f2f2;
}
.web-nav__3-link:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 62em) {
  .web-nav__3-link:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 62em) {
  .web-nav__3-link:hover {
    color: #fff;
  }
}

.home-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4rem;
  z-index: 99;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
@media only screen and (max-width: 62em) {
  .home-nav {
    display: none;
  }
}
.home-nav.is-out-view {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media only screen and (min-width: 75.0625em) {
  body:has(.home-nav) > [data-header] {
    display: none;
  }
  body:has(.home-nav) > [data-header].is-fixed-visible {
    display: block;
  }
}
.home-special-logo {
  position: absolute;
  left: 6rem;
  top: 2rem;
  z-index: 99;
  transform: translateX(-2rem);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
}
@media only screen and (max-width: 75em) {
  .home-special-logo {
    display: none;
  }
}
.home-special-logo img {
  display: block;
  height: 10rem;
}
.home-special-logo.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.home-special-search {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
  width: 8rem;
  height: 8rem;
  border-bottom-left-radius: 4px;
  background: linear-gradient(45deg, #00A650, #006BC2);
  background-color: #2B574C;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: translateX(2rem);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0.6s ease;
}
@media only screen and (max-width: 75em) {
  .home-special-search {
    display: none;
  }
}
.home-special-search.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 62em) {
  .home-special-search {
    width: 5rem;
    height: 5rem;
    right: 7rem;
    top: 0.5rem;
    border-radius: 4px;
    background: none;
  }
}
.home-special-search::after {
  content: "";
  font-family: "iconfont";
  content: "\e8d6";
  font-size: 2.8rem;
  color: #fff;
}
@media only screen and (max-width: 62em) {
  .home-special-search::after {
    color: #111;
  }
}
.home-special-search:hover {
  background: linear-gradient(95deg, #00A650, #006BC2);
}
@media only screen and (max-width: 62em) {
  .home-special-search:hover {
    background: none;
  }
}
.home-special-search:hover::after {
  color: #fff;
}

.nav-special {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}
.nav-special__1-list {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 62em) {
  .nav-special__1-list {
    display: block;
    padding: 2rem;
  }
}
.nav-special__1-item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0 3px;
  position: relative;
}
.nav-special__1-item:hover {
  z-index: 10;
}
@media only screen and (max-width: 62em) {
  .nav-special__1-item {
    flex: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.nav-special__1-item:nth-child(1) .nav-special__1-link {
  background: linear-gradient(to right, #009344, #008C53);
}
.nav-special__1-item:nth-child(2) .nav-special__1-link {
  background: linear-gradient(to right, #008C53, #008461);
}
.nav-special__1-item:nth-child(3) .nav-special__1-link {
  background: linear-gradient(to right, #008461, #007D70);
}
.nav-special__1-item:nth-child(4) .nav-special__1-link {
  background: linear-gradient(to right, #007D70, #00757F);
}
.nav-special__1-item:nth-child(5) .nav-special__1-link {
  background: linear-gradient(to right, #00757F, #006E8E);
}
.nav-special__1-item:nth-child(6) .nav-special__1-link {
  background: linear-gradient(to right, #006E8E, #00669C);
}
.nav-special__1-item:nth-child(7) .nav-special__1-link {
  background: linear-gradient(to right, #00669C, #005FAB);
}
.nav-special__1-link {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 6rem;
  height: 100%;
  padding: 0 1.4rem;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-family: "MontserratMedium";
  word-break: normal;
  overflow-wrap: anywhere;
}
.nav-special__1-link:hover, .nav-special__1-link.active {
  background: #f9dd27 !important;
  color: #111;
}
@media only screen and (max-width: 62em) {
  .nav-special__1-link:hover, .nav-special__1-link.active {
    background: none !important;
    color: #f9dd27 !important;
  }
}
@media only screen and (max-width: 62em) {
  .nav-special__1-link {
    background: none !important;
    display: block;
    min-height: 0;
    height: auto;
    padding: 0 1rem;
    line-height: 6rem;
    text-align: left;
    overflow-wrap: normal;
  }
}
.nav-special__2-list {
  background-color: #fff;
  display: none;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  width: 100%;
  padding: 1rem 0;
  box-shadow: 0 0 10px #666;
  z-index: 100;
}
@media only screen and (max-width: 62em) {
  .nav-special__2-list {
    display: block;
    position: relative;
    top: auto;
    transform: none;
    min-width: auto;
    background-color: transparent;
    padding-left: 3rem;
    box-shadow: none;
  }
}
.nav-special.pos-top .nav-special__2-list {
  top: auto;
  bottom: 0;
  transform: translateY(100%);
}
.nav-special__2-item {
  position: relative;
}
.nav-special__2-item:hover {
  z-index: 10;
}
.nav-special__2-link {
  display: block;
  font-size: 1.6rem;
  color: #111111;
  position: relative;
  padding: 0 0.5rem;
  line-height: 2.4;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .nav-special__2-link {
    color: #fff;
    text-align: left;
  }
}
.nav-special__2-link:hover {
  color: #003C88;
  background-color: #f2f2f2;
}
.nav-special__2-link:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 62em) {
  .nav-special__2-link:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 62em) {
  .nav-special__2-link:hover {
    color: #fff;
  }
}
.nav-special__3-list {
  background-color: #fff;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  padding: 1rem 0;
  border-left: 2px solid #16468E;
  z-index: 101;
  box-shadow: 0 0 10px #666;
  max-height: calc(100vh - 12rem);
  overflow-y: auto;
}
@media only screen and (max-width: 62em) {
  .nav-special__3-list {
    display: block;
    position: relative;
    top: auto;
    transform: none;
    border-left: none;
    background-color: transparent;
    padding-left: 3rem;
    box-shadow: none;
    max-height: none;
    overflow-y: visible;
  }
}
.nav-special__3-link {
  display: block;
  font-size: 1.6rem;
  color: #111111;
  position: relative;
  padding: 0 0.5rem;
  line-height: 2.4;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .nav-special__3-link {
    color: #fff;
    text-align: left;
  }
}
.nav-special__3-link:hover {
  color: #003C88;
  background-color: #f2f2f2;
}
.nav-special__3-link:hover::before {
  opacity: 1;
}
@media only screen and (max-width: 62em) {
  .nav-special__3-link:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 62em) {
  .nav-special__3-link:hover {
    color: #fff;
  }
}

.footer {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: url(../images/footer-bg.png) #fff no-repeat top center/cover;
}
@media only screen and (max-width: 62em) {
  .footer {
    padding-top: 0;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background: linear-gradient(to right, #009344, #005FAB);
  }
}
.footer .footer-title {
  font-size: 3rem;
  color: #fff;
  font-family: "MontserratMedium";
}
@media only screen and (max-width: 62em) {
  .footer .footer-title {
    font-size: 2.4rem;
  }
}
.footer .footer-title::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background-color: #fff;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 62em) {
  .footer .footer-title::after {
    height: 3px;
  }
}
@media only screen and (max-width: 62em) {
  .footer .footer-info-1 {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.footer .footer-info-1 p {
  font-size: 1.6rem;
  font-family: "MontserratRegular";
  color: #fff;
  line-height: 2;
}
@media only screen and (max-width: 62em) {
  .footer .footer-info-2 {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.footer .footer-info-2 p {
  font-size: 1.6rem;
  font-family: "MontserratRegular";
  color: #fff;
  padding-left: 1rem;
  position: relative;
  margin-top: 1rem;
  line-height: 1.5;
}
.footer .footer-info-2 p::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 1.1rem;
}
.footer .footer-info-2 a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-info-2 a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-logo {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 62em) {
  .footer .footer-logo {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.footer .footer-logo img {
  display: block;
  max-width: 40rem;
}
.footer .copyright p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fff;
  text-align: center;
}

.inner-page {
  position: relative;
  margin-top: -10.4rem;
}
.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;
  z-index: 99;
}
.inner-page__medium {
  flex: 1;
}
.inner-page__right {
  width: 50rem;
  flex: none;
  padding-left: 4rem;
  position: sticky;
  top: 10rem;
  align-self: flex-start;
}
@media only screen and (max-width: 75em) {
  .inner-page__right {
    width: 36rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 62em) {
  .inner-page__right {
    display: none;
  }
}
@media only screen and (max-width: 48em) {
  .inner-page__right {
    display: none;
  }
}

.side-bar {
  flex: none;
  width: 30rem;
  position: relative;
  background: linear-gradient(#308BDB, #6BB832);
}
@media only screen and (max-width: 75em) {
  .side-bar {
    width: 24rem;
    padding-left: 0rem;
  }
}
.side-bar__title {
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-left: 3.4rem;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  position: relative;
}
.side-bar__title::before {
  content: "";
  display: block;
  width: 4px;
  height: 27px;
  background: url(../images/header-line.png) no-repeat center center/cover;
  margin-right: 2rem;
}

.side-nav {
  padding: 3rem;
  border-radius: 3rem;
  background-color: #E0EBF4;
  transform: translate(4rem, 4rem);
}
.side-nav__1-item {
  border-radius: 3rem;
  list-style: none;
  position: relative;
  background-color: #fff;
  margin-bottom: 2rem;
  box-shadow: 0px 0px 20px 0px #ABC3FC;
}
.side-nav__1-item.active > .side-nav__2-list {
  display: block;
  position: relative;
}
.side-nav__1-item.active > .side-nav__1-link {
  border-radius: 3rem;
  font-weight: 600;
  border-bottom: none;
  background-color: #2B573E;
  color: #fff;
}
.side-nav__1-link {
  display: block;
  line-height: 6rem;
  text-align: center;
  font-size: 2rem;
  color: #333;
  position: relative;
}
.side-nav__1-link:hover {
  color: #2B573E;
}
.side-nav__2-list {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: none;
}
.side-nav__2-item {
  list-style: none;
  position: relative;
}
.side-nav__2-link {
  display: block;
  font-size: 1.8rem;
  line-height: 4rem;
  color: #333;
  text-align: center;
}
.side-nav__2-item.active > .side-nav__2-link {
  color: #2B573E;
  font-weight: 600;
  border-bottom: 1px solid rgba(48, 139, 219, 0.3);
}
.section-banner {
  position: relative;
  overflow: visible;
  height: 100vh;
  height: 100dvh;
}
.section-banner .swiper {
  overflow: hidden;
  height: 100% !important;
}
.section-banner .swiper-wrapper {
  height: 100% !important;
}
.section-banner .swiper-slide {
  position: relative;
  height: 100% !important;
  overflow: hidden;
}
.section-banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-slide img {
    min-height: 24rem;
  }
}
.section-banner .swiper-slide .banner-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.section-banner .swiper-slide .banner-video-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}
.section-banner .swiper-slide .banner-video-loading.is-loading {
  opacity: 1;
  visibility: visible;
}
.section-banner .swiper-slide .banner-video-loading__spinner {
  width: 4rem;
  height: 4rem;
  border: 0.3rem solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: banner-video-spin 0.8s linear infinite;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-slide .banner-video-loading__spinner {
    width: 3rem;
    height: 3rem;
    border-width: 0.25rem;
  }
}
.section-banner .swiper-pagination {
  bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination {
    bottom: 1rem;
    column-gap: 0.7rem;
  }
}
.section-banner .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: auto;
  height: auto;
  background: none;
  font-size: 2.2rem;
  color: #EDF7FF;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination .swiper-pagination-bullet {
    font-size: 1.3rem;
  }
}
.section-banner .swiper-pagination .swiper-pagination-bullet-active {
  font-size: 3.2rem;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination .swiper-pagination-bullet-active {
    font-size: 2rem;
  }
}
.section-banner .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  border-bottom: 1px solid #EDF7FF;
  margin-right: 1rem;
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-pagination .swiper-pagination-bullet-active::before {
    width: 2rem;
    margin-right: 0.7rem;
  }
}
.section-banner .banner-sound {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: 9;
  width: 4.6rem;
  height: 4.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}
@media only screen and (max-width: 48em) {
  .section-banner .banner-sound {
    width: 3.6rem;
    height: 3.6rem;
    right: 1.2rem;
    bottom: 1.2rem;
  }
}
.section-banner .banner-sound svg {
  width: 2.2rem;
  height: 2.2rem;
}
@media only screen and (max-width: 48em) {
  .section-banner .banner-sound svg {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.section-banner .banner-sound .icon-sound {
  display: none;
}
.section-banner .banner-sound .icon-muted {
  display: block;
}
.section-banner .banner-sound.is-sound .icon-muted {
  display: none;
}
.section-banner .banner-sound.is-sound .icon-sound {
  display: block;
}
.section-banner .banner-sound:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.05);
}
.section-banner .banner-sound:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 0.3rem;
}

.heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading__title {
  font-size: 5.6rem;
  line-height: 1.4;
  color: #2B573E;
  font-family: "MontserratMedium";
}
@media only screen and (max-width: 62em) {
  .heading__title {
    font-size: 2.6rem;
  }
}
.heading__more {
  flex: none;
  font-size: 1.8rem;
  color: #2B573E;
  font-family: "MontserratMedium";
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
  transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.heading__more::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(0, 95, 171, 0.12), rgba(0, 147, 68, 0.16)), linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.65) 45%, transparent 70%);
  background-size: 100% 100%, 220% 100%;
  background-position: 0 0, 130% 0;
  opacity: 0;
  transform: scaleX(0.86);
  transform-origin: left center;
  transition: opacity 0.35s ease, transform 0.35s ease, background-position 0.55s ease;
}
.heading__more::before {
  content: "";
  font-family: "iconfont";
  content: "\eb08";
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: linear-gradient(#005FAB, #009344);
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0.8rem 2rem rgba(0, 95, 171, 0.24);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, filter 0.35s ease;
}
.heading__more:hover, .heading__more:focus-visible {
  color: #005FAB;
  transform: translateX(0.4rem);
  box-shadow: 0 1rem 3rem rgba(0, 95, 171, 0.12);
}
.heading__more:hover::before, .heading__more:focus-visible::before {
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 147, 68, 0.32);
  filter: saturate(1.25) brightness(1.08);
}
.heading__more:hover::after, .heading__more:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
  background-position: 0 0, -80% 0;
}
.heading__more:focus-visible {
  outline: 2px solid rgba(0, 95, 171, 0.45);
  outline-offset: 0.4rem;
}

.special-date {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 10rem;
  height: 10.5rem;
  box-sizing: border-box;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 250, 247, 0.7));
  backdrop-filter: blur(10px);
  border: 1px solid transparent;
  border-radius: 2rem 0.8rem 2rem 0.8rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 95, 171, 0.15);
  position: relative;
  overflow: hidden;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}
.special-date .d {
  font-size: 3.8rem;
  color: #fff;
  font-family: "MontserratRegular", sans-serif;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 0.4rem;
  transition: all 0.4s ease;
}
.special-date .m {
  font-size: 1.4rem;
  color: #fff;
  font-family: "MontserratRegular", sans-serif;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  transition: all 0.4s ease;
}
.special-date .y {
  font-size: 1.2rem;
  color: #fff;
  font-family: "MontserratRegular", sans-serif;
  line-height: 1;
  position: static;
  transform: none;
  letter-spacing: 0.05rem;
  transition: all 0.4s ease;
}
.special-date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #009344, #005FAB);
  opacity: 1;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.special-date::after {
  display: none;
}

.section-1 {
  overflow: hidden;
  background: url(../images/bg-1.png) no-repeat right bottom;
}
.section-1__wrapper {
  display: flex;
  flex-wrap: wrap;
}
.section-1__wrapper .left {
  width: 60%;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .section-1__wrapper .left {
    width: 100%;
  }
}
.section-1__wrapper .left .swiper-pagination-bullets {
  width: auto;
  display: flex;
}
.section-1__wrapper .right {
  width: 40%;
  padding-left: 6rem;
}
@media only screen and (max-width: 62em) {
  .section-1__wrapper .right {
    width: 100%;
    padding-left: 0;
  }
}
.section-1 .news-operator {
  width: 24rem;
  height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
}
@media only screen and (max-width: 62em) {
  .section-1 .news-operator {
    position: relative;
    width: auto;
    left: 0;
  }
}
.section-1 .news-operator .swiper-pagination-bullets {
  display: flex;
  align-items: center;
}
.section-1 .news-operator .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 1.6rem;
  color: #666;
  line-height: 1;
  transform: translateY(4px);
  margin: 0 1rem;
}
.section-1 .news-operator .swiper-pagination-bullet-active {
  font-size: 3rem;
  color: #2B573E;
  line-height: 1;
  transform: translateY(0);
}
.section-1 .news-operator .news-operator-prev {
  cursor: pointer;
  margin-right: 1rem;
}
.section-1 .news-operator .news-operator-prev::before {
  content: "";
  font-family: "iconfont";
  content: "\edad";
  font-size: 2rem;
}
.section-1 .news-operator .news-operator-next {
  cursor: pointer;
  margin-left: 1rem;
}
.section-1 .news-operator .news-operator-next::before {
  content: "";
  font-family: "iconfont";
  content: "\e624";
  font-size: 2rem;
}
.section-1 .news-list .item {
  margin-bottom: 2.5rem;
}

.section-4 {
  overflow-x: hidden;
}

.section-2 {
  overflow: hidden;
  background: url(../images/bg-2.png) no-repeat center center/cover;
}
.section-2 .accordion {
  display: flex;
  align-items: stretch;
}
@media only screen and (max-width: 62em) {
  .section-2 .accordion {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.section-3 {
  overflow: hidden;
}
.section-3 .swiper {
  overflow: hidden;
  padding: 2.4rem 1rem 5rem 1rem;
}
.section-3 .swiper .swiper-slide {
  height: auto;
}
.section-3 .swiper .class-card {
  height: auto;
}
.section-3 .swiper .swiper-pagination {
  bottom: 0;
}
.section-3 .swiper .swiper-pagination-bullet {
  background-color: #666;
}
.section-3 .swiper .swiper-pagination-bullet-active {
  background-color: #009344;
}
@media (min-width: 1366px) {
  .section-3 .class-card {
    padding-left: 12rem;
    padding-right: 2rem;
  }
  .section-3 .class-card .special-date {
    left: 2rem;
    width: 8.5rem;
    height: 9rem;
    padding: 1.2rem;
  }
  .section-3 .class-card .special-date .d {
    font-size: 3.2rem;
  }
  .section-3 .class-card .special-date .m {
    font-size: 1.2rem;
  }
  .section-3 .class-card .special-date .y {
    font-size: 1.1rem;
  }
  .section-3 .class-card .info .title {
    font-size: 1.8rem;
    line-height: 2.8rem;
    height: 5.6rem;
  }
  .section-3 .class-card .info .details {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
  }
  .section-3 .class-card .info .details .text {
    font-size: 1.5rem;
  }
}

.static-banner {
  width: 100%;
  position: relative;
  aspect-ratio: 3;
}
.static-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-nav {
  margin-top: 1rem;
  background: linear-gradient(to right, #009344, #005FAB);
}
@media only screen and (max-width: 62em) {
  .inner-nav {
    padding: 0.8rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, rgba(0, 147, 68, 0.96), rgba(0, 95, 171, 0.96));
    box-shadow: 0 0.8rem 2.4rem rgba(0, 95, 171, 0.18);
    overflow: hidden;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.inner-nav nav {
  padding-left: 5rem;
  display: flex;
  column-gap: 2rem;
}
@media only screen and (max-width: 62em) {
  .inner-nav nav {
    padding-left: 0;
    column-gap: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .inner-nav nav::-webkit-scrollbar {
    display: none;
  }
}
.inner-nav nav a {
  line-height: 7rem;
  padding: 0 2rem;
  font-size: 2.2rem;
  font-family: "MontserratRegular";
  color: #fff;
}
@media only screen and (max-width: 62em) {
  .inner-nav nav a {
    flex: 0 0 auto;
    min-width: max-content;
    line-height: 4rem;
    padding: 0 1.6rem;
    border-radius: 999px;
    font-size: 1.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    scroll-snap-align: start;
  }
}
.inner-nav nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.inner-nav nav a:active, .inner-nav nav a.active {
  background-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 62em) {
  .inner-nav nav a:active, .inner-nav nav a.active {
    background-color: #fff;
    color: #2B573E;
    box-shadow: 0 0.6rem 1.6rem rgba(0, 59, 100, 0.16);
  }
}

@media only screen and (max-width: 62em) {
  .teacher-details {
    padding-top: 0;
  }
}
.teacher-details .base-info {
  display: flex;
  position: relative;
  background-color: #f0f3f2;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info {
    padding: 0;
    padding-bottom: 0;
    border-radius: 4px;
    background-size: cover;
    overflow: hidden;
  }
}
.teacher-details .base-info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 12rem;
  background: linear-gradient(135deg, #00972F 50%, #1F59AA 100%);
  z-index: 3;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%);
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info::after {
    width: 8rem;
    height: 6rem;
  }
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info {
    display: block;
  }
}
.teacher-details .base-info .cover {
  width: 24rem;
  height: 32rem;
  transform: translate(3rem, -3rem);
  flex: none;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .cover {
    width: 100%;
    height: auto;
    transform: none;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .cover {
    width: 16rem;
    height: 22rem;
    margin: 2rem auto 0;
  }
}
.teacher-details .base-info .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .cover img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .cover img {
    height: 100%;
    margin-bottom: 0;
  }
}
.teacher-details .base-info .info {
  padding-left: 7rem;
  padding-top: 3rem;
  padding-right: 3.5rem;
  padding-bottom: 3.5rem;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info {
    padding-left: 0;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info {
    padding: 1.8rem 1.6rem 2rem;
  }
}
.teacher-details .base-info .info .top {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
  position: relative;
}
.teacher-details .base-info .info .top::after {
  display: block;
  content: "";
  width: 24px;
  height: 4px;
  background: #2B574C;
  border-radius: 1px 1px 1px 1px;
  position: absolute;
  left: 0;
  top: 6rem;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .top::after {
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info .top {
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .top {
    display: block;
    padding-bottom: 1.4rem;
    text-align: center;
  }
}
.teacher-details .base-info .info .top .name {
  font-size: 3rem;
  font-weight: 600;
  font-family: "MicrosoftYaHei-Bold";
  padding-right: 2rem;
  color: #2B574C;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info .top .name {
    font-size: 2.3rem;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .top .name {
    padding-right: 0;
    font-size: 2.2rem;
    line-height: 1.25;
  }
}
.teacher-details .base-info .info .top .tag {
  font-size: 2rem;
  line-height: 1.6;
  color: #2B574C;
  position: relative;
  top: -0.5rem;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info .top .tag {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .top .tag {
    top: 0;
    margin-top: 0.8rem;
    line-height: 1.5;
    color: #5a5a5a;
  }
}
.teacher-details .base-info .info .labels {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(90, 90, 90, 0.3);
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .labels {
    padding-top: 1.4rem;
    padding-bottom: 1.2rem;
  }
}
.teacher-details .base-info .info .labels .text {
  width: 100%;
  padding-right: 2rem;
  font-size: 1.6rem;
  box-sizing: border-box;
  padding-bottom: 1rem;
  color: #2f2f2f;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .info .labels .text {
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .labels .text {
    align-items: flex-start;
    padding-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.55;
    word-break: break-word;
  }
}
.teacher-details .base-info .info .desc {
  padding-top: 3rem;
  font-size: 1.6rem;
  color: #2f2f2f;
  line-height: 1.6;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .info .desc {
    padding-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.teacher-details .details-info {
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 1rem;
  font-family: "MontserratMedium";
}
@media only screen and (max-width: 62em) {
  .teacher-details .details-info {
    box-shadow: none;
    background-color: rgba(248, 248, 248, 0.5);
  }
}
@media only screen and (max-width: 48em) {
  .teacher-details .details-info {
    border-radius: 4px;
    background-color: #fff;
  }
}
.teacher-details .details-info h2 {
  display: inline-block;
  align-items: center;
  padding: 0.5rem 0.3rem;
  font-size: 3.4rem;
  line-height: 1.2;
  font-family: "";
  color: #2B574C;
  position: relative;
  border-bottom: 1px solid #2B574C;
}
@media only screen and (max-width: 48em) {
  .teacher-details .details-info h2 {
    min-height: 4.8rem;
    padding: 1.1rem 1.6rem;
    font-size: 2.4rem;
    line-height: 1.35;
  }
}
.teacher-details .details-info h2 + p, .teacher-details .details-info h2 + ul, .teacher-details .details-info h2 + ol {
  margin-top: 1rem;
}
.teacher-details .details-info p,
.teacher-details .details-info li {
  padding: 0.5rem 1rem;
  font-size: 2rem;
  line-height: 1.8;
  color: #2f2f2f;
}
@media only screen and (max-width: 48em) {
  .teacher-details .details-info p,
  .teacher-details .details-info li {
    padding: 0.5rem 1.6rem;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.inner-wrapper {
  display: flex;
}
@media only screen and (max-width: 62em) {
  .inner-wrapper {
    display: block;
  }
}
.inner-wrapper__left {
  flex: 1;
  padding-right: 5rem;
}
@media only screen and (max-width: 62em) {
  .inner-wrapper__left {
    padding-right: 0;
    padding-bottom: 5rem;
  }
}
.inner-wrapper__right {
  flex: none;
}

.side-news {
  width: 34rem;
  background-color: #f8f8f8;
}
@media only screen and (max-width: 62em) {
  .side-news {
    width: 100%;
  }
}
.side-news h3 {
  background-color: #f0f0f0;
  border-top: 4px solid #16584C;
  border-bottom: 1px solid #D9D9D9;
  font-size: 2.4rem;
  color: #2B574C;
  padding-left: 2.4rem;
  line-height: 7rem;
  font-family: "MontserratBold";
}
.side-news ul {
  padding: 0 2.2rem;
}
.side-news ul li:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
