#vanta-canvas {
  width: 100%;
  height: 100vh;
  text-align: center;
}

/* # General */

:root {
  scroll-behavior: smooth;
}

body {
  font-family: PingFangSC, Microsoft Yahei, Helvetica, Tahoma, Arial, Hiragino Sans GB, Hiragino Sans GB W3, STXihei, STHeiti, Heiti, SimSun, sans-serif !important;
}

.web-svg {
  max-width: 90%;
  padding: 30px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* # Sections */

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
  color: #fc636b;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }
}

/* # Back to top button */

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  line-height: 0;
  color:#fc636b;
}

.back-to-top.active {
  visibility: visible;
  opacity: 0.9;
}

/* # Header */

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* # Navigation Menu */

/* Desktop Navigation */

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, .5);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: rgba(0, 0, 0, .9);
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile Navigation */

.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.fa-times {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 991px) {
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: rgba(0, 0, 0, .5);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: rgba(0, 0, 0, .9);
}

/* # Hero Section */

.hero {
  width: 100%;
  height: 100vh;
  background: url(assets/img/wave-haikei.svg) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 {
  margin: 15px 0 0 0;
  font-size: 26px;
}

.hero .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }
}

@media (max-width: 991px) {
  .hero .hero-img {
    text-align: center;
    margin-top: 80px;
  }
}

@media (max-width: 991px) {
  .hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .hero .hero-img img {
    width: 100%;
  }
}

/* # Index Page */

/* # About */

.about .content {
  background-color: #f8f9fa;
  padding: 40px;
}

.about h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fc636b;
  text-transform: uppercase;
}

.about h2 {
  font-size: 24px;
  font-weight: 700;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.about .btn-read-more {
  line-height: 0;
  padding: 20px 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #343a40;
  box-shadow: 0px 5px 25px rgba(52, 58, 64, 0.3);
}

.about .btn-read-more:hover {
  background: #343a40;
  opacity: 0.9;
}

.about .btn-read-more span {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}

/* # Values */

.values .box {
  padding: 30px;
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
  text-align: center;
  transition: 0.3s;
  height: 100%;
}

.values .box img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.values .box:hover img {
  transform: scale(1);
}

/* # Features */

.features .feature-box {
  padding: 20px 20px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  border-radius: 5px;
}

.features .feature-box h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.features .feature-box i {
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 10px;
  border-radius: 3px;
  transition: 0.3s;
  color: #f8f9fa;
}

.features .feature-box:hover i {
  color: #fc636b;
}

.features .feture-tabs {
  margin-top: 120px;
}

.features .feture-tabs i {
  font-size: 10px;
}

.features .feture-tabs h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .features .feture-tabs h3 {
    font-size: 28px;
  }
}

.features .feture-tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.features .feture-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  color: #999;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.features .feture-tabs .nav-link.active {
  color: #343a40;
  font-weight: 700;
  border-bottom: 3px solid #fc636b;
}

.features .feture-tabs .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

.features .feture-tabs .tab-content i {
  color: #ffc107;
  font-size: 10px;
  line-height: 0;
  margin: 0 8px;
}

.features .feature-icons {
  margin-top: 120px;
}

.features .feature-icons h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .features .feature-icons h3 {
    font-size: 28px;
  }
}

.features .feature-icons .content .icon-box {
  display: flex;
}

.features .feature-icons .content .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .feature-icons .content .icon-box i {
  font-size: 44px;
  line-height: 44px;
  margin-right: 15px;
}

.features .feature-icons .content .icon-box p {
  font-size: 15px;
}

/* # Testimonials */

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  margin: 40px 40px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: normal;
  text-align: left;
  text-indent: 28px;
  margin: 0 auto 20px auto;
  font-size: 14px;
  line-height: 1.5;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #6c757d;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #6c757d;
}

.testimonials .swiper-slide {
  opacity: .3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/* # F.A.Q */

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #fc636b;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 0;
  border: 0;
}

/* # Contact */

.contact .info-box {
  background: #fafbff;
  padding: 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #fc636b;
}

.contact .info-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: #fafbff;
  padding: 30px;
  height: 100%;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* # Footer */

.footer {
  background: #f8f9fa;
  padding: 0 0 30px 0;
  font-size: 14px;
}

.footer .footer-top {
  background: white;
  background-size: contain;
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  padding: 60px 0 30px 0;
}

@media (max-width: 992px) {
  .footer .footer-top {
    background-position: center bottom;
  }
}

.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
  line-height: 0;
  margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 3px;
}

.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  padding: 14px;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-top .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
}

.footer .icp {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

.footer a {
  color: #212529;
}

.footer a:hover {
  text-decoration: underline;
  color: #999;
}

.footer i.fa {
  padding-right: 5px;
}

img.contact-image {
  max-width: 150px;
}
