@import "../vendor/normalize/normalize.css";
@import "../vendor/flexboxgrid/flexboxgrid.css";
@import "grid.css";
@import "typography.css";
@import "form.css";
@import "header.css";
@import "footer.css";
/* @import "cookie-consent.css"; */


:root {
  --color-petrol: #006567;
  --color-lemon:  #B0D400;
}

html {
	scroll-behavior: smooth;
}

body { 
	margin: 0; 
	padding: 0; 
	width: 100vw;
	overflow-x: hidden;
}

.anchor--pagestart {	
	position: relative;
	display: block;
	width: 0;
	height: 0;
	font-size: 0;
	background-color: transparent;
	margin-top: 60px;	
}
.anchor--hidden {
	position: relative;
	display: block;
	width: 0;
	height: 0;
	font-size: 0;
	background-color: transparent;
}

.ruler {
	background: url(../assets/rulers/ruler-default.png) no-repeat;
	background-size: cover;
	background-position: 100% 0;
	height: 330px;
    display: flex;
}

.ruler h2 {
	color: white;
}





.slider__image {
	position: relative;
	left: 0;
	top: 0;
}

.slider__image img {
	width: 100%;
}

.slider__image ul li {
	position: absolute;
	left: 0;
	top: 0;	
}

.slider__image ul li::before {
	content: "";
	color: transparent; 
}

.slider__image ul li img {
	position: relative;
	left: 22px;
	top: 27px;
	width: 92%;
	max-height: 0;
	transition: all 1s;	
}

.slider__image ul li.slider__image--active img {
	max-height: 92%;
}

.slider__control__slide {
	display: block;
	font-size: 0;
	border: 0;
	border-radius: 4px;	
	background-color: #E5E5E5;
	box-shadow: none;
	margin: 6px 21px;
	padding: 0;
	width: 8px;
	height: 8px;
	transition: all 1s;		
}

.slider__control__slide--active {
	border-radius: 5px;	
	background-color: var(--color-lemon);
	margin: 5px 20px;
	padding: 0;
	width: 10px;
	height: 10px;
}





.box {
	padding: 0 20px;
	background-color: #white;
  	border: 1px solid #E5E5E5;
  	border-radius: 4px;
}


/* LG */
@media only screen and (min-width: 75em) {
}

/* MD */
@media only screen and (min-width: 64em) {
}

/* SM */
@media only screen and (min-width: 48em) {
}   

/* XS */
@media only screen and (max-width: 48em) {
}