@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url('https://fonts.googleapis.com/css?family=Lato|Nanum+Gothic');
@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
  font-family: "Lato", "Nanum Gothic", sans-serif;
}

a {
  color: #0770b1;
}

a:hover, a:active, a:focus {
  color: #0770b1;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", "Nanum Gothic", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #0770b1;
  color: #fff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header #logo {
  float: left;
}

#header #logo a{
	font-size: 20px;
	color: bisque;
	line-height: 20px;
	font-weight: 700;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: rgba(52, 59, 64, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

/*--------------------------------------------------------------
# Main Section
--------------------------------------------------------------*/
#main {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (min-width: 1024px) {
  #main {
    background-attachment: fixed;
  }
}

#main:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#main .main-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;
}

#main h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #main h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#main h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
  text-align: left;
  background: linear-gradient(90deg, #8c8c8c, #fff, #8c8c8c);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: textanimate 8s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes textanimate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}

@media (max-width: 768px) {
  #main h2 {
  	text-align: center;
  	padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


#main .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#main .btn-get-started:hover {
  background: #0770b1;
  border: 2px solid #0770b1;
}

#first {
  width: 100%;
  height: 55vh;
  position: relative;
}

@media (min-width: 1024px) {
  #first {
    background-attachment: fixed;
  }
}

#first:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#first .main-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;
}

#first h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #first h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#first h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #first h2 {
  	text-align: center;
  	padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#first .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#first .btn-get-started:hover {
  background: #0770b1;
  border: 2px solid #0770b1;
}

#second {
  width: 100%;
  height: 42.5vh;
  position: relative;
}

@media (min-width: 1024px) {
  #second {
    background-attachment: fixed;
  }
}

#second:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#second .main-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;
}

#second h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #second h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#second h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #second h2 {
  	text-align: center;
  	padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#second .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#second .btn-get-started:hover {
  background: #0770b1;
  border: 2px solid #0770b1;
}

#third {
  width: 100%;
  height: 30vh;
  position: relative;
}

@media (min-width: 1024px) {
  #third {
    background-attachment: fixed;
  }
}

#third:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#third .main-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;
}

#third h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #third h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#third h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #third h2 {
  	text-align: center;
  	padding: 0 20px;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#third .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#third .btn-get-started:hover {
  background: #0770b1;
  border: 2px solid #0770b1;
}

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

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

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

.nav-menu ul li {
  min-width: 100px;
  text-align: center;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0770b1; /*#2dc997*/
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #0770b1;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

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

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #0770b1;
}

#mobile-nav ul .menu-item-active {
  color: #0770b1;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

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

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* Video
-------------------------------------------*/
video{
	border-radius: 6px;
	width: 100%;
	max-width: 100%;
}

.video-wrapper{
	display: block;
	border: none;
	height: 35vh;
	width: 100%;
	margin-bottom: 20px;
}

.video-overlay{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	pointer-event: none;
	opacity: 0.3;
}

.video-content{
	position: relative;
	text-align: center;
	color: #fff;
	margin: 150px 0;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.video-content h2{
	font-size: 34px;
	margin: 0 0 10px;
}
.video-content p{
	font-size: 20px;
	margin: 0;
}

.video-area{
	display: block;
	position: absolute;
	transition: 0.3s, 0.3s, 0.3s, 0.3s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 5px 10px rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 800px) {
  .video-area {
    left: 10%;
    right: 10%;
    top: 10%;
    bottom: 10%;
    font-size: 24px;
  }
}
@media screen and (min-width: 376px) and (max-width: 800px) {
  .video-area {
    left: 10px;
    right: 10px;
    top: 30px;
    bottom: 30px;
    font-size: 20px;
  }
}
@media screen and (max-width: 376px) {
  .video-area {
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  }
}

.video-area:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 100%;
  height: 0;
  border-top: 5px solid #5e0000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

#video-player {
  display: block;
  position: absolute;
  top: 0;
  bottom: 64px;
  left: 0;
  right: 0;
  background-color: #3498db;
}

#media-test {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 30px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #50d8af;
}

/* ===================================================================
 * # about
 *
 * ------------------------------------------------------------------- */
.s-about {
  padding-top: 18rem;
  padding-bottom: 18rem;
  background-color: #ffffff;
  position: relative;
}


/* ------------------------------------------------------------------- 
 * ## about process
 * ------------------------------------------------------------------- */
.numbering-area-half .numbering-text:nth-child(2n+1){
	clear: both;
}

.numbering-text-full{
	float: left;
	padding: 0 20px;
}

.numbering-text-half{
	float: left;
	width: 50%;
	padding: 0 20px;
}

@media (max-width: 768px) {
  .numbering-text-half {
    width: 100%;
  }
}

.numbering {
  position: relative;
}
.numbering_vline-left,
.numbering_vline-right {
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
}
.process__vline-left {
  top: 0;
  left: calc(20px + 24px);
}
.process__vline-right {
  top: 0;
  left: calc(50% + 20px + 24px);
}
.process h4 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-top: 0;
  position: relative;
}
.process__col {
  position: relative;
  min-height: 24.6rem;
}
.process__col::before {
  content: attr(data-item);
  display: block;
  font-family: "metropolis-semibold", sans-serif;
  font-size: 2.1rem;
  text-align: center;
  color: #ffffff;
  background-color: #26bfb5;
  height: 48px;
  width: 48px;
  line-height: 48px;
  border-radius: 50%;
  box-shadow: 0 0 0 18px #ffffff;
  position: absolute;
  left: 20px;
  top: 0;
}
.process__text {
  margin-left: 7.5rem;
  padding-right: 30px;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * about
 * ------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {
  .s-about {
    padding-top: 15rem;
    padding-bottom: 15rem;
  }

  .process__vline-left {
    left: calc(15px + 22px);
  }
  .process__vline-right {
    left: calc(50% + 15px + 22px);
  }
  .process h4 {
    font-size: 2.6rem;
  }
  .process__col::before {
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 1.8rem;
    left: 15px;
  }
  .process__text {
    margin-left: 6.8rem;
    padding-right: 0;
  }
}
@media only screen and (max-width: 800px) {
  .s-about {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }

  .process {
    margin-top: 3rem;
  }
  .process__vline-right {
    display: none;
  }
  .process__col {
    min-height: 0;
  }
  .process__col::before {
    top: -3px;
  }
}
@media only screen and (max-width: 600px) {
  .process__vline-left {
    left: calc(10px + 22px);
  }
  .process__col::before {
    top: -3px;
    left: 10px;
  }
  .process h4 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 400px) {
  .s-about {
    padding-top: 9.6rem;
  }

  .process h4 {
    font-size: 2.2rem;
    padding-left: 5.4rem;
    margin-bottom: 1.8rem;
  }
  .process__vline-left {
    display: none;
  }
  .process__col {
    margin-bottom: 4.2rem;
  }
  .process__col::before {
    height: 36px;
    width: 36px;
    line-height: 36px;
    font-size: 1.6rem;
    top: -3px;
    left: 0;
  }
  .process__text {
    margin-left: 0;
  }
}

/* About Us Section
--------------------------------*/
#about {
  background: #fff;
  padding: 80px 0;
}

#about .about-container .background {
  min-height: 300px;
  /*background: url(../image/content_1.jpg) center top no-repeat;*/
  margin-bottom: 10px;
}

#about .about-container .content {
  background: #fff;
  margin-bottom: 20px;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #0770b1;
}

#about .about-container .icon-box .icon i {
  color: #0770b1;
  font-size: 24px;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Organization Section
--------------------------------*/
#organization{
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

.org--main {
  padding: 0;
  /* bootstrap approach */
  margin: 0 -1em;
  word-break: break-word;
}

.org--mainentry,
.org--department,
.org--section {
  list-style: none;
}

.org--departments {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
}

.org--departments li {
  flex: 1 0 33.333%;
}
@media (max-width: 768px) {
  .org--departments li {
    flex: 1 0 100%;
  }
}

.org--main--title {
  display: flex;
  border: 1px solid #0d306a;
  padding: 1em;
  margin: 2em auto;
  justify-content: center;
  text-align: center;
  position: relative;
  font-weight: bold;
  max-width: calc(50% - 2em);
  background-color: #0d306a;
  color: #fff;
}
@media (max-width: 768px) {
  .org--main--title {
    max-width: calc(100% - 4em);
  }
}
.org--main--title:before {
  content: "";
  width: 1px;
  height: calc(2em + 1px);
  position: absolute;
  background: #0770b1;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .org--main--title:before {
    display: none;
  }
}
.org--main--title:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #0770b1;
  top: calc(100% + 2em + 1px);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .org--main--title:after {
    display: none;
  }
}
.has-three .org--main--title:after {
  width: calc(140.666%);
  left: -20.333%;
}

@media (max-width: 1200px) {
  .has-three .org--main--title:after {
  width: calc(141.999%);
  left: -20.999%;
  }
}

@media (max-width: 991px) {
  .has-three .org--main--title:after {
  width: calc(144.999%);
  left: -22.333%;
  }
}

.org--departments--title {
  display: flex;
  border: 1px solid #0d306a;
  padding: 1em;
  margin: 2em 1em;
  justify-content: center;
  position: relative;
  background-color: #0770b1;
  color: #fff;
}
.org--departments--title:before {
  content: "";
  width: 1px;
  height: 2em;
  position: absolute;
  background: #0770b1;
  top: calc(-2em - 1px);
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .org--departments--title:before {
    display: none;
  }
}
.org--departments--title:after {
  content: "";
  width: 1px;
  height: 2em;
  position: absolute;
  background: #0770b1;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.org--sections {
  padding: 0;
}

.org--section {
  margin: 0 1em;
  border: 1px solid #0770b1;
  border-bottom: none;
  text-align: center;
}
.org--section:last-child {
  border-bottom: 1px solid;
}

.org--sections .section .richtext ul {
  counter-reset: item 0;
}

.org--sections .section .richtext ul li {
  list-style-type: circle;
}

.org--hiddeninput {
  visibility: hidden;
  height: 0;
  position: absolute;
}

.org--section--link {
  position: relative;
  padding: 1em;
}

.org--section--toggler {
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-transform: none;
}
.org--section--link .org--section--toggler:after {
  display: inline-block;
  vertical-align: middle;
  content: "";
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTUgOSI+Cgk8cGF0aCBmaWxsPSIjMzMzMzMzIiBkPSJNNy44NjcgOC41NzRsLTcuMjItNy4yMi43MDctLjcwOEw3Ljg2NyA3LjE2IDE0LjA1Ljk4bC43MDYuNzA3Ii8+Cjwvc3ZnPgo=") no-repeat;
  background-size: contain;
  width: 18px;
  height: 12px;
  transition: -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.org--accordion {
  height: 0;
  overflow: hidden;
  background: white;
  transition: padding 0.5s ease-in-out;
  padding: 0;
}

/* :checked */
.org--hiddeninput:checked ~ .org--accordion {
  height: auto;
  padding: 1em 0;
}

/* :checked */
.org--hiddeninput:checked ~ label .org--section--toggler:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  transition: -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.org--hiddeninput:checked ~ label .org--section--toggler .org--accordion {
  height: auto;
  padding: 1em 0;
}

.org--accordion--content {
  margin: 1em;
}

/* History
--------------------------------*/
#history{
	background: #fff;
	background-size: cover;
  	padding: 80px 0 60px 0;
  	display: flex;
  	aling-items: center;
  	justify-content: center;
  	width: 100%;
  	margin: 0;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
  			box-sizing: border-box;
  	
}

#history *{
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
  			box-sizing: border-box;
}

/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#history .container{
		margin-left: 0;
		margin-right: auto;
	}
}

#history .vertical-timeline{
	width: 60%;
	max-width: 800px;
	padding: 100px 50px;
	position: relative;
	box-shadow: 0.5rem 0 0.5rem 2rem 0 rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
 	#history .vertical-timeline{
		width: 50%;
		padding: 10px 5px;
		position: relative;
		box-shadow: 0.5rem 0 0.5rem 2rem 0 rgba(0,0,0,0.2);
	}
	
	#history .vertical-timeline:before{
		left: calc(33%) !important;
	}
	
	#history .entry .title{
		margin-bottom: 0.5em;
		float: left;
		width: 33%;
		padding-right: 30px;
		text-align: right;
		position: relative;
	}
	
	#history .entry .body{
		margin: 0 0 1em !important;
		float: right;
		width: 66%;
		padding-left: 30px;
	}
}

@media (max-width: 768px) {
 	#history .vertical-timeline{
		width: 100%;
		padding: 10px 5px;
		position: relative;
		box-shadow: 0.5rem 0 0.5rem 2rem 0 rgba(0,0,0,0.2);
	}
}

#history .vertical-timeline:before{
	content: "";
	position: absolute;
	top: 0px;
	left: calc(33% + 15px);
	bottom: 0px;
	width: 4px;
	background: #ddd;
}

#history .vertical-timeline:after{
	content: "";
	display: table;
	clear: both;
}

#history .entry{
	clear: both;
	text-align: left;
	position: relative;
}
#history .entry .title{
	margin-bottom: 0.5em;
	float: left;
	width: 33%;
	padding-right: 30px;
	text-align: right;
	position: relative;
}

#history .entry .title:before{
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border: 4px solid #0770b1;
	background-color: #fff;
	border-radius: 100%;
	top: 5%;
	right: -10px;
	z-index: 99;
}

#history .entry .title h3{
	margin: 0;
	font-size: 120%;
}

#history .entry .title p{
	margin: 0;
	font-size: 100%;
}

#history .entry .body{
	margin: 0 0 3em;
	float: right;
	width: 66%;
	padding-left: 30px;
}

#history .entry .body p {
  line-height: 1.4em;
}
#history .entry .body p:first-child {
  margin-top: 0;
  font-weight: 400;
}
#history .entry .body ul {
  color: #aaa;
  padding-left: 0;
  list-style-type: none;
}
#history .entry .body ul li:before {
  content: "–";
  margin-right: 0.5em;
}

#history .gallery{
	width: 40%;
	height: 0px;
	padding-bottom: 50%;
	overflow: hidden;
	bottom: 90%;
	left: 55%;
	margin-bottom: -50%;
	position: relative;
}

@media (max-width: 991px) {
 	#history .gallery{
		bottom: 98%;
		left: 55%;
	}
}

@media (max-width: 768px) {
 	#history .gallery{
		width: 100%;
		height: 0px;
		top: 20px;
		left: 10px;
		padding-bottom: 100%;
		margin-bottom: 0;
	}
}

#history .gallery img{
	position: absolute;
	-webkit-animation: his-slidy 9s infinite;
    -moz-animation: his-slidy 9s infinite;
    -ms-animation: his-slidy 9s infinite;
    -o-animation: his-slidy 9s infinite;
	animation: his-slidy 9s infinite;
	opacity: 0;
	width: 100%;
	height: 100%;
}

@-webkit-keyframes his-slidy { 
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }
@-moz-keyframes his-slidy { 
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }
@-ms-keyframes his-slidy { 
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }
@-o-keyframes his-slidy { 
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }
@keyframes his-slidy { 
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }
@keyframes his-slidy{
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }
@keyframes his-slidy{
	33.3%{opacity: 1;}
	66.6%{opacity: 0;} }

#history .gallery img:nth-child(3){animation-delay: 0s;}
#history .gallery img:nth-child(2){animation-delay: 3s;}
#history .gallery img:nth-child(1){animation-delay: 6s;}

/* Certification Section
--------------------------------*/
#certification{
	background: #fff;
	background-size: cover;
  	padding: 80px 0 60px 0;
  	display: flex;
  	justify-content: center;
  	width: 100%;
  	margin: 0;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
  			box-sizing: border-box;
  	
}

/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#certification .container{
		margin-left: 0;
		margin-right: auto;
	}
}

#certification *{
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
  			box-sizing: border-box;
}

#certification .vertical-timeline{
	width: 60%;
	max-width: 800px;
	padding: 100px 50px;
	position: relative;
	box-shadow: 0.5rem 0 0.5rem 2rem 0 rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
 	#certification .vertical-timeline{
		width: 50%;
		padding: 10px 5px;
		position: relative;
		box-shadow: 0.5rem 0 0.5rem 2rem 0 rgba(0,0,0,0.2);
	}
	
	#certification .vertical-timeline:before{
		left: calc(33%) !important;
	}
	
	#certification .entry .title{
		margin-bottom: 0.5em;
		float: left;
		width: 33%;
		padding-right: 30px;
		text-align: right;
		position: relative;
	}
	
	#certification .entry .body{
		margin: 0 0 1em !important;
		float: right;
		width: 66%;
		padding-left: 30px;
	}
}

@media (max-width: 768px) {
 	#certification .vertical-timeline{
		width: 100%;
		padding: 10px 5px;
		position: relative;
		box-shadow: 0.5rem 0 0.5rem 2rem 0 rgba(0,0,0,0.2);
	}
}

#certification .vertical-timeline:before{
	content: "";
	position: absolute;
	top: 0px;
	left: calc(33% + 15px);
	bottom: 0px;
	width: 4px;
	background: #ddd;
}

#certification .vertical-timeline:after{
	content: "";
	display: table;
	clear: both;
}

#certification .entry{
	clear: both;
	text-align: left;
	position: relative;
}
#certification .entry .title{
	margin-bottom: 0.5em;
	float: left;
	width: 33%;
	padding-right: 30px;
	text-align: right;
	position: relative;
}

#certification .entry .title:before{
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border: 4px solid #0770b1;
	background-color: #fff;
	border-radius: 100%;
	top: 5%;
	right: -10px;
	z-index: 99;
}

#certification .entry .title h3{
	margin: 0;
	font-size: 120%;
}

#certification .entry .title p{
	margin: 0;
	font-size: 100%;
}

#certification .entry .body{
	margin: 0 0 3em;
	float: right;
	width: 66%;
	padding-left: 30px;
}

#certification .entry .body p {
  line-height: 1.4em;
}
#certification .entry .body p:first-child {
  margin-top: 0;
  font-weight: 400;
}
#certification .entry .body ul {
  color: #aaa;
  padding-left: 0;
  list-style-type: none;
}
#certification .entry .body ul li:before {
  content: "–";
  margin-right: 0.5em;
}

#certification .gallery{
	width: 40%;
	height: 0px;
	padding-bottom: 50%;
	overflow: hidden;
	bottom: 90%;
	left: 55%;
	margin-bottom: -50%;
	position: relative;
}

@media (max-width: 991px) {
 	#certification .gallery{
		bottom: 98%;
		left: 55%;
	}
}

@media (max-width: 768px) {
 	#certification .gallery{
		width: 100%;
		height: 0px;
		top: 20px;
		left: 10px;
		padding-bottom: 100%;
		margin-bottom: 0;
	}
}

#certification .gallery img{
	position: absolute;
	-webkit-animation: cert-slidy 15s infinite;
    -moz-animation: cert-slidy 15s infinite;
    -ms-animation: cert-slidy 15s infinite;
    -o-animation: cert-slidy 15s infinite;
	animation: cert-slidy 15s infinite;
	opacity: 0;
	width: 100%;
	height: 100%;
}

@-webkit-keyframes cert-slidy { 
	20%{opacity: 1;}
	40%{opacity: 0;} }
@-moz-keyframes cert-slidy { 
	20%{opacity: 1;}
	40%{opacity: 0;} }
@-ms-keyframes cert-slidy { 
	20%{opacity: 1;}
	40%{opacity: 0;} }
@-o-keyframes cert-slidy { 
	20%{opacity: 1;}
	40%{opacity: 0;} }
@keyframes cert-slidy { 
	20%{opacity: 1;}
	40%{opacity: 0;} }
@keyframes cert-slidy{
	20%{opacity: 1;}
	40%{opacity: 0;}
}

#certification .gallery img:nth-child(5){animation-delay: 0s;}
#certification .gallery img:nth-child(4){animation-delay: 3s;}
#certification .gallery img:nth-child(3){animation-delay: 6s;}
#certification .gallery img:nth-child(2){animation-delay: 9s;}
#certification .gallery img:nth-child(1){animation-delay: 12s;}

/* Construction Section
--------------------------------*/
#construction {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

.timeline-navigator ul{
	list-style-type: none;
}

.timeline-navigator li{
	float: left;
	display: inline-block;
}

.timeline-navigator li > a{
	color: #3f444c;
	padding: 10px 20px;
	font-size: 20px;
}

.timeline-navigator li > a:hover{
	color: #ffd402;
	background-color: #3f444c;
	border-radius: 5px;
}

.horizontal-timeline ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.horizontal-timeline ul::after{
	content: "";
	display: block;
	clear: both;
}

.horizontal-timeline ul.timeline{
	display: flex;
	flex-wrap: wrap;
	padding: 50px 30px;
}

.horizontal-timeline ul.timeline > li{
	width: calc(100% / 3);
}

.horizontal-timeline ul .year{
	color: #ffd402;
	background: #3f444c;
	display: block;
	position: relative;
	padding-left: 30px;
	line-height: 24px;
	font-weight: bold;
	font-size: 18px;
}

.horizontal-timeline ul .year::before{
	content: "";
	width: 40px;
	height: 40px;
	position: absolute;
	background: #ffd402;
	border-radius: 50%;
	left: -24px;
	top: calc( (40 - 24) / 2 * -1px );
}

.horizontal-timeline ul .year.new {
  border-radius: 0 24px 24px 0;
}
.horizontal-timeline ul .year.new::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border: 20px solid #3f444c;
  box-sizing: border-box;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  right: -30px;
  top: -9.5px;
}
.horizontal-timeline ul .content {
  border-left: 8px solid #ffd402;
  margin-left: -8px;
  padding: 15px 0;
  padding-right: 24px;
  margin-bottom: 30%;
}
.horizontal-timeline ul .content > li {
  padding-left: 20px;
  border-bottom: 4px solid #eef4f7;
  padding-bottom: 8px;
  position: relative;
  margin-left: -8px;
}
.horizontal-timeline ul .content > li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.horizontal-timeline ul .content > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #eef4f7;
  left: 2px;
  top: 8px;
}

@media screen and (max-width: 1140px) {
  .horizontal-timeline ul.timeline > li {
    width: calc( 100% / 3 );
  }
}
@media screen and (max-width: 991px) {
  .horizontal-timeline ul.timeline > li {
    width: calc( 100% / 2 );
  }
}
@media screen and (max-width: 767px) {
  .horizontal-timeline ul.timeline {
    display: block;
  }
  .horizontal-timeline ul.timeline > li {
    width: 100%;
  }
  .horizontal-timeline ul .content {
	  margin-bottom: 10%;
  }
}

/* Equipment
--------------------------------*/
#equipment {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
  -webkit-box-sizing: border-box;
  	 -moz-box-sizing: border-box;
  		  box-sizing: border-box;
}

#equipment * {
	-webkit-box-sizing: border-box;
  	   -moz-box-sizing: border-box;
  		    box-sizing: border-box;
}

.equipment-table{
	margin: 0 0 40px 0;
	width: 55%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	display: table;
	float:left;
}

@media screen and (max-width: 580px) {
  .equipment-table {
    display: block;
  }
}

.equipment-table .row{
	display: table-row;
	background: #f6f6f6;
}

.equipment-table .row:nth-of-type(odd) {
  background: #e9e9e9;
}

.equipment-table .row.header{
	font-weight: 900;
	color: #ffffff;
	background: #0770b1;
}

@media screen and (max-width: 580px) {
	.equipment-table{
		width: 100%;
	}

	.equipment-table .row {
		padding: 14px 0 7px;
		display: block;
	}
	.equipment-table .row.header {
		padding: 0;
		height: 6px;
	}
	.equipment-table .row.header .cell {
		display: none;
	}
	.equipment-table .row .cell {
		margin-bottom: 10px;
	}
	.equipment-table .row .cell:before {
		margin-bottom: 3px;
		content: attr(data-title);
		min-width: 98px;
		font-size: 10px;
		line-height: 10px;
		font-weight: bold;
		text-transform: uppercase;
		color: #969696;
		display: block;
	}
}

.equipment-table .cell {
  padding: 6px 12px;
  display: table-cell;
}

@media screen and (max-width: 580px) {
  .equipment-table .cell {
    padding: 2px 16px;
    display: block;
  }
}

.equipment-image {
	width: 40%;
	float: right;
}

@media screen and (max-width: 580px) {
  	.equipment-image {
		width: 100%;
	}
}


.equipment-image a{
	color: #3c376f;
	text-decoration: none;
	font-size: 2rem;
	padding: 20px 5px;
}

.equipment-image a span i{
	position: relative;
	display: block;
	cursor: pointer;
	outline: 0;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
	    -ms-transform: translateX(0px);
         -o-transform: translateX(0px);
	    	transform: translateX(0px);
    -webkit-transition: transform 0.3s ease;
       -moz-transition: transform 0.3s ease;
        -ms-transition: transform 0.3s ease;
         -o-transition: transform 0.3s ease;
    	    transition: transform 0.3s ease;
}

.equipment-image a.previous span:hover i{
	-webkit-transform: translateX(-10px) scale(1.2);
	   -moz-transform: translateX(-10px) scale(1.2);
	    -ms-transform: translateX(-10px) scale(1.2);
         -o-transform: translateX(-10px) scale(1.2);
	        transform: translateX(-10px) scale(1.2);
}

.equipment-image a.next span:hover i{
	-webkit-transform: translateX(10px) scale(1.2);
  	   -moz-transform: translateX(10px) scale(1.2);
  	    -ms-transform: translateX(10px) scale(1.2);
         -o-transform: translateX(10px) scale(1.2);
  			transform: translateX(10px) scale(1.2);
}

.equipment-slider-nav ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-contnet: center;
}

.equipment-slider-nav li{
	-webkit-box-flex: 2;
	flex: 2;
	text-align: center;
	display: -webkit-box;
	display: flex;
}

.equipment-slider img{
	width: 100%;
	max-width: 100%;
	height: 45vh;
	display: none;
	-webkit-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
  	   -moz-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
  	    -ms-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
         -o-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
  			box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
}

.equipment-slider span{
	width: 100%;
	max-width: 100%;
	display: none;
	-webkit-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
  	   -moz-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
  	    -ms-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
         -o-box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
  			box-shadow: 10px 10px 20px 0 rgba(94,47,59,0.2);
}

.equipment-slider .imagepart.active img{
	width: 100%;
	max-width: 100%;
	height: 45vh;
	display: block;
	-webkit-animation: fadeImg 0.8s;
  	   -moz-animation: fadeImg 0.8s;
  	    -ms-animation: fadeImg 0.8s;
         -o-animation: fadeImg 0.8s;
  			animation: fadeImg 0.8s;
}

@media screen and (max-width: 991px) {
  .equipment-slider img{
	height: 35vh;
  }
  .equipment-slider .imagepart.active img{
  	height: 35vh;
  }
}
@media screen and (max-width: 767px) {
  .equipment-slider img{
	height: 20vh;
  }
  .equipment-slider .imagepart.active img{
  	height: 35vh;
  }
}

.equipment-slider .imagepart.active span{
	position: relative; 
	text-align: center;
	bottom: 0;
  	background: rgba(0,0,0,0.4);
  	color: #fff; 
  	font-size: 2rem; 
 	padding: .6rem; 
  	width: 100%;
	display: block;
	-webkit-animation: fadeImg 0.8s;
  	   -moz-animation: fadeImg 0.8s;
  	    -ms-animation: fadeImg 0.8s;
         -o-animation: fadeImg 0.8s;
  			animation: fadeImg 0.8s;
}

.equipment-slider-nav a{
	flex-basis: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.equipment-slider-nav span{
	display: block;
	width: 100%;
}

@-webkit-keyframes fadeImg {
  from {
    opacity: 0; 
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeImg {
  from {
    opacity: 0; 
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeImg {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Partners
--------------------------------*/
#partners {
  background: #fff;
  background-size: cover;
  padding: 80px 0 60px 0;
}

#partners .horizontal-timeline ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#partners .horizontal-timeline ul::after{
	content: "";
	display: block;
	clear: both;
}

#partners .horizontal-timeline ul.timeline{
	display: flex;
	flex-wrap: wrap;
	padding: 50px 30px;
}

#partners .horizontal-timeline ul.timeline > li{
	width: calc(100% / 4);
	list-style: none;
}

#partners .horizontal-timeline ul .year{
	color: #ffd402;
	background: #3f444c;
	display: block;
	position: relative;
	padding-left: 30px;
	line-height: 24px;
	font-weight: bold;
	font-size: 18px;
}

#partners .horizontal-timeline ul .year::before{
	content: "";
	width: 40px;
	height: 40px;
	position: absolute;
	background: #ffd402;
	border-radius: 50%;
	left: -24px;
	top: calc( (40 - 24) / 2 * -1px );
}

#partners .horizontal-timeline ul .year.new {
  border-radius: 0 24px 24px 0;
}
#partners .horizontal-timeline ul .year.new::after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  border: 20px solid #3f444c;
  box-sizing: border-box;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  right: -30px;
  top: -9.5px;
}
#partners .horizontal-timeline ul .content {
  border-left: 8px solid #ffd402;
  margin-left: -8px;
  padding: 15px 0;
  padding-right: 24px;
  margin-bottom: 30%;
}
#partners .horizontal-timeline ul .content > li {
  padding-left: 20px;
  border-bottom: 4px solid #eef4f7;
  padding-bottom: 8px;
  position: relative;
  margin-left: -8px;
}
#partners .horizontal-timeline ul .content > li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
#partners .horizontal-timeline ul .content > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #eef4f7;
  left: 2px;
  top: 8px;
}

@media screen and (max-width: 1140px) {
  #partners .horizontal-timeline ul.timeline > li {
    width: calc( 100% / 3 );
  }
}
@media screen and (max-width: 991px) {
  #partners .horizontal-timeline ul.timeline > li {
    width: calc( 100% / 2 );
  }
}
@media screen and (max-width: 767px) {
  #partners .horizontal-timeline ul.timeline {
    display: block;
  }
  #partners .horizontal-timeline ul.timeline > li {
    width: 100%;
  }
  #partners .horizontal-timeline ul .content {
	  margin-bottom: 10%;
  }
}

/* Text Section
--------------------------------*/
.textsection {
  background: #fff;
  padding: 80px 0 60px 0;
}

.foldable{
	background-color: rgba(255, 255, 255, 0);
	border-bottom: 1px solid #3498db;
	cursor: pointer;
	color: black;
	padding: 20px;
	margin: 10px;
	max-height: 60px;
	overflow: hidden;
	transition: all 0.4s;
}

.foldable *{
	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}

.foldable.active{
	background-color: rgba(255,255,255,0.9);
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
	z-index: 200;
	color:#444;
	max-height:3000px;
	padding:20px 30px;
	margin: 20px 10px;
	transition: all 0.2s,max-height 4.8s;
}

.foldable h2{
	font-size: 18px;
	line-height: 20px;
	position: relative;
	font-weight: 700;
}

.foldable p{
	margin-bottom: 10px;
}

.slide{
	box-shadow: none !important;
}
.transparent{
  	background-color: rgba(255,255,255,0) !important;
  	color:#fff !important;
  	box-shadow:none !important;
  	margin:0px !important;
 	padding:10px !important
}

.foldable h2::after{
	content: "+";
	text-align: center;
	position: absolute;
	padding-left: 1px;
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 50%;
	font-size: 22px;
	line-height: 30px;
	opacity: 0.6;
	right: 0;
	top: -6px;
}

.foldable:hover h2::after{
	opacity:1
}

.foldable.active h2::after{
	content: "-";
}

.foldable .goDetailBtn{
	float: right;
	border : 0;
	background-color : #fff;
	color: darkgray;
	font-size: 15px;
}

.foldable .goDetailBtn:hover{
	border : 0;
	background-color : #fff;
	color: #0770b1;
	font-size: 15px;
	font-weight: bold;
}

/* Branch Office Infomation
--------------------------------*/
.maps iframe{
	pointer-events: none;
}

#contractMap{
	height: 550px;
}

#office {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}

.office-map{
	position: relative;
}

/*.office-map .address-list{
	position: absolute;
	top: 60px;
	right: 30px;
	z-index: 2;
}*/

/*#listMapId{
	height: auto;
	width: 100%;
	max-width: 500px;
	list-style: none;
	display: inline-block;
}*/
#listMapId{
	height: auto;
	width: 100%;
	list-style: none;
	display: inline-block;
	padding: 0;
}

#listMapId li{
	cursor: pointer;
	float: left;
	width: 50%;
	height: 75px;
	background-color: #F1F1EF;
	box-shadow: 1px 10px 20px 0px rgba(218, 215, 206,0.8);
	z-index: 2;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	border-left: 4px solid #0770b1;
	padding-left: 10px;
}

@media screen and (max-width: 767px) {
  #listMapId li{
	width: 100%;
  }
}

.list-area {
  width: 25%;
  position: relative;
  float: left;
  height: 20px;
  top:50%;
  margin-top: -10px;
}
.list-area > p {
  font-size: 14px;
  font-weight: 700;
}

.list-address {
  width: 75%;
  position: relative;
  float: left;
  margin-top: 15px;
}
.list-address > h4 {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.list-address > p {
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  color: #999;
  margin: 0;
}

.listFormat > .list-area{
	color: #0770b1;
	padding-left: 10px;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
  margin-top: 20px;
}

#contact .info i {
  font-size: 32px;
  color: #0770b1;
  float: left;
}

#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-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #0770b1;
  color: #fff;
}

#contact .form #sendmessage {
  color: #0770b1;
  border: 1px solid #0770b1;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

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

#contact .form button[type="submit"] {
  background: #0770b1;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: #51d8ad;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #343b40;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
}

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