/* MASTER.CSS */
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html, *, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
html { font-size: 62.5%; }
body {
  font-family: "Lato", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333333;
  font-weight: 400;
  /* font-size: 1.5em; */
  font-size: 16px;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  color: #333333;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.3;
}
h1 { font-size: 4.0rem; }
h2 { font-size: 3.6rem; }
h3 { font-size: 3.0rem; }
h4 { font-size: 2.4rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.5rem; }
p { margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a { color: #404040; }
a:hover { color: #404040; }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
:focus { outline: none; }
::-moz-focus-inner { border: 0; }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  color: #ffffff;
  background-color: #404040;
  border: 1px solid #404040;
  font-family: "Lato", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
	font-weight: 600;
  height: 42px;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 21px;

  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  /* -webkit-transition: color 0.3s linear, background-color 0.3s linear, border-color 0.3s linear; */
          transition: color 0.3s linear, background-color 0.3s linear, border-color 0.3s linear;
          /* transition: all 0.3s linear; */
}
.button:hover,
.button:focus {
	color: #404040;
  background-color: #ffffff;

  outline: 0;
  text-decoration: none;
}

/* BUTTON ALTERNATE */
.button.alternate {
  background-color: #18d9a9;
  border: 2px solid #18d9a9;
}
.button.alternate:hover,
.button.alternate:focus {
  color: #18d9a9;
	background-color: #ffffff;
}

/* CHEVRON */
.button.chevron {
  position: relative;
  padding-right: 40px;
  overflow: hidden;
}
.button.chevron::before,
.button.chevron::after {
  right: 20px;
  background-color: #ffffff;

  display: block;
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  -webkit-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in;
}
.button.chevron::before {
  top: 50%;
  -webkit-transform: translateY(-100%) skew(45deg, 0);
      -ms-transform: translateY(-100%) skew(45deg, 0);
          transform: translateY(-100%) skew(45deg, 0);
}
.button.chevron::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skew(-45deg, 0);
      -ms-transform: translateY(100%) skew(-45deg, 0);
          transform: translateY(100%) skew(-45deg, 0);
}
.button.chevron:hover::before,
.button.chevron:hover::after {
  right: -20px;
  background-color: #404040;
}

/* SKEW */
.button.skew {
  -webkit-transform: skew(-21deg);
          transform: skew(-21deg);
  -webkit-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
   -khtml-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
     -moz-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
      -ms-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
       -o-transition: color 0.4s, border-color 0.4s, background-color 0.4s;
          transition: color 0.4s, border-color 0.4s, background-color 0.4s;
}
.button.skew > span {
  display: inline-block;
  -webkit-transform: skew(21deg);
          transform: skew(21deg);
}

/* BIG */
.button.big {
  height: 60px;
  line-height: 56px;
  padding: 0 40px;
}



.button.icon {
  position: relative;
  padding-right: 35px;
  overflow: hidden;
}
.button.icon:before {
  position: relative;

  content: "\f054";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
/*--adjust as necessary--*/
  color: #ffffff;
  font-size: 18px;
  padding-right: 0.5em;
  position: absolute;
  top: 3px;
  right: 0;
  transition: all 0.3s ease-in;
}
.button.icon:hover:before {
  right: -30px;
}


/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 40px;
  padding: 6px 10px;
  background-color: #f2f2f2;
  border: 1px solid #cccccc;
  box-shadow: none;
}
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
textarea {
  min-height: 120px;
  padding-top: 6px;
  padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #0faef8;
  outline: 0;
}
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 700;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
}
input:disabled {
  background-color: #ebebeb;
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
ol, ul {
  padding-left: 0;
  margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  /* font-size: 90%; */
}
li {
  margin-bottom: 1rem;
}


/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}


/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e1e1e1;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  /* margin-bottom: 1rem; */
}
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* .clearfix {	*zoom: 1;	zoom: 1; }
.clearfix:before, .clearfix:after {	display: block;	content: ""; }
.clearfix:after {	clear: both; }
.clear { content: "";	display: block;	clear: both; } */


/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
} */
.wrapper {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	clear: both;
	padding: 0 10px;
}
img {
	max-width: 100%;
	height: auto;
}
figure {
	margin: 0;
}





/* COOKIES */
.cookiepolicy {
  position: fixed;
	bottom: 0;
	left: 0;
	right: 0;

	background: #ffffff;
  font-size: 14px;
	padding: 15px 50px;
	text-align: center;
	z-index: 1000;
}
.cookiepolicy .button {
	margin: 0;
	margin-left: 20px;
}







/* THUMBNAIL */
.thumbnail {
	display: block;
	line-height: 0;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.thumbnail:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	transition: transform 0.6s;
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
	z-index: 1;
}
.thumbnail:hover::after {
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 110%, 0);
}
.thumbnail:hover {
	/* opacity: 0.9; */
}
.thumbnail img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: 100%;
	-webkit-transition: all 0.6s;
	 -khtml-transition: all 0.6s;
		 -moz-transition: all 0.6s;
			-ms-transition: all 0.6s;
			 -o-transition: all 0.6s;
					transition: all 0.6s;
}
.thumbnail:hover img {
	transform: scale(1.1);
}




