body {
    font-family: Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    color: #444444;
    background-color: ghostwhite;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

a {
  color: #1f63ab;
}

a:hover {
  color: #007bc1;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.main {
    /*margin-top: 70px;*/
}

.btn-sea {
    transition: all 0.3s ease 0s;
    font-size: 14px;
    color: #fff;
    background-color: #0166ac;
}

.btn-sea:hover {
    color: #fff;
    background-color: #007bc1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  /*height: 70px;*/
  z-index: 997;
  transition: all 0.5s;
  padding: 10px 0 0 0;
  background-color: #fff;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

@media (max-width: 992px) {
  #header {
    top: 0;
    background: rgba(26, 24, 22, 0.85);
  }
}

@media (max-width: 420px) {
    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 30px;
    }
}

/*--------------------------------------------------------------
# Languages bar
--------------------------------------------------------------*/
#header .container {
    position: relative;
    text-align: center;
}

#header #lang {
    z-index: 1000;
    position: absolute;
    bottom: -15px;
    right: 0px;
}

#header #lang li {
    display: inline-block;
}

#header #lang li a {
    font-size: 14px;
    font-weight: bold;
    color: darkcyan;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  border-left: 1px solid rgba(255,255,255,.2);
  border-right: 1px solid rgba(255,255,255,.2);
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #FFF;
  padding: 2px 9px 2px 9px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  font-family: Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  letter-spacing: 1px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ed933f;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #1AA759;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  /*font-size: 14px;*/
  font-weight: 500;
  text-transform: none;
  color: #FFF;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  text-align: left;
}

/*.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #ed933f;
}*/

.nav-menu .drop-down ul a:hover {
  color: #ed933f;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 24px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #183883;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #433f39;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #0166ac;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(39, 37, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.aceco-bg {
    background-color: #1AA759;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
}

section .section-bg {
  background-color: white;
}

section .section-title {
  text-align: center;
  padding-bottom: 30px;
}

section .section-title h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1f63ab;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

section .section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #bbb;
  bottom: 1px;
  left: calc(50% - 80px);
}

section .section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  section .section-title p {
    width: 50%;
  }
}

/***** For single page *****/
.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1f63ab;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #bbb;
  bottom: 1px;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/

#home-carousel {
    height: 100%;
    width: 100%;
}

#home-carousel .carousel-indicators {
    margin-bottom: 8px;
}

#home-carousel .carousel-indicators>li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

#home-carousel .carousel-inner {
    height: 100%;
}

#home-carousel .carousel-item {
    height: 100%;
    min-height: 600px;
    background: no-repeat center center scroll;
    background-size: cover;
    transition: transform 10s ease, opacity 1s ease-out;
    /*transition: all 4s ease-out;*/
}

#home-carousel .carousel-item.active,
#home-carousel .carousel-item-prev.carousel-item-right,
#home-carousel .carousel-item-next.carousel-item-left {
    transform: scale(1.2);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #fffaf3;
}

.about .content {
  padding: 0 80px;
}

.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #5f5950;
}

.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.about .content p {
  /*font-size: 15px;
  color: #848484;*/
  font-size: 16px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

@media (max-width: 1024px) {
  .about .content {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
}

.about .play-btn {
	box-sizing: border-box;
	display:block;
	width:80px;
	height:80px;
	padding-top: 14px;
	padding-left: 8px;
	line-height: 20px;
	border: 6px solid #fff;
	border-radius: 50%;
	color:#f5f5f5;
	text-align:center;
	text-decoration:none;
	background-color: rgba(0,0,0,0.5);
	font-size:20px;
	font-weight:bold;
	transition: all 0.3s ease;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

.about .play-btn:hover {
	background-color: rgba(0,0,0,0.8);
	box-shadow: 0px 0px 10px rgba(24,56,131,1); /*255,255,100: yellow*/
	text-shadow: 0px 0px 10px rgba(24,56,131,1);
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
.project .item {
    /*width: 300px;*/
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.project .item img {
    height: auto;
    width: 100%;
}

.project .item h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.project .owl-nav span {
    font-size: 36px;
}

/**** For project list page ****/
.project-list .item {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 70px;
}

.project-list .item img {
    height: auto;
    width: 100%;
}

.project-list .item .heading {
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
}

.project-list .item .content {
    margin-top: 20px;
    display: block;
    text-overflow: ellipsis;
    max-height: 6em; /* = [line-height] x [number of lines] */
    line-height: 1.5;
    overflow: hidden;
    text-justify: inter-word;
    text-align: justify;
    text-align-last: center;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product .item {
    /*width: 300px;*/
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.product .item img {
    height: auto;
    width: 100%;
}

.product .item h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.product .owl-nav span {
    font-size: 36px;
}

/**** For product list page ****/
.product-list .item {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 70px;
}

.product-list .item img {
    height: auto;
    width: 100%;
}

.product-list .item .heading {
    font-size: 24px;
    text-align: center;
    margin-top: 15px;
}

.product-list .item .content {
    margin-top: 20px;
    display: block;
    text-overflow: ellipsis;
    max-height: 6em; /* = [line-height] x [number of lines] */
    line-height: 1.5;
    overflow: hidden;
    text-justify: inter-word;
    text-align: justify;
    text-align-last: center;
    font-size: 14px;
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/
.news-title h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1f63ab;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.news .item {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 70px;
}

.news .item img {
    height: auto;
    width: 100%;
}

.news .item .heading {
    margin-top: 15px;
}

.news .item .content {
    margin-top: 20px;
    display: block;
    text-overflow: ellipsis;
    max-height: 6em; /* = [line-height] x [number of lines] */
    line-height: 1.5;
    overflow: hidden;
    text-justify: inter-word;
    text-align: justify;
    /*text-align-last: center;*/
    font-size: 14px;
}

/***** For news list *****/
.news .news-thumb {
    height: 170px;
    overflow: hidden;
}

.news .news-thumb img {
    height: 150px;
    width: auto;
}

.news .news-heading {
    font-weight: 500;
    font-size: 20px;
}

.news .news-heading a {
    color: #1f63ab;
}

.news .news-heading a:hover {
    color: #007bc1;
}

.news .news-meta {
    font-size: 15px;
    font-weight: 400;
    color: #aaaaaa;
}

/*--------------------------------------------------------------
# Award
--------------------------------------------------------------*/
.list-award {
    position: relative;
}

.home-product-slick .slick-prev,
.list-award .slick-prev {
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.home-product-slick .slick-prev:before,
.list-award .slick-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 1.75rem;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.home-product-slick .slick-prev:hover:before,
.list-award .slick-prev:hover:before {
    background: #00477b;
    color: #fff;
}

.home-product-slick .slick-next,
.list-award .slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-product-slick .slick-next:before,
.list-award .slick-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 1.75rem;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-left: 2px;
}

.home-product-slick .slick-next:hover:before,
.list-award .slick-next:hover:before {
    background: #00477b;
    color: #fff;
}

.list-award {
    margin: 0 -5px;
}

.award .award-content .menu-award ul li {
    display: inline-block;
    margin: 0 2px;
}

@media (max-width: 543px) {
    .award .award-content .menu-award ul li {
        width: 48%;
    }
}

.award .award-content .menu-award ul li a {
    float: left;
    padding: 8px 17px 6px;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 1px solid #ddd;
    color: #00477b;
    font-weight: 700;
}

@media (max-width: 543px) {
    .award .award-content .menu-award ul li a {
        width: 100%;
        text-align: center;
        margin-bottom: 3px;
    }
}

.award .award-content .menu-award ul li.active a {
    border: 1px solid #0e65a6;
    background: #0e65a6;
    color: #fff;
}

.award .award-content .menu-award ul li:hover a {
    background: #0e65a6;
    color: #fff;
}

.award .award-content .list-award {
    margin-top: 30px;
}

.award .award-content .list-award .item-award {
    margin-bottom: 30px;
}

.award .awardcontent .list-award .item-award figure {
    display: block;
}

.award .award-content .list-award .item-award figure a {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 112px;*/
    border: 1px solid #e5e5e6;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0s;
    -khtml-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

@media (max-width: 543px) {
    .award .award-content .list-award .item-award figure a {
        height: 130px;
    }
}

.award .award-content .list-award .item-award figure a img {
    max-width: 80%;
    max-height: 70%;
}

.award .award-content .list-award .item-award figure a:hover {
    border: 2px solid #0073c8;
}

/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
.list-partner {
    position: relative;
}

.home-product-slick .slick-prev,
.list-partner .slick-prev {
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

.home-product-slick .slick-prev:before,
.list-partner .slick-prev:before {
    content: '\f104';
    font-family: 'FontAwesome';
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 1.75rem;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.home-product-slick .slick-prev:hover:before,
.list-partner .slick-prev:hover:before {
    background: #00477b;
    color: #fff;
}

.home-product-slick .slick-next,
.list-partner .slick-next {
    font-size: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.home-product-slick .slick-next:before,
.list-partner .slick-next:before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 1.75rem;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding-left: 2px;
}

.home-product-slick .slick-next:hover:before,
.list-partner .slick-next:hover:before {
    background: #00477b;
    color: #fff;
}

.list-partner {
    margin: 0 -5px;
}

.partner .partner-content .menu-partner ul li {
    display: inline-block;
    margin: 0 2px;
}

@media (max-width: 543px) {
    .partner .partner-content .menu-partner ul li {
        width: 48%;
    }
}

.partner .partner-content .menu-partner ul li a {
    float: left;
    padding: 8px 17px 6px;
    text-transform: uppercase;
    font-size: 0.75rem;
    border: 1px solid #ddd;
    color: #00477b;
    font-weight: 700;
}

@media (max-width: 543px) {
    .partner .partner-content .menu-partner ul li a {
        width: 100%;
        text-align: center;
        margin-bottom: 3px;
    }
}

.partner .partner-content .menu-partner ul li.active a {
    border: 1px solid #0e65a6;
    background: #0e65a6;
    color: #fff;
}

.partner .partner-content .menu-partner ul li:hover a {
    background: #0e65a6;
    color: #fff;
}

.partner .partner-content .list-partner {
    margin-top: 30px;
}

.partner .partner-content .list-partner .item-partner {
    margin-bottom: 30px;
}

.partner .partner-content .list-partner .item-partner figure {
    display: block;
}

.partner .partner-content .list-partner .item-partner figure a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 112px;
    border: 1px solid #e5e5e6;
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0s;
    -khtml-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}

@media (max-width: 543px) {
    .partner .partner-content .list-partner .item-partner figure a {
        height: 130px;
    }
}

.partner .partner-content .list-partner .item-partner figure a img {
    max-width: 80%;
    max-height: 70%;
}

.partner .partner-content .list-partner .item-partner figure a:hover {
    border: 2px solid #0073c8;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .title {
    text-transform: uppercase;
    color: #007bc1;
    font-size: 18px;
}

.contact .info {
    margin-top: 30px;
}

.contact .e-form {
    width: 100%;
    margin-bottom: 15px;
}

.contact .e-form .form-group {
    padding-bottom: inherit;
}

.contact .e-form input, .contact .e-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

.contact .e-form input {
    height: inherit;
}

.contact .e-form textarea {
    padding: 10px 12px;
}

.contact .e-form button[type=submit] {
    text-transform: uppercase;
    background-color: #183883;
    color: #fff;
    width: 100%;
    font-size: 16px;
    border: 0;
    padding: 5px 12px;
    transition: 0.4s;
}

.contact .e-form button[type=submit]:hover {
    background-color: #0166ac
}

/*--------------------------------------------------------------
# Library - Catalogue
--------------------------------------------------------------*/
.album .menu-album ul li {
    display: inline-block;
}

.album .menu-album ul li a {
    display: inline-block;
    color: #666666;
    border: 1px solid #cccccc;
    width: 142px;
    padding: 4px 0;
    text-align: center;
    font-weight: 600;
    margin: 0 3px;
}

.album .menu-album ul li a:hover {
    color: #fff;
    background: #0064ae;
    border-color: #0064ae;
}

.album .albumwrap {
    margin-top: 25px;
}

.album .albumwrap .album-item figure {
    position: relative;
    float: left;
    margin-bottom: 40px;
}

.album .albumwrap .album-item figure:before {
    content: '';
}

.album .albumwrap .album-item figure .item-img {
    position: relative;
    display: inline-block;
    -webkit-transition: all 5s;
    -khtml-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
    float: left;
}

.album .albumwrap .album-item figure .item-img img {
    float: left;
}

.album .albumwrap .album-item figure .item-img:before {
    content: "\ef4b";
    font-family: 'IcoFont';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    z-index: 10;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(10px);
    -khtml-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
}

.album .albumwrap .album-item figure .item-img:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}

.album .albumwrap .album-item figure figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 15px 20px;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #333;
    background: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    background: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    background: -moz-linear-gradient(transparent, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.album .albumwrap .album-item figure figcaption .item-icon {
    float: left;
    width: 8%;
    color: #fff;
    margin-top: 1px;
}

.album .albumwrap .album-item figure figcaption .item-title {
    float: left;
    width: 92%;
    font-size: 1rem;
}

.album .albumwrap .album-item figure figcaption .item-title a {
    color: #fff;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.album .albumwrap .album-item:hover figure .item-img {
    overflow: hidden;
}

.album .albumwrap .album-item:hover figure .item-img img {
    -webkit-transform: scale(1.4, 1.4);
    -khtml-transform: scale(1.4, 1.4);
    -moz-transform: scale(1.4, 1.4);
    -ms-transform: scale(1.4, 1.4);
    -o-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
    -webkit-transition: all 5s;
    -khtml-transition: all 5s;
    -moz-transition: all 5s;
    -ms-transition: all 5s;
    -o-transition: all 5s;
    transition: all 5s;
}

.album .albumwrap .album-item:hover figure .item-img:before {
    opacity: 1;
    -webkit-transform: translateY(0);
    -khtml-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.album .albumwrap .album-item:hover figure .item-img:after {
    opacity: 1;
}

/*--------------------------------------------------------------
# Library - Video
--------------------------------------------------------------*/
.videocol .videoimg {
    position: relative;
}

.videocol .videoimg:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.videocol .videoimg .icofont {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    -webkit-transition: all 0.3s;
    -khtml-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.videocol .videoimg:hover:before {
    background: none;
}

.videocol .videoimg:hover .icofont {
    color: #fc0303;
}

.videocol h6 {
    display: block;
    padding: 10px 0;
    color: #333;
}

/*--------------------------------------------------------------
# Share holder docs
--------------------------------------------------------------*/
.shareholderdoc .title {
    text-transform: uppercase;
    color: #007bc1;
    font-size: 18px;
}

.shareholderdoc .info {
    margin-top: 30px;
}

.shareholderdoc .table tbody tr td:first-child::before {
    content: "\eb1e";
    font-family: "IcoFont";
    color: #e13123;
}

.shareholder-container {
    position: relative;
    width: 100%;
    height: 1250px;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.shareholder-responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1250px;
    border: none;
}

/*--------------------------------------------------------------
# Error Page
--------------------------------------------------------------*/
.empty-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-404 {
    font-size: 200px;
    color: #b1b1b1;
}

.content-404 {
    font-size: 25px;
    color: #b1b1b1;
    font-style: italic;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0d1970;
  color: #AFAFAF;
  font-size: 14px;
  /*text-align: center;*/
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

#footer p {
  font-size: 15px;
}

#footer .company-name {
    font-size: 18px;
    font-weight: 500;
}

#footer .homeinfo {
    line-height: 15px;
}

#footer .contactqrcode {
    width: 150px;
    height: 150px;
    padding: 10px;
}

#footer .contact-detail {
    line-height: 80%;
}

#footer h6 {
    color: white;
}

#footer .logo img {
    padding: 0px;
    margin: 0px;
    max-height: 100px;
}