
/* Fonts */
:root {
  --font-default: 'Noto Sans TC','Noto Sans JP', sans-serif;
  --font-title: 'Noto Serif JP','Noto Serif TC', serif;
  --font-secondary: "Poppins", sans-serif;
  --font-en:'Rubik', sans-serif;	
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #dd668e;
  --color-secondary: #1051a2;
  --color-bookman: #1d9098;
    --color-blue:rgba(24, 109, 156, 1);
    --color-purple:rgba(102, 77, 140, 1);
    --color-highlight: #e0a500;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
	font-weight: 300;
}

a {
    font-weight: 400;
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}


.modal-body{
    padding: 30px 60px 50px 50px;
}

.context{
	font-size:15px;
	font-family: 'Playfair Display', serif;
	line-height:1.8em;
	text-align:justify;
}

.context p{
	margin:1.5em 0;
	text-indent:3em;}

.modal-title{
    margin-left: 35px;
}

.news_img img{
    width: 100%;
}

.white_text{
    color: #fff;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 110px 0;
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
	font-family: var(--font-title);
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-bookman);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-bookman) transparent var(--color-bookman) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #1d9098;
  height: 40px;
  font-size: 13px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 11px;
  }
}




.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.6);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.header .logo{
	background: url("../ico/bookmanLogo.svg") no-repeat;
	width: 120px;
	height: 50px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}


.sticked-header-offset {
  margin-top: 60px;
}

section {
  scroll-margin-top: 70px;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #93f9da;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
    color: #006a5d;
  }

  .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: var(--color-secondary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 992px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(29, 144, 152, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #007466;
    border: 1px solid #006459;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
# 讀書會廣告
--------------------------------------------------------------*/

#ADbanner{
    padding:50px 0;
}
#ADbanner .ADheader{
    padding: 20px;
}

.ADheader h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
    font-family: var(--font-title);
}

.ADheader p{
  margin-bottom: 0;
  color: #6f6f6f;
}

#ADmobile{display:none;}
#ADdesk{display:contents;}

.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 0;
  margin: 0 10px 15px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item img {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 15px;
}

.testimonials .testimonial-item:hover{
    box-shadow: 0px 0 15px rgba(0, 126, 255, 0.5);
    /*border: 3px solid var(--color-primary);*/
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 5px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 0;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }

    #ADdesk{display:none;}
    #ADmobile{display:contents;}
}


/*--------------------------------------------------------------
# Our Services Section 活動辦法 method 
--------------------------------------------------------------*/

.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
  border-radius: 10px;
	font-size: 15px;
	line-height: 1.8em;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-default);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #eeeeee;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 400;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 20px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #eeeeee;
  transition: 0.3s;
}

.services .service-item p{
  font-size: 15px;
	line-height: 1.8em;
  margin-bottom: 12px;
}

.services .service-item .readmore {
  margin-top: 05px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

.divider {
  display: block;
  text-align: center;
  margin: 1rem 0 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.divider .divider-text {
  position: relative;
  display: inline-block;
  	font-size: 1rem;
	font-weight: 400;
  padding: 0rem 1rem;
}
.divider .divider-text i {
  font-size: 1rem;
}
.divider .divider-text:before, .divider .divider-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  border-top: 1px solid rgba(67, 89, 113, 0.2);
}
.divider .divider-text:before {
  right: 100%;
}
.divider .divider-text:after {
  left: 100%;
}
.divider.text-start .divider-text {
  padding-left: 0;
}
.divider.text-end .divider-text {
  padding-right: 0;
}
.divider.text-start-center .divider-text {
  left: -25%;
}
.divider.text-end-center .divider-text {
  right: -25%;
}
.divider.divider-dotted .divider-text:before, .divider.divider-dotted .divider-text:after {
  border-style: dotted;
  border-width: 0 1px 1px;
  border-color: rgba(67, 89, 113, 0.2);
}
.divider.divider-dashed .divider-text:before, .divider.divider-dashed .divider-text:after {
  border-style: dashed;
  border-width: 0 1px 1px;
  border-color: rgba(67, 89, 113, 0.2);
}

.divider.divider.divider-secondary .divider-text:before, .divider.divider.divider-secondary .divider-text:after {
  border-color: #8592a3;
}

.divider.divider.divider-success .divider-text:before, .divider.divider.divider-success .divider-text:after {
  border-color: #71dd37;
}

.divider.divider.divider-info .divider-text:before, .divider.divider.divider-info .divider-text:after {
  border-color:var(--color-bookman);
}

.divider.divider.divider-warning .divider-text:before, .divider.divider.divider-warning .divider-text:after {
  border-color: #ffab00;
}

.divider.divider.divider-danger .divider-text:before, .divider.divider.divider-danger .divider-text:after {
  border-color: #ff3e1d;
}

.divider.divider.divider-dark .divider-text:before, .divider.divider.divider-dark .divider-text:after {
  border-color: #233446;
}

.divider.divider.divider-gray .divider-text:before, .divider.divider.divider-gray .divider-text:after {
  border-color: rgba(67, 89, 113, 0.1);
}

/*------常見問題FAQ--------*/



#faq .accordion-item {
  border: 0;
  margin-bottom: 10px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
}

#faq .accordion-item:last-child {
  margin-bottom: 0;
}

#faq .accordion-collapse {
  border: 0;
}

#faq .accordion-button {
  padding: 15px 50px 15px 20px;
  font-weight: 400;
  border: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 5px;
}


#faq .accordion-button:not(.collapsed) {
  	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	background-color: var(--color-primary);
    color: #fff;
}

#faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 17px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23efd3d3'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}


#faq .accordion-body {
  padding: 20px 40px 30px 45px;
  border: 0;
	font-size: 15px;
	line-height: 1.8em;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}



.service-btn {
    display: inline-block;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    background:var(--color-secondary);
    font-size: 16px;
    font-weight: 300;
    font-family: var(--font-primary);
    transition:all 0.3s ease-in-out;
}

.service-btn:hover {
    background:var(--color-primary);
    transition:all 0.3s ease-in-out;
}

.service-btn i{
    font-size: 20px;
    position: relative;
    top:3px;
}

#faq .service-btn {
    padding: 0px 15px;
    font-size: 13px;
    border-radius: 20px;
}

#faq .service-btn i{
    font-size: 15px;
    position: relative;
    top:3px;
    margin-right: 3px;
}


/*--------------------------------------------------------------
# 線上投稿  Submit Section
--------------------------------------------------------------*/
.submit{
	background: url("../img/submit_bg.jpg") right top no-repeat;
	background-size:100%;
/*	font-size: 14px;
	line-height: 24px; */
}

.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing .pricing-item2{
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
    background: var(--color-primary);
    height: 100%;
    position: relative;
    border-radius: 15px;
}

.pricing-item_text{
    padding: 60px 40px 5px 40px;
    background: #fff;
    border-radius: 15px 15px 0 0;
}


.pricing .cert_form_item{
    padding: 30px 40px;
    color: #fff;
    border-radius: 15px;
}

.pricing .cert_form_item h3, .cert_form_item ul li{
    color: #fff;
}

.cert_form_item ul{
    margin: -30px 0 0 0;
}

.certificate_form{
	background: #fff;
    box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
	padding: 20px 0 5px 0;
	border-radius: 7px;
}


.pricing h3 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 20px;
  color: #555555;
  text-align: center;
}

.pricing .icon {
  margin: 30px auto 30px auto;
  width: 70px;
  height: 70px;
  background: rgba(16, 81, 162, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: #fff;
  font-size: 35px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: rgba(16, 81, 162, 0.6);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background:rgba(16, 81, 162, 0.3);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 40px;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-en);
  margin-bottom: 0;
  text-align: center;
}

.pricing h4 sup {
  font-size: 20px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
  font-weight: 400;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 8px 0;
  display: flex;
  align-items: top;
	font-size: 15px;
	line-height: 1.8em;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: var(--color-secondary);
  font-size: 22px;
  padding: 2px 3px 0 0;
	align-items: top;
}


.pricing .buy-btn {
  display: inline-block;
    width: 100%;
  padding: 10px 40px;
  border-radius: 7px;
  color: #fff;
      background:var(--color-secondary);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  transition:all 0.3s ease-in-out;
}

.pricing .submit_time{
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: #fff;
  background: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  transition:all ease-in-out 0.6s;
}

.pricing .download-btn {
	display: block;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  background: var(--color-primary);
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.bx-download{
    font-size: 20px;
    position: relative;
    top:3px;
}

.pricing .download-btn:hover{
    background: var(--color-secondary);
    color: #fff;
    transition:all 0.3s;
}

 .pricing .submit_time:hover,.pricing .buy-btn:hover {
  background: var(--color-highlight);
  color: #fff;
  transition:all 0.3s;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 10px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding:10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  	background-color: var(--color-primary);
	padding: 10px;
	border-radius: 5px;
	color:#fff;
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

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

.portfolio portfolio-item{
    height: 100%;
}


@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 15px 5px 25px 20px;
  background-color: #fff;
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 16px;
  font-weight: 700;
  padding-right: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover{
  color: var(--color-primary);
	transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

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

/*--------------------------------------------------------------
# bookList  Details Section
--------------------------------------------------------------*/
.bookList_title{
	font-size:22px;
	line-height: 2em;
	font-family: var(--font-title);
    font-weight: 600;
}


.bookList .bookList-item{
	width: 130px;
	height: 192px;
	overflow: hidden;
	margin: 10px;
	display: inline-block;
}


.bookList .bookList-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
}

.bookList .bookList-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.bookList .bookList-wrap img {
  transition: 1s;
	width:100%;
	height: 190px;
}

.bookList .bookList-wrap .bookList-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.bookList .bookList-wrap:hover .bookList-info {
	opacity: 1;
}

/*
.bookList .bookList-wrap .bookList-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
 border-top: 3px solid rgba(1, 41, 112, 0.2);
  border-left: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.bookList .bookList-wrap .bookList-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid rgba(1, 41, 112, 0.2);
  border-right: 3px solid rgba(1, 41, 112, 0.2);
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
*/

.bookList .bookList-wrap .bookList-info h4 {
  font-size: 17px;
	line-height: 1.4em;
  color: #17716a;
  font-weight: 600;
}

.bookList .bookList-wrap .bookList-info p {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.bookList .bookList-wrap .bookList-links {
  text-align: center;
  z-index: 4;
}

.bookList .bookList-wrap .bookList-links a {
  color: #fff;
  background: #4154f1;
  margin: 10px 2px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.bookList .bookList-wrap .bookList-links a i {
  font-size: 24px;
  line-height: 0;
}

.bookList .bookList-wrap .bookList-links a:hover {
  background: #5969f3;
}

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

.bookList .bookList-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.bookList .bookList-wrap:hover .bookListo-info {
  opacity: 1;
}

.bookList .bookList-wrap:hover .bookList-info::before {
  top: 15px;
  left: 15px;
}

.bookList .bookList-wrap:hover .bookList-info::after {
  bottom: 15px;
  right: 15px;
}


/*--------------------------------------------------------------
# 歷年得獎作品 History Section
--------------------------------------------------------------*/

.history{
    background-image: linear-gradient(to top, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../img/history.jpg");
	background-size: 100%, cover;
	background-attachment: fixed;
	background-position: center bottom;
}

.yearBox{
	padding: 20px;
	border-radius: 5px;
	background: #fff;
	transition: all 0.5s ease-in-out;
	text-align: center;
}

.yearBox:hover {
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
	transition:all  0.5s ease-in-out;
}

.yearBox-year{
	color:var(--color-primary);
	font-family:var(--font-en);
	font-weight: 800;
	font-size: 40px;
}

.yearBox-title{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8em;
	color:#4F4F4F;
}

.yearBox-date{
	color:#ccc;
	font-family:var(--font-en);
	font-weight: 300;
	font-size: 12px;
}

.yearBox-date i{
	position: relative;
	top:1px;
}


/*--------------------------------------------------------------
# 最新消息 NEWS Section
--------------------------------------------------------------*/
#news{
	min-height: 400px;
	background:url("../img/news_bg.png") center bottom;
	background-repeat: no-repeat;
	background-size:cover; 
	margin-bottom: -10px;
}

.primary-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 5px;
  color: #fff;
  background: var(--color-primary);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  transition: 0.5s all ease-in-out;
}

.primary-btn:hover {
  background: var(--color-secondary);
    transition: 0.5s all ease-in-out;
}

.primary-btn i{
	position: relative;
	top:3px;
	font-size: 18px;	
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  border-radius: 7px;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 20px 50px 20px 20px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-default);
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 7px !important;
}

.faq .accordion-button .num {
  padding:3px 10px 0 0;
  font-size: 16px;
	font-family: 'Rubik', sans-serif;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  	border-bottom: 0;
	border-radius: 7px 7px 0 0 !important;
    color:#fff;
	background-color: var(--color-secondary);
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  padding: 20px 40px 50px 45px;
  border: 0;
	font-size: 15px;
	line-height: 1.8em;
  border-radius: 7px;
  background: #fff;
  box-shadow: none;
}

#news .accordion-body li{
    margin: 20px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact{
	padding: 50px 0 30px 0;
}

.contact .sponsor ul{
	margin-left: -45px;
}

.contact .sponsor ul li{
	display: inline-block;
	padding: 10px;
	height: 60px;
	transition: 0.3s all ease-in-out;
}

.contact .sponsor ul li:hover{
	transform: translateY(-3px);
}

.contact .sponsor ul li img{
	height:100%;
}

.contact h4 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}

/*--------------------------------------------------------------
# submit.html 線上投稿
--------------------------------------------------------------*/
.sub-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  background: var(--color-primary);
  color: #fff;
  /*border: 1px solid rgba(0, 131, 116, 0.2);*/
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  transition: 0.3s;
}

.sub-btn:hover{
	color: #fff;
	background: var(--color-secondary);
}

#submit .info-container {
  background-color: #8f8ec1;
  height: 100%;
  padding: 0px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

/*webkit瀏覽器專用*/
#submit ::-webkit-input-placeholder { font-size: 13px; color:#939393;}
/*Firefox 4-18瀏覽器專用*/
#submit input::-moz-placeholder { font-size: 13px; color:#939393;}
/*Firefox 19+瀏覽器專用*/
#submit input::-moz-placeholder{font-size: 13px; color:#939393;}
/*IE10瀏覽器專用*/
#submit:-ms-input-placeholder{font-size: 13px; color:#939393;}

#submit .service-btn{
    background: var(--color-primary);
}

#submit .service-btn:hover{
    background: var(--color-secondary);
}

#submit .info-item {
  width: 100%;
  /*background-color: #009282;*/
  margin-bottom: 10px;
  padding: 10px;
  color: #fff;
}

#submit .info-item:last-child {
  margin-bottom: 0px;
}

#submit .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

#submit .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

#submit .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

#submit .info-item:hover i {
  background: #fff;
  color: var(--color-primary);
}
.info-title{
	background-color: var(--color-secondary);
	text-align: center;
	color: #fff;
	padding: 15px;
	font-weight: 600;
	border-radius:7px 0 0 0; 
}

.submiter-title{
	background-color:var(--color-secondary);
	text-align: center;
	color: #fff;
	padding: 15px;
	font-weight: 600;
	border-radius:7px; 
    margin-top: -20px;
}

.submiter-title span, .info-title span{
    text-transform:uppercase;
    font-weight: 200;
    margin-left: 10px;
}

.label-title{
	margin-top: 6px;
	color:#fff;
	font-size: 14px;
	font-weight: 400;
	padding-left: 20px;
	font-family: var(--font-default);
}

.certificate_form .label-title{
    color:var(--color-primary);
}


.submiter .label-title{
	color:var(--color-secondary);
}


#submit .submit-form {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

#submit .submit-form input,
#submit .pricing-item input,
#submit .submit-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#submit .submit-form input[type=text],
#submit .submit-form input[type=email],
#submit .submit-form textarea {
  padding: 12px 15px;
}

#submit .submit-form input[type=text]:focus,
#submit .info-container input[type=text]:focus,
#submit .pricing-item input[type=text]:focus,
#submit .submit-form input[type=email]:focus,
#submit .submit-form textarea:focus {
  border-color: var(--color-primary);
}

#submit .submit-form textarea {
  padding: 10px 12px;
}

#submit .submit-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

#submit .submit-form button[type=submit]:hover {
  background: rgba(0, 131, 116, 0.8);
}


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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Enter Section 主頁主視覺 
--------------------------------------------------------------*/
.enter {
  width: 100%;
  position: relative;
  background:url("../img/enter.jpg") center -15vh no-repeat;
  background-size:cover;
  height: 1000px;
  padding:0;
  z-index: -1;
}

.enterHistory{
	position: relative;
	left:5%;
	border: 1px solid #a00;
	top:400px;
	width: 60%;
}


@media (max-width: 1364px) {
  .enter {
    height: 550px;
		background:url("../img/mainbanner.png") center -5vh no-repeat;
		background-size:100%;
  }
}

@media (max-width: 1199px) {
	.enter {
		height: 490px;
		background:url("../img/mainbanner.png") center -5vh no-repeat;
		background-size:120%;
	}
}

@media (max-width: 991px) {
	.enter {
		background:url("../img/mainbanner.png") -200px -10vh no-repeat;
		background-size:140%;
	}
}

@media (max-width: 768px) {
	.enter {
		height: 630px;
		background:url("../img/mobile-mainbanner.jpg") center -17vh no-repeat;
		background-size:cover;
	}
}

@media (max-width: 574px) {
	.enter {
		height: 600px;
		background:url("../img/mobile-mainbanner.jpg") center -5vh no-repeat;
		background-size:cover;
	}
	.header{
		height: 50px;
		background-color: rgba(0, 0, 0, 0.75);
	}
	.header.sticked {
		height: 45px;
	}
	
	.header .logo{
		background: url("../ico/bookmanLogo.svg") no-repeat;
		width: 120px;
		height: 35px;
	}
}

@media (max-width: 440px) {
	.enter {
		height: 550px;
		background:url("../img/mobile-mainbanner.jpg") center 0 no-repeat;
		background-size:100%;
	}
}




/*--------------------------------------------------------------
# Hero Section 主視覺 
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background:url("../img/mainbanner.png") center -5vh no-repeat;
	background-attachment: fixed;
  background-size:100%;
  height: 550px;
  padding:0 0 0 0;
  margin-top: -80px;
  z-index: -1;
}


.enter {
  width: 100%;
  position: relative;
  background:url("../img/enter.jpg") center top no-repeat;
  background-size:cover;
  height: 630px;
  padding:0;
  z-index: 100;
}

.enterBtn{
	border: 0px solid #a00;
	padding: 0;
	position:absolute;
	text-align: center;
	top:8vh;
	left: 24vw;	
	transition: 0.5s all ease-in-out;
    width:335px;
}

.enterBtn img{
	width:100%;
}

.enterBtn:hover{
	transform: translateX(25px);
	box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1); 
}


@media (max-width: 1681px) {
    .hero {
        background:url("../img/mainbanner.png") center top no-repeat;
		background-size:100%;
  }
	.enterBtn img{
		width:300px
	}
	.enterBtn{
		top:8vh;
		left: 35%;
	}
}

@media (max-width: 1450px) {
     .hero {
        height: 550px;
		background:url("../img/mainbanner.png") center top no-repeat;
		background-size:cover;
  }
    .enter {
      width: 100%;
      position: relative;
      background:url("../img/enter.jpg") center top no-repeat;
        background-size:110%;
    }
	.enterBtn img{
		width:260px
	}
	.enterBtn{
		top:7vh;
		left: 35%;
	}
}


@media (max-width: 1364px) {
  .hero {
    height: 550px;
		background:url("../img/mainbanner.png") center -3vh no-repeat;
		background-size:117%;
  }
    
    .enter {
		height: 490px;
		background:url("../img/enter.jpg") center top no-repeat;
		background-size:cover;
    }
    .enterBtn img{
		width:250px;
	}
    
	.enterBtn{
		top:5vh;
		left: 34%;
    }
}
@media (max-width: 1199px) {
	.hero {
		height: 490px;
		background:url("../img/mainbanner.png") -110px top no-repeat;
		background-size:125%;
	}
	.enter {
		height: 490px;
		background:url("../img/enter.jpg") center top no-repeat;
		background-size:cover;
	}
	
    .enterBtn img{
		width:210px;
	}
    
	.enterBtn{
		top:60px;
		left: 32%;
	}
}

@media (max-width: 991px) {
	.hero {
        height: 550px;
		background:url("../img/mainbanner.png") -100px top no-repeat;
		background-size:150%;
	}
    .enter {
		height: 490px;
		background:url("../img/enter.jpg") -100px top no-repeat;
		background-size:150%;
	}
	.enterBtn{
		top:60px;
		left: 39%;
	}
	.enterBtn:hover{
		transform: translateY(-15px);
		box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1); 
	}
}

@media (max-width: 901px) {
	.hero {
        height: 490px;
		background:url("../img/mainbanner.png") -100px top no-repeat;
		background-size:160%;
	}
}

@media (max-width: 768px) {
	.hero {
		height: 390px;
		background:url("../img/mainbanner.png") -80px top no-repeat;
		background-size:150%;
	}
	
	.enter {
		height: 490px;
		background:url("../img/enter.jpg") -70px top no-repeat;
		background-size:cover;
	}
	.enterBtn{
		top:60px;
		left: 39%;
	}
}

@media (max-width: 574px) {
	.hero {
		height: 380px;
		background:url("../img/mobile-mainbanner.jpg") center -10px no-repeat;
		background-size:110%;
	}
	
	.enter {
	  height: 600px;
	  position: relative;
	  background:url("../img/mobile_enter.png") center -5vh no-repeat;
	 background-size:cover;
	}
    
    .enterBtn img{
		width:270px;
        visibility: hidden;
	}
    
	.enterBtn{
		padding: 100px;
		top:100px;
		left:0;
        background:url("../img/enter2.png") left 100px no-repeat;
        background-size:100%;
	}
    
    .enterBtn:hover{
		transform: translateY(15px);
		box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1); 
	}
	
	.header{
		height: 50px;
		background-color: rgba(0, 0, 0, 0.75);
	}
	.header.sticked {
		height: 45px;
	}
	
	.header .logo{
		background: url("../ico/bookmanLogo.svg") no-repeat;
		width: 120px;
		height: 35px;
	}
}

@media (max-width: 440px) {
	.hero {
		height: 600px;
		background:url("../img/mobile-mainbanner2.jpg") center 20px no-repeat;
		background-size:100%;
	}
    
    .enter {
	  height: 600px;
	  position: relative;
	  background:url("../img/mobile_enter.png") center -30px no-repeat;
      background-size:cover;
	}
    
   .enterBtn img{
		width:240px;
	}
    
	.enterBtn{
		padding: 100px;
		top:100px;
		left:0;
        background:url("../img/enter2.png") left 100px no-repeat;
        background-size:75%;
	}
    
	.topbar{
		height: 0;
	}
	section {
		padding: 60px 0;
	}
    .modal-body{
        padding: 20px;
    }
    .context{
        font-size:14px;
    }
}

@media (max-width: 390px) {
    .enter {
	  height: 600px;
	  position: relative;
	  background:url("../img/mobile_enter.png") center -10px no-repeat;
      background-size:cover;
	}
    
     .enterBtn img{
		width:220px;
	}
    
    .enterBtn{
		padding: 100px;
		top:100px;
		left:0;
        background:url("../img/enter2.png") left 100px no-repeat;
        background-size:80%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: var(--color-bookman);
  padding: 50px 0 0 0;
  color: white;
}

.footer .footer-info .logo {
	background: url("../ico/bookmanLogo_white.svg") no-repeat;
	width: 120px;
	height: 50px;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 13px;
  font-family: var(--font-primary);
}

.footer .social-links a i{
	font-size: 20px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul li i {
  padding-right: 2px;
  color: var(--color-bookman);
  font-size: 17px;
  line-height: 1;
	position: relative;
	top:3px;
	 transition: all 0.3s ease-in-out;
}

.footer .footer-links ul li {
  	padding: 0;
  	align-items: center;
  	line-height: 2em;
	color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
	.footer .footer-links ul li {
	display: inline-block;
		margin-right: 15px;
	}
}

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

.footer .footer-links ul a {
  color: var(--color-bookman);
	font-weight: 400;
	font-size: 13px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    line-height: 1;
	width:150px;
	height: 24px;
	padding: 1px 0 2px 0;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 5px;
	text-align: center;
}

.footer .footer-links ul a:hover{
  	color: #fff;
	background: #006272;
	transition: all 0.3s ease-in-out;
}

.footer .footer-links ul a:hover i {
	color: #fff;
}

.footer .footer-contact p .footer p {
  	line-height: 2em;
}

.footer .copyright {
  text-align: center;
	background: #000;
	width: 100%;
	padding: 15px 0 5px 0;
	margin-top: 20px;
	font-family: var(--color-en);
	font-size: 12px;
	line-height: 1.8em;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}