:root {
	--dsg-primary: #3b3c42;
	--dsgsecondary: #f2f2f2;
	--background: #fcfcfc;
	--font: black; 
   --font-family: sans-serif !important;
  }

.row {
  align-items: center;
}

  .screen-darken{
	content: ''; 
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.5);
	pointer-events: none;
	z-index:10; opacity:1; 
	visibility:visible;
	position: fixed;
	-webkit-transition: background-color 2s ease-in; /* Safari */
	transition: background-color 2s ease-in;
-webkit-transition-delay: 2s; /* Safari */
	transition-delay: 2s;
  }
  
  .navbar{
	position: relative;
	z-index: 15;
	
  }

a {
  color: #333;
  text-decoration: underline;
}

/* --- Custom styles by Henk Burggraaff / 21M --- */

@media (min-width: 1220px) {
  	.container, .container-sm, .container-md, .container-lg, .container-xl {
  		max-width: 1200px; 
    }
}
@media (min-width: 1580px) {
	.container, .container-sm, .container-md, .container-lg, .container-xl {
		max-width: 1560px;
	}
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.no-gutters {
	margin-right: 0;
	margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
	position: relative;
 	width: 100%;
  	padding-right: 15px;
  	padding-left: 15px;
}

/* Blog */

.blogs > .container > .row > .col-12 {
	margin-bottom: 15px;
}
.blogs__item {
	height: 100%;
	font-size: 15px;
	background-color: #e2fcea;
	border-radius: 20px;
	overflow: hidden;
}
.blogs__item > .row{
	height: 100%;
}
.blogs__item__image {
	position: relative;
	margin:  0;
	padding: 0;
	width: 100%;
	height: 100%;
	min-height: 200px;
}
.blogs__item__image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.blogs__item .entry {
	padding: 30px 25px 15px 10px;
}
.blogs__item .entry a {
	font-weight: bold;
	text-decoration: none;
}

/* Typography */

body {
	font-family: sans-serif;
	font-weight: 300;
	font-size: 16px;
}

a {
	transition: all .15s ease;
}

h1, h2, h3, h4, h5 h6 {
	margin: 0;
	
}
h1 {
	font-size: 42px;
	font-weight: 700;
}
h2 {
	font-size: 32px;
   color: var(--dsg-primary);
   font-weight: 400;
}
h3 {
	font-size: 28px;
	
}

.header h3 {
	font-size: 18px;
}
h4 {
	font-size: 20px;
}
strong {
	font-weight: 900;
}
.font-light {
	font-weight: 300;
	line-height: 1.4;
}
.readmore {
	color: #000;
	font-weight: 800;
	text-decoration: underline;
}
.readmore:hover {
	text-decoration: none;
}

/* Global */

.bg-yellow {
	color: #FFF;
	background-color: var(--dsg-primary);
}

.rounded {
	border-radius: 30px !important;
}

/* Buttons */

.button, a.hikacart {
	display: inline-block;
	margin: 0;
	padding: 10px 23px;
	font-size: 20px !important;
	line-height: 24px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none !important;
	text-transform: lowercase;
	background-color: orange;
	border-radius: 4px;


}

a.button-primary {
    background-color: white;
}

.button.button-secundary, a.hikacart {
	color: var(--dsg-primary);
	background-color: #FFF;
}
.button + .button {
	margin-left: 10px;
}
.button:hover, a.hikacart:hover {
	color: #FFF;
	background-color: #d86300!important;
	border-color: #000;
}

/* Header */

.header {
	position: sticky;
	z-index: 9999;
	top: 0;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 12px;
	background-color: #FFF;
    border-bottom: 2px solid #3b3c42;
}
.direct-contact {
	margin-left: 50px;
	font-size: 18px;
}
.direct-contact a {
	font-weight: 800;
}
.navbar-nav {
	width: 100%;
	justify-content: flex-end;
}
.navbar-nav li:not(:last-child) {
	margin-right: 16px;
}

.navbar-nav .nav-link {
	font-size: 24px;
}
.navbar-nav li .button {
	font-size: 24px;
	color: #FFF !important;
}
.navbar-toggler {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
    width: 40px;
    height: 40px;
    background-color: var(--dsg-primary);
	border: none !important;
	border-radius: 20px;
}
.navbar-toggler > span {
	position: absolute;
    top: 50%;
    left: 7px;
    right: 7px;
    transform: translateY(-50%);
    height: 2px;
    background-color: transparent;
    border-radius: 2px;
    transition: all .15s ease;
}
.navbar-toggler > span:before,
.navbar-toggler > span:after {
	content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    border-radius: 2px;
    transition: all .15s ease;
}
.navbar-toggler > span:before {
    top: 0;
    transform: rotate(45deg);
}
.navbar-toggler > span:after {
    bottom: 0;
    transform: rotate(-45deg);
}
.navbar-toggler.collapsed > span {
	background-color: #FFF;
}
.navbar-toggler.collapsed > span:before {
    top: -7px;
    transform: rotate(0deg);
}
.navbar-toggler.collapsed > span:after {
    bottom: -7px;
    transform: rotate(0deg);
}

/* Sections */

.bg-dark {
	background-color: var(--dsg-primary);
	color: white;
}

.main + .section-bg-white {
	padding-top: 0;
}

.section {
	
	padding-bottom: 75px;
	padding-top: 75px;
}
.section.bg-yellow + .section.bg-yellow,
.section.bg-white + .section.bg-white,
.section.bg-light + .section.bg-light {
	padding-top: 0;
}

.bg-green {
	background-color: #1E9E41;
    color:white;
}

.bg-blue {
	background-color: var(--dsg-primary);
    color:white;
	padding:30px;
	border-radius: 4px
}

.rounded-box {
	padding: 35px;

 	border-radius: 4px;
}

.bordered-box {
	padding: 35px;
 	border: 1px solid var(--dsg-primary);
 	border-radius: 4px;
}

.bordered-grey-box {
	padding: 35px;
 	border: 1px solid #ccc;
 	border-radius: 20px;
}

.content-box {
	padding: 35px;
	height: 100%;
	color: #FFF;
	background-color: var(--dsg-primary);
 	border-radius: 20px;
}
.content-box p a {
	color: #FFF;
	text-decoration: underline;
}
.content-box img {
	border-radius: 10px;
}

.yellow-box {
	padding: 30px;
	height: 100%;
	text-align: center;
	background-color: var(--dsg-primary);
	border-radius: 20px;
}
.yellow-box h1,
.yellow-box h2,
.yellow-box h3 {
	margin-bottom: 30px;
	color: #FFF;
}

.breadcrumb {
	margin-bottom: 30px;
	padding: 0;
	color: #000;
	font-size: 11px;
	font-weight: 400;
	background-color: #FFF;
}
.breadcrumb a,
.breadcrumb-item.active {
	color: #000;
}

.com-content-article.item-page .page-header {
	display: none;
}

/* Hero */

.hero {
	position: relative;
	padding: 90px 0;
    border-bottom: 2px solid #3b3c42;
}
.hero__content {
	position: relative;
	z-index: 2;

	font-size: 18px;
	text-align: left;

	
	
}
.hero__content h1 {
	margin-bottom: 20px;
}
.hero__image {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Front */

.usprow {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
}
.usprow__item {
	padding: 10px 0;
}
.usprow__item i {
	margin-right: 10px;
}

.testimonials {
	font-size: 16px;
}
.testimonials .fa-check-square {
	margin-right: 5px;
}

/* Application */

.application {
	display: block;
	position: relative;
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}
.application:after {
	content: "";
	padding-bottom: 66.666%;
	display: block;
}
.application__image {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.application__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
 
	transition: all .5s ease;
}
.application__title {
	position: absolute;
	bottom: 0;
	left: 32%;
	transform: translateX(-50%);
	z-index: 2;
	padding: 14px 25px 12px;
	min-width: 70%;
	text-align: left;
	font-size: 20px;
	font-weight: bold;
	color: var(--dsg-primary);
	background-color: #FFF;
	border-radius: 10px 10px 0 0;
}
.application:hover .application__image > img {
  	-webkit-filter: grayscale(0%);
  	filter: grayscale(0%);
	transform: scale(1.04);
}

/* HikaShop */

.hikashop_product {
	background: var(--dsg-primary);
	border-radius: 4px;

}

/* Whitepaper Form */

div[class^="col"] .whitepaper {
	height: 100%;
}
.whitepaper .mod-custom .bordered-box {
	display: flex;
	flex-direction: column;
}
.whitepaper .mod-custom .bordered-box > .bfClearfix {
	margin-top: auto;
}
#ff_form3 .bfElemWrap {
	float: left;
	padding-right: 30px;
	width: 33.333%;
}
#ff_form3 .bfElemWrap input {
	width: 100% !important;
}
#ff_form3 .bfClearfix {
	display: none;
}
#ff_form3 .button {
	padding-left: 10px;
	padding-right: 10px;
	float: left;
	width: 33.333%;
}

/* Contactform */

#ff_form2 .bfPage {
	margin-left: -15px;
	margin-right: -15px;
	display: flex;
	flex-wrap: wrap;
}
#ff_form2 .form-group {
	margin: 0;
	padding: 0 15px;
	width: 100%;
}
#ff_form2 #bfSubmitButton {
	float: right;
	background-color: #000;
}
#bfQuickModeSection76292,
#bfQuickModeSection66183 {
	margin: 0;
	padding: 0;
	flex: 0 0 50%;
}
#bfQuickModeSection54432 {
	margin: 0;
	padding: 0;
	flex: 0 0 100%;
}
#bfQuickModeSection54432 .col-form-label {
	width: 100%;
}
#bfQuickModeSection76292 input,
#bfQuickModeSection66183 input,
#bfQuickModeSection76292 textarea,
#bfQuickModeSection66183 textarea  {
	width: 100%;
}
#ff_elem39 {
	height: 162px;
}


input.form-control {
	height: auto;
	line-height: 25px; 
}

textarea:focus,
input:focus,
button:focus {
    outline: none !important;
}

/* Blog */

.section-blog .projectbox {
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
	height: 100%;
	text-align: center;
}
.projectbox .projectlink {
	font-weight: 800;
	font-size: 20px;
}
.section-blog .col-md-4:not(:last-child) .projectbox:after {
	content: "";
	position: absolute;
	top: 0;
	right: -15px;
	width: 1px;
	height: 100%;
	background-color: var(--dsg-primary);
}

.blog__article .entry h1 {
	margin-bottom: 2rem;
}
.blog__article .entry h2,
.blog__article .entry h3 {
	margin-bottom: 1rem;
}
.blog__article .entry h2 {
	font-size: 28px;
}

/* Headed List */

ul.headed-list {
	margin: 0;
	padding: 0;
	text-align: center;
	list-style: none;
}
ul.headed-list > li {
	margin-bottom: 30px;
}
ul.headed-list .headed-list__head {
	font-size: 40px;
	color: var(--dsg-primary);
}

/* Footer */

.footer {
	padding-top: 60px;
	padding-bottom: 60px;
	border-top: 2px solid #3b3c42;
}
.footer h4 {
	margin-bottom: 20px;
}
.footer a {
	color: white;
}
.footer a:hover {
	text-decoration: underline;
}
.bottom {
	padding-bottom: 20px;
}
.bottom-nav {
	display: inline;
	text-align: center;
	font-size: 13px;
	color: var(--dsg-primary);
}
.bottom-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bottom-nav li {
	display: inline-block;
	padding: 0 5px;
}
.bottom-nav li:not(:last-child):after {
	content: "|";
	margin-left: 10px;
}
.bottom-nav li a {
	color: var(--dsg-primary);
}
.bottom-nav li a:hover {
	text-decoration: underline;
}

/* Misc */

.edit .item-page {
	width: 80% !important;
	margin: 0px auto !important;
}

div[class^="col"] .mod-custom,
div[class^="col"] .mod-custom .bordered-box {
	height: 100%;
}

@media (max-width: 991px) {

h1 {
	font-size: 36px;
}
h2 {
	font-size: 28px;

}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 18px;
}

.section {
	margin-top: 60px;
	margin-bottom: 60px;
}

.navbar-nav {
	padding: 20px 0;

}

.application {
	margin-bottom: 15px;
}
.application:after {
	padding-bottom: 55%;
}

}

@media (max-width: 767px) {

.rounded {
	border-radius: 4px;
}

.yellow-box {
	height: auto;
	margin-bottom: 15px;
}

.whitepaper, .whitepaper .mod-custom,
.whitepaper .mod-custom .bordered-box {
	height: auto;
}

.section-blog .col-md-4:not(:last-child) .projectbox:after {
	content: none;
}
.projectbox {
	margin-bottom: 15px;
}

}

@media (max-width: 575px) {

.rounded {
	border-radius: 4px;
}

.section {
	padding-top: 45px;
	padding-bottom: 45px;
}

.button + .button {
	margin-left: 0;
	margin-top: 10px;
}

.carousel-control-next,
.carousel-control-prev {
	padding: 10px;
}

.bottom-nav li {
	display: block;
}
.bottom-nav li:after {
	content: none !important;
}

#bfQuickModeSection76292,
#bfQuickModeSection66183 {
	margin: 0;
	padding: 0;
	flex: 0 0 100%;
}

}