/*
* ----------------------------------------------------------------------------------------
* 01. START GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
  font-family: Inter, 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  font-size: 15px;
  color: #767676;
  line-height: 1.9em;
  font-weight: 400;
  overflow-x: hidden;
  margin: auto;
  background: #fff;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  /*font-family: 'Dosis', sans-serif;*/
  font-weight: 700;
}

a {
  color: #2563EB;
  /*font-family: 'Raleway', sans-serif;*/
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a.black {
  color: #555;
}

a:focus,
a:hover {
  color: #034ea2;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  line-height: 26px;
  margin-bottom: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

.d-pre-wrap {
  white-space: pre-wrap;
}

.text-red {
  color: red;
}

footer.footer {
  clear: both;
  display: block;
  float: none;
  padding: 30px 0;
  line-height: 1.65;
  color: #ccc;
  background: #07162D;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
}
.footer-bottom {
  color: #aaa;
}
.footer a {
  color: #d7deff;
}
.footer a:hover {
  text-decoration: underline;
}

.section-zizhi .owl-carousel .item {
  padding: 0;
  width: auto;
  height: 150px;
  background: #f6f6f6;
  color: #fff;
}
.section-zizhi .owl-carousel a {
  display: block;
  width: 100%;
  height: 100%;
}
.section-zizhi .owl-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-zizhi .owl-carousel .owl-dots button {
  outline: none;
}
.line-clamp-1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: justify;
}
.cursor-pointer {
  cursor: pointer;
}

/*START PRELOADER DESIGN*/

#page-preloader {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
}

.loader {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  /*background-color: #2563EB;*/
  -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
  transform: translateX(0px) translateY(0px) rotate(0deg);
  /*-webkit-animation: mainAnimation 2.6s ease 0s infinite forwards;*/
  /*animation: mainAnimation 2.6s ease 0s infinite forwards;*/
  z-index: 2;
}

.loader:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  left: -50px;
  /*background-color: #2563EB;*/
  -webkit-transform-origin: top right;
  transform-origin: top right;
  -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
  transform: translateX(0px) translateY(0px) rotate(0deg);
  /*-webkit-animation: secundaryAnimation 2.6s ease 0s infinite forwards;*/
  /*animation: secundaryAnimation 2.6s ease 0s infinite forwards;*/
}

.loa-shadow {
  position: absolute;
  width: 100px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin-top: 50px;
  margin-left: -50px;
  border-radius: 50%;
  background-color: #95a5a6;
  -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
  transform: translateX(0px) translateY(0px) rotate(0deg);
  /*-webkit-animation: shadowAnimation 2.6s ease 0s infinite forwards, float 5s ease-in-out 0s infinite forwards;*/
  /*animation: shadowAnimation 2.6s ease 0s infinite forwards, float 5s ease-in-out 0s infinite forwards;*/
  -webkit-filter: blur(5px);
  filter: blur(5px);
  z-index: 1;
}

@-webkit-keyframes mainAnimation {
  0% {
    width: 50px;
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  20% {
    width: 50px;
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  40% {
    width: 150px;
    -webkit-transform: translateX(-50px) translateY(0px) rotate(0deg);
    transform: translateX(-50px) translateY(0px) rotate(0deg);
  }
  60% {
    width: 150px;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: translateX(-150px) translateY(0px) rotate(90deg);
    transform: translateX(-150px) translateY(0px) rotate(90deg);
  }
  80% {
    width: 50px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(90deg);
    transform: translateX(-25px) translateY(0px) rotate(90deg);
  }
  100% {
    width: 50px;
    -webkit-transform: translateX(-50px) translateY(0px) rotate(90deg);
    transform: translateX(-50px) translateY(0px) rotate(90deg);
  }
}

@keyframes mainAnimation {
  0% {
    width: 50px;
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  20% {
    width: 50px;
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  40% {
    width: 150px;
    -webkit-transform: translateX(-50px) translateY(0px) rotate(0deg);
    transform: translateX(-50px) translateY(0px) rotate(0deg);
  }
  60% {
    width: 150px;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: translateX(-150px) translateY(0px) rotate(90deg);
    transform: translateX(-150px) translateY(0px) rotate(90deg);
  }
  80% {
    width: 50px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(90deg);
    transform: translateX(-25px) translateY(0px) rotate(90deg);
  }
  100% {
    width: 50px;
    -webkit-transform: translateX(-50px) translateY(0px) rotate(90deg);
    transform: translateX(-50px) translateY(0px) rotate(90deg);
  }
}

@-webkit-keyframes secundaryAnimation {
  0% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(180deg);
    transform: translateX(0px) translateY(0px) rotate(180deg);
  }
  40% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(180deg);
    transform: translateX(0px) translateY(0px) rotate(180deg);
  }
  60% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(180deg);
    transform: translateX(0px) translateY(0px) rotate(180deg);
  }
}

@keyframes secundaryAnimation {
  0% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(180deg);
    transform: translateX(0px) translateY(0px) rotate(180deg);
  }
  40% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(180deg);
    transform: translateX(0px) translateY(0px) rotate(180deg);
  }
  60% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  80% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(0deg);
    transform: translateX(0px) translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0px) translateY(0px) rotate(180deg);
    transform: translateX(0px) translateY(0px) rotate(180deg);
  }
}

@-webkit-keyframes shadowAnimation {
  0% {
    width: 150px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(0deg);
    transform: translateX(-25px) translateY(0px) rotate(0deg);
  }
  20% {
    width: 75px;
    -webkit-transform: translateX(37.5px) translateY(0px) rotate(0deg);
    transform: translateX(37.5px) translateY(0px) rotate(0deg);
  }
  40% {
    width: 200px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(0deg);
    transform: translateX(-25px) translateY(0px) rotate(0deg);
  }
  60% {
    width: 75px;
    -webkit-transform: translateX(37.5px) translateY(0px) rotate(0deg);
    transform: translateX(37.5px) translateY(0px) rotate(0deg);
  }
  80% {
    width: 75px;
    -webkit-transform: translateX(37.5px) translateY(0px) rotate(0deg);
    transform: translateX(37.5px) translateY(0px) rotate(0deg);
  }
  100% {
    width: 150px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(0deg);
    transform: translateX(-25px) translateY(0px) rotate(0deg);
  }
}

@keyframes shadowAnimation {
  0% {
    width: 150px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(0deg);
    transform: translateX(-25px) translateY(0px) rotate(0deg);
  }
  20% {
    width: 75px;
    -webkit-transform: translateX(37.5px) translateY(0px) rotate(0deg);
    transform: translateX(37.5px) translateY(0px) rotate(0deg);
  }
  40% {
    width: 200px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(0deg);
    transform: translateX(-25px) translateY(0px) rotate(0deg);
  }
  60% {
    width: 75px;
    -webkit-transform: translateX(37.5px) translateY(0px) rotate(0deg);
    transform: translateX(37.5px) translateY(0px) rotate(0deg);
  }
  80% {
    width: 75px;
    -webkit-transform: translateX(37.5px) translateY(0px) rotate(0deg);
    transform: translateX(37.5px) translateY(0px) rotate(0deg);
  }
  100% {
    width: 150px;
    -webkit-transform: translateX(-25px) translateY(0px) rotate(0deg);
    transform: translateX(-25px) translateY(0px) rotate(0deg);
  }
}

@-webkit-keyframes float {
  0% {
    top: 50%;
  }
  50% {
    top: 51%;
  }
  100% {
    top: 50%;
  }
}

@keyframes float {
  0% {
    top: 50%;
  }
  50% {
    top: 51%;
  }
  100% {
    top: 50%;
  }
}


/*END PRELOADER DESIGN*/


/*START SCROLL TO TOP*/

#topcontrol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #2563EB;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  height: 65px;
  width: 65px;
  border-radius: 11px;
  z-index: 999;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.2);
  text-shadow: none;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
  /*-webkit-transform: rotate(-11deg);*/
  /*transform: rotate(-11deg);*/
}

#topcontrol:hover {
  background: #333;
  /*-webkit-transform: rotate(0);*/
  /*transform: rotate(0);*/
}

#topcontrol span {
  font-size: 14px;
}

.zixun-box {
  position: fixed;
  right: 15px;
  bottom: 95px;
  width: 65px;
  height: 65px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #fff;
  background: #2563EB;
  border-radius: 11px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.zixun-box:hover {
  color: #fff;
  background: #333;
}
.zixun-box i {
  font-size: 26px;
}
.zixun-box div {
  color: #fff;
  font-size: 14px;
}

/*END SCROLL TO TOP*/


/* HELPER CLASSES */

.section-padding {
  padding: 40px 0;
  position: relative;
  float: left;
  width: 100%;
}

.section-back-image {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.section-back-image-2 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.overlay,
.overlay-2 {
  position: relative;
}

.overlay:before {
  background: rgba(0, 0, 0, 0.8);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.8;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  position: absolute;
  top: 0;
  width: 100%;
}

.overlay-2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
  background-color: #fff;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.bg-gray {
  background-color: #F7F9FB;
}

.bg-theme {
  background-color: #2563EB;
}

.theme-color {
  color: #2563EB;
}

.section-news .home-news-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 2px;
  border-bottom: 1px #eee dotted;
}

.section-news .home-news-item:hover {
  border-bottom: 1px #2563EB solid;
}

.section-news .home-news-item:hover i {
  color: #2563EB;
}

.section-news .home-news-item a {
  flex-grow: 1;
  display: block;
  margin-left: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.section-news .home-news-item i {
  flex-shrink: 0;
  font-size: 18px;
}

.subnav-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.subnav-col {
  flex-shrink: 0;
  width: 200px;
  margin-right: 15px;
}
.subnav-wrap {
  padding: 10px 0 20px;
}
.subnav-item {
  padding: 16px 25px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border-right: 2px transparent solid;
  border-bottom: 1px #e0dfdf solid;
}
.subnav-item.active,
.subnav-item:hover {
  color: #2563EB;
  border-right-color: #2563EB;
  background-color: rgba(37,99,235, .2);
}
.subnav-item a {
  display: block;
  color: #333;
}
.subnav-item.active a,
.subnav-item:hover a {
  color: #2563EB;
}

.news-item {
  display: flex;
  padding: 25px;
  width: 100%;
  color: #333;
  border: 1px solid transparent;
  border-bottom-color: #eee;
}
.news-item:hover {
  border-color: #2563EB;
}
.news-item:hover .news-month {
  color: #333;
}
.news-item:hover p {
  color: #888;
}
.news-item h4 {
  font-size: 18px;
}
.news-item:hover h4 {
  color: #2563EB;
}
.news-item .news-date {
  margin-right: 25px;
  padding: 10px 25px 10px 10px;
  text-align: center;
  border-right: 1px solid #eee;
}
.news-item .news-day {
  padding-bottom: 8px;
  font-size: 24px;
  color: #2563EB;
  border-bottom: 1px #dedede solid;
}
.news-item .news-month {
  margin-top: 10px;
  font-size: 18px;
  white-space: nowrap;
}
.news-item .news-pic {
  flex-shrink: 0;
  width: 150px;
  aspect-ratio: 1.618;
}
.news-item .news-pic img {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
}
.news-item p {
  color: #888;
}
.news-content {
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
  color: #555;
}
.news-content img {
  max-width: 100%;
  height: auto !important;
}
.news-content video {
  width: 100%;
  height: auto !important;
}

.faq-item-wrap {
  margin-bottom: 25px;
  width: 100%;
  color: #333;
  text-align: justify;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.faq-item-wrap:hover {
  border-color: #2563EB;
}
.faq-item {
  display: flex;
  align-items: center;
  padding: 20px;
}
.faq-item h4 {
  margin: 0;
  font-size: 18px;
}
.faq-item.active h4,
.faq-item:hover h4 {
  color: #2563EB;
}
.faq-item .faq-toggle {
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
}
.faq-item .faq-toggle:hover {
  color: #2563EB;
}
.faq-detail {
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 0 0 15px 15px;
}
.faq-detail img {
  max-width: 100%;
  height: auto !important;
}

/*START SECTION TITLE DESIGN*/

.section-title {
  margin-bottom: 20px;
}

.section-title.mores {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title h2 {
  /*position: relative;*/
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 0px;
  font-size: 20px;
}

.section-title h2:after {
  /*position: absolute;*/
  content: "";
  left: 0;
  right: 0;
  background-color: #2563EB;
  height: 2px;
  width: 100%;
  margin: 8px auto 0;
  display: block;
}

.section-title.section-title-left h2:after {
  left: 0;
  right: auto;
}

.section-title.section-title-right h2:after {
  left: auto;
  right: 0;
}

.section-title.white-title h2 {
  color: #fff;
}

.section-title.white-title h2:after {
  background-color: #fff;
}

.home-faq-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 8px;
  color: #2563EB;
  border: 1px solid #eee;
  border-radius: 9px;
}
.home-faq-item:hover {
  border-color: #2563EB;
}
.home-faq-item i {
  flex-shrink: 0;
  margin-right: 8px;
}
.home-faq-item a.black {
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/*END SECTION TITLE DESIGN*/


/*
* ----------------------------------------------------------------------------------------
* 01.END GENERAL STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 02. START HEADER STYLE
* ----------------------------------------------------------------------------------------
*/


/* top area */

.top-area {
  background: #2563EB;
  height: 2px;
}

.top-menu ul li {
  display: inline-block;
}

.top-menu ul li a {
  color: #fff;
  float: left;
  margin: 15px 14px 0 0;
}

.top-menu ul li a i {
  padding-right: 6px;
}

.top-area p {
  color: #fff;
  font-weight: 500;
  line-height: 58px;
}

/* logo area */

.logo-area {
  padding: 28px 0;
}

.logo-area .header-info-box {
  position: relative;
  float: left;
  margin-left: 84px;
  margin-top: 15px;
  padding: 0 0 0 65px;
}

.logo-area .header-info-box .header-info-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 36px;
  text-align: center;
  color: #2563EB;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 50px;
}

.logo-area .header-info-box h5 {
  margin: 0;
}

.logo-area .header-info-box p {}

.logo-area .header-info-box:last-child {}

.logo-area .logo {
  max-width: 300px;
}

.logo-area .navbar-form {
  margin-top: 10px;
}

.logo-area .navbar-form .form-control {
  height: 45px;
  width: 265px;
  background: transparent;
  border-radius: 30px;
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.5);
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.logo-area .navbar-form .form-control:focus {
  border-color: #2563EB;
}

.logo-area .navbar-form .form-group input::placeholder {
  color: #aaa;
}

.logo-area .navbar-form .form-group {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  position: relative;
}

.logo-area form .btn {
  color: #2563EB;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 4px;
}

/*menu area style*/

.mainmenu-area {
  background: #2563EB;
}

.mainmenu-area .navbar-expand-lg {
  width: 100%;
}

.mainmenu-area .navbar-nav {
  justify-content: space-around;
}

.mainmenu-area .navbar-form {
  margin-top: 10px;
}

.mainmenu-area .navbar-form .form-control {
  height: 45px;
  width: 265px;
  background: transparent;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.mainmenu-area .navbar-form .form-group input::placeholder {
  color: #fff;
}

.mainmenu-area .navbar-form .form-group {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
  position: relative;
}

.mainmenu-area form .btn {
  color: #fff;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 6px;
}


/* main menu style */

.mainmenu-area .navbar-nav .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 20px;
  position: relative;
  font-size: 16px;
}

.mainmenu-area .navbar {
  padding: 0;
}

.mainmenu-area .navbar-nav .active.nav-link {
  position: relative;
}

.mainmenu-area .navbar-nav li.dropdown {
  flex: 1;
}

.mainmenu-area .navbar-nav li.active,
.mainmenu-area .navbar .dropdown .dropdown-menu li > a.active {
  background-color: #07162D !important;
}

.mainmenu-area ul.navbar-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 1px transparent;
  position: relative;
  white-space: nowrap;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.mainmenu-area ul.navbar-nav li a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 1px;
  background: #333;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.mainmenu-area ul.navbar-nav li a:hover:before,
.mainmenu-area ul.navbar-nav li a:focus:before,
.mainmenu-area ul.navbar-nav li a:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.mainmenu-area .navbar-nav .dropdown.is-child .nav-link:after {
  content: "\eac8";
  font-family: IcoFont;
  font-weight: 900;
  /*position: absolute;*/
  /*top: auto;*/
  /*right: 4px;*/
  font-size: 14px;
  padding-left: 10px;
  -webkit-transition: all 500ms ease-out;
  -moz-transition: all 500ms ease-out;
  -o-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
}

/*.mainmenu-area .navbar-nav .dropdown .nav-link:hover:after {*/
.mainmenu-area .navbar-nav .dropdown:hover .nav-link:after {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}

/* dropdown menu */
.main-header .mainmenu-area .navbar .dropdown .dropdown-menu {
  display: block;
  min-width: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 0;
  top: 48px;
  border-radius: 0;
  background-color: transparent;
  background-clip: border-box;
  border: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a {
  display: block;
  color: #fff;
  padding: 16px 0 16px 26px;
  line-height: 1;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #2563EB;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a:hover:before,
.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a:focus:before,
.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a:after {
  font-weight: 900;
  font-size: 14px;
  padding: 2px 0 0 0;
  position: absolute;
  content: "\eaca";
  font-family: IcoFont;
  top: auto;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li>a:hover:after {
  opacity: 1;
  visibility: visible;
  padding-left: 7px;
}

.main-header .mainmenu-area .navbar .dropdown .dropdown-menu li:not(:last-child)>a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .mainmenu-area .navbar .dropdown:hover>.dropdown-menu {
  opacity: 1;
  top: 48px;
  visibility: visible;
}

.main-header .mainmenu-area .navbar .dropdown-menu .dropdown>.dropdown-menu {
  left: 300%;
  margin-top: -1px;
  min-width: 170px;
  opacity: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  display: block;
}

.main-header .mainmenu-area .navbar .dropdown-menu .dropdown:hover>.dropdown-menu {
  visibility: visible;
  opacity: 1;
  left: 100.5%;
}

.icon-menus {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 1999;
  display: none;
  padding: 8px 10px;
  font-size: 40px;
  color: #fff;
  background-color: rgba(37, 99, 235, 0.9);
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.icon-menus:hover {
  background-color: #333;
}
.icon-menus i.icofont-close-line {
  display: none;
}
.icon-menus.show {
  color: #ff0000;
}
.icon-menus.show i.icofont-navigation-menu {
  display: none;
}
.icon-menus.show  i.icofont-close-line {
  display: block;
}
.icon-menus .line {
   fill: none;
   stroke: #fff;
   stroke-width: 4;
   stroke-linecap: round;
   transition: all 0.3s ease;
   transform-origin: center;
 }
.icon-menus.show:hover .line {
  stroke: #ff0000;
}
.icon-menus.show .menu-icon .line1 {
  transform: translate(-18%, 18%) rotate(45deg);
}
.icon-menus.show .menu-icon .line2 {
  opacity: 0;
}
.icon-menus.show .menu-icon .line3 {
  transform: translate(-18%, -18%) rotate(-45deg);
}

@media (max-width: 991px) {
  .icon-menus {
    display: block;
  }
  #sticky-wrapper {
    display: none;
  }
}
.m-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1998;
  display: none;
  padding-top: 20px;
  width: 260px;
  max-width: 100%;
  overflow-y: auto;
  background-color: #fff;
  border-top: 2px #2563EB solid;
}
.m-menu-container #site-navbar {
  display: block !important;
  padding: 0;
}
.m-menu-container .nav-link {
  padding: 6px 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.m-menu-container .nav-link:hover,
.m-menu-container .navbar-nav .dropdown-menu li:hover {
  color: #fff;
  background-color: #2563EB;
}
.m-menu-container .navbar-nav .dropdown-menu li a:hover {
  color: #fff;
}
.m-menu-container .dropdown.is-child .nav-link:after {
  content: "\eac8";
  font-family: IcoFont;
  font-weight: 900;
  font-size: 14px;
  padding-left: 10px;
}
.m-menu-container .navbar-nav .dropdown-menu {
  margin: 0 0 10px 0;
  padding: 0;
  background-color: #f6f6f6;
  border: none;
}
.m-menu-container .navbar-nav .dropdown-menu li {
}
.m-menu-container .navbar-nav .dropdown-menu li a {
  display: block;
  padding: 5px 20px 5px 40px;
  transition: all 0.3s ease-in-out;
}

/*menu animation style*/

.mainmenu-area {
  width: 100%;
  position: relative;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

.mainmenu-area.menu-animation {
  -ms-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -op-animation-name: fadeInDown;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -ms-animation-duration: 800ms;
  -moz-animation-duration: 800ms;
  -op-animation-duration: 800ms;
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}


/* mobile menu css */

.mean-container .mean-bar {
  background: #2563EB;
}

.mainmenu-area.mean-container .mean-nav ul.navbar-nav li a {
  border-bottom: none;
}

.mainmenu-area.mean-container .mean-nav ul.navbar-nav li a:after {
  content: none;
}

.mainmenu-area.mean-container ul.navbar-nav li a:before {
  background: transparent;
}

.section-about {

}
.section-about .img-wrap img {
  max-width: 100%;
  object-fit: contain;
  box-shadow: 10px 10px 6px rgba(37, 99, 235, 0.5);
}
.content-container {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  color: #555;
}

.yuanxiao-block {
  background-color: #fff;
  border-radius: 2px;
  padding: 30px;
  margin-bottom: 15px;
  transition: all ease .5s
}

.yuanxiao-block-icon {
  /*border-radius: 50%;*/
  display: block;
  font-size: 36px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  transition: all 0.5s ease 0s;
}
.yuanxiao-block-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.yuanxiao-block:hover .yuanxiao-block-icon,
.yuanxiao-block:focus .yuanxiao-block-icon {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  transform: rotate(360deg);
  /*background-color: #333;*/
}

.yuanxiao-block h4 {
  margin: 30px 0 20px 0;
}


/*
* ----------------------------------------------------------------------------------------
* 02. END HEADER STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 03. START SLIDER STYLE
* ----------------------------------------------------------------------------------------
*/

.slider-section {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.home-single-slide {
  position: relative;
  height: 380px;
  width: 100%;
  display: table;
  background-size: cover;
  background-position: center center;
}

.home-single-slide-overlay {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.6);
}

.home-single-slide-inner {
  display: table-cell;
  vertical-align: middle;
}

.home-single-slide-dec {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  /*bottom: -120px;*/
}

.home-single-slide-dec h4,
.home-single-slide-dec h3,
.home-single-slide-dec p {
  color: #fff;
}

.home-single-slide-dec h4 {
  font-size: 28px;
  margin: 0;
}

.home-single-slide-dec h3 {
  font-size: 40px;
  margin: 8px 0 15px;
}

.home-single-slide-dec p {
  font-size: 20px;
}


/*slider button style*/

.home-single-slide-button a {
  margin-right: 15px;
}

.slide-btn-one,
.slide-btn-two {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.slide-btn-one:before,
.slide-btn-two:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.slide-btn-one:hover:before,
.slide-btn-one:focus:before,
.slide-btn-one:active:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.slide-btn-two:hover:before,
.slide-btn-two:focus:before,
.slide-btn-two:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.slide-btn-one {
  color: #333;
  background: transparent;
  border: 2px solid #fff;
}

.slide-btn-one:before {
  background: #fff;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.slide-btn-one:hover,
.slide-btn-one:focus,
.slide-btn-one:active {
  color: #fff;
}

.slide-btn-two {
  color: #fff;
  background: #2563EB;
  border: 2px solid #2563EB;
}

.slide-btn-two:before {
  background: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.slide-btn-two:hover,
.slide-btn-two:focus,
.slide-btn-two:active {
  color: #333;
  border-color: #fff;
}


/*owl controls css*/

.home-slides.owl-carousel .owl-nav button {
  color: #333;
  font-size: 30px;
  background: #fff;
  height: 70px;
  width: 70px;
  position: absolute;
  top: 42%;
  margin-top: -20px;
  opacity: 0;
  visibility: hidden;
  vertical-align: middle;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.home-slides.owl-carousel:hover .owl-nav button {
  opacity: 1;
  visibility: visible;
}

.home-slides.owl-carousel .owl-nav button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2563EB;
  border-radius: 3px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.home-slides.owl-carousel .owl-nav button.owl-prev:before {
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.home-slides.owl-carousel .owl-nav button.owl-next:before {
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.home-slides.owl-carousel .owl-nav button:hover:before,
.home-slides.owl-carousel .owl-nav button:focus:before,
.home-slides.owl-carousel .owl-nav button:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.home-slides.owl-carousel .owl-nav button:hover,
.home-slides.owl-carousel .owl-nav button:focus,
.home-slides.owl-carousel .owl-nav button:active {
  color: #fff;
}

.home-slides.owl-carousel .owl-nav button.owl-prev {
  left: -80px;
}

.home-slides.owl-carousel:hover .owl-nav button.owl-prev {
  left: -35px;
}

.home-slides.owl-carousel .owl-nav button.owl-next {
  right: -80px;
}

.home-slides.owl-carousel:hover .owl-nav button.owl-next {
  right: -35px;
}

.home-slides.owl-carousel .owl-nav button.owl-prev i,
.home-slides.owl-carousel .owl-nav button.owl-next i {
  position: absolute;
  top: 22px;
}

.home-slides.owl-carousel .owl-nav button.owl-prev i {
  right: 8px;
}

.home-slides.owl-carousel .owl-nav button.owl-next i {
  left: 8px;
}

.home-slides.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-slides.owl-carousel button {
  outline: none;
}
.home-slides.owl-carousel .owl-dot.active span {
  background: #2563EB;
  height: 18px;
  width: 18px;
}

.home-slides.owl-carousel .owl-dot span {
  background: #fff;
}

.home-slides.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #2563EB;
}


/*slider animations*/

.home-slides.owl-carousel .owl-item.active .home-single-slide-dec h4,
.home-slides.owl-carousel .owl-item.active .home-single-slide-dec p,
.home-slides.owl-carousel .owl-item.active .home-single-slide-button {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.home-slides.owl-carousel .owl-item.active .home-single-slide-dec h3 {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

.home-single-slide-dec h4,
.home-single-slide-dec h3,
.home-single-slide-dec p,
.home-single-slide-button {
  animation-fill-mode: both;
  animation-name: fadeOut;
}

.home-single-slide-dec h4 {
  animation-delay: 0.5s;
  animation-duration: 0.5s;
}

.home-single-slide-dec h3 {
  animation-delay: 0.8s;
  animation-duration: 0.8s;
}

.home-single-slide-dec p {
  animation-delay: 1.0s;
  animation-duration: 1.0s;
}

.home-single-slide-button {
  animation-delay: 1.4s;
  animation-duration: 1.4s;
}

/*
* ----------------------------------------------------------------------------------------
* 03. END SLIDER STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 05. START FEATURES STYLE
* ----------------------------------------------------------------------------------------
*/
.section-zhuanye .portfolio-filter-menu ul li {
  margin: 0 5px;
  padding: 4px 10px;
  border-radius: 2px;
}
.section-zhuanye .portfolio-filter-menu ul li::before,
.section-zhuanye .portfolio-filter-menu ul li::after {
  display: none;
}
.portfolio-filter-menu ul li {
  display: inline-block;
  cursor: pointer;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 25px;
  padding: 8px 10px;
  position: relative;
  background-color: #f5f5f5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.portfolio-filter-menu ul li:hover,
.portfolio-filter-menu ul li.active {
  color: #fff;
  background-color: #2563EB;
}

.portfolio-filter-menu ul li:before {
  position: absolute;
  content: "";
  background-color: #2563EB;
  height: 2px;
  width: 15px;
  opacity: 0;
  top: 21px;
  left: 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.portfolio-filter-menu ul li.active:before,
.portfolio-filter-menu ul li:hover:before {
  left: -25px;
  opacity: 1;
}

.portfolio-filter-menu ul li:after {
  position: absolute;
  content: "";
  background-color: #2563EB;
  height: 2px;
  width: 15px;
  top: 21px;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.portfolio-filter-menu ul li.active:after,
.portfolio-filter-menu ul li:hover:after {
  right: -25px;
  opacity: 1;
}

.xuelijiaoyu .single-service-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.xuelijiaoyu .service-item-text-holder {
  padding: 80px 20px 10px;
  color: #fff;
  background: linear-gradient(to bottom, transparent, rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 1));
}

.xuelijiaoyu .service-item-text-holder h4 {
  color: #fff;
}

.single-service-item {
  padding: 30px 20px;
  transition: all 500ms ease;
}

.single-service-item.zhuanye {
  padding: 0;
}

.single-service-item:hover {
  -webkit-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.single-service-item .icon-holder .service-item-icon-bg {
  background: #fff;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid #f4f4f4;
  transition: all 500ms ease;
  transition-delay: 0.10s;
}

.single-service-item .icon-holder .service-item-icon-bg i:before {
  color: #2563EB;
  display: block;
  font-size: 50px;
  text-align: center;
  line-height: 30px;
  background: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  padding: 30px 0;
  border: 1px solid #f4f4f4;
  transition: all 500ms ease;
  transition-delay: 0.15s;
}

.single-service-item:hover .icon-holder .service-item-icon-bg,
.single-service-item:hover .icon-holder .service-item-icon-bg i:before {
  border-color: #2563EB;
}

.single-service-item .img-holder {
  width: 100%;
  aspect-ratio: 4 / 2.5;
}

.single-service-item .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service-item p {
  margin: 20px 0;
}

.single-service-item .service-item-text-holder a {
  color: #fff;
  background-color: #2563EB;
  padding: 8px 27px;
  border-radius: 30px;
  border: 2px solid #2563EB;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.single-service-item .service-item-text-holder a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.single-service-item:hover .service-item-text-holder a:before,
.single-service-item:focus .service-item-text-holder a:before,
.single-service-item:active .service-item-text-holder a:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.single-service-item:hover .service-item-text-holder a,
.single-service-item:focus .service-item-text-holder a,
.single-service-item:active .service-item-text-holder a {
  color: #333;
  border: 2px solid #2563EB;
}


.single-team-member {
  position: relative;
  display: block;
  /*padding-bottom: 93px;*/
  aspect-ratio: 0.78;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.single-team-member img {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: all 1s linear;
}

.single-team-member .single-team-member-content {
  background: linear-gradient(to bottom, transparent, #2563EB, #2563EB);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 50px 15px 15px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
  box-shadow: 0 0 1px transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.single-team-member:hover img {
  transform: scale(1.2);
}

.single-team-member .single-team-member-content .single-team-member-social {
  opacity: 0;
  visibility: hidden;
  height: 0;
  text-align: center;
}

.single-team-member .single-team-member-content .single-team-member-social li {
  display: inline-block;
}

.single-team-member .single-team-member-content .single-team-member-social li a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 1;
}

.single-team-member .single-team-member-content .single-team-member-text {
  text-align: center;
  color: #fff;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.single-team-member .single-team-member-content .single-team-member-text h4 {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.30px;
}

.single-team-member .single-team-member-content .single-team-member-text p {
  margin-top: 10px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.30px;
}

.single-team-member:hover .single-team-member-content:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.single-team-member:hover .single-team-member-content .single-team-member-social {
  opacity: 1;
  visibility: visible;
  height: auto;
  margin-bottom: 15px;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.product-grid {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.product-grid .product-image {
  overflow: hidden;
  perspective: 1500px;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  transition: all .3s ease 0s;
  background: #f8f8f8;
}

.product-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-grid .product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-grid .pic-1 {
  opacity: 1;
  transition: all .5s ease-out 0s;
}

.product-grid .pic-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotateY(-90deg);
  transition: all .5s ease-out 0s;
}

.product-grid:hover .pic-2 {
  opacity: 1;
  transform: rotateY(0);
}

.product-grid .social {
  position: absolute;
  bottom: 3px;
  left: -20%;
  z-index: 1;
  transition: all .5s ease 0s;
}

.product-grid:hover .social {
  left: 17px
}

.product-grid .social li a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 15px 0;
  background-color: #333;
  border-radius: 50%;
  transition: all .5s ease-in-out;
}

.product-grid .social li a:hover {
  color: #fff;
  background-color: #2563EB;
}

.product-grid .product-new-label {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #333;
}

.product-grid .product-content {
  text-align: center;
  padding: 20px;
}

.product-grid .title {
  font-size: 15px;
  margin: 0;
}

.product-grid .title a {
  color: #333;
}

.product-grid .title a:hover {
  color: #2563EB;
}

.product-grid .rating {
  color: #2563EB;
  margin: 10px 0 0;
  display: inline-block;
}

.product-content ul li {
  float: left;
}

.product-grid .price {
  color: #333;
  font-size: 20px;
  font-weight: 700;
}

.product-grid .price span {
  color: #999;
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  margin-left: 7px;
  display: inline-block;
}

/*faq style*/

.faq-home-accor .panel.panel-default {
  border: 1px solid #ddd;
  padding: 18px 20px;
  width: 100%;
  border-radius: 15px;
}

.faq-home-accor .panel.panel-default .panel-title a {
  color: #fff;
}

.faq-home-accor .panel.panel-default .panel-title a:hover,
.service-des-faq .faq-home-accor .panel.panel-default .panel-title a:hover,
.faq-list .faq-home-accor .panel.panel-default .panel-title a:hover {
  color: #2563EB;
}

.faq-home-accor h5 i {
  float: right;
}

.faq-home-accor .panel-body:hover {
  border-color: #034ea2;
}

.faq-home-accor .panel-collapse {
  border: medium none;
  box-shadow: none;
  overflow: hidden;
}

/*page banner area*/
.page-banner {
  position: relative;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  width: 100%;
  height: 260px;
  background-color: #2563EB;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.page-banner .auto-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-banner-content {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
  width: auto;
  color: #fff;
  transform: translateY(0);
}

.page-banner-title {
  margin: 0 15px 0 0;
  width: 200px;
  padding: 10px 25px;
  text-align: center;
  color: #fff;
  opacity: .75;
  font-size: 20px;
  font-weight: 800;
  background: rgba(0,0,0,.8);
}

.page-banner-breadcrumb {
  position: relative;
  z-index: 10;
  font-size: 16px;
  color: #ddd;
  letter-spacing: 2px;
  font-weight: normal;
}

.page-banner-breadcrumb p a {
  color: #fff;
  padding-right: 30px;
  display: inline-block;
  position: relative;
}

.page-banner-breadcrumb p a:hover {
  text-decoration: underline;
}

.page-banner-breadcrumb p a:after {
  position: absolute;
  content: "\ea98";
  font-family: IcoFont!important;
  top: 0;
  right: 0;
  margin: 0 auto;
}

/*
* ----------------------------------------------------------------------------------------
* 13. END ABOUT PAGE STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 14. START SERVICE PAGE STYLE
* ----------------------------------------------------------------------------------------
*/

.service-list-item {
  border: 1px solid #ddd;
  /*margin-bottom: 30px;*/
  height: 100%;
  overflow: hidden;
}
.service-list-item:hover {
  border: 1px #2563EB solid;
}
.service-list-item h4 {
  display: flex;
  align-items: center;
  font-size: 20px;
}
.service-list-item .item-pic {
  margin-right: 10px;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  overflow: hidden;
}
.service-list-item .item-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-list-des {
  padding: 25px;
}

.service-list-des h4 {
  margin-bottom: 15px;
}

.service-list-des h4 i {
  background-color: #333;
  color: #fff;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-list-item:hover .service-list-des h4 i {
  background-color: #2563EB
}

/*pagimnation style*/

.site-pagination .pagination {
  border-radius: 0;
}

.site-pagination .page-link {
  border: none;
  margin: 0 12px;
  color: #333;
  font-weight: 700;
  border-radius: 5px;
}

.site-pagination .page-item:first-child .page-link {
  border-radius: 0;
}

.site-pagination .active .page-link {
  background: #2563EB;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
}

.site-pagination .page-link i {
  font-size: 25px;
  border-radius: 50%;
}

.site-pagination .page-link:hover {
  background: transparent;
}

.site-pagination .active .page-link:hover {
  background: #333;
  color: #fff;
}

.site-pagination .page-link.bo-tl {
  position: relative;
}

.site-pagination .page-link.bo-tl:after {
  position: absolute;
  content: "";
  background: #333;
  height: 2px;
  width: 8px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}


/*
* ----------------------------------------------------------------------------------------
* 14. END SERVICE PAGE STYLE
* ----------------------------------------------------------------------------------------
*/


/*
* ----------------------------------------------------------------------------------------
* 16. START FAQ PAGE STYLE
* ----------------------------------------------------------------------------------------
*/

.search-box {
  border: 1px solid #ddd;
  border-radius: 10px;
}

.search-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 10px;
}

.btn-search {
  color: #fff;
  background-color: #2563EB;
  border-color: #2563EB;
}

.btn-search:hover,
.btn-search:focus,
.btn-search:active {
  background: #333;
  color: #fff;
  box-shadow: none;
}

.search-box-form-control {
  border: none;
}

.search-box-form-control:hover,
.search-box-form-control:active,
.search-box-form-control:focus {
  border: none;
  outline: none;
  box-shadow: none;
}

.search-box-wrap p {
  margin: 50px 0;
  color: #333;
}

.faq-lis-heading {
  margin-top: 50px;
  margin-bottom: 50px;
}

.faq-list,
.faq-contact-form-wrap {
  border: 4px solid #e0e0e1;
  border-radius: 10px;
  padding: 40px;
  position: relative;
}

.faq-list:before,
.faq-contact-form-wrap:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 35px;
  top: -39px;
  left: 50%;
  display: block;
  background-color: #e0e0e1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}


/* faq contact form style */

.contact-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form .form-group label {
  color: #575757;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  z-index: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .3s all;
  transition: .3s all;
}

.contact-form .form-group.form-message label {
  top: 8%;
  -webkit-transform: unset;
  transform: unset;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  position: relative;
  background: transparent;
  z-index: 1;
}

.contact-form .form-group input:focus+label,
.contact-form .form-group textarea:focus+label,
.contact-form .form-group input:not(:placeholder-shown)+label,
.contact-form .form-group textarea:not(:placeholder-shown)+label {
  top: 2%;
  background: #fff;
  z-index: 2;
  font-weight: 700;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-form .form-group input:focus::placeholder,
.contact-form .form-group textarea:focus::placeholder {
  color: #999;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: transparent;
}

.contact-form .form-group input {
  height: 60px;
}

.contact-form .form-group.form-message textarea {
  padding: 15px;
}

.contact-form .form-group.form-message textarea:not(:placeholder-shown)+label,
.contact-form .form-group.form-message textarea:focus+label {
  top: -8%;
  background: #fff;
  z-index: 2;
  font-weight: 700;
  ` padding: 0 15px;
}

.faq-btn {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 13px 45px;
  background: #2563EB;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.faq-btn:hover,
.faq-btn:active,
.faq-btn:focus {
  color: #fff;
  box-shadow: none;
  border-color: #333;
}

.faq-btn:before {
  position: absolute;
  content: '';
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.faq-btn:hover:before,
.faq-btn:focus:before,
.faq-btn:active:before {
  -webkit-transform: scale(1);
  transform: scale(1);
}


/*
* ----------------------------------------------------------------------------------------
* 16. END FAQ PAGE STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 20. START CONTACT PAGE STYLE
* ----------------------------------------------------------------------------------------
*/

.address-box-wrap {
  border: 1px solid #f6f6f6;
  float: left;
  width: 100%;
}

.address-box-sin {
  display: flex;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  width: 100%;
}

.address-box-sin:last-child {
  border: none;
  padding-bottom: 0;
}

.address-box-icon,
.address-box-des {
  float: none;
}

.address-box-icon {
  margin-right: 20px;
}

.address-box-icon i {
  color: #fff;
  font-size: 20px;
  background: #333;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  border-radius: 50px;
  webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.address-box-sin:hover .address-box-icon i {
  background: #2563EB;
}

.address-box-des {
  width: 81%;
}
.address-box-des h4 {
  font-size: 18px;
}
.address-box-des p {
  white-space: pre-wrap;
  word-break: break-all;
}

/*contact form style*/
.contact-form .form-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  color: #333;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.con-btn {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 13px 45px;
  background: #2563EB;
}

.con-btn:hover,
.con-btn:focus,
.con-btn:active {
  background: #333;
  color: #fff;
  box-shadow: none;
}


/*success box style*/

.success-box span {
  font-size: 18px;
  color: #333;
  font-weight: 700;
  display: block;
  margin-top: 20px;
}

.success-box img {
  margin: 0 auto;
  width: 190px;
  display: block;
}

.success-box span i {
  color: #2563EB;
  font-size: 40px;
  margin-top: 15px;
  display: block;
}

/*features style*/

.feature-block {
  background-color: #fff;
  border-radius: 2px;
  padding: 30px;
  margin-bottom: 15px;
  transition: all ease .5s
}

.feature-block-icon {
  border-radius: 50%;
  display: block;
  font-size: 36px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin: 0 auto;
  width: 80px;
  transition: all 0.5s ease 0s;
}

.feature-block:hover .feature-block-icon,
.feature-block:focus .feature-block-icon {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  transform: rotate(360deg);
  background-color: #333;
}

.feature-block-icon {
  background-color: #2563EB;
  color: #fff;
}

.feature-block h4 {
  margin: 20px 0;
}

.fea-btn {
  color: #fff;
  background-color: #2563EB;
  padding: 8px 27px;
  margin-top: 30px;
  border-radius: 30px;
  border: 2px solid #2563EB;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.fea-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.fea-btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.fea-btn:hover,
.fea-btn:focus,
.fea-btn:active {
  color: #333;
  border: 2px solid #2563EB;
}

/*
* ----------------------------------------------------------------------------------------
* 26. START EVENT PAGE STYLE
* ----------------------------------------------------------------------------------------
*/

.quote-classic {
  display: flex;
  align-items: flex-start;
  text-align: left;
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}
.quote-classic.quote-detail {
  max-width: 100%;
}

.quote-classic>*+* {
  margin-left: -50px;
}

.quote-classic-avatar-outer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  margin-top: 20px;
  border: 6px solid #ffffff;
  border-radius: 50%;
}

.quote-classic-avatar-outer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.quote-classic-main {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
}

.quote-classic-main:hover {
  background: #f5f5f5;
  cursor: pointer;
}

.quote-detail .quote-classic-main:hover {
  cursor: default;
}
.quote-detail .quote-classic-avatar-outer {
  width: 160px;
  height: 160px;
}

.quote-classic-main::before {
  position: absolute;
  right: 20px;
  bottom: 10px;
  content: '\efce';
  font-family: 'icofont';
  font-size: 40px;
  line-height: 1;
  color: #f6f6f6;
}

p.quote-classic-cite {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  color: #2563EB;
}

.quote-classic-position {
  line-height: 1.1;
  color: #828590;
}

.quote-classic-main {
  padding: 30px 20px 50px 50px;
}

.quote-classic-text {
  color: #828590;
  text-align: justify;
}

.context-dark p.quote-classic-cite,
.bg-gray-900 p.quote-classic-cite,
.bg-gray-950 p.quote-classic-cite,
.bg-primary p.quote-classic-cite {
  color: #ffb262;
}

.context-dark .quote-classic-text,
.bg-gray-900 .quote-classic-text,
.bg-gray-950 .quote-classic-text,
.bg-primary .quote-classic-text {
  color: #ffffff;
}

*+.quote-classic-position {
  margin-top: 5px;
}

*+.quote-classic-text {
  margin-top: 20px;
}

@media (min-width: 576px) {
  .quote-classic-main {
    padding-left: 69px;
  }
}

@media (min-width: 1200px) {
  *+.quote-classic-position {
    margin-top: 0;
  }

  *+.quote-classic-text {
    margin-top: 34px;
  }
}

.section-star .event-single {
  position: relative;
  display: flex;
  align-items: flex-start;
  float: none;
  padding: 0px;
  border: none;
  box-shadow: none;
}

.section-star .event-image {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 20px;
  width: 100px;
  aspect-ratio: 1;
  border: 2px #fff solid;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}

.section-star .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-star .event-details {
  position: relative;
  z-index: 0;
  flex-grow: 1;
  margin-left: -50px;
  padding-left: 80px;
  width: calc(100% + 50px);
  background-color: #fff;
  border-width: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.section-star .event-btn-wrap {
  width: 100%;
}

.section-star .event-btn {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}

/*
* ----------------------------------------------------------------------------------------
* 26. END EVENT PAGE STYLE
* ----------------------------------------------------------------------------------------
*/