
*{
    box-sizing: border-box;
    font-family: 'Helvetica';
    letter-spacing: .05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     transition: all .3s;
    -webkit-transition: all 0s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
}

a,
button{
    cursor: pointer;
}

a{
    color: #fff;
    text-decoration: none; 
}

a:hover{
    text-decoration: underline;
}

p a{
    color: #ffffff;
    font-style: italic;
    font-weight: 700;
}

p {
    font-size: .7em;
    font-family: 'Helvetica';
}
.bigletter{
    text-align: left;
}
.bigletter::first-letter{
    font-size:150%;
    text-align:left; 
}
html, body{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Helvetica';
}

body{
    padding: 0px 0 0px;
    background: #000000;
    color: #000000;
    font-size: x-large;
    overflow-x: hidden;
    width: 100%;
    background-color: #000;
    font-family: 'Helvetica';
    border: 1px solid #ff9e3f;
    border-radius: 0px 0px 0px 0px;
    
}


body.home{
    /*background-image: url('../img/bg-homepage.png');*/
    background-size: cover;
}

body.services{
    background-image: url('../img/Create108-bg-services.jpg');
    background-size: cover;
}

body.about{
    background-image: url('../img/Create108-bg-services.jpg');
    background-size: cover;
}
body.contact{
    background-image: url('../img/Create108-bg-contact.jpg');
    background-size: cover;
}
.content{
    width: 100%;
    height: 100%;
    padding: 0px 0 100px 0;
    color: #fff;
    text-align: left;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    font-family: 'Helvetica';
}

body.home .content{
    color: #ffffff;
}

.content::-webkit-scrollbar {
    width: 4px !important;
    overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
}
 
.content::-webkit-scrollbar-track-piece {

}
.laws{
    font-size: 1em;
    text-align: left;
}
.laws:hover{
    /* font-size: 0.4em; */
}
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
}
.content::-webkit-scrollbar-thumb {
  background-color: black !important;
  overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
}
.container{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px;
}

header{
    /* background-color: #ffffff; */
    height: 100px;
    padding: 14px;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    -webkit-transition: height .3s;
    -moz-transition: height .3s;
    -ms-transition: height .3s;
    -o-transition: height .3s;
    transition: height .3s;
    z-index: 999;
}

footer{
    /* background-color: #ffffff; */
    /* height: 40px; */
    padding: 5px 10px;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    font-size: small;
    z-index: 999;
}

header .brand{
    float: left;
    
    height: 90px;
}

header .brand img{
    height: 90%;
}

header .brandText {
    margin-top: 0px;
    margin-bottom: 0px;
    letter-spacing: 2px;
    font-family: 'Helvetica';

}

.img-spin{
    border-radius: 10%;
    -webkit-transition: -webkit-transform .3s ease-in-out;
          transition:         transform .3s ease-in-out;   
}
.img-spin:hover {
  -webkit-transform:  scale(1.2);
          transform:  scale(1.2);    
}



header .menu {
    float: right;
    overflow: hidden;
    
}

header .menu ul.nav{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    padding-right: 20px;
    position: absolute;
    right: -700px;
    top: 20px;
    opacity: 0;
    -webkit-transition: right .3s, opacity .9s;
    -moz-transition: right .3s, opacity .9s;
    -ms-transition: right .3s, opacity .9s;
    -o-transition: right .3s, opacity .9s;
    transition: right .3s, opacity .9s;
}

header .menu.open ul.nav{
    right: 90px;
    opacity: 1;
}

header .menu ul.nav li{
    font-weight: 700;
    float: left;
    display: inline-block;
    font-size: 14px;
    padding: 0 15px;
    line-height: 62px;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
}

header .menu ul.nav li a:visited,
header .menu ul.nav li a:hover,
header .menu ul.nav li a:active,
header .menu ul.nav li a{
    text-decoration: none;
    color: #000000;
}

header .menu ul.nav li:hover:after{
    display: block;
    content: '';
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 60%;
    background-color: #000000;
    z-index:-1;
    transform: translateX(-50%);
    left: 50%;
}

header .menu ul.nav li.current:hover:after{
    transform: translate(-50%, -50%)!important;
    left: 50%!important;
    top: 50%!important;
}

header .menu ul.nav li.current:after{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60%;
    background-color: #000000;
    z-index:-1;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
}

header .menu .toggle-menu{
    width: 50px;
    height: 50px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
header .menu .toggle-menu:hover{
    width: 50px;
    height: 50px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
    -webkit-transform:  scale(1.2);
    transform:  scale(1.2);
}
header .menu .toggle-menu .bar{
    height: 4px;
    width: 50px;
    background-color: #000000;
    position: absolute;
    transition: all .3s;
}

header .menu .toggle-menu .bar.top{
    top: 0;
}

header .menu .toggle-menu .bar.middle{
    top: 15px;
    opacity: 1;
}

header .menu .toggle-menu .bar.bottom{
    top: 30px;
}

header .menu.open .toggle-menu .bar.top{
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
}

header .menu.open .toggle-menu .bar.middle{
    opacity: 0;
}

header .menu.open .toggle-menu .bar.bottom{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 17px;
}

.loa-Text {
    margin-top: 0px;
    margin-bottom: 0px;

}


footer .contact{
    float: left;
    display: inline-block;
    padding-top: 30px;
    font-size: 14px;
}

footer .social{
    float: right;
    display: inline-block;
    padding: 10px 0px 10px 0px;
}

footer .contact ul,
footer .social ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer .contact ul li,
footer .social ul li{
    line-height: 32px;
    float: left;
    display: inline-block;
    padding: 0px 8px 0 8px;
    font-family: 'Helvetica';
}

footer .social a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    width: 32px;
    height: 32px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    line-height: 32px;
}

footer .social a:hover{
    
    color: #ff9e3f;
}

h1, h2,
h3, h4,
h5, h6{
    text-transform: uppercase;
}

h1{
    font-size: 3em;
}

h2{
    font-size: 1.8em;
}

h3{
    font-size: 1.2em;
}

h4{
    font-size: .9em;
    
}

h5{
    font-size: .8em;
}
.block-text-h1{
    font-size: 1.4em;
    text-align: left;
    margin-bottom: 18px;
    margin-top: 18px;
    letter-spacing: 18px;
}
p{
    line-height: 24px;
    font-weight: 300;
    letter-spacing: .05em;
}

.h2Brand{
    font-size: 0.7em;
    font-weight: 800;
    
}

.h3Brand{
    font-size: 0.6em;
    font-weight: 500;
    letter-spacing: 2px;
}

.supportLocal-h6 {
    text-transform: none;
    margin: 0px 0px 0px 0px;
    font-weight: 100;
}


.one-logo {
    width: ;
}

.one-logo:hover{
    opacity: 0.2;
}

.slogan{
    font-size: 1.8em;
    padding-top: 3em;
    padding-bottom: 4em;
}
.absolute-content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}

.home .absolute-content{
    color: #ffffff;
}

.branding{
    text-align: center;
    padding: 30px 0 30px 0;
    position: absolute;
    color: #fff;
    z-index: 1;
    top: 48%;
    left: 50%;
    width:100%;
}

.branding h1{
    font-family: 'Helvetica';
    font-size: 2.4em;
    letter-spacing: 2px; 
    font-weight: 900;
}

.slider-text-1{
    color: #ffffff;
}
.branding h1,
.branding h2,
.branding h3{
    font-family: 'Helvetica';
    margin: 0;
}

.free-kick-slider{
    text-align: center;
    padding: 30px;
    color: #000000;
    z-index: 1;
}
.btn{
    padding: 18px;
    font-size: 12px;
    background: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
}
.ghost{
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 0.0s;
    -moz-transition: background 0.0s;
    -ms-transition: background 0.0s;
    -o-transition: background 0.0s;
    transition: background 0.0s;
}
.ghost3{
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 0.0s;
    -moz-transition: background 0.0s;
    -ms-transition: background 0.0s;
    -o-transition: background 0.0s;
    transition: background 0.0s;
}
.ghost:hover{
    border: 1px solid #fff;
    color: #000;
    background: #fff;
}
.ghost3:hover{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}
.ghost.black{
    border-radius: 40px 40px 40px 40px;
    border:1px solid #fff;
    color: #fff;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost.black:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost3:focus{
    border: 1px solid #fff;
    color: #000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost:focus{
    border: 1px solid #ffffff;
    color: #000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost.black:hover{
    border: 1px solid #fff;
    color: #000;
    background: #fff;
}

.huge{
    font-size: 12px;
    letter-spacing: 2px;
}

.block{
    text-align: center;
    padding: 33px 33px 33px 33px;
    position: absolute;
    color: #fff;
    z-index: 1;
    top: 20%;
    /* left: 50%; */
    width: 100%;
}

.block.white{
    background-color: transparent;
}

.underline404{
    margin-top: 240px;
    position: relative;
    text-align: center;
}

.underline404:after{
    content: '';
    width: 80px;
    margin: 0 0 0 -40px;
    height: 4px;
    background: #000000;
    position: absolute;
    bottom: -10px;
    left: 50%;
}

h4.underline404:after{
    height: 6px;
}

.underline{
    margin-top: 40px;
    position: relative;
    text-align: center;
}

.underline:after{
    content: '';
    width: 80px;
    margin: 0 0 0 -40px;
    height: 4px;
    background: #000000;
    position: absolute;
    bottom: -10px;
    left: 50%;
}

h4.underline:after{
    height: 6px;
}

.col{
    display: inline-block;
    float: left;
    padding-bottom: 10px;
}

.col.col3{
    width: 25%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col3:hover{
    width: 25%;
    padding: 0 10px;
      -webkit-transform:  scale(1.05);
          transform:  scale(1.05);
}

.col.col4:hover {
    width: 33%;
    padding: 0 10px;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.col.col4 {
    width: 33%;
    padding: 0 10px;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
}
.col.col5{
    width: 50%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col5:hover{
    width: 50%;
    padding: 0 10px;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.round-wrapper{
    width: 170px;
    height: 170px;
    border: 1px solid #000000;
    border-radius: 50%;
    overflow: hidden;
}
.row{
    width: 100%;
    display: block;
    float: left;
    clear: both;
}

.row:before,
.row:after{
    float: left;
    clear: both;
}

.clients .round-wrapper{
    margin: 0 auto;
}

.clients .round-wrapper img{
    width: 100%;
    border-radius: 90px;  
}

img.grayscale {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
    -ms-filter: grayscale(100%); 
    -moz-filter: grayscale(100%);
}

img.grayscale:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%); 
}

.project-link{
    text-decoration: none;
    color: #000
}

.project-info{
    padding: 30px 3%;
}

.contact-bar{
    float: left;
    clear: both;
    display: block;
    width: 100%;
}

.contact-bar div{
    width: 33.33333%;
    float: left;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
}
.kvk-btw{
    float:none!important;
    text-transform: uppercase;
    text-align: center;
}
.contact-bar div i.fa{
    line-height: 2em;
}

.contact-bar div h4{
    margin: 0;
    font-size: .6em;
    font-weight: 400;
}

.contact-bar div i.fa{
    font-size: 0.8em;
    line-height: 1.9em;
}

.contact-form{
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding: 0px;
}

#email_validation, #name_validation {
    display:none;
}

label.required:after {
  content:'*';
  color:red;
}

span.error {
  background-color:#fff;
  color:#fff;
}
#email1-error, #name1-error, #message1-error{
    color:red;
    position: relative;
    float: center;
    text-align: center;
    font-size: 0.4em;
    padding-top: 7px;
}
#message1-error{
    padding-top: 0px!important;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    line-height: 2em;
    font-size: .5em;
    text-align: center;
    padding: 10px;
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* background: transparent; */
}

textarea:focus,
input:focus{
    outline: none;
    border: 1px solid #fff;
    border-radius: 40px 40px 40px 40px;
    box-shadow: 0 0 0 1px #fff;
    background-color: #000;
    color: #fff;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #fff;
    border-radius: 40px 40px 40px 40px;
  -webkit-text-fill-color: #fff;
  /* -webkit-box-shadow: 0 0 0px 1000px #000 inset; */
  transition: background-color 5000s ease-in-out 0s;
}

.contact-form textarea{
    width: 100%;
    line-height: 1.2em;
    font-size: .5em;
    padding: 10px;
    min-height: 200px;
    border: 1px solid #000000;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.contact-form button{
    width: 100%;
}
/*
.toast-success {
    background-color: #000000!important;
}*/

@media (max-width: 1000px) {

body { 
    font-size: large;
}

.contact-bar div{
    width: 280px;
    margin: 0 auto;
    float: none;
    display: block;
    clear: both;
}

.contact-bar div i.fa,
.contact-bar div h4{
    float: none;
}
a.navlink{
    color: #000000;
    text-decoration: none;
}

a.navlink:hover{
    text-decoration: none;
}  
.client-logo{
    width: 70%;
    margin-left:11%;
}
.branding h1{
    font-size: 1.4em;
    width: 100%;
    padding: 0 20% 0 %;
}
    .form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
}

    
}

@media screen and (max-width:920px){
header .menu{
    float: right;
    overflow: hidden;
}

header .menu ul.nav{
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    padding-right: 20px;
    position: absolute;
    right: -700px;
    top: 20px;
    opacity: 0;
    -webkit-transition: right .3s, opacity .9s;
    -moz-transition: right .3s, opacity .9s;
    -ms-transition: right .3s, opacity .9s;
    -o-transition: right .3s, opacity .9s;
    transition: right .3s, opacity .9s;
}

header .menu.open ul.nav{
    right: 90px;
    opacity: 1;
}

header .menu ul.nav li{
    font-weight: 700;
    float: left;
    display: inline-block;
    font-size: 14px;
    padding: 0 15px;
    line-height: 60px;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
}

header .menu ul.nav li a:visited,
header .menu ul.nav li a:hover,
header .menu ul.nav li a:active,
header .menu ul.nav li a{
    text-decoration: none;
    color: #000000;
}

header .menu ul.nav li:hover:after{
    display: block;
    content: '';
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 60%;
    background-color: #000000;
    z-index:-1;
    transform: translateX(-50%);
    left: 50%;
}

header .menu ul.nav li.current:hover:after{
    transform: translate(-50%, -50%)!important;
    left: 50%!important;
    top: 50%!important;
}

header .menu ul.nav li.current:after{
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    width: 60%;
    background-color: #000000;
    z-index:-1;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    left: 50%;
}

header .menu .toggle-menu{
    width: 50px;
    height: 50px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
header .menu .toggle-menu:hover{
    width: 50px;
    height: 50px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
    -webkit-transform:  scale(1.2);
    transform:  scale(1.2);
}
header .menu .toggle-menu .bar{
    height: 4px;
    width: 50px;
    background-color: #000000;
    position: absolute;
    transition: all .3s;
}

header .menu .toggle-menu .bar.top{
    top: 0;
}

header .menu .toggle-menu .bar.middle{
    top: 15px;
    opacity: 1;
}

header .menu .toggle-menu .bar.bottom{
    top: 30px;
}

header .menu.open .toggle-menu .bar.top{
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
}

header .menu.open .toggle-menu .bar.middle{
    opacity: 0;
}

header .menu.open .toggle-menu .bar.bottom{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 17px;
}

.branding h3{
    /* font-size: 1em; */
}
.branding h1{
    font-size: 1.4em;
    width: 100%;
    padding: 0 15% 0 15%;
}
    
    
a.navlink{
    color: #000000;
    text-decoration: none;
}

a.navlink:hover{
    text-decoration: none;
}  
.client-logo{
    width:70%;
}
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
}
}

@media screen and (max-width:860px){

header .menu ul.nav li {
    float: none;
    display: block;
    }

header.open{
    height: 100%;
}

header .menu.open ul.nav{
    left: 10px;
    opacity: 1;
    margin-top: 100px;
    text-align: center;
    width: 100%;
}

header .menu ul.nav li:hover:after{
    transform: translateY(0);
}

header .menu ul.nav li:hover:after{
    display: block;
    content: '';
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 8%;
    background-color: #000000;
    z-index: -1;
    transform: translateX(-50%);
}
.col{
    display: inline-block;
    float: left;
}

.col.col3{
    width: 50%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col3:hover{
    width: 50%;
    padding: 0 10px;
      -webkit-transform:  none;!important
          transform:  none;!important
}
.col.col4{
    width: 100%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col4:hover{
    width: 100%;
    padding: 0 10px;
      -webkit-transform:  none;!important
          transform:  none;!important
}
.col.col5{
    width: 100%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col5:hover{
    width: 100%;
    padding: 0 10px;
      -webkit-transform:  none;!important
          transform:  none;!important
}
.client-logo{
    width: 70%;
}
header .menu ul.nav li.current:after{
    transform: translate(-50%, -50%)!important;
    left: 50%!important;
    top: 50%!important;
    }

header .menu ul.nav li.current:hover:after{
    transform: translate(-50%, -50%)!important;
    left: 50%!important;
    top: 50%!important;
}
header .menu .toggle-menu{
    width: 50px;
    height: 50px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
   -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;*/
}
  header .menu .toggle-menu:hover {
    width: 50px;
    height: 50px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 15px;
    cursor: pointer;
    -webkit-transform: scale(1.2); */
    transform: scale(1.2); */
}
a.navlink{
    color: #000000;
    text-decoration: none;
}
.branding h1{
    font-size: 1.4em;
    width: 100%;
    padding: 0 15% 0 15%;
}
a.navlink:hover{
    text-decoration: none;
} 
.clint-logo{
    width: 70%;
}
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
}
}

@media screen and (max-width:680px){
.contact-bar{
    float: left;
    clear: both;
    display: block;
    width: 100%;
}

    
.contact-bar div{
    width: 100%;
    float: left;
    text-transform: uppercase;
    text-align: center;
}
.kvk-btw{
    float:none!important;
    text-transform: uppercase;
    text-align: center;
}
.contact-bar div i.fa{
    line-height: 2em;
}

.contact-bar div h4{
    margin: 0;
    font-size: 1em;
}

.contact-bar div i.fa{
    font-size: 1.8em;
    line-height: 1em;
}
#email1-error, #name1-error, #message1-error{
  color:red;
    position: relative;
    float: right;
    font-size: 0.69em;
    padding-top: 2px;
}
footer{
    /* height: 70px; */
    text-align: center;
    padding: 7px 10px;
}

footer .contact,
footer .social{
    float: none;
    padding: 10px;
    margin: 0;
}
    
footer .contact{
    float: none;
    padding: 10px;
    margin: 0;
    /* display: none; */
}

.col.col3{
    width: 100%;
}

.contact{
    width: 100%;
    font-size: 12px;
}

body{
    padding: 0px 0 0px;
}

p{
    line-height: 24px;
    font-weight: 300;
    letter-spacing: .05em;
}

h5{
    font-size: 0.8em;
}

.header{
    
}

body{
    padding: 0px 0;
}

header .brand {
    float: left;
 
}
.branding h1{
    font-size: 1.4em;
    width: 100%;
    padding: 0 15% 0 15%;
}
header .menu .toggle-menu {
    width: 30px;
    height: 30px;
    margin: 10px;
}

header .menu .toggle-menu .bar{
    width: 30px;
}

header .menu .toggle-menu .bar.middle{
    top: 11px;
}

header .menu .toggle-menu .bar.bottom {
    top: 22px;
}

header .menu.open ul.nav{
    margin-top: 50px;
}
header .menu .toggle-menu{
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
header .menu .toggle-menu:hover {
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}
a.navlink{
    color: #000000;
    text-decoration: none;
}

a.navlink:hover{
    text-decoration: none;
}  
.col{
    display: inline-block;
    float: left;
}

.col.col3{
    width: 100%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col3:hover{
    width: 100%;
    padding: 0 10px;
      -webkit-transform:  none;!important
          transform:  none;!important
}
.client-logo{
    width: 70%;
    }
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
}
}

@media screen and (max-width:520px){
.contact-bar{
    float: left;
    clear: both;
    display: block;
    width: 100%;

}

.contact-bar div{
    width: 100%;
    float: left;
    text-transform: uppercase;
    text-align: center;
}
.kvk-btw{
    float:none!important;
    text-transform: uppercase;
    text-align: center;
}
.contact-bar div i.fa{
    line-height: 2em;
}

.contact-bar div h4{
    margin: 0;
    font-size: 1em;
}

.contact-bar div i.fa{
    font-size: 1.8em;
    line-height: 1em;
}
.branding h3{
    /* font-size: .8em; */
}
.branding h1{
    font-size: 1.4em;
    width: 100%;
    padding: 0 15% 0 15%;
}
    header .menu .toggle-menu{
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
   -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;*/
}
  header .menu .toggle-menu:hover {
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    -webkit-transform: scale(1.0); */
    transform: scale(1.0); */
}
a.navlink{
    color: #000000;
    text-decoration: none;
}

a.navlink:hover{
    text-decoration: none;
}  
.col{
    display: inline-block;
    float: left;
}

.col.col3{
    width: 100%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col3:hover{
    width: 100%;
    padding: 0 10px;
      -webkit-transform:  none;!important
          transform:  none;!important
}
.client-logo{
        width: 70%;
    }
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
    }
}


@media (max-width: 500px) {

body{ font-size: medium; }

footer .contact ul li{
    width: 100%;
}

.ghost.black{
    width: 100%;
}
#bgvid {
     display: none; 
}
.branding h1{
    font-size: 1.0em;
    width: 100%;
    padding: 0 2% 0 2%;
}
.home .swiper-button-prev, .home .swiper-container-rtl .swiper-button-next,
.home .swiper-button-next, .home .swiper-container-rtl .swiper-button-prev{
    opacity: 0;
}

header .menu .toggle-menu{
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
   -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
header .menu .toggle-menu:hover {
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
     -webkit-transform: scale(1.0); */
     transform: scale(1.0); 
} 
a.navlink{
    color: #000000;
    text-decoration: none;
}
a.navlink:hover{
    text-decoration: none;
} 
.col{
    display: inline-block;
    float: left;
}

.col.col3{
    width: 100%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col3:hover{
    width: 100%;
    padding: 0 10px;
      -webkit-transform:  none;!important
          transform:  none;!important
}
.client-logo{
        width: 70%;
    }
}
@media (max-width: 414px){

.branding {
    text-align: center;
    padding: 30px;
    position: absolute;
    color: #fff;
    z-index: 1;
    top: 44%;
    left: 50%;
    width:100%;
}
.btn{
    padding: 18px;
    font-size: 12px;
    background: #ffffff;
    color: #fff;
    border: none;
    cursor: pointer;
}
.ghost{
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost3{
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost:hover{
    border: 1px solid #fff;
    color: #000;
    background: #fff;
}
.ghost3:hover{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}
.ghost.black{
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost.black:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost3:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost.black:hover{
    border: 1px solid #fff;
    color: #000;
    background: #fff;
}

.huge{
    font-size: 12px;
    letter-spacing: 2px;
}
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
    }
.contact-bar{
    float: left;
    clear: both;
    display: block;
    width: 100%;
}

.contact-bar div{
    width: 100%;
    float: left;
    text-transform: uppercase;
    text-align: center;
}
.kvk-btw{
    float:none!important;
    text-transform: uppercase;
    text-align: center;
}
.contact-bar div i.fa{
    line-height: 2em;
}

.contact-bar div h4{
    margin: 0;
    font-size: 1em;
}

.contact-bar div i.fa{
    font-size: 1.8em;
    line-height: 1em;
}

.contact-form{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    line-height: 2em;
    font-size: .72em;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* background: transparent; */
}

textarea:focus,
input:focus{
    outline: none;
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px #000000;
    border-radius: 40px 40px 40px 40px;
}

.contact-form textarea{
    width: 100%;
    line-height: 1.2em;
    font-size: .72em;
    padding: 10px;
    min-height: 190px;
    border: 1px solid #000000;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

}

.contact-form button{
    width: 100%;
}

.block{
    margin: 30px auto;
    margin-top: 5px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    padding: 30px;
    background: #000000;
    color: #ffffff;

}
}
@media (max-width: 375px){

.branding {
    text-align: center;
    padding: 30px;
    position: absolute;
    color: #fff;
    z-index: 1;
    top: 44%;
    left: 50%;
    width:100%;
}
.btn{
    padding: 18px;
    font-size: 12px;
    background: #ffffff;
    color: #fff;
    border: none;
    cursor: pointer;
}
.ghost{
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost3{
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost:hover{
    border: 1px solid #fff;
    color: #000;
    background: #fff;
}
.ghost3:hover{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}
.ghost.black{
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost.black:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost3:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost:focus{
    border: 1px solid #fff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost.black:hover{
    border: 1px solid #fff;
    color: #000;
    background: #fff;
}

.huge{
    font-size: 12px;
    letter-spacing: 2px;
}
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
    } 
.contact-bar{
    float: left;
    clear: both;
    display: block;
    width: 100%;

}

.contact-bar div{
    width: 100%;
    float: left;
    text-transform: uppercase;
    text-align: center;
}
.kvk-btw{
    float:none!important;
    text-transform: uppercase;
    text-align: center;
}
.contact-bar div i.fa{
    line-height: 2em;
}

.contact-bar div h4{
    margin: 0;
    font-size: 1em;
}

.contact-bar div i.fa{
    font-size: 1.8em;
    line-height: 1em;
}

.contact-form{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    line-height: 2em;
    font-size: .72em;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* background: transparent; */
}

textarea:focus,
input:focus{
    outline: none;
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px #000000;
    border-radius: 40px 40px 40px 40px;
}

.contact-form textarea{
    width: 100%;
    line-height: 1.2em;
    font-size: .72em;
    padding: 10px;
    min-height: 160px;
    border: 1px solid #000000;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;

}

.contact-form button{
    width: 100%;
}

.block{
    margin: 30px auto;
    margin-top: 5px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    padding: 30px;
    background: #000000;
    color: #ffffff;

}
    .client-logo{
    width: 70%;
    }
}
@media (max-width: 320px) {

body { font-size: medium; }

footer .contact ul li{
        width: 100%;
    }

.ghost.black{
        width: 100%;
    }

.branding h1{
        /* display: none; */
        font-size: 0.8em;
    }
.swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.swiper-button-next, .swiper-container-rtl .swiper-button-prev{
     display: none;
}
    header .menu .toggle-menu{
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
   -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
header .menu .toggle-menu:hover {
    width: 30px;
    height: 30px;
    position: relative;
    float: right;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
     -webkit-transform: scale(1.0); */
     transform: scale(1.0); 
} 
a.navlink{
    color: #000000;
    text-decoration: none;
}

a.navlink:hover{
    text-decoration: none;
}  
.btn{
    padding: 18px;
    font-size: 12px;
    background: #ffffff;
    color: #000000;
    border: none;
    cursor: pointer;
}
.ghost{
    border-radius: 40px 40px 40px 40px;
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost3{
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
    margin-top: 1em;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost:hover{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}
.ghost3:hover{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}
.ghost.black{
    border: 1px solid #ffffff;
    color: #fff;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
}
.ghost.black:focus{
    border: 1px solid #ffffff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost3:focus{
    border: 1px solid #ffffff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost:focus{
    border: 1px solid #ffffff;
    color: #000000;
    background: transparent;
    -webkit-transition: background 1.8s;
    -moz-transition: background 1.8s;
    -ms-transition: background 1.8s;
    -o-transition: background 1.8s;
    transition: background 1.8s;
    outline: none;
}
.ghost.black:hover{
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}

.huge{
    font-size: 12px;
    letter-spacing: 2px;
}
.col{
    display: inline-block;
    float: left;
}

.col.col3{
    width: 100%;
    padding: 0 10px;
     -webkit-transition: -webkit-transform .3s ease-in-out;
    transition:         transform .3s ease-in-out;
}
.col.col3:hover{
    width: 100%;
    padding: 0 10px;
  -webkit-transform:  none;!important
  transform:  none;!important
}
.client-logo{
    width: 100%;
    }
.underline{
    position: relative;
    text-align: center;
    font-size: 1.6em;
}
.branding {
    text-align: center;
    padding: 30px;
    position: absolute;
    color: #ffffff;
    z-index: 1;
    top: 44%;
    left: 50%;
    width:100%;
}
#bgvid {
   display: none; 
}
header .menu ul.nav li{
    font-weight: 700;
    font-size: 20px;
    padding: 0 15px;
    line-height: 50px;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
}
.contact-bar{
    float: left;
    clear: both;
    display: block;
    width: 100%;

}

.contact-bar div{
    width: 100%;
    float: left;
    text-transform: uppercase;
    text-align: center;
}
.kvk-btw{
    float:none!important;
    text-transform: uppercase;
    text-align: center;
}
.contact-bar div i.fa{
    line-height: 2em;
}

.contact-bar div h4{
    margin: 0;
    font-size: 1em;
}

.contact-bar div i.fa{
    font-size: 1.8em;
    line-height: 1em;
}

.contact-form{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0px;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    line-height: 2em;
    font-size: .72em;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* background: transparent; */
}

textarea:focus,
input:focus{
    outline: none;
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px #000000;
    border-radius: 40px 40px 40px 40px;
}

.contact-form textarea{
    width: 100%;
    line-height: 1.2em;
    font-size: .72em;
    padding: 10px;
    min-height: 140px;
    border: 1px solid #000000;
    border-radius: 40px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.contact-form button{
    width: 100%;
}

.block{
    margin: 30px auto;
    margin-top: 5px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    padding: 30px;
    background: #000000;
    color: #ffffff;
}
.form-text{
        color:#fff;
        font-weight:100;
        width: 100%;
        font-size: .8em;
        margin: 0px 0px 0px 0px;
    }
    .client-logo{
    width: 70%;
    }
}

/** test code **/

.col{
    padding: 0;
    float: left;
}

.quarter{
    width: 25%;
}

.half{
    width: 50%;
}

.full{
    width: 100%;
}

.container-lg{
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.blackbox-container {
   display: inline-block;
   float: left;
   padding: 5px;
}

.blackbox {
   background: #000;
   padding: 10px 20px;
   color: #ffffff;
   font-size: 16px;
   text-align: left;
   float: left;
   margin: 0px 6px 12px 6px;
   overflow: hidden;
}

.blackbox-sm{
    width: 278px;
}

.blackbox-md{
    width: 568px;
}

.blackbox-lg{
    width: 1148px;
    margin-right: 10px;
}

.videobox-container{
    width: 100%;

}

.videobox{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
}

.videobox iframe{
    width: 100%;
    height: 100%;
}

.blackbox.adbox{
    min-height: 110px;
}

.adbox{
    color: #ffffff;
    vertical-align: middle;
    display: table;
    background-size: cover;
}

.adbox a{
    color: #ffffff;
    height: auto;
    display: table-cell;
    float: left;
    margin-top: 32px;
    line-height: 45px;
    padding: 0 10px;
}

.adbox h4{
    margin: 0;
    float: left;
    display: inline-block;
}

.adbox .client-logo{
    width: 114px;
    height: 114px;
    overflow: hidden;
    display: table-cell;
    display: inline-block;
    float: left;
}

.adbox .client-logo img{
    width: 100%;
    height: auto;
}

.adbox .client-contact i{
    font-size: 21px;
    margin: 0 2px;
}

.adbox .visit-client-site{
    float: right;
    margin: 0;
}

.adbox .visit-client-site button{
    padding: 10px 30px;
    margin: 0!important;
    font-size: 16px;
}

/** FLEX HEIGHTS **/

.eqWrap {
    display: flex;
}

.equalHW {
    flex: 1;
}

.HWcontainer{
    position: relative;
    width: 100%;
    height: 100%;
}

.eqUnderWrap{
    display: initial;
}



