html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;	vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, mail {	display: block; }
html, *, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* @import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900'); */
@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');


:root {
  --primary_color: #8d6dc4;
  --secondary_color: #66cccc;
  --gray_color: #333333;
}

html {
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray_color);
  font-size: 1.6em;
  line-height: 1.5;
  font-weight: 400;
}

/* Headers
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary_color);
  font-weight: 700;
  line-height: 1;
}
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; }

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: var(--primary_color);
  background-color: transparent;
  -webkit-transition: color 0.3s linear;
          transition: color 0.3s linear;
}
a:hover { color: var(--secondary_color); }
a { text-decoration: none; }
a:hover { text-decoration: underline; }
:focus { outline: none; }
::-moz-focus-inner { border: 0; }

/* Lists & others
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}
b {
  font-weight: 700;
}
strong {
  font-weight: 400;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
figure {
	margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  background-color: var(--primary_color);
  border: 1px solid var(--primary_color);
  font-size: 1.4rem;
	font-weight: 400;
  padding: 1rem 2.0rem;
  /* padding: 0 2.0rem; */
  /* height: 36px; */
  /* line-height: 34px; */
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  -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;
}
.button:hover,
.button:focus {
	color: var(--primary_color);
  background-color: #ffffff;
  outline: 0;
  text-decoration: none;
}

/* BUTTON ALTERNATE */
.button.alternate {
  background-color: var(--secondary_color);
  border: 2px solid var(--secondary_color);
}
.button.alternate:hover,
.button.alternate:focus {
  color: var(--secondary_color);
	background-color: #ffffff;
}

/* CHEVRON */
.button.chevron {
  position: relative;
  padding-right: 4rem;
  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);
          transform: translateY(-100%) skew(45deg, 0);
}
.button.chevron::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skew(-45deg, 0);
          transform: translateY(100%) skew(-45deg, 0);
}
.button.chevron:hover::before,
.button.chevron:hover::after {
  right: -20px;
  background-color: var(--primary_color);
}

/* SKEW */
.button.skew {
  -webkit-transform: skew(-21deg);
          transform: skew(-21deg);
  -webkit-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 4.0rem;
}
/* .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;

  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;
} */

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
	border-collapse: collapse;
	border-spacing: 0;
  border-left: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
}
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

/* 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: 4rem;
  padding: 0.6rem 1.0rem;
  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;
          appearance: none;
}
textarea {
  min-height: 120px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
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 var(--primary_color);
  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;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  /* line-height: 1.15; */
  line-height: 1;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
summary {
  display: list-item;
}
template, [hidden] {
  display: none;
}

/* 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: 1800px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	clear: both;
	padding: 0 10px;
}
.wrapper.shorter {
	max-width: 1200px;
}

/* Cookiepolicy
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cookiepolicy {
  position: fixed;
	bottom: 0;
	left: 0;
  right: 0;

  display: flex;
  justify-content: center;
  align-items: center;

	background: #ffffff;
  font-size: 14px;
	padding: 15px 50px;
	text-align: center;
	z-index: 1000;
}
.cookiepolicy .button {
	margin: 0;
	margin-left: 20px;
	overflow: visible;
}

/* Thumbnail
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.thumbnail {
	display: block;
	line-height: 0;
	position: relative;
	overflow: hidden;
}
.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%;
  transition: all 0.6s;
}
.thumbnail:hover img {
	transform: scale(1.1);
}

/* Map
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#map, #map2 {
  display: block;
  line-height: 0;
  position: relative;
  margin: 0;
  width: 50%;
  max-width: 100%;
  margin-bottom: 20px;
  height: 450px;
}
.map_header {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.map_content p {
  font-size: 14px;
  line-height: 1.5;
}



/* Backtotop
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#back_to_top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: none;
  z-index: 100;
  width: 40px;
  height: 40px;
  line-height: 32px;
  color: #ffffff;
  background: var(--primary_color);
  border: 2px solid #ffffff;
  text-align: center;
  -webkit-transition: 0.3s all;
          transition: 0.3s all;
  font-size: 20px;
}
#back_to_top:hover {
  color: var(--primary_color);
  background-color: var(--secondary_color);
}



/* Waypoints
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html, body {
  overflow-x: hidden;
}
/* .revealOnScroll {
  visibility: hidden !important;
}
.revealOnScroll.animated {
  visibility: visible !important;
} */
.animatedHidden {
  visibility: hidden !important;
}


/* Simple Parallax
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.simpleParallax {
  line-height: 0;
}
.parallax_container {
  position: relative;
}
.parallax_container .wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.simpleParallax img {
  max-width: none;
}
.parallax_container .simpleParallax {
  height: 600px;
}


/* Breadcrumbs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page_stripe {
  font-weight: 400;
  padding: 60px 0;
  margin-bottom: 60px;
  background-color: #e1dcf2;
}
.page_header {
  font-size: 26px;
  text-transform: uppercase;
  line-height: 32px;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #333333;
}
.breadcrumbs {
  font-size: 13px;
  color: #333333;
}
.breadcrumbs .fa {
  font-size: 14px;
  color: var(--gray_color);
}
.breadcrumbs span {
  font-weight: 400;
}


/* Galeria
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.gallery {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-left: -5px;
}
.gallery li {
  width: calc(100% / 3 - 5px);
  margin-left: 5px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 800px) {
  .gallery li { width: calc(100% / 3 - 5px); }
}
@media only screen and (max-width: 600px) {
  .gallery li { width: calc(100% / 2 - 5px); }
}
@media only screen and (max-width: 320px) {
  .gallery li { width: 100%; }
}



