.about-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.about-hero-section .hero-bg .img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
  mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
}
.about-hero-section .hero-bg .hero-content {
  width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 10;
}
.about-hero-section .hero-bg .hero-content img {
  margin-bottom: 43px;
}
.about-hero-section .hero-bg .hero-content span {
  font-size: 46px;
  display: block;
  width: 500px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
/*.about-hero-section .hero-bg .hero-content span::after {*/
/*  content: '';*/
/*  display: block;*/
/*  width: 18px;*/
/*  height: 18px;*/
/*  background-color: #3666FE;*/
/*  border-radius: 50%;*/
/*  position: absolute;*/
/*  bottom: 15px;*/
/*  right: -39px;*/
/*}*/
.about-hero-section .hero-bg .hero-content .title-butn {
  padding-top: 115px;
  display: flex;
  align-items: center;
}
.about-hero-section .hero-bg .hero-content .title-butn .title {
  font-size: 18px;
  color: #fff;
  margin-right: 45px;
}
.zhanwang-section {
  width: 100%;
  margin: 0 auto;
  padding: 111px 0;
  padding-bottom: 120px;
}
.zhanwang-section .zhanwang-content {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.zhanwang-section .header-group {
  margin-bottom: 79px;
}
.zhanwang-section .header-group .main-title {
  font-size: 46px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: baseline;
}
.zhanwang-section .header-group .main-title::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #FFD700;
  border-radius: 50%;
  margin-left: 13px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.zhanwang-section .header-group .description {
  font-size: 20px;
  color: #050505;
  line-height: 1.8;
}
.zhanwang-section .header-group .description .highlight {
  color: #002EA6;
  font-weight: 700;
  font-size: 20px;
}
.zhanwang-section .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.zhanwang-section .content-wrapper .stats-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  height: 402px;
  padding-left: 70px;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-value {
  color: #002EA6;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-value .num {
  font-size: 48px;
  font-weight: 700;
  font-family: BOLD;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-value .unit {
  font-size: 20px;
  font-weight: 500;
  margin-left: 4px;
}
.zhanwang-section .content-wrapper .stats-list .stat-item .stat-label {
  font-size: 18px;
  color: #050505;
}
.zhanwang-section .content-wrapper .video-cover-wrapper {
  position: relative;
  width: 680px;
  height: 402px;
  overflow: hidden;
  border-radius: 50px;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  background-color: rgba(0, 46, 166, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn img {
  width: 20px;
  height: 24px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::before,
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  box-sizing: border-box;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::before {
  animation: ripple-dashed 2s linear infinite;
}
.zhanwang-section .content-wrapper .video-cover-wrapper .play-btn::after {
  animation: ripple-dashed 2s linear infinite;
  animation-delay: 1.25s;
}
.zhanwang-section .content-wrapper .video-cover-wrapper:hover .cover-img {
  transform: scale(1.05);
}
.zhanwang-section .content-wrapper .video-cover-wrapper:hover .play-btn {
  background-color: #002ea6;
}
.zhanwang-section .content-wrapper .video-cover-wrapper:hover .play-btn svg {
  color: #fff;
}
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}
.video-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.video-modal .modal-content {
  position: relative;
  width: 80%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.video-modal .modal-content video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}
.video-modal .modal-content .close-btn {
  position: absolute;
  top: -40px;
  right: -10px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s;
}
.video-modal .modal-content .close-btn:hover {
  transform: rotate(90deg);
  color: #002EA6;
}
.origin-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: url(../image/band/ban8.png) no-repeat;
  background-size: 100% 100%;
  padding-bottom: 70px;
}
.origin-section .map-decoration {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.origin-section .map-decoration .dashed-line {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
}
.origin-section .map-decoration .location-pin {
  position: absolute;
  right: 15%;
  top: -35px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.origin-section .map-decoration .location-pin .text {
  color: #002EA6;
  font-weight: bold;
  font-size: 14px;
}
.origin-section .map-decoration .location-pin .pin-icon {
  width: 30px;
  height: 40px;
  background-color: #002EA6;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 51, 153, 0.3);
}
.origin-section .map-decoration .location-pin .pin-icon .dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}
.origin-section .container {
  width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.origin-section .container img {
  margin: 0 auto;
}
.origin-section .section-header {
  margin-bottom: 110px;
}
.origin-section .section-header .main-title {
  font-size: 46px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 24px;
  position: relative;
  display: flex;
  align-items: baseline;
}
.origin-section .section-header .main-title::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #FFD700;
  border-radius: 50%;
  margin-left: 13px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
.origin-section .section-header .description {
  font-size: 20px;
  color: #050505;
  line-height: 1.8;
}
.origin-section .section-header .description .highlight {
  color: #002EA6;
  font-weight: 700;
  font-size: 20px;
}
.research-capabilities-page {
  width: 100%;
  padding-top: 129px;
  padding-bottom: 165px;
}
.research-capabilities-page .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.research-capabilities-page .main-title {
  text-align: center;
  font-size: 32px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 50px;
}
.research-capabilities-page .capability-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 155px;
  padding: 0 50px;
}
.research-capabilities-page .capability-grid .cap-card {
  width: 370px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 25px 0px rgba(220, 220, 220, 0.4);
  transition: all 0.3s ease;
  padding: 0 40px;
  padding-top: 50px;
  padding-bottom: 30px;
}
.research-capabilities-page .capability-grid .cap-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #002EA6;
}
.research-capabilities-page .capability-grid .cap-card .icon-box img {
  width: 70px;
  height: 70px;
}
.research-capabilities-page .capability-grid .cap-card .card-title {
  font-size: 22px;
  color: #172541;
  font-weight: 700;
  margin-bottom: 20px;
}
.research-capabilities-page .capability-grid .cap-card .card-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}
.research-capabilities-page .capability-grid .cap-card .data-list {
  list-style: none;
}
.research-capabilities-page .capability-grid .cap-card .data-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #5E6770;
  line-height: 1.6;
}
.research-capabilities-page .capability-grid .cap-card .data-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #002EA6;
  border-radius: 50%;
}
.research-capabilities-page .capability-grid .cap-card .data-list li:after {
  content: '';
  position: absolute;
  left: -3px;
  top: 7px;
  width: 12px;
  height: 12px;
  background-color: rgba(0, 46, 166, 0.15);
  border-radius: 50%;
}
.research-capabilities-page .capability-grid .cap-card .data-list li .highlight {
  color: #002EA6;
  font-weight: 700;
}
.research-capabilities-page .capability-grid .cap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(10, 54, 157, 0.1);
}
.research-capabilities-page .intro-block {
  margin-bottom: 110px;
}
.research-capabilities-page .intro-block .intro-title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 700;
  margin-bottom: 20px;
}
.research-capabilities-page .intro-block .intro-text {
  font-size: 20px;
  color: #050505;
  line-height: 1.8;
}
.research-capabilities-page .equipment-section .sub-title {
  text-align: center;
  font-size: 30px;
  color: #002EA6;
  font-weight: 700;
  margin-bottom: 64px;
}
.research-capabilities-page .equipment-section .equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 155px;
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
  width: 305px;
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card .img-area {
  width: 305px;
  height: 305px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #005cbf 0%, #00c6ff 100%);
  border-radius: 15px 15px 0 0;
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card .img-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 15px 15px 0 0;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card .img-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 51, 153, 0.6), transparent);
  z-index: 1;
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card .name-area {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  color: #172541;
  font-weight: 700;
  background-color: #F6F7FB;
  transition: background-color 0.3s;
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card:hover .img-area img {
  transform: scale(1.1);
}
.research-capabilities-page .equipment-section .equipment-grid .equip-card:hover .name-area {
  background-color: #fff;
  color: #002EA6;
}
.laboratory {
  width: 1296px;
  height: 546px;
  margin: 0 auto;
}
.laboratory img {
  width: 100%;
  height: auto;
  display: block;
}
.key-lab-section {
  padding: 124px 0;
  width: 100%;
}
.key-lab-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.key-lab-section .section-title {
  text-align: center;
  font-size: 20px;
  color: #050505;
  font-weight: 800;
  margin-bottom: 60px;
}
.key-lab-section .slider-viewport {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  padding-bottom: 60px;
  user-select: none;
}
.key-lab-section .slider-viewport:active {
  cursor: grabbing;
}
.key-lab-section .slider-track {
  display: flex;
  gap: 20px;
  padding: 0 6px;
  width: 100%;
}
.key-lab-section .lab-card {
  background-color: #fff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0px 0px 10px 0px rgba(220, 220, 220, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 50vw 50vw 120px 120px;
  padding-bottom: 50px;
}
.key-lab-section .lab-card .img-circle {
  width: 302px;
  height: 302px;
  border-radius: 50vw 50vw 50vw 50vw;
  overflow: hidden;
  margin-bottom: 22px;
  transition: transform 0.4s ease;
}
.key-lab-section .lab-card .img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.key-lab-section .lab-card .text-content {
  width: 100%;
  padding: 0 19px;
}
.key-lab-section .lab-card .text-content .card-title {
  font-size: 22px;
  color: #002EA6;
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s;
  text-align: left;
}
.key-lab-section .lab-card .text-content .card-desc {
  font-size: 18px;
  color: #050505;
  transition: color 0.3s;
  line-height: 28px;
}
.key-lab-section .lab-card:hover {
  background-color: #002EA6;
}
.key-lab-section .lab-card:hover .img-circle img {
  transform: scale(1.1);
}
.key-lab-section .lab-card:hover .text-content .card-title {
  color: #fff;
}
.key-lab-section .lab-card:hover .text-content .card-desc {
  color: rgba(255, 255, 255, 0.9);
}
.key-lab-section .pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.key-lab-section .pagination-dots .dot {
  width: 8px;
  height: 8px;
  background-color: #7F9ED3;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.key-lab-section .pagination-dots .dot.active {
  background-color: #002EA6;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px #002EA6;
  transform: scale(1.1);
}
.key-lab-section .pagination-dots .dot:hover {
  background-color: #002EA6;
}
.expert-team-section {
  position: relative;
  width: 100%;
  background: url(../image/band/ban9.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 124px;
  overflow: hidden;
  padding-bottom: 100px;
}
.expert-team-section .bg-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  opacity: 1;
  z-index: 0;
}
.expert-team-section .bg-decor img {
  width: 100%;
  display: block;
}
.expert-team-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.expert-team-section .section-header {
  margin-bottom: 13px;
  max-width: 900px;
}
.expert-team-section .section-header .main-title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 1px;
}
.expert-team-section .section-header .main-desc {
  font-size: 20px;
  color: #050505;
  line-height: 1.8;
}
.expert-team-section .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.expert-team-section .content-wrapper .text-column {
  flex: 1;
}
.expert-team-section .content-wrapper .text-column .icon-circle {
  width: 51px;
  height: 51px;
  background-color: #002EA6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  color: #fff;
}
.expert-team-section .content-wrapper .text-column .icon-circle img {
  width: 51px;
  height: 51px;
}
.expert-team-section .content-wrapper .text-column .sub-title {
  font-size: 22px;
  color: #050505;
  font-weight: 700;
  margin-bottom: 20px;
}
.expert-team-section .content-wrapper .text-column .sub-desc {
  font-size: 20px;
  color: #050505;
  line-height: 32px;
  text-align: justify;
}
.expert-team-section .content-wrapper .img-column {
  flex: 0 0 450px;
}
.expert-team-section .content-wrapper .img-column .circle-mask {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.expert-team-section .content-wrapper .img-column .circle-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.expert-team-section .content-wrapper .img-column .circle-mask:hover img {
  transform: scale(1.05);
}
.process-flow-section {
  padding: 80px 0;
  padding-bottom: 114px;
  padding-top: 132px;
}
.process-flow-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.process-flow-section .section-header {
  margin-bottom: 70px;
}
.process-flow-section .section-header .title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 15px;
}
.process-flow-section .section-header .desc {
  font-size: 20px;
  color: #050505;
}
.process-flow-section .section-ulurt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
}
.process-flow-section .section-ulurt .section-img {
  width: 234px;
  height: 206px;
  transition: all 0.3s ease;
}
.process-flow-section .section-ulurt .section-img:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.process-flow-section .section-ulurt .section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-flow-section .section-ulurt .bg-radio {
  position: absolute;
  bottom: 103px;
  left: 213px;
  width: 100%;
  z-index: -1;
}
.learn-more-section {
  padding-top: 100px;
  width: 100%;
  background: #F2F7FF;
  padding-bottom: 129px;
}
.learn-more-section .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.learn-more-section .section-title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 800;
  margin-bottom: 70px;
  text-align: left;
}
.learn-more-section .circle-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.learn-more-section .circle-grid .circle-card {
  display: block;
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 46, 166, 0.1);
  transition: box-shadow 0.3s ease;
}
.learn-more-section .circle-grid .circle-card .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.learn-more-section .circle-grid .circle-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(10, 54, 157, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color 0.4s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content .card-title {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  transform: translateY(0);
  transition: transform 0.4s ease;
  text-align: center;
}
.learn-more-section .circle-grid .circle-card .overlay-content .icon-arrow {
  width: 20px;
  height: 16px;
  transition: transform 0.4s ease;
}
.learn-more-section .circle-grid .circle-card .overlay-content .icon-arrow img {
  width: 100%;
  height: 100%;
}
.learn-more-section .circle-grid .circle-card:hover {
  box-shadow: 0 15px 40px rgba(10, 54, 157, 0.3);
}
.learn-more-section .circle-grid .circle-card:hover .img-box img {
  transform: scale(1.1);
}
.learn-more-section .circle-grid .circle-card:hover .overlay-content {
  background-color: rgba(10, 54, 157, 0.4);
}
.learn-more-section .circle-grid .circle-card:hover .icon-arrow {
  transform: translateX(10px);
}
.mouse-scroll-icon {
  position: relative;
  width: 25px;
  height: 35px;
  border: 2px solid #ffffff;
  border-radius: 10px;
  box-sizing: border-box;
}
.mouse-scroll-icon .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-bob 1.9s infinite ease-in-out;
}
@keyframes mouse-bob {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.footer {
  margin-top: 0 !important;
}
.footpage {
  background: #F2F7FF;
}
