/**
* Template Name: eStartup - v4.0.1
* Template URL: https://bootstrapmade.com/estartup-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: Arial, "微軟正黑體", "新細明體";
    color: #000000;
	background-position: top;
	background-color: #153A6F; /*背景色*/
    }
@media (max-width: 575px) {
	body {
		background-size: 200%;
	}
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  color: #ed1e28 ;
  font-weight: 600;
}

h4 {
  color: #000;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 2;
}

h5 {
  color: #626262;
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #FC7272;
}

a:hover {
  color: #955542;
}

a:active {
	color: #ff4b5a;
}

p {
  color: #000000;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}

ul {
  letter-spacing: 1px;
}

li {
  font-size: 1.2em;
  line-height: 2;
}
input {
    background-color: white;
    box-shadow: 0 8px 20px 0 rgb(0 0 0 / 30%);
    border-radius: 5rem;
    height: 60px;
    border: none;
    margin-bottom: 30px;
    padding-left: 30px;
    color: #000;
}

i{padding: 0.5em;}

.text-left {
    text-align: left!important;
}
@media (max-width: 575px) {
	li {
  font-size: 1em;
  font-weight: bold;
}
	h4 {
  font-size: 1.2em;
  line-height: 1.5em;
}
  p {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  }
}

span {
  letter-spacing: 1px;
}

.container-full {
  padding-left: 0;
  padding-right: 0;
}

.btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  text-decoration: none;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ed1e28;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
	border-radius: 50%;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #57b846;
  color: #ffffff;	
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s ease;
  padding: 20px 0;
  background-color: rgba(255,255,255,0);
}
@media (max-width: 575px) {
	#header #logo img{
		width:80px;
		height:auto;
	}
}
#header #logo h1 {
  color: #505050;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #555;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #71c55d;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-scrolled {
  background: #153A6F;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

/*--------------------------------------------------------------
# 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 {
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  font-family: sans-serif;
  font-size: 1.2em;
	font-weight: bold;
  color: #FFFFFF;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0;
}

.navbar a:hover {
	color:#F3BE4A ;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a: .navbar .active, .navbar li:hover > a {
  color: #d94449;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #71c55d;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #153A6F;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 1.2em;
  color: #222;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #ed1e28 ;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #71c55d;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: calc(100vh );
	-background: url(../img/hero-bg.png) center bottom no-repeat;
  background-size: 100%;---*/
  position: relative;
  margin-top: 0px;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 2em 0 10px 0;
 font-size: 5em;
    font-weight: bold;
    color: #276cb8;
}


@media (max-width: 768px) {
  #hero h1 {
	  margin: 0.2em 0 10px 0;
    font-size: 3em;
    line-height: 1.5em;
  }
}

#hero h2 {
  font-size: 5em;
    font-weight: bold;
    color: #ed1e28 ;
}


@media (max-width: 768px) {
  #hero h2 {
	 font-size: 3em;
    line-height: 36px;
    margin-bottom: 30px;
  }
	#hero img {
  max-width: 100%;
  margin-bottom: 5%;
  }	
}

#hero img {
  margin-top: 0px;
}

@media (min-width: 768px) and (max-width: 1440px) {
	#hero img {
    max-width: 90%;
    }
}

#hero .btn-get-started {
  font-weight: bold;
  font-size: 1.3em;
  padding: 0.8rem 5rem;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  background: #F3BE4A ;
  border: 2px solid #153A6F;
  color: #153A6F;
  text-decoration: none;
}
#hero .btn-get-started:hover {
}
@media screen and (min-width:768px) and (max-width:1024px){   
   #hero .btn-get-started {
    top: 18em;
   }
}
.btn-get-started {
  font-weight: bold;
  font-size: 1.2em;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #ffffff;
  background: #f25f64;
  color: #ffffff;
  text-decoration: none;
}
.btn-get-started:hover {
	border: 2px solid #f25f64;
  background: #fff;
  color: #f25f64;
	cursor: pointer;
}
.btn-get-started-b{
  font-weight: bold;
  font-size: 1.2em;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #ffffff;
  background: #4598a0;
  color: #ffffff;
  text-decoration: none;
}

.btn-get-started-b:hover {
	border: 2px solid #4598a0;
  background: #fff;
  color: #4598a0;
	cursor: pointer;
}

#hero .btns a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
   #hero{
	 width: 100%;
   
    /* height: calc(100vh - 0px);---background: url(../img/hero-bg-m.png) center center no-repeat;
    background-size: 100%;---*/
    position: relative;
    margin-top: 40px;
}
  #hero .btns a {
    margin: 4px 8px;
  }
  #hero .btn-get-started {
    letter-spacing: 1px;
    padding: 11px 36px;
    border-radius: 50px;
    transition: 0.5s;
    margin-bottom: 10px;
	  width: 100%;
    display: block;
    text-align: center;
    }
   #hero .btn-get-started-b{
  margin-bottom: 1em;
  background: #4598a0;
	   width: 100%;
    display: block;
    text-align: center;
  }
	#hero .btn-get-started-b:hover{
  background: #ffffff;
		color: #4598a0;
  }
}

#hero .btns a:hover {
  color: #71c55d;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.padd-section {
  padding-bottom: 110px;
  padding-top: 110px;
}


@media (max-width: 992px) {
  .padd-section {
    padding-top: 2em;
    padding-bottom: 2em;
	  padding-left: 1.2em;
	  padding-right: 1.2em;
  }
	.step_pic{display: none;}
}

.section-title {
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
  .section-title .img{max-width:80%; margin-bottom: 1.5em;}
	
}

.section-title h2 {
   font-size: 2.5em;
    margin-bottom: 50px;
}
@media (max-width: 575px) {	
	.section-title h2 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
		text-align: center;
}
	.section-title h2 img{
  width:40px; 
  height:auto;
  }
}
.section-title .separator {
  margin: 0;
}

.separator {
  color: #000;
  font-size: 20px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media (max-width: 575px) {	
	.separator {
  font-size: 1em;
  margin-bottom: 1.5em;
  font-weight:bold;
		text-align: left;
}
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #cce7f1;
  min-height: 40px;
  margin-top: 8em;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li {
  letter-spacing: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* Get Started Section
--------------------------------*/
#get-started {
  display: inline-block;
  height: 100%;
  width: 100%;
  background: #FFFFFF;
}

#get-started .feature-block { 
  padding: 20px 20px;
  background-position: center bottom;
  color: #ffffff;
  height:300px;
}

#get-started .feature-block img {
  height: auto;
  margin-bottom: 5px;
  width: 95px;
}

@media (max-width: 991px) {
  #get-started .feature-block {
    margin-bottom: 30px;
  }
}

#get-started .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4 {
  margin-bottom: 20px;
	color:#ffffff;
}

#get-started .feature-block p {
  margin-bottom: 20px;
	color:#ffffff;
}

#get-started .feature-block a {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.3s;
}

#get-started .feature-block a:hover {
  color: #71c55d;
}

#get-started .pinkarea{
	padding: 1em;
	background: #fee9e6;
	color:#0a3f45;
	border-radius: 1em;
}
/* About Us Section
--------------------------------*/
#about-us {
    background-size: 100%;
}

#about-us img {
  max-width: 100%;
}
.form {
    width: 50%;
    position: relative;
    margin: auto;
}
.mobile_small_img{
		max-width: 100%;
		height:auto;}

@media (max-width: 575px) {	
	.mobile_small_img{
		height:auto;
		margin-bottom: 2em;
	
	}
	#about-us img {
  max-width: 60%;
}
	
}

#about-us .about-content {
  padding-top: 0px;
}

#about-us .about-content h2 {
  color: #ed1e28 ;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

/**數字加圓形背景**/
#about-us .about-content ol {
  margin: 1.5em ;
  padding: 0; 
  font-size: 1em;
  color: #000;
  line-height: 1.8em;
  font-weight:bold;
}

#about-us .about-content ol li {
  counter-increment: my-counter;
  padding-left: 20px;
  position: relative;	
}

#about-us .about-content ol li ul{	
	font-size:0.7em;
    color: #636363;
    line-height: 1.5em;
	font-weight:100;
}

b{
  border-radius:80%;
  background:#f7e008;
    padding:2px 10px;
}
@media (max-width: 575px) {	
	#about-us .about-content h2 {
  font-size: 2em;
    font-weight: bold;
    text-align: center;
}
   	#about-us .about-content h3{
	font-size: 1.7em;
	line-height: 1.7em;
   }
  #about-us .about-content h2 img{
    width:40px;
	  margin-left: -1em;
}
	#about-us .about-content ol li {
  line-height: 1.7;	
}
	#about-us .img-none {
    display:none;
 }
	#about-us .about-content .center{display:block; margin:auto;}
}

#about-us .about-content h3{
	color:#7d0000;
	line-height: 2;
}
#about-us .about-content h3::after{
	    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 50px;
    background: url("../img/text_back.png") left no-repeat;
    z-index: -1;	
}

#about-us .about-content span {
  font-weight: 700;
  padding-right: 10px;
  text-transform: uppercase;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}

/* Features Section
--------------------------------*/
#features {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#features .feature-block {
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
  background-position: center bottom;
  background-repeat: repeat-x;
}

#features .feature-block img {
  border-radius: 40px; 
  max-width: 100%;
  margin-bottom: 1.5em;
  
}
#features .feature-block p {
   color: black;
	font-weight: bold;
}

#features .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0);
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block h4 {
	color:#000;
}

#features .feature-block h4 span{color:#f7e008;}

#features .feature-block p {
  margin-bottom: 0;
	color: #535353;
}

.btn-morephoto {
    font-weight: 400;
    font-size: 1em;
    letter-spacing: 1px;
    display: inline-block;
    padding: 11px 36px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
    margin: 1em ;
    border: 2px solid rgb(255, 255, 255);
    background: #000000;
    color: #ffffff;
    text-decoration: none;
	display: table;
    margin: 0 auto;
}

@media (max-width: 575px) {	
	.btn-morephoto {
    font-weight: 400;
    font-size: 1em;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    transition: all 0.5s ease 0s;
    margin: 1em;
    border: 2px solid rgb(255, 255, 255);
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    display: table;
    margin: 0 auto;}
	
	#features .text-center img{max-width:60%;}
	
	#features .feature-block img {
        max-width: 80%;		margin: auto;  display: block;  
     }
	
.btn-morephoto a {
    color:#ffffff;
    }
}

/* Screenshots Section
--------------------------------*/
#screenshots .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#screenshots .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #71c55d;
}

#screenshots .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #71c55d;
}

/* Video Section
--------------------------------*/
#video {
  background: url(../img/video-bg.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  overflow: hidden;
}

#video .overlay {
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
}

#video .overlay .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#71c55d 50%, rgba(113, 197, 93, 0.15) 52%);
  border-radius: 50%;
  display: block;
  margin: 153px auto 0;
  position: relative;
  overflow: hidden;
}

#video .overlay .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 .overlay .play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 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: 2px solid rgba(255, 255, 255, 0.5);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#video .overlay .play-btn:hover::after {
  border-left: 15px solid #71c55d;
  transform: scale(20);
}

#video .overlay .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 pulsate1 {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate1 {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes pulsate2 {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Team Section
--------------------------------*/
#team .team-block {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  height: 254px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  #team .team-block {
    margin-bottom: 30px;
  }
}

#team .team-block img {
  width: 100%;
}

#team .team-block .team-content {
  background: #fff none repeat scroll 0 0;
  bottom: 0;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.19);
  bottom: -147px;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  transition: all 0.5s ease-in-out 0s;
}

#team .team-block .team-content ul {
  display: block;
  width: 100%;
}

#team .team-block .team-content ul li {
  display: inline-block;
}

#team .team-block .team-content ul li a {
  color: #626262;
}

#team .team-block .team-content ul li a .fa {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.3s;
}

#team .team-block .team-content ul li a .fa:hover {
  color: #71c55d;
}

#team .team-block .team-content ul > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#team .team-block:hover .team-content {
  bottom: 0px;
  transition: all 0.5s ease-in-out 0s;
}

/* Testimonials Section
--------------------------------*/
#testimonials .testimonials-content {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 49px 20px;
}

#testimonials .testimonials-content::before {
  color: #71c55d;
  content: "";
  display: inline-block;
  font: 70px/1 FontAwesome;
  position: absolute;
  right: 43px;
  text-align: left;
  top: -29px;
}

#testimonials .top-top > h2 {
  font-family: "Roboto" sans-serif;
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#testimonials .top-top > h4 {
  font: 700 12px Lato, sans-serif;
}

#testimonials .top-top span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 26px;
}

#testimonials .btm-btm ul li {
  float: left;
  margin: 0 8px;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  background: #ddd none repeat scroll 0 0;
  cursor: pointer;
  height: 12px !important;
  width: 12px !important;
  border: 0;
  content: "";
}

#testimonials .btm-btm .active {
  background: #71c55d;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  bottom: 0 !important;
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin: 30px auto 0 auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

.carousel-indicators li {
  margin: 0;
}

/* Pricing Table Section
--------------------------------*/
#pricing .block-pricing {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
}

@media (max-width: 991px) {
  #pricing .block-pricing {
    margin-bottom: 30px;
  }
}

#pricing .block-pricing .table {
  margin-bottom: 0;
  padding: 30px 15px;
  max-width: 100%;
  width: 100%;
}

#pricing .block-pricing .table h4 {
  padding-bottom: 30px;
}

#pricing .block-pricing h2 {
  margin-bottom: 30px;
}

#pricing .block-pricing ul {
  list-style: outside none none;
  margin: 10px auto;
  max-width: 240px;
  padding: 0;
}

#pricing .block-pricing ul li {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  padding: 12px 0;
  text-align: center;
}

#pricing .block-pricing ul li b {
  color: #3c4857;
}

#pricing .block-pricing .table .table_btn a {
  background: #71c55d;
  color: #fff;
  margin: 0;
  display: inline-block;
}

#pricing .block-pricing .table .table_btn a:hover {
  background: #55b03f;
}

#pricing .block-pricing .table .table_btn a .fa {
  font-size: 13px;
  margin-right: 5px;
}

/* Blog Section
--------------------------------*/
.block-blog {background-color: #ffffff;
  margin-bottom: 2em;
  border-radius: 10px;
}
.block-blog img{
	max-width:100%;
}
.block-blog h4 {
  color: #000;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.5;
	color:#636363;
}
.block-blog h4 a{color:#636363;}
.block-blog h4 a:hover{color:#4b3aa3;}
.ellipsis {
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.block-blog .limgs {
    padding-bottom: 70%;
    background-image: url("../img/photo-test.jpg");
    background-position: center center;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    position: relative;
}
.block-blog .content-blog {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  min-height: 125px;
  padding: 20px 10px;
  width: 100%;
	text-align: left;
}

.block-blog .content-blog > div > span {
  float: left;
  font-size: 1em;
	color: #A2BC8E;
 
}

.block-blog .content-blog .btn{
	border-radius: 10px;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
	width:100%;
	padding:1em;
}

@media (max-width: 991px) {
  #blog .block-blog {
    margin-bottom: 30px;
  }
	#blog .block-blog h3{
    font-size: 1.3em;
  }
	#blog .text-center img{max-width:60%;}
}

#blog .block-blog img {
  width: 100%;
}

#blog .block-blog .content-blog {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  height: 320px;
  padding: 20px 10px;
  width: 100%;  
}

#blog .block-blog .content-blog h4 {
  line-height: 24px;
  margin-bottom: 0.5em;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
}

#blog .block-blog .content-blog h4 a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

#blog .block-blog .content-blog h4 a:hover {
  color: #71c55d;
}

#blog .block-blog .content-blog > div > span {
  float: left;
  font-size: 12px;
}

#blog .block-blog .content-blog a.readmore {
    color: #153A6F;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0;
    text-transform: capitalize;
    background: #F3BE4A;
    border-radius: 1.5em;
    padding: 1em;
	text-align: center;
	display: block;
    width: 100%;
	margin-top: 0.5em;
}

#blog .block-blog .content-blog a.readmore:hover {
    color: #fff;
	background: #f05a0f;
}

/* Newsletter Section
--------------------------------*/
.form {width: 90%;
	margin: auto;
  position: relative;
}
@media (max-width: 991px){
	.form {width: 100%;
}
}
#newsletter {
  background: rgba(0, 0, 0, 0) url(../img/newsletter-bg.jpg) no-repeat center top fixed;
  background-size: cover;
}

#newsletter .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 95%);
  height: 100%;
  width: 100%;
}

#newsletter .form-control {
  background-color: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  height: 50px;
  text-align: center;
  width: 70%;
  background: #fff;
}

@media (max-width: 575px) {
  #newsletter .form-control {
    margin-bottom: 30px;
    width: 100%;
  }
}

#newsletter .form-control:focus {
  border-color: #71c55d;
  box-shadow: none;
  outline: 0 none;
}

#newsletter .btn {
  background: #71c55d;
  border: 0;
  border-radius: 0;
  height: 50px;
  width: 30%;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #newsletter .btn {
    width: 100%;
  }
}

#newsletter .btn:hover {
  background: #55b03f;
}

#newsletter .btn .fa {
  padding-right: 10px;
}

#newsletter ul {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 0;
}

#newsletter ul li {
  background: #71c55d;
  border-radius: 50px;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

#newsletter ul li:hover {
  background: #55b03f;
}

#newsletter ul li i {
  color: #fff;
  line-height: 0;
}

/* Contact Section
--------------------------------*/
#contact {
  
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 32px;
  color: #71c55d;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding: 20px 0;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #71c55d;
  color: #fff;
  line-height: 1;
  padding: 6px 0 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #55b03f;
  color: #fff;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 1em;
}

#contact .php-email-form input:focus, #contact .php-email-form textarea:focus {
  border-color: #71c55d;
}

#contact .php-email-form input {
  padding: 10px 15px;

}

#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form button[type="submit"] {
  font-weight: 400;
    font-size: 1.5em;
    letter-spacing: 1px;
    display: inline-block;
    padding: 11px 36px;
    border-radius: 50px;
    transition: 0.5s;
    margin-bottom: 30px;
    border: 2px solid #ffffff;
    background: #d94449;
    color: #ffffff;
  transition: 0.4s;
}

#contact .php-email-form button[type="submit"]:hover {
  border: 2px solid #d94449;
  background: #fff;
  color: #d94449;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/****參賽作品對話框****/
.speech-bubble {
	position: relative;
	background: #fff;
	border-radius: .4em;
	padding:0.5em;
}

.speech-bubble:after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-bottom-color: #fff;
	border-top: 0;
	border-left: 0;
	margin-left: -10px;
	margin-top: -20px;
}
#winners {
    /*background-image: url(../img/winner-back.png);*/
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: bottom;
}
@media (max-width: 575px) {
  #winners .section-title img{max-width:60%;}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*****new footer****/
.footer {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: 15px 0 40px 0;
	background: #FFFFFF;
}
.footer .mar{ max-width:1390px; margin:auto; padding:0 15px; }
.footer .mar .fun01{ display:flex; justify-content:space-between; align-items:center; }
.footer .mar .fun01 .flogo{ width:447px; display:block; }
.footer .mar .fun01 .flogo img{ width:100%; }
.footer .mar .fun01 .rightbox{ flex:1; display:flex; justify-content:flex-end; }
.footer .mar .fun01 .rightbox .fbbox{ width:340px; }
.footer .mar .fun01 .rightbox .qrcode{ margin-right:10px; }
.footer .mar .fun01 .rightbox .qrcode img{  }

.footer .mar .fun02{ padding:25px 0; font-size:0; }
.footer .mar .fun02 .links{ display:inline-block; vertical-align:middle; color:#fff; font-size:22px; padding-right:15px; margin-right:15px; margin-bottom:10px; position:relative; }
.footer .mar .fun02 .links:after{ content:""; display:block; position:absolute; top:3px; right:0; width:2px; background:#fff; height:26px; }
.footer .mar .fun02 .guide{ display:inline-block; vertical-align:top; color:#fff; font-size:16px; padding-right:10px; }
.footer .mar .txtbox{ font-size:16px; color:#00000; line-height:1.6; }

@media screen and (min-width:768px) and (max-width:1390px){
	.footer .mar .fun01{ justify-content:center; flex-direction:column; }
.footer .mar .fun01 .flogo{ margin:0 0 15px 0; }
.footer .mar .txtbox{ text-align:center; }	
}

@media screen and (max-width:767px){
	.footer{ padding: 15px 0 80px 0; 
	display: inline-block;
    height: 100%;
    width: 100%;
    background-size: 100%;
	}	
.footer .mar .fun01{ display:block; }
.footer .mar .fun01 .flogo{ margin:0 auto 15px auto; max-width:320px; width:100%; }
.footer .mar .fun01 .rightbox{ display:block; text-align:center; }
.footer .mar .fun01 .rightbox .qrcode{ display:inline-block; vertical-align:middle; margin: 10px; width: 40%; }
.footer .mar .fun01 .rightbox .fbbox{ width:100%; max-width:340px; margin:auto; padding:10px 0 0 0; }
.footer .mar .txtbox{ text-align:center; font-size:14px; }

.footer .mar .fun02 .links{ font-size:14px; padding-right:10px; margin-right:10px; }
.footer .mar .fun02 .links:after{ height:16px; width:1px; }

.fb-comments, .fb-comments iframe[style] {
	width: 100% !important;
}
.fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
	width: 100% !important;
}	
}

/*new*/
.vote_button{
	color:#d94449;
    font-weight: 400;
    font-size: 1.5em;
    display: inline-block;
    padding: 11px 2.5em;
    border-radius: 50px;
    transition: 0.5s;
    border: 2px solid #d94449;
    background: #fff;
    transition: 0.4s;
	position: relative;
	 justify-content:center;
	margin-top: 1.5em;
	text-align: center;
}

@media (max-width: 575px) {
	.vote_button{
    font-size: 1.2em;
    display: inline-block;
    padding: 8px 2.5em;
    border-radius: 30px;
    transition: 0.5s;
    transition: 0.4s;
	position: relative;
	 justify-content:center;
	margin-top: 1.5em;
	text-align: center;
}

	}
.vote_button span{
	font-size: 1em;
	color: #556fb5;
}
.vote_button a{color:#d94449;}

/****主圖位置****/
.main-t5{margin-top:15%; }
.main-t-5{position:relative; top:-5%; }

/****圖片彈跳****/
@keyframes bounce{from{transform:translateY(0px)}to{transform:translateY(-10px)}}
@-webkit-keyframes bounce{from{transform:translateY(0px)}to{transform:translateY(-10px)}}
.bounce {animation: bounce 1s infinite alternate;-webkit-animation: bounce 1s infinite alternate;}

/***背景色***/
.redbg{background-color: #ff4b5a;}
.greenbg{background-color:#57b846;}

.textarea {box-shadow: 0 8px 20px 0 rgb(0 0 0 / 30%);width:100%; border: 0px;padding: 0.375rem 0.75rem; background-color:#eeeeee;}

/****參賽作品手機版****/
.MobileTop{}
@media screen and (max-width:767px) {
	.MobileTop{padding-top: 6em;}
}
@media screen and (min-width:768px) and (max-width:1390px){
	.MobileTop{padding-top: 6em;
}
		
	