@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 56.25%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 62em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  box-sizing: border-box;
}
@media only screen and (max-width: 62em) {
  body {
    padding-top: 8rem;
  }
}
@media only screen and (max-width: 48em) {
  body {
    padding-top: 6rem;
  }
}

::selection {
  background-color: #0151A6;
  color: #ffffff;
}

body {
  font-family: "Helvetica Neue", 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;
}

@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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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;
  }
}
@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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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;
  }
}
@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: 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: 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: 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: 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: 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: 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: 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: 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: 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: 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;
  }
}
.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: #0151A6;
}
.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: #0151A6;
  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: #EB4B01;
}
.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: #0151A6;
}
.text-card:hover .date {
  color: #0151A6;
}
.text-card--secondary:hover .title {
  color: #EB4B01;
}
.text-card--secondary:hover .date {
  color: #EB4B01;
}
.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: #0151A6;
  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: #0151A6;
  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;
}

.news-card {
  padding-bottom: 8rem;
  padding-right: 4rem;
}
@media only screen and (max-width: 48em) {
  .news-card {
    padding-right: 0;
    padding-bottom: 0;
  }
}
.news-card .cover {
  aspect-ratio: 1.7;
}
@media only screen and (max-width: 48em) {
  .news-card .cover {
    aspect-ratio: 1.45;
  }
}
.news-card .info {
  padding: 3rem;
  position: absolute;
  width: calc(100% - 30rem);
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);
  position: absolute;
  right: 0;
  bottom: 2rem;
}
@media only screen and (max-width: 48em) {
  .news-card .info {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 1.8rem;
  }
}
.news-card .info .time {
  font-size: 1.8rem;
  color: #0151A6;
  font-weight: 600;
  margin-bottom: 5px;
}
@media only screen and (max-width: 48em) {
  .news-card .info .time {
    font-size: 1.4rem;
  }
}
.news-card .info .title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: #111;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 48em) {
  .news-card .info .title {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}
.news-card:hover .info .time {
  color: #EB4B01;
}
.news-card:hover .info .title {
  color: #EB4B01;
}

.news-text {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(219, 219, 219, 0.3);
}
@media only screen and (max-width: 48em) {
  .news-text {
    padding: 1.6rem 0;
  }
}
.news-text .info .time {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.8;
}
@media only screen and (max-width: 48em) {
  .news-text .info .time {
    font-size: 1.3rem;
  }
}
.news-text .info .title {
  font-size: 2rem;
  line-height: 2.8rem;
  color: #fff;
  opacity: 0.8;
  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) {
  .news-text .info .title {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
}
.news-text .link {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.news-text:hover {
  border-bottom: 1px solid #fff;
}
.news-text:hover .info .title {
  opacity: 1;
}

.research-card {
  padding-bottom: 4rem;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 48em) {
  .research-card {
    padding-bottom: 3.2rem;
  }
}
.research-card::after {
  content: "";
  font-family: "iconfont";
  content: "\eb92";
  position: absolute;
  right: 2.6rem;
  bottom: 1rem;
  font-size: 3rem;
  transform: rotate(-135deg);
  color: #ccc;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 48em) {
  .research-card::after {
    right: 1.8rem;
    bottom: 0.8rem;
    font-size: 2.4rem;
  }
}
.research-card .time {
  padding: 2rem 3rem;
  font-size: 1.8rem;
  color: #0151A6;
}
@media only screen and (max-width: 48em) {
  .research-card .time {
    padding: 1.4rem 1.8rem;
    font-size: 1.4rem;
  }
}
.research-card .cover {
  aspect-ratio: 1.7;
}
@media only screen and (max-width: 48em) {
  .research-card .cover {
    aspect-ratio: 1.5;
  }
}
.research-card .info {
  padding: 2rem 3rem;
}
@media only screen and (max-width: 48em) {
  .research-card .info {
    padding: 1.6rem 1.8rem;
  }
}
.research-card .info .title {
  font-size: 2rem;
  color: #333;
  line-height: 2.8rem;
  height: 8.4rem;
  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) {
  .research-card .info .title {
    height: auto;
    min-height: 5rem;
    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;
  }
}
.research-card:hover .time {
  color: #EB4B01;
}
.research-card:hover .info .title {
  color: #EB4B01;
}
.research-card:hover::after {
  color: #EB4B01;
  transform: rotate(-180deg);
}

.notice-card {
  padding: 4rem;
  background-color: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #EB4B01;
}
@media only screen and (max-width: 48em) {
  .notice-card {
    padding: 2.4rem 1.8rem;
  }
}
.notice-card .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notice-card .info .title {
  font-size: 2.4rem;
  color: #333;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media only screen and (max-width: 48em) {
  .notice-card .info .title {
    width: 100%;
    font-size: 1.8rem;
    line-height: 2.5rem;
    text-align: center;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.notice-card .info span {
  display: block;
  width: 38px;
  height: 3px;
  background: #EB4B01;
  border-radius: 1px 1px 1px 1px;
  margin: 2rem;
}
@media only screen and (max-width: 48em) {
  .notice-card .info span {
    margin: 1.4rem;
  }
}
.notice-card .info .desc {
  font-size: 2rem;
  color: #666;
  line-height: 3rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 9rem;
}
@media only screen and (max-width: 48em) {
  .notice-card .info .desc {
    font-size: 1.5rem;
    line-height: 2.4rem;
    height: 7.2rem;
  }
}

.article-text-card {
  background-color: #fff;
  padding: 3rem 0;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
}
.article-text-card .date {
  flex: none;
  width: 8rem;
  color: #0068D7;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 3rem;
}
.article-text-card .date .day {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.article-text-card .date .year {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.article-text-card .date::after {
  content: "";
  display: block;
  width: 33px;
  height: 27px;
  background: url(../images/icon.png) no-repeat;
}
.article-text-card .cover {
  flex: none;
  width: 16rem;
  height: 9.6rem;
}
.article-text-card .info {
  flex: 1;
  padding-left: 3rem;
  border-left: 1px solid #e7e7e7;
}
.article-text-card .info .title {
  color: #333;
  font-size: 2.2rem;
  line-height: 3.2rem;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.article-text-card .info .desc {
  color: #888888;
  font-size: 1.6rem;
  line-height: 2.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;
}
.article-text-card:hover .info .title {
  color: #0066D3;
}
.article-text-card:hover .info .desc {
  color: #0066D3;
}

.teacher-card {
  padding: 0 3rem 3rem 3rem;
  background-color: #DDE2E7;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 48em) {
  .teacher-card {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}
.teacher-card::after {
  content: "";
  font-family: "iconfont";
  content: "\eb92";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #99BCE1;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%) rotate(180deg);
  color: #fff;
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.teacher-card .cover {
  aspect-ratio: 0.6;
  transform: translateY(-3rem);
}
@media only screen and (max-width: 48em) {
  .teacher-card .cover {
    transform: translateY(0);
  }
}
.teacher-card .info {
  text-align: center;
  transform: translateY(-1rem);
}
@media only screen and (max-width: 48em) {
  .teacher-card .info {
    transform: translateY(0);
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
.teacher-card .info .title {
  font-size: 2.4rem;
  color: #111;
  line-height: 1;
}
.teacher-card .info .title::after {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background: #0066D3;
  border-radius: 1px 1px 1px 1px;
  margin: 1rem auto;
}
.teacher-card .info .desc {
  font-size: 1.8rem;
  color: #111;
  line-height: 1;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.teacher-card:hover {
  background: #F7F7F7;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  border-radius: 1px 1px 1px 1px;
}
.teacher-card:hover .info .title {
  color: #0066D3;
}
.teacher-card:hover .info .title::after {
  background: #0066D3;
}
.teacher-card:hover .info .desc {
  color: #0066D3;
}

.inner-banner {
  height: 45rem;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.inner-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-banner__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 168rem;
  color: #ffffff;
}
.inner-banner h2 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 62em) {
  .inner-banner h2 {
    font-size: 2.8rem;
  }
}
.inner-banner h3 {
  font-size: 3.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 62em) {
  .inner-banner h3 {
    font-size: 1.6rem;
  }
}

.custom-breadcrumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.6rem;
  padding-right: 4rem;
  height: 7rem;
  background: linear-gradient(to right, #0255A4, #0068D7);
  position: relative;
  border-bottom: 4px solid #FAE003;
}
@media only screen and (max-width: 48em) {
  .custom-breadcrumb {
    display: block;
    height: auto;
    padding: 2rem;
  }
}
.custom-breadcrumb .title {
  font-size: 2.8rem;
  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: #0151A6;
  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: #0151A6;
  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: #0151A6;
}
.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: #0151A6;
  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(235, 75, 1, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(235, 75, 1, 0.7), 0 0 40px rgba(235, 75, 1, 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(235, 75, 1, 0.5);
  border-radius: 12px;
  background-color: #0151A6;
  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: #EB4B01;
  border-color: #EB4B01;
  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: #0151A6;
}
@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: #0151A6;
  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: #0151A6;
}
@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: #0151A6;
}
@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: #0151A6;
}
@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: #0151A6;
  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;
  line-height: 1.5em;
  text-align: center;
  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 {
  padding: 1rem 0;
  text-align: center;
  background-color: rgba(212, 223, 236, 0.6);
  margin-bottom: 2rem;
}
.article-details__tag {
  font-size: 1.4rem;
  color: #050505;
}
.article-details__content > * {
  margin-bottom: 15px;
}
.article-details__content p {
  font-size: 16px;
  line-height: 1.75em;
  color: #000;
  color: #2f2f2f;
  font-family: "微软雅黑", "黑体", "STHeiti", "Microsoft YaHei";
}
.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;
}
@media only screen and (max-width: 75em) {
  .article-prev-next {
    display: block;
  }
}
.article-prev-next a {
  font-weight: 600;
  padding: 0.5rem 3rem;
  display: block;
  font-size: 1.6rem;
  color: #0068D7;
  background-color: #E4EDF3;
  border: 1px solid rgba(0, 104, 215, 0.12);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 104, 215, 0);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.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, #0068D7, #024593);
  border-color: #0068D7;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 104, 215, 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: 999999;
  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;
  pointer-events: auto;
}
.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, #0151A6, rgb(1.3053892216, 105.7365269461, 216.6946107784));
  color: #fff;
  transition: all 0.25s ease;
}
.header__search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(1, 81, 166, 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;
  opacity: 0;
  pointer-events: none;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.4s ease;
}
.page-loading.visible {
  opacity: 1;
  pointer-events: auto;
}
.page-loading.loaded {
  opacity: 0;
  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: #60a5fa;
  box-shadow: 0 0 6px #60a5fa, 0 0 12px rgba(96, 165, 250, 0.5);
  animation: particleFloat 4s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0;
}
.page-loading .particle:nth-child(1) {
  animation-delay: 0.3s;
  animation-duration: 3.3s;
}
.page-loading .particle:nth-child(2) {
  animation-delay: 0.6s;
  animation-duration: 3.6s;
}
.page-loading .particle:nth-child(3) {
  animation-delay: 0.9s;
  animation-duration: 3.9s;
}
.page-loading .particle:nth-child(4) {
  animation-delay: 1.2s;
  animation-duration: 4.2s;
}
.page-loading .particle:nth-child(5) {
  animation-delay: 1.5s;
  animation-duration: 4.5s;
}
.page-loading .particle:nth-child(6) {
  animation-delay: 1.8s;
  animation-duration: 4.8s;
}
.page-loading .particle:nth-child(7) {
  animation-delay: 2.1s;
  animation-duration: 5.1s;
}
.page-loading .particle:nth-child(8) {
  animation-delay: 2.4s;
  animation-duration: 5.4s;
}
.page-loading__container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-loading__hex {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.page-loading .hex__layer {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  background: rgba(96, 165, 250, 0.08);
  border: none;
  animation: hexSpin 6s linear infinite;
}
.page-loading .hex__layer::before {
  content: "";
  position: absolute;
  inset: 3px;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  background: rgba(96, 165, 250, 0.03);
  border: 1.5px solid rgba(96, 165, 250, 0.3);
}
.page-loading .hex__layer::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  background: radial-gradient(circle at 50% 0%, #22d3ee 3px, transparent 3px), radial-gradient(circle at 93.3% 25%, #22d3ee 3px, transparent 3px), radial-gradient(circle at 93.3% 75%, #22d3ee 3px, transparent 3px), radial-gradient(circle at 50% 100%, #22d3ee 3px, transparent 3px), radial-gradient(circle at 6.7% 75%, #22d3ee 3px, transparent 3px), radial-gradient(circle at 6.7% 25%, #22d3ee 3px, transparent 3px);
  animation: vertexGlow 2s ease-in-out infinite alternate;
}
.page-loading .hex__layer--1 {
  animation-duration: 6s;
  animation-direction: normal;
}
.page-loading .hex__layer--2 {
  inset: 15px;
  animation-duration: 8s;
  animation-direction: reverse;
}
.page-loading .hex__layer--2::before {
  border-color: rgba(34, 211, 238, 0.25);
}
.page-loading .hex__layer--3 {
  inset: 30px;
  animation-duration: 10s;
  animation-direction: normal;
}
.page-loading .hex__layer--3::before {
  border-color: rgba(96, 165, 250, 0.4);
}
.page-loading .hex__layer--3::after {
  background: radial-gradient(circle at 50% 0%, #60a5fa 4px, transparent 4px), radial-gradient(circle at 93.3% 25%, #60a5fa 4px, transparent 4px), radial-gradient(circle at 93.3% 75%, #60a5fa 4px, transparent 4px), radial-gradient(circle at 50% 100%, #60a5fa 4px, transparent 4px), radial-gradient(circle at 6.7% 75%, #60a5fa 4px, transparent 4px), radial-gradient(circle at 6.7% 25%, #60a5fa 4px, transparent 4px);
}
.page-loading .hex__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #93c5fd, #60a5fa);
  box-shadow: 0 0 15px #60a5fa, 0 0 30px rgba(96, 165, 250, 0.5);
  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 hexSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes vertexGlow {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
@keyframes corePulse {
  0%, 100% {
    box-shadow: 0 0 15px #60a5fa, 0 0 30px rgba(96, 165, 250, 0.5);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 20px #60a5fa, 0 0 40px rgba(96, 165, 250, 0.7);
    transform: translate(-50%, -50%) scale(1.2);
  }
}
@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__hex {
    width: 90px;
    height: 90px;
  }
  .page-loading .hex__layer--2 {
    inset: 12px;
  }
  .page-loading .hex__layer--3 {
    inset: 24px;
  }
  .page-loading .hex__core {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 480px) {
  .page-loading__hex {
    width: 75px;
    height: 75px;
  }
  .page-loading .hex__layer--2 {
    inset: 10px;
  }
  .page-loading .hex__layer--3 {
    inset: 20px;
  }
  .page-loading .hex__core {
    width: 6px;
    height: 6px;
  }
}
.sidebar-recommend {
  padding: 2rem 0;
  margin-bottom: 2rem;
}
.sidebar-recommend__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0151A6;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(1, 81, 166, 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: #0151A6;
}

.sidebar-tags {
  padding: 2rem 0;
}
.sidebar-tags__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0151A6;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(1, 81, 166, 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: #0151A6;
  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;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 99999;
}
@media only screen and (max-width: 75em) {
  .header {
    background: #0151A6;
    border-top: none;
  }
  .header::after {
    display: none;
  }
}
.header.scroll {
  background: #0151A6;
}
.header.scroll::after {
  display: none;
}
.header::after {
  display: block;
  content: "";
  width: 100%;
  height: 20rem;
  background: linear-gradient(#002954, transparent);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 75em) {
  .header::after {
    display: none;
  }
}
.header__content {
  height: 12rem;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 62em) {
  .header__content {
    height: 8rem;
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 48em) {
  .header__content {
    height: 6rem;
    padding: 0 2rem;
  }
}
.header__content-left {
  height: 100%;
}
.header__content-left .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
.header__content-left .logo img {
  display: block;
  max-width: 80%;
  max-height: 80%;
}
.header__content-right {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__content-right {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #0151A6;
    display: flex;
    flex-direction: column;
    transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  .header__content-right.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.header__content-bottom {
  padding-right: 3rem;
}
@media only screen and (max-width: 75em) {
  .header__content-bottom {
    width: 100%;
    flex: 1;
    padding-top: 0;
    overflow-y: auto;
  }
}
.header__menus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 75em) {
  .header__menus {
    padding: 2rem 2rem;
  }
}
@media only screen and (max-width: 48em) {
  .header__menus {
    width: 100%;
    padding: 2rem 0;
  }
}
.header__menus > *:not(:last-child) {
  margin-right: 3rem;
}
.header__menus .text {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.8;
}
.header__menus .text:hover {
  opacity: 1;
}
.header__menus .i-18n {
  padding: 2px 4px;
  border-radius: 8px;
  border: 2px solid #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.header__menus .i-18n:hover {
  background-color: #fff;
  color: #111;
  opacity: 1;
}
@media only screen and (max-width: 75em) {
  .header__menus .search-input {
    margin-top: 1.5rem;
  }
}
.header__menus .iconfont {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 2.4rem;
  cursor: pointer;
  opacity: 0.8;
}
@media only screen and (max-width: 75em) {
  .header__menus .iconfont {
    font-size: 3.4rem;
    font-weight: 600;
  }
}
.header__menus .iconfont:hover {
  opacity: 1;
}
.header__open-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  font-size: 4rem;
  color: #fff;
  line-height: 6rem;
  text-align: center;
  display: none;
  z-index: 9;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__open-btn {
    display: block;
  }
}
@media only screen and (max-width: 75em) {
  .header__open-btn {
    font-size: 3rem;
  }
}
.header__close-btn {
  font-size: 4rem;
  color: #ffffff;
  position: absolute;
  right: 0rem;
  top: 0rem;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 75em) {
  .header__close-btn {
    display: block;
  }
}

.search-popover {
  position: relative;
}
@media only screen and (max-width: 75em) {
  .search-popover__icon {
    display: none;
  }
}
.search-popover__content {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
  transform: translate(1rem, 100%);
}
@media only screen and (max-width: 75em) {
  .search-popover__content {
    position: relative;
    right: auto;
    bottom: auto;
    transform: translate(0, 0);
    z-index: 1;
  }
}

.web-nav__1-list {
  width: 50vw;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-list {
    width: auto;
    display: block;
    padding: 0rem 2rem;
  }
}
.web-nav__1-item {
  list-style: none;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-item:not(:last-child) {
    margin-right: 0;
  }
}
.web-nav__1-link {
  display: block;
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  line-height: 4rem;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link {
    min-width: 100%;
    width: auto;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: auto;
    line-height: 6rem;
    font-size: 2.4rem;
  }
}
.web-nav__1-link.active {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
}
@media only screen and (max-width: 75em) {
  .web-nav__1-link.active {
    color: #fff;
    text-shadow: none;
  }
}
.web-nav__1-item:hover .web-nav__2-list {
  display: block;
  animation: dropdownFadeIn 0.3s ease;
}
@media only screen and (max-width: 75em) {
  .web-nav__1-item:hover .web-nav__2-list {
    animation: none;
  }
}
.web-nav__1-open {
  display: none;
}
.web-nav__2-list {
  position: absolute;
  top: 4rem;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9999;
  display: none;
  padding: 8px;
  min-width: 18rem;
  transform: translateX(-50%);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.web-nav__2-list::after {
  display: block;
  content: "";
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list::after {
    display: none;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__2-list {
    position: static;
    background-color: transparent;
    display: block;
    padding-left: 3rem;
    transform: translateX(0);
    box-shadow: none;
    border-radius: 0;
  }
}
.web-nav__2-item {
  list-style: none;
  position: relative;
}
.web-nav__2-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 75em) {
  .web-nav__2-item:not(:last-child) {
    border-bottom: none;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__2-item:first-child {
    border-radius: 0;
    overflow: visible;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__2-item:last-child {
    border-radius: 0;
    overflow: visible;
  }
}
.web-nav__2-link {
  display: block;
  padding: 1.2rem 2rem;
  background-color: #fff;
  font-size: 1.8rem;
  text-align: left;
  line-height: 1.4;
  color: #2f2f2f;
  white-space: nowrap;
  transition: all 0.25s ease;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link {
    color: #ffffff;
    line-height: 5rem;
    text-align: left;
    font-size: 2rem;
    background-color: transparent;
    padding: 0;
  }
}
.web-nav__2-link:hover, .web-nav__2-link.active {
  color: #ffffff;
  background: #0151A6;
  padding-left: 2.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link:hover, .web-nav__2-link.active {
    color: #ffffff;
    background: transparent;
    padding-left: 0;
    font-weight: 400;
  }
}
.web-nav__2-link--arrow::after {
  content: "";
  font-family: "iconfont";
  content: "\e63d";
}
@media only screen and (max-width: 75em) {
  .web-nav__2-link--arrow::after {
    display: none;
  }
}
.web-nav__2-open {
  display: none;
}
.web-nav__3-list {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.7);
  display: none;
  border-left: 1px solid rgba(1, 81, 166, 0.1);
}
@media only screen and (max-width: 75em) {
  .web-nav__3-list {
    position: static;
    padding: 0;
    padding-left: 6rem;
    border-left: none;
    background-color: transparent;
    display: block;
  }
}
.web-nav__3-link {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #2f2f2f;
  white-space: nowrap;
}
@media only screen and (min-width: 112.5em) {
  .web-nav__3-link {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link {
    color: #ffffff;
    line-height: 5rem;
    padding: 0;
  }
}
.web-nav__3-link:hover {
  color: #ffffff;
  font-weight: 600;
  background: #0151A6;
}
@media only screen and (max-width: 75em) {
  .web-nav__3-link:hover {
    color: #ffffff;
    font-weight: 400;
    background: transparent;
  }
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.footer {
  padding-top: 16rem;
}
@media only screen and (max-width: 48em) {
  .footer {
    padding-top: 1rem;
    background: url(../images/footer-bg.png) #0151A6 no-repeat bottom center/cover;
  }
}
.footer__content {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .footer__content {
    display: block;
  }
}
.footer__content-left {
  flex: none;
}
.footer__content-left .footer-logo {
  padding-right: 4rem;
}
@media only screen and (max-width: 48em) {
  .footer__content-left .footer-logo {
    padding-right: 0;
  }
}
.footer__content-left .footer-logo img {
  display: block;
  max-width: 50rem;
}
@media only screen and (max-width: 48em) {
  .footer__content-left .footer-logo img {
    width: 100%;
  }
}
.footer__content-medium {
  flex: 1;
  padding-left: 4rem;
}
@media only screen and (max-width: 48em) {
  .footer__content-medium {
    padding-left: 0;
    padding-top: 2rem;
  }
}
.footer__content-medium .footer-info p {
  max-width: 60rem;
  font-size: 1.4rem;
  color: #F4F4F4;
  line-height: 2;
  opacity: 0.8;
}
@media only screen and (max-width: 48em) {
  .footer__content-medium .footer-info p {
    max-width: none;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.footer__content-right {
  flex: none;
}
@media only screen and (max-width: 48em) {
  .footer__content-right {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
  }
}
.footer__content-right .qr-code img {
  display: block;
  width: 10rem;
  height: 10rem;
}
.footer__content-right .qr-code p {
  font-size: 1.6rem;
  color: #F4F4F4;
  margin-top: 1rem;
  text-align: center;
}
.footer__copyright {
  padding: 2rem 0;
  border-top: 1px solid rgba(244, 244, 244, 0.2);
}
.footer__copyright p {
  font-size: 1.6rem;
  color: #F4F4F4;
  text-align: center;
}
@media only screen and (max-width: 48em) {
  .footer__copyright p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.inner-page {
  position: relative;
}
.inner-page__wrapper {
  display: flex;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .inner-page__wrapper {
    padding: 0;
    display: block;
  }
}
.inner-page__left {
  flex: none;
  z-index: 99;
}
.inner-page__medium {
  flex: 1;
  background: url(../images/bg-1.png) no-repeat center bottom/contain;
}
.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: #0151A6;
  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: #0151A6;
}
.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: #0151A6;
  font-weight: 600;
  border-bottom: 1px solid rgba(48, 139, 219, 0.3);
}
body {
  background: url(../images/footer-bg.png) no-repeat bottom center/100% auto;
}
@media only screen and (max-width: 48em) {
  body {
    background-size: auto 54rem;
    background: none;
  }
}

.section-banner {
  position: relative;
}
@media only screen and (min-width: 62em) {
  .section-banner {
    height: 100vh;
  }
  .section-banner .swiper {
    height: 100%;
  }
}
.section-banner .swiper-slide {
  position: relative;
}
.section-banner .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: auto;
  aspect-ratio: 2.3;
}
@media only screen and (min-width: 62em) {
  .section-banner .swiper-slide img {
    height: 100%;
    aspect-ratio: unset;
  }
}
@media only screen and (max-width: 48em) {
  .section-banner .swiper-slide img {
    min-height: 24rem;
    aspect-ratio: 1.45;
  }
}
.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-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 48em) {
  .section-heading {
    align-items: flex-end;
  }
}
.section-heading .section-title {
  font-weight: 600;
  font-size: 6.2rem;
  color: #111;
  line-height: 1;
}
@media only screen and (max-width: 48em) {
  .section-heading .section-title {
    font-size: 3.4rem;
  }
}
.section-heading .section-title strong {
  color: #0056A7;
}
.section-heading .more {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  padding: 1rem;
  display: flex;
  align-items: center;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 48em) {
  .section-heading .more {
    padding: 0.6rem 0;
    font-size: 1.2rem;
  }
}
.section-heading .more::before {
  content: "";
  font-family: "iconfont";
  content: "\e61f";
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  font-size: 1.4rem;
  color: #0151A6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}
@media only screen and (max-width: 48em) {
  .section-heading .more::before {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.6rem;
    font-size: 1.2rem;
  }
}
.section-heading .more:hover {
  background-color: #0151A6;
  color: #fff;
  border-radius: 100px;
}
.section-heading .more--blue {
  color: #0151A6;
}
.section-heading .more--blue::before {
  background-color: #0151A6;
  color: #fff;
}

@media only screen and (max-width: 48em) {
  .section-news .section-heading .more {
    color: #0151A6;
  }
  .section-news .section-heading .more::before {
    background-color: #0151A6;
    color: #fff;
  }
}
.section-news__wrapper {
  padding: 7rem 0 4rem 0;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .section-news__wrapper {
    padding: 4rem 0;
    background-color: #fff;
  }
}
.section-news__wrapper::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 50%;
  background-color: #fff;
}
@media only screen and (max-width: 48em) {
  .section-news__wrapper::before {
    display: none;
  }
}
.section-news__wrapper::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 50%;
  background: url(../images/bg-3.png) no-repeat center center/cover;
}
@media only screen and (max-width: 48em) {
  .section-news__wrapper::after {
    display: none;
  }
}
.section-news .container {
  position: relative;
  z-index: 3;
}
.section-news__content {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .section-news__content {
    display: block;
  }
}
.section-news__content-left {
  width: 60%;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .section-news__content-left {
    width: 100%;
  }
}
.section-news__content-right {
  width: 40%;
  padding-left: 8rem;
}
@media only screen and (max-width: 48em) {
  .section-news__content-right {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: url(../images/bg-3.png) no-repeat center center/cover;
  }
}
.section-news .button-wrapper {
  position: absolute;
  left: 0;
  bottom: 3rem;
  z-index: 8888;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.7rem;
}
@media only screen and (max-width: 48em) {
  .section-news .button-wrapper {
    position: static;
    justify-content: flex-start;
    margin-top: 1.6rem;
    column-gap: 1.2rem;
  }
}
.section-news .button-wrapper .line {
  width: 1px;
  height: 1.8rem;
  border-right: 1px solid #e7e7e7;
}
.section-news .button-wrapper .swiper-button-new-prev {
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media only screen and (max-width: 48em) {
  .section-news .button-wrapper .swiper-button-new-prev {
    font-size: 1.4rem;
  }
}
.section-news .button-wrapper .swiper-button-new-prev::before {
  content: "";
  font-family: "iconfont";
  content: "\eb90";
  font-size: 2rem;
}
@media only screen and (max-width: 48em) {
  .section-news .button-wrapper .swiper-button-new-prev::before {
    font-size: 1.6rem;
  }
}
.section-news .button-wrapper .swiper-button-new-prev:hover {
  color: #0151A6;
}
.section-news .button-wrapper .swiper-button-new-next {
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media only screen and (max-width: 48em) {
  .section-news .button-wrapper .swiper-button-new-next {
    font-size: 1.4rem;
  }
}
.section-news .button-wrapper .swiper-button-new-next::after {
  content: "";
  font-family: "iconfont";
  content: "\eb8d";
  font-size: 2rem;
}
@media only screen and (max-width: 48em) {
  .section-news .button-wrapper .swiper-button-new-next::after {
    font-size: 1.6rem;
  }
}
.section-news .button-wrapper .swiper-button-new-next:hover {
  color: #0151A6;
}

.section-research__content {
  position: relative;
}
.section-research__content::before {
  content: "";
  display: block;
  position: absolute;
  left: 0rem;
  top: 0;
  bottom: 0;
  width: 60rem;
  transform: translateX(-37rem);
  background: linear-gradient(#0069D8, #0151A6);
}
@media only screen and (max-width: 48em) {
  .section-research__content::before {
    display: none;
  }
}
.section-research__content .swiper {
  padding: 8rem 0;
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 48em) {
  .section-research__content .swiper {
    padding: 0rem 0 5rem;
  }
}
.section-research .swiper-pagination {
  padding-right: 1rem;
  bottom: 1rem;
  left: auto;
  width: auto;
  right: 0;
  display: flex;
  column-gap: 2rem;
}
@media only screen and (max-width: 48em) {
  .section-research .swiper-pagination {
    left: 0;
    right: 0;
    bottom: 1rem;
    justify-content: center;
    padding-right: 0;
    width: 100%;
    column-gap: 1.6rem;
  }
}
.section-research .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  background-color: #C4D4E9;
}
.section-research .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0056A7;
  outline: 2px solid #0056A7;
  outline-offset: 6px;
}

.notice-research {
  padding-bottom: 8rem;
  background: url(../images/bg-1.png) no-repeat right 20rem bottom;
}
@media only screen and (max-width: 48em) {
  .notice-research {
    padding-bottom: 5rem;
    background-position: right -6rem bottom;
    background-size: 26rem auto;
  }
}
.notice-research__content {
  padding: 0 14rem;
  position: relative;
}
@media only screen and (max-width: 48em) {
  .notice-research__content {
    padding: 0;
  }
}
.notice-research__content .block-left {
  width: 9rem;
  position: absolute;
  left: 5rem;
  top: 3rem;
  bottom: 3rem;
}
@media only screen and (max-width: 48em) {
  .notice-research__content .block-left {
    display: none;
  }
}
.notice-research__content .block-left::before {
  content: "";
  display: block;
  width: 4.5rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #F4F4F4;
}
.notice-research__content .block-left::after {
  content: "";
  display: block;
  width: 4.5rem;
  position: absolute;
  right: 4.5rem;
  top: 2rem;
  bottom: 2rem;
  background-color: rgba(241, 241, 241, 0.5);
}
.notice-research__content .block-right {
  width: 9rem;
  position: absolute;
  right: 5rem;
  top: 3rem;
  bottom: 3rem;
}
@media only screen and (max-width: 48em) {
  .notice-research__content .block-right {
    display: none;
  }
}
.notice-research__content .block-right::before {
  content: "";
  display: block;
  width: 4.5rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #F4F4F4;
}
.notice-research__content .block-right::after {
  content: "";
  display: block;
  width: 4.5rem;
  position: absolute;
  left: 4.5rem;
  top: 2rem;
  bottom: 2rem;
  background-color: rgba(241, 241, 241, 0.5);
}
.notice-research__content .notice-research-swiper {
  position: relative;
}
.notice-research__content .swiper {
  padding: 1rem 0;
}
@media only screen and (max-width: 48em) {
  .notice-research__content .swiper {
    padding: 1rem 0 2rem;
  }
}
.notice-research .swiper-pagination {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  transform: translateY(7rem);
}
@media only screen and (max-width: 48em) {
  .notice-research .swiper-pagination {
    column-gap: 1.6rem;
    transform: translateY(2.5rem);
  }
}
.notice-research .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  background-color: #C4D4E9;
}
.notice-research .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0056A7;
  outline: 2px solid #0056A7;
  outline-offset: 6px;
  animation: bulletPulse 2s ease-in-out infinite;
}

@keyframes bulletPulse {
  0%, 100% {
    outline-offset: 6px;
    outline-width: 2px;
    opacity: 1;
  }
  50% {
    outline-offset: 8px;
    outline-width: 3px;
    opacity: 0.8;
  }
}
.static-banner {
  width: 100%;
  position: relative;
  aspect-ratio: 3;
}
.static-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-query {
  padding: 0 3rem;
  background: #F7F7F7;
  border-radius: 1px 1px 1px 1px;
  border: 1px solid #DDE2E7;
}
.search-query__item {
  display: grid;
  grid-template-columns: 12rem 6.6rem 1fr;
  align-items: start;
  padding: 1rem 0;
}
.search-query__item:not(:last-child) {
  border-bottom: 1px solid #F5DED9;
}
@media only screen and (max-width: 62em) {
  .search-query__item {
    display: block;
    padding: 1rem 0;
  }
}
.search-query__item h4 {
  grid-column: 1;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #0151A6;
  font-weight: 600;
  margin: 0.4rem 0;
}
.search-query__item nav {
  display: contents;
}
@media only screen and (max-width: 62em) {
  .search-query__item nav {
    display: flex;
    align-items: flex-start;
  }
}
.search-query__item nav > span:first-child {
  grid-column: 2;
}
.search-query__item nav .search-query__options {
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  min-width: 0;
}
@media only screen and (max-width: 62em) {
  .search-query__item nav .search-query__options {
    flex: 1;
  }
}
.search-query__item nav span {
  padding: 0 2rem;
  border-radius: 100px;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #5a5a5a;
  margin: 0.4rem;
  cursor: pointer;
  box-sizing: border-box;
}
.search-query__item nav span.short {
  padding: 0 1rem;
}
.search-query__item nav span.active {
  color: #0151A6;
  border: 1px solid #0151A6;
}
.search-query__item nav span.disabled {
  color: #ccc;
  cursor: default;
  pointer-events: none;
}
.search-query__item nav.search-query__list[_name=name] .search-query__options > span:first-child {
  padding: 0 2rem;
}

@media only screen and (max-width: 62em) {
  .teacher-details {
    padding-top: 0;
  }
}
.teacher-details .base-info {
  border: 1px solid #DDE2E7;
  display: flex;
  padding: 3.5rem;
  position: relative;
  background: url(../images/bg-4.png) #F7F7F7 no-repeat right bottom/contain;
}
@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;
  left: 0;
  right: 0;
  bottom: 0;
  top: 9rem;
  background: #ffffff;
  border-bottom: 3px solid #BE0404;
  box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.05);
  z-index: -1;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info {
    display: block;
  }
}
.teacher-details .base-info .cover {
  width: 24rem;
  height: 32rem;
  flex: none;
  position: relative;
}
@media only screen and (max-width: 62em) {
  .teacher-details .base-info .cover {
    width: 100%;
    height: auto;
  }
}
@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 .cover::before {
  display: block;
  content: "";
  width: 6.4rem;
  height: 6.4rem;
  background: #0066D3;
  border-radius: 1px 1px 1px 1px;
  opacity: 0.5;
  position: absolute;
  left: -1rem;
  top: -1rem;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .cover::before {
    width: 3.8rem;
    height: 3.8rem;
    left: -0.6rem;
    top: -0.6rem;
  }
}
.teacher-details .base-info .cover::after {
  display: block;
  content: "";
  width: 6.4rem;
  height: 6.4rem;
  background: #0066D3;
  border-radius: 1px 1px 1px 1px;
  opacity: 0.5;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
}
@media only screen and (max-width: 48em) {
  .teacher-details .base-info .cover::after {
    width: 3.8rem;
    height: 3.8rem;
    right: -0.6rem;
    bottom: -0.6rem;
  }
}
.teacher-details .base-info .info {
  padding-left: 3rem;
}
@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: #0066D3;
  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: #111;
}
@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: #111;
  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: 50%;
  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 {
  border: 1px solid #DDE2E7;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 1rem;
}
@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 h3 {
  display: flex;
  align-items: center;
  height: 6rem;
  background: #F7F7F7;
  padding-left: 3rem;
  font-size: 2rem;
  font-weight: bold;
  color: #0066D3;
  position: relative;
  border-top: 4px solid #0066D3;
}
@media only screen and (max-width: 48em) {
  .teacher-details .details-info h3 {
    height: auto;
    min-height: 4.8rem;
    padding: 1.1rem 1.6rem;
    font-size: 1.7rem;
    line-height: 1.35;
  }
}
.teacher-details .details-info h3 + p {
  margin-top: 1rem;
}
.teacher-details .details-info p {
  padding: 0.5rem 3rem;
  font-size: 1.6rem;
  color: #2f2f2f;
}
@media only screen and (max-width: 48em) {
  .teacher-details .details-info p {
    padding: 0.5rem 1.6rem;
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.teacher-details .details-info p + h3 {
  margin-top: 1rem;
}
