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

html, *, *::before, *::after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body { 
  margin: 0;
  font-family: "Lato", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
	 margin: 0;
}

h1 { font-size: 44px; }
h2 { font-size: 57.6px; }
h3 { font-size: 44px; }
h4 { font-size: 38px; }
h5 { font-size: 28px; }
h6 { font-size: 22px; }

p, ul {
  font-size: 17px;
}

/* 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: #749f3f;
  border: 1px solid #749f3f;
  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;
  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: #2b3f51;
  background-color: #ffffff;
  outline: 0;
  text-decoration: none;
}


/* BUTTON ALTERNATE */
.button.alternate {
  background-color: #404040;
  border: 2px solid #404040;
}

.button.alternate:hover,
.button.alternate:focus {
  color: #404040;
	background-color: #ffffff;
}


/* 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);
}



.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: 15px;
  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;
}

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



/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}


.wrapper {
	max-width: 1700px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	clear: both;
}

.wrapper_full {
	width: 100%;
	margin: 0 auto;
	position: relative;
	clear: both;
	padding: 0 10px;

}

.wrapper_small {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	clear: both;
  box-sizing: border-box;
}


img {
	max-width: 100%;
	height: auto;
}







/* 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);
}


/* 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: 60px; /* 40px */
  height: 60px; /* 40px */
  line-height: 32px;
  color: #ffffff;
  /* background: #1c908d; */
  /* border: 2px solid #ffffff; */
  /* text-align: center; */
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 20px;
}
/* #back_to_top img{
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
} */
.rocket-shake {
  /* color: #ffffff; */
  /* background-color: #333333; */
  /* opacity: 0.7; */
  animation: shake 0.5s;
  animation-iteration-count: infinite;
  transition: 0.3s all;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}