/*
 Theme Name:   atelier_du_nord
 Theme URI:    https://www.atelier-du-nord.be
 Description:  atelier_du_nord
 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 */

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

.scrollToTop {
    position: fixed;
	right: 2%;
	bottom: 5%;
    display: none;
    transition: 0.5s ease;
    z-index: 5;
}

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

.scroll--adn:hover .pijl{
	stroke: #144083 !important;
	fill: transparent !important;
	transition: 0.5s ease;
}

a.scrollToTop:hover .scroll--adn{
    background-color: #fff;
	border: 1px solid #144083;
	border-radius: 8px;
}

/* ALGEMEEN */

body{
	font-family: prometo, sans-serif;
	font-size: 16px;
	overflow-x: hidden;
    font-weight:300;
}

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

.wrapper {
    padding: 0px;
}

h1, .h1 {
    font-size: 2vw;
    margin-bottom: 2rem;
    font-weight: 500;
    color:#144083;
}

a{
    color:#000;
}
a:hover{
    text-decoration: none;
    color:#144083;
}
h2, .h2 {
    font-weight: 500;
	font-size: 1.8vw;
    margin-bottom: 2rem;
    color:#000;
}

img{
	width: 100%;
    border-radius:20px;
}


.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;
}
.black{
    color:#000;
}



/* BUTTONS */

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

.button--group{
    margin-top:3rem;
    display:flex;
    align-items: center;
}

.btn--blue{
    background:#144083;
    color:#FFF;
    font-size:18px;
    padding:10px 30px;
    border-radius:15px;
    border:1px solid #144083;
    font-weight:400;
    display: inline-block;
    transition: all 0.3s;
}
.btn--blue:hover{
    color:#144083;
    background-color: transparent;
    text-decoration: none;
}

.btn--only--text{
    color:#144083;
    font-weight:400;
    font-size:18px;
    display: inline-block;
    transition: all 0.3s;
}
.btn--only--text:hover{
    text-decoration: none;
    color:#000;
}

.plus--square {
    background: #144083;
    color: #FFF;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    border:1px solid #144083;
    transition: all 0.3s;
}
.plus--square:hover{
    background-color: transparent;
    text-decoration: none;
    color:#144083;
}

/* FLEXING */

.flexing{
    display: flex;
    flex-wrap: wrap;
}
.align--center{
    align-items: center;
}

.gap--50{
    gap:50px;
}

.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
}

/* GAPS */

.gap--15{
    gap:15px;
}

/* GLOBAL MARGINS */

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

.margin--top--2{
	margin-top: 2rem;
}
.margin--right--15{
    margin-right:15px;
}

.margin--left--15{
    margin-left:15px;
}

.margin--left--right--15{
    margin-left:15px;
	margin-right:15px;
}

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

/* 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--right--15{
    padding-right:15%;
}

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

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

.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;
}

/* HOMEPAGE BLOCKS */
.services--content{
    background-color: #F5F5F5;
    padding:5%;
    border-radius:20px;
}
.services--content .subtitle {
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom:2rem;
    display: block;
    padding-top: 15px;
}
.services--content p{
    font-size:1rem;
}
.services--content .border--right{
    border-right:1px solid #C3C3C3;
}

.testimonials--content {
    background-image: url(https://www.wcreate.be/adn/wp-content/uploads/2022/12/testimonial-banner.jpg);
    padding: 5%;
	background-size: cover;
    min-height: 500px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials--content svg{
    display:block;
    margin-bottom:30px;
}
.testimonials--content p{
    margin-bottom:0;
}
.testimonial {
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 30px !important;
    color: #343434;
    text-shadow: 2px 1px 2px #f7f7f7;
}
.name-testimonial {
    font-weight: 700;
}
.owl-testimonials .owl-prev, .owl-testimonials .owl-next {
    font-size: 3rem !important;
}
.owl-testimonials .owl-prev{
    margin-right: 2rem !important;
}

.sector {
    display: flex;
    min-height:600px;
}
.sector-text {
    background: #F5F5F5;
    border-radius: 0 20px 20px 0;
    padding: 10% 5% 10% 10%;
}
.sector-text .plus--square {
    position: absolute;
    bottom: 30px;
}
.sector-img img{
    border-radius: 20px 0 0 20px;
}
.owl-sectoren img{
    height:100%;
    object-fit: cover;
}
.owl-sectoren .owl-nav {
    position: absolute;
    top: -80px;
    right: 0;
}
.owl-sectoren .owl-prev, .owl-sectoren .owl-next {
    width: 50px;
    height: 50px;
    font-size: 3rem !important;
    text-align: right;
}
.sector-img, .sector-text{
    width:50%;
}


/* PAGES */
.header--page {
    min-height: 600px;
    background-size: cover !important;
    background-position: center center !important;	
    border-radius: 20px;
    margin: 4rem 0 0;
}
.breadcrumbs {
    background: #144083;
    margin-top: 30px;
    padding: 10px 5%;
}
.breadcrumbs a{
    color:#FFF;
}
.breadcrumbs a:hover{
    text-decoration: none;
}
.breadcrumbs svg{
    margin:0 10px;
}
.breadcrumbs a:last-child {
    font-weight: 400;
}



/* OVER ONS */
.dienst {
    background: #F5F5F5;
    padding: 15% 10%;
    border-radius: 15px;
    min-height: 500px;
    position: relative;
    transition: all 0.5s;
}
.dienst h3{
    margin-bottom:3rem;
    min-height: 4rem;
}
.dienst p{
    font-size:1rem;
    margin-bottom:3rem;
}
.dienst .plus--square{
    position: absolute;
    bottom:2rem;
}
.dienst:hover {
    background: #144083;
    color: #FFF !important;
}
.dienst:hover .plus--square {
    background: #FFF;
    color: #144083;
}
.dienst:hover .btn--blue{
    background: #FFF;
    color: #144083;
}

.usp {
    padding-left: 0;
    list-style:none;
}
.usp li{
    position: relative;
    padding-left:30px;
}
.usp li::before{
    content:"\f345";
    font-family: 'dashicons';
    position:absolute;
    left:0;
    color:#144083;
}

.nav--btn {
    background: #F5F5F5;
    color: #144083;
    width: calc(25% - 15px);
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
}
.nav--btn:hover {
    background: #144083;
    color: #fff;
    text-decoration: none;
}

.slider{
    width:50vw;
}
.owl-imgslider .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 35px !important;
}
.owl-imgslider .owl-next {
    width: 60px;
    height: 60px;
    background: #144083 !important;
    color: #FFF !important;
    border-radius: 0 0 15px 0;
}
.owl-imgslider .owl-prev{
    width: 60px;
    height: 60px;
    background: #144083 !important;
    color: #FFF !important;
    border-radius: 15px 0 0 0;
}

/* MACHINES TABS */
.tabs {
    border-radius: 15px;
    overflow: hidden;
}

.tab {
    width: 100%;
    color: #000000;
    overflow: hidden;
}
.tab-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #F5F5F5;
    cursor: pointer;
    border-radius:15px;
}
.tab-label:hover {
    background: #D6D6D6;
}
.tab-label::after {
    content: "\276F";
    width:50px;
    height:50px;
    text-align: center;
    transition: all 0.35s;
    transform: rotate(90deg);
    transition: all 0.35s;
    transform: rotate(90deg);
    background: #144083;
    display: flex;
    align-items: center;
    color: #FFF;
    justify-content: center;
    border-radius: 15px;
}
.tab-label {
    font-weight: 600;
}
.tab-label span{
    font-weight:300;
}

/* PNEUMATIEK */

.pneu--flex-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap; /* voor responsiviteit */
}

.pneu--text {
  flex: 1 1 200px;
  position: sticky;
  top: 0; /* zodat hij bovenaan blijft bij scroll */
}

.pneu--text h2 {
  margin: 0;
}

.pneu {
    border: 3px solid #144083;
    border-radius: 20px;
	padding: 5%;
}

.pneu--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  flex: 2 1 600px;
}

.pneu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* JOBS */
.block-interesse {
    background: #F5F5F5;
    margin-bottom:2rem;
}
.page-template-jobs .wpforms-field input, .page-template-jobs .wpforms-field textarea {
    border: none !important;
}
.page-template-jobs .wpforms-container-full .wpforms-form input.wpforms-field-medium, .page-template-jobs .wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium, .page-template-contact .wpforms-container-full .wpforms-form input.wpforms-field-medium, .page-template-contact .wpforms-container-full .wpforms-form .wpforms-field-row.wpforms-field-medium{
    max-width:100% !important;
}
.page-template-jobs .wpforms-field input::placeholder, .page-template-jobs .wpforms-field textarea::placeholder {
    font-weight: 100;
}
.wpforms-submit.btn--blue {
    background: #144083 !important;
    color: #FFF !important;
    font-size: 18px !important;
    padding: 10px 30px !important;
    border-radius: 15px !important;
    border: 1px solid #144083 !important;
    font-weight: 400 !important;
    display: inline-block !important;
    transition: all 0.3s !important;
}
.page-template-jobs .wpforms-submit.btn--blue{
    float:right !important;
}
.wpforms-submit.btn--blue:hover {
    background: #FFF !important;
    color: #144083 !important;
}

/* CONTACT */
.persoon {
    margin-bottom: 0;
    font-weight: 400;
}
.contactpersonen a{
    color:#144083;
}
.page-template-contact .wpforms-field input::placeholder, .page-template-contact .wpforms-field textarea::placeholder {
    font-weight: 100;
}
.page-template-contact .wpforms-field input, .page-template-contact .wpforms-field textarea {
    border: none !important;
    background:#F5F5F5 !important;
}

.img--small{
	display: none;
}


/* MOBIEL */

@media only screen and (max-width: 811px) {
	
	.img--large{
		display: none;
	}
	
	
	.img--small{
		display: block;
	}

	
	 .wcreate--tekst{
        font-size: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
	
	.no--padding--mobile{
		padding: 0px;
	}
    .no--border--mobile{
        border:none !important;
    }
	.flex--column--mobile{
        flex-direction: column;
    }
    .flex--reverse--mobile{
        flex-direction: column-reverse;
    }
    .wrapper {
        top: 100px;
    }

	body {
        font-size: 1rem;
    }

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

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

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

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

    .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;
    }
	
	.btn--blue {
		font-size: 14px;
		padding: 10px 20px;
	}
	
	.btn--only--text {
		font-size: 14px;
	}
	
	/* SLIDER */
	
	.slider {
		width: 100%;
	}
	
	.header--page {
		min-height: 200px;
		background-size: cover !important;
		background-position: center center !important;
		border-radius: 20px;
		margin: 4rem 0 0;
	}

    /* homepage sectoren */
    .sector{
        flex-direction: column;
        height:auto;
        width:100%;
    }
    .sector-img, .sector-text{
        width:100%;
    }
    .sector-text{
        border-radius:0 0 20px 20px;
    }
    .sector-img img{
        border-radius:20px 20px 0 0;
    }
    .sector-text .plus--square {
        position: relative;
        bottom: auto;
    }
	
	.testimonial {
		font-weight: 500;
		font-size: 1.5rem;
		line-height: 2rem;
		margin-bottom: 30px !important;
	}	

    /* sectoren page */

    .nav--btn {
        width: calc(50% - 8px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* machines / capaciteiten */

    .tab-label {
        font-weight: 600;
        flex-wrap: wrap;
    }
    .sub--label {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
	
	/* pneumatiek */
	
	.pneu--text {
		flex: auto;
		position: relative;
		top: 0;
	}
	
	.pneu--flex-wrapper {
		flex-direction: column;
	  }
	
	.pneu--grid {
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: auto;
	}

    /* jobs page */

    .flex--100{
        flex:100%;
    }
    .usp{
        column-count: 1 !important;
    }
	
}