@charset "UTF-8";
/* CSS Document */


* {
      box-sizing: border-box;
}
ul {
/*  list-style-image: url('../images/checkmark2.png');*/
}
 
html {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
}
 
body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
/*      background: url(background-img.jpg);*/
/*
      background-position: center;
      background-size: cover;
*/
}
 
nav {
      padding: 8px;
}
 
.logo {
      float: left;
      padding: 8px;
      margin-left: 16px;
      margin-top: 8px;
}


.logo a {
      color: #000;
      text-transform: uppercase;
      font-size: 18px;
      letter-spacing: 0px;
      text-decoration: none;
}
 
nav ul {
      float: right;
}
 
nav ul li {
      display: inline-block;
      float: left;
}
 
nav ul li:not(:first-child) {
      margin-left: 48px;
}
 
nav ul li:last-child {
      margin-right: 24px;
}
 
nav ul li a {
      display: inline-block;
      outline: none;
      color: #000;
/*      text-transform: uppercase;*/
      text-decoration: none;
      font-size: 16px;
      letter-spacing: 1.2px;
      font-weight: 400;
}
 


.bg-light-white {
  
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #ffffff 0%,#f6f6f6 47%,#ededed 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */}

.bg-gradient-bdy {
  background: #eeeeee; /* Old browsers */
background: -moz-linear-gradient(top, #eeeeee 0%, #eeeeee 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #eeeeee 0%,#eeeeee 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #eeeeee 0%,#eeeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
}
.bg-gradient-blue {
background: #1e5799; /* Old browsers */
background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}

.bg-gradient-grey {
background: #cedce7; /* Old browsers */
background: -moz-linear-gradient(top, #cedce7 0%, #596a72 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #cedce7 0%,#596a72 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72',GradientType=0 ); /* IE6-9 */
}

@media screen and (max-width: 864px) {
  
    .cta-title {
    font-size:29px;
  }
      .logo {
            padding: 0;
      }
 
      .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: #fff;
            opacity: 0;
            transition: all 0.2s ease;
      }
 
      .nav-wrapper ul {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
      }
 
      .nav-wrapper ul li {
            display: block;
            float: none;
            width: 100%;
            text-align: right;
            margin-bottom: 10px;
      }
 
      .nav-wrapper ul li:nth-child(1) a {
            transition-delay: 0.2s;
      }
 
      .nav-wrapper ul li:nth-child(2) a {
            transition-delay: 0.3s;
      }
 
      .nav-wrapper ul li:nth-child(3) a {
            transition-delay: 0.4s;
      }
 
      .nav-wrapper ul li:nth-child(4) a {
            transition-delay: 0.5s;
      }
 
      .nav-wrapper ul li:not(:first-child) {
            margin-left: 0;
      }
 
      .nav-wrapper ul li a {
            padding: 10px 24px;
            opacity: 0;
            color: #000;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.2px;
            transform: translateX(-20px);
            transition: all 0.2s ease;
      }
 
      .nav-btn {
            position: fixed;
            right: 10px;
            top: 40px;
            display: block;
            width: 48px;
            height: 48px;
            cursor: pointer;
            z-index: 9999;
            border-radius: 50%;
      }
 
      .nav-btn i {
            display: block;
            width: 20px;
            height: 2px;
            background: #000;
            border-radius: 2px;
            margin-left: 14px;
      }
 
      .nav-btn i:nth-child(1) {
            margin-top: 16px;
      }
 
      .nav-btn i:nth-child(2) {
            margin-top: 4px;
            opacity: 1;
      }
 
      .nav-btn i:nth-child(3) {
            margin-top: 4px;
      }
  

}
 
#nav:checked + .nav-btn {
      transform: rotate(45deg);
}
 
#nav:checked + .nav-btn i {
      background: #000;
      transition: transform 0.2s ease;
}
 
#nav:checked + .nav-btn i:nth-child(1) {
      transform: translateY(6px) rotate(180deg);
}
 
#nav:checked + .nav-btn i:nth-child(2) {
      opacity: 0;
}
 
#nav:checked + .nav-btn i:nth-child(3) {
      transform: translateY(-6px) rotate(90deg);
}
 
#nav:checked ~ .nav-wrapper {
      z-index: 9990;
      opacity: 1;
}
 
#nav:checked ~ .nav-wrapper ul li a {
      opacity: 1;
      transform: translateX(0);
}
 
.hidden {
      display: none;
}

/*form
===================*/
.form-control {
  background: none;
  outline: none;
  border: 1px solid #444;
  margin-bottom: 20px;
  padding: 10px w0px ;
}

textarea {
  background-color:#000;
}

.form-control-detail {
/*  border-radius: 50px;*/
/*  background-color: #eeeeee;*/
  display: inline;
  width: 100%;
}

input {
  height:45px;
}


form .submit {
background: #1e5799; /* Old browsers */
background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */  border-color: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  height: 50px;
  margin-top: 20px;
}

form .submit:hover {
  cursor: pointer;
}
/*Containers
===================*/
.hero-container {
    height: 461px;
    padding: 25px;
}

/*Background Images
===================*/

.hero-image-contact-page {
    background-image: url("../images/backgrounds/contact-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    background-repeat: no-repeat;
    height: 461px;

}

.contact-form-phone {
/*     background-image: url("../images/icons/phone.png");*/
/*    background-size: cover;*/
    background-position: 0px 0px;
/*    background-attachment: fixed;*/
/*    width: 100%;*/
    background-repeat: no-repeat;
    height: 61px;
}

.hero-image-thankyou-page {
    background-image: url("../images/backgrounds/thankyou-bg.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
}

.hero-image-bottom-contact-page {
    background-image: url("../images/backgrounds/contact-bottom-bg.png");
    background-size: cover;
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
}

.hero-image-about-page {
    background-image: url("../images/backgrounds/about-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    background-repeat: no-repeat;
    height: 461px;

}

.hero-image14 {
    background-image: url("../images/backgrounds/gradient-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    background-repeat: no-repeat;
}


.hero-image {
    background-image: url("../images/hero-image.jpg");
    background-size: cover;
    background-position: right;
    background-repeat: none;
/*    width: 100%;*/
    height: 461px;

}

.hero-image-services-page {
    background-image: url("../images/backgrounds/units.jpg");
    background-size: cover;
    background-position: right;
    width: 100%;
    background-repeat: no-repeat;
/*    background-attachment: fixed;*/

}

.hero-image4 {
    background-image: url("../images/backgrounds/bg-01.png");
    background-repeat: none;
    background-size: cover;
}

.hero-image2 {
    background-image: url("../images/backgrounds/uv-light-bg.jpg");
    background-size: cover;
    background-position: right;
    background-repeat: none;
    background-attachment: fixed;

}

.certification-icon {
    height: 90px;
}

.certification-icon-big {
    height: 130px;

}

/*Slanted Divs
===================*/

.slant {
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 300%, 0 100%);
          clip-path: polygon(0 0, 100% 10%, 100% 300%, 0 100%);
}


/*Buttons
===================*/

.normal-button {
    margin-top: 10px;
    background: blue;
    border: none;
    padding: 5px 15px;
}

.button-text {
    text-transform: uppercase;
    font-weight: 500;
}

/* Skew
==========================================*/
.c-ro {
      -ms-transform: skewX(20deg);
      -webkit-transform: skewX(20deg);
      transform: skewX(20deg);
}

.c-unro {
      -ms-transform: skewX(-20deg);
      -webkit-transform: skewX(-20deg);
      transform: skewX(-20deg);  
}

/*Container Height
===================*/
.container-200 {
    height:200px;
}


/*TEST*/

.current {
  background: #1e5799; /* Old browsers */
background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */

  transform: skew(20deg);  /* SKEW */
color:#fff;
}

.current2 {
    transform: skew(-20deg);  /* SKEW */
      color: #fff;
}




