html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  font-family: 'Montserrat';
  height: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

*:after, *:before {
  box-sizing: border-box;
}

article, figcaption, figure, footer, header, aside, main, nav, section {
  display: block;
}

a {
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: inline-block;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input {
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button, input, select, textarea {
  margin: 0;
  font: inherit;
}

button, input {
  overflow: visible;
}

button, [type="submit"] {
  -webkit-appearance: button;
  border: 0;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

button::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

textarea {
  overflow: auto;
}

button, select {
  text-transform: none;
}

button:focus, select:focus {
  text-transform: none;
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  padding: 0;
}

.clear:before, .container:before, .clear:after, .container:after {
  content: " ";
  display: table;
}

.clear:after, .container:after {
  clear: both;
}

.is-hidden {
  display: none !important;
}

/* Typography */
h2, h3 {
  color: #fff;
  text-align: center;
}

h1 {
  font-size: 39px;
  text-align: center;
  letter-spacing: 0.005em;
  color: #f21a48;
  text-transform: uppercase;
  padding-top: 3px;
}

h1 span {
  font-weight: 700;
}

h2 {
  font-size: 40px;
  line-height: 48px;
}

h2 span {
  font-weight: 700;
}

h3 {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

h3 span {
  display: block;
  font-weight: 400;
}

/* Generic */

.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

/* Header */
header {
  background-color: #0b305e;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 100;
  display: none;
}


header nav {
  margin-top: 45px;
  margin-bottom: 45px;
}

header nav ul li {
  display: inline-block;
  margin-right: 30px;
}

header nav ul li a {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.5s;
}

header nav ul li a.active, header nav ul li a:hover {
  color: #b0c7d2;
}

/* Mobile menu */

#nav-icon {
  width: 60px;
  height: 40px;
  position: relative;
  margin: 30px 0px 30px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
  transform: scale(0.75);
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 7px;
  width: 100%;
  background: #bfcfd8;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .20s ease-in-out;
  -moz-transition: .20s ease-in-out;
  -o-transition: .20s ease-in-out;
  transition: .20s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 16px;
}

#nav-icon span:nth-child(4) {
  top: 32px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 15px;
}

#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#mobilemenu {
  display: none;
  width: 100%;
  height: calc(100% - 100px);
  background: url('../images/mobilemenu-bg.jpg');
  background-size: cover;
  background-position: bottom center;
  position: fixed;
  top: 100px;
  z-index: 300;
}

#mobilemenu ul {
  margin-top: 25%;
  text-align: center;
}

#mobilemenu ul li {
  display: none;
}

#mobilemenu ul li a {
  color: white;
  text-transform: uppercase;
  font-size: 22px;
  transition: all 0.5s;
  line-height: 90px;
  font-weight: 600;
  letter-spacing: 0.75px;
}

#mobilemenu ul li a.active, #mobilemenu ul li a:hover {
  color: #b0c7d2;
}

/* About */

#about {
  padding: 40px 0px 220px;
  margin-top: 100px;
}

#about img {
  max-width: 350px;
  margin-bottom: 25px;
}

#about h2 {
  text-align: left;
  margin-bottom: 30px;
}

#about h2 span {
  color: #b0c7d2;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  border-bottom: 1px solid #b0c7d2;
  padding-bottom: 10px;
}

#about h2 a {
  color: #0b305e;
}

#about h2 a i {
  font-size: 16px;
}

#about .col {
  width: 45%;
}

#about p {
  color: #0b305e;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 30px;
}

#about .main {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 50px;
  margin-top: 60px;
}

#office {
  position: absolute;
  top: -100px;
  right: 0px;
  width: 100%;
  z-index: 200;
}

#office img {
  width: 55%;
  position: absolute;
  right: 0;
}

#office_parallax {
  width: 1250px;
  min-height: 1250px;
  position: absolute;
  right: -300px;
  background: transparent;
  border-radius: 100%;
  top: -140px;
  z-index: 5000;
}

#office_parallax img {
  width: 100%;
}

.parallax-mirror {
  border-radius: 100%;
  z-index: 200 !important;
}

#circle_logo {
  width: 100%;
  height: 100%;
  position: absolute;
}

.circle_p {
  position: relative;
  z-index: 100000 !important;
}

/* Products */

#products {
  background-color: #b0c7d2;
  padding: 20px 0px 45px;
  overflow: hidden;
}

#products h2 {
  text-align: left;
  margin-bottom: 30px;
}

#products h2 span {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
}

#products .big-products {
  position: relative;
  min-height: 930px;
  margin-bottom: 35px;
  margin-top: 25px;
}

#products .main {
  width: 100%;
  background: url('../images/edge-1.jpg') white;
  border-right: 6px solid #0b305e;
  background-repeat: no-repeat;
  margin-bottom: 45px;
  position: relative;
  display: none;
  min-height: 930px;
  z-index: 1;
}

#products .main.active {
  display: block;
  z-index: 2;
}

#products .main .col1 {
  float: left;
  width: 25%;
}

#products .main .col1 img {
  max-width: 94%;
  margin: 0 auto;
  display: block;
}

#products .main .col2 {
  float: left;
  width: 40%;
  margin-right: 3%;
  padding-top: 50px;
  margin-bottom: 40px;
}

#products .main .col2 h3 {
  text-align: left;
  color: #0b305e;
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 10px;
}

#products .main .col2 h4 {
  text-align: left;
  color: #0b305e;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 40px;
}

#products .main .col2 p {
  color: #0b305e;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 25px;
  font-weight: 400;
}

#products .main .col3 {
  float: left;
  width: 25%;
  margin-top: 50px;
  margin-bottom: 40px;
}

#products .main .col3 table {
  margin-bottom: 20px;
}

#products .main .col3 table tr {
  border-bottom: 1px solid #8597ae;
}

#products .main .col3 table tr:first-of-type {
  border-top: 2px solid #0b305e;
}

#products .main .col3 table tr:last-of-type {
  border-bottom: 2px solid #0b305e;
}

#products .main .col3 table tr td {
  padding: 15px 0px;
  color: #0b305e;
  vertical-align: top;
}

#products .main .col3 table tr td:first-of-type {
  font-weight: 800;
  color: #0b305e;
}

#products .main .col3 a {
  display: block;
  color: #0b305e;
  line-height: 35px;
  font-size: 18px;
  letter-spacing: 0.8px;
}

#products .main .col3 a img {
  margin-top: -10px;
}

#products .small-products .box {
  float: left;
  width: 32%;
  height: 360px;
  margin-right: 2%;
  border-left: 6px solid #0b305e;
  background: url(../images/edge-2.jpg) white;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 280px 330px;
  margin-bottom: 45px;
  cursor: pointer;
}

 #products .small-products .box:nth-of-type(3), #products .small-products .box:nth-of-type(6) {
  margin-right: 0%;
 }

 #products .small-products .box .col1 {
  float: left;
  width: 50%;
  padding-left: 25px;
  padding-top: 30px;
  position: relative;
  height: 85%;
 }

 #products .small-products .box .col1 h4 {
  font-size: 24px;
  color: #0b305e;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
 }

 #products .small-products .box .col1 p {
  font-size: 18px;
  line-height: 26px;
  color: #0b305e;
 }

 #products .small-products .box .col1 a {
  position: absolute;
  bottom: 0px;
  display: block;
  color: #0b305e;
  line-height: 35px;
  font-size: 18px;
  letter-spacing: 0.8px;
 }

 #products .small-products .box .col1 a img {
  margin-top: -10px;
 }

 #products .small-products .box .col2 {
  float: left;
  width: 45%;
  padding-top: 4px;
  padding-left: 20px;
  height: 100%;
  position: relative;
 }

/* Footer */

footer {
  background: url('../images/footer.jpg') #0b305e;
  background-size: cover;
  background-position: bottom left;
  padding: 45px 0px 90px;
  border-bottom: 4px solid #b0c7d2;
}

footer .col1 {
  float: left;
  width: 30%;
}

footer .col1 h2 {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: left;
  margin-bottom: 30px;
  line-height: 16px;
}

footer .col1 h2 span {
  border-bottom: 1px solid #ffffff;
  padding-bottom: 10px;
}

footer .col2 {
  float: left;
  width: 30%;
}

footer .col2 h3 {
  text-align: left;
  color: #ffffff;
}

footer .col2 p {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

footer .col3 {
  float: left;
  width: 30%;
}

footer .col3 p, footer .col3 a {
  color: white;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

footer .social {
  margin-top: 20px;
}

footer .social img {
  width: 40px;
  margin-right: 10px;
}

/* Language selector */
.langselector {
  margin-right: 10px;
}

.langselector a {
  transition: opacity 0.2;
  color: white !important;
  text-transform: lowercase;
}

.langselector.first {
  margin-left: 50px;
}

.langselector.separator {
  color: white;
}

.langselector a.inactive {
  opacity: 0.3;
}

.langselector a.active,
.langselector a:hover {
  opacity: 1;
}

/* TUV logo (front page) */

.extra_logo {
    position: absolute;
    width: 44%;
    left: 31%;
    bottom: 0;
}

.extra_logo_2 {
    max-width: 160px !important;
    display: block;
    margin: -10px auto 0;
}

/* Media queries */

@media (min-width: 48em) {
  .container {
    width: 744px;
  }
}

@media (min-width: 64em) {
  .container {
    width: 960px;
  }
}

@media (max-width: 1919px) {
  #products .small-products .box {
    height: 290px;
  }
  .extra_logo {
    width: 50%;
    left: 29%;
    bottom: 8%;
  }
  #products .small-products .box .col1 h4 {
    font-size: 19px;
  }
  #products .small-products .box .col1 {
    padding-left: 15px;
  }
}

@media (max-width: 1890px) {
  #office_parallax {
    width: 1100px;
    min-height: 1100px;
    right: -300px;
  }  
}

@media (max-width: 1690px) {
  #office_parallax {
    width: 1000px;
    min-height: 1000px;
    right: -350px;
  }  
}


@media (min-width: 1241px) {
  .container {
    width: 1200px;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

@media (max-width: 1240px) {
   #office_parallax {
    width: 620px;
    min-height: 620px;
    right: -150px;
    top:0px;
    z-index:5000;
  }  
  #products .small-products .box .col2 {
    width: 40%;
  }
  .extra_logo {
    bottom: 2%;
  }
  .extra_logo_2 {
    max-width: 130px !important;
  }
}

@media (min-width: 1920px) {
  .container {
    width: 1880px;
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media (max-width: 1240px) {
  #products .main .col2 h3 {
    font-size: 35px;
  }
  #products .main .col2 h4 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  #products .main .col2 p {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  #products .main .col3 table tr td {
    padding: 5px 5px;
    font-size: 12px;
  }
  #products .small-products .box {
    width: 49%;
  }
  #products .small-products .box:nth-of-type(3) {
    margin-right: 2%;
  }
  #products .small-products .box:nth-of-type(2),
  #products .small-products .box:nth-of-type(4),
  #products .small-products .box:nth-of-type(6) {
    margin-right: 0%;
  }
}

@media (max-width: 1199px) {
  #about .col {
    width: 55%;
  }
  #about img {
    max-width: 90%;
  }
  #office img {
    width: 45%;
    margin-bottom: 40px;
  }
  #about {
    /*margin-top: 20px;*/
  }
  #about h2 span {
    font-size: 20px;
  }
  #products .small-products .box .col1 h4 {
    font-size: 17px;
  }
}

@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  #nav-icon {
    display: block;
  }
  header {
    position: fixed;
    width: 100%;
    top: 0px;
  }
  #about {
    margin-top: 100px;
    padding-bottom: 60px;
  }
  footer .col2 {
  	width: 40%;
  }
  #about img {
    max-width: 56%;
    margin-bottom: 100px;
  }
  #about .col {
    width: 100%;
  }
  #about h2 {
    margin-bottom: 60px;
  }
  #office {
    z-index: 2000;
  }
  #office img {
    width: 40%;
    margin-top: 100px;
  }
  #office_parallax {
    width: 420px;
    min-height: 420px;
    right: -150px;
    top:0px;
    z-index:5000;
  }  
  .circle_p {
    display: none;
  }
  #products .small-products .box {
    height: 270px;
  }
  .extra_logo {
    width: 60%;
    left: 25%;
    bottom: 4%;
  }
  #mobilemenu {
    height: calc(100% - 80px);
    top: 80px;
  }
  .langselector.first {
    margin-left: 0px;
  }
  .langselector {
    margin-right: 0px;
  }
  #mobilemenu ul li a {
    font-size: 20px;
    line-height: 70px;
  }
}

@media (max-width: 743px) {
  .container {
    width: 94%;
  }

  #about .col {
    width: 100%;
  }

  #about img {
    margin-bottom: 70px;
  }

  footer .col1, footer .col2, footer .col3 {
  	width: 100%;
  	text-align: center;
  }

  footer .col1 h2 {
  	text-align: center;
  	border-bottom: 1px solid #ffffff;
    padding-bottom: 20px;
  }

  footer .col1 h2 span {
  	border-bottom: 0px;
  }

  footer .col2 h3 {
  	text-align: center;
  }

  footer .social {
  	margin-top: 40px;
  }

  footer .social img {
    width: 50px;
    margin-right: 20px;
	}

  #nav-icon {
    margin: 20px 0 20px;
  }

  #products .main {
    position: relative;
  }

  #products .main .col1, #products .main .col2, #products .main .col3 {
    float: initial;
    width: 92%;
    margin: 0 auto;
  }

  #products .main .col1 img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }

  #products .main .col3 table {
    width: 100%;
    margin-top: 40px;
  }

  #products .main .col3 table tr td {
    font-size: 13px;
  }

  #products .main .col3 a {
    display: block;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }

  #products .main .col3 a img {
    width: 10px;
    margin-right: 5px;
  }

  #products .small-products .box {
    width: 100%;
    margin-right: 0;
    height: auto;
    background-size: 45% auto;
  }

  #products .small-products .box .col1 {
    width: 60%;
  }

  #products .small-products .box .col1 a {
    position: initial;
    margin-top: 140px;
    margin-bottom: 20px;
  }

  #products .main {
    background-size: 50% auto;
  }

   #office_parallax {
    width: 320px;
    min-height: 320px;
    right: -80px;
    top:-20px;
    z-index:5000;
  }

  .extra_logo {
    width: 50%;
    left: -50%;
    bottom: 14%;
  }  

}

@media (max-width: 580px) {

  #about {
    padding-top: 15px;
  }
  #about img {
    margin-bottom: 50px;
  }
  #office_parallax {
    width: 250px;
    min-height: 250px;
    right: -50px;
    top:-20px;
    z-index:5000;
  }  
  .extra_logo {
    width: 40%;
    left: 35%;
    bottom: -20%;
  } 
  #products .small-products .box .col1 h4 {
    font-size: 14px;
  }
  #products .small-products .box .col1 a {
    margin-top: 60px;
  }
}

@media (max-width: 490px) {

  #office_parallax {
    width: 180px;
    min-height: 180px;
    right: -40px;
    top:0px;
    z-index:5000;
  }  

  #about img {
    margin-bottom: 20px;
  }

  #about h2 {
    margin-bottom: 20px;
  }

  #about .main {
    margin-top: 45px;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
  }

  .extra_logo {
    width: 50%;
    left: 30%;
    bottom: -30%;
  }

  #about p {
    font-size: 19px;
  }

  #products .main .col2 h3 {
    font-size: 18px;
  }

  #products .main {
    min-height: unset;
  }

  #products .big-products {
    min-height: unset;
  }

  #products .main .col2 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}
}