* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: normal;
}

body {
  color: #3d3d3d;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  background: #f4f4f4;
}

body,
html {
  width: 100%;
  height: auto;
  min-height: 100vh;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;  
}

a {
  cursor: pointer;
  text-decoration: none;  
}

@media only screen
and (min-width : 1281px) {
  .ease:hover {
    opacity: 0.5;
  }
  .transition {
    transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;    
  }
  .zoom:hover {
    transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);    
  }
}

img {
  display: block;
  max-width: 100%;
}

img.fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.scale {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

ul {
  list-style: none;
}

*:focus {
  outline: none !important;
}

::placeholder {
  color: #888888;
  opacity: 1;
  font-style: italic;
  font-weight: 300;
}

::-ms-input-placeholder {
  color: #888888;
  opacity: 1;
  font-style: italic;
  font-weight: 300;
}

.noscroll {
  overflow-y: hidden;
}

.fixed {
  position: fixed;  
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.he {
  justify-content: flex-end;
}

.vc {
  align-items: center;
}

.vs {
  align-items: flex-start;
}

.ve {
  align-items: flex-end;
}

/* -------------------------------------------------------------------------- */

@keyframes pulsate {
  0% { 
    opacity: 0.2;
  }
  50% { 
    opacity: 1.0;
  }
  100% { 
    opacity: 0.2;
  }
}

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

/* -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000000;
  z-index: 1000;
}

#preloader img {
  width: 300px;
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;  
}

#preloader img:last-child {
  margin-top: 20px;
  width: 150px;
}

#cookie {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  padding: 20px 30px;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  color: #ffffff;
  font-size: 14px;
}

#cookie a:not(.button) {
  font-weight: 600;
  text-decoration: underline;
  color: #ffffff;
}

#cookie p.accept {
  margin-left: auto;
}

#cookie p.accept a {
  margin-left: 30px;
}

#cookie .button {
  margin-top: 0;
}

.hattcha {
  width: 100%;
  padding: 10px 15px;
  border: #3886ee 1px solid;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 10px auto 0 auto;
  color: #3886ee;
}

.hattcha .cb {
  width: 20px;
  height: 20px;
  border: #3886ee 1px solid;
  margin-right: 10px;
  cursor: pointer;
}

.hattcha.warning .cb {
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
}

.hattcha.checked .cb {
  border: none !important;
}

.hattcha .cb i {
  position: absolute;
  font-size: 20px;
  color: #3886ee;
  opacity: 0;
}

.hattcha .cb i.fa-spinner {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
  
.hattcha .cb i.progress {
  opacity: 1;
}

#direct-contact .hattcha {
  background: #ffffff;
  border-color: #d3d3d3;
}

.button {
  font-size: 18px;
  color: #3886ee;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 50px;
  border: #3886ee 1px solid;
  display: inline-block;
  margin-top: 30px;
  font-weight: 600;
}

.button.small {
  font-size: 14px;
  padding: 8px 25px;
}

.button.extrasmall {
  font-size: 12px;
  padding: 5px 15px;
  letter-spacing: normal;
}

ul.items {
  width: calc(100% + 50px);
  margin: 0 -25px;
  flex-wrap: wrap;
}

ul.items li {
  margin: 25px;
}

ul.items.col-2 li {
  width: calc((100% / 2) - 50px);  
}

ul.items.col-3 li {
  width: calc((100% / 3) - 50px);
}

ul.items.col-4 li {
  width: calc((100% / 4) - 50px);
}

/* -------------------------------------------------------------------------- */

header {
  position: fixed;
  top: 0;
  left: 0;  
  width: 100%;
  height: 195px;
  z-index: 100;
}

header.sticky {
  height: 65px;
}

#top-line {
  background: rgba(0,0,0,0.95);
  height: 130px;
}

header.sticky #top-line {
  height: 0;
}

#logo {
  width: auto;
}

#logo img {
  height: 80px;
}

#logo p {
  font-size: 13px;
  color: #000000;
  font-weight: 600;
  width: 190px;
}

header.sticky  #logo p {
  opacity: 0;
}

#conticon a {
  color: #f4f4f4;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  padding: 5px 10px;
  background: #3886ee;
  text-transform: uppercase;
}

#conticon a:last-child {
  margin-top: 5px;
  background: #fff100;
  color: #000000;
}

#conticon a i {
  font-size: 16px;
  margin-right: 10px;
}

#top-line ul {
  margin-left: auto;
  margin-right: 30px;
}

#top-line li {
  width: 100%;
  text-align: right;
}

#top-line li.social a {
  font-size: 20px;
}

#top-line ul a {
  font-size: 14px;
  color: #f4f4f4;
  text-transform: uppercase;
  font-weight: 600;
}

#top-line ul i {
  margin-left: 5px;
  color: #3886ee;
}

nav {
  width: 100%;
  height: 40px;
  background: #3886ee;
  box-shadow: 0 3px 5px rgba(0,0,0,0.5);  
}

header.sticky nav {
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);  
}

nav .container {
  width: 1250px;
  height: calc(100% + 25px);
  background: #3886ee;
  z-index: 20;
}

nav .shadow {
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); 
  width: 1240px;
  height: 10px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.5);
  z-index: 10;
}

header.sticky nav .shadow {
  box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

nav .container::before,
nav .container::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

nav .container::before {
  left: -15px;
  border-width: 0 15px 25px 0;
  border-color: transparent #3886ee transparent transparent;  
}

nav .container::after {
  right: -15px;
  border-width: 25px 15px 0 0;
  border-color: #3886ee transparent transparent transparent;  
}

nav ul.top-level {
  width: 100%;
}

nav ul.top-level li {
  height: 100%;
  margin: 0 15px;
}

nav ul.top-level li i.resp {
  display: none;
}

nav ul.top-level a {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  height: 100%;
  font-weight: 600;
}

nav ul.sub-level {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);    
  width: auto;
  padding: 20px 30px;
  background: #fff100;
  display: none;
}

@media only screen
and (min-width : 1281px) {
  nav li:hover ul.sub-level {  
    display: flex;
  }
}

nav ul.sub-level::before {
  content: '';
  display: block;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);   
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff100 transparent;  
}

nav ul.sub-level li {
  margin: 0;
  text-align: center;
  padding: 10px 0;
}

nav ul.sub-level li:not(:last-child) {
  border-bottom: rgba(0,0,0,0.5) 1px dotted;
}

nav ul.sub-level a {
  white-space: nowrap;
  text-transform: none;
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}

footer {
  width: 100%;
  height: auto;
  background: #000000;
}

footer .container {
  z-index: 10;
}

footer .world {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  opacity: 0.18;
  z-index: 10;
}

footer .copy {
  width: 100%;
  height: auto;
  z-index: 20;
  padding: 30px 0;
  border-top: rgba(244,244,244,0.3) 1px solid;
}

footer .copy a {
  width: 200px;
}

footer .copy p {
  width: 100%;
  color: #f4f4f4;
  text-align: center;
}

footer .copy p a {
  color: #f4f4f4;
  font-size: 28px;
  margin: 15px 5px 0 5px;
}

footer .copy p span {
  font-size: 12px;
  line-height: 14px;
}

footer .copy p span a {
  font-size: 12px;
  margin: 0;
}

footer .links {
  width: 100%;
  height: 55px;
  background: rgba(244,244,244,0.3);
  z-index: 20;
}

footer .links li,
footer .links a {
  color: #000000;
  font-weight: 600;  
}

footer .links li:not(:last-child) {
  margin-right: 10px; 
}

footer .links li:not(:last-child)::after {
  content: '\2022';
  margin-left: 10px;
}

footer .footer-maps img {
  width: 150px;
  height: auto;
}

footer .footer-maps p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 10px 0;
}

footer .footer-maps a {
  color: #f4f4f4 !important;
  font-size: 12px;
}

/* -------------------------------------------------------------------------- */

#content {
  padding: 80px 0 0 0;
}

#content.notsplash {
  padding: 20px 0 0 0;  
}

#content.notsplash.nopadding {
  padding: 0;  
}

#content iframe {
  max-width: 100%;
  border: 0 !important;
}

#content p {
  line-height: 24px;
  text-align: justify;
  margin-top: 30px;
}

#content p img,
#content p iframe {
  margin: 0;
  max-width: 100%;
  box-shadow: 0 0px 10px rgba(0,0,0,0.2);
}

#content p img[style="float: left;"],
#content p iframe[style="float: left;"] {
  margin-right: 20px;
  margin-bottom: 20px;
}

#content p img[style="float: right;"],
#content p iframe[style="float: right;"] {
  margin-left: 20px;
  margin-bottom: 20px;
}

#content p b,
#content p strong {
  color: #000000;
  font-weight: 600;
}

#content p a,
#content li a {
  color: #3886ee;
  text-decoration: underline;
}

#content ul,
#content ol {
  margin-left: 30px;
  margin-top: 10px;
}

#content ul li,
#content ol li {
  list-style-type: disc;
}

#content.notfound p {
  text-align: center;
}

#compliance p,
#inspection p,
#product p,
#accreditation p {
  line-height: 19px;
  text-align: justify;
  margin-top: 20px;
  font-size: 14px;
}

#accreditation p {
  text-align: left;
}

#content h1,
#accreditation h1 {
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

#content h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 30px;
  color: #3886ee;
}

#compliance h2,
#inspection h2,
#product h2,
#accreditation h2 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
}

#content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

#compliance h3,
#inspection h3,
#product h3,
#accreditation h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

.factory {
  width: 100%;
  height: 180px;
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: auto 100px;
}

.factory-wht {
  background-image: url(../img/factory-wht.png), linear-gradient(#f4f4f4, #d7d7d7);
}

.factory-blk {
  background-image: url(../img/factory-blk.png), linear-gradient(#f4f4f4, #d7d7d7);
}

/* -------------------------------------------------------------------------- */

#splash-banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#banner-carousel {
  z-index: 10;
}

#banner-carousel .item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#splash-banner .world,
#splash-banner .slogan,
#skip {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
}

#splash-banner .world {
  z-index: 20;
  width: 500px;
  bottom: 100px;
  opacity: 0.8;
}

#splash-banner .slogan {
  z-index: 30;
  padding: 15px 15px;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  bottom: 300px;
  max-width: 800px;
}

#skip {
  z-index: 30;
  width: 60px;
  height: 40px;
  bottom: 0;
  background: #3886ee;
  color: #000000;
  font-size: 30px;
}

#skip::before,
#skip::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

#skip::before {
  left: -25px;
  border-width: 0 0 40px 25px;
  border-color: transparent transparent #3886ee transparent;  
}

#skip::after {
  right: -25px;
  border-width: 40px 0 0 25px;
  border-color: transparent transparent transparent #3886ee;  
}

#skip i {
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;  
}

#splash-service {
  padding: 80px 0;
  background: #ffffff;
}

#splash-service .item {
  width: 1280px;
}

#splash-service h2 {
  font-size: 36px;
  font-weight: 400;
  color: #3886ee;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
}

#splash-service .image {
  width: 1280px;
  height: 440px;
}

#splash-service .description {
  width: 1030px;
  background: #ffffff;
  margin: -40px auto 0 auto;
  padding: 40px;
}

#splash-service .description::before,
#splash-service .description::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

#splash-service .description::before {
  left: -25px;
  border-width: 0 0 40px 25px;
  border-color: transparent transparent #ffffff transparent;  
}

#splash-service .description::after {
  right: -25px;
  border-width: 40px 0 0 25px;
  border-color: transparent transparent transparent #ffffff;  
}

#splash-service h3 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;  
}

#splash-service p {
  line-height: 24px;
  text-align: center;
  margin-top: 30px;
}

#splash-service .button {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen
and (min-width : 1281px) {
  #splash-service .button:hover {
    background: #3886ee;
    color: #ffffff;
  }
}

.owl-nav {
  position: absolute;
  top: -105px;
  left: 50%;
  width: 1280px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
}

.owl-nav i {
  font-size: 40px;
  color: #3886ee;
}

.owl-next {
  position: absolute;
  top: 0;
  right: 0;
}

#splash-training .title {
  width: 100%;
  height: 60px;
  background: #3886ee;
  z-index: 20;
}

#splash-training .title .center {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
  width: 1030px;
  height: 100px;
  background: #3886ee;
}

#splash-training .title .center::before,
#splash-training .title .center::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 20;
}

#splash-training .title .center::before {
  left: -25px;
  border-width: 0 25px 40px 0;
  border-color: transparent #3886ee transparent transparent;  
}

#splash-training .title .center::after {
  right: -25px;
  border-width: 40px 25px 0 0;
  border-color: #3886ee transparent transparent transparent;  
}

#splash-training h2 {
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

#splash-training .content {
  width: 100%;
  z-index: 10;
}

#splash-training .background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

#splash-training .mask {
  width: 100%;
  height: 100%;
  padding: 95px 0 80px 0;
  background: rgba(0,0,0,0.85);
  z-index: 20;
}

#splash-training li {
  height: 75px;
}

#splash-training li a {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  letter-spacing: 1px;
}

@media only screen
and (min-width : 1281px) {
  #splash-training li a:hover {
    background: #3886ee;
  }
}

#splash-training .button {
  margin: 25px 0 0 50%;
  color: #ffffff;
  border-color: #ffffff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#splash-training .button i,
#splash-service .button i {
  margin-right: 10px;
}

@media only screen
and (min-width : 1281px) {
  #splash-training .button:hover {
    background: #3886ee;
    border-color: #3886ee;
    color: #000000;
  }
}

#splash-highlight {
  padding: 80px 0;
}

#splash-highlight h2 {
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 35px;
}

#splash-highlight li {
  height: 410px;
}

#splash-highlight .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}

#splash-highlight .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  background: rgba(0,137,246,0.6);
}

#splash-highlight li:hover .mask {
  opacity: 1;
}

#splash-highlight .button {
  color: #000000;
  border-color: #000000;
  margin-top: -80px;
}

#splash-highlight .description {
  position: absolute;
  bottom: 30px;
  padding: 20px 0;
  background: rgba(0,0,0,0.85);
  width: 100%;
  height: 95px;
  z-index: 30;
  overflow: hidden;
}

#splash-highlight h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

#splash-highlight p {
  color: #ffffff;
  font-size: 14px;
  line-height: 19px;  
}

#splash-highlight li:nth-child(odd) .description {
  left: -50px;
  padding-left: 100px;
  padding-right: 50px;
}

#splash-highlight li:nth-child(even) .description {
  right: -50px;
  padding-left: 50px;
  padding-right: 100px;
}

#map .title {
  width: 100%;
  height: 60px;
  background: #ffffff;
  z-index: 20;
}

#map .title .center {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
  width: 1030px;
  height: 100px;
  background: #ffffff;
}

#map .title .center::before,
#map .title .center::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 20;
}

#map .title .center::before {
  left: -25px;
  border-width: 0 25px 40px 0;
  border-color: transparent #ffffff transparent transparent;  
}

#map .title .center::after {
  right: -25px;
  border-width: 40px 25px 0 0;
  border-color: #ffffff transparent transparent transparent;  
}

#map h2 {
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

#map .content {
  width: 100%;
  z-index: 10;
  height: 450px;
}

#map-container,
#map-container iframe {
  width: 100%;
  height: 100%;
}

/* -------------------------------------------------------------------------- */

#page-pic {
  width: 100%;
  height: 450px;
  background: #000000;
  overflow: hidden;
}

#page-pic.low {
  height: 350px;
}

#page-pic .world {
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
  height: 120%;
  opacity: 0.1;
  z-index: 10;  
}

#page-pic h1 {
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 195px;
}

#page-pic .image {
  width: 100%;
  height: 100%;
  z-index: 20;
}

.pagetitle {
  width: 100%;
  height: 55px;
  background: #3886ee;
  z-index: 40;
}

.pagetitle .inside {
  position: absolute;
  left: calc(50% - 515px);
  top: -25px;
  width: 1030px;
  height: 80px;
  background: #3886ee;
  padding-top: 15px;  
}

.pagetitle .inside::before,
.pagetitle .inside::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.pagetitle .inside::before {
  left: -15px;
  border-width: 0 0 25px 15px;
  border-color: transparent transparent #3886ee transparent;  
}

.pagetitle .inside::after {
  right: -15px;
  border-width: 25px 0 0 15px;
  border-color: transparent transparent transparent #3886ee;  
}

.pagetitle h1 {
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;  
}

/* -------------------------------------------------------------------------- */

#proposer {
  padding: 25px 0 0 0;
}

#proposer li {
  height: 280px;
}

#proposer .image {
  width: 100%;
  height: 100%;
  z-index: 10;
}

#proposer a {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.85);
  width: 100%;
  height: 100%;
  z-index: 20;
  font-size: 30px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

#proposer a:hover {
  opacity: 0;
}

#proposer .info {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 290px;
  height: 25px;
  background: #f4f4f4;
  z-index: 30;
  font-size: 14px;
  color: #a8a8a8;
  font-style: italic;
}

#proposer .info::before,
#proposer .info::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

#proposer .info::before {
  left: -15px;
  border-width: 0 15px 25px 0;
  border-color: transparent #f4f4f4 transparent transparent;  
}

#proposer .info::after {
  right: -15px;
  border-width: 25px 15px 0 0;
  border-color: #f4f4f4 transparent transparent transparent;  
}

/* -------------------------------------------------------------------------- */

#blog {
  padding: 25px 0 0 0;
}

#blog .image {
  width: 100%;
  height: 280px;
  z-index: 10;
}

#blog .info {
  position: absolute;
  top: 255px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 290px;
  height: 25px;
  background: #f4f4f4;
  z-index: 30;
  font-size: 14px;
  color: #a8a8a8;
  font-style: italic;
}

#blog .info::before,
#blog .info::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

#blog .info::before {
  left: -15px;  
  border-width: 0 0 25px 15px;
  border-color: transparent transparent #f4f4f4 transparent;   
}

#blog .info::after {
  right: -15px;  
  border-width: 25px 0 0 15px;
  border-color: transparent transparent transparent #f4f4f4;  
}

#blog h2 {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 24px;  
  text-align: center;
  margin: 15px 0;
}

#blog p {
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}

#blog .button {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */

#coworker {
  padding: 25px 0 0 0;
}

#coworker .image {
  width: 280px;
  height: 280px;
  z-index: 10;
  margin-right: 25px;
  flex-shrink: 0;
}

#coworker .image {
  z-index: 10;
}

#coworker .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: auto;
  height: 25px;
  background: #f4f4f4;
  z-index: 20;
  font-size: 14px;
  white-space: nowrap;
  padding-right: 30px;
  flex-shrink: 0;
}

#coworker .info::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  right: -15px;  
  border-width: 25px 0 0 15px;
  border-color: transparent transparent transparent #f4f4f4;  
}

#coworker .description {
  flex-shrink: 1;
}

#coworker h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #3886ee;
  letter-spacing: 1px;
  font-weight: 600;
}

#coworker h3 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  margin-bottom: 10px;
}

#coworker a {
  color: #3d3d3d;
  font-size: 14px;
  margin-top: 2px;
}

#coworker .linkedin {
  margin-top: 10px;
  font-size: 30px;
  color: #a8a8a8;
}

#coworker .linkedin:hover {
  color: #3886ee;
}

/* -------------------------------------------------------------------------- */

#accreditation {
  padding: 50px 0 0 0;
}

#accreditation .image {
  width: 150px;
  height: 150px;
  z-index: 10;
  margin-right: 50px;
  flex-shrink: 0;
}

#accreditation .description {
  flex-shrink: 1;
  margin-top: -20px;
}

#accreditation li {
  border-bottom: #c6c6c6 1px solid;
  padding-bottom: 50px;
  margin: 0 0 50px 0;
}

#accreditation p.date {
  font-size: 14px;
  color: #a8a8a8;
  font-style: italic;  
}

#accreditation .download {
  background: #3886ee;
  color: #ffffff;
  width: max-content;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
}

#accreditation .download i {
  margin-right: 10px;
}

/* -------------------------------------------------------------------------- */

#compliance,
#product {
  padding: 50px 0 0 0;
}

#compliance .image,
#product .image {
  width: 400px;
  height: 280px;
  z-index: 10;
  margin-right: 50px;
  flex-shrink: 0;
}

#compliance .description,
#inspection .description,
#about .description,
#product .description {
  flex-shrink: 1;
  margin-top: -20px;
}

#compliance li,
#product li {
  border-bottom: #c6c6c6 1px solid;
  padding-bottom: 50px;
  margin: 0 0 50px 0;
}

#compliance .title,
#inspection .title,
#about .title,
#product .title {
  width: calc(100% + 150px);
  margin-left: -150px;
  z-index: 20;
  background: #f4f4f4;
  height: 40px;
  padding-left: 30px;
  margin-bottom: -20px;
}

#inspection .title {
  background: #3886ee;
}

#compliance .title::before,
#inspection .title::before,
#about .title::before,
#product .title::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -25px;
  border-width: 0 25px 40px 0;
  border-color: transparent #f4f4f4 transparent transparent;  
  width: 0;
  height: 0;
  border-style: solid;
}

#compliance .button,
#product .button {
  margin-right: auto;
}

#inspection .title {
  margin-left: 0;
  width: max-content;
  font-size: 14px;
  margin-top: -10px;
  padding: 0 20px;
  height: 30px;
  color: #ffffff;
}

#inspection .image {
  background: #d7d7d7;
  padding: 15px 0 35px 0;
}

#inspection .image img {
  width: 200px;
  height: 200px;
}

#inspection .title::before {
  border-width: 30px 0 0 25px;
  border-color: transparent transparent transparent #3886ee;
  left: auto;
  right: -25px;
}

#inspection a.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

#about li {
  padding-top: 100px;
}

#about .title {
  margin-left: 0;
  width: max-content;
  font-size: 18px;
  margin-top: -20px;
  padding: 0 20px;
  height: 40px;
  color: #ffffff;
  background: #3886ee;
  margin-bottom: 0;
}

#about .image {
  background: #d7d7d7;
  padding: 15px 0 35px 0;
}

#about .image img {
  width: auto;
  height: 200px;
  margin-top: -100px;
}

#about .title::before {
  border-width: 40px 0 0 25px;
  border-color: transparent transparent transparent #3886ee;
  left: auto;
  right: -25px;
}

#about .content {
  background: rgba(215,215,215,0.5);
  padding: 20px;
  flex-grow: 1;
  font-size: 12px;
  font-weight: 600;
  line-height: 19px;
}

#about .content h3 {
  color: #3886ee;
  font-weight: 600;
  margin-bottom: 10px;
}

/* -------------------------------------------------------------------------- */

#contact-layer {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.95);
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}

#contact-layer.visible {
  z-index: 998;
  opacity: 1;
}

#contact-layer .inside-wrapper {
  background: #ffffff;
  padding: 20px;
  width: 600px;
  max-width: calc(100% - 40px);
  box-shadow: 0 0 10px rgba(0,0,0,1);
}

#layer-closer {
  position: absolute;
  top: 20px;
  right: 20px;
}

#layer-closer i {
  font-size: 30px;
  color: #ffffff;
}

#contact .company,
#contact .form {
  width: 100%;
}

#contact .company {
  padding-right: 50px;
  border-right: #c6c6c6 1px solid;
}

#contact .form form {
  width: 100%;
  margin-top: -10px;
}

#contact .form input,
#contact .form select,
#contact .form textarea {
  width: 100%;
  padding: 10px 15px;
  border: #d3d3d3 1px solid;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

#contact .form :first-child {
  margin-top: 0;
}

#contact .form select:invalid {
  color: #888888 !important;
  opacity: 1;
  font-style: italic;
  font-weight: 300;  
}

#contact .form textarea {
  height: 100px;
  resize: none;
}

#contact .form .button {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50%;
  display: flex !important;
}

#contact .form .button.progress {
  pointer-events: none;
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;  
}

#contact .form input[type="submit"],
#direct-contact .form input[type="submit"] {
  display: none;
}

#contact .form .button i {
  margin-right: 10px;
  font-size: 24px;
}

@media only screen
and (min-width : 1281px) {
  #contact .form .button:hover {
    background: #3886ee;
    border-color: #3886ee;
    color: #000000;
  }
}

#contact .company {
  margin-top: -10px;
}

#contact .company li {
  margin-top: 10px;
}

#contact .company h3 {
  font-size: 14px;
}

#contact .company h2,
#contact .company a {
  font-size: 18px;
  font-weight: 600;
  color: #3886ee;
}

#contact .hattcha {
  width: 100%;
  padding: 10px 15px;
  border: #3886ee 1px solid;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 10px auto 0 auto;
  color: #3886ee;
}

#contact .hattcha .cb {
  width: 20px;
  height: 20px;
  border: #3886ee 1px solid;
  margin-right: 10px;
  cursor: pointer;
}

#contact .hattcha.verified .cb {
  border: none;
}

#contact .hattcha .cb i {
  position: absolute;
  font-size: 20px;
  color: #3886ee;
  opacity: 0;
}

#contact .hattcha .cb i.fa-spinner {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
  
#contact .hattcha .cb i.progress {
  opacity: 1;
}

/* -------------------------------------------------------------------------- */

#training {
  padding: 75px 0 0 0;
}

#training .course,
#training .schedule {
  width: 50%;
}

#training .course {
  padding-right: 25px;
  border-right: #c6c6c6 1px solid;
  z-index: 20;
}

#training .course ul {
  margin-top: -25px;
}

#training .course li {
  padding: 25px;
  background: #929292;
  margin-top: 25px;
}

#training .course li.selected {
  background: #3886ee;
}

#training .course h2 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

#training .course p {
  font-size: 14px;
  color: #ffffff;
  line-height: 19px;
  margin-top: 10px;
}

#training .course .button {
  color: #ffffff;
  border-color: #ffffff;
  margin-top: 15px;
}

#training .course .selector {
  position: absolute;
  width: 34px;
  height: 34px;
  background: #f4f4f4;
  top: calc(50% - 17px);
  right: -42px;
  font-size: 18px;
  color: #d7d7d7;
}

#training .course li.selected .selector {
  color: #3886ee;
}

#training .schedule {
  padding-left: 25px;
  z-index: 10;  
}

#training .schedule .table {
  background: #ffffff;
  width: 100%;
  padding: 50px;
}

#training .schedule .info {
  height: 25px;
  background: #f4f4f4;
  width: calc(100% + 50px);
  margin-top: -50px;
  margin-right: -50px;
}

#training .schedule .info::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  left: -15px;
  border-width: 0 15px 25px 0;
  border-color: transparent #f4f4f4 transparent transparent;  
}

#training .schedule .info span {
  margin-right: auto;
  padding-left: 25px;
  color: #000000;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

#training .schedule .info a {
  font-size: 30px;
  color: #000000;
  margin-left: 10px;
}

#training .schedule .info span,
#training .schedule .info a {
  margin-top: -25px;
}

#training .schedule .info span i {
  font-style: normal;
  font-weight: 600;
}

#training .schedule .info a.inactive {
  opacity: 0.1;
  pointer-events: none;
}

#training .schedule h3 {
  margin-top: 30px;
  color: #3886ee;
  font-weight: 600;
  font-size: 18px;
}

#training .schedule li {
  border-bottom: #d3d3d3 1px solid;
  padding: 10px;
}

#training .schedule .flag {
  width: 34px;
  height: 20px;
}

#training .schedule span {
  margin-left: 15px;
  font-size: 14px;
}

#training .schedule span.time {
  color: #a8a8a8;
  font-style: italic;
}

#training .schedule span.name {
  font-weight: 600;
}

#training .schedule li .button {
  display: flex !important;
  margin: 0 0 0 auto;
}

#training .schedule .country {
  padding-top: 30px;
}

#training .schedule .country h4 {
  color: #a8a8a8;
  font-style: italic;
  font-size: 14px;
}

#training .schedule .country ul {
  flex-wrap: wrap;
}

#training .schedule .country li {
  border: none;
  margin: 5px 5px 0 0;
  padding: 0;
}

#training .schedule .country a {
  width: 34px;
  height: 20px;
}

#training .schedule .country li img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}

#training .schedule .country li.selected img {
  -webkit-filter: none;
  filter: none;
  opacity: 1;
}

#training .list:not(.selected) {
  display: none;
}

#traininglist ul:not(.items) {
  width: 100%;
}

#traininglist ul:not(.items) li {
  margin-top: 25px;
}

#traininglist ul.items li {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
}

#traininglist ul.items li span {
  font-weight: 600;
  border-bottom: #3886ee 1px dotted;
}

#traininglist ul.items li i {
  padding-top: 5px;
}

#traininglist .smallheader {
  background: #d7d7d7;
  height: 40px;
}

#traininglist .note {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 10px;
}

#traininglist .smallheader h2 {
  background: #3886ee;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 30px;
  height: 40px;
}

#traininglist .smallheader h2::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  border-width: 40px 0 0 25px;
  border-color: transparent transparent transparent #3886ee;  
  width: 0;
  height: 0;
  border-style: solid;
}

#traininglist .more {
  padding: 20px 20px 0 20px;
  background: rgba(215,215,215,0.5);
}

#traininglist .goto {
  background: #fff100;
  color: #000000;
  width: max-content;
  padding: 10px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
  margin: 10px auto;
  font-weight: 600;
}

#traininglist .goto i {
  margin-right: 10px;
}

#traininglist .hidden {
  display: none;
}

#traininglist .display-hide {
  z-index: 30;
  width: 40px;
  height: 20px;
  bottom: 0;
  background: #f4f4f4;
  color: #000000;
  font-size: 30px;
}

#traininglist .display-hide::before,
#traininglist .display-hide::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

#traininglist .display-hide::before {
  left: -12px;
  border-width: 0 0 20px 12px;
  border-color: transparent transparent #f4f4f4 transparent;  
}

#traininglist .display-hide::after {
  right: -12px;
  border-width: 20px 0 0 12px;
  border-color: transparent transparent transparent #f4f4f4;  
}

#traininglist .display-hide i {
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;  
}

#traininglist .display-hide {
  font-size: 20px;
  margin: 20px auto 0 auto;
}

#traininglist .display-hide .fa-chevron-up {
  display: none;
}

#traininglist .display-hide .fa-chevron-down {
  display: block;
}

#traininglist .display-hide.open .fa-chevron-up {
  display: block;
}

#traininglist .display-hide.open .fa-chevron-down {
  display: none;
}

.halfpic {
  width: 100%;
  margin-top: 30px;
}

.halfpic div {
  width: 50%;
}

.halfpic .text {
  background: #fff100;
  font-weight: 600;
  font-size: 24px;
  color: #000000;
}

.halfpic .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#registration-mask {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  top: 0;
  left: 0;
  z-index: 201;
  display: none;
}

#registration-mask .wrapper {
  width: 100%;
  height: 100%;
}

#registration-mask .box {
  background: #ffffff;
  width: 80%;
  max-width: 600px;
  height: auto;
  padding: 20px;
}

#registration-form {
  display: none;
}

#registration-mask .form form {
  width: 100%;
}

#registration-mask .form input {
  width: 100%;
  padding: 10px 15px;
  border: #d3d3d3 1px solid;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

#registration-mask .form .button {
  width: 100%;
  display: flex !important;
  color: #ffffff;
  border-color: #3886ee;
  background: #3886ee;
  margin-top: 10px;
}

#registration-mask .form .button.cancel {
  width: 100%;
  display: flex !important;
  color: #000000;
  border-color: #000000;
  background: none;
  margin-top: 10px;
}

#registration-mask .form .button i {
  margin-right: 10px;
  font-size: 24px;
}

#registration-mask h2 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  color: #3886ee;
}

#registration-mask p {
  font-size: 14px;
  font-style: italic;
  color: #a8a8a8;
  margin-bottom: 5px;
}

/* -------------------------------------------------------------------------- */

.notfound-text {
  z-index: 20;
  min-height: 200px;
}

.notfound-text .button {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
}

.notfound-404 {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  z-index: 10;
  font-size: 400px;
  font-weight: 600;
  text-align: center;
  opacity: 0.1;
}

/* -------------------------------------------------------------------------- */

#mapcontent h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#mapcontent h6 {
  font-size: 14px;
  font-weight: 400;
  color: #a8a8a8;
  font-style: italic;
  margin-top: 5px;  
  margin-bottom: 10px;
}

#mapcontent p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 19px;
}

#mapcontent p.description {
  margin-bottom: 10px;
}

#mapcontent a {
  color: #3886ee;
  padding-left: 25px;
}

#mapcontent a i {
  position: absolute;
  top: 0;
  left: 0;
}

/* -------------------------------------------------------------------------- */

#respmb {
  position: absolute;
  top: auto;
  bottom: auto;
  right: 30px;
  color: #3886ee;
  font-size: 40px;
}

#respmc {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #000000;
  font-size: 40px;
  z-index: 30;
}

.dd {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 20;
}

/* -------------------------------------------------------------------------- */

#direct-contact {
  position: fixed;
  right: 100px;
  bottom: -380px;
  z-index: 200;
  background: #3886ee;
  padding: 20px;
}

#direct-contact.opened {
  bottom: 0;
}

#direct-contact .heading {
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  padding-right: 50px;
  padding-bottom: 20px;
}

#direct-contact .heading span {
  display: block;
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
}

#direct-contact .heading i {
  position: absolute;
  font-size: 20px;
  top: -2px;
  right: 10px;
}

#direct-contact .form {
  height: 360px;
}

#direct-contact .form form {
  width: 100%;
}

#direct-contact .form input,
#direct-contact .form textarea {
  width: 100%;
  padding: 10px 15px;
  border: #d3d3d3 1px solid;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}

#direct-contact .form textarea {
  height: 80px;
  resize: none;
}

#direct-contact .form .button {
  width: 100%;
  display: flex !important;
  color: #000000;
  border-color: #000000;
  margin-top: 15px;
}

#direct-contact .form .button i {
  margin-right: 10px;
  font-size: 24px;
}

.mmform {
  margin: 30px auto 0 auto;
}

#content h2.yw {
  background: #fff100;
  color: #000000;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

#oe-process ul,
#plc-process ul {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 30px !important;
  width: 50%;
}

#oe-process ul li,
#plc-process ul li {
  list-style: none !important;
  background: #d7d7d7;
  margin-bottom: 10px;
  padding: 10px 0;
  text-align: center;
  font-weight: 600;
}

#oe-process ul li.final,
#plc-process ul li.final {
  background: #3886ee;
  color: #ffffff;
  font-size: 24px;
}

#oe-process ul li.arrow,
#plc-process ul li.arrow {
  background: none;
  font-size: 48px;
  padding: 0 0 10px 0;
  margin: 0;
  height: 20px;
  opacity: 0.1;
}

#plc-process ul {
  width: 70%;
}

#plc-process .repeat-box ul {
  width: 100%;
  margin-top: 0 !important;
}

#plc-process .repeat-box {
  width: calc(70% + 60px);
  padding: 30px;
  border: #3886ee 3px dashed;
  margin: 30px auto 0 auto;
}

#plc-process .repeat-box h3 {
  color: #3886ee;
  background: #f4f4f4;
  padding: 10px 30px;
  position: absolute;
  top: -55px;
}

/* -------------------------------------------------------------------------- */
.feedback-mask {
  background: rgba(56,134,238,0.9);
  position: absolute;
  z-index: 100;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  top: -20px;
  left: -20px;
  color: #ffffff;
}

.feedback-mask .wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.feedback-mask .wrapper i {
  font-size: 60px;
  margin-bottom: 15px;
}

#direct-contact .feedback-mask {
  background: rgba(56,134,238,0.95);
  height: calc(100% + 25px);
}


#direct-contact .feedback-mask .wrapper {
  color: #ffffff;
}

#badge-ariba {
  position: fixed;
  z-index: 900;
  bottom: 50px;
  left: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

#badge-ariba img {
  width: 200px;
  height: auto;
}