/*
 Theme Name:   ambilog
 Theme URI:    https://www.ambilog.be
 Description:  Theme for ambilog
 Author:       Wim Van der Plaetse
 Author URI:   http://www.wcreate.be
 Template:     understrap
 Version:      0.5.5
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  understrap-child
 
*/

/* REMOVE ADMIN BAR */

#wpadminbar {
    z-index: 10;
}

/* SCROLL */

.scrollToTop {
    position: fixed;
	right: calc(5% - 24px);
	bottom: 60px;
    display: none;
    transition: 0.5s ease;
    z-index: 1000;
}

.pijl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    stroke: #fff !important;
    fill: transparent !important;
    transition: 0.5s ease;
}

.pijl-2 {
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    stroke: #0040DC !important;
    fill: transparent !important;
    transition: 0.5s ease;
}

a.scrollToTop .scroll--ambi svg {
    width: 30px;
    transition: 0.8s ease-in-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.scroll--ambi{
    width: 50px;
    height: 50px;
    transition: 0.5s ease-in-out;
    border: 1px solid #fff;
    border-radius: 8px;
    background-color: #0040DC;
    position: relative;
}

.scroll--ambi path{
	transition: 0.8s ease;
}

a.scrollToTop:hover .scroll--ambi path{
	stroke: #0040DC;
}

a.scrollToTop:hover .scroll--ambi{
	background-color: #fff;
	border: 1px solid #0040DC;
}

.post-82, .post-85{
	padding: 5%;
}

/* ALGEMEEN */

body{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	overflow-x: hidden;
}

#page-wrapper{
	margin-top: 100px; /* afhankelijk van de hoogte van de nav-bar */
}

.wrapper {
    padding: 0px;
}

h1, .h1 {
    font-size: 3.5vw;
    margin-bottom: 2rem;
    font-weight: 600;
}

h2, .h2 {
    font-weight: 700;
	font-size: 1.8vw;
    margin-bottom: 2rem;
}

h3, .h3{
    font-weight:700;
}
img{
	width: 100%;
}


.align--right{
	text-align: right;
}

.center{
	text-align: center;
}

.make--it--relative{
	position: relative;
}

.auto--size{
    height:100%;
    object-fit:cover;
}

.vert--center {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.wcreate--tekst{
    font-size: 0.9vw;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero--background{
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}

.w-70{
	width: 70%;
}

/* HOMEPAGE */

.hero{
    height:100vh;
}

.negative-margin {
    margin-left: -10%;
    margin-top: -15%;
}

.wpforms-submit {
    background: #0040DC !important;
    border-radius: 25px !important;
}
.testimonail {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1;
}

.tabs{
    margin-top: 2rem;
}
.tab-label {
	margin-left: 10px;
    font-weight: 700;
    cursor: pointer;
}
.heading svg {
    transform: rotate(180deg);
}
.heading.collapsed svg{
    transform:rotate(90deg);
}

.vertical-line {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    width: 2px;
    height: 100%;
    background: #0040DC;
	z-index: 20;
}
.dot {
    position: fixed;
    width: 40px;
    height: 40px;
    background: #0040DC;
    border-radius: 50%;
    top: 30%;
    transform: translateY(-50%);
    right: calc(5% - 20px);
}

.click--me{
    position: fixed;
    border-radius: 50%;
    top: 33%;
    transform: translateY(-50%);
    right: calc(5% - 70px);
    font-weight: 700;
    font-size: 1rem;
    animation-name: flash;
    animation-duration: 0.8s;
    animation-iteration-count: 5;
}

@keyframes flash {
    from {
        opacity: 0;
   		top: 33%;
        right: calc(5% - 70px);
    }
    to {
        opacity: 1;
        top: 32%;
        right: calc(5% - 50px);
    }
  }

.dot:hover{
    cursor: pointer;
}

.offerte {
    position: fixed;
    bottom: 0;
    right: 0%;
    z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s ease;
}

.toon--offerte{
	visibility: visible !important;
	opacity: 1 !important;
	z-index: 999 !important;
}

.offerte-titel{
    font-size:1.5rem;
    font-weight:600;
}

.offerte .wpforms-submit {
    background: #0040DC !important;
    border-radius: 25px !important;
    border: 1px solid #fff !important;
}

div.wpforms-container-full {
    margin: 0px auto;
}

.gr--ambilog {
    position: absolute;
    top: 15%;
    right: 20%;
	opacity: 0.4;
	z-index: -1;
}

.gr--ambilog svg {
    width:400px;
	height:400px;
}

/* FLEX NEW */
.flex{
    display:flex;
}

.flex-wrap{
    flex-wrap:wrap;
}

.direction-col{
    flex-direction: column;
}

.align-center{
    align-items: center;
}

.justify-center{
    justify-content: center;
}
.justify-space-around{
    justify-content: space-around;
}

.justify-space-between{
    justify-content: space-between;
}

.flex-col-50{
    flex:50%;
}

.flex-col-60{
    flex:60%;
}

.flex--bottom {
    display: flex;
    align-items: flex-end;
    height: 100%;
}


/* PADDING NEW */
.p-2{
    padding:2%;
}

.px-2, .pl-2{
    padding-left:2%;
}


.px-2, .pr-2{
    padding-right:2%;
}

.py-2, .pt-2{
    padding-top:2%;
}

.py-2, .pb-2{
    padding-bottom:2%;
}

.p-5{
    padding:5%;
}

.px-5, .pl-5{
    padding-left:5%;
}

.px-5, .pr-5{
    padding-right:5%;
}

.py-5, .pt-5{
    padding-top:5%;
}

.py-5, .pb-5{
    padding-bottom: 5%;
}

.pl-5{
    padding-left:5%;
}

.pr-5{
    padding-right:5%;
}

.p-10{
    padding: 10%;
}

.pt-10{
    padding-top:10%;
}

.pr-10{
    padding-right:10%;
}

.pr-15{
    padding-right:15%;
}

.p-15{
    padding: 15%;
}

/* MARGIN NEW */
.ml-5{
    margin-left:5%;
}
.mt-5{
    margin-top:5%;
}
.mb-5{
    margin-bottom:5%;
}
.mr-5{
    margin-right:5%;
}
.mt-10{
    margin-top:10%;
}
.ml-10{
    margin-left:10%;
}
.m-auto{
    margin:auto;
}
.mb-0{
    margin-bottom:0;
}

/* HEIGHTS NEW */
.h-100{
    height:100vh;
}
.h-90{
    height:90vh;
}

/* WIDTH NEW */
.w-60{
    width:60%;
}
.w-30{
    width:30%;
}
.w-40{
    width:40%;
}

/* FONT STYLES */
.text-white{
    color:#FFF;
}
.text-center{
    text-align: center;
}
.text-underline{
    text-decoration: underline;
}
.text-italic{
    font-style: italic;
}

/* BACKGROUND COLORS NEW */
.bg-gray{
    background-color:#EDF1F5;
}
.bg-blue{
    background-color:#0040DC;
}
.bg-black{
    background-color: #000000;
}

/* IMG SETTINGS NEW */

.fit-cover{
    width: 100%;
    object-fit: cover;
}




/* BUTTONS */

button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}

.knop--blue {
    display: block;
  width: fit-content;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  position: relative;
  transition: all .35s;
  background: #0040DC;
  border-radius: 30px;
  padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.knop--blue:after{
    position: absolute;
    content: "";
    top: -5px;
    left: -5px;
    width: 0;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    transition: all .35s;
  }
  .knop--blue:hover{
    color: #0040DC;
    text-decoration: none;
  }
  
  .knop--blue:hover:after{
    width: 100%;
  }
  .knop--blue span{
    position: relative;
    z-index: 2;
  }



  .knop--wit {
    display: block;
  width: fit-content;
  text-decoration: none;
  color: #000;
  text-align: center;
  position: relative;
  transition: all .35s;
  background: #fff;
  border-radius: 30px;
  padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    overflow: hidden;
}

.knop--wit:after{
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 0;
    height: 100%;
    background: #0040DC;
    border-radius: 30px;
    transition: all .35s;
  }
  .knop--wit:hover{
    color: #fff;
    text-decoration: none;
  }
  
  .knop--wit:hover:after{
    width: 100%;
  }
  .knop--wit span{
    position: relative;
    z-index: 2;
  }

.btn-text{
    color:#1544D3;
}

.btn-text:hover{
    color:#000;
    text-decoration: none;
}

/* FLEXING */

.flexing{
    display: flex;
    flex-wrap: wrap;
}

.flex--row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}


.flex--column {
    flex: 1;
}

.flex--column--2{
	flex: 0.2;
}

.flex--column--8{
	flex: 0.8;
}

.flex--column--4{
	flex: 0.4;
}

.flex--column--6{
	flex: 0.6;
}


.flex--column--3{
	flex: 0.3;
}

.flex--column--7{
	flex: 0.7
}

/* GLOBAL MARGINS */

.margin--top--1{
	margin-top: 1rem;
}

.margin--top--2{
	margin-top: 2rem;
}

/* GLOBAL PADDING */

.no--padding{
	padding: 0px;
}

.padding--2 {
	padding: 2%;
}

.padding--top--left--bottom--2 {
	padding: 2% 0% 2% 2%;
}

.padding--top--bottom--2{
    padding-top: 2%;
    padding-bottom: 2%;
}

.padding--top--2{
    padding-top: 2%;
}

.padding--bottom--2 {
	padding-bottom: 2%;
}

.padding--5 {
	padding: 5%;
}

.padding--10{
	padding: 10%;
}

.padding--top--5 {
	padding-top: 5%;
}

.padding--bottom--5 {
	padding-bottom: 5%;
}

.padding--left--5{
	padding-left: 5%;
}

.padding--left--10{
    padding-left: 10%;
}

.padding--left--15{
    padding-left: 15%;
}

.padding--right--5{
	padding-right: 5%;
}

.padding--left--right--5{
    padding-left: 5%;
    padding-right: 5%;
}

.padding--top--bottom--5{
    padding-top: 5%;
    padding-bottom: 5%;
}

.padding--top--bottom--10{
    padding-top: 10%;
    padding-bottom: 10%;
}

.padding--left--right--bottom--5{
    padding: 0% 5% 5% 5%;
}

.padding--left--right--top--5{
    padding: 5% 5% 0% 5%;
}

.padding--right--top--bottom--5{
    padding:5% 5% 5% 0;
}
.padding--left--top--bottom--5{
    padding:5% 0 5% 5%;
}

/* WIDTH */

.width--70{
    width: 70%;
    margin: auto;
}

/* MOBIEL */

@media only screen and (max-width: 811px) {
	
	 .wcreate--tekst{
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
	
	.no--padding--small{
		padding: 0px;
	}
	
	body {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    h2, .h2 {
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
	
    h3, .h3 {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }	
	
	.padding--top--bottom--small{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .margin--top--2{
        margin-top: 1rem;
    }

    .margin--top--small{
        margin-top: 2rem;
    }

    .margin--bottom--small{
        margin-bottom: 2rem;
    }

    .padding--bottom--small{
        padding-bottom: 1rem;
    }

    .padding--top--small{
        padding-top: 1rem;
    }

    .flex--column {
		flex: auto;
		width: 100%;
	}

    .flex--column--small, .flex--column--wide {
		flex: auto;
		width: 100%;
	}

    .column--reverse{
        flex-direction: column-reverse;
    }
	
	  /* KNOPPEN */

    .knop--zwart {
        font-size: 0.9rem;
    }
    
    .knop--zwart:hover {
        font-size: 0.9rem;
    }
    
    
    .knop--wit {
        font-size: 0.9rem;
    }
    
    .knop--wit:hover {
        font-size: 0.9rem;
    }


    .hero--background{
        height: 500px;
        justify-content: center;
    }
	
	
	.dot {
		width: 20px;
		height: 20px;
		right: calc(5% - 9px);
	}
	
	.click--me {
		right: calc(5% - -10px);
		top: 27%;
		transform: rotateZ(-180deg);
	}
		
	@keyframes flash {
		from {
			opacity: 0;
			top: 26%;
			right: calc(5% - -20px);
		}
		to {
			opacity: 1;
			top: 27%;
			right: calc(5% - -10px);
		}
	  }
	
	.click--me svg{
		width: 20px;
		height: 15px;
	}

	
	.tab-label {
		margin-top: 1rem;
	}
	
	#waarom svg{
		width: 25px;
		height: 25px;
	}

	.testimonail {
		font-size: 1.2rem;
	}
	
	.bg-black{
		background-size: 100% !important;
	}
	
	.scrollToTop {
		right: 0px;
		bottom: 40px;
	}
	
	.gr--ambilog {
		opacity: 0.2;
	}

}



/* css mobile new */

@media only screen and (max-width: 811px) {
    .flex{
        flex-direction: column;
    }
    .m-flow-wrap{
        flex-flow: wrap;
    }

    .p-m-0{
        padding: 0;
    }

    .p-m-5{
        padding: 5%;
    }

	.p-m-10{
        padding: 10%;
    }
	
    .pr-m-10{
        padding-right: 10%;
    }
	
	.offerte-titel {
		font-size: 1.1rem;
		font-weight: 600;
		margin-bottom: 0px;
	}
	
	div.wpforms-container-full {
		margin: 12px auto !important;
	}
	
	div.wpforms-container-full input[type=date], div.wpforms-container-full input[type=datetime], div.wpforms-container-full input[type=datetime-local], div.wpforms-container-full input[type=email], div.wpforms-container-full input[type=month], div.wpforms-container-full input[type=number], div.wpforms-container-full input[type=password], div.wpforms-container-full input[type=range], div.wpforms-container-full input[type=search], div.wpforms-container-full input[type=tel], div.wpforms-container-full input[type=text], div.wpforms-container-full input[type=time], div.wpforms-container-full input[type=url], div.wpforms-container-full input[type=week], div.wpforms-container-full select, div.wpforms-container-full textarea {
		padding: 0 var(--wpforms-field-size-padding-h);
		font-size: 1rem !important;
		line-height: 100%;
		height: 2rem;
	}
	
	.wpforms-container .wpforms-field {
		padding: 10px 0;
		position: relative;
	}
	
    .w-40{
        width: 100%;
    }
    .w-60{
        width: 100%;
    }
    .w-m-50{
        width: 50%;
    }
	
	.w-m-100{
		width: 100%;
	}
	
	.mt-m-5 {
		margin-top: 5%;
	}
	
	.ml-m-0{
		margin-left: 0;
	}
   
	.h-m-50{
		height: 50%;
	}
	
    .pb-m-10{
        padding-bottom: 10% !important;
    }
    .py-m-5{
        padding-top: 5%;
        padding-bottom: 5%;
    }
}