File: D:/HostingSpaces/SBogers10/anvil.komma.pro/wwwroot/css/style.css
@charset "UTF-8";
/* Load default settings and styling */
/* Load default configuration */
/* ==========================================================================
Config settings
@mixin ========================================================================= */
/**
* Define grid columns
*
* The inner grid is the section where the content is
* The outer grid is the inner grid with extra margin columns on each side
*/
/**
* Define breakpoint for given formats
*/
/* Load Bourbon */
/* Bourbon 4.0.2
* MIT License */
/* Load default configuration */
/* ==========================================================================
Font related functions
@mixin ========================================================================= */
/**
* Add some functions for readability
* Return font-weight based on name
*/
/* ==========================================================================
Functions used in grid calculation
@mixin ========================================================================= */
/**
* This is where the magic happens
* Return percentage based on amount of columns
* Use parent column size to adjust the origin
*/
/**
* Default function for columns
* Return as percentage
*/
/**
* Return as viewport width
*/
/* ==========================================================================
Basic style settings
@mixin ========================================================================= */
* {
box-sizing: border-box;
}
/*
* Set up the body
*
* 1. This is the base for al rem units
*/
html {
font-size: 20px;
line-height: 1.6;
}
/**
* 1.Default display for images is block to lose the extra margin below the image
* 2. Remove border / especially on older browsers
*/
img {
display: block;
border: none;
}
/**
* Add translation to prevent recoloring from autocomplete
*/
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
-webkit-transition: all 9999s linear 9999s;
transition: all 9999s linear 9999s;
}
input::-moz-placeholder, textarea::-moz-placeholder {
-moz-transition: all 9999s linear 9999s;
transition: all 9999s linear 9999s;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
-ms-transition: all 9999s linear 9999s;
transition: all 9999s linear 9999s;
}
input:-moz-placeholder, textarea:-moz-placeholder {
-moz-transition: all 9999s linear 9999s;
transition: all 9999s linear 9999s;
}
/*
* Remove default margin around figure
*/
figure {
margin: 0;
}
/* Load grids */
/*==========================================================================
Grid
@mixin ========================================================================= */
/**
* Grid row
*
* 1. The outer two columns are just margin
* 2. Prevent inline-block cells wrapping
* 3. Prevent vertical spacing between inline-blocks
*/
.grid-row {
width: 85.7142857143%;
max-width: 1440px;
margin: 0 auto;
font-size: 0;
line-height: 0;
/**
* The full row doesn't have the two outer margin rows
* They stretch till both ends of the window
*/
}
.grid-row.full-row {
width: 100%;
max-width: none;
}
/**
* Grid column
*
* 1. Reset white-space inherited from `.grid`
* 2. Reset font-size inherited from `.grid`
* 3. Reset line-height inherited from `.grid`
*/
.grid-col {
position: relative;
display: inline-block;
overflow: hidden;
white-space: normal;
font-size: 1rem;
line-height: 1.6;
/**
* Center column
*
* 1. 'inline-block' doesn't center with margin '0 auto'
*/
}
.grid-col.center {
display: block;
margin: 0 auto;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-1, .col-lg-1 {
width: 8.3333333333%;
}
.full-row .col-1, .full-row .col-lg-1 {
width: 7.1428571429%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-1, .offset-lg-1 {
margin-left: 8.3333333333%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-2, .col-lg-2 {
width: 16.6666666667%;
}
.full-row .col-2, .full-row .col-lg-2 {
width: 14.2857142857%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-2, .offset-lg-2 {
margin-left: 16.6666666667%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-3, .col-lg-3 {
width: 25%;
}
.full-row .col-3, .full-row .col-lg-3 {
width: 21.4285714286%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-3, .offset-lg-3 {
margin-left: 25%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-4, .col-lg-4 {
width: 33.3333333333%;
}
.full-row .col-4, .full-row .col-lg-4 {
width: 28.5714285714%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-4, .offset-lg-4 {
margin-left: 33.3333333333%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-5, .col-lg-5 {
width: 41.6666666667%;
}
.full-row .col-5, .full-row .col-lg-5 {
width: 35.7142857143%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-5, .offset-lg-5 {
margin-left: 41.6666666667%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-6, .col-lg-6 {
width: 50%;
}
.full-row .col-6, .full-row .col-lg-6 {
width: 42.8571428571%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-6, .offset-lg-6 {
margin-left: 50%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-7, .col-lg-7 {
width: 58.3333333333%;
}
.full-row .col-7, .full-row .col-lg-7 {
width: 50%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-7, .offset-lg-7 {
margin-left: 58.3333333333%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-8, .col-lg-8 {
width: 66.6666666667%;
}
.full-row .col-8, .full-row .col-lg-8 {
width: 57.1428571429%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-8, .offset-lg-8 {
margin-left: 66.6666666667%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-9, .col-lg-9 {
width: 75%;
}
.full-row .col-9, .full-row .col-lg-9 {
width: 64.2857142857%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-9, .offset-lg-9 {
margin-left: 75%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-10, .col-lg-10 {
width: 83.3333333333%;
}
.full-row .col-10, .full-row .col-lg-10 {
width: 71.4285714286%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-10, .offset-lg-10 {
margin-left: 83.3333333333%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-11, .col-lg-11 {
width: 91.6666666667%;
}
.full-row .col-11, .full-row .col-lg-11 {
width: 78.5714285714%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-11, .offset-lg-11 {
margin-left: 91.6666666667%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-12, .col-lg-12 {
width: 100%;
}
.full-row .col-12, .full-row .col-lg-12 {
width: 85.7142857143%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-12, .offset-lg-12 {
margin-left: 100%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-13, .col-lg-13 {
width: 108.3333333333%;
}
.full-row .col-13, .full-row .col-lg-13 {
width: 92.8571428571%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-13, .offset-lg-13 {
margin-left: 108.3333333333%;
}
/* Column dimensions
@mixin ========================================================================= */
/*
* Calculate width by dividing a full width into 12 columns
* Create a class for each column
*/
.col-14, .col-lg-14 {
width: 116.6666666667%;
}
.full-row .col-14, .full-row .col-lg-14 {
width: 100%;
}
/* Column shifts
@mixin ========================================================================= */
.offset-14, .offset-lg-14 {
margin-left: 116.6666666667%;
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-1 {
width: 8.3333333333%;
}
.offset-xl-1 {
margin-left: 8.3333333333%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-1 {
width: 8.3333333333%;
}
.offset-md-1 {
margin-left: 8.3333333333%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-1 {
width: 8.3333333333%;
}
.offset-sm-1 {
margin-left: 8.3333333333%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-1 {
width: 8.3333333333%;
}
.offset-xs-1 {
margin-left: 8.3333333333%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-2 {
width: 16.6666666667%;
}
.offset-xl-2 {
margin-left: 16.6666666667%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-2 {
width: 16.6666666667%;
}
.offset-md-2 {
margin-left: 16.6666666667%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-2 {
width: 16.6666666667%;
}
.offset-sm-2 {
margin-left: 16.6666666667%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-2 {
width: 16.6666666667%;
}
.offset-xs-2 {
margin-left: 16.6666666667%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-3 {
width: 25%;
}
.offset-xl-3 {
margin-left: 25%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-3 {
width: 25%;
}
.offset-md-3 {
margin-left: 25%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-3 {
width: 25%;
}
.offset-sm-3 {
margin-left: 25%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-3 {
width: 25%;
}
.offset-xs-3 {
margin-left: 25%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-4 {
width: 33.3333333333%;
}
.offset-xl-4 {
margin-left: 33.3333333333%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-4 {
width: 33.3333333333%;
}
.offset-md-4 {
margin-left: 33.3333333333%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-4 {
width: 33.3333333333%;
}
.offset-sm-4 {
margin-left: 33.3333333333%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-4 {
width: 33.3333333333%;
}
.offset-xs-4 {
margin-left: 33.3333333333%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-5 {
width: 41.6666666667%;
}
.offset-xl-5 {
margin-left: 41.6666666667%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-5 {
width: 41.6666666667%;
}
.offset-md-5 {
margin-left: 41.6666666667%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-5 {
width: 41.6666666667%;
}
.offset-sm-5 {
margin-left: 41.6666666667%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-5 {
width: 41.6666666667%;
}
.offset-xs-5 {
margin-left: 41.6666666667%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-6 {
width: 50%;
}
.offset-xl-6 {
margin-left: 50%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-6 {
width: 50%;
}
.offset-md-6 {
margin-left: 50%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-6 {
width: 50%;
}
.offset-sm-6 {
margin-left: 50%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-6 {
width: 50%;
}
.offset-xs-6 {
margin-left: 50%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-7 {
width: 58.3333333333%;
}
.offset-xl-7 {
margin-left: 58.3333333333%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-7 {
width: 58.3333333333%;
}
.offset-md-7 {
margin-left: 58.3333333333%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-7 {
width: 58.3333333333%;
}
.offset-sm-7 {
margin-left: 58.3333333333%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-7 {
width: 58.3333333333%;
}
.offset-xs-7 {
margin-left: 58.3333333333%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-8 {
width: 66.6666666667%;
}
.offset-xl-8 {
margin-left: 66.6666666667%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-8 {
width: 66.6666666667%;
}
.offset-md-8 {
margin-left: 66.6666666667%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-8 {
width: 66.6666666667%;
}
.offset-sm-8 {
margin-left: 66.6666666667%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-8 {
width: 66.6666666667%;
}
.offset-xs-8 {
margin-left: 66.6666666667%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-9 {
width: 75%;
}
.offset-xl-9 {
margin-left: 75%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-9 {
width: 75%;
}
.offset-md-9 {
margin-left: 75%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-9 {
width: 75%;
}
.offset-sm-9 {
margin-left: 75%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-9 {
width: 75%;
}
.offset-xs-9 {
margin-left: 75%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-10 {
width: 83.3333333333%;
}
.offset-xl-10 {
margin-left: 83.3333333333%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-10 {
width: 83.3333333333%;
}
.offset-md-10 {
margin-left: 83.3333333333%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-10 {
width: 83.3333333333%;
}
.offset-sm-10 {
margin-left: 83.3333333333%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-10 {
width: 83.3333333333%;
}
.offset-xs-10 {
margin-left: 83.3333333333%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-11 {
width: 91.6666666667%;
}
.offset-xl-11 {
margin-left: 91.6666666667%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-11 {
width: 91.6666666667%;
}
.offset-md-11 {
margin-left: 91.6666666667%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-11 {
width: 91.6666666667%;
}
.offset-sm-11 {
margin-left: 91.6666666667%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-11 {
width: 91.6666666667%;
}
.offset-xs-11 {
margin-left: 91.6666666667%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-12 {
width: 100%;
}
.offset-xl-12 {
margin-left: 100%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-12 {
width: 100%;
}
.offset-md-12 {
margin-left: 100%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-12 {
width: 100%;
}
.offset-sm-12 {
margin-left: 100%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-12 {
width: 100%;
}
.offset-xs-12 {
margin-left: 100%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-13 {
width: 108.3333333333%;
}
.offset-xl-13 {
margin-left: 108.3333333333%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-13 {
width: 108.3333333333%;
}
.offset-md-13 {
margin-left: 108.3333333333%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-13 {
width: 108.3333333333%;
}
.offset-sm-13 {
margin-left: 108.3333333333%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-13 {
width: 108.3333333333%;
}
.offset-xs-13 {
margin-left: 108.3333333333%;
}
}
/* Media query for large desktop */
@media screen and (min-width: 1601px) {
.col-xl-14 {
width: 116.6666666667%;
}
.offset-xl-14 {
margin-left: 116.6666666667%;
}
}
/* Media query for normal desktop */
@media screen and (max-width: 1080px) {
.col-md-14 {
width: 116.6666666667%;
}
.offset-md-14 {
margin-left: 116.6666666667%;
}
}
/* Media query for tablets */
@media screen and (max-width: 768px) {
.col-sm-14 {
width: 116.6666666667%;
}
.offset-sm-14 {
margin-left: 116.6666666667%;
}
}
/* Media query for mobile */
@media screen and (max-width: 400px) {
.col-xs-14 {
width: 116.6666666667%;
}
.offset-xs-14 {
margin-left: 116.6666666667%;
}
}
/* ==========================================================================
This grid can be turned on and off when you want to check
if everything is nice in place.
@mixin ========================================================================= */
.visible-grid-container {
display: flex;
justify-content: center;
}
/**
* 1. Makes it able to control the website while grid is shown
*/
.visible-grid {
display: block;
position: fixed;
z-index: 10000;
opacity: 0.4;
pointer-events: none;
/*&:nth-child(1),&:nth-child(14)
*/
}
.visible-grid .grid-col {
background: rgba(0, 255, 255, 0.6);
height: 100vh;
}
.visible-grid .grid-col:nth-child(2n) {
background: rgba(0, 255, 255, 0.3);
}
.visible-grid:before, .visible-grid:after {
content: "";
position: absolute;
top: 0;
width: calc(100% / 12);
height: 100%;
background: rgba(0, 255, 0, 0.5);
}
.visible-grid:before {
left: calc(-100% / 12);
}
.visible-grid:after {
right: calc(-100% / 12);
}
/* Load breakpoints */
.breakpoint {
position: fixed;
right: 0;
bottom: 0;
width: 20px;
height: 20px;
z-index: 10000;
background: #0ABEFF;
/* Larger then xlBreakpoint */
/* Loop through other breakpoints */
}
@media screen and (min-width: 1601px) {
.breakpoint {
background: red;
}
}
@media screen and (max-width: 1366px) {
.breakpoint {
background: blue;
}
}
@media screen and (max-width: 1080px) {
.breakpoint {
background: green;
}
}
@media screen and (max-width: 768px) {
.breakpoint {
background: yellow;
}
}
@media screen and (max-width: 400px) {
.breakpoint {
background: pink;
}
}
/* Expend/overrule configuration */
/* ==========================================================================
Expend Basic style settings
@mixin ========================================================================= */
/*
* Set up the html
*
* 1. Makes sue that some fonts are better rendered
*/
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
@media screen and (max-width: 700px) {
html {
font-size: 18px;
}
}
/*
* Set up the body
*
* 1. Set font to lining figures
*/
body {
position: relative;
margin: 0;
font-family: "Roboto", sans-serif;
line-height: 1.6;
font-feature-settings: "lnum";
}
/*
* Set default settings for all elements
*
* 1. Default selection styling
*
*/
* ::-moz-selection {
background: #626266;
background: #EDEDF1;
}
* ::selection {
background: #626266;
background: #EDEDF1;
}
/*
* Set default styling for input and textarea
*
* 1. Set font because else the agent will overrule them with an ugly font
*/
input, textarea {
font-family: "Roboto", sans-serif;
}
/*
* Set default styling for a button
*
*/
.button {
display: inline-block;
padding: 13px 20px;
background-color: transparent;
border: 1px solid #EDEDF1;
border-radius: 3px;
text-decoration: none;
font-size: 0.9rem;
line-height: 1.2;
font-weight: 500;
color: #EDEDF1;
transition: border 0.3s, color 0.3s;
}
.rols-machineonderdelen .button {
color: #222229;
border-color: #28282E;
}
.button .arrow {
display: inline-block;
margin-left: 65px;
transition: transform 0.3s;
}
@media screen and (max-width: 500px) {
.button .arrow {
margin-left: 30px;
}
}
.button:hover {
color: white;
border-color: white;
}
.button:hover .arrow {
transform: translate3d(5px, 0, 0);
}
.button.on-light {
border-color: #808080;
color: #808080;
}
.button.on-light:hover {
border-color: #D2D2DC;
color: #D2D2DC;
}
.line-background {
position: absolute;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
@media screen and (max-width: 1200px) {
.line-background {
display: none;
}
}
.line-background .grid-col {
height: 100%;
border-right: 1px solid #EDEDF1;
}
.line-background .grid-col:first-child {
border-left: 1px solid #EDEDF1;
}
.line-background.top .grid-col:first-child {
border-left: none;
}
.line-background.top .grid-col:last-child {
border: none;
}
.line-background.top .grid-col:nth-last-child(2) {
border: none;
}
@media screen and (max-width: 700px) {
.line-background {
display: none;
}
}
/* ==========================================================================
Helper classes
@mixin ========================================================================= */
/**
* Use on elements from where the children should not wrap
*/
.nowrap {
white-space: nowrap;
}
/**
* Hide elements on different screen sizes
*/
@media screen and (max-width: 1600px) {
.hide-on-xl-or-smaller {
display: none;
}
}
@media screen and (min-width: 1601px) {
.hide-on-xl-or-larger {
display: none;
}
}
@media screen and (max-width: 1366px) {
.hide-on-lg-or-smaller {
display: none;
}
}
@media screen and (min-width: 1367px) {
.hide-on-lg-or-larger {
display: none;
}
}
@media screen and (max-width: 1080px) {
.hide-on-md-or-smaller {
display: none;
}
}
@media screen and (min-width: 1081px) {
.hide-on-md-or-larger {
display: none;
}
}
@media screen and (max-width: 768px) {
.hide-on-sm-or-smaller {
display: none;
}
}
@media screen and (min-width: 769px) {
.hide-on-sm-or-larger {
display: none;
}
}
@media screen and (max-width: 400px) {
.hide-on-xs-or-smaller {
display: none;
}
}
@media screen and (min-width: 401px) {
.hide-on-xs-or-larger {
display: none;
}
}
/* Load files that write css */
/* ==========================================================================
Partial CSS
@mixin ========================================================================= */
/* HTML and navigation
@mixin ========================================================================= */
html.has-cookie-dialog {
padding-top: 60px;
}
html.has-cookie-dialog nav.main,
html.has-cookie-dialog .navigation-drip {
top: 60px;
}
@media screen and (max-width: 1080px) {
html.has-cookie-dialog {
padding-top: 120px;
}
html.has-cookie-dialog nav.main,
html.has-cookie-dialog .navigation-drip {
top: 120px;
}
}
/* Dialog
@mixin ========================================================================= */
.cookie-consent {
position: fixed;
top: 0;
left: 0;
z-index: 10000;
display: flex;
justify-content: center;
align-items: center;
height: 60px;
width: 100%;
border-bottom: 1px solid #eaeaea;
background: #fff;
font-size: 16px;
/* Set flex direct to column and put everything below each other */
}
.cookie-consent .message {
display: block;
padding: 0 20px;
max-width: 75%;
}
.cookie-consent .message a {
display: inline-block;
color: #0A5BF5;
text-decoration: none;
}
.cookie-consent .message a:hover {
text-decoration: underline;
}
.cookie-consent .button {
margin-left: 40px;
width: auto;
min-width: 0;
height: 40px;
line-height: 36px;
font-size: 16px;
}
@media screen and (max-width: 1080px) {
.cookie-consent {
flex-direction: column;
text-align: center;
height: 120px;
}
.cookie-consent .message {
max-width: none;
}
.cookie-consent .button {
margin-left: 0;
margin-top: 10px;
position: relative;
top: 0;
right: 0;
}
}
/* ==========================================================================
Main footer
@mixin ========================================================================= */
footer {
position: relative;
z-index: 2;
min-height: 200px;
overflow-x: hidden;
/* ---------------------------- Site specific styling */
}
.anvil footer {
background-color: #1E1941;
}
.rols-machineonderdelen footer {
background-color: #222229;
}
.job-precision footer {
background-color: #1E1941;
}
.jansen-machining-technology footer {
background-color: #052856;
}
.machinefabriek-de-valk footer {
background-color: #061C24;
}
footer .menu {
position: relative;
}
footer .menu .dots {
overflow-x: hidden;
color: #EDEDF1;
position: absolute;
bottom: -55px;
right: -6px;
}
.anvil footer .menu {
background-color: #0052ED;
}
.rols-machineonderdelen footer .menu {
background-color: #FFC800;
}
.job-precision footer .menu {
background-color: #1F90FF;
}
.jansen-machining-technology footer .menu {
background-color: #2C77DB;
}
.machinefabriek-de-valk footer .menu {
background-color: #7AD8F9;
}
footer .menu ul {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
height: calc(100vw / 12);
max-height: 120px;
list-style: none;
padding: 0;
margin: 0;
}
footer .menu ul li a {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
padding: 30px 0;
text-decoration: none;
color: white;
font-size: 1rem;
line-height: 1;
font-weight: 500;
}
.rols-machineonderdelen footer .menu ul li a {
color: #222229;
}
footer .menu ul li a .counter {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
margin-left: 5px;
width: 24px;
height: 24px;
text-align: center;
color: white;
font-size: 15px;
line-height: 1;
font-weight: 700;
border-radius: 100%;
}
footer .menu ul li a .counter:before {
position: relative;
top: -1px;
content: attr(data-counter);
}
footer .menu ul li.active a {
font-weight: 700;
}
@media screen and (max-width: 1000px) {
footer .menu {
display: none;
}
}
footer .main {
padding: calc(100vw / 12) 0;
}
footer .main ul li a, footer .main p, footer .main p a, footer .main h4, footer .main h4 a {
margin: 0;
color: #fff;
font-size: 0.8rem;
line-height: 1.6;
font-weight: 500;
text-decoration: none;
}
@media screen and (min-width: 1441px) {
footer .main {
padding: 120px 0;
}
}
footer .main .business-information {
display: inline-block;
vertical-align: top;
width: 25%;
}
footer .main .business-information a figure span.logo img {
max-width: 180px;
margin-bottom: 40px;
}
footer .main .business-information ul li a, footer .main .business-information p, footer .main .business-information p a, footer .main .business-information a {
color: #fff;
transition: color 0.3s;
}
footer .main .business-information ul li a.active, footer .main .business-information p.active, footer .main .business-information p a.active, footer .main .business-information a.active {
color: white;
font-weight: 700;
}
footer .main .business-information ul li a.active a, footer .main .business-information p.active a, footer .main .business-information p a.active a, footer .main .business-information a.active a {
color: white;
font-weight: 700;
}
footer .main .business-information p .prefix {
display: inline-block;
width: 80px;
}
footer .main .business-information p a:hover, footer .main .business-information a:hover {
color: white;
}
footer .main .business-information .margin-bottom {
margin-bottom: 2rem;
}
footer .main .business-information .locations {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: flex-start;
align-items: flex-start;
}
footer .main .business-information .locations p + p {
padding-left: 25px;
}
footer .main .lists {
display: inline-block;
vertical-align: top;
width: 33.3333333333%;
}
.anvil footer .main .lists svg {
color: #588EF5;
}
.rols-machineonderdelen footer .main .lists svg {
color: #FFD333;
}
.job-precision footer .main .lists svg {
color: #339AFF;
}
.jansen-machining-technology footer .main .lists svg {
color: #367FE0;
}
.machinefabriek-de-valk footer .main .lists svg {
color: #28B4E4;
}
footer .main .lists.specialism {
margin-left: 8.3333333333%;
}
footer .main .lists.companies {
width: 33.3333333333%;
}
footer .main .lists h4 {
height: 2.8rem;
font-size: 1rem;
color: white;
}
footer .main .lists h4 a {
font-size: 1rem;
color: white;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
}
footer .main .lists h4 .align {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
}
footer .main .lists h4 .icon {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 30px;
height: 24px;
margin-left: -45px;
margin-right: 15px;
}
footer .main .lists h4 .icon:before {
content: "";
display: inline-block;
opacity: 0.7;
}
footer .main .lists ul {
padding: 0;
}
footer .main .lists ul li {
margin-bottom: 5px;
}
footer .main .lists ul li.active a {
font-weight: 700;
color: white;
}
footer .main .lists ul li a:hover {
color: white;
}
@media screen and (max-width: 1200px) {
footer .main .business-information {
width: 33.3333333333%;
}
footer .main .lists {
width: 33.3333333333%;
}
footer .main .lists.segments {
display: none;
}
footer .main .lists.companies {
width: 25%;
}
}
@media screen and (max-width: 1000px) {
footer .main .business-information {
width: 58.3333333333%;
}
footer .main .lists.specialism {
display: none;
}
footer .main .lists.companies {
width: 41.6666666667%;
}
}
@media screen and (max-width: 700px) {
footer .main {
padding: 40px 0;
width: 100%;
}
footer .main .business-information {
display: block;
width: 300px;
margin-right: auto;
margin-left: 20px;
}
footer .main .lists {
display: block;
width: 300px !important;
margin: 60px auto 0 20px;
}
footer .main .lists h4 .icon {
display: none;
}
}
@media screen and (max-width: 400px) {
footer .main .business-information, footer .main .lists {
margin-right: 20px;
margin-left: 20px;
width: auto !important;
}
footer .main .business-information .locations {
display: block;
}
footer .main .business-information .locations p + p {
padding-left: 0;
margin-top: 20px;
}
footer .main .business-information p .prefix {
display: block;
width: 100%;
margin-top: 10px;
}
footer .main .business-information p .prefix:first-of-type {
margin-top: 0;
}
}
footer .sub-footer {
height: calc(100vw / 12);
max-height: 120px;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .sub-footer p {
margin: 0;
color: #fff;
font-weight: 500;
font-size: 0.8rem;
line-height: 1;
}
footer .sub-footer .komma {
position: relative;
display: flex;
-webkit-justify-content: flex-end;
-moz-justify-content: flex-end;
-ms-justify-content: flex-end;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-end;
align-items: center;
font-size: 0.8rem;
line-height: 1;
width: 300px;
color: #fff;
font-weight: 500;
text-decoration: none;
transition: color 0.2s;
}
footer .sub-footer .komma:hover {
color: white !important;
}
footer .sub-footer .komma:hover span {
opacity: 1;
}
footer .sub-footer .komma span {
position: relative;
top: 1px;
display: inline-block;
margin-left: 10px;
opacity: 0.4;
transition: opacity 0.2s;
background: url("/img/anvil-sprite.svg") -491px -1px no-repeat;
background-size: 700px 370px;
width: 93px;
height: 31px;
}
@media screen and (max-width: 700px) {
footer .sub-footer {
display: block;
height: auto;
width: calc(100% - 40px);
padding: 20px 0;
}
footer .sub-footer p {
display: block;
width: 300px;
}
footer .sub-footer .komma {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
width: 300px;
margin-top: 10px;
}
footer .sub-footer .komma span {
margin-left: 7px;
}
}
@media screen and (max-width: 400px) {
footer .sub-footer p {
margin-left: 0;
width: auto;
}
footer .sub-footer .komma {
margin-left: 0;
width: auto;
}
}
@media screen and (max-width: 350px) {
footer .sub-footer .komma {
display: block;
margin-top: 15px;
}
footer .sub-footer .komma span {
display: block;
margin-top: 5px;
margin-right: auto;
margin-left: 0;
}
}
.anvil footer .iso-logos {
display: flex !important;
margin: 16px -12px 0;
}
.anvil footer .iso-logos__link {
margin: 12px;
opacity: 0.7;
display: inline-block;
cursor: pointer;
transition: opacity 100ms linear;
}
.anvil footer .iso-logos__link:hover {
opacity: 1;
}
.anvil footer .iso-logos__icon {
width: 80px;
height: 80px;
}
.jansen-machining-technology footer .iso-logos {
display: flex !important;
margin: 16px -12px 0;
}
.jansen-machining-technology footer .iso-logos__link {
margin: 12px;
opacity: 0.7;
display: inline-block;
cursor: pointer;
transition: opacity 100ms linear;
}
.jansen-machining-technology footer .iso-logos__link:hover {
opacity: 1;
}
.jansen-machining-technology footer .iso-logos__icon {
width: 80px;
height: 80px;
}
.lacom-machinefabriek footer .main ul li a, .lacom-machinefabriek footer .main p, .lacom-machinefabriek footer .main p a, .lacom-machinefabriek footer .main h4, .lacom-machinefabriek footer .main h4 a {
color: rgba(255, 255, 255, 0.7);
}
.lacom-machinefabriek footer .sub-footer p, .lacom-machinefabriek footer .sub-footer .komma {
color: rgba(255, 255, 255, 0.4);
}
.rols-machineonderdelen footer .main ul li a, .rols-machineonderdelen footer .main p, .rols-machineonderdelen footer .main p a, .rols-machineonderdelen footer .main h4, .rols-machineonderdelen footer .main h4 a {
color: rgba(255, 255, 255, 0.7);
}
.rols-machineonderdelen footer .iso-logos {
display: flex !important;
margin: 16px -12px 0;
}
.rols-machineonderdelen footer .iso-logos__link {
margin: 12px;
opacity: 0.7;
display: inline-block;
cursor: pointer;
transition: opacity 100ms linear;
}
.rols-machineonderdelen footer .iso-logos__link:hover {
opacity: 1;
}
.rols-machineonderdelen footer .iso-logos__icon {
width: 80px;
height: 80px;
}
.rols-machineonderdelen footer .sub-footer p, .rols-machineonderdelen footer .sub-footer .komma {
color: rgba(255, 255, 255, 0.4);
}
.job-precision footer .main ul li a, .job-precision footer .main p, .job-precision footer .main p a, .job-precision footer .main h4, .job-precision footer .main h4 a {
color: rgba(255, 255, 255, 0.7);
}
.job-precision footer .iso-logos {
display: flex !important;
margin: 16px -12px 0;
}
.job-precision footer .iso-logos__link {
margin: 12px;
opacity: 0.7;
display: inline-block;
cursor: pointer;
transition: opacity 100ms linear;
}
.job-precision footer .iso-logos__link:hover {
opacity: 1;
}
.job-precision footer .iso-logos__icon {
width: 80px;
height: 80px;
}
.job-precision footer .sub-footer p, .job-precision footer .sub-footer .komma {
color: rgba(255, 255, 255, 0.4);
}
.vdb-machinefabriek footer .main ul li a, .vdb-machinefabriek footer .main p, .vdb-machinefabriek footer .main p a, .vdb-machinefabriek footer .main h4, .vdb-machinefabriek footer .main h4 a {
color: rgba(255, 255, 255, 0.7);
}
.vdb-machinefabriek footer .sub-footer p, .vdb-machinefabriek footer .sub-footer .komma {
color: rgba(255, 255, 255, 0.4);
}
.jansen-machining-technology footer .main ul li a, .jansen-machining-technology footer .main p, .jansen-machining-technology footer .main p a, .jansen-machining-technology footer .main h4, .jansen-machining-technology footer .main h4 a {
color: rgba(255, 255, 255, 0.7);
}
.jansen-machining-technology footer .sub-footer p, .jansen-machining-technology footer .sub-footer .komma {
color: rgba(255, 255, 255, 0.4);
}
.machinefabriek-de-valk footer .main ul li a, .machinefabriek-de-valk footer .main p, .machinefabriek-de-valk footer .main p a, .machinefabriek-de-valk footer .main h4, .machinefabriek-de-valk footer .main h4 a {
color: rgba(255, 255, 255, 0.7);
}
.machinefabriek-de-valk footer .iso-logos {
display: flex !important;
margin: 16px -12px 0;
}
.machinefabriek-de-valk footer .iso-logos__link {
margin: 12px;
opacity: 0.7;
display: inline-block;
cursor: pointer;
transition: opacity 100ms linear;
}
.machinefabriek-de-valk footer .iso-logos__link:hover {
opacity: 1;
}
.machinefabriek-de-valk footer .iso-logos__icon {
width: 80px;
height: 80px;
}
.machinefabriek-de-valk footer .sub-footer p, .machinefabriek-de-valk footer .sub-footer .komma {
color: rgba(255, 255, 255, 0.4);
}
header {
position: fixed;
z-index: 1000;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: 1440px;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
padding: 30px 0 0;
background-color: transparent;
}
@media screen and (max-width: 1500px) {
header {
padding-left: 16px;
padding-right: 16px;
}
}
header .logo {
position: relative;
transform: translate3d(0, 0, 0);
transition: transform 0.3s;
width: 180px;
max-width: 50%;
height: -moz-fit-content;
height: fit-content;
}
header .logo img {
max-width: 100%;
}
header .logo a {
display: block;
text-decoration: none;
transform-origin: 0 50%;
}
header .logo a.large {
display: initial;
}
header .logo a.large--dark {
display: none;
}
header .logo a.small {
display: none;
}
header .left-wrapper {
display: flex;
-webkit-justify-content: flex-end;
-moz-justify-content: flex-end;
-ms-justify-content: flex-end;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-end;
align-items: center;
}
header .left-wrapper a {
text-decoration: none;
}
header .left-wrapper .phone, header .left-wrapper .language-menu {
margin-top: -2px;
opacity: 1;
transition: opacity 0.4s;
}
header .left-wrapper .phone {
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 0.07rem;
margin-right: calc(100vw / 12);
transition: color 0.3s;
/*&:hover */
/* color: white !important */
}
@media screen and (min-width: 1441px) {
header .left-wrapper .phone {
margin-right: 120px;
}
}
@media screen and (max-width: 1550px) {
header .left-wrapper .phone {
margin-right: 60px;
}
}
header .left-wrapper .language-menu {
margin-right: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
header .left-wrapper .language-menu {
margin-right: 120px;
}
}
@media screen and (max-width: 1550px) {
header .left-wrapper .language-menu {
margin-right: 60px;
}
}
header .left-wrapper .language-menu span, header .left-wrapper .language-menu a {
position: relative;
display: inline-block;
padding: 5px 0;
text-decoration: none;
font-size: 0.8rem;
line-height: 1;
font-weight: 700;
text-transform: uppercase;
transition: color 0.3s;
}
header .left-wrapper .language-menu span + *, header .left-wrapper .language-menu a + * {
margin-left: 3px;
}
header .left-wrapper .language-menu span:after, header .left-wrapper .language-menu a:after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
transform: scale3d(0, 1, 1);
transform-origin: 100% 50%;
transition: transform 0.4s, background-color 0.3s;
}
header .left-wrapper .language-menu span:hover:after, header .left-wrapper .language-menu a:hover:after {
transform: scale3d(1, 1, 1);
}
header .left-wrapper .language-menu span:after {
transform: scale3d(1, 1, 1);
}
header .left-wrapper .toggle-menu {
display: flex;
-webkit-justify-content: flex-end;
-moz-justify-content: flex-end;
-ms-justify-content: flex-end;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-end;
align-items: center;
cursor: pointer;
}
header .left-wrapper .toggle-menu p {
margin: -5px 10px 0 0;
font-weight: 600;
font-size: 1rem;
line-height: 1;
transition: color 0.3s;
}
header .left-wrapper .toggle-menu .icon {
width: 20px;
}
header .left-wrapper .toggle-menu .icon span + span {
margin-top: 4px;
}
header .left-wrapper .toggle-menu .icon span {
width: 100%;
height: 2px;
display: block;
transform: scale3d(1, 1, 1);
transform-origin: 0 50%;
transition: transform 0.6s, background-color 0.3s;
}
header .left-wrapper .toggle-menu:hover .icon span:nth-of-type(2) {
transform: scale3d(0.8, 1, 1);
}
header .left-wrapper .toggle-menu:hover .icon span:nth-of-type(3) {
transform: scale3d(0.45, 1, 1);
}
header.sticky {
max-width: none;
background-color: white;
height: 70px;
display: flex;
align-items: center;
padding: 0 30px;
}
header.sticky .logo .large {
display: none;
}
header.sticky .logo .small {
display: initial;
}
header.sticky .left-wrapper .phone {
opacity: 0;
}
header.sticky .left-wrapper .language-menu {
opacity: 0;
}
header.menu-active {
background-color: transparent;
padding-top: 30px;
}
header.menu-active .left-wrapper .language-menu, header.menu-active .left-wrapper .phone {
opacity: 1;
}
header.menu-active .left-wrapper .phone:hover {
color: white;
}
header.menu-active .left-wrapper .toggle-menu .icon span {
opacity: 0;
}
header.menu-active .left-wrapper .toggle-menu .icon span:first-of-type, header.menu-active .left-wrapper .toggle-menu .icon span:last-of-type {
opacity: 1;
width: 17px;
}
header.menu-active .left-wrapper .toggle-menu .icon span:first-of-type {
transform: scale3d(1, 1, 1) rotate(45deg) !important;
}
header.menu-active .left-wrapper .toggle-menu .icon span:last-of-type {
transform: scale3d(1, 1, 1) rotate(-45deg) !important;
}
header.menu-active.sticky .logo {
transform: translate3d(0, 0, 0) !important;
}
header.menu-active.sticky .logo .large {
opacity: 1;
}
@media screen and (max-width: 740px) {
header {
padding-left: 20px;
padding-right: 20px;
}
header.sticky {
padding-left: 20px;
padding-right: 20px;
}
.lacom-machinefabriek header .logo a {
transform: scale3d(0.8, 0.8, 1);
}
.lacom-machinefabriek header.sticky .logo {
transform: translate3d(0, 10px, 0);
}
header .left-wrapper .phone, header .left-wrapper .language-menu {
display: none;
}
header.menu-active {
padding-bottom: 20px;
padding-top: 20px;
}
}
header .left-wrapper {
color: #626266;
}
header .left-wrapper a {
color: #626266;
}
header .left-wrapper .language-menu span {
color: #626266;
}
header .left-wrapper .language-menu span:after {
background-color: #626266;
}
header .left-wrapper .language-menu a {
color: rgba(98, 98, 102, 0.5);
}
header .left-wrapper .toggle-menu {
color: #626266;
}
header .left-wrapper .toggle-menu p {
color: #626266;
}
header .left-wrapper .toggle-menu .icon span {
background-color: #626266;
}
header.sticky .left-wrapper .toggle-menu {
color: #626266;
}
header.sticky .left-wrapper .toggle-menu p {
color: #626266;
}
header.sticky .left-wrapper .toggle-menu .icon span {
background-color: #626266;
}
header.menu-active .left-wrapper {
color: #EDEDF1;
}
header.menu-active .left-wrapper a {
color: #EDEDF1;
}
header.menu-active .left-wrapper .language-menu span {
color: #EDEDF1;
}
header.menu-active .left-wrapper .language-menu a {
color: #EDEDF1;
}
header.menu-active .left-wrapper .toggle-menu {
color: #EDEDF1;
}
header.menu-active .left-wrapper .toggle-menu p {
color: #EDEDF1;
}
header.menu-active .left-wrapper .toggle-menu .icon span {
background-color: #EDEDF1;
}
div.shoppingcartItemList ul {
list-style: none;
margin: 0;
padding: 0;
}
div.shoppingcartItemList ul li {
display: block;
width: 100%;
height: 15%;
border: solid 1px #cccccc;
margin-bottom: 20px;
}
/* ==========================================================================
Default styling for KMS content
@mixin ========================================================================= */
.kms-content h1, .kms-content h2, .kms-content h3 {
font-size: 2rem;
line-height: 1.4;
/*+bree */
}
.kms-content h1 strong, .kms-content h2 strong, .kms-content h3 strong {
font-weight: 400;
}
.kms-content h2, .kms-content h3 {
font-size: 1.5rem;
}
.kms-content h4 {
font-size: 1.2rem;
text-transform: uppercase;
}
.kms-content p {
font-size: 1rem;
line-height: 1.5;
border-color: #626266;
}
.anvil .kms-content p {
color: #1E1941;
}
.rols-machineonderdelen .kms-content p {
color: #222229;
}
.job-precision .kms-content p {
color: #1E1941;
}
.jansen-machining-technology .kms-content p {
color: #052856;
}
.machinefabriek-de-valk .kms-content p {
color: #061C24;
}
.kms-content ul {
padding-left: 0;
list-style: none;
}
.kms-content ul li {
position: relative;
padding-left: 30px;
font-size: 0.9rem;
line-height: 1.4;
}
.kms-content ul li:before {
position: absolute;
left: 0;
content: "\2022";
font-size: 1.3em;
line-height: 1;
}
.kms-content ul li + li {
margin-top: 5px;
}
.kms-content ol {
counter-reset: ol-counter;
padding-left: 0;
list-style: none;
}
.kms-content ol li {
padding-left: 30px;
font-size: 0.9rem;
line-height: 1.4;
}
.kms-content ol li:before {
counter-increment: ol-counter;
content: counter(ol-counter) ".";
position: absolute;
left: 0;
}
.kms-content ol li + li {
margin-top: 5px;
}
.kms-content a {
transition: color 0.3s;
}
.c-content {
padding-block: 32px;
}
.c-content .kms-content h3 {
font-size: 1.15rem;
}
.c-content .button {
margin-top: 16px;
}
.c-text-image {
display: -ms-grid;
display: grid;
row-gap: 24px;
padding-block: 32px;
}
.c-text-image .kms-content h3 {
font-size: 1.15rem;
}
@media screen and (min-width: 901px) {
.c-text-image {
grid-template-columns: minmax(300px, 2fr) 1fr;
-moz-column-gap: clamp(24px, 4vw, 56px);
column-gap: clamp(24px, 4vw, 56px);
}
}
.c-text-image__picture {
align-self: center;
}
.c-text-image__picture img {
margin-inline: auto;
max-width: min(400px, 100%);
}
.form {
display: block;
width: 100%;
margin: auto;
max-width: 420px;
font-size: 1rem;
line-height: 1.2;
}
.form .form-error-messages span {
display: block;
font-weight: 600;
font-size: 0.75rem;
line-height: 1.2;
}
@media screen and (max-width: 550px) {
.form {
max-width: none;
}
}
.form .form-element {
position: relative;
border: 1px solid #626266;
margin-bottom: 25px;
}
.form .form-element.has-error input, .form .form-element.has-error textarea {
padding-left: 25px;
}
.form .form-element.has-error label {
text-transform: initial;
font-weight: 600;
font-size: 0.75rem;
}
.form label, .form .label {
position: absolute;
top: 17px;
left: 30px;
display: block;
font-size: 0.7em;
text-transform: uppercase;
font-weight: 700;
}
.form input, .form textarea {
display: block;
width: 100%;
background-color: white;
padding: 34px 30px 20px;
border: 1px transparent solid;
font-size: 1em;
}
.form input:-webkit-autofill, .form input:-webkit-autofill:hover, .form input:-webkit-autofill:focus, .form input:-webkit-autofill:active, .form textarea:-webkit-autofill, .form textarea:-webkit-autofill:hover, .form textarea:-webkit-autofill:focus, .form textarea:-webkit-autofill:active {
-webkit-transition: 9999s background-color;
transition: 9999s background-color;
transition-delay: 9999s;
}
.form input:focus, .form textarea:focus {
box-shadow: none;
outline: none;
}
.form textarea {
min-height: 152px;
resize: vertical;
}
.form .select .select-wrapper {
position: relative;
display: block;
}
.form .select .icon {
position: absolute;
right: 10px;
top: 26px;
display: inline-block;
width: 0;
height: 0;
border-style: solid;
border-width: 5px 6px 0 6px;
opacity: 0.3;
pointer-events: none;
}
.form .select select {
display: block;
width: 100%;
-o-appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
font-family: "Roboto", sans-serif;
background-color: white;
padding: 15px 35px 15px 20px;
border: 1px transparent solid;
border-radius: 4px;
font-size: 0.9em;
}
.form .select select:focus {
box-shadow: none;
outline: none;
}
.form .checkbox label {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
cursor: pointer;
}
.form .checkbox label input {
-o-appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
width: 20px;
height: 20px;
border-radius: 100%;
padding: 0;
border: none;
background-color: rgba(255, 255, 255, 0.3);
background-size: contain;
background-position: center;
background-repeat: no-repeat;
transition: background-color 0.3s;
}
.form .checkbox label input:hover {
background-color: rgba(255, 255, 255, 0.5);
}
.form .checkbox label input:checked {
background-image: url("/img/check/checked.svg");
background-color: rgba(255, 255, 255, 0.7);
}
.form .checkbox label span {
display: block;
margin: 2px 0 0;
width: calc(100% - 30px);
}
.form .honey {
position: fixed;
top: -100px;
height: 20px;
width: 100%;
}
.form .submit {
margin-top: 50px;
text-align: right;
}
.form .submit .button {
margin: 0 0 0 auto;
cursor: pointer;
}
.form .submit .button:hover {
color: white;
border-color: white;
}
.form .submit .button .arrow {
margin-left: 25px;
}
.form .submit input {
display: none;
}
.cta-row {
position: relative;
z-index: 2;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 1.5);
}
.anvil .cta-row {
background-color: #0A5BF5;
}
.rols-machineonderdelen .cta-row {
background-color: #FFD333;
}
.job-precision .cta-row {
background-color: #339AFF;
}
.jansen-machining-technology .cta-row {
background-color: #367FE0;
}
.machinefabriek-de-valk .cta-row {
background-color: #28B4E4;
}
@media screen and (min-width: 1441px) {
.cta-row {
padding: 120px 0 180px;
}
}
.cta-row .placeholder {
width: 100%;
margin-left: auto;
margin-right: auto;
}
@media screen and (max-width: 1350px) {
.cta-row .placeholder {
width: 100%;
}
}
.cta-row h3 {
max-width: 1050px;
margin: 0 0 calc(100vw / 12);
font-size: 4rem;
line-height: 1.1;
color: white;
}
.rols-machineonderdelen .cta-row h3 {
color: #222229;
}
@media screen and (max-width: 1050px) {
.cta-row h3 {
font-size: 3rem;
}
}
@media screen and (max-width: 750px) {
.cta-row h3 {
font-size: 2.5rem;
}
}
@media screen and (max-width: 600px) {
.cta-row h3 {
font-size: 2rem;
}
}
@media screen and (max-width: 425px) {
.cta-row h3 {
font-size: 1.75rem;
}
}
@media screen and (min-width: 1441px) {
.cta-row h3 {
margin-bottom: 120px;
}
}
.cta-row .actions {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
}
.cta-row .actions p {
color: #fff;
font-size: 1.2rem;
line-height: 1.4;
font-weight: 500;
}
.rols-machineonderdelen .cta-row .actions p {
color: #28282E;
}
.cta-row .actions p a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
.rols-machineonderdelen .cta-row .actions p a {
color: #28282E;
}
.cta-row .actions p a:hover {
color: white;
}
.rols-machineonderdelen .cta-row .actions p a:hover {
color: #222229;
}
.cta-row .actions .button {
margin-left: 55px;
}
.rols-machineonderdelen .cta-row .actions .button {
color: #222229;
border-color: #222229;
}
@media screen and (max-width: 750px) {
.cta-row .actions {
display: block;
}
.cta-row .actions .button {
margin-top: 0;
margin-left: 0;
}
}
@media screen and (max-width: 700px) {
.cta-row {
padding: 40px 0;
}
}
#breadcrumb {
position: relative;
z-index: 2;
}
#breadcrumb ol {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
list-style: none;
padding: 0;
margin: 0;
font-size: 0.7rem;
line-height: 1.4;
}
#breadcrumb ol li a {
text-decoration: none;
}
#breadcrumb ol li a span {
white-space: nowrap;
text-transform: uppercase;
color: #808080;
font-weight: 700;
}
#breadcrumb ol .divider {
position: relative;
top: -2px;
display: inline-block;
padding: 0 10px;
font-size: 1rem;
line-height: 0.7rem;
color: #808080;
font-weight: 700;
}
/*Colors used in Mobile Menu */
@media screen and (max-width: 700px) {
.preventScroll {
overflow: hidden;
overflow-y: scroll;
position: fixed;
width: 100%;
}
}
#navigation {
position: fixed;
z-index: -1;
left: 0;
top: 0;
overflow: hidden;
display: none;
height: 100vh;
width: 100%;
pointer-events: none;
opacity: 0;
transition: opacity 0.5s ease-in-out, z-index 0s ease 0.5s;
}
#navigation .shader {
width: 100%;
height: 100%;
position: absolute;
z-index: 2;
left: 0;
top: 0;
background-color: white;
opacity: 0.8;
transition-delay: 0.4s;
}
#navigation .menu {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 100%;
overflow-x: hidden;
pointer-events: all;
z-index: 5;
}
#navigation .menu .grid-row {
position: relative;
z-index: 2;
pointer-events: none;
}
#navigation .menu .grid-row .background {
position: absolute;
left: 25%;
top: 0;
min-height: 100vh;
height: 100%;
width: 100vw;
transform: translate3d(25%, 0, 0);
}
.anvil #navigation .menu .grid-row .background {
background-color: #1E1941;
}
.rols-machineonderdelen #navigation .menu .grid-row .background {
background-color: #222229;
}
.job-precision #navigation .menu .grid-row .background {
background-color: #1E1941;
}
.jansen-machining-technology #navigation .menu .grid-row .background {
background-color: #052856;
}
.machinefabriek-de-valk #navigation .menu .grid-row .background {
background-color: #061C24;
}
#navigation .menu nav {
position: relative;
width: 75%;
min-height: 100vh;
margin-left: 25%;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
padding: 80px 0;
pointer-events: all;
}
#navigation .menu nav .menu-list {
width: 75%;
margin-left: 22.2222222222%;
}
#navigation .menu nav .menu-list ul {
margin: 0;
padding: 0;
list-style: none;
font-size: 2rem;
line-height: 1.2;
}
@media screen and (max-height: 950px) {
#navigation .menu nav .menu-list ul {
font-size: 1.5rem;
}
}
@media screen and (max-width: 475px) {
#navigation .menu nav .menu-list ul {
font-size: 1.2rem;
}
}
#navigation .menu nav .menu-list ul + ul {
margin-top: 24px;
}
#navigation .menu nav .menu-list ul li {
border-bottom: 2px solid #EDEDF1;
}
#navigation .menu nav .menu-list ul li a {
position: relative;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
padding: 4vh 0 2.5vh;
cursor: pointer;
text-decoration: none;
}
#navigation .menu nav .menu-list ul li a p {
margin: 0;
color: #EDEDF1;
transition: color 0.2s;
}
#navigation .menu nav .menu-list ul li a .icon {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
margin-right: 20px;
width: 30px;
height: 30px;
opacity: 1;
transition: opacity 0.3s;
}
#navigation .menu nav .menu-list ul li a .icon:before {
transition-duration: 0.3s;
content: "";
}
#navigation .menu nav .menu-list ul li.home a .icon:before {
background: url("/img/anvil-sprite.svg") -200px -198px no-repeat;
background-size: 700px 370px;
width: 25px;
height: 28px;
}
#navigation .menu nav .menu-list ul li.group a .icon:before, #navigation .menu nav .menu-list ul li.about a .icon:before {
background: url("/img/anvil-sprite.svg") -412px -81px no-repeat;
background-size: 700px 370px;
width: 26px;
height: 25px;
}
#navigation .menu nav .menu-list ul li.specialisms a .icon:before {
background: url("/img/anvil-sprite.svg") -355px -71px no-repeat;
background-size: 700px 370px;
width: 27px;
height: 22px;
}
#navigation .menu nav .menu-list ul li.segments a .icon:before {
background: url("/img/anvil-sprite.svg") -385px -81px no-repeat;
background-size: 700px 370px;
width: 25px;
height: 25px;
}
#navigation .menu nav .menu-list ul li.machine_park a .icon:before {
background: url("/img/anvil-sprite.svg") -252px -229px no-repeat;
background-size: 700px 370px;
width: 25px;
height: 25px;
}
#navigation .menu nav .menu-list ul li.vacancies a .icon:before {
background: url("/img/anvil-sprite.svg") -310px -228px no-repeat;
background-size: 700px 370px;
width: 25px;
height: 25px;
}
#navigation .menu nav .menu-list ul li.contact a .icon:before {
background: url("/img/anvil-sprite.svg") -442px -129px no-repeat;
background-size: 700px 370px;
width: 23px;
height: 29px;
}
#navigation .menu nav .menu-list ul li:hover a .icon:before {
transform: scale(1.1);
}
#navigation .menu nav .menu-list ul li ul {
font-size: 0.85em;
}
#navigation .menu nav .menu-list ul li.active {
border-color: white;
}
#navigation .menu nav .menu-list ul li.active a p {
color: white;
}
#navigation.active {
z-index: 900;
opacity: 1;
transition: opacity 0.5s ease-in-out, z-index 0s;
}
#navigation.active .menu .background {
transform: translate3d(0, 0, 0);
}
#navigation.allow-animation {
display: block;
}
#navigation.allow-animation .shader {
transition: all 0.2s;
}
#navigation.allow-animation .menu {
transition: all 0.3s;
transition-timing-function: ease-in-out;
}
#navigation.allow-animation .menu .background {
transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 700px) {
#navigation {
display: block;
}
#navigation .menu .grid-row {
width: 100%;
margin: 0;
max-width: none;
}
#navigation .menu .grid-row .background {
left: 0;
}
#navigation .menu nav {
width: calc(100% - 80px);
margin: 0 auto;
}
#navigation .menu nav .menu-list {
width: 100%;
margin-left: 0;
}
}
#work-at-block {
position: absolute;
right: 0;
bottom: 0;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
height: calc(100vw / 12 * 2);
width: 50%;
text-decoration: none;
transition: background-color 0.4s;
}
.anvil #work-at-block {
background-color: #0052ED;
}
.rols-machineonderdelen #work-at-block {
background-color: #FFC800;
}
.job-precision #work-at-block {
background-color: #339AFF;
}
.jansen-machining-technology #work-at-block {
background-color: #2C77DB;
}
.machinefabriek-de-valk #work-at-block {
background-color: #28B4E4;
}
@media screen and (min-width: 1441px) {
#work-at-block {
height: 240px;
width: 41.6666666667%;
}
}
@media screen and (max-width: 1350px) {
#work-at-block {
width: calc(100vw / 12 * 7);
}
}
@media screen and (max-width: 1000px) {
#work-at-block {
height: 200px;
}
}
#work-at-block .content {
width: 60%;
padding: 25px 30px;
}
#work-at-block .content h4 {
margin: 0;
font-size: 1.4rem;
line-height: 1.4;
color: white;
}
.rols-machineonderdelen #work-at-block .content h4 {
color: #222229;
}
#work-at-block .content h4 span {
display: block;
}
#work-at-block .button {
position: absolute;
left: 30px;
bottom: 30px;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
width: 220px;
padding: 10px 20px;
color: white;
font-weight: 500;
border-color: rgba(255, 255, 255, 0.5);
}
.rols-machineonderdelen #work-at-block .button {
color: #222229;
border-color: #222229;
}
#work-at-block .button .counter {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 24px;
height: 24px;
font-size: 15px;
}
@media screen and (max-width: 1200px) {
#work-at-block .button {
display: none;
}
}
#work-at-block .icon {
position: absolute;
right: 0;
top: 0;
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 40%;
height: 100%;
transform-origin: center;
}
#work-at-block .icon svg {
transform: scale3d(4, 4, 1);
transition: transform 0.4s;
color: #EDEDF1;
}
.rols-machineonderdelen #work-at-block .icon svg {
color: #222229;
border-color: #222229;
}
#work-at-block:hover .icon svg {
transform: scale3d(3, 3, 1);
}
.reference-block {
position: absolute;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
right: 0;
bottom: 0;
width: 50%;
min-height: 240px;
}
.anvil .reference-block {
background-color: #0052ED;
}
.rols-machineonderdelen .reference-block {
background-color: #FFC800;
}
.job-precision .reference-block {
background-color: #339AFF;
}
.jansen-machining-technology .reference-block {
background-color: #2C77DB;
}
.machinefabriek-de-valk .reference-block {
background-color: #28B4E4;
}
@media screen and (min-width: 1441px) {
.reference-block {
width: 41.6666666667%;
}
}
@media screen and (max-width: 1250px) {
.reference-block {
width: 66.6666666667%;
}
}
.reference-block .content {
min-height: 240px;
width: 60%;
padding: 30px 20px 10px 25px;
display: flex;
justify-content: space-between;
flex-direction: column;
}
.reference-block .content .quote {
display: block;
width: 100%;
margin: 0;
color: white;
font-size: 0.8rem;
line-height: 1.6;
font-weight: 700;
}
.rols-machineonderdelen .reference-block .content .quote {
color: #222229;
}
.reference-block .content .person {
display: block;
width: 100%;
text-align: right;
color: white;
}
.rols-machineonderdelen .reference-block .content .person {
color: #222229;
}
.reference-block .content .person p {
margin: 0;
color: inherit;
font-size: 0.8rem;
line-height: 1.2;
font-weight: 600;
}
.reference-block .content .person p span {
display: block;
color: inherit;
}
.reference-block .content .person .linkedin {
color: inherit;
display: block;
margin-top: 10px;
margin-left: auto;
opacity: 1;
transition: opacity 0.3s;
}
.reference-block .content .person .linkedin:hover {
opacity: 0.6;
}
.reference-block figure {
position: absolute;
right: 0;
top: 0;
width: 40%;
height: 100%;
min-height: 240px;
}
.reference-block figure span {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
@media screen and (max-width: 1000px) {
.reference-block {
position: relative;
width: 71.4285714286%;
margin-left: 14.2857142857%;
}
.reference-block .content {
width: calc(100% - 240px);
}
.reference-block figure {
width: 240px;
}
}
@media screen and (max-width: 700px) {
.reference-block {
height: auto;
width: 100%;
margin-left: auto;
margin-right: auto;
padding: 30px 20px 20px;
min-height: 0;
}
.reference-block figure {
width: 100px;
height: 100px;
left: 0;
bottom: 0;
right: auto;
top: auto;
min-height: 0;
}
.reference-block .content {
height: auto;
width: 100%;
padding: 0;
min-height: 0;
}
.reference-block .content .quote {
height: auto;
}
.reference-block .content .person {
height: auto;
margin-top: 45px;
padding-left: 100px;
text-align: left;
}
.reference-block .content .person .linkedin {
margin-left: 0;
}
}
/* Sass for multiple models */
.photo-header {
padding-top: calc(100vw / 12 * 1.5);
position: relative;
z-index: 3;
}
.photo-header .dots {
color: black;
position: absolute;
bottom: 160px;
left: -6px;
}
@media screen and (max-width: 1200px) {
.photo-header .dots {
display: none;
}
}
@media screen and (min-width: 1441px) {
.photo-header {
padding-top: 180px;
}
}
.photo-header .text-wrapper, .photo-header #header-image-slider {
display: inline-block;
vertical-align: top;
}
.photo-header .text-wrapper {
padding-top: calc(100vw / 12 * 0.5);
width: 41.6666666667%;
padding-right: 30px;
}
@media screen and (min-width: 1441px) {
.photo-header .text-wrapper {
padding-top: 60px;
}
}
.photo-header .text-wrapper #breadcrumb {
margin-bottom: calc(100vw / 12 * 0.5);
}
@media screen and (min-width: 1441px) {
.photo-header .text-wrapper #breadcrumb {
margin-bottom: 60px;
}
}
.photo-header .text-wrapper h1 {
margin: 0;
font-size: 2rem;
line-height: 1.2;
}
.specialism-nl-3 .photo-header .text-wrapper h1 {
max-width: 310px;
}
.photo-header #header-image-slider {
position: relative;
width: 58.3333333333%;
margin-bottom: calc(100vw / 12 * -0.5);
}
.photo-header #header-image-slider .placeholder {
position: relative;
width: 100%;
padding-bottom: 60%;
}
.photo-header #header-image-slider .placeholder figure {
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transform: translate3d(0, -20px, 0);
transition: opacity 0.4s, transform 0.3s;
}
.photo-header #header-image-slider .placeholder figure .size {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-position: center;
background-size: cover;
}
.photo-header #header-image-slider .placeholder figure .size.small, .photo-header #header-image-slider .placeholder figure .size.medium {
display: none;
}
@media screen and (max-width: 875px) {
.photo-header #header-image-slider .placeholder figure .size.large {
display: none;
}
.photo-header #header-image-slider .placeholder figure .size.medium {
display: block;
}
}
@media screen and (max-width: 400px) {
.photo-header #header-image-slider .placeholder figure .size.medium {
display: none;
}
.photo-header #header-image-slider .placeholder figure .size.small {
display: block;
}
}
.photo-header #header-image-slider .placeholder figure.active {
z-index: 2;
opacity: 1;
transform: translate3d(0, 0, 0);
}
.photo-header #header-image-slider .slider-navigation-labels {
position: absolute;
right: 100%;
bottom: calc(100vw / 12 * 0.5 + 12px);
width: 28.5714285714%;
}
@media screen and (max-width: 1440px) {
.photo-header #header-image-slider .slider-navigation-labels {
width: 240px;
}
}
@media screen and (min-width: 1441px) {
.photo-header #header-image-slider .slider-navigation-labels {
bottom: 72px;
}
}
.photo-header #header-image-slider .slider-navigation-labels .navigation {
position: absolute;
right: 16px;
bottom: 0;
}
.photo-header #header-image-slider .slider-navigation-labels .navigation span {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 12px;
height: 12px;
cursor: pointer;
border-radius: 100%;
border: 2px solid #EDEDF1;
transition: border 0.3s;
}
.photo-header #header-image-slider .slider-navigation-labels .navigation span + span {
margin-top: 6px;
}
.photo-header #header-image-slider .slider-navigation-labels .navigation span:hover {
border: 2px solid #D2D2DC;
}
.anvil .photo-header #header-image-slider .slider-navigation-labels .navigation span.active {
border-color: #1E1941;
}
.rols-machineonderdelen .photo-header #header-image-slider .slider-navigation-labels .navigation span.active {
border-color: #222229;
}
.job-precision .photo-header #header-image-slider .slider-navigation-labels .navigation span.active {
border-color: #1E1941;
}
.jansen-machining-technology .photo-header #header-image-slider .slider-navigation-labels .navigation span.active {
border-color: #052856;
}
.machinefabriek-de-valk .photo-header #header-image-slider .slider-navigation-labels .navigation span.active {
border-color: #061C24;
}
.photo-header #header-image-slider .slider-navigation-labels .caption p {
position: absolute;
left: 0;
bottom: 0;
margin: 0;
padding: 0 34px 0 12px;
font-size: 0.85rem;
line-height: 1.2;
opacity: 0;
transform: translate3d(0, -20px, 0);
transition: opacity 0.4s, transform 0.3s;
}
.photo-header #header-image-slider .slider-navigation-labels .caption p.active {
opacity: 1;
transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 1200px) {
.photo-header {
padding-top: 150px;
}
.photo-header .text-wrapper, .photo-header #header-image-slider {
display: block;
width: 83.3333333333%;
margin-left: auto;
margin-right: auto;
}
.photo-header #header-image-slider .slider-navigation-labels .caption {
display: none;
}
.photo-header .text-wrapper {
padding-top: 0;
padding-right: 0;
margin-bottom: 40px;
}
.photo-header .text-wrapper #breadcrumb {
margin-bottom: 10px;
}
}
@media screen and (max-width: 700px) {
.photo-header .grid-row {
width: 100%;
}
.photo-header .text-wrapper, .photo-header #header-image-slider {
width: calc(100% - 40px);
}
.photo-header #header-image-slider {
position: relative;
}
.photo-header #header-image-slider .slider-navigation-labels {
z-index: 5;
right: auto;
left: 12px;
bottom: 12px;
width: 12px;
}
.photo-header #header-image-slider .slider-navigation-labels .navigation {
right: 0;
}
}
@media screen and (max-width: 600px) {
.photo-header #header-image-slider {
width: 100%;
margin-bottom: 0;
}
}
.photo-header .vacancy-header {
display: flex;
margin-top: 40px;
}
.photo-header .vacancy-header .vacancy-header__logo {
max-height: 60px;
}
.header-menu-text.photo-header {
padding-bottom: calc(100vw / 12);
position: relative;
}
.header-menu-text.photo-header .dots {
bottom: 380px;
}
@media screen and (min-width: 1441px) {
.header-menu-text.photo-header {
padding-bottom: 120px;
}
}
.header-menu-text.photo-header .bread-crumb-row {
padding-top: calc(100vw / 12 * 0.5);
width: 83.3333333333%;
}
@media screen and (min-width: 1441px) {
.header-menu-text.photo-header .bread-crumb-row {
padding-top: 60px;
}
}
@media screen and (max-width: 700px) {
.header-menu-text.photo-header .bread-crumb-row {
width: calc(100% - 40px);
margin-left: auto;
margin-right: auto;
}
}
.header-menu-text.photo-header .text-wrapper h1 {
margin-bottom: calc(100vw / 12 * 0.5);
}
@media screen and (min-width: 1441px) {
.header-menu-text.photo-header .text-wrapper h1 {
margin-bottom: 60px;
}
}
.header-menu-text.photo-header .menu-wrapper {
display: inline-block;
padding-top: calc(100vw / 12 * 0.5);
margin-left: 33.3333333333%;
width: 25%;
padding-left: 30px;
}
@media screen and (min-width: 1441px) {
.header-menu-text.photo-header .menu-wrapper {
padding-top: 60px;
}
}
.header-menu-text.photo-header .menu-wrapper.double {
margin-left: 8.3333333333%;
width: 50%;
padding-left: 0;
}
.header-menu-text.photo-header .menu-wrapper.double p {
padding-left: 30px;
}
.header-menu-text.photo-header .menu-wrapper p {
margin: 0;
height: 56px;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-end;
-moz-align-items: flex-end;
-ms-align-items: flex-end;
justify-content: flex-start;
align-items: flex-end;
font-size: 0.9rem;
line-height: 2.1;
color: black;
font-weight: 600;
}
.header-menu-text.photo-header .menu-wrapper .lists-wrapper {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
}
.header-menu-text.photo-header .menu-wrapper .lists-wrapper ul {
width: 50%;
padding-left: 30px;
}
.header-menu-text.photo-header .menu-wrapper ul {
list-style: none;
padding: 0;
margin: 0;
}
.header-menu-text.photo-header .menu-wrapper ul li {
font-size: 0.9rem;
line-height: 1.4;
}
.header-menu-text.photo-header .menu-wrapper ul li + li {
margin-top: 5px;
}
.header-menu-text.photo-header .menu-wrapper ul li a {
color: #626266;
transition: color 0.3s;
text-decoration: none;
}
.header-menu-text.photo-header .menu-wrapper ul li a:hover {
font-weight: bold;
}
@media screen and (max-width: 1200px) {
.header-menu-text.photo-header .text-wrapper {
margin-bottom: 0;
}
.header-menu-text.photo-header .menu-wrapper {
display: none;
}
}
@media screen and (max-width: 1100px) {
.header-menu-text.photo-header {
position: relative;
z-index: 3;
background-color: white;
}
}
.content-menu-row {
position: relative;
z-index: 2;
}
.content-menu-row .background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.anvil .content-menu-row .background {
background-color: #221D42;
}
.rols-machineonderdelen .content-menu-row .background {
background-color: #28282E;
}
.job-precision .content-menu-row .background {
background-color: #221D42;
}
.jansen-machining-technology .content-menu-row .background {
background-color: #072C5C;
}
.machinefabriek-de-valk .content-menu-row .background {
background-color: #092833;
}
.content-menu-row .background:before {
content: "";
position: absolute;
height: 100%;
width: 50%;
left: 0;
top: 0;
/* ---------------------------- Site specific styling */
}
.anvil .content-menu-row .background:before {
background-color: #0052ED;
}
.rols-machineonderdelen .content-menu-row .background:before {
background-color: #FFC800;
}
.job-precision .content-menu-row .background:before {
background-color: #339AFF;
}
.jansen-machining-technology .content-menu-row .background:before {
background-color: #2C77DB;
}
.machinefabriek-de-valk .content-menu-row .background:before {
background-color: #28B4E4;
}
.content-menu-row .background .overview-page-background {
position: absolute;
left: 50%;
height: 100%;
width: calc(100vw / 14 * 3);
max-width: 360px;
}
.anvil .content-menu-row .background .overview-page-background {
border-color: #1E1941;
}
.rols-machineonderdelen .content-menu-row .background .overview-page-background {
background-color: #222229;
}
.job-precision .content-menu-row .background .overview-page-background {
background-color: #1E1941;
}
.jansen-machining-technology .content-menu-row .background .overview-page-background {
background-color: #052856;
}
.machinefabriek-de-valk .content-menu-row .background .overview-page-background {
background-color: #061C24;
}
.content-menu-row .background .overview-page-background:after {
content: "";
position: absolute;
opacity: 0.08;
right: 0;
top: 0;
width: 40px;
height: 100%;
background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 65%, black 100%);
}
.content-menu-row .grid-row {
position: relative;
z-index: 3;
padding: calc(100vw / 12) 0;
}
@media screen and (min-width: 1441px) {
.content-menu-row .grid-row {
padding: 120px 0;
}
}
@media screen and (max-width: 1350px) {
.content-menu-row .grid-row {
padding: calc(100vw / 12) 0 calc(100vw / 12 * 3);
}
}
.content-menu-row .grid-row .content, .content-menu-row .grid-row .overview-page, .content-menu-row .grid-row .other-models, .content-menu-row .grid-row .menu-wrapper {
display: inline-block;
vertical-align: top;
}
.content-menu-row .grid-row .content {
width: 50%;
padding: 0 8.3333333333%;
}
.content-menu-row .grid-row .content .kms-content > *:first-child {
margin-top: 0;
}
.content-menu-row .grid-row .content .kms-content > *:last-child {
margin-bottom: 0;
}
.content-menu-row .grid-row .content .kms-content h1, .content-menu-row .grid-row .content .kms-content h2, .content-menu-row .grid-row .content .kms-content h3, .content-menu-row .grid-row .content .kms-content h4, .content-menu-row .grid-row .content .kms-content p, .content-menu-row .grid-row .content .kms-content li, .content-menu-row .grid-row .content .kms-content a {
color: #EDEDF1;
}
@media screen and (min-width: 1201px) {
.rols-machineonderdelen .content-menu-row .grid-row .content .kms-content h1, .rols-machineonderdelen .content-menu-row .grid-row .content .kms-content h2, .rols-machineonderdelen .content-menu-row .grid-row .content .kms-content h3, .rols-machineonderdelen .content-menu-row .grid-row .content .kms-content h4, .rols-machineonderdelen .content-menu-row .grid-row .content .kms-content p, .rols-machineonderdelen .content-menu-row .grid-row .content .kms-content li, .rols-machineonderdelen .content-menu-row .grid-row .content .kms-content a {
color: #222229;
}
}
.content-menu-row .grid-row .content .kms-content li:before {
color: #EDEDF1;
}
@media screen and (min-width: 1201px) {
.rols-machineonderdelen .content-menu-row .grid-row .content .kms-content li:before {
color: #222229;
}
}
.content-menu-row .grid-row .content .kms-content a:hover {
color: rgba(255, 255, 255, 0.6);
}
.content-menu-row .grid-row .menu-wrapper {
width: 50%;
}
.content-menu-row .grid-row .overview-page {
width: 50%;
padding: 0 2.0833333333%;
text-align: right;
}
.content-menu-row .grid-row .overview-page a {
display: flex;
-webkit-justify-content: flex-end;
-moz-justify-content: flex-end;
-ms-justify-content: flex-end;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-end;
align-items: center;
color: #EDEDF1;
transition: color 0.3s;
font-size: 0.9rem;
line-height: 1.4;
font-weight: 500;
text-decoration: none;
}
.rols-machineonderdelen .content-menu-row .grid-row .overview-page a {
color: #EDEDF1;
}
.content-menu-row .grid-row .overview-page a .icon {
display: inline-block;
margin-right: 10px;
opacity: 1;
background: url("/img/anvil-sprite.svg") -335px -105px no-repeat;
background-size: 700px 370px;
width: 16px;
height: 16px;
transition: opacity 0.3s;
}
.content-menu-row .grid-row .overview-page a:hover .icon {
opacity: 0.5;
}
.content-menu-row .grid-row .other-models {
width: 50%;
padding: 0 4.1666666667%;
}
.content-menu-row .grid-row .other-models ul {
list-style: none;
padding: 0;
margin: 0;
}
.content-menu-row .grid-row .other-models ul li {
font-size: 0.9rem;
line-height: 1.4;
}
.content-menu-row .grid-row .other-models ul li + li {
margin-top: 5px;
}
.content-menu-row .grid-row .other-models ul li a {
color: #EDEDF1;
transition: color 0.3s;
text-decoration: none;
}
.rols-machineonderdelen .content-menu-row .grid-row .other-models ul li a {
color: white;
}
.content-menu-row .grid-row .other-models ul li a:hover {
color: white;
}
.content-menu-row .grid-row .other-models ul li.active a {
color: white;
font-weight: 700;
}
.rols-machineonderdelen .content-menu-row .grid-row .other-models ul li.active a {
color: white;
}
@media screen and (max-width: 1200px) {
.content-menu-row .background:before {
display: none;
}
.content-menu-row .background .overview-page-background {
display: none;
}
.content-menu-row .grid-row {
width: 100%;
padding: 0;
/* ---------------------------- Site specific styling */
}
.content-menu-row .grid-row:after {
content: "";
width: 100%;
height: 1px;
display: block;
margin-top: -1px;
}
.content-menu-row .grid-row .content {
width: 100%;
padding: calc(100vw / 12 * 1.5) 14.2857142857% calc(100vw / 12 * 1);
}
.content-menu-row .grid-row .menu-wrapper {
width: 100%;
}
.content-menu-row .grid-row .overview-page {
width: 50%;
padding: calc(100vw / 12 * 1) 7.1428571429% calc(100vw / 12 * 1) 14.2857142857%;
background-color: transparent;
}
.content-menu-row .grid-row .other-models {
width: 50%;
padding: calc(100vw / 12 * 1) 14.2857142857% calc(100vw / 12 * 1) 7.1428571429%;
}
.content-menu-row .reference-block, .content-menu-row #work-at-block {
/*display: none */
position: relative;
width: calc(100% - 40px);
max-width: 700px;
/*height: 200px */
margin-left: auto;
margin-right: auto;
margin-bottom: calc(100vw / 12 * 1);
}
.content-menu-row .reference-block .content, .content-menu-row #work-at-block .content {
background-color: transparent;
}
.content-menu-row #reference-block figure {
width: 240px;
}
.content-menu-row #reference-block .content {
width: calc(100% - 240px);
}
}
@media screen and (max-width: 800px) {
.content-menu-row .background .overview-page-background {
width: 41.6666666667%;
}
.content-menu-row .grid-row .overview-page {
width: 41.6666666667%;
}
.content-menu-row .grid-row .other-models {
width: 58.3333333333%;
}
}
@media screen and (max-width: 700px) {
.content-menu-row .grid-row .content {
padding: 80px 20px;
}
.content-menu-row .grid-row .overview-page {
padding-left: 20px;
}
.content-menu-row .grid-row .other-models {
padding-right: 20px;
}
.content-menu-row .grid-row .other-models ul li + li {
margin-top: 10px;
}
.content-menu-row #reference-block, .content-menu-row #work-at-block {
width: 100%;
max-width: 700px;
margin-bottom: 0;
}
.content-menu-row #reference-block .content, .content-menu-row #work-at-block .content {
background-color: transparent;
}
.content-menu-row #work-at-block {
display: block;
height: auto;
padding: 30px 20px;
}
.content-menu-row #work-at-block .content {
width: 100%;
padding: 0;
}
.content-menu-row #work-at-block .icon {
display: none;
}
.content-menu-row #work-at-block .button {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
margin-top: 30px;
position: relative;
bottom: 0;
left: 0;
}
.content-menu-row #reference-block {
/*TODO dit zal zo zijn */
}
.content-menu-row #reference-block figure {
width: 240px;
}
.content-menu-row #reference-block .content {
width: calc(100% - 240px);
}
}
@media screen and (max-width: 550px) {
.content-menu-row .grid-row .overview-page {
width: 100%;
padding: 0;
text-align: left;
}
.content-menu-row .grid-row .overview-page a {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
padding: 30px 20px;
}
.content-menu-row .grid-row .other-models {
width: 100%;
padding: 30px 20px;
/*ul */
/* padding: 40px 0 40px 26px */
}
}
.other-relative-models-row {
position: relative;
z-index: 2;
padding-bottom: calc(100vw / 12 * 1.5);
}
@media screen and (min-width: 1441px) {
.other-relative-models-row {
padding-bottom: 180px;
}
}
.other-relative-models-row .models-placeholder {
padding: 0 8.3333333333%;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
}
.other-relative-models-row .models-placeholder .model {
width: 30%;
}
.other-relative-models-row .models-placeholder .model:nth-child(4) {
display: none;
}
.other-relative-models-row .models-placeholder .model a {
text-decoration: none;
}
.other-relative-models-row .models-placeholder .model .image-placeholder {
display: block;
width: 100%;
}
.other-relative-models-row .models-placeholder .model .image-placeholder figure {
position: relative;
width: 100%;
padding-bottom: 60%;
height: 0;
overflow: hidden;
}
.other-relative-models-row .models-placeholder .model .image-placeholder figure span {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
background-size: cover;
background-position: center;
transform: scale3d(1, 1, 1);
transform-origin: center;
transition: transform 0.5s;
}
.other-relative-models-row .models-placeholder .model h4 {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
height: 60px;
margin: 0;
padding: 0 30px;
font-size: 0.9rem;
line-height: 1.2;
font-weight: 500;
}
.other-relative-models-row .models-placeholder .model h4 .text {
display: inline-block;
width: calc(100% - 30px);
color: #626266;
}
.rols-machineonderdelen .other-relative-models-row .models-placeholder .model h4 .text {
color: #222229;
}
.other-relative-models-row .models-placeholder .model h4 .arrow {
display: inline-block;
background: url("/img/anvil-sprite.svg") -470px -43px no-repeat;
background-size: 700px 370px;
width: 19px;
height: 13px;
transform: translate3d(0, 0, 0);
transition: transform 0.3s;
}
@media screen and (max-width: 400px) {
.other-relative-models-row .models-placeholder .model h4 {
padding: 0 15px;
}
}
.other-relative-models-row .models-placeholder .model a:hover .image-placeholder figure span {
transform: scale3d(1.05, 1.05, 1);
}
.other-relative-models-row .models-placeholder .model a:hover h4 .arrow {
transform: translate3d(8px, 0, 0);
}
@media screen and (max-width: 1450px) {
.other-relative-models-row .models-placeholder {
padding: 0;
}
}
@media screen and (max-width: 1200px) {
.other-relative-models-row .models-placeholder {
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
}
.other-relative-models-row .models-placeholder .model {
width: calc(50% - 20px);
}
.other-relative-models-row .models-placeholder .model:nth-child(3), .other-relative-models-row .models-placeholder .model:nth-child(4) {
display: block;
margin-top: 40px;
}
}
@media screen and (max-width: 700px) {
.other-relative-models-row .models-placeholder {
display: block;
}
.other-relative-models-row .models-placeholder .model {
width: calc(100% - 40px);
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.other-relative-models-row .models-placeholder .model + .model {
margin-top: 40px;
}
.other-relative-models-row .models-placeholder .model:nth-child(4) {
display: none;
}
}
.reference-other-relative-models-binder {
position: relative;
z-index: 4;
background-color: white;
}
.reference-other-relative-models-binder .grid-row {
position: relative;
}
.reference-other-relative-models-binder .grid-row:before {
content: "";
top: 0;
left: 0;
position: absolute;
display: block;
width: 25%;
height: 100%;
}
@media screen and (max-width: 1450px) {
.reference-other-relative-models-binder .grid-row:before {
width: 16.6666666667%;
}
}
@media screen and (max-width: 1000px) {
.reference-other-relative-models-binder .grid-row:before {
display: none;
}
}
@media screen and (max-width: 700px) {
.reference-other-relative-models-binder .grid-row {
width: 100%;
}
.reference-other-relative-models-binder .grid-row:before {
display: none;
}
}
.reference-offer-cta-row {
position: relative;
z-index: 2;
padding: calc(100vw / 12) 0;
}
@media screen and (min-width: 1441px) {
.reference-offer-cta-row {
padding: 120px 0;
}
}
.reference-offer-cta-row .reference, .reference-offer-cta-row .offer-cta {
display: inline-block;
vertical-align: top;
}
.reference-offer-cta-row .reference {
width: 41.6666666667%;
margin-left: 8.3333333333%;
}
.reference-offer-cta-row .reference.reference--disabled {
display: none;
}
.reference-offer-cta-row .reference .reference-description {
position: relative;
border-radius: 10px;
padding: 40px 60px;
}
.anvil .reference-offer-cta-row .reference .reference-description {
background-color: #0052ED;
}
.rols-machineonderdelen .reference-offer-cta-row .reference .reference-description {
background-color: #FFC800;
}
.job-precision .reference-offer-cta-row .reference .reference-description {
background-color: #339AFF;
}
.jansen-machining-technology .reference-offer-cta-row .reference .reference-description {
background-color: #2C77DB;
}
.machinefabriek-de-valk .reference-offer-cta-row .reference .reference-description {
background-color: #28B4E4;
}
.reference-offer-cta-row .reference .reference-description p {
color: #EDEDF1;
margin: 0;
font-size: 1.1rem;
line-height: 1.2;
font-weight: 500;
font-style: italic;
}
.rols-machineonderdelen .reference-offer-cta-row .reference .reference-description p {
color: #222229;
}
.reference-offer-cta-row .reference .reference-description:before, .reference-offer-cta-row .reference .reference-description:after {
content: "";
position: absolute;
display: inline-block;
}
.reference-offer-cta-row .reference .reference-description:before {
top: 0;
left: -35px;
background: url("/img/anvil-sprite.svg") -310px -87px no-repeat;
background-size: 700px 370px;
width: 23px;
height: 16px;
}
.reference-offer-cta-row .reference .reference-description:after {
bottom: 0;
right: -35px;
background: url("/img/anvil-sprite.svg") -310px -105px no-repeat;
background-size: 700px 370px;
width: 23px;
height: 16px;
}
.reference-offer-cta-row .reference .person {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
margin-top: 30px;
padding-left: calc(40% - 35px);
}
.reference-offer-cta-row .reference .person figure {
position: relative;
width: 70px;
height: 70px;
border-radius: 100%;
}
.reference-offer-cta-row .reference .person figure span {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 100%;
background-size: cover;
background-position: center;
}
.reference-offer-cta-row .reference .person .content {
width: calc(100% - 80px);
}
.reference-offer-cta-row .reference .person .content p {
margin: 0;
font-size: 0.8rem;
line-height: 1.4;
color: #626266;
font-weight: 600;
}
.reference-offer-cta-row .reference .person .content p strong {
display: block;
}
.reference-offer-cta-row .reference .person .content .linkedin {
display: block;
margin-top: 10px;
background: url("/img/anvil-sprite.svg") -442px -24px no-repeat;
background-size: 700px 370px;
width: 20px;
height: 20px;
opacity: 1;
transition: opacity 0.3s;
}
.reference-offer-cta-row .reference .person .content .linkedin:hover {
opacity: 0.6;
}
.reference-offer-cta-row .offer-cta {
position: relative;
top: -7px;
margin-left: 16.6666666667%;
width: 33.3333333333%;
}
.reference-offer-cta-row .offer-cta.offer-cta--no-reference {
margin-left: 66.6666666667%;
}
.reference-offer-cta-row .offer-cta:before {
content: "";
position: absolute;
left: -40px;
top: 6px;
display: inline-block;
background: url("/img/anvil-sprite.svg") -467px -129px no-repeat;
background-size: 700px 370px;
width: 23px;
height: 29px;
}
.reference-offer-cta-row .offer-cta p {
margin: 0;
font-size: 0.9rem;
line-height: 1.4;
font-weight: 500;
}
.reference-offer-cta-row .offer-cta p a {
text-decoration: none;
transition: color 0.2s;
}
.reference-offer-cta-row .offer-cta p strong {
display: block;
font-weight: 600;
}
.reference-offer-cta-row .offer-cta .button {
margin-top: 50px;
border-color: #808080;
color: #808080;
}
.reference-offer-cta-row .offer-cta .button .arrow {
background: url("/img/anvil-sprite.svg") -470px -1px no-repeat;
background-size: 700px 370px;
width: 19px;
height: 13px;
}
.reference-offer-cta-row .offer-cta .button:hover {
border-color: #D2D2DC;
color: #D2D2DC;
}
@media screen and (max-width: 1450px) {
.reference-offer-cta-row .offer-cta.offer-cta--no-reference {
margin-left: 50%;
}
.reference-offer-cta-row .reference {
margin-left: 0;
width: 50%;
}
.reference-offer-cta-row .reference .person {
padding-left: calc(33.3333333333% - 35px);
}
}
@media screen and (max-width: 1000px) {
.reference-offer-cta-row {
text-align: center;
}
.reference-offer-cta-row .reference {
text-align: left;
width: 100%;
padding: 0 40px;
padding-bottom: 40px;
margin-bottom: 40px;
}
.reference-offer-cta-row .reference .person {
padding-left: 60px;
}
.reference-offer-cta-row .offer-cta {
top: 0;
display: block;
margin-left: auto;
width: calc(100% - 180px);
text-align: left;
}
.reference-offer-cta-row .offer-cta.offer-cta--no-reference {
margin-left: auto;
}
}
@media screen and (max-width: 700px) {
.reference-offer-cta-row {
padding: 80px 0;
}
.reference-offer-cta-row .reference {
padding: 0 40px 40px;
}
.reference-offer-cta-row .reference .reference-description {
padding: 30px 40px;
}
.reference-offer-cta-row .reference .reference-description:before {
left: -31px;
}
.reference-offer-cta-row .reference .reference-description:after {
right: -31px;
}
.reference-offer-cta-row .reference .person {
display: block;
padding-left: 40px;
}
.reference-offer-cta-row .reference .person figure {
margin-bottom: 10px;
}
.reference-offer-cta-row .reference .person .content {
width: 100%;
}
.reference-offer-cta-row .reference .person .content p {
font-size: 0.9rem;
}
.reference-offer-cta-row .offer-cta {
width: calc(100% - 160px);
}
}
@media screen and (max-width: 500px) {
.reference-offer-cta-row .reference .person {
padding-left: 0;
}
.reference-offer-cta-row .offer-cta {
width: 100%;
padding: 0 40px;
}
.reference-offer-cta-row .offer-cta:before {
position: relative;
left: 0;
top: 5px;
display: inline-block;
vertical-align: top;
}
.reference-offer-cta-row .offer-cta > p {
display: inline-block;
width: calc( 100% - 29px);
padding-left: 25px;
}
.reference-offer-cta-row .offer-cta .button {
margin-top: 30px;
}
}
.also-watch-row {
position: relative;
z-index: 2;
}
.also-watch-row .grid-row {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
padding-right: 100px;
height: calc(100vw / 12 * 3);
}
@media screen and (min-width: 1441px) {
.also-watch-row .grid-row {
height: 360px;
}
}
.also-watch-row .content.kms-content {
width: calc(100% - 250px);
max-width: 600px;
padding-left: 30px;
}
.also-watch-row .content.kms-content > *:first-child {
margin-top: 0;
}
.also-watch-row .content.kms-content > *:last-child {
margin-bottom: 0;
}
.also-watch-row .content.kms-content p {
font-size: 1.2rem;
line-height: 1.6;
}
.also-watch-row .button .arrow {
margin-left: 20px;
}
@media screen and (max-width: 1100px) {
.also-watch-row .grid-row {
display: block;
padding: calc(100vw / 12) 30px;
height: auto;
}
.also-watch-row .content.kms-content {
padding-left: 0;
width: 100%;
}
.also-watch-row .button {
margin-top: 40px;
}
}
@media screen and (max-width: 700px) {
.also-watch-row .grid-row {
width: calc(100% - 40px);
padding-left: 0;
padding-right: 0;
}
}
.impression-image-row {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
max-height: 60vh;
overflow: hidden;
}
.impression-image-row .impression-image {
position: relative;
z-index: 3;
display: block;
width: 100%;
}
.impression-image-row .impression-image img {
width: 100%;
}
.models-menu-row {
position: relative;
overflow: hidden;
}
.anvil .models-menu-row {
background-color: #221D42;
}
.rols-machineonderdelen .models-menu-row {
background-color: #28282E;
}
.job-precision .models-menu-row {
background-color: #221D42;
}
.jansen-machining-technology .models-menu-row {
background-color: #072C5C;
}
.machinefabriek-de-valk .models-menu-row {
background-color: #092833;
}
.models-menu-row .models-grid {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
}
.models-menu-row .models-grid .model {
position: relative;
width: 25%;
text-decoration: none;
background-color: transparent;
transition: background-color 0.3s;
}
.models-menu-row .models-grid .model:after {
position: absolute;
left: -100vw;
bottom: 0;
width: 200vw;
height: 1px;
}
.models-menu-row .models-grid .model:nth-child(4n+4):after {
content: "";
display: block;
}
.models-menu-row .models-grid .model .placeholder {
position: relative;
width: 100%;
padding-bottom: 100%;
height: 0;
}
.models-menu-row .models-grid .model .placeholder .background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.15;
background-size: cover;
background-position: center;
transition: opacity 0.5s;
}
.models-menu-row .models-grid .model .placeholder .content-placeholder {
position: absolute;
top: 0;
left: 0;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-end;
-moz-align-items: flex-end;
-ms-align-items: flex-end;
justify-content: space-between;
align-items: flex-end;
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
width: 100%;
height: 100%;
padding: 30px;
}
.models-menu-row .models-grid .model .placeholder .content-placeholder p {
width: calc(100% - 25px);
margin: 0;
color: #EDEDF1;
font-size: 1rem;
line-height: 1.2;
font-weight: 500;
transition: color 0.5s;
}
.models-menu-row .models-grid .model .placeholder .content-placeholder p .location {
display: block;
margin-bottom: 5px;
font-size: 0.8rem;
color: rgba(237, 237, 241, 0.5);
transition: color 0.5s;
}
.models-menu-row .models-grid .model .placeholder .content-placeholder .arrow {
display: inline-block;
background: url("/img/anvil-sprite.svg") -442px -1px no-repeat;
background-size: 700px 370px;
width: 12px;
height: 21px;
}
.models-menu-row .models-grid .model:hover.no-background {
background-color: #5b5b5e;
}
.models-menu-row .models-grid .model:hover .placeholder .background {
opacity: 1;
}
.models-menu-row .models-grid .model:hover .placeholder .content-placeholder p {
color: white;
}
@media screen and (max-width: 1100px) {
.models-menu-row {
z-index: 3;
}
.models-menu-row .models-grid .model {
width: 33%;
}
.models-menu-row .models-grid .model:nth-child(4n+4):after {
display: none;
}
.models-menu-row .models-grid .model:nth-child(3n+3):after {
content: "";
display: block;
}
}
@media screen and (max-width: 1100px) and (max-width: 900px) {
.models-menu-row .models-grid .model {
width: 50%;
}
.models-menu-row .models-grid .model:nth-child(3n+3):after {
display: none;
}
.models-menu-row .models-grid .model:nth-child(2n+2):after {
content: "";
display: block;
}
}
@media screen and (max-width: 650px) {
.models-menu-row .models-grid {
display: block;
}
.models-menu-row .models-grid .model {
display: block;
width: 100%;
}
.models-menu-row .models-grid .model:after {
content: "";
display: block !important;
}
.models-menu-row .models-grid .model .placeholder {
padding-bottom: 0;
height: auto;
}
.models-menu-row .models-grid .model .placeholder .content-placeholder {
position: relative;
}
}
@media screen and (max-width: 650px) and (max-width: 425px) {
.models-menu-row .models-grid .model .placeholder .content-placeholder {
padding: 30px 15px;
}
}
/* Cookie message without tracking */
#cookie-message {
background-color: #626266;
position: fixed;
z-index: 999999;
bottom: 0;
left: 0;
padding: 15px 0;
width: 100%;
opacity: 1;
box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.1);
transition: opacity 0.5s, transform 0.6s;
transform: translate3d(0, 0, 0);
}
#cookie-message.accepted {
display: none;
}
#cookie-message.transition-out {
opacity: 0;
transform: translate3d(0, 50%, 0);
}
#cookie-message .grid-row {
text-align: center;
}
#cookie-message .grid-row p, #cookie-message .grid-row p a, #cookie-message .grid-row .close-button {
font-size: 0.75rem;
line-height: 1.2;
color: white;
}
#cookie-message .grid-row p {
display: inline-block;
vertical-align: middle;
margin: 0;
}
#cookie-message .grid-row p a {
text-decoration: underline;
}
#cookie-message .grid-row .close-button {
display: inline-block;
vertical-align: middle;
margin-left: 15px;
padding: 5px 12px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 5px;
cursor: pointer;
}
@media screen and (max-width: 625px) {
#cookie-message .grid-row p {
max-width: 225px;
}
}
@media screen and (max-width: 375px) {
#cookie-message .grid-row p {
display: block;
max-width: none;
}
#cookie-message .grid-row .close-button {
margin-top: 10px;
}
}
/*@import cookieSwitch */
/*==========================================================================
Dynamic Blocks
@mixin ========================================================================= */
.dynamic-block {
margin-top: 60px;
}
.dynamic-block .grid-row {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
}
.dynamic-block.two-text-columns {
position: relative;
z-index: 10;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
}
.dynamic-block.two-text-columns .content {
width: 47.7272727273%;
padding: 0;
}
@media screen and (max-width: 900px) {
.dynamic-block.two-text-columns {
display: block;
}
.dynamic-block.two-text-columns .content {
width: 100% !important;
margin: 0;
}
.dynamic-block.two-text-columns .content p:last-of-type {
margin-bottom: 1rem;
}
}
.dynamic-block.full-image-column img {
width: 100%;
display: none;
}
.dynamic-block.full-image-column img.large {
display: block;
}
@media screen and (max-width: 1050px) {
.dynamic-block.full-image-column img.large {
display: none;
}
.dynamic-block.full-image-column img.medium {
display: block;
}
}
@media screen and (max-width: 525px) {
.dynamic-block.full-image-column img.medium {
display: none;
}
.dynamic-block.full-image-column img.small {
display: block;
}
}
.dynamic-block.content-block {
position: relative;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
}
.dynamic-block.content-block .image {
width: 50%;
}
.dynamic-block.content-block .image img {
width: 100%;
}
.dynamic-block.content-block .image img.small {
display: none;
}
@media screen and (max-width: 450px) {
.dynamic-block.content-block .image img.medium {
display: none;
}
.dynamic-block.content-block .image img.small {
display: block;
}
}
.dynamic-block.content-block .image .content {
width: 41.6666666667%;
}
.dynamic-block.content-block .content {
-ms-order: 1;
order: 1;
width: 41.6666666667%;
}
.dynamic-block.content-block[data-image-location=right] .image {
-ms-order: 2;
order: 2;
}
.dynamic-block.content-block[data-image-location=right] .content {
-ms-order: 1;
order: 1;
}
@media screen and (max-width: 900px) {
.dynamic-block.content-block {
display: block;
}
.dynamic-block.content-block .image {
width: 100%;
margin-top: 40px;
-ms-order: 2;
order: 2;
}
.dynamic-block.content-block .content {
width: 100%;
}
}
.dynamic-block.multiple-images {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
}
.dynamic-block.multiple-images figure {
width: 47.7272727273%;
}
.dynamic-block.multiple-images figure img {
width: 100%;
display: none;
}
.dynamic-block.multiple-images figure img.medium {
display: none;
}
@media screen and (max-width: 1100px) {
.dynamic-block.multiple-images figure img.large {
display: none;
}
.dynamic-block.multiple-images figure img.medium {
display: block;
}
}
@media screen and (max-width: 480px) {
.dynamic-block.multiple-images figure img.large {
display: none;
}
.dynamic-block.multiple-images figure img.medium {
display: block;
}
}
.dynamic-block.multiple-images[data-size-type="50"] figure img.medium {
display: block;
}
@media screen and (max-width: 1125px) {
.dynamic-block.multiple-images[data-size-type="50"] figure img.medium {
display: none;
}
.dynamic-block.multiple-images[data-size-type="50"] figure img.small {
display: block;
}
}
@media screen and (max-width: 900px) {
.dynamic-block.multiple-images {
display: block;
}
.dynamic-block.multiple-images figure {
width: 100%;
}
.dynamic-block.multiple-images figure:first-of-type {
margin-bottom: 40px;
}
.dynamic-block.multiple-images figure img.medium {
display: block !important;
}
.dynamic-block.multiple-images figure img.small {
display: none !important;
}
}
@media screen and (max-width: 900px) and (max-width: 525px) {
.dynamic-block.multiple-images figure img.medium {
display: none;
}
.dynamic-block.multiple-images figure img.small {
display: block;
}
}
.dynamic-block.full-text-block .content {
max-width: 680px;
margin: auto;
text-align: center;
}
.dynamic-block.video-block {
width: 100%;
max-width: 960px;
margin: 60px auto 0 !important;
}
.dynamic-block.video-block .video-wrapper {
position: relative;
padding-bottom: 53.6%;
padding-top: 25px;
height: 0;
}
.dynamic-block.video-block .video-wrapper iframe, .dynamic-block.video-block .video-wrapper .video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.dynamic-block.video-block .video-wrapper .video-overlay {
z-index: 2;
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
opacity: 1;
cursor: pointer;
transition: all 0.2s;
}
.dynamic-block.video-block .video-wrapper .video-overlay .button {
width: 25%;
max-width: 85px;
transform: scale(1);
transition: all 0.4s;
}
.dynamic-block.video-block .video-wrapper .video-overlay .button img {
width: 100%;
}
.dynamic-block.video-block .video-wrapper .video-overlay:hover .button {
transform: scale(0.85);
}
.dynamic-block.video-block .video-wrapper .video-overlay.hide {
opacity: 0;
pointer-events: none;
transition: all 0.5s;
transition-delay: 0.7s;
}
.dynamic-block.video-block .video-wrapper .video-overlay.hide .button {
transition: all 0.8s;
transform: scale(0.3);
}
.home-intro {
position: relative;
z-index: 5;
/* Video format animation */
}
@media screen and (max-width: 1200px) {
.home-intro {
top: 100px;
margin-bottom: 100px;
}
}
.home-intro .line-background .grid-row {
height: 200px;
}
.home-intro .line-background .grid-row .grid-col:first-child {
border-left: none;
}
.home-intro .line-background .grid-row .grid-col:last-child {
border: none;
}
.home-intro .line-background .grid-row .grid-col:nth-last-child(2) {
border: none;
}
.home-intro .breadcrumb-block {
position: relative;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-end;
-moz-align-items: flex-end;
-ms-align-items: flex-end;
justify-content: flex-start;
align-items: flex-end;
height: 240px;
padding-bottom: 30px;
grid-area: breadcrumb;
}
.home-intro .breadcrumb-block .breadcrumb-placeholder {
width: 54.1666666667%;
margin-left: 8.3333333333%;
}
.home-intro .content-block {
position: relative;
z-index: 2;
grid-area: content;
}
.home-intro .content-block .kms-content {
width: 83.3333333333%;
margin-left: 8.3333333333%;
padding-bottom: 24px;
}
.home-intro .content-block .kms-content h1 {
font-size: 64px;
line-height: 1.1;
}
.anvil .home-intro .content-block .kms-content h1 {
color: #1E1941;
}
.rols-machineonderdelen .home-intro .content-block .kms-content h1 {
color: #222229;
}
.job-precision .home-intro .content-block .kms-content h1 {
color: #1E1941;
}
.jansen-machining-technology .home-intro .content-block .kms-content h1 {
color: #052856;
}
.machinefabriek-de-valk .home-intro .content-block .kms-content h1 {
color: #061C24;
}
@media screen and (max-width: 1050px) {
.home-intro .content-block .kms-content h1 {
font-size: 48px;
}
}
@media screen and (max-width: 750px) {
.home-intro .content-block .kms-content h1 {
font-size: 2.5rem;
}
}
@media screen and (max-width: 600px) {
.home-intro .content-block .kms-content h1 {
font-size: 2rem;
}
}
@media screen and (max-width: 425px) {
.home-intro .content-block .kms-content h1 {
font-size: 1.75rem;
}
}
.home-intro .content-block .kms-content p {
color: #626266;
font-size: 1rem;
}
.home-intro .content-block .kms-content .read-more {
position: relative;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-end;
-moz-align-items: flex-end;
-ms-align-items: flex-end;
justify-content: flex-start;
align-items: flex-end;
height: calc(100vw / 12);
font-size: 0.8rem;
line-height: 1.2;
text-decoration: none;
color: black;
padding-bottom: 30px;
padding-top: 30px;
}
@media screen and (min-width: 1441px) {
.home-intro .content-block .kms-content .read-more {
height: 120px;
}
}
.home-intro .content-block .kms-content .read-more .arrow {
position: absolute;
left: 0;
bottom: 5px;
display: block;
transform: rotate(90deg);
transition: transform 0.3s;
}
.home-intro .content-block .kms-content .read-more:hover .arrow {
transform: translateY(5px) rotate(90deg);
}
.home-intro .content-block .dots {
color: #808080;
position: absolute;
left: -6px;
top: 64px;
}
@media screen and (max-width: 800px) {
.home-intro .content-block .dots {
display: none;
}
}
.home-intro .drawing-block {
display: none;
}
@media screen and (min-width: 1201px) {
.home-intro .drawing-block {
display: initial;
grid-area: video;
transform: translateY(180px);
position: relative;
z-index: 1;
}
.home-intro .drawing-block img {
width: 100%;
}
}
@media screen and (min-width: 1201px){
.home-intro .breadcrumb-block {
-ms-grid-row: 1;
-ms-grid-column: 1;
}
.home-intro .content-block {
-ms-grid-row: 2;
-ms-grid-row-span: 3;
-ms-grid-column: 1;
}
.home-intro .drawing-block {
-ms-grid-row: 1;
-ms-grid-row-span: 4;
-ms-grid-column: 2;
}
}
@media screen and (min-width: 1201px){
.home-intro .breadcrumb-block {
-ms-grid-row: 1;
-ms-grid-column: 1;
}
.home-intro .content-block {
-ms-grid-row: 2;
-ms-grid-row-span: 3;
-ms-grid-column: 1;
}
.home-intro .drawing-block {
-ms-grid-row: 1;
-ms-grid-row-span: 4;
-ms-grid-column: 2;
}
}
@supports (display: grid) {
@media screen and (min-width: 1201px) {
.home-intro {
display: -ms-grid;
display: grid;
min-height: 100vh;
grid-template-columns: 17fr 11fr;
grid-template-rows: 1fr 3fr;
grid-template-areas: "breadcrumb video" "content video" "content video" "content video";
transition: min-height 0.6s;
}
}
@media screen and (min-width: 1201px) and (min-width: 1681px) {
.home-intro {
grid-template-columns: calc(1020px + ((100% - 1680px) / 2)) auto;
}
}
@media screen and (min-width: 1201px) {
.home-intro .breadcrumb-block {
width: 100%;
height: auto;
max-width: none;
}
.home-intro .breadcrumb-block .breadcrumb-placeholder {
width: 100%;
margin-left: auto;
max-width: calc(1440px / 12 * 7.5);
}
.home-intro .breadcrumb-block .breadcrumb-placeholder #breadcrumb {
padding-left: 13.3333333333%;
}
}
@media screen and (min-width: 1201px) and (max-width: 1680px) {
.home-intro .breadcrumb-block .breadcrumb-placeholder {
max-width: none;
padding-left: calc(100% / 8.5 * 2);
}
.home-intro .breadcrumb-block .breadcrumb-placeholder #breadcrumb {
padding-left: 0;
}
}
@media screen and (min-width: 1201px) {
.home-intro .content-block {
width: 100%;
max-width: none;
}
.home-intro .content-block .grid-row {
width: 100%;
margin-right: 0;
max-width: calc(1440px / 12 * 7.5);
padding-right: calc(100% / 8.5);
}
.home-intro .content-block .grid-row .kms-content {
margin-left: 0;
width: 100%;
}
}
@media screen and (min-width: 1201px) and (max-width: 1680px) {
.home-intro .content-block .grid-row {
max-width: none;
padding-left: calc(100% / 8.5 * 2);
}
.home-intro .content-block .grid-row .kms-content {
padding-left: 0;
}
}
@media screen and (min-width: 1201px) {
.home-intro .video-block {
position: relative;
}
.home-intro .video-block .grid-row {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
max-width: none;
}
.home-intro .video-block .grid-row .video-placeholder {
height: 100%;
padding-bottom: 0;
}
}
}
.home-intro.video-formation:after {
content: "";
position: relative;
width: 100%;
}
.home-intro.video-formation .video-block .grid-row .video-overlay {
opacity: 1;
z-index: 3;
}
.home-intro.video-formation .video-block .grid-row .image-placeholder, .home-intro.video-formation .video-block .grid-row .play-button {
opacity: 0;
}
@supports (display: grid) {
@media screen and (min-width: 1201px) {
.home-intro.video-formation .video-block {
position: absolute;
z-index: 3;
right: 0;
top: 0;
height: 100%;
max-height: 100vh;
width: calc(100% / 28 * 11);
will-change: width;
}
}
@media screen and (min-width: 1201px) and (min-width: 1681px) {
.home-intro.video-formation .video-block {
width: calc(100% - (1020px + ((100% - 1680px) / 2)));
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation .video-block .grid-row .video-overlay {
opacity: 0;
max-width: 1920px;
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation .video-block.video-formation-size {
width: 100%;
}
.home-intro.video-formation .video-block.video-formation-size .grid-row .video-overlay.show-video {
opacity: 1;
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation.keep-display-settings {
display: block;
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation.video-formation-max-height-size {
min-height: 665px;
display: block;
}
}
@media screen and (min-width: 1201px) and (min-width: 1921px) {
.home-intro.video-formation.video-formation-max-height-size {
min-height: 1080px;
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation.video-formation-max-height-size .video-format-placeholder {
display: block;
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation.video-formation-max-height-size .breadcrumb-block {
max-height: 0;
padding-bottom: 0;
}
}
@media screen and (min-width: 1201px) {
.home-intro.video-formation.video-formation-max-height-size .content-block {
max-height: 0;
}
}
}
@media screen and (max-width: 700px) {
.home-intro .breadcrumb-block .breadcrumb-placeholder {
display: none;
}
.home-intro .content-block .grid-row {
width: 100%;
}
.home-intro .content-block .grid-row .kms-content {
width: calc(100% - 40px);
padding: 60px 0 80px;
margin-left: auto;
margin-right: auto;
}
.home-intro .content-block .grid-row .kms-content .read-more {
font-size: 0.9rem;
}
}
.home-menu-row {
position: relative;
padding: calc(100vw / 12) 0 0;
}
@media screen and (min-width: 1441px) {
.home-menu-row {
padding: 120px 0 0;
}
}
.home-menu-row .grid-row {
position: relative;
z-index: 3;
height: 100%;
}
.home-menu-row .streamer {
height: calc(100vw / 12);
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-end;
-moz-align-items: flex-end;
-ms-align-items: flex-end;
justify-content: space-between;
align-items: flex-end;
}
@media screen and (min-width: 1441px) {
.home-menu-row .streamer {
height: 120px;
}
}
.home-menu-row .streamer p {
position: relative;
bottom: -9px;
width: 75%;
max-width: 600px;
margin: 0;
padding-left: 30px;
font-size: 1.2rem;
line-height: 1.6;
color: #808080;
}
.home-menu-row .streamer .button-placeholder {
display: inline-block;
vertical-align: bottom;
width: 25%;
padding-left: 20px;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-end;
-moz-align-items: flex-end;
-ms-align-items: flex-end;
justify-content: flex-start;
align-items: flex-end;
}
.home-menu-row .streamer .button-placeholder .button {
color: #808080;
background-color: transparent;
transition: background-color 0.3s;
}
.anvil .home-menu-row .streamer .button-placeholder .button {
border-color: #221D42;
}
.rols-machineonderdelen .home-menu-row .streamer .button-placeholder .button {
border-color: #28282E;
}
.job-precision .home-menu-row .streamer .button-placeholder .button {
border-color: #221D42;
}
.jansen-machining-technology .home-menu-row .streamer .button-placeholder .button {
border-color: #072C5C;
}
.machinefabriek-de-valk .home-menu-row .streamer .button-placeholder .button {
border-color: #092833;
}
.home-menu-row .streamer .button-placeholder .button .arrow {
margin-left: 20px;
}
@media screen and (max-width: 1200px) {
.home-menu-row .streamer {
display: block;
height: auto;
}
.home-menu-row .streamer p {
width: 100%;
bottom: 0;
padding-right: 50px;
}
.home-menu-row .streamer .button-placeholder {
margin: 50px 0;
width: 100%;
padding-left: 30px;
}
}
.home-menu-row .menu {
display: block;
}
.home-menu-row .menu .nav-item {
display: inline-block;
vertical-align: top;
width: 25%;
padding: calc(100vw / 12 * 2) 30px calc(100vw / 12 * 2);
}
@media screen and (min-width: 1441px) {
.home-menu-row .menu .nav-item {
padding: 240px 30px 240px;
}
}
.home-menu-row .menu .nav-item .main-link {
position: relative;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
text-decoration: none;
transform: translate3d(0, 0, 0);
transition: transform 0.5s ease-in-out;
}
.home-menu-row .menu .nav-item .main-link .icon {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 30px;
height: 30px;
}
.home-menu-row .menu .nav-item .main-link .icon svg {
color: #808080;
}
.home-menu-row .menu .nav-item .main-link p {
margin: 0 0 0 5px;
font-weight: 500;
font-size: 1rem;
line-height: 1.2;
transition: color 0.3s;
}
.anvil .home-menu-row .menu .nav-item .main-link p {
color: #1E1941;
}
.rols-machineonderdelen .home-menu-row .menu .nav-item .main-link p {
color: #222229;
}
.job-precision .home-menu-row .menu .nav-item .main-link p {
color: #1E1941;
}
.jansen-machining-technology .home-menu-row .menu .nav-item .main-link p {
color: #052856;
}
.machinefabriek-de-valk .home-menu-row .menu .nav-item .main-link p {
color: #061C24;
}
.home-menu-row .menu .nav-item .main-link .arrow {
position: absolute;
right: 0;
top: 10px;
display: block;
background: url("/img/anvil-sprite.svg") -200px -255px no-repeat;
background-size: 700px 370px;
width: 21px;
height: 12px;
opacity: 1;
transform: translate3d(0, 0, 0);
transition: opacity 0.4s;
}
.home-menu-row .menu .nav-item ul {
padding: 0 0 0 35px;
margin: -24px 0 0;
list-style: none;
font-size: 0.9rem;
font-weight: 500;
line-height: 1.2;
}
.home-menu-row .menu .nav-item ul li {
position: relative;
padding-left: 40px;
opacity: 0;
transform: translate3d(30px, 0, 0);
transition: transform 0.4s, opacity 0.4s;
transition-delay: 0s;
}
.home-menu-row .menu .nav-item ul li + li a {
padding-top: 10px;
}
.home-menu-row .menu .nav-item ul li:first-of-type {
transform: translate3d(0, 0, 0);
}
.home-menu-row .menu .nav-item ul li:first-of-type:before {
position: absolute;
left: 0;
top: 12px;
content: "";
display: block;
width: 20px;
height: 2px;
transform: translate3d(-30px, 0, 0);
transition: transform 0.4s;
}
.anvil .home-menu-row .menu .nav-item ul li:first-of-type:before {
background-color: #588EF5;
}
.rols-machineonderdelen .home-menu-row .menu .nav-item ul li:first-of-type:before {
background-color: #E0A800;
}
.job-precision .home-menu-row .menu .nav-item ul li:first-of-type:before {
background-color: #1F90FF;
}
.jansen-machining-technology .home-menu-row .menu .nav-item ul li:first-of-type:before {
background-color: #367FE0;
}
.machinefabriek-de-valk .home-menu-row .menu .nav-item ul li:first-of-type:before {
background-color: #7AD8F9;
}
.home-menu-row .menu .nav-item ul li a {
display: inline-block;
padding-bottom: 10px;
text-decoration: none;
color: #808080;
transition: color 0.3s, opacity 0.2s;
}
.anvil .home-menu-row .menu .nav-item ul li a:hover {
color: #1E1941;
}
.rols-machineonderdelen .home-menu-row .menu .nav-item ul li a:hover {
color: #222229;
}
.job-precision .home-menu-row .menu .nav-item ul li a:hover {
color: #1E1941;
}
.jansen-machining-technology .home-menu-row .menu .nav-item ul li a:hover {
color: #052856;
}
.machinefabriek-de-valk .home-menu-row .menu .nav-item ul li a:hover {
color: #061C24;
}
@media screen and (max-width: 1500px) {
.home-menu-row .menu .nav-item ul {
padding: 0 0 0 40px;
}
.home-menu-row .menu .nav-item ul li {
padding-left: 0;
}
.home-menu-row .menu .nav-item ul li:first-of-type:before {
left: -40px;
}
}
.home-menu-row .menu .nav-item:hover .main-link .arrow {
opacity: 0;
}
.home-menu-row .menu .nav-item:hover.dropout .main-link {
transform: translate3d(0, -75px, 0);
}
.home-menu-row .menu .nav-item:hover.dropout ul li {
transform: translate3d(0, 0, 0);
opacity: 1;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(1) {
transition-delay: 0s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(2) {
transition-delay: 0.04s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(3) {
transition-delay: 0.08s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(4) {
transition-delay: 0.12s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(5) {
transition-delay: 0.16s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(6) {
transition-delay: 0.2s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(7) {
transition-delay: 0.24s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:nth-child(8) {
transition-delay: 0.28s;
}
.home-menu-row .menu .nav-item:hover.dropout ul li:before {
transform: translate3d(0, 0, 0);
}
.anvil .home-menu-row .menu .nav-item:hover .main-link .icon svg {
color: #0A5BF5;
}
.rols-machineonderdelen .home-menu-row .menu .nav-item:hover .main-link .icon svg {
color: #E0A800;
}
.job-precision .home-menu-row .menu .nav-item:hover .main-link .icon svg {
color: #339AFF;
}
.jansen-machining-technology .home-menu-row .menu .nav-item:hover .main-link .icon svg {
color: #367FE0;
}
.machinefabriek-de-valk .home-menu-row .menu .nav-item:hover .main-link .icon svg {
color: #28B4E4;
}
.home-menu-row .menu .nav-item.about .main-link .icon:before {
background: url("/img/anvil-sprite.svg") -412px -28px no-repeat;
background-size: 700px 370px;
width: 26px;
height: 25px;
}
.home-menu-row .menu .nav-item.specialisms .main-link .icon:before {
background: url("/img/anvil-sprite.svg") -355px -25px no-repeat;
background-size: 700px 370px;
width: 27px;
height: 22px;
}
.home-menu-row .menu .nav-item.segments .main-link .icon:before {
background: url("/img/anvil-sprite.svg") -385px -28px no-repeat;
background-size: 700px 370px;
width: 25px;
height: 25px;
}
.home-menu-row .menu .nav-item.machine-park .main-link .icon:before {
background: url("/img/anvil-sprite.svg") -278px -229px no-repeat;
background-size: 700px 370px;
width: 25px;
height: 25px;
}
@media screen and (min-width: 1301px) {
.home-menu-row:hover .menu .nav-item .main-link {
will-change: transform;
}
.home-menu-row:hover .menu .nav-item .main-link p {
will-change: color;
}
.home-menu-row:hover .menu .nav-item ul li {
will-change: transform, opacity;
}
}
@media screen and (max-width: 1300px) {
.home-menu-row .menu {
padding: calc(100vw / 12) 0 calc(100vw / 12);
}
.home-menu-row .menu .nav-item {
display: block;
width: 100%;
padding-top: 0;
padding-bottom: 0;
}
.home-menu-row .menu .nav-item + .nav-item {
margin-top: 40px;
}
.home-menu-row .menu .nav-item .main-link {
transform: translate3d(0, 0, 0) !important;
}
.home-menu-row .menu .nav-item .main-link .arrow {
display: none;
}
.home-menu-row .menu .nav-item ul {
display: none;
margin: 0;
padding-top: 20px;
padding-bottom: 20px;
}
.home-menu-row .menu .nav-item ul li {
opacity: 1;
transform: translate3d(0, 0, 0);
}
.home-menu-row .menu .nav-item ul li:first-of-type:before {
transform: translate3d(0, 0, 0);
}
}
@media screen and (max-width: 700px) {
.home-menu-row {
position: relative;
z-index: 2;
background-color: white;
}
.home-menu-row .grid-row {
width: 100%;
}
.home-menu-row .streamer p {
max-width: none;
}
.home-menu-row .streamer .button-placeholder, .home-menu-row .streamer p {
padding-right: 20px;
padding-left: 20px;
}
.home-menu-row .menu {
padding-left: 20px;
padding-right: 20px;
}
.home-menu-row .menu .nav-item {
padding-left: 0;
padding-right: 0;
}
}
.home-main-content {
position: relative;
z-index: 2;
overflow-x: hidden;
}
.anvil .home-main-content {
background-color: #221D42;
}
.rols-machineonderdelen .home-main-content {
background-color: #28282E;
}
.job-precision .home-main-content {
background-color: #221D42;
}
.jansen-machining-technology .home-main-content {
background-color: #072C5C;
}
.machinefabriek-de-valk .home-main-content {
background-color: #092833;
}
.home-main-content .background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.home-main-content .background .fill-out {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 39.2857142857%;
}
.anvil .home-main-content .background .fill-out {
background-color: #1E1941;
}
.rols-machineonderdelen .home-main-content .background .fill-out {
background-color: #222229;
}
.job-precision .home-main-content .background .fill-out {
background-color: #1E1941;
}
.jansen-machining-technology .home-main-content .background .fill-out {
background-color: #052856;
}
.machinefabriek-de-valk .home-main-content .background .fill-out {
background-color: #061C24;
}
@media screen and (min-width: 1681px) {
.home-main-content .background .fill-out {
width: calc( (1440px / 12 * 4.5) + ((100% - 1440px) / 2 ));
}
}
.home-main-content .background .fill-out:before {
content: "";
position: absolute;
opacity: 0.08;
left: 0;
top: 0;
width: 50px;
height: 100%;
background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0) 100%);
}
.home-main-content .grid-row {
position: relative;
z-index: 2;
}
.home-main-content .kms-content > *:first-child {
margin-top: 0;
}
.home-main-content .kms-content > *:last-child {
margin-bottom: 0;
}
.home-main-content .kms-content h1 {
color: #EDEDF1;
font-size: 56px;
line-height: 64px;
}
.home-main-content .kms-content h2, .home-main-content .kms-content h3, .home-main-content .kms-content h4, .home-main-content .kms-content h5 {
font-size: 1.6rem;
color: white;
font-weight: 500;
}
.home-main-content .kms-content h4 {
font-size: 1.4rem;
}
.home-main-content .kms-content h5 {
font-size: 1.2rem;
}
.home-main-content .kms-content p, .home-main-content .kms-content li {
color: #fff;
font-size: 1rem;
}
.home-main-content .kms-content a {
color: white;
text-decoration: underline;
}
.home-main-content .left, .home-main-content .right {
display: inline-block;
vertical-align: top;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 3);
}
@media screen and (min-width: 1441px) {
.home-main-content .left, .home-main-content .right {
padding: 120px 0 360px 4.1666666667%;
}
}
.home-main-content .left {
width: 45.8333333333%;
margin-right: 16.6666666667%;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 3);
}
@media screen and (min-width: 1441px) {
.home-main-content .left {
padding: 120px 0 240px;
}
}
.home-main-content .left .button {
margin-top: 40px;
}
.home-main-content .left .kms-content ul li:before {
content: "";
top: 10px;
color: transparent;
background: url("/img/anvil-sprite.svg") -269px -87px no-repeat;
background-size: 700px 370px;
width: 18px;
height: 13px;
}
.home-main-content .right {
position: relative;
width: 37.5%;
padding-left: 4.1666666667%;
}
.home-main-content .right .kms-content {
position: relative;
z-index: 3;
}
.home-main-content .right .kms-content ul li {
position: relative;
padding-left: 40px;
}
.home-main-content .right .kms-content ul li:before {
position: absolute;
width: 18px;
height: 13px;
left: 0;
top: 8px;
content: "";
background-image: url("data:image/svg+xml,%3Csvg id='check' width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 12.7C6 12.7 5.80002 12.6 5.60002 12.4L0.3 7.1C-0.1 6.7 -0.1 6.09999 0.3 5.69999C0.7 5.29999 1.30002 5.29999 1.70002 5.69999L6.3 10.3L16.3 0.3C16.7 -0.1 17.3 -0.1 17.7 0.3C18.1 0.7 18.1 1.29999 17.7 1.69999L7.00001 12.4C6.80001 12.6 6.6 12.7 6.3 12.7Z' fill='%23588EF5'/%3E%3C/svg%3E");
}
.home-main-content .right .button {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
max-width: 275px;
}
.home-main-content .right .work-at {
margin-top: 20px;
}
.home-main-content .right .work-cta {
background-color: #b0b0b0;
color: #524848;
border-color: #b0b0b0;
}
.home-main-content .right .mt--2 {
margin-top: 20px;
}
.home-main-content .right .mt--2 .counter {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 24px;
height: 24px;
text-align: center;
color: white;
font-size: 15px;
line-height: 1;
font-weight: 700;
border-radius: 100%;
}
.home-main-content .right .mt--2 .counter:before {
position: relative;
top: -1px;
content: attr(data-counter);
}
.home-main-content .scroll-to-placeholder {
position: absolute;
left: 0;
bottom: 0;
display: flex;
-webkit-justify-content: flex-end;
-moz-justify-content: flex-end;
-ms-justify-content: flex-end;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-end;
align-items: center;
width: 25%;
height: 60px;
}
@media screen and (max-width: 1000px) {
.home-main-content .scroll-to-placeholder {
display: none;
}
}
.home-main-content .scroll-to-placeholder .scroll-to-target {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
height: 60px;
width: 60px;
}
@media screen and (max-width: 1000px) {
.home-main-content .background {
display: none;
}
.home-main-content .grid-row {
width: 100%;
padding-bottom: calc(100vw / 12);
}
.home-main-content .right, .home-main-content .left {
width: 100%;
margin: 0;
padding-left: 8.3333333333%;
padding-right: 8.3333333333%;
padding-bottom: calc(100vw / 12);
}
.home-main-content .right {
padding-top: 0;
}
.home-main-content #work-at-block {
position: relative;
height: 200px;
width: 85.7142857143%;
max-width: 700px;
/*height: 200px */
margin-left: auto;
margin-right: auto;
}
.home-main-content #work-at-block .content {
width: calc(100% - 200px);
}
.home-main-content #work-at-block .icon {
width: 200px;
height: 200px;
}
}
@media screen and (max-width: 700px) {
.home-main-content .grid-row {
padding-bottom: 0;
}
.home-main-content .right, .home-main-content .left {
padding-left: 20px;
padding-right: 20px;
}
.home-main-content #work-at-block {
display: block;
height: auto;
width: 100%;
padding: 30px 20px;
margin-left: auto;
margin-right: auto;
}
.home-main-content #work-at-block .content {
width: 100%;
padding: 0;
}
.home-main-content #work-at-block .icon {
display: none;
}
.home-main-content #work-at-block .button {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
margin-top: 30px;
position: relative;
bottom: 0;
left: 0;
}
}
.background-white {
background-color: transparent;
}
.background-white .kms-content p {
color: #B0B0B5;
}
.background-white .kms-content h2, .background-white .kms-content h3, .background-white .kms-content h4 {
color: #222;
}
.button-container-work .button {
background-color: #fff;
border-color: #D2D2DC;
color: #1E1941 !important;
font-weight: 400;
text-decoration: none !important;
}
.button-container-work .button:first-of-type {
margin-right: 19px;
}
.home-additional-row {
position: relative;
z-index: 3;
padding: calc(100vw / 12) 0;
}
@media screen and (min-width: 1441px) {
.home-additional-row {
padding: 120px 0;
}
}
.home-additional-row .grid-row {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: center;
align-items: flex-start;
}
.home-additional-row .grid-row .container {
width: 41.6666666667%;
}
.home-additional-row .grid-row .container .kms-content h2 {
font-size: 1.6rem;
font-weight: 500;
}
.home-additional-row .grid-row .container .kms-content h2:first-child {
margin-top: 0;
}
.home-additional-row .grid-row .container .button {
margin-top: 45px;
color: #808080;
border-color: #808080;
}
.home-additional-row .grid-row .container .button:hover {
border-color: #D2D2DC;
color: #D2D2DC;
}
.home-additional-row .grid-row .container.left {
padding-right: 4.1666666667%;
}
.home-additional-row .grid-row .container.right {
padding-left: 4.1666666667%;
}
@media screen and (max-width: 1000px) {
.home-additional-row .grid-row .container {
width: 50%;
}
}
@media screen and (max-width: 850px) {
.home-additional-row .grid-row {
display: block;
}
.home-additional-row .grid-row .container {
width: 100%;
padding: 0 !important;
}
.home-additional-row .grid-row .container.right {
margin-top: calc(100vw / 12);
}
}
@media screen and (max-width: 700px) {
.home-additional-row .grid-row {
width: 100%;
padding: 0 40px;
}
}
.pressrelease {
padding: 80px 0;
position: relative;
z-index: 3;
}
.pressrelease .background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: white;
}
.pressrelease .button {
background-color: transparent;
transition: background-color 0.3s;
}
.pressrelease .button:hover {
color: white;
}
.pressrelease img {
max-width: 100%;
}
.pressrelease__content {
position: relative;
z-index: 2;
}
@media screen and (min-width: 1001px) {
.pressrelease__content {
display: flex;
}
}
@media screen and (max-width: 1000px) {
.pressrelease__left {
margin-bottom: 40px;
}
}
@media screen and (min-width: 1001px) {
.pressrelease__left {
width: 50%;
}
}
@media screen and (min-width: 1001px) {
.pressrelease__right {
width: 50%;
padding-top: 160px;
padding-left: 80px;
}
.pressrelease__right.no-margin-top {
padding-top: 0;
}
}
.home-video-row {
position: relative;
z-index: 4;
}
@media screen and (max-width: 944px) {
.home-video-row .grid-row {
display: flex;
flex-direction: column;
}
.home-video-row .grid-row .home-video-row__left {
width: 100%;
}
.home-video-row .grid-row .home-video-row__right {
width: 100%;
}
.home-video-row .grid-row .home-video-row__right img {
margin-left: auto;
margin-right: auto;
margin-bottom: 60px;
}
}
.home-video-row__background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.home-video-row__background .dots {
color: #EDEDF1;
position: absolute;
bottom: -55px;
right: 0px;
width: 63px;
}
.anvil .home-video-row__background {
background-color: #0A5BF5;
}
.rols-machineonderdelen .home-video-row__background {
background-color: #FFD333;
}
.job-precision .home-video-row__background {
background-color: #339AFF;
}
.jansen-machining-technology .home-video-row__background {
background-color: #367FE0;
}
.machinefabriek-de-valk .home-video-row__background {
background-color: #7AD8F9;
}
.home-video-row__background-fill-out {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 39.2857142857%;
}
@media screen and (min-width: 1681px) {
.home-video-row__background-fill-out {
width: calc( (1440px / 12 * 4.5) + ((100% - 1440px) / 2 ));
}
}
@media screen and (max-width: 944px) {
.home-video-row__background-fill-out {
display: none;
}
}
.home-video-row__background-fill-out:before {
content: "";
position: absolute;
opacity: 0.08;
left: 0;
top: 0;
width: 50px;
height: 100%;
background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0) 100%);
}
.anvil .home-video-row__background-fill-out {
background-color: #0052ED;
}
.rols-machineonderdelen .home-video-row__background-fill-out {
background-color: #FFC800;
}
.job-precision .home-video-row__background-fill-out {
background-color: #339AFF;
}
.jansen-machining-technology .home-video-row__background-fill-out {
background-color: #2C77DB;
}
.machinefabriek-de-valk .home-video-row__background-fill-out {
background-color: #28B4E4;
}
.home-video-row__video {
transform: translateY(-120px);
}
@media screen and (max-width: 1200px) {
.home-video-row__video {
transform: translateY(0);
}
}
.home-video-row__overlay {
position: absolute;
top: 0;
height: 100%;
z-index: 2;
cursor: pointer !important;
}
.home-video-row__overlay svg {
color: #EDEDF1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(1, 1);
transition: 0.4s;
}
.home-video-row__overlay:hover svg {
transform: translate(-50%, -50%) scale(1.3, 1.3);
}
.home-video-row__overlay.hidden {
display: none;
}
.home-video-row__left {
display: inline-block;
width: 62.5%;
}
.home-video-row__right {
margin-top: 120px;
vertical-align: top;
display: inline-block;
position: relative;
width: 37.5%;
}
.home-video-row__right img {
margin-left: 60px;
}
@media screen and (max-width: 1200px) {
.home-video-row__right {
margin-top: 60px;
}
}
.form-contact-info-row {
position: relative;
z-index: 2;
}
.anvil .form-contact-info-row {
background-color: #1E1941;
}
.rols-machineonderdelen .form-contact-info-row {
background-color: #222229;
}
.job-precision .form-contact-info-row {
background-color: #1E1941;
}
.jansen-machining-technology .form-contact-info-row {
background-color: #052856;
}
.machinefabriek-de-valk .form-contact-info-row {
background-color: #061C24;
}
.form-contact-info-row .background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.form-contact-info-row .background .fill-out {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 50%;
}
.anvil .form-contact-info-row .background .fill-out {
background-color: #0052ED;
}
.rols-machineonderdelen .form-contact-info-row .background .fill-out {
background-color: #FFD333;
}
.job-precision .form-contact-info-row .background .fill-out {
background-color: #339AFF;
}
.jansen-machining-technology .form-contact-info-row .background .fill-out {
background-color: #2C77DB;
}
.machinefabriek-de-valk .form-contact-info-row .background .fill-out {
background-color: #28B4E4;
}
@media screen and (min-width: 1681px) {
.form-contact-info-row .background .fill-out {
width: 50%;
}
}
.form-contact-info-row .background .fill-out:before {
content: "";
position: absolute;
opacity: 0.08;
left: 0;
top: 0;
width: 50px;
height: 100%;
background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0) 100%);
}
.form-contact-info-row .grid-row {
position: relative;
}
.form-contact-info-row .grid-row .form-placeholder, .form-contact-info-row .grid-row .contact-information, .form-contact-info-row .grid-row .offer-cta {
display: inline-block;
vertical-align: top;
}
.form-contact-info-row .grid-row .form-placeholder {
width: 50%;
padding: calc(100vw / 12) 8.3333333333% calc(100vw / 12) 0;
}
@media screen and (min-width: 1441px) {
.form-contact-info-row .grid-row .form-placeholder {
padding: 120px 8.3333333333% 120px 0;
}
}
@media screen and (max-width: 1350px) {
.form-contact-info-row .grid-row .form-placeholder {
padding-bottom: calc(100vw / 12 * 3);
}
}
.form-contact-info-row .grid-row .form-placeholder .kms-content {
max-width: 455px;
}
.form-contact-info-row .grid-row .form-placeholder .kms-content h1, .form-contact-info-row .grid-row .form-placeholder .kms-content h2, .form-contact-info-row .grid-row .form-placeholder .kms-content h3, .form-contact-info-row .grid-row .form-placeholder .kms-content h4, .form-contact-info-row .grid-row .form-placeholder .kms-content h5 {
color: white;
}
.form-contact-info-row .grid-row .contact-information {
width: 50%;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 2.5) 8.3333333333%;
}
@media screen and (min-width: 1441px) {
.form-contact-info-row .grid-row .contact-information {
padding: 120px 0 360px 8.3333333333%;
}
}
.form-contact-info-row .grid-row .contact-information p {
font-size: 1rem;
line-height: 1.4;
}
.form-contact-info-row .grid-row .contact-information p a {
text-decoration: none;
transition: color 0.2s;
}
.form-contact-info-row .grid-row .contact-information p a:hover {
color: white;
}
.form-contact-info-row .grid-row .contact-information > p {
margin: 55px 0 0;
font-weight: 700;
color: white;
}
.form-contact-info-row .grid-row .contact-information .wrapper {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: flex-start;
align-items: flex-start;
}
.form-contact-info-row .grid-row .contact-information .wrapper > * {
width: 50%;
}
.form-contact-info-row .grid-row .contact-information .wrapper p:first-child {
margin-top: 0;
}
@media screen and (max-width: 550px) {
.form-contact-info-row .grid-row .contact-information .wrapper {
display: block;
}
.form-contact-info-row .grid-row .contact-information .wrapper > * {
width: 100%;
}
}
@media screen and (max-width: 1000px) {
.form-contact-info-row .background {
display: none;
}
.form-contact-info-row .grid-row {
width: 100%;
padding-bottom: calc(100vw / 12);
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
}
.form-contact-info-row .grid-row .form-placeholder, .form-contact-info-row .grid-row .contact-information {
width: 100%;
margin: 0;
padding: calc(100vw / 12 * 1) 7.1428571429%;
}
.form-contact-info-row .grid-row .form-placeholder {
-ms-order: 2;
order: 2;
}
.form-contact-info-row .grid-row .contact-information {
-ms-order: 1;
order: 1;
}
.rols-machineonderdelen .form-contact-info-row .grid-row .contact-information {
color: #EDEDF1 !important;
}
.form-contact-info-row .grid-row .contact-information > p {
display: block;
margin-top: 50px !important;
}
.form-contact-info-row .grid-row .contact-information > * {
max-width: 83.3333333333%;
margin: auto !important;
}
.form-contact-info-row #work-at-block {
position: relative;
width: 85.7142857143%;
max-width: 700px;
/*height: 200px */
margin-left: auto;
margin-right: auto;
-ms-order: 3;
order: 3;
}
.form-contact-info-row #work-at-block .content {
width: calc(100% - 200px);
}
.form-contact-info-row #work-at-block .icon {
width: 200px;
height: 200px;
}
}
@media screen and (max-width: 700px) {
.form-contact-info-row .grid-row {
padding-bottom: 0;
}
.form-contact-info-row .grid-row .form-placeholder, .form-contact-info-row .grid-row .contact-information {
padding-left: 20px;
padding-right: 20px;
}
.form-contact-info-row .right, .form-contact-info-row .left {
padding-left: 20px;
padding-right: 20px;
}
.form-contact-info-row #work-at-block {
display: block;
height: auto;
width: 100%;
padding: 30px 20px;
}
.form-contact-info-row #work-at-block .content {
width: 100%;
padding: 0;
}
.form-contact-info-row #work-at-block .icon {
display: none;
}
.form-contact-info-row #work-at-block .button {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
margin-top: 30px;
position: relative;
bottom: 0;
left: 0;
}
}
@media screen and (max-width: 550px) {
.form-contact-info-row .grid-row .contact-information > * {
max-width: none;
}
}
.home-main-content.group-content {
z-index: 2;
}
.home-main-content.group-content .left {
width: 58.3333333333%;
}
.home-main-content.group-content .left .kms-content {
max-width: 57.1428571429%;
}
@media screen and (max-width: 1450px) {
.home-main-content.group-content .left .kms-content {
max-width: 71.4285714286%;
}
}
@media screen and (max-width: 1250px) {
.home-main-content.group-content .left {
padding-bottom: calc(100vw / 12 * 3);
}
.home-main-content.group-content .left .kms-content {
max-width: none;
}
}
.home-main-content.group-content .right {
width: 25%;
}
.home-main-content.group-content .right .work-at {
margin-top: 30px;
max-width: 220px;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
}
.home-main-content.group-content .right .work-at .counter {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 24px;
height: 24px;
text-align: center;
color: white;
font-size: 15px;
line-height: 1;
font-weight: 700;
border-radius: 100%;
}
.home-main-content.group-content .right .work-at .counter:before {
position: relative;
top: -1px;
content: attr(data-counter);
}
.home-main-content.group-content .background .fill-out {
width: 28.5714285714%;
}
@media screen and (min-width: 1681px) {
.home-main-content.group-content .background .fill-out {
width: calc( (1440px / 12 * 3) + ((100% - 1440px) / 2 ));
}
}
@media screen and (max-width: 1200px) {
.home-main-content.group-content .left {
width: 50%;
}
.home-main-content.group-content .right {
width: 33.3333333333%;
}
.home-main-content.group-content .background .fill-out {
width: 35.7142857143%;
}
}
@media screen and (max-width: 1000px) {
.home-main-content.group-content .left, .home-main-content.group-content .right {
width: 100%;
padding-left: 14.2857142857%;
padding-right: 14.2857142857%;
}
.home-main-content.group-content .left {
padding-bottom: calc(100vw / 12);
}
}
@media screen and (max-width: 700px) {
.home-main-content.group-content .left, .home-main-content.group-content .right {
padding-left: 20px;
padding-right: 20px;
}
}
.companies-overview-why-anvil {
position: relative;
z-index: 3;
background-color: white;
overflow: hidden;
}
.companies-overview-why-anvil:after {
content: "";
position: absolute;
top: 0;
right: 0;
display: block;
background-color: fuchsia;
width: 50%;
height: calc(100% - (100vw / 12 * 2));
}
@media screen and (min-width: 1441px) {
.companies-overview-why-anvil:after {
height: calc(100% - 240px);
}
}
.anvil .companies-overview-why-anvil:after {
background-color: #588EF5;
}
.rols-machineonderdelen .companies-overview-why-anvil:after {
background-color: #222229;
}
.job-precision .companies-overview-why-anvil:after {
background-color: #1E1941;
}
.jansen-machining-technology .companies-overview-why-anvil:after {
background-color: #052856;
}
.machinefabriek-de-valk .companies-overview-why-anvil:after {
background-color: #061C24;
}
.companies-overview-why-anvil .grid-row {
position: relative;
z-index: 2;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
}
.companies-overview-why-anvil .why-anvil, .companies-overview-why-anvil .companies-overview {
width: 50%;
}
.companies-overview-why-anvil .why-anvil {
-ms-order: 2;
order: 2;
padding: calc(100vw / 12) 0;
}
@media screen and (min-width: 1441px) {
.companies-overview-why-anvil .why-anvil {
padding: 120px 0;
}
}
.companies-overview-why-anvil .why-anvil .kms-content {
padding: 0 16.6666666667%;
}
@media screen and (max-width: 1000px) {
.rols-machineonderdelen .companies-overview-why-anvil .why-anvil .kms-content {
background-color: #28282E;
}
}
.companies-overview-why-anvil .why-anvil .kms-content h1, .companies-overview-why-anvil .why-anvil .kms-content h2, .companies-overview-why-anvil .why-anvil .kms-content h3, .companies-overview-why-anvil .why-anvil .kms-content h4, .companies-overview-why-anvil .why-anvil .kms-content h5 {
font-weight: 500;
}
.companies-overview-why-anvil .why-anvil .kms-content h1:first-child, .companies-overview-why-anvil .why-anvil .kms-content h2:first-child, .companies-overview-why-anvil .why-anvil .kms-content h3:first-child, .companies-overview-why-anvil .why-anvil .kms-content h4:first-child, .companies-overview-why-anvil .why-anvil .kms-content h5:first-child {
margin: 0;
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
height: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
.companies-overview-why-anvil .why-anvil .kms-content h1:first-child, .companies-overview-why-anvil .why-anvil .kms-content h2:first-child, .companies-overview-why-anvil .why-anvil .kms-content h3:first-child, .companies-overview-why-anvil .why-anvil .kms-content h4:first-child, .companies-overview-why-anvil .why-anvil .kms-content h5:first-child {
height: 120px;
}
}
@media screen and (max-width: 1000px) {
.companies-overview-why-anvil .why-anvil .kms-content h1:first-child, .companies-overview-why-anvil .why-anvil .kms-content h2:first-child, .companies-overview-why-anvil .why-anvil .kms-content h3:first-child, .companies-overview-why-anvil .why-anvil .kms-content h4:first-child, .companies-overview-why-anvil .why-anvil .kms-content h5:first-child {
height: auto;
margin-bottom: 20px;
}
}
.companies-overview-why-anvil .why-anvil .kms-content h1, .companies-overview-why-anvil .why-anvil .kms-content h2, .companies-overview-why-anvil .why-anvil .kms-content h3, .companies-overview-why-anvil .why-anvil .kms-content h4, .companies-overview-why-anvil .why-anvil .kms-content h5, .companies-overview-why-anvil .why-anvil .kms-content p, .companies-overview-why-anvil .why-anvil .kms-content a, .companies-overview-why-anvil .why-anvil .kms-content li {
color: white;
}
.companies-overview-why-anvil .why-anvil .kms-content p:first-of-type {
margin-top: 0;
}
.companies-overview-why-anvil .why-anvil .kms-content .button {
margin-top: 30px;
border-color: white;
}
@media screen and (max-width: 1400px) {
.companies-overview-why-anvil .why-anvil .kms-content {
padding-right: 0;
}
}
.companies-overview-why-anvil .why-anvil figure {
width: 100%;
position: relative;
top: calc(100vw / 12);
margin-top: calc(100vw / 12 * -0.5);
}
@media screen and (min-width: 1441px) {
.companies-overview-why-anvil .why-anvil figure {
top: 120px;
margin-top: -60px;
}
}
.companies-overview-why-anvil .why-anvil figure img {
width: 100%;
}
.companies-overview-why-anvil .why-anvil figure img.small {
display: none;
}
@media screen and (max-width: 425px) {
.companies-overview-why-anvil .why-anvil figure img.medium {
display: none;
}
.companies-overview-why-anvil .why-anvil figure img.small {
display: block;
}
}
.companies-overview-why-anvil .companies-overview {
-ms-order: 1;
order: 1;
padding-top: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
.companies-overview-why-anvil .companies-overview {
padding-top: 120px;
}
}
.companies-overview-why-anvil .companies-overview h2 {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
height: calc(100vw / 12);
margin: 0;
font-size: 1.5rem;
line-height: 1.4;
font-weight: 500;
}
@media screen and (min-width: 1441px) {
.companies-overview-why-anvil .companies-overview h2 {
height: 120px;
}
}
@media screen and (max-width: 1000px) {
.companies-overview-why-anvil .companies-overview h2 {
height: auto;
margin-bottom: 20px;
}
}
.anvil .companies-overview-why-anvil .companies-overview h2 {
color: #1E1941;
}
.rols-machineonderdelen .companies-overview-why-anvil .companies-overview h2 {
color: #222229;
}
.job-precision .companies-overview-why-anvil .companies-overview h2 {
color: #1E1941;
}
.jansen-machining-technology .companies-overview-why-anvil .companies-overview h2 {
color: #052856;
}
.machinefabriek-de-valk .companies-overview-why-anvil .companies-overview h2 {
color: #061C24;
}
@media screen and (max-width: 1000px) {
.companies-overview-why-anvil:after {
display: none;
}
.companies-overview-why-anvil .grid-row {
display: block;
width: 100%;
}
.companies-overview-why-anvil .why-anvil, .companies-overview-why-anvil .companies-overview {
width: 100%;
}
.companies-overview-why-anvil .anvil .why-anvil {
padding: 0;
background-color: #588EF5;
}
.companies-overview-why-anvil .why-anvil {
padding: 0;
}
.companies-overview-why-anvil .why-anvil .kms-content {
padding: 80px 14.2857142857%;
}
.companies-overview-why-anvil .why-anvil figure {
top: 0;
margin-top: 0;
}
.companies-overview-why-anvil .companies-overview {
/*ul */
/* li */
/* border-bottom: 1px solid rgba($lightBrown, 0.2) */
/* */
/* &:before */
/* display: none */
}
.companies-overview-why-anvil .companies-overview h2, .companies-overview-why-anvil .companies-overview .companies-list li {
padding: 0 14.2857142857%;
}
}
@media screen and (max-width: 700px) {
.companies-overview-why-anvil .why-anvil .kms-content {
padding: 40px 20px;
}
.companies-overview-why-anvil .companies-overview h2 {
padding: 0 20px;
}
.companies-overview-why-anvil .companies-overview .companies-list li {
padding: 0 40px 0 20px;
}
.companies-overview-why-anvil .companies-overview .companies-list li a {
padding-right: 0;
}
.companies-overview-why-anvil .companies-overview .companies-list li a .company-wrapper {
width: calc(100% - 25px);
}
}
.companies-list {
padding: 0;
margin: 0;
list-style: none;
}
.companies-list__detail .companies-list__detail-item:before {
content: "";
position: absolute;
right: 0;
top: 0;
display: block;
width: 100vw;
height: 1px;
background: none;
}
.companies-list__detail .companies-list__detail-item:last-child:after {
content: "";
position: absolute;
right: 0;
bottom: 0;
display: block;
width: 100vw;
height: 1px;
background: none;
}
.companies-list__detail .icon-placeholder {
display: flex;
justify-content: flex-start;
align-items: center;
width: 100px;
height: 50px;
}
.companies-list .company-short__description {
display: block;
padding: 0 60px 0 0;
font-size: 15px;
width: 100%;
max-width: 600px;
color: black;
}
.companies-list li {
position: relative;
font-size: 1.1rem;
line-height: 1.2;
}
.companies-list li a {
position: relative;
z-index: 2;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
row-gap: 16px;
text-decoration: none;
padding: 45px 60px 45px 0;
}
.companies-list li a .company-wrapper {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
}
.companies-list li a .company-wrapper .icon-placeholder {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
width: 100px;
height: 50px;
}
.companies-list li a .company-wrapper .icon-placeholder .icon {
position: relative;
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
}
.companies-list li a .company-wrapper .icon-placeholder .icon:before, .companies-list li a .company-wrapper .icon-placeholder .icon:after {
content: "";
position: relative;
z-index: 2;
display: inline-block;
opacity: 1;
}
.companies-list li a .company-wrapper .icon-placeholder .icon:before {
position: absolute;
left: 0;
top: 0;
opacity: 0;
}
.companies-list li a .company-wrapper .name {
font-weight: 500;
color: #626266;
transition: color 0.3s;
}
@media screen and (max-width: 400px) {
.companies-list li a .company-wrapper .name {
max-width: 160px;
}
}
.companies-list li a .arrow {
position: relative;
top: 3px;
display: inline-block;
background: url("/img/anvil-sprite.svg") -338px -125px no-repeat;
background-size: 700px 370px;
width: 12px;
height: 21px;
transform: translate3d(0, 0, 0);
transition: transform 0.4s;
}
.companies-list li a:hover .company-wrapper .icon:after {
opacity: 0;
}
.companies-list li a:hover .company-wrapper .icon:before {
opacity: 1;
}
.companies-list li a:hover .arrow {
transform: translate3d(10px, 0, 0);
}
.companies-list li:before {
content: "";
position: absolute;
right: 0;
top: 0;
display: block;
width: 100vw;
height: 1px;
background-color: #EDEDF1;
}
.companies-list li:last-child:after {
content: "";
position: absolute;
right: 0;
bottom: 0;
display: block;
width: 100vw;
height: 1px;
background-color: #EDEDF1;
}
.companies-list li.anvil a:hover .company-wrapper .name {
color: #0052ED;
}
.companies-list li.anvil a .company-wrapper .icon:after, .companies-list li.anvil a .company-wrapper .icon:before {
width: 38px;
height: 38px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.companies-list li.anvil a .company-wrapper .icon:before {
background-image: url("/img/logos/anvil-small.svg");
}
.companies-list li.anvil a .company-wrapper .icon:after {
background-image: url("/img/logos/anvil-small.svg");
}
.companies-list li.jansen-machining-technology a:hover .company-wrapper .name {
color: #2C77DB;
}
.companies-list li.jansen-machining-technology a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") 0px -280px no-repeat;
background-size: 700px 370px;
width: 45px;
height: 45px;
}
.companies-list li.jansen-machining-technology a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") 0px -280px no-repeat;
background-size: 700px 370px;
width: 45px;
height: 45px;
}
.companies-list li.machinefabriek-de-valk a:hover .company-wrapper .name {
color: #28B4E4;
}
.companies-list li.machinefabriek-de-valk a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -590px -50px no-repeat;
background-size: 700px 370px;
width: 45px;
height: 45px;
}
.companies-list li.machinefabriek-de-valk a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -639px -50px no-repeat;
background-size: 700px 370px;
width: 45px;
height: 45px;
}
.companies-list li.job-precision a:hover .company-wrapper .name {
color: #339AFF;
}
.companies-list li.job-precision a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -590px -50px no-repeat;
background-size: 700px 370px;
width: 41px;
height: 50px;
}
.companies-list li.job-precision a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -639px -50px no-repeat;
background-size: 700px 370px;
width: 41px;
height: 50px;
}
.companies-list li.lacom-machinefabriek a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -590px -225px no-repeat;
background-size: 700px 370px;
width: 43px;
height: 31px;
}
.companies-list li.lacom-machinefabriek a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -640px -225px no-repeat;
background-size: 700px 370px;
width: 43px;
height: 31px;
}
.companies-list li.lc-hydraulics a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -590px -110px no-repeat;
background-size: 700px 370px;
width: 40px;
height: 24px;
}
.companies-list li.lc-hydraulics a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -640px -110px no-repeat;
background-size: 700px 370px;
width: 40px;
height: 24px;
}
.companies-list li.rols-machineonderdelen a:hover .company-wrapper .name {
color: #FFC800;
}
.companies-list li.rols-machineonderdelen a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -640px -140px no-repeat;
background-size: 700px 370px;
width: 35px;
height: 35px;
}
.companies-list li.rols-machineonderdelen a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -640px -140px no-repeat;
background-size: 700px 370px;
width: 35px;
height: 35px;
}
.companies-list li.vdb-machinefabriek a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -590px -180px no-repeat;
background-size: 700px 370px;
width: 36px;
height: 36px;
}
.companies-list li.vdb-machinefabriek a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -640px -180px no-repeat;
background-size: 700px 370px;
width: 36px;
height: 36px;
}
.companies-list li.bkl-engineering a .company-wrapper .icon:after {
background: url("/img/anvil-sprite.svg") -586px -262px no-repeat;
background-size: 700px 370px;
width: 40px;
height: 40px;
}
.companies-list li.bkl-engineering a .company-wrapper .icon:before {
background: url("/img/anvil-sprite.svg") -636px -262px no-repeat;
background-size: 700px 370px;
width: 40px;
height: 40px;
}
.companies-list li.machinefabriek-de-valkmachinefabriek-de-valk a .company-wrapper .icon {
background: url("/img/logos/logo-machinefabriekdevalk.png");
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-size: contain;
}
.companies-list li.contourcoveringtechnology a:hover .company-wrapper .name, .companies-list li.contouradvancedsystems a:hover .company-wrapper .name {
color: #ee7203;
}
.companies-list li.contourcoveringtechnology a .company-wrapper .icon:after, .companies-list li.contourcoveringtechnology a .company-wrapper .icon:before, .companies-list li.contouradvancedsystems a .company-wrapper .icon:after, .companies-list li.contouradvancedsystems a .company-wrapper .icon:before {
width: 38px;
height: 38px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.companies-list li.contourcoveringtechnology a .company-wrapper .icon:before {
background-image: url("/img/icon-contour-covering.svg");
}
.companies-list li.contourcoveringtechnology a .company-wrapper .icon:after {
background-image: url("/img/icon-contour-covering.svg");
}
.companies-list li.contouradvancedsystems a .company-wrapper .icon:before {
background-image: url("/img/icon-contour-advanced.svg");
}
.companies-list li.contouradvancedsystems a .company-wrapper .icon:after {
background-image: url("/img/icon-contour-advanced.svg");
}
.companies-list li.innclose a:hover .company-wrapper .name {
color: #F0762A;
}
.companies-list li.innclose a .company-wrapper .icon:after, .companies-list li.innclose a .company-wrapper .icon:before {
width: 38px;
height: 38px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.companies-list li.innclose a .company-wrapper .icon:before {
background-image: url("/img/icon-innclose.svg");
}
.companies-list li.innclose a .company-wrapper .icon:after {
background-image: url("/img/icon-innclose.svg");
}
.companies-list li.machinefabriek-de-valk a .company-wrapper .icon:after, .companies-list li.machinefabriek-de-valk a .company-wrapper .icon:before {
width: 38px;
height: 38px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.companies-list li.machinefabriek-de-valk a .company-wrapper .icon:before {
background-image: url("/img/logo-de-valk-small.svg");
}
.companies-list li.machinefabriek-de-valk a .company-wrapper .icon:after {
background-image: url("/img/logo-de-valk-small.svg");
}
.companies-list li.slagman a:hover .company-wrapper .name {
color: #28B4E4;
}
.companies-list li.slagman a .company-wrapper .icon:after, .companies-list li.slagman a .company-wrapper .icon:before {
width: 38px;
height: 38px;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.companies-list li.slagman a .company-wrapper .icon:before {
background-image: url("/img/icon-slagman.png");
}
.companies-list li.slagman a .company-wrapper .icon:after {
background-image: url("/img/icon-slagman.png");
}
@media screen and (max-width: 1200px) {
.companies-list li {
font-size: 1rem;
}
.companies-list li a {
padding-right: 45px;
}
.companies-list li a .company-wrapper .icon-placeholder {
width: 80px;
}
}
@media screen and (max-width: 500px) {
.companies-list li {
font-size: 0.9rem;
}
.companies-list li a .company-wrapper .icon-placeholder {
width: 60px;
}
.companies-list li a .arrow {
top: 1px;
}
}
.group-text {
padding-block: clamp(32px, 6vw, 80px);
}
.group-text .kms-content {
max-width: 44em;
}
.group-text .kms-content > *:first-child {
margin-top: 0;
}
.reference-company-row {
position: relative;
z-index: 4;
background-color: white;
}
.reference-company-row .grid-row {
position: relative;
}
.reference-company-row .grid-row:before {
content: "";
top: 0;
left: 0;
position: absolute;
display: block;
width: 25%;
height: 100%;
border-right: 1px solid #EDEDF1;
}
@media screen and (max-width: 1450px) {
.reference-company-row .grid-row:before {
width: 16.6666666667%;
}
}
@media screen and (max-width: 1000px) {
.reference-company-row .grid-row:before {
display: none;
}
}
@media screen and (max-width: 700px) {
.reference-company-row .grid-row {
width: 100%;
}
.reference-company-row .grid-row:before {
display: none;
}
}
.reference-company-row .company-info {
position: relative;
display: inline-block;
vertical-align: top;
margin-left: 16.6666666667%;
width: 33.3333333333%;
}
.reference-company-row .company-info:before {
content: "";
position: absolute;
left: -40px;
top: 3px;
display: block;
background: url("/img/anvil-sprite.svg") -467px -129px no-repeat;
background-size: 700px 370px;
width: 23px;
height: 29px;
}
.reference-company-row .company-info p {
font-size: 0.9rem;
line-height: 1.4;
color: #626266;
font-weight: 500;
}
.reference-company-row .company-info p strong {
font-weight: 600;
color: #626266;
}
.reference-company-row .company-info p a {
color: #626266;
text-decoration: none;
transition: color 0.2s;
}
.reference-company-row .company-info p a:hover {
font-weight: bold;
}
.reference-company-row .company-info p:first-child {
margin-top: 0;
}
.reference-company-row .company-info p .button {
margin-top: 60px;
transition: border-color 0.2s;
}
.reference-company-row .company-info p .button:hover {
border-color: #626266;
}
@media screen and (max-width: 1000px) {
.reference-company-row .company-info {
top: 0;
display: block;
margin-left: auto;
width: calc(100% - 180px);
text-align: left;
}
}
@media screen and (max-width: 700px) {
.reference-company-row .company-info {
width: calc(100% - 160px);
}
}
@media screen and (max-width: 500px) {
.reference-company-row .company-info {
width: 100%;
padding: 0 40px;
}
.reference-company-row .company-info:before {
position: relative;
left: 0;
top: 0;
margin-bottom: 20px;
display: inline-block;
vertical-align: top;
}
.reference-company-row .company-info > p {
display: block;
width: 100%;
}
}
.other-companies-row {
position: relative;
z-index: 2;
background-color: white;
overflow: hidden;
padding-bottom: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
.other-companies-row {
padding-bottom: 120px;
}
}
.other-companies-row:before {
content: "";
position: absolute;
left: 50%;
top: 0;
display: block;
height: 100%;
width: 1px;
}
.other-companies-row .companies-list li {
display: inline-block;
vertical-align: middle;
width: 50%;
}
.other-companies-row .companies-list li:before {
width: 200vw;
right: -100vw;
}
.other-companies-row .companies-list li:nth-child(2n+1):before {
display: none;
}
.other-companies-row .companies-list li a {
padding: 45px 60px 45px 16.6666666667%;
}
@media screen and (max-width: 1450px) {
.other-companies-row .companies-list li a {
padding: 45px;
}
}
@media screen and (max-width: 1100px) {
.other-companies-row .companies-list li a .icon-placeholder {
width: 65px;
}
.other-companies-row .companies-list li a .company-wrapper .name {
max-width: 250px;
}
}
@media screen and (max-width: 950px) {
.other-companies-row {
display: none;
}
}
.return-companies-overview {
display: none;
position: relative;
z-index: 3;
padding: 30px 20px;
transition: color 0.3s;
font-size: 0.9rem;
line-height: 1.4;
font-weight: 500;
text-decoration: none;
}
.return-companies-overview .icon {
display: inline-block;
margin-right: 10px;
opacity: 1;
background: url("/img/anvil-sprite.svg") -335px -87px no-repeat;
background-size: 700px 370px;
width: 16px;
height: 16px;
transition: opacity 0.3s;
}
.return-companies-overview:hover .icon {
opacity: 0.5;
}
@media screen and (max-width: 950px) {
.return-companies-overview {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-start;
align-items: center;
}
}
.why-anvil-about-row {
position: relative;
z-index: 3;
}
.anvil .why-anvil-about-row {
background-color: #221D42;
}
.rols-machineonderdelen .why-anvil-about-row {
background-color: #28282E;
}
.job-precision .why-anvil-about-row {
background-color: #221D42;
}
.jansen-machining-technology .why-anvil-about-row {
background-color: #072C5C;
}
.machinefabriek-de-valk .why-anvil-about-row {
background-color: #092833;
}
.why-anvil-about-row .background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.why-anvil-about-row .background .overview-page-background {
position: absolute;
left: 50%;
height: 100%;
width: calc(100vw / 14 * 3);
max-width: 360px;
}
.why-anvil-about-row .background .overview-page-background:after {
content: "";
position: absolute;
opacity: 0.08;
right: -40px;
top: 0;
width: 40px;
height: 100%;
background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 65%, black 100%);
}
.why-anvil-about-row .grid-row {
position: relative;
padding: calc(100vw / 12) 0 0;
}
.why-anvil-about-row .grid-row .reference-block .content {
min-height: 240px;
width: 60%;
padding: 30px 20px 10px 25px;
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: center;
}
@media screen and (min-width: 1441px) {
.why-anvil-about-row .grid-row {
padding: 120px 0 0;
}
}
.why-anvil-about-row .grid-row .content, .why-anvil-about-row .grid-row .anvil-group-companies {
display: inline-block;
vertical-align: top;
}
.why-anvil-about-row .grid-row .content {
width: 75%;
padding: 0 33.3333333333% calc(100vw / 12) 8.3333333333%;
}
@media screen and (min-width: 1441px) {
.why-anvil-about-row .grid-row .content {
padding-bottom: 120px;
}
}
.why-anvil-about-row .grid-row .content .kms-content h2 {
margin-top: 0;
color: #EDEDF1;
}
.why-anvil-about-row .grid-row .content .kms-content h2:before {
content: "";
background: url("/img/anvil-sprite.svg") -411px -28px no-repeat;
background-size: 700px 370px;
width: 27px;
height: 25px;
display: inline-block;
margin-right: 15px;
}
.why-anvil-about-row .grid-row .content .kms-content p {
color: #EDEDF1;
}
.why-anvil-about-row .grid-row .content .button {
color: #EDEDF1;
margin-top: 30px;
}
.why-anvil-about-row .grid-row .anvil-group-companies {
width: 25%;
padding: 0 4.1666666667% calc(100vw / 12 * 3);
}
@media screen and (min-width: 1441px) {
.why-anvil-about-row .grid-row .anvil-group-companies {
padding-bottom: 360px;
}
}
.why-anvil-about-row .grid-row .anvil-group-companies h5 {
color: #EDEDF1;
font-weight: 500;
font-size: 1rem;
line-height: 1.2;
margin: 0 0 50px;
}
.rols-machineonderdelen .why-anvil-about-row .grid-row .anvil-group-companies h5 {
color: #EDEDF1;
}
.why-anvil-about-row .grid-row .anvil-group-companies ul {
list-style: none;
padding: 0;
margin: 0;
}
.why-anvil-about-row .grid-row .anvil-group-companies ul li {
font-size: 0.9rem;
line-height: 1.4;
}
.why-anvil-about-row .grid-row .anvil-group-companies ul li + li {
margin-top: 5px;
}
.why-anvil-about-row .grid-row .anvil-group-companies ul li a {
color: #EDEDF1;
transition: color 0.3s;
text-decoration: none;
}
.why-anvil-about-row .grid-row .anvil-group-companies ul li a:hover {
font-weight: bold;
}
.why-anvil-about-row .grid-row .anvil-group-companies ul li.active a {
color: #EDEDF1;
font-weight: 700;
}
@media screen and (max-width: 1450px) {
.why-anvil-about-row .background .overview-page-background {
width: calc(100vw / 14 * 8.5);
max-width: none;
left: 0;
}
.why-anvil-about-row .grid-row .anvil-group-companies {
width: 33.3333333333%;
}
.why-anvil-about-row .grid-row .content {
width: 66.6666666667%;
padding: 0 8.3333333333% calc(100vw / 12 * 2.5);
}
.why-anvil-about-row .grid-row #reference-block {
max-width: 600px;
}
}
@media screen and (max-width: 1200px) {
.why-anvil-about-row .grid-row .content {
padding: 0 8.3333333333% calc(100vw / 12 * 2.5 + 40px);
}
}
@media screen and (max-width: 1000px) {
.why-anvil-about-row .grid-row {
padding: calc(100vw / 12) 0;
}
.why-anvil-about-row .grid-row .content {
padding: 0 8.3333333333% calc(100vw / 12);
}
.why-anvil-about-row .grid-row #reference-block {
width: 85.7142857143%;
max-width: 700px;
/*height: 200px */
margin-left: auto;
margin-right: auto;
}
}
@media screen and (max-width: 900px) {
.why-anvil-about-row .background .overview-page-background {
display: none;
}
.why-anvil-about-row .grid-row .anvil-group-companies {
display: none;
}
.why-anvil-about-row .grid-row .content {
width: 100%;
}
}
@media screen and (max-width: 700px) {
.why-anvil-about-row .grid-row {
width: 100%;
padding-bottom: 0;
}
.why-anvil-about-row .grid-row .content {
padding: 0 40px calc(100vw / 12);
}
.why-anvil-about-row .grid-row #reference-block {
width: 100%;
margin-left: 0;
}
}
.employees-row-divider {
height: calc(100vw / 12 * 2);
}
@media screen and (min-width: 1441px) {
.employees-row-divider {
height: 240px;
}
}
.employees-row {
position: relative;
z-index: 3;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 1.5);
background-color: white;
}
@media screen and (min-width: 1441px) {
.employees-row {
padding: 120px 0 180px;
}
}
.employees-row .employees-grid {
width: 83.3333333333%;
margin-left: 8.3333333333%;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
flex-direction: row;
flex-flow: row wrap;
}
@media screen and (max-width: 1300px) {
.employees-row .employees-grid {
width: 100%;
margin-left: 0;
}
}
.employees-row .employees-grid .employee {
width: 22.5%;
max-width: 250px;
margin-bottom: 25px;
}
.employees-row .employees-grid .employee figure {
position: relative;
width: 100%;
}
.employees-row .employees-grid .employee figure .image-placeholder {
width: 100%;
height: 0;
padding-bottom: 100%;
}
.employees-row .employees-grid .employee figure .image-placeholder span {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
.employees-row .employees-grid .employee figure .image-placeholder span.small {
display: none;
}
@media screen and (max-width: 700px) {
.employees-row .employees-grid .employee figure .image-placeholder span.medium {
display: none;
}
.employees-row .employees-grid .employee figure .image-placeholder span.small {
display: block;
}
}
.employees-row .employees-grid .employee p {
margin: 15px 0 0;
font-size: 0.8rem;
line-height: 1.2;
font-weight: 600;
}
.employees-row .employees-grid .employee p span {
display: block;
}
@media screen and (max-width: 1000px) {
.employees-row .employees-grid .employee {
width: 30%;
}
}
@media screen and (max-width: 600px) {
.employees-row .employees-grid .employee {
width: calc(50% - 20px);
}
}
@supports (display: flex) {
@media screen and (min-width: 501px) {
.employees-row .employees-grid {
display: -ms-grid;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: calc(100vw / 12 / 3) calc(100vw / 12 / 3 * 2);
-webkit-justify-content: normal;
-moz-justify-content: normal;
-ms-justify-content: normal;
-webkit-align-items: stretch;
-moz-align-items: stretch;
-ms-align-items: stretch;
}
.employees-row .employees-grid .employee {
width: 100% !important;
margin-bottom: 0;
}
}
@media screen and (min-width: 501px) and (min-width: 1441px) {
.employees-row .employees-grid {
grid-gap: 40px 80px;
}
}
@media screen and (min-width: 501px) and (max-width: 1000px) {
.employees-row .employees-grid {
grid-template-columns: 1fr 1fr 1fr;
grid-gap: calc(100vw / 12 / 2) calc(100vw / 12 / 3 * 2);
}
}
@media screen and (min-width: 501px) and (max-width: 600px) {
.employees-row .employees-grid {
grid-template-columns: 1fr 1fr;
grid-gap: calc(100vw / 12 / 3 * 2) calc(100vw / 12 / 3 * 2);
}
}
}
@media screen and (max-width: 700px) {
.employees-row {
padding: 80px 0 120px;
}
.employees-row .grid-row {
width: 100%;
}
.employees-row .grid-row .employees-grid {
width: calc(100% - 80px);
margin-left: 40px;
}
}
@media screen and (max-width: 500px) {
.employees-row .grid-row .employees-grid {
display: block;
}
.employees-row .grid-row .employees-grid .employee {
width: 100%;
max-width: 240px;
margin-left: auto;
margin-right: auto;
}
}
.content-menu-row.machine-park-content-menu-row .background .overview-page-background {
max-width: 720px;
width: calc(100vw / 14 * 6);
background-color: transparent;
}
.content-menu-row.machine-park-content-menu-row .background .overview-page-background:after {
right: -40px;
background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 65%, black 100%);
}
.content-menu-row.machine-park-content-menu-row .grid-row .other-models {
width: 100%;
color: white;
padding: 0 60px;
}
.content-menu-row.machine-park-content-menu-row .grid-row .other-models > p {
margin: 0 0 5px;
font-size: 1rem;
line-height: 1.5;
color: white;
font-weight: 600;
}
.content-menu-row.machine-park-content-menu-row .grid-row .other-models ul li a {
color: white;
}
.content-menu-row.machine-park-content-menu-row .grid-row .other-models ul li a:hover {
font-weight: bold;
}
@media screen and (max-width: 1200px) {
.content-menu-row.machine-park-content-menu-row .grid-row .other-models {
padding: calc(100vw / 12) 14.2857142857%;
}
}
@media screen and (max-width: 700px) {
.content-menu-row.machine-park-content-menu-row .grid-row .other-models {
padding: 40px 20px;
}
}
.anvil .content-menu-row.machine-park-content-menu-row .grid-row .menu-wrapper {
background-color: transparent;
}
.machine-park-tables {
position: relative;
z-index: 4;
padding: calc(100vw / 12) 0;
background-color: white;
}
@media screen and (min-width: 1441px) {
.machine-park-tables {
padding: 100px 0;
}
}
.machine-park-tables .grid-row .company-machines-wrapper {
padding-bottom: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
.machine-park-tables .grid-row .company-machines-wrapper {
padding-bottom: 100px;
}
}
.machine-park-tables .grid-row .company-machines-wrapper:last-child {
padding-bottom: 0;
}
.machine-park-tables .grid-row .company-machines-wrapper + .company-machines-wrapper {
padding-top: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
.machine-park-tables .grid-row .company-machines-wrapper + .company-machines-wrapper {
padding-top: 100px;
}
}
.machine-park-tables .grid-row .company-machines-wrapper .company-logo {
display: block;
margin: 0 0 50px 8.3333333333%;
}
@media screen and (max-width: 1500px) {
.machine-park-tables .grid-row .company-machines-wrapper .company-logo {
margin-left: 0;
}
}
.machine-park-tables .grid-row .company-machines-wrapper#rols-machineonderdelen .company-logo {
background: url("/img/anvil-sprite.svg") -1px -110px no-repeat;
background-size: 700px 370px;
width: 141px;
height: 54px;
}
.machine-park-tables .grid-row .company-machines-wrapper#vdb-machinefabriek .company-logo {
background: url("/img/anvil-sprite.svg") -1px -55px no-repeat;
background-size: 700px 370px;
width: 131px;
height: 50px;
}
.machine-park-tables .grid-row .company-machines-wrapper#jansen-machining-technology .company-logo {
width: 250px;
height: 53px;
background-image: url("/img/logos/logo-jansen.svg");
background-repeat: no-repeat;
}
.machine-park-tables .grid-row .company-machines-wrapper#job-precision .company-logo {
height: 53px;
background-image: url("/img/logos/logo-job-precision.svg");
background-repeat: no-repeat;
}
.machine-park-tables .grid-row .company-machines-wrapper#machinefabriek-de-valk .company-logo {
height: 53px;
background-image: url("/img/logos/logo-de-valk-on-light.svg");
background-repeat: no-repeat;
}
.machine-park-tables .grid-row .article {
padding: 0 8.3333333333%;
}
.machine-park-tables .grid-row .article + .article {
margin-top: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
.machine-park-tables .grid-row .article + .article {
margin-top: 120px;
}
}
.machine-park-tables .grid-row .article h2 {
margin: 0 0 30px;
font-size: 1.6rem;
line-height: 1.4;
}
.machine-park-tables .grid-row .article table {
width: 100%;
}
.machine-park-tables .grid-row .article table td, .machine-park-tables .grid-row .article table th {
font-size: 0.9rem;
line-height: 1.1;
text-align: left;
}
.machine-park-tables .grid-row .article table *[data-column=max-bar-capacity] {
width: 100px;
}
.machine-park-tables .grid-row .article table *[data-column=units] {
width: 70px;
}
.machine-park-tables .grid-row .article table thead th {
padding: 0 5px 20px;
vertical-align: bottom;
}
.machine-park-tables .grid-row .article table thead th:first-child {
padding-left: 0;
}
.machine-park-tables .grid-row .article table thead th:last-child {
padding-right: 0;
}
.machine-park-tables .grid-row .article table tbody td {
padding: 18px 5px;
vertical-align: top;
}
.machine-park-tables .grid-row .article table tbody td .type-label {
display: none;
}
.machine-park-tables .grid-row .article table tbody td:first-child {
padding-left: 0;
}
.machine-park-tables .grid-row .article table tbody td:last-child {
padding-right: 0;
}
@media screen and (max-width: 1500px) {
.machine-park-tables .grid-row .article {
padding: 0;
}
}
@media screen and (max-width: 700px) {
.machine-park-tables {
padding: 80px 0;
}
.machine-park-tables .grid-row {
width: calc(100% - 40px);
}
.machine-park-tables .grid-row .company-machines-wrapper {
padding-bottom: 80px;
}
.machine-park-tables .grid-row .company-machines-wrapper:last-child {
padding-bottom: 0;
}
.machine-park-tables .grid-row .company-machines-wrapper + .company-machines-wrapper {
padding-top: 80px;
}
.machine-park-tables .grid-row .company-machines-wrapper .company-logo {
margin-bottom: 40px;
}
.machine-park-tables .grid-row article + article {
margin-top: 50px;
}
.machine-park-tables .grid-row article h2 {
font-size: 1.4rem;
margin-bottom: 5px;
}
.machine-park-tables .grid-row article table {
display: block;
}
.machine-park-tables .grid-row article table thead {
display: none;
}
.machine-park-tables .grid-row article table tbody {
display: block;
}
.machine-park-tables .grid-row article table tbody tr {
display: block;
padding: 15px 0;
}
.machine-park-tables .grid-row article table tbody td {
display: flex;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: flex-start;
align-items: flex-start;
width: 100% !important;
border-top: none;
padding: 0;
}
.machine-park-tables .grid-row article table tbody td + td {
margin-top: 8px;
}
.machine-park-tables .grid-row article table tbody td .type-label {
display: inline-block;
width: 150px;
}
.machine-park-tables .grid-row article table tbody td span {
width: calc(100% - 150px);
}
}
@media screen and (max-width: 700px) and (max-width: 350px) {
.machine-park-tables .grid-row article table tbody td .type-label {
width: 125px;
}
.machine-park-tables .grid-row article table tbody td span {
width: calc(100% - 125px);
}
}
.machine-park-download {
position: relative;
}
@media screen and (max-width: 700px) {
.machine-park-download {
width: calc(100% - 40px);
}
}
.machine-park-download a {
margin: 0;
position: absolute;
left: 0;
top: 2vw;
z-index: 9;
border-color: #626266;
color: #626266;
}
@media screen and (min-width: 1001px) {
.machine-park-download a {
top: 100px;
right: 0;
left: auto;
}
}
@media screen and (min-width: 1441px) {
.machine-park-download a {
top: 100px;
}
}
@media screen and (min-width: 1501px) {
.machine-park-download a {
top: 100px;
margin: 0 8.3333333333%;
}
}
.machine-park-download a:hover {
color: #D2D2DC;
border-color: #D2D2DC;
}
.vacancy-main-content {
position: relative;
}
.vacancy-main-content .dots {
color: #EDEDF1;
position: absolute;
top: -55px;
right: -6px;
}
.vacancy-main-content:after {
content: "";
width: 45.8333333333%;
height: 100%;
position: absolute;
top: 0;
right: 0;
}
.anvil .vacancy-main-content:after {
background-color: #0052ED;
}
.rols-machineonderdelen .vacancy-main-content:after {
background-color: #FFC800;
}
.job-precision .vacancy-main-content:after {
background-color: #1F90FF;
}
.jansen-machining-technology .vacancy-main-content:after {
background-color: #2C77DB;
}
.machinefabriek-de-valk .vacancy-main-content:after {
background-color: #28B4E4;
}
.anvil .vacancy-main-content {
background-color: #0A5BF5;
}
.rols-machineonderdelen .vacancy-main-content {
background-color: #FFD333;
}
.job-precision .vacancy-main-content {
background-color: #339AFF;
}
.jansen-machining-technology .vacancy-main-content {
background-color: #367FE0;
}
.machinefabriek-de-valk .vacancy-main-content {
background-color: #28B4E4;
}
.vacancy-main-content .background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.vacancy-main-content .background .fill-out {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 39.2857142857%;
}
.anvil .vacancy-main-content .background .fill-out {
background-color: #1E1941;
}
.rols-machineonderdelen .vacancy-main-content .background .fill-out {
background-color: #222229;
}
.job-precision .vacancy-main-content .background .fill-out {
background-color: #1E1941;
}
.jansen-machining-technology .vacancy-main-content .background .fill-out {
background-color: #052856;
}
.machinefabriek-de-valk .vacancy-main-content .background .fill-out {
background-color: #061C24;
}
@media screen and (min-width: 1681px) {
.vacancy-main-content .background .fill-out {
width: calc( (1440px / 12 * 4.5) + ((100% - 1440px) / 2 ));
}
}
.vacancy-main-content .background .fill-out:before {
content: "";
position: absolute;
opacity: 0.08;
left: 0;
top: 0;
width: 50px;
height: 100%;
background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0) 100%);
}
.vacancy-main-content .grid-row {
position: relative;
z-index: 2;
}
.vacancy-main-content .kms-content > *:first-child {
margin-top: 0;
}
.vacancy-main-content .kms-content > *:last-child {
margin-bottom: 0;
}
.vacancy-main-content .kms-content h2, .vacancy-main-content .kms-content h3, .vacancy-main-content .kms-content h4, .vacancy-main-content .kms-content h5 {
font-size: 1.6rem;
color: #EDEDF1;
font-weight: 500;
}
.vacancy-main-content .kms-content h4 {
font-size: 1.4rem;
}
.vacancy-main-content .kms-content h5 {
font-size: 1.2rem;
}
.vacancy-main-content .kms-content p, .vacancy-main-content .kms-content li {
color: #fff;
font-size: 1rem;
}
.vacancy-main-content .kms-content a {
color: #EDEDF1;
text-decoration: underline;
}
.vacancy-main-content .left, .vacancy-main-content .right {
display: inline-block;
vertical-align: top;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 3);
}
@media screen and (min-width: 1441px) {
.vacancy-main-content .left, .vacancy-main-content .right {
padding: 120px 0 360px 4.1666666667%;
}
}
.vacancy-main-content .left {
width: 41.6666666667%;
margin-right: 16.6666666667%;
padding: calc(100vw / 12) 0 calc(100vw / 12 * 3);
}
@media screen and (min-width: 1441px) {
.vacancy-main-content .left {
padding: 120px 0 96px;
}
}
.vacancy-main-content .left .button {
margin-top: 40px;
}
.vacancy-main-content .left .kms-content p {
padding-right: 80px;
}
.vacancy-main-content .left .kms-content ul li:before {
content: "";
top: 10px;
color: transparent;
background: url("/img/anvil-sprite.svg") -269px -87px no-repeat;
background-size: 700px 370px;
width: 18px;
height: 13px;
}
.vacancy-main-content .right {
position: relative;
width: 37.5%;
padding-left: 4.1666666667%;
}
.vacancy-main-content .right .kms-content {
position: relative;
z-index: 3;
}
.vacancy-main-content .right .kms-content ul li {
position: relative;
padding-left: 40px;
}
.vacancy-main-content .right .kms-content ul li:before {
position: absolute;
width: 18px;
height: 13px;
left: 0;
top: 8px;
content: "";
background-image: url("data:image/svg+xml,%3Csvg id='check' width='18' height='13' viewBox='0 0 18 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 12.7C6 12.7 5.80002 12.6 5.60002 12.4L0.3 7.1C-0.1 6.7 -0.1 6.09999 0.3 5.69999C0.7 5.29999 1.30002 5.29999 1.70002 5.69999L6.3 10.3L16.3 0.3C16.7 -0.1 17.3 -0.1 17.7 0.3C18.1 0.7 18.1 1.29999 17.7 1.69999L7.00001 12.4C6.80001 12.6 6.6 12.7 6.3 12.7Z' fill='%23588EF5'/%3E%3C/svg%3E");
}
.vacancy-main-content .right .button {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: space-between;
align-items: center;
max-width: 275px;
}
.vacancy-main-content .right .work-at {
margin-top: 20px;
}
.vacancy-main-content .right .work-cta {
background-color: #b0b0b0;
color: #524848;
border-color: #b0b0b0;
}
.vacancy-main-content .right .work-cta .arrow {
margin-left: 15px;
background: url("/img/anvil-sprite.svg") -470px -43px no-repeat;
background-size: 700px 370px;
width: 19px;
height: 13px;
}
.vacancy-main-content .right .mt--2 {
margin-top: 20px;
}
.vacancy-main-content .right .mt--2 .counter {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
width: 24px;
height: 24px;
text-align: center;
color: #EDEDF1;
font-size: 15px;
line-height: 1;
font-weight: 700;
border-radius: 100%;
}
.vacancy-main-content .right .mt--2 .counter:before {
position: relative;
top: -1px;
content: attr(data-counter);
}
.vacancy-main-content .scroll-to-placeholder {
position: absolute;
left: 0;
bottom: 0;
display: flex;
-webkit-justify-content: flex-end;
-moz-justify-content: flex-end;
-ms-justify-content: flex-end;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: flex-end;
align-items: center;
width: 25%;
height: 60px;
}
@media screen and (max-width: 1000px) {
.vacancy-main-content .scroll-to-placeholder {
display: none;
}
}
.vacancy-main-content .scroll-to-placeholder .scroll-to-target {
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
justify-content: center;
align-items: center;
height: 60px;
width: 60px;
}
.vacancy-main-content .scroll-to-placeholder .scroll-to-target .arrow {
display: inline-block;
background: url("/img/anvil-sprite.svg") -470px -1px no-repeat;
background-size: 700px 370px;
width: 19px;
height: 13px;
transform: translate3d(0, 0, 0) rotate(90deg);
transition: transform 0.3s;
}
.vacancy-main-content .scroll-to-placeholder .scroll-to-target:hover .arrow {
transform: translate3d(0, 5px, 0) rotate(90deg);
}
@media screen and (max-width: 1000px) {
.vacancy-main-content .background {
display: none;
}
.vacancy-main-content .grid-row {
width: 100%;
padding-bottom: calc(100vw / 12);
}
.vacancy-main-content .right, .vacancy-main-content .left {
width: 100%;
margin: 0;
padding-left: 8.3333333333%;
padding-right: 8.3333333333%;
padding-bottom: calc(100vw / 12);
}
.vacancy-main-content .right {
padding-top: 0;
}
.vacancy-main-content #work-at-block {
position: relative;
height: 200px;
width: 85.7142857143%;
max-width: 700px;
/*height: 200px */
margin-left: auto;
margin-right: auto;
}
.vacancy-main-content #work-at-block .content {
width: calc(100% - 200px);
}
.vacancy-main-content #work-at-block .icon {
width: 200px;
height: 200px;
}
}
@media screen and (max-width: 700px) {
.vacancy-main-content .grid-row {
padding-bottom: 0;
}
.vacancy-main-content .right, .vacancy-main-content .left {
padding-left: 20px;
padding-right: 20px;
}
.vacancy-main-content #work-at-block {
display: block;
height: auto;
width: 100%;
padding: 30px 20px;
margin-left: auto;
margin-right: auto;
}
.vacancy-main-content #work-at-block .content {
width: 100%;
padding: 0;
}
.vacancy-main-content #work-at-block .icon {
display: none;
}
.vacancy-main-content #work-at-block .button {
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
-webkit-align-items: flex-start;
-moz-align-items: flex-start;
-ms-align-items: flex-start;
justify-content: space-between;
align-items: flex-start;
margin-top: 30px;
position: relative;
bottom: 0;
left: 0;
}
}
.button-container-work .button {
background-color: #fff;
border-color: #D2D2DC;
font-weight: 400;
text-decoration: none !important;
}
.button-container-work .button svg {
margin-left: 16px;
transition: 0.3s;
}
.button-container-work .button .arrow {
width: 19px;
height: 14px;
background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='14' viewBox='0 0 19 14' fill='none'%3E%3Cpath d='M12 1L18 7M18 7L12 13M18 7H0' stroke='%230052ED'/%3E%3C/svg%3E");
}
.button-container-work .button:first-of-type {
margin-right: 19px;
}
.button-container-work .button:hover svg {
transform: translateX(5px);
}
/*==========================================================================
Contact page
@mixin ========================================================================= */
#contact .photo-header .text-wrapper {
padding-bottom: 100px;
}
@media screen and (max-width: 1200px) {
#contact .photo-header .text-wrapper {
padding-bottom: 20px;
}
}
#contact .photo-header .text-wrapper h1 {
margin-bottom: 60px;
}
#contact .photo-header #header-image-slider #map {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
@media screen and (min-width: 1201px) {
#contact .photo-header .grid-row {
position: relative;
}
#contact .photo-header #header-image-slider {
position: absolute;
right: 0;
top: 0;
margin-bottom: 0;
height: calc(100% + (100vw / 12 * 0.5));
}
}
@media screen and (min-width: 1201px) and (min-width: 1441px) {
#contact .photo-header #header-image-slider {
height: calc(100% + 60px);
}
}
@media screen and (min-width: 1201px) {
#contact .photo-header #header-image-slider .placeholder {
position: absolute;
left: 0;
top: 0;
height: 100%;
padding-bottom: 0;
}
}
#offer .photo-header .text-wrapper {
padding-bottom: calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
#offer .photo-header .text-wrapper {
padding-bottom: 120px;
}
}
#offer .form-contact-info-row .offer-cta {
padding: calc(100vw / 12) 0;
width: 41.6666666667%;
}
@media screen and (min-width: 1441px) {
#offer .form-contact-info-row .offer-cta {
padding: 120px 0;
}
}
#offer .form-contact-info-row .offer-cta h2 {
margin: 0;
font-size: 3rem;
line-height: 1.2;
color: white;
font-weight: 700;
}
#offer .form-contact-info-row .form-placeholder {
width: 58.3333333333%;
padding: calc(100vw / 12) 8.3333333333% calc(100vw / 12);
}
@media screen and (min-width: 1441px) {
#offer .form-contact-info-row .form-placeholder {
padding: 120px 8.3333333333% 120px;
}
}
#offer .form-contact-info-row .form-placeholder .form {
max-width: none;
}
@media screen and (max-width: 1200px) {
#offer .form-contact-info-row .form-placeholder {
padding-right: 0;
}
}
#offer .form-contact-info-row .background .fill-out {
width: calc(100vw / 14 * 8);
}
@media screen and (min-width: 1681px) {
#offer .form-contact-info-row .background .fill-out {
width: calc( (1440px / 12 * 7) + ((100% - 1440px) / 2 ));
}
}
#offer .form-contact-info-row .background .fill-out:before {
left: -50px;
background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0.2) 35%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 1000px) {
#offer .form-contact-info-row .form-placeholder, #offer .form-contact-info-row .offer-cta {
width: 100%;
padding: calc(100vw / 12) 8.3333333333%;
}
#offer .form-contact-info-row .offer-cta {
padding-bottom: 0;
}
}
@media screen and (max-width: 700px) {
#offer .form-contact-info-row .form-placeholder, #offer .form-contact-info-row .offer-cta {
padding: calc(100vw / 12) 20px;
}
#offer .form-contact-info-row .offer-cta {
padding-bottom: 0;
}
#offer .form-contact-info-row .offer-cta h2 {
font-size: 2rem;
}
}
#error-page-message {
padding: 100px 0 100px;
}
#error-page-message .grid-row {
/*p */
/* font-size: 1rem */
/* line-height: 1.7 */
/* font-weight: bold */
/* color: $grey */
/* */
/* +respond-to-width(700) */
/* font-size: 0.9rem */
/* +respond-to-width(450) */
/* font-size: 0.8rem */
}
#error-page-message .grid-row .kms-content {
width: 100%;
text-align: center;
}
#error-page-message .grid-row .placeholder {
max-width: 720px;
margin: auto;
}
/*==========================================================================
Sitemap page
@mixin ========================================================================= */
.sitemap ul {
padding-left: 40px;
padding-bottom: 20px;
font-size: 0.85em;
}
.sitemap > ul {
padding-left: 20px;
}
.sitemap li:before {
top: 6px;
}
.sitemap li a {
padding: 3px 0;
border-bottom-color: transparent;
border-bottom-style: dotted;
display: block;
}
.default .content {
padding: 180px 0 100px;
}
.default .content .grid-row {
padding: 0 7.1428571429%;
}
@media screen and (max-width: 700px) {
.default .content .grid-row {
width: 100%;
padding: 0 20px;
}
}
/* prod: sass resources/assets/scss/site/style.scss wwwroot/css/style.css --style=compressed */
/* dev: sass resources/assets/scss/site/style.scss wwwroot/css/style.css --watch */