/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */ 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; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; }

* {
  box-sizing: border-box;
}

body {
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
	font-size: 16px;
  line-height: 1.56;
  font-weight: 400;
	text-align: left;
	color: #0c0c0c;
}
header {
  width: 100%;
}

.logos {
  padding: 15px 30px;  
  width: 100%;
  overflow: hidden;
}
#logo {
  float: left; 
}

#tagline {
  float: right;
}

.back-link {
  width: 100%;
  padding: 5px 30px;  
  background: #ececec;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0;
}

p {
  padding: 10px 0;
}

.hero {
  min-height: 500px;
  background-image: url('img/hero.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero h1 {
  position: absolute;
  bottom: 20px;
  color: #fff;
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
  font-size: 40px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}

.hero h1 span {
  display: block;
  font-size: 25px;
  font-weight: 400;
}

.input-container {
  float: left;
  margin: 15px 0;
}

.fw {
  width: 100%;
}

.hw {
  width: 49%;
}

.col-4 {
  width: 45%;
  padding-right: 2%;
}

.col-2 {
  width: 20%;
  padding-right: 2%;
}

.col-3 {
  width: 35%;
}

.hw:nth-child(odd) {
  float: right;
}

input, select {
  width: 100%;
  -webkit-appearance: textfield;
  -moz-appearance:    textfield;
  appearance:         textfield;
  padding: 12px 10px;
  font-size: 14px;
  outline: none;
  background-color: #fff;
  border: 1px solid #CACACA;
  border-radius: 4px;
}

select {
  background-image: url('img/arrow.png');
  background-repeat: no-repeat;
  background-position: center right 10px;
  cursor: pointer;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #c7c7c7;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #c7c7c7;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #c7c7c7;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #c7c7c7;
}

h2 {
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
  color: #0b0b0b;
  margin: 15px 0 10px;
}

label {
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	color: #0c0c0c;
}

.error {
  display: none;
  font-size: 13px;
  color: #ff0000;
  padding: 5px 0;
}

.invalid .error {
  display: block;
}

.invalid input {
  border: 1px solid #ff0000;
}
#basic {
  padding: 40px 0 20px;
  overflow: hidden;
}

#contact1 {
  /* overflow: hidden; */
  display: none;
  opacity: 0;
}

.form-footer {
  clear: both;
  padding: 40px 0 20px;
  overflow: hidden;
}

.form-footer button {
  float: right;
  width: 150px;
	height: 52px;
	border-radius: 3px;
  background-color: #4ba72e;
  border: 0px;
  outline: none;
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-weight: 600;
	text-align: center;
  color: #ffffff;
  transition: background-color 0.25s ease;
  cursor: pointer;
}

.form-footer button:hover {
  background-color: #35861c;
}
.policy {
  display: block;
  float: left;
  padding-top: 15px;
  text-decoration: none;
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	color: #3c8923;
}

.policy img {
  vertical-align: text-bottom;
}

.policy span {
  line-height: 20px;
  display: inline-block;
  padding-left: 5px;
}

footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 15px 0;
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #0b0b0b;
}

.thanks p {
  font-family: 'SKODA Next', Arial, Helvetica, sans-serif;
  font-size: 16px;
	line-height: 1.56;
	text-align: left;
  color: #0c0c0c;
  padding: 15px 0;
}

.thanks h2 {
  font-size: 28px;
  margin-bottom: 0px; 
}
.thanks b {
  font-weight: 600;
}

.thanks a {
  text-decoration: none;
  cursor: pointer;
  color: #4ba72e;
}

@media (max-width: 1300px) {
  .hero {
    min-height: 400px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 350px;
  }
}


@media (max-width: 720px) {
  .hw,
  .col-4 {
    width: 100%;
  }

  .col-3,
  .col-2 {
    width: 49%;
  }
  .container {
    padding: 40px 20px;
  }

  h1 {
    font-size: 32px !important;
    line-height: 36px !important;
  }
  h2 {
    font-size: 16px;
  }

  .form-footer {
    padding: 20px 0;
  }

  .policy {
    padding: 0px 0px 30px;
  }
  .hero {
    min-height: 200px;
  }

  .input-container {
    margin: 10px 0;
  }
}


.gdpr-text {
  border-top: 1px solid #dee1e3;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 35px;
  padding-top: 30px;
}

.gdpr-text p {
  padding-bottom: 10px;
}

.gdpr-text a {
  color: #4ba72e;
  text-decoration: none;
  font-weight: 700;
}

u {
  text-decoration: underline;
}