/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family:"Microsoft JhengHei";
  color: #333;
}

a {
  color: #2a80f7;
}

a:hover {
  color: #F5F9FC;
  text-decoration: none;
}

.btn{ padding:.5em 1em; margin-bottom:2em; background:#71a8da }
.btn a{color:#FFF}
.btn a:hover{color:#F5F9FC}

.pc-inline{ display:inline-block}
.mobi{ display:none}
@media (max-width: 700px) {
  .pc-inline{ display:none}
  .mobi{ display: block}
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #2a80f7;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #629fd3;
  transition: background 0.2s ease-in-out;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height:90px;
  transition: all 0.5s;
  transition: all 0.5s;
  padding: 15px 0;
  background: #fff;
  z-index: 997;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  padding: 0;
  margin: 0;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #333;
  font-weight:600;
  padding: 16px 20px;
  transition: 0.3s;
  font-size: 12pt;
  border-left:1px solid #DDD
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #2a80f7;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 12pt;
  font-weight: 500;
  text-transform: none;
  color: #103453;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #2a80f7;
}


.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #1f3548;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #e3f0fc;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #F5F9FC;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #5c768d;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 53, 72, 0.7);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height:auto;
  padding: 0;
  overflow: hidden;
}

#hero .carousel-item {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
}

#hero .carousel-item::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}


@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height:auto;
  }
  #hero .carousel-content.container {
    padding: 0 50px;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 0;
  background: #2a80f7;
}

#hero .btn-get-started:hover {
  background: #1c5c93;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}




/*--------------------------------------------------------------
# video
--------------------------------------------------------------*/
.video_bg{ background-color: #F5F9FC }
.video {  padding:5em 0 }
.video h3{ font-size:26pt; font-weight:600; color:#71a8da; padding-top:1em; padding-left:.3em }

@media (max-width: 768px) {
  .video {  padding:3em 0 }
  .video .row { margin:0 1em }
}
@media (max-width: 480px) {
  .video h3{ font-size:18pt }
  .video .container { box-shadow:none }

}




.video .video-box { padding:.5em 1em 1em 1em; text-align:center; font-size:14pt; line-height:30pt; font-weight:600; color:#555; }
.video .video-box img { border:10px solid #FFF }
.video .section-title p { text-align: left; font-style: italic; color: #666 }
.video .about-content { padding: 40px }
.video .icon-box + .icon-box { margin-top: 40px }

.video .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f1f7fb;
  border-radius: 6px;
  transition: 0.5s;
}

.video .icon-box .icon i { color: #2a80f7; font-size: 32px }
.video .icon-box:hover .icon { background: #2a80f7 }
.video .icon-box:hover .icon i { color: #fff }

.video .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.video .icon-box .title a { color: #343a40; transition: 0.3s }
.video .icon-box .title a:hover { color: #2a80f7 }
.video .icon-box .description { margin-left: 95px; line-height: 24px; font-size: 14px }
.video .video-box { position: relative; padding-bottom:2em }

.video .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#2a80f7 50%, rgba(66, 139, 202, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.video .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.video .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(66, 139, 202, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.video .play-btn:hover::after {
  border-left: 15px solid #2a80f7;
  transform: scale(20);
}

.video .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}




/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/

.products { padding:3em 0 }
.products h3 { font-size:26pt; font-weight:600; color:#71a8da; text-align:left; padding-top:2em; padding-bottom:.5em}
.products p { font-size:14pt; line-height:14pt; color:#333 }
.products .icon-box { padding: 1.5em; text-align:center }
.products .title { font-weight: 600; margin-bottom: 15px; font-size: 18pt; position: relative; padding: 15px 0; color: #71a8da }
.products .title::after { content: ''; position: absolute; display: block; width: 50px; height: 2px; background: #71a8da; bottom: 0; left: calc(50% - 25px) }
.products .description { line-height: 20pt; font-size: 12pt }

@media (max-width: 480px) {
  .products { padding:1em 0 3em 0 }
  .products h3 { font-size:18pt }
  .products p { line-height:22pt }
}




/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.service { padding:3em 0; background-color: #F5F9FC }
.service h3{ font-size:26pt }
.service span{ font-size:13pt; border:1px solid #000; border-radius:5px; padding:.3em .8em }
.service span{ border:1px solid #666 }
.service span a{ color:#000}
.service span a:hover{ color:#666}
.service .service-box { text-align:center; font-size:18pt; color:#000; padding:2em 0 }
.service .service-box img { padding-right:20px }

@media (max-width: 480px) {
  .service h3{ font-size:18pt }
  .service .service-box { text-align:left; font-size:14pt; padding:.5em 0 .5em 5em }
	
}






/*--------------------------------------------------------------
# 淨化推薦
--------------------------------------------------------------*/
.recommend{ padding:3em 0; background-color: #F5F9FC}
.recommend h3{ font-size:26pt; font-weight:600; color:#71a8da }
.recommend_area{ margin:1.5em 0}
.recommend_box{ border:1px solid #71a8da; background:#FFF; padding-bottom:2em} 
.recommend_box img{ padding:1.5em .3em }
.recommend_box h4{ font-size:18pt; color:#71a8da }
.recommend_box p{ font-size:13pt; color:#333; padding-bottom:.5em }
.recommend_box span{ font-size:12pt; background:#71a8da; border-radius:5px; padding:.3em .8em }
.recommend_box span a{ color:#FFF }
.recommend_box span a:hover{ color:#F5F9FC}

@media (max-width: 480px) {
  .recommend h3{ font-size:18pt}
}








/*--------------------------------------------------------------
# 關於我們
--------------------------------------------------------------*/

.about { padding:5em 0; background-color: #F5F9FC }
.about h3 { font-size:26pt; font-weight:600; color:#71a8da; text-align:left; padding-bottom:.5em }
.about p { font-size:14pt; line-height:26pt; color:#333; padding-bottom:1em; text-align:justify}
.about span { color: #71a8da }

.about2 { padding:5em 0;/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+65,f5f9fc+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 65%, #f5f9fc 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 65%,#f5f9fc 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 65%,#f5f9fc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f9fc',GradientType=0 ); /* IE6-9 */

}
.about2 h3 { font-size:26pt; font-weight:600; color:#71a8da; text-align:left; padding-bottom:.5em }
.about2 p { font-size:14pt; line-height:28pt; color:#333; padding-bottom:2em; text-align:justify }

@media (max-width: 768px) {
  .about { padding:3em 0 }
  .about .row { margin: 0 1em}
}





/*--------------------------------------------------------------
# 淨化資訊
--------------------------------------------------------------*/
.guide{ color:#666 ; font-size:10pt; margin-bottom:1em; padding-left:.3em}
.guide a{ color:#666 }
.guide a:hover{ color:#71a8da }


.btn2{ padding:.3em .5em; font-size:11pt; margin-bottom:1.5em; margin-left:1em; background:#71a8da; text-align:center; border-radius:5px }
.btn2 a{color:#FFF}
.btn2 a:hover{color:#F5F9FC}
.date{ font-size:11pt; line-height:22pt; color:#999; padding-left:1em}

.blog { padding:5em 0; background-color: #F5F9FC }
.blog h3 { font-size:26pt; font-weight:600; color:#71a8da; text-align:left; padding-bottom:.5em }
.blog_box{ border:1px solid #71a8da; background:#FFF; padding:1.5em .5em; margin-bottom:2em}
.blog_box:hover{ border:1px solid #71a8da; background:#F7F7F7}
.blog_box h4{ font-size:20pt; font-weight:600; color:#71a8da; border-bottom:1px solid #DDD; padding-bottom:.5em; margin-bottom:.5em}
.blog_box span{ font-size:11pt; color:#999; background:#F7F7F7; padding:.3em}
.blog_box p { font-size:12pt; line-height:20pt; color:#333; padding:.5em 0; text-align:justify}

.blog_show{ border:1px solid #71a8da; background:#FFF; padding:1.5em .5em; margin-bottom:2em}
.blog_show h3 { font-size:18pt; border-bottom:2px solid #EEE; padding-bottom:1em; margin-bottom:1.2em}
.blog_show img{ margin-bottom:2em}
.blog_show span{ font-size:11pt; color:#999; background:#F7F7F7; padding:.3em}
.blog_show p { font-size:12pt; line-height:20pt; color:#333; padding:.5em 0; text-align:justify}

@media (max-width: 768px) {
  .blog { padding:3em 0 }
  .blog .row { margin:0 1em }
  .blog img{ padding-bottom:2em}
}



/*--------------------------------------------------------------
# 產品內頁
--------------------------------------------------------------*/
.product { padding:5em 0; background-color: #F5F9FC }
.product h4 { font-size:24pt; font-weight:600; color:#71a8da; padding-bottom:1em }
.product h5 { font-size:18pt; font-weight:600; color:#71a8da; }
.product h6 { font-size:16pt; font-weight:600; color:#555}
.product p { font-size:14pt; line-height:26pt; color:#333; padding:.5em 0; text-align:justify}
.product span { font-size:11pt}
.product span a{ color:#AAA }
.product span a:hover{ color:#71a8da }
.product_icon { padding:2em; text-align:center }
.product_icon  p { font-size:14pt; line-height:26pt; color:#333 }
.product_bg { background: #FFF }

@media (max-width: 768px) {
  .product { padding:3em 0 }
  .product .row { margin: 0 1em}
}



/*--------------------------------------------------------------
# 淨化據點
--------------------------------------------------------------*/

.office { padding:5em 0; background-color: #F5F9FC; text-align:center; line-height:50px }
.office h3 { font-size:26pt; font-weight:600; color:#71a8da; text-align:left;  }
.office h4 { font-size:16pt; font-weight:600; color:#555; text-align:left; padding:2em 0 1em 0 }
.office_form{ background:#FFF; color:#333; padding:1em;}
.office_form a{ color:#333}
.office_form a:hover{ color:#71a8da}
.form_bg{ background:#F5F9FC }

@media (max-width: 768px) {
  .office { padding:3em 0; line-height:24pt }
  .office .row { margin:0 1em}
  .office_form img{ padding-bottom:1em}
  .office_form{ padding:2em 1em }
  .office h3 { padding-bottom:0 }
  .office h4 { padding-top:2em; padding-bottom:.3em }

}



/*--------------------------------------------------------------
# About Lists
--------------------------------------------------------------*/
.about-lists {
  padding: 40px;
}

.about-lists .row {
  overflow: hidden;
}

.about-lists .content-item {
  padding: 40px;
  border-left: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
  margin: -1px;
}

.about-lists .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #F5F9FC;
}

.about-lists .content-item h4 {
  font-size: 28px;
  font-weight: 400;
  padding: 0;
  margin: 20px 0;
}

.about-lists .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .about-lists .content-item {
    padding: 40px 0;
  }
}






/*--------------------------------------------------------------
# Our Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin:1.5em 0; padding: 0 2em 
}
.portfolio .portfolio-item h5 { font-size:16pt; font-weight:600; color:#71a8da; }
.portfolio .portfolio-item p { font-size:12pt; line-height:20pt; color:#333; }

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #444;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #2a80f7;
  color: #fff;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  margin-bottom:1.5em
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s;
  text-align: center;
  background: rgba(31, 53, 72, 0.6);
  padding-bottom: 30px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-info a {
  color: #2a80f7;
  margin: 0 4px;
  font-size: 18px;
  line-height: 1;
  background-color: #fff;
  padding-top: 7px;
  border-radius: 50px;
  text-align: center;
  width: 36px;
  height: 35px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info a:hover {
  background: #2a80f7;
  color: #fff;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  padding-bottom: 0;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding: 60px 0 30px 0;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -48px;
  left: 20px;
  right: 20px;
  background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
  padding: 15px 0;
  border-radius: 4px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  color: #F5F9FC;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    margin-bottom: 100px;
  }
}





@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}





#footer {
  background: #FFF;
  color: #2a80f7;
}

#footer .footer-top {
  background: #FFF;
  padding:30px 0 0 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size:18pt;
  padding: 20px 0 5px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
	font-size: 12pt;
	/* [disabled]line-height: 20pt; */
	margin-bottom: 0;
}

#footer .footer-top .footer-info a {
}

#footer .footer-top .footer-info a:hover {
}


#footer .footer-top .footer-links {
  margin-bottom: 30px;
}


#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

#footer .footer-top .footer-links ul li {
  
  display: flex;
  align-items: center;
  border-bottom:1px dashed #c0c0c0;
}

#footer .footer-top .footer-links ul li h5 {
  font-size: 20px; line-height:28px; padding-top:8px
}

#footer .footer-top .footer-links ul li h6 {
  font-size: 16px; line-height:24px; padding-top:10px; padding-bottom:3px
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
}

.foot-contact{ color:#2a80f7; padding:0 2em 1em 2em}
.foot-contact h4 {
  font-size: 14pt;
  font-weight: 600;
}
.foot-contact a{ color:#2a80f7}

.foot-social{ color:#2a80f7; padding:1em 2em }
.foot-social h4{ font-size:20px; font-weight:600 }

.foot-bottom{ font-size:11pt; text-align:center; padding:.5em 0; background:#dff1ff; color:#71a8da}
.foot-bottom a{ color:#71a8da}
.foot-bottom a:hover{ color:#2d71a5}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
}

.pagination {
   justify-content: center;
}
