@import "reset.css";
body {
  margin: 0;
}
.w {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
body {
  font-size: 100%;
}
.pof {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
}
.header.active .left {
  background: #fff;
}
.header .left {
  width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.3);
          box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.8);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header .left {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 900px) {
  .header .left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
  }
}
.header .left .brand {
  width: 148px;
  padding: 0 50px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header .left .brand {
    padding-left: 0;
    padding-right: 2vw;
  }
}
@media (max-width: 1050px) {
  .header .left .brand {
    width: 100px;
  }
}
.header .left .brand img {
  width: 100%;
  aspect-ratio: 25/6;
}
.header .left .nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 900px) {
  .header .left .nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (max-width: 900px) {
  .header .left .nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(50%, rgba(0,0,0,0.3)));
    background: -o-linear-gradient(left, #fff 50%, rgba(0,0,0,0.3) 50%);
    background: linear-gradient(to right, #fff 50%, rgba(0,0,0,0.3) 50%);
    width: 100%;
    padding: 10px;
    display: none;
  }
}
.header .left .nav>li {
  position: relative;
}
.header .left .nav>li:hover>a.active,
.header .left .nav>li:hover>a {
  color: #ff4000;
}
.header .left .nav>li:hover>a.active span::after,
.header .left .nav>li:hover>a span::after {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
.header .left .nav>li ul {
  background: #fff;
}
.header .left .nav>li ul a {
  display: block;
  padding: 10px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .header .left .nav>li {
    position: relative;
    z-index: 1;
    width: 50%;
  }
  .header .left .nav>li>a {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .left .nav>li>a span::after {
    display: none;
  }
}
.header .left .nav a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-right: 33px;
  color: #383838;
  position: relative;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .header .left .nav a {
    margin-right: 2vw;
  }
  .header .left .nav a:last-child {
    margin-right: 0;
  }
}
@media (max-width: 1050px) {
  .header .left .nav a {
    font-size: 14px;
  }
}
.header .left .nav a.active,
.header .left .nav a:hover {
  color: #ff4000;
}
.header .left .nav a.active span::after,
.header .left .nav a:hover span::after {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
.header .left .nav a span {
  position: relative;
  color: currentColor;
}
.header .left .nav a span::after {
  content: '';
  position: absolute;
  bottom: -10px;
  height: 2px;
  left: 0;
  right: 0;
  background: currentColor;
  border-radius: 1px;
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.header .left .sub-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: none;
}
.header .left .sub-menu li {
  border-bottom: 1px solid #eee;
}
@media (max-width: 900px) {
  .header .left .sub-menu {
    position: initial;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .header .left .sub-menu li {
    border: none;
  }
}
.header .left .mobuleMenu {
  width: 50px;
  height: 50px;
  border: 1px solid #1d2122;
  border-radius: 5px;
  display: none;
  position: relative;
  cursor: pointer;
}
.header .left .mobuleMenu:hover {
  background: #eee;
}
.header .left .mobuleMenu.active span:nth-child(1) {
  -webkit-transition: 0.1s opacity 0.3s;
  -o-transition: 0.1s opacity 0.3s;
  transition: 0.1s opacity 0.3s;
  opacity: 0;
}
.header .left .mobuleMenu.active span:nth-child(2) {
  -webkit-transition: 0.3s top, 0.3s -webkit-transform 0.3s;
  transition: 0.3s top, 0.3s -webkit-transform 0.3s;
  -o-transition: 0.3s top, 0.3s transform 0.3s;
  transition: 0.3s top, 0.3s transform 0.3s;
  transition: 0.3s top, 0.3s transform 0.3s, 0.3s -webkit-transform 0.3s;
  top: 0;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}
.header .left .mobuleMenu.active span:nth-child(3) {
  -webkit-transition: 0.3s bottom, 0.3s -webkit-transform 0.3s;
  transition: 0.3s bottom, 0.3s -webkit-transform 0.3s;
  -o-transition: 0.3s bottom, 0.3s transform 0.3s;
  transition: 0.3s bottom, 0.3s transform 0.3s;
  transition: 0.3s bottom, 0.3s transform 0.3s, 0.3s -webkit-transform 0.3s;
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
}
.header .left .mobuleMenu .bar {
  position: absolute;
  width: 30px;
  height: 4px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.header .left .mobuleMenu span {
  position: absolute;
  width: 30px;
  height: 4px;
  left: 0;
  border-radius: 2px;
  background: #1d2122;
  -webkit-transform-origin: cetner cetner;
      -ms-transform-origin: cetner cetner;
          transform-origin: cetner cetner;
}
.header .left .mobuleMenu span:nth-child(1) {
  -webkit-transition: 0.1s opacity 0.3s;
  -o-transition: 0.1s opacity 0.3s;
  transition: 0.1s opacity 0.3s;
  opacity: 1;
}
.header .left .mobuleMenu span:nth-child(2) {
  top: -10px;
  -webkit-transition: 0.3s top 0.3s, 0.3s -webkit-transform;
  transition: 0.3s top 0.3s, 0.3s -webkit-transform;
  -o-transition: 0.3s transform, 0.3s top 0.3s;
  transition: 0.3s transform, 0.3s top 0.3s;
  transition: 0.3s transform, 0.3s top 0.3s, 0.3s -webkit-transform;
  -webkit-transform: rotateZ(0);
      -ms-transform: rotate(0);
          transform: rotateZ(0);
}
.header .left .mobuleMenu span:nth-child(3) {
  bottom: -10px;
  -webkit-transition: 0.3s bottom 0.3s, 0.3s -webkit-transform;
  transition: 0.3s bottom 0.3s, 0.3s -webkit-transform;
  -o-transition: 0.3s transform, 0.3s bottom 0.3s;
  transition: 0.3s transform, 0.3s bottom 0.3s;
  transition: 0.3s transform, 0.3s bottom 0.3s, 0.3s -webkit-transform;
  -webkit-transform: rotateZ(0);
      -ms-transform: rotate(0);
          transform: rotateZ(0);
}
@media (max-width: 900px) {
  .header .left .mobuleMenu {
    display: block;
  }
}
.header .left .rightLogin {
  width: 70px;
  height: 50px;
  margin-right: 10px;
  border-radius: 5px;
  display: none;
}
@media (max-width: 900px) {
  .header .left .rightLogin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .left .mobileControl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .right,
.header .rightLogin {
  width: 120px;
  background: #ff4000;
  font-size: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 6px 12px rgba(0,0,0,0.3);
          box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.header .right:hover,
.header .rightLogin:hover{
	background:#ff4000d1;
}
@media (max-width: 1050px) {
  .header .right,
  .header .rightLogin {
    font-size: 14px;
    width: 100px;
  }
}
@media (max-width: 900px) {
  .header .right,
  .header .rightLogin {
    display: none;
  }
}
.main .banner {
  height: 710px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("") center center/cover no-repeat;
  position: relative;
}
.main .banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
}
@media (max-width: 850px) {
  .main .banner {
    height: 500px;
  }
}
@media (max-width: 620px) {
  .main .banner {
    height: 400px;
  }
}
.main .banner .content {
  position: relative;
  z-index: 1;
}
.main .banner .content p {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 2px;
  padding-bottom: 117px;
  color: #fff;
}
@media (max-width: 1200px) {
  .main .banner .content p {
    display: none;
  }
}
@media (max-width: 850px) {
  .main .banner .content .w-1200 {
    padding-top: 50px;
  }
}
.main .banner .content .w-1200 p {
  display: none;
  padding-bottom: 10px;
  line-height: 150%;
  text-align: center;
}
@media (max-width: 1200px) {
  .main .banner .content .w-1200 p {
    display: block;
    letter-spacing: 0px;
  }
}
@media (max-width: 850px) {
  .main .banner .content .w-1200 p {
    font-size: 40px;
  }
}
@media (max-width: 500px) {
  .main .banner .content .w-1200 p {
    font-size: 30px;
  }
}
@media (max-width: 410px) {
  .main .banner .content .w-1200 p {
    font-size: 22px;
  }
}
.main .banner .content a {
  display: block;
  margin: 0 auto;
  font-size: 22px;
  color: #002c71;
  background: #fff;
  border-radius: 25px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 208px;
}
@media (max-width: 500px) {
  .main .banner .content a {
    font-size: 16px;
    width: 40%;
    height: 30px;
    border-radius: 15px;
  }
}
@media (max-width: 410px) {
  .main .banner .content a {
    font-size: 12px;
  }
}
.main .about {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 160px;
}
@media (max-width: 1240px) {
  .main .about {
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 1000px) {
  .main .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
            gap:0;
  }
}
.main .about .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 470px;
          flex: 0 0 470px;
  height: 100%;
  position: relative;
  height: auto;
  background: url("") center center/cover no-repeat;
}
@media (max-width: 1000px) {
  .main .about .img {
    width: 70%;
    margin: 0 auto;
    height: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding-top: 60%;
    margin-bottom: 60px;
  }
}
.main .about .img .text {
  position: absolute;
  top: 164px;
  left: 418px;
  width: 160px;
  height: 160px;
  border: 13px solid #fff;
  background: #ff4000;
  font-size: 32px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}
@media (max-width: 1000px) {
  .main .about .img .text {
    left: auto;
    right: -10%;
    top: calc(50% - 80px);
  }
}
@media (max-width: 750px) {
  .main .about .img .text {
    width: 80px;
    height: 80px;
    font-size: 16px;
    border-width: 6px;
  }
}
@media (max-width: 500px) {
  .main .about .img .text {
    width: 80px;
    height: 80px;
    font-size: 16px;
    border-width: 6px;
    top: auto;
    right: auto;
    bottom: -40px;
    left: calc(50% - 40px);
  }
}
.main .about .content h2 {
  padding: 10px 0;
  font-size: 36px;
  color: #ff4000;
  letter-spacing: 2ox;
  line-height: 150%;
}
.main .about .content p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #808080;
  line-height: 150%;
}
.main .about .content p:last-child {
  margin-bottom: 0;
}
.main .research h2 {
  font-size: 36px;
  letter-spacing: 2px;
  color: #383838;
  text-align: center;
  padding: 80px 0 40px;
}
@media (max-width: 768px) {
  .main .research h2 {
    padding-top: 40px;
    padding-bottom: 10px;
  }
}
.main .research .list {
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1200px) {
  .main .research .list {
    grid-template-columns: repeat(4, 1fr);
    margin: 20px;
  }
}
@media (max-width: 1000px) {
  .main .research .list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .main .research .list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}
@media (max-width: 500px) {
  .main .research .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.main .research .list .item {
  border-bottom: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 10px;
}
.main .research .list .item:hover svg {
  color: #ff4000;
}
.main .research .list .item .img {
  width: 100%;
  aspect-ratio: 164/107;
  border: none;
}
.main .research .list .item .text {
  font-size: 18px;
  color: #383838;
  line-height: 150%;
  padding-top: 17px;
  height: 90px;
}
.main .research .list .item .svg {
  width: 36px;
  height: 36px;
  color: #e5e5e5;
  -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
          transform: rotateZ(180deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.main .recentNews {
  padding-top: 180px;
}
@media (max-width: 1240px) {
  .main .recentNews {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
}
.main .recentNews h2 {
  font-size: 36px;
  color: #383838;
  line-height: 150%;
  padding-bottom: 20px;
}
.main .recentNews .df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 72px;
}
@media (max-width: 1240px) {
  .main .recentNews .df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
}
.main .recentNews .df .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 468px;
          flex: 0 0 468px;
}
@media (max-width: 1240px) {
  .main .recentNews .df .img {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.main .recentNews .df .img img {
  display: block;
  width: 468px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1240px) {
  .main .recentNews .content {
    text-align: center;
  }
}
.main .recentNews .content h4 {
  font-size: 24px;
  color: #383838;
  line-height: 150%;
  padding-bottom: 20px;
}
.main .recentNews .content p {
  padding-bottom: 20px;
  font-size: 18px;
  color: #383838;
}
.main .recentNews .content .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  width: 260px;
  height: 60px;
  border-radius: 15px;
  font-size: 22px;
  color: #808080;
  text-align: center;
  border: 1px solid #a6a6a6;
}
@media (max-width: 1240px) {
  .main .recentNews .content .button {
    margin-top: 0;
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .main .recentNews .content .button {
    width: 130px;
    height: 40px;
    font-size: 14px;
  }
}
.main .contact {
  margin-top: 120px;
  background: url("../img/5fb38_12_1920_700.jpg") center center/auto 100% no-repeat;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media (max-width: 1240px) {
  .main .contact {
    margin-top: 40px;
  }
}
@media (max-width: 1000px) {
  .main .contact {
    height: 500px;
  }
}
@media (max-width: 650px) {
  .main .contact {
    height: 300px;
  }
}
.main .contact h4 {
  font-size: 28px;
  line-height: 150%;
}
@media (max-width: 1000px) {
  .main .contact h4 {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .main .contact h4 {
    font-size: 16px;
  }
}
.main .contact h3 {
  font-size: 60px;
  line-height: 150%;
  padding: 0px 0 0px;
}
@media (max-width: 1000px) {
  .main .contact h3 {
    font-size: 40px;
  }
}
@media (max-width: 650px) {
  .main .contact h3 {
    font-size: 20px;
  }
}
.main .contact h5 {
  font-size: 48px;
  line-height: 150%;
}
@media (max-width: 1000px) {
  .main .contact h5 {
    font-size: 32px;
  }
}
@media (max-width: 650px) {
  .main .contact h5 {
    font-size: 18px;
  }
}
.main .contact .buttonGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding-top: 60px;
}
@media (max-width: 1000px) {
  .main .contact .buttonGroup {
    padding-top: 40px;
  }
}
@media (max-width: 650px) {
  .main .contact .buttonGroup {
    gap: 20px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
  }
}
.main .contact .buttonGroup a {
  width: 330px;
  height: 100px;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 25px;
}
@media (max-width: 1000px) {
  .main .contact .buttonGroup a {
    width: 250px;
    height: 70px;
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .main .contact .buttonGroup a {
    width: 30%;
    height: 40px;
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .main .contact .buttonGroup a {
    width: 45%;
    height: 40px;
    font-size: 14px;
  }
}
.main .contact .buttonGroup .origin {
  color: #fff;
  background: #ff4000;
}
.main .contact .buttonGroup .origin .img {
  width: 33px;
  height: 33px;
  padding-right: 20px;
}
@media (max-width: 650px) {
  .main .contact .buttonGroup .origin .img {
    width: 20px;
    padding-right: 5px;
  }
}
.main .contact .buttonGroup .white {
  color: #fff;
  border: 1px solid #fff;
}
.bgfooter {
  background: #f5f5f5;
}
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  color: #808080;
  padding-bottom: 30px;
  background:#f5f5f5;
}
@media (max-width: 1240px) {
  .footer {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .link {
  color: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1240px) {
  .footer .link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .link a {
  display: block;
  margin: 30px 100px 30px 0;
}
@media (max-width: 1240px) {
  .footer .link a {
    margin: 30px;
  }
}
.footer .copyright {
  text-align: right;
}
@media (max-width: 1240px) {
  .footer .copyright {
    text-align: center;
  }
}
.footer .copyright p {
  margin: 30px 0;
}
@media (max-width: 1240px) {
  .footer .copyright p {
    margin-top: 0;
  }
}
.footer .copyright .imgLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1240px) {
  .footer .copyright .imgLinks {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .copyright .imgLinks a {
  width: 44px;
  height: 44px;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer .copyright .imgLinks img {
  width: 100%;
}
@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes slideLeft {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

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

.uwp-login-class, 
.uwp-register-class, 
.uwp-forgot-class{
	width: 300px;
	margin: 100px auto 0;
	padding-bottom: 100px;
}

.uwp_page .main-wrapper > h1 {
  display: none;
}