/*--   General  --*/  
@import url('https://fonts.googleapis.com/earlyaccess/notosanstc.css');


:root {
  --white: #fff;
  --black: #323135;
  --crystal: #a8dadd;
  --columbia-blue: #cee9e4;
  --red-50th: #E13627;
  --gray: #D3D3D3;
  --lake: #1AADA9;
  --yellow: #FFE200;
  --timeline-gradient: rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0) 100%;
}

body {
  font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
  color: #272829;
	background: var(--red-50th);
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

a.btn-link {
	color: #FFF;
	border-bottom: 2px solid var(--yellow);
	text-decoration: none;
	padding: 4px 6px;
	transition: all 0.4s;
}
a.btn-link:hover {
	color: var(--yellow);
	border-bottom: 2px solid var(--yellow);
	text-decoration: none;
	padding: 4px 16px;
}

a.btn-unlink {
	color: var(--yellow);
	background-color: var(--lake);
	border-radius: 20px;
	text-decoration: none;
	padding: 4px 12px;
	transition: all 0.4s;
}
a.btn-unlink:hover {
	background-color: var(--gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", '微軟正黑體', sans-serif;
}

/*--   Back to top button  --*/  
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--lake);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--yellow);
  color: var(--black);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--   Preloader  --*/  
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background:var(--red-50th);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--red-50th);
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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  --*/  
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 1997;
  background: rgba(225, 54, 39, 0.9);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(225, 54, 39, 0.9);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 10px 0;
  height: 50px;
}

/*--   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;
	padding-bottom: 10px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px 10px 15px;
  font-size: 1.125rem;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 1px solid #FFF;
}

.navbar a > i {
	margin-left: 5px;
}


.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
	color: #ffe109;
	border-bottom: 1px solid #ffe109;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 5px;
  top: calc(100% + 30px);
  margin: 5px 0 0 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: 15px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: var(--black);
  margin: 0 5px;
  font-size: 1rem;
}

.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(--lake);
}

.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: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
	#header .align-self-end {
		align-self: auto!important;
	}
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(20, 21, 28, 0.9);
  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: 10px;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  margin: 5px;
  font-size: 1.125rem;
  color: var(--black);
	border-bottom: 1px solid var(--gray);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--lake);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--red-50th);
  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;
	color: var(--white);
	font-size: 1.125rem;
}

.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: var(--yellow);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
visibility: visible !important;
}



/*--   Hero Section  --*/  
#hero {
  width: 100%;
  height: 100vh;
/*
  background: url("../img/main-vision.svg");
	background-repeat: no-repeat;
	background-position: center 70px;
  background-size: contain;
*/
  position: relative;
}

/*
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
*/

#hero video {
    position: absolute;
    min-width: 100%;
    height: 100vh;
    object-fit: cover;
	top:0;
}
.home-content {
    position: absolute;
    padding-top: 0;
	width: 100%;
	height: 90vh;
    color: #fff;
    text-align: right;
	background: url("../img/main-vision.svg");
	background-repeat: no-repeat;
	background-position: center -20px;
  background-size: contain;
	animation: cssAnimation 3s 10s forwards;
	opacity: 0;
}
@keyframes cssAnimation {
  to   { opacity: 1; }
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #45505b;
}

#hero p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", '微軟正黑體', sans-serif;
}

#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
}

@media (min-width: 1440px) {
	#hero {
  height: 75vh;
	}
	#hero video {
    height: 75vh;
	}
	.home-content {
		height: 70vh;
	}
	
}

@media (max-width: 992px) {
  #hero {
/*    text-align: center;*/
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

@media (max-width:768px) {
	#hero {
/*
  width: 100%;
  height: 70vh;
*/
	}
	.home-content {
    padding-top: 0;
	width: 100%;
	height: 90vh;
    color: #fff;
    text-align: right;
	background: url("../img/main-vision.svg");
	background-repeat: no-repeat;
	background-position: center 50px;
  background-size: contain;
	animation: cssAnimation 3s 10s forwards;
	opacity: 0;
}
}


.heroScroll {
  position: relative;
  width: 100%;
  height: 100%;
}
.heroScroll::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
/*
  background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(0,0,0,.8) 80%,rgba(0,0,0,.8) 100%);
  background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.8) 80%,rgba(0,0,0,.8) 100%);
*/
}
.heroScroll h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font : normal 300 64px/1 'Josefin Sans', sans-serif;
  text-align: center;
  white-space: nowrap;
}

.demo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}


#heroScroll a {
  padding-top: 0px;
}
#heroScroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb04 2s infinite;
  animation: sdb04 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb04 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}
@keyframes sdb04 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }
  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

@media (min-width: 1440px) {
	.heroScroll {
		display: none;
	}
}

@media (max-width:768px) {
	.heroScroll {
  height: 85%;
}
}


/*--   Sections General  --*/  
.section-bg {
	background-color: var(--white);
	box-shadow: 0 0 18px rgba(0,0,0,.15);
}


section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: left;
  padding: 0px 10px;
  border-top: 3px solid #FFF;
  position: relative;
	margin-bottom: 20px;
}

.section-line {
	position: relative;
}

.section-line::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  bottom: 0px;
  left: calc(0%);
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: bolder;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  padding: 20px 0px;
  color: var(--white);
	display: inline-block;
	letter-spacing: 0.1rem;
}

.section-title h2 span {
	font-size: 1.375rem;
}

.section-title h2.red-title {
	color: var(--red-50th);
}

.title-white {
	color: #FFF;
}


/*
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 101.5%;
  height: 3px;
  background: #FFF;
  top: 0;
  left: calc(0% - 10px);
}
*/

.title-white p {
	color: #fff099;
/*	text-shadow: 0 0 8px rgba(0,0,0,.2);*/
	font-weight: 200;
	letter-spacing: 0.05rem;
}

.section-title p {
	font-size: 1.125rem;
  margin-bottom: 0;
	padding: 20px 20px 20px 0;
}

.section-title p a {
	padding: 0 5px;
	color: #FFF;
	text-decoration: none;
}
.section-title p a:hover {
	color: #fff099;
}
/*--   About  --*/ 
.about {
	margin-bottom: 40px;
}
.about .content {
	text-align: center;
  font-weight: 300;
  font-size: 1.5rem;
	line-height: 2.6rem;
	letter-spacing: 0.1rem;
  color: #FFF;
}

.about .content img {
	width: 30%;
	margin: 2rem 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (max-width:992px) {
	.about .content img {
	width: 50%;
	margin: 2rem 0;
	}
}

@media (max-width:768px) {
	.about .content {
  font-size: 1.25rem;
	line-height: 2.0rem;
	letter-spacing: 0.1rem;
  color: #FFF;
}
	.about .content img {
	width: 60%;
	margin: 1rem 0;
	}
}

/*--   count  --*/  
.count .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
	border:1px solid var(--white);
	color: var(--white);
}

.count .count-box img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.count .count-box span {
	margin-top: 20px;
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--white);
  position: relative;
}

.count .count-box span::after {
	content: "+";
}

.count .count-box p {
  padding: 0;
  margin: 20px 0 5px 0;
  font-family: "Raleway", '微軟正黑體', sans-serif;
  font-size: 1.5rem;
}

.count .count-box .note {
	font-size: 1rem;
	margin-bottom: 20px;
	font-weight: 300;
}


/*--  timeline  --*/

.timeline {
  position: relative;
  white-space: nowrap;
  max-width: 1300px;
	height: 80vh;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px auto;
  grid-gap: 20px;
}

.timeline::before,
.timeline::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 30px;
  width: 100px;
  z-index: 2;
}

.timeline::after {
  right: 0;
  background: linear-gradient(270deg, var(--timeline-gradient));
}

.timeline::before {
  left: 0;
  background: linear-gradient(90deg, var(--timeline-gradient));
}

.timeline ol::-webkit-scrollbar {
  height: 12px;
}

.timeline ol::-webkit-scrollbar-thumb,
.timeline ol::-webkit-scrollbar-track {
  border-radius: 92px;
}

.timeline ol::-webkit-scrollbar-thumb {
  background: var(--lake);
}

.timeline ol::-webkit-scrollbar-track {
  background: var(--gray);
}

.timeline ol {
  font-size: 0;
	min-width: 1280px;
/*	min-height: 400px;*/
  padding: 20px 0 20px;
  transition: all 1s;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gray) var(--red-50th);
}

.timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 320px;
  height: 1px;
  background: var(--red-50th);
  scroll-snap-align: start;
}

.timeline ol li:last-child {
  width: 280px;
	margin-right: 200px;
}

.timeline ol li:not(:first-child) {
  margin-left: 0px;
}

.timeline ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--red-50th);
  z-index: 1;
}

.timeline ol li .timeline-card {
  position: absolute;
  left: calc(100% + 7px);
  width: 280px;
  padding: 15px;
  font-size: 1rem;
  white-space: normal;
  color: var(--black);
  background: var(--white);
  border-radius: 10px;
	border: 1px solid var(--red-50th);
	height: 620px;
}

.timeline ol li .timeline-card::before {
  content: "";
  position: absolute;
  border-style: solid;
	top: -25px;
	left: 17px;
	height: 25px;
	border: 1px solid var(--red-50th);
}

.timeline ol li .timeline-card {
	top: calc(100% + 26px);
}



.timeline time {
  display: block;
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--black);
}

.timeline-card .item-title {
	font-size: 0.9375rem;
  color: var(--red-50th);
	font-weight: 300;
}

.timeline-card .publish {
	margin-bottom: 20px;
}

.timeline-card .publish a {
	color: var(--black);
	font-size: 1.125rem;
	transition: all 0.3s;
}

.timeline-card .publish a:hover {
	color: var(--red-50th);
}

.timeline-card .publish .title {
	color: var(--black);
	font-size: 1.125rem;
	transition: all 0.3s;
}

.timeline-card .publish .title:hover {
	color: var(--red-50th);
}

.timeline-card .publish .item-cover img {
	width: 120px;
	margin: 10px 0;
	box-shadow: 0 4px 8px rgba(0,0,0,.2);
}

.timeline-card .publish .item-cover .img-w {
	width: 90%;
	margin: 10px 0;
	box-shadow: none;
}

.timeline-card p {
	font-size: 0.8125rem;
	position: relative;
	padding-left: 1rem;
	padding-bottom: 0.3rem;
	margin-bottom: 0;
}
.timeline-card p::before {
	position: absolute;
	content: " ";
	-webkit-border-radius: 0.375rem;
    border-radius: 0.375rem;
    height: 0.5rem;
    width: 0.5rem;
    margin-right: 0.5rem;
    background-color: #bdbdbd;
	left: 0.2rem;
	top: 0.38rem;
}


@media (max-width: 1399.98px) { 
	.timeline {
  position: relative;
  white-space: nowrap;
  max-width: 1117px;
	height: 80vh;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px auto;
  grid-gap: 20px;
}
	.timeline ol {
  font-size: 0;
	min-width: 1100px;
  padding: 20px 0 20px;
  transition: all 1s;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gray) var(--red-50th);
}
	.timeline ol li .timeline-card {
		overflow-x: scroll;
		height: auto;
	}
}
@media (max-width: 1199.98px) { 
	.timeline {
  max-width: 938px;
	height: 80vh;
}
	.timeline ol {
  font-size: 0;
	min-width: 930px;
}
}
@media (max-width: 991.98px) { 
	.timeline {
  max-width: 698px;
	height: 80vh;
}
	.timeline ol {
  font-size: 0;
	min-width: 690px;
}
	
	.timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 280px;
}
	.timeline ol li .timeline-card {
  position: absolute;
  left: calc(100% + 7px);
  width: 240px;
  padding: 10px;
}
}

@media screen and (max-width: 768px) {
.timeline {
  max-width: 517px;
	height: 80vh;
}
	.timeline ol {
  font-size: 0;
	min-width: 510px;
}
/*
  .timeline {
    display: block;
  }
*/

  .timeline::before,
  .timeline::after {
    width: 50px;
  }
	

  .timeline::before {
    left: 0;
  }

/*
  .timeline .info {
    display: none;
  }
*/
}

@media screen and (max-width: 576px) {
	#timelines .container {
		padding: 0;
		margin: 0;
	}
	.timeline {
  width: 100%;
	height: 600px;
}
	.timeline ol {
  font-size: 0;
	width: 100%;
}
}

/*-- special --*/

.special-card {
	background-color: #FFF;
	box-shadow: 0 0 18px rgba(0,0,0,.15);
	border-radius: 34px;
	padding: 20px;
	overflow: auto;
	margin-bottom: 30px;
	letter-spacing: 0.1rem;
	transition: transform .5s;
}

.special-card:hover {
	transform: scale(1.05);
}

.special-card .card-img {
	width: 50%;
	float: left;
}

.special-card .card-img img {
	width: 100%;
	border-radius: 16px;
}

.special-card .special-content {
	width: 50%;
	float: left;
	padding-left: 20px;
}
.special-card .special-content h4 {
	margin-left: 15px;
	font-size: 1.75rem;
}

.special-card .special-content h4 span {
	font-size: 1.375rem;
}
.special-card .special-content h5 {
	font-size: 1.125rem;
	margin-left: 15px;
	font-weight: 300;
	padding: 5px 0;
	
}
.special-card .special-content .tag {
	display: block;
	text-align: center;
	border-radius: 20px;
	padding: 6px;
	margin: 10px 10px 0;
	color: var(--white);
}

@media (max-width:992px) {
	.special-card .card-img {
	width: 100%;
	float: none;
}

.special-card .special-content {
	width: 100%;
	float: none;
	padding-top: 20px;
	padding-left: 0;
}
	.special-card .special-content h4 {
	margin-left: 0;
		text-align: center;
}
.special-card .special-content h5 {
	margin-left: 0;
	
}
.special-card .special-content .tag {
	display: block;
	text-align: center;
	border-radius: 20px;
	padding: 6px;
	margin: 10px 0;
	color: var(--white);
}
}


/*color set*/
.tag-green {
	background-color: #5ab647;
}
.text-green {
	color: #4b9e00;
}

.tag-bluegreen {
	background-color: #258db2;
}
.text-bluegreen {
	color: #007aa2;
}

.tag-lightgreen {
	background-color: #25b06d;
}
.text-lightgreen {
	color: #00873c;
}

.tag-brown {
	background-color: #ca8039;
}
.text-brown {
	color: #a76106;
}

.tag-red {
	background-color: #f45957;
}
.text-red {
	color: #fa4443;
}

.tag-gray {
	background-color: #bababa;
}

.special-card .special-content p {
	color: #000;
	padding: 10px 10px 10px 15px;
	line-height: 1.6rem;
}
.special-card .special-content a {
	float: right;
}
.btn-special {
	color: var(--white);
	width: 36px;
	height: 36px;
	border-radius: 18px;
	text-align: center;
	font-size: 2rem;
	display: inline-block;
	line-height: 1rem;
	padding-top: 2px;
	transition: all 0.3s;
}
.btn-special:hover {
	color: var(--red-50th);
	opacity: 0.5;
}

/*interview-card*/
.interview-card {
	margin: 20px 0 40px 0;
	color: var(--white);
}
.interview-card h4 {
	text-align: center;
	padding: 10px 10%;
	font-size: 1.75rem;
}
.interview-card h5 {
	text-align: center;
	font-weight: 300;
}
.interview-card .card-author {
	text-align: center;
	display: block;
}

.interview-card .interview-img {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	min-height: 300px;
	overflow: hidden;
}
.interview-card .interview-img img {
	transition: transform .5s ease;
}
.interview-card .interview-img:hover img {
  transform: scale(1.1);
}

.interview-card p {
	padding: 10px 10%;
	letter-spacing: 0.1rem;
}
.interview-card a.btn-interview {
	border-bottom: 2px solid #FFF;
	padding: 8px;
	color: var(--white);
}

.interview-card a.btn-interview:hover {
	border-bottom: 2px solid var(--yellow);
	color: var(--yellow);
}

 [class^="swiper-button-"]::after {
	font-size: 28px;
	color: white;
}

.interview-slider .swiper-pagination-bullet {
	background-color: white;
}

@media (max-width:992px) {
	.interview-card .interview-img {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	min-height: auto;
		margin: 0;
	overflow: hidden;
}
	.interview-card .interview-img img {
		width: 100%;
	}
}

@media (max-width:768px) {
	.interview-slider .d-flex {
		display: block!important;
	}
	.interview-card .interview-img {
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	min-height: auto;
		margin: 10px auto;
	overflow: hidden;
}
	.interview-card .interview-img img {
		width: 100%;
	}
	.interview-card h4 {
	text-align: center;
	padding: 10px;
	font-size: 1.75rem;
}
	.interview-card p {
	padding: 10px;
		text-align: center;
	letter-spacing: 0.1rem;
}
}

/*-- interview-page --*/
.interview-page {
	
}

.interview-header {
	padding: 30px 0;
	margin: 0 -12px!important;
	border-bottom: 1px solid #000;
	align-items: center;
}
.interview-header .col-lg-7,
.interview-header .col-md-6 {
	padding-left: 0;	
}
.interview-header .imagery img {
	width: 100%;
}
.interview-header .subject {
	letter-spacing: 0.1rem;
}
.interview-header .subject h5 {
	font-size: 1.375rem;
	border:1px solid black;
	padding: 10px 20px;
	display: inline-block;
	margin-bottom: 1rem;
}
.interview-header .subject h4 {
	font-size: 2rem;
	line-height: 3rem;
}
.interview-header .subject .author {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 2rem;
}
.interview-header .subject p {
	font-size: 1rem;
	line-height: 1.9rem;
	margin-top: 2rem;
}

@media (max-width:997px) {
	.interview-header {
	padding: 20px 0;
}
	.interview-header .subject h5 {
	font-size: 1.25rem;
	padding: 8px 20px;
	margin-bottom: .8rem;
}
.interview-header .subject h4 {
	font-size: 1.8rem;
	line-height: 2.4rem;
}
.interview-header .subject .author {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.6rem;
}
.interview-header .subject p {
	font-size: 1rem;
	line-height: 1.6rem;
	margin-top: 1rem;
}
}

@media (max-width:768px) {
	.interview-header {
	padding: 20px 0;
}
	.interview-header .col-lg-7,
.interview-header .col-md-6 {
	padding-left: 0;	
	padding-right: 0;
}
	.interview-header .subject {
		padding: 20px;
	}
	.interview-header .subject h5 {
	font-size: 1.25rem;
	padding: 8px 20px;
	margin-bottom: .8rem;
}
.interview-header .subject h4 {
	font-size: 1.8rem;
	line-height: 2.4rem;
}
.interview-header .subject .author {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.6rem;
}
.interview-header .subject p {
	font-size: 1rem;
	line-height: 1.6rem;
	margin-top: 1rem;
}
}

.interview-content {
	letter-spacing: 0.1rem;
	margin: 10px 8%;
	padding-bottom: 60px;
	font-weight: 300;
}

.interview-content h6 {
	font-size: 1.75rem;
	margin: 4rem 0;
	line-height: 2.6rem;
}
.interview-content p {
	font-size: 1.125rem;
	line-height: 2.2rem;
	margin: 2rem 0;
	clear: both;
}
.interview-content figure {
	margin-left: calc(50% - 210px);
	align-items: flex-end;
	display: flex;
	padding-bottom: 10px;
}
.interview-content figure img {
	width: 420px;
	transition: all 0.5s;
}
.interview-content figure img:hover {
	box-shadow: 0 5px 18px rgba(0,0,0,.3);
	border-radius: 10px;
}
.interview-content figure figcaption {
	align-items: flex-end;
	font-size: 1rem;
	font-weight: 300;
	margin-left: 1rem;
	max-width: 30%;
}

.interview-content .remarks {
	background-color: #eff0f4;
	padding: 20px 4px;
	margin: 3rem 0;
}

.interview-content .about_author {
	margin: 2rem 0 60px 0;
	line-height: 2rem;
}

@media (max-width:1200px) {
	.interview-content figure {
	margin-left: calc(50% - 150px);
}
.interview-content figure img {
	width: 300px;
}
}

@media (max-width:768px) {
	
	.interview-content figure {
	margin: 0 auto;
	display: block;
		text-align: center;
}
.interview-content figure img {
	width: 220px;
	margin: 10px auto;
}
	.interview-content figure figcaption {
	max-width: 100%;
}
}

.classic-content img {
	box-shadow: 0 0 20px rgba(0,0,0,.2);
}

/*classic-page*/
.classic-page .classic-banner {
	margin: 20px 0;
}
.classic-page .section-title {
	border-top: none;
}

.classic-page .nav-tabs {
	border-bottom: none;
}
.classic-page .nav-tabs a.nav-link {
	font-size: 1.5rem;
	letter-spacing: 0.1rem;
	color: var(--white);
	border:1px solid var(--white);
	border-radius: 0;
	padding: 1.4rem;
}
.classic-page .nav-tabs a.active {
	color: var(--red-50th);
}
.classic-page .nav-tabs li {
	margin-right: 15px;
}
.classic-page .nav-tabs li:last-child {
	margin-right: 0;
}
.classic-page .tab-content {
	margin-top: 20px;
}
.classic-page .section-bg {
	overflow: auto;
}

ul.classic-list {
	padding: 0;
	margin: 0;
}
ul.classic-list li {
	padding: 0;
	margin: 0;
	list-style: none;
	float: left;
	width: 20%;
}
ul.classic-list li:last-child {
	margin-bottom: 2rem;
}

ul.classic-list li:nth-child(6),
ul.classic-list li:nth-child(11),
ul.classic-list li:nth-child(16),
ul.classic-list li:nth-child(21),
ul.classic-list li:nth-child(26) {
	clear: both;
}
ul.classic-list .book-card {
	margin: 10px;
	padding: 10px;
	text-align: center;
}
ul.classic-list .book-card figure {
	text-align: center;
	height: 280px;
}
ul.classic-list .book-card figure img {
	width: auto;
	max-height: 270px;
	box-shadow: 0 0px 10px rgba(0,0,0,.1);
	transition: all .5s;
	margin: 0 auto;
}
ul.classic-list .book-card figure img:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,.5);
}
ul.classic-list .book-card figure .img-w {
	width: 100%;
}
ul.classic-list .book-card .title {
	font-size: 1.25rem;
	line-height: 1.5rem;
	letter-spacing: 0.1rem;
	min-height: 7rem;
}
ul.classic-list .book-card .title span {
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 1.4rem;
	margin-top: .5rem;
	display: block;
}
ul.classic-list .book-card .author {
	font-size: 1.125rem;
	font-weight: 300;
	margin: 1rem 0;
}
ul.classic-list .book-card a {
	display: flex;
	align-self: end!important;
}
ul.classic-list .book-card a.btn-shop {
	font-size: 1rem;
	padding: 5px 10px;
	border-bottom: 2px solid var(--red-50th);
	color: var(--black);
	transition: all 0.3s;
	align-items: flex-end;
	display: inline-block;
}
ul.classic-list .book-card a.btn-shop:hover {
	background-color: var(--red-50th);
	color: var(--white);
	padding: 5px 20px;
}

@media (max-width:1200px) {
	ul.classic-list li {
	width: 25%;
	}
	ul.classic-list li:nth-child(6),
	ul.classic-list li:nth-child(11),
	ul.classic-list li:nth-child(16),
	ul.classic-list li:nth-child(21),
	ul.classic-list li:nth-child(26) {
	clear: none;
	}
	
	ul.classic-list li:nth-child(5),
	ul.classic-list li:nth-child(9),
	ul.classic-list li:nth-child(13),
	ul.classic-list li:nth-child(17),
	ul.classic-list li:nth-child(21) {
	clear: both;
	}
}
@media (max-width: 991.98px) { 
	ul.classic-list li {
	width: 33.33%;
	}
	ul.classic-list li:nth-child(5),
	ul.classic-list li:nth-child(9),
	ul.classic-list li:nth-child(13),
	ul.classic-list li:nth-child(17),
	ul.classic-list li:nth-child(21) {
	clear: none;
	}
	ul.classic-list li:nth-child(4),
	ul.classic-list li:nth-child(7),
	ul.classic-list li:nth-child(10),
	ul.classic-list li:nth-child(13),
	ul.classic-list li:nth-child(16),
	ul.classic-list li:nth-child(19),
	ul.classic-list li:nth-child(22),
	ul.classic-list li:nth-child(25) {
	clear: both;
	}
}
@media (max-width: 768px) { 
	ul.classic-list .book-card figure {
	height: 200px;
		text-align: center;
	}
	ul.classic-list .book-card figure img {
	width: auto;
	max-height: 200px;
	}
}
@media (max-width: 576px) { 
	ul.classic-list li {
	width: 50%;
	}
	
	ul.classic-list li:nth-child(4),
	ul.classic-list li:nth-child(7),
	ul.classic-list li:nth-child(10),
	ul.classic-list li:nth-child(13),
	ul.classic-list li:nth-child(16),
	ul.classic-list li:nth-child(19),
	ul.classic-list li:nth-child(22),
	ul.classic-list li:nth-child(25) {
	clear: none;
	}
	ul.classic-list li:nth-child(odd) {
		clear: both;
	}
}

/*-- connect future --*/
.connect-content {
	letter-spacing: 0.1rem;
	margin: 10px 8%;
	padding-bottom: 60px;
	font-weight: 300;
}

.connect-content h6 {
	font-size: 1.75rem;
	margin: 4rem 0;
	line-height: 2.6rem;
}
.connect-content p {
	font-size: 1.125rem;
	line-height: 2.2rem;
	margin: 2rem 0;
	clear: both;
}
.connect-content figure {
	margin: 10px auto;
	text-align: center;
	padding-bottom: 10px;
}
.connect-content figure img {
	width: 60%;
	transition: all 0.5s;
}
.connect-content figure img:hover {
	box-shadow: 0 5px 18px rgba(0,0,0,.3);
	border-radius: 10px;
}
.connect-content figure figcaption {
	text-align: center;
	font-size: 1rem;
	font-weight: 300;
	margin-top: 1rem;
}

.connect-content .remarks {
	background-color: #eff0f4;
	padding: 20px 4px;
	margin: 3rem 0;
}

.connect-content .about_author {
	margin: 2rem 0 60px 0;
	line-height: 2rem;
}

@media (max-width:1200px) {
	.connect-content figure {
/*	margin-left: calc(50% - 150px);*/
		margin: 10px auto;
}
.connect-content figure img {
	width: 80%;
}
}

@media (max-width:768px) {
	
	.connect-content figure {
	margin: 0 auto;
	display: block;
		text-align: center;
}
.connect-content figure img {
	width: 100%;
	margin: 10px auto;
}
}


/*--   Portfolio  --*/  
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
	display: none;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
}

.portfolio .portfolio-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;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #e13627;
  border-left: 3px solid #e13627;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #e13627;
  border-right: 3px solid #e13627;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 1rem;
  color: #222222;
  font-weight: 300;
	text-align: center;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #222222;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 35px;
  margin: 0;
	line-height: 1.8rem;
	height: 75%;
	overflow-x: scroll;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #148af9;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

.portfolio-container {
	height: 80vh;
	overflow-y: scroll;
}

/*--   Portfolio Details  --*/  
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}




/*--   Services  --*/  
.services .active-card {
  text-align: center;
  padding: 30px 20px 50px 20px;
	letter-spacing: 0.1rem;
/*
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
*/
}

.services .active-date {
	color: var(--lake);
	font-size: 1.125rem;
	margin-bottom: 1rem;
}

.services .active-card h4 {
  font-weight: 300;
  margin: 10px 0 15px 0;
	padding-bottom: 20px;
  font-size: 2rem;
	position: relative;
}

.services .active-card h4::after {
	position: absolute;
	content: '';
	width: 340px;
	height: 2px;
	background-color: var(--red-50th);
	bottom: 0;
	 left: calc(50% - 170px);
}

.services .active-card h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

.services .active-card .content p {
  line-height: 1.8rem;
	padding: 10px 20px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.services .active-card .content .info {
	margin: 10px 0;
	
}

.services .content .btn {
	margin: 10px 0;
}

.services .active-card:hover {
/*
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
*/
}


/*--   Testimonials  --*/  
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

/*
.testimonials .title-left {
	color: var(--white);
	font-size: 1.8rem;
	text-align: end;
	width: 28%;
}
.testimonials .title-right {
	color: var(--white);
	font-size: 1.8rem;
	text-align: start;
	width: 28%;
}
*/

.testimonials .testimonial-item {
  text-align: center;
	padding: 20px;
	border:2px solid #FFF;
	width: 45%;
	margin: 0 auto;
	position: relative;
}

/*
.testimonials .testimonial-item::before {
  display: block;
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: -50px;
	border-bottom: 3px solid #FFF;
  transition: all 0.5s ease 0s;
  z-index: 9994;
	
}
.testimonials .testimonial-item::after {
  display: block;
  content: '';
  width: 50px;
  position: absolute;
  top: 50%;
  right: -50px;
	border-bottom: 3px solid #FFF;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
*/


.testimonials .testimonial-item .testimonial-img {
  width: 90%;
  margin: 20px auto;
}

.testimonials h2 {
	text-align: center;
  font-size: 2.2rem;
  color: var(--white);
  margin: 15px 0 15px 0;
	letter-spacing: 0.1rem;
}

.testimonials .testimonial-item h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin: 15px 0 10px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin: 15px 0 10px;
}
.testimonials .testimonial-item h5 {
  font-size: 1rem;
  color: var(--white);
  margin: 5px 0;
	font-weight: 300;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #FFF;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
	font-size: 1rem;
  margin: 0 auto 15px auto;
	color: var(--white);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
/*  opacity: 1;*/
}

/*
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #E13627;
}
*/

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
@media (max-width:1200px) {
	.testimonials .testimonial-item::before {
  width: 40px;
  left: -40px;
	
}
.testimonials .testimonial-item::after {
  width: 40px;
  right: -40px;
}
}

@media (max-width:992px) {
	.testimonials .testimonial-item::before {
  width: 30px;
  left: -30px;
	
}
.testimonials .testimonial-item::after {
  width: 30px;
  right: -30px;
}
}

@media (max-width:768px) {
	.testimonials .d-flex {
		display: block!important;
	}
	.testimonials .title-left {
	color: var(--white);
	font-size: 1.8rem;
	text-align: center;
	width: 100%;
		margin-bottom: 20px;
}
.testimonials .title-right {
	color: var(--white);
	font-size: 1.8rem;
	text-align: center;
	width: 100%;
		margin-top: 20px;
}

.testimonials .testimonial-item {
  text-align: center;
	padding: 20px;
	border:2px solid #FFF;
	width: 100%;
	margin: 0 auto;
	position: relative;
}
	.testimonials .testimonial-item::before {
  display: block;
  content: "";
  width: 3px;
		height: 20px;
  position: absolute;
  top: -20px;
  left: calc(50%);
		background-color: #FFF;
	border-bottom:none;
  transition: all 0.5s ease 0s;
  z-index: 9994;
	
}
.testimonials .testimonial-item::after {
  display: block;
  content: '';
  width: 3px;
	height: 20px;
  position: absolute;
	top:518px;
  bottom: 0;
  right: -50%;
	border-bottom: none;
	background-color: #FFF;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}
	.testimonials .testimonial-item {
		min-height: 520px;
	}
	
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*banner*/

.banner-item {
	text-align: center;
	margin: 0 auto 40px;
}
.banner-item img {
	width: 100%;
/*
	-webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
*/
	transition: all .5s;
}

.banner-item img:hover {
/*
	-webkit-filter: none; 
    filter: none;
*/
	-webkit-filter: saturate(200%); 
    filter: saturate(200%);
}

/*--   Footer  --*/  
#footer {
	background: url("../img/footer-img.svg");
	background-position: 120% top;
	background-repeat: no-repeat;
	background-size: 55%;
  color: #FFF;
  font-size: 1rem;
  text-align: left;
  padding: 300px 0 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", '微軟正黑體', sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer img {
	width: 300px;
}

#footer p {
  font-size: 0.9375rem;
  padding: 0;
	letter-spacing: 0.1rem;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 1.375rem;
  display: inline-block;
  background: #60b3c0;
  color: #fff;
  line-height: 1;
  padding: 12px 0;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 46px;
  height: 46px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #FFF;
  color: #60b3c0;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
	font-size: 0.9375rem;
}

#footer .copyright a {
	color: #FFF;
}

#footer .credits {
  font-size: 13px;
}

@media (max-width:992px) {
	#footer {
	background: url("../img/footer-img.svg");
	background-position: 120% top;
	background-repeat: no-repeat;
	background-size: 60%;
  color: #FFF;
  font-size: 1rem;
  text-align: left;
  padding: 300px 0 30px 0;
	}
	#footer img {
	width: 250px;
}
}

@media (max-width:768px) {
	#footer {
	background: url("../img/footer-img.svg");
	background-position: 120% top;
	background-repeat: no-repeat;
	background-size: 70%;
  color: #FFF;
  font-size: 1rem;
  text-align: left;
  padding: 300px 0 30px 0;
	}
}

@media (max-width:576px) {
	#footer {
	background: url("../img/footer-img.svg");
	background-position: 130% top;
	background-repeat: no-repeat;
	background-size: 95%;
  color: #FFF;
  font-size: 1rem;
  text-align: left;
  padding: 450px 0 30px 0;
	}
		#footer img {
	width: 200px;
}
}

/*  rellax */
.rellax-img {
	position: relative;
}
.rellax-img img {
	position: absolute;
	padding: 10px;
}
.rellax-img img.img-start {
	left: 0;
}
.rellax-img img.img-end {
	right: 0;
}

.w-5 {
	width: 5%;
}
.w-10 {
	width: 10%;
}
.w-14 {
	width: 14%;
}
.w-18 {
	width: 18%;
}
.z-front {
	z-index: 1996;
}

@media (max-width: 991.98px) { 
	.w-5 {
	width: 10%;
}
.w-10 {
	width: 16%;
}
.w-14 {
	width: 20%;
}
.w-18 {
	width: 25%;
}
}

@media (max-width: 768px) { 
	.w-5 {
	width: 20%;
	display: none;
}
.w-10 {
	width: 25%;
	display: none;
}
.w-14 {
	width: 30%;
	display: none;
}
.w-18 {
	width: 40%;
	display: none;
}
	.w-75 {
		width: 50%!important;
	}
}

/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) { 
}

/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) { 
}

/*`lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) { 
}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { 
}

/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) { 
}