/* ---------- COLOR SETTINGS --------- */
/* ---------- FONT FAMILY SETTINGS --------- */
/* ---------- FONT WEIGHT SETTINGS --------- */
/* ---------- FONT SIZE SETTINGS --------- */
/*  ---------- REGULAR CSS --------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none !important;
  list-style: none; }

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  line-height: 1.3;
  font-family: "Sulphur Point", sans-serif;
  font-weight: 400;
  font-size: "16px";
  color: #000000;
  -webkit-font-smoothing: antialised; }

h1 {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  color: #0096ff; }

h2 {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  color: #0096ff; }

h3 {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  color: #0096ff; }

h4 {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  color: #0096ff; }

h5 {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  color: #0096ff; }

h6 {
  font-family: "Sulphur Point", sans-serif;
  font-weight: 700;
  color: #0096ff; }

body input:focus:required:invalid, body textarea:focus:required:invalid {
  color: red; }

body input:required:valid, body textarea:required:valid {
  color: green; }

a:hover, a:active, a:focus {
  text-decoration: none; }

.white {
  color: #fff !important; }

.black {
  color: #000 !important; }

a {
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s; }

.left {
  float: left; }

.right {
  float: right; }

.clear {
  clear: both; }

/*  ---------- NAVIGATION --------- */
nav.nav_bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  -webkit-transition: height 0.5s, -webkit-transform 0.5s;
  transition: height 0.5s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, height 0.5s;
  transition: transform 0.5s, height 0.5s;
  transition: transform 0.5s, height 0.5s, -webkit-transform 0.5s;
  z-index: 100; }

nav.nav_bar .row {
  height: 100px; }

nav.nav_bar .logo {
  max-width: 150px;
  padding: 0 15px; }

nav.nav_bar .logo .white_logo {
  display: block; }

nav.nav_bar .logo .dark_logo {
  display: none; }

nav.nav_bar .menu {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  list-style-type: none; }

nav.nav_bar .menu li {
  position: relative;
  margin-right: 30px;
  font-size: 16px; }

nav.nav_bar .menu li:last-child {
  margin-right: 0; }

nav.nav_bar .menu li a {
  position: relative;
  color: #ffffff; }

nav.nav_bar .menu li a:hover {
  color: #ffffff; }

nav.nav_bar .menuicon {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0 15px;
  list-style-type: none; }

nav.nav_bar .menuicon li {
  position: relative;
  margin-right: 30px;
  font-size: 16px; }

nav.nav_bar .menuicon li:last-child {
  margin-right: 0; }

nav.nav_bar .menuicon li a {
  position: relative;
  color: #0096ff; }

nav.nav_bar .menuicon li a:hover {
  color: #ffffff; }

/* lijn onder link menu */
nav.nav_bar .menu li a:hover:after {
  width: 100%;
  background-color: #0096ff; }

nav.nav_bar .menu li a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: auto;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

nav.nav_bar .menu li .active {
  color: #ffffff; }

nav.nav_bar .menu li .active:after {
  width: 100%;
  background-color: #0096ff; }

nav.nav_scroll {
  position: fixed;
  top: -100px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  -webkit-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  transform: translate(0, 100px); }

nav.nav_scroll .logo .white_logo {
  display: none; }

nav.nav_scroll .logo .dark_logo {
  display: block; }

nav.nav_scroll .row {
  height: 85px; }

nav.nav_scroll .menu li a {
  color: #000000; }

nav.nav_scroll .menu li a:hover, nav.nav_scroll .menu li a.active {
  color: #000000; }

nav.nav_scroll .menuicon li a:hover, nav.nav_scroll .menuicon li a.active {
  color: #004A80; }

.mob_button {
  position: relative;
  display: none;
  width: 24px;
  height: 18px;
  margin-right: 25px;
  background-color: transparent;
  border: none;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  z-index: 55; }

.mob_button:focus {
  outline: none; }

.mob_button .line_menu {
  display: block;
  width: 100%;
  height: 3px;
  margin: 0 0 4px;
  background-color: #a0a0a0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s; }

.mob_button .line_menu:last-child {
  margin-bottom: 0; }

.mob_button.active .line_menu {
  width: 20px;
  margin: -3px 0 0;
  margin-left: 1px; }

.mob_button.active .line_menu:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.mob_button.active .line_menu:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mob_button.active .line_menu:last-child {
  opacity: 0; }

/* Block */
section {
  /*padding: 80px 0;*/
  overflow: hidden; }

/* Section background image */
.bg_img {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover; }

/* Background Parallax */
header.bg_img {
  background-position: center top;
  background-attachment: fixed;
  background-position: center -300px; }

header {
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50vh;
  padding: 70px 0;
  color: #fff;
  overflow: hidden; }

header .row {
  position: relative;
  z-index: 3; }

header:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1; }

header h1 {
  -webkit-animation-delay: .4s;
  animation-delay: .4s; }

/* buttons */
.btn-big {
  display: inline-block;
  width: auto;
  padding: 17px 51px;
  font-size: 16px;
  background-color: #0096ff;
  color: #ffffff;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  line-height: 1; }

.btn-big:after {
  display: none; }

.btn-big:hover {
  background-color: #004A80;
  color: #ffffff; }

/* Banner labels */
.banner_labels {
  background-color: #004A80;
  color: #fff; }

.banner_labels .row div {
  text-align: left; }

.banner_labels i, .banner_labels svg {
  color: #fff; }

.banner_labels span {
  display: inline-block;
  padding-left: 20px;
  font-weight: bold; }

/* productgroups home */
.product_groups .product h2 {
  color: #000; }

.product_groups .product .inner {
  display: block;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px; }

.product_groups .inner a {
  color: #0096ff; }

.product_groups .inner a:hover {
  color: #004A80; }

.product_groups .inner a:hover:after {
  width: 50%;
  background-color: #0096ff; }

.product_groups .inner a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: auto;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

.product_new .product h2 {
  color: #000; }

.product_new .product .inner {
  display: block;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px; }

.product_new .inner a {
  color: #0096ff; }

.product_new .inner a:hover {
  color: #004A80; }

.product_new .inner a:hover:after {
  width: 50%;
  background-color: #0096ff; }

.product_new .inner a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: auto;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

/* Slick slider home */
.home-slider {
  /*margin: 50px;*/
  padding: 50px; }

.home-slider .inner {
  /*margin: 50px;*/
  display: block;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px; }

/* the slides */
.slick-slide {
  margin: 0 15px; }

/* the parent */
.slick-list {
  margin: 0 -15px; }

/* animeted buttons */
.animatedbox {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  width: 130px;
  height: 55px;
  font-size: 14px;
  line-height: 55px;
  text-align: center;
  text-transform: uppercase;
  color: #0096ff;
  cursor: pointer;
  overflow: hidden; }
  .animatedbox svg {
    position: absolute;
    top: 0;
    left: 0; }
    .animatedbox svg rect {
      stroke: #0096ff;
      stroke-width: 3;
      stroke-dasharray: 322, 0;
      stroke-dashoffset: 0;
      transition: all 350ms ease-out; }

.animatedbox:hover {
  color: #004A80; }
  .animatedbox:hover svg rect {
    stroke: #004A80;
    stroke-width: 5;
    stroke-dasharray: 110, 312;
    stroke-dashoffset: 227; }

.animatedbox:active {
  font-weight: 600; }

.animatedbox.white {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  width: 130px;
  height: 55px;
  font-size: 14px;
  line-height: 55px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  overflow: hidden; }
  .animatedbox.white svg {
    position: absolute;
    top: 0;
    left: 0; }
    .animatedbox.white svg rect {
      stroke: #0096ff;
      stroke-width: 3;
      stroke-dasharray: 322, 0;
      stroke-dashoffset: 0;
      transition: all 350ms ease-out; }

.animatedbox.white:hover {
  color: #0096ff; }
  .animatedbox.white:hover svg rect {
    stroke: #fff;
    stroke-width: 5;
    stroke-dasharray: 110, 312;
    stroke-dashoffset: 227; }

.animatedbox.white:active {
  font-weight: 600; }

.bgcolor01_bottom50 {
  background: linear-gradient(to top, #0096ff 0%, #0096ff 40%, #ffffff 40%, #ffffff 100%); }

.bgcolor01_top50 {
  background: linear-gradient(to top, #ffffff 0%, #ffffff 40%, #0096ff 40%, #0096ff 100%); }

.bgcolor01_left60 {
  background: linear-gradient(to left, #ffffff 0%, #ffffff 35%, #0096ff 35%, #0096ff 100%); }

/* Footer */
footer {
  color: #fff;
  background-color: #004A80;
  overflow: hidden; }

footer li {
  padding-bottom: 3px; }

footer li a {
  display: block;
  color: #fff; }

footer li a:hover {
  color: #0096ff; }

footer .social_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*
	-webkit-box-pack:center;
	-webkit-justify-content:center;
	-ms-flex-pack:center;
	justify-content:center;
	-webkit-box-align:center;
	-webkit-align-items:center;
	-ms-flex-align:center;
	align-items:center;*/
  margin: 0 0 25px;
  list-style-type: none;
  overflow: hidden;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s; }

footer .social_list li {
  margin: 0 10px; }

footer .social_list li a {
  display: block;
  color: #fff; }

footer .social_list li a:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  color: #0096ff; }

footer .bottom {
  text-align: center;
  background-color: #0096ff;
  color: #fff; }

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .banner_labels .row div {
    text-align: center; }
  .banner_labels span {
    display: block;
    padding-left: 0px;
    font-size: 100%;
    font-weight: bold; } }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .banner_labels .row div {
    text-align: center; }
  .banner_labels span {
    display: block;
    padding-left: 0px;
    font-size: 100%;
    font-weight: bold; } }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .banner_labels .row div {
    text-align: center; }
  .banner_labels span {
    display: block;
    padding-left: 0px;
    font-size: 120%;
    font-weight: bold; } }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .banner_labels .row div {
    text-align: center; }
  .banner_labels span {
    display: inline-block;
    padding-left: 20px;
    font-size: 120%;
    font-weight: bold; } }

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
  header h1 {
    font-size: 40px;
    line-height: 50px; }
  /* Mob menu */
  .mob_button {
    display: block; }
  nav.nav_bar .logo {
    position: relative;
    z-index: 11; }
  nav.nav_bar .row {
    height: 55px;
    z-index: 1; }
  nav.nav_bar .menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    min-height: 100vh;
    padding: 10px;
    padding-top: 25vh;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    -webkit-transition: .5s linear;
    -o-transition: .5s linear;
    transition: .5s linear;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    z-index: -1; }
  nav.nav_bar .menu li {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
    text-align: center; }
  nav.nav_bar .menu li:last-child {
    margin-bottom: 0; }
  nav.nav_bar .menu li a {
    display: inline-block;
    color: #000; }
  nav.nav_bar .menu li a:hover, nav.nav_bar .menu li a.active {
    color: #4f86a6; }
  nav.nav_bar .menu_vissible {
    opacity: 1;
    visibility: visible;
    z-index: 5; }
  nav.nav_scroll .logo {
    position: relative;
    z-index: 11; }
  nav.nav_scroll:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    z-index: 0; }
  nav.nav_bar_mob {
    bottom: 0; }
  #top_block .pl-100 {
    padding-left: 10px; }
  #top_block .pr-100 {
    padding-right: 10px; }
  header.bg_img {
    background-attachment: scroll; } }

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  body {
    font-size: 14px; }
  #top_block .pl-100 {
    padding-left: 0px; }
  #top_block .pr-100 {
    padding-right: 0px; }
  header.bg_img {
    background-attachment: scroll; } }
