﻿/* ----- DESIGN BY DEBUGGED ----- */
/* more info at www.debugged.be */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

1.  CSS Reset             
2.  Global Grid
3.  Mobile Grid
4.  Extra Classes
5.  LESS prefixes
6.  Site styles
7.  Media queries

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*
1.  CSS Reset by Eric Meyer http://meyerweb.com/eric/tools/css/reset/
============================================================================================*/
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 {
  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;
}
input[type="text"],
input[type="submit"],
input[type="button"],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
  border-radius: 0 0 0 0;
}
/*
2.  Global Grid
============================================================================================*/
.wrapper {
  margin: auto;
  width: 100%;
  max-width: 2500px;
}
.container {
  margin: auto;
  width: 100%;
  max-width: 1000px;
}
.one {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 4.25%;
}
.two {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 10.5%;
}
.three {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 16.75%;
}
.four {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 23%;
}
.five {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 29.25%;
}
.six {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 35.5%;
}
.seven {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 41.75%;
}
.eight {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 48%;
}
.nine {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 54.25%;
}
.ten {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 60.5%;
}
.eleven {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 66.75%;
}
.twelve {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 73%;
}
.thirteen {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 79.25%;
}
.fourteen {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 85.5%;
}
.fifteen {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 91.75%;
}
.sixteen {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 98%;
}
.one-third {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 31.333333%;
}
.two-third {
  display: inline;
  float: left;
  margin-left: 1%;
  margin-right: 1%;
  width: 64.666666%;
}
/*
3.  Mobile Grid
============================================================================================*/
@media only screen and (max-width: 719px) {
  .container {
    width: 90%;
  }
  .one,
  .two,
  .three,
  .four,
  .five,
  .six,
  .seven,
  .eight,
  .nine,
  .ten,
  .eleven,
  .twelve,
  .thirteen,
  .fourteen,
  .fifteen,
  .sixteen,
  .one-third,
  .two-third {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
/*
4.  Extra classes
============================================================================================*/
a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
img.scale {
  max-width: 100%;
  height: auto;
}
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}
.left {
  float: left;
}
.right {
  float: right;
}
/*selection color*/
::selection {
  background: #0b4879;
  color: #fff;
}
::-moz-selection {
  background: #0b4879;
  color: #fff;
}
/*enable touch if possible*/
canvas {
  -ms-touch-action: double-tap-zoom;
}
/*
5.  LESS prefixes
============================================================================================*/
/*
6.  Site styles
============================================================================================*/
/*COLORS
============================================================================================*/
/*FONT
============================================================================================*/
/*URL
============================================================================================*/
/*MIXINS
============================================================================================*/
/*GENERAL
============================================================================================*/
html,
body,
form,
.wrapper {
  position: relative;
  min-height: 100%;
}
html,
body,
form {
  height: 100%;
}
body {
  background: #3db2e2;
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #2e2e2e;
  font-weight: 400;
}
h1 {
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 30px;
}
h1 .subtitle {
  display: block;
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  margin-top: 10px;
}
h2 {
  font-size: 26px;
  line-height: 32px;
  color: #0b4879;
  font-weight: 800;
  margin-bottom: 25px;
}
h3 {
  font-size: 21px;
  line-height: 27px;
  color: #0b4879;
  font-weight: 800;
  margin-bottom: 25px;
}
p {
  margin-bottom: 25px;
}
p:last-of-type {
  margin-bottom: 0;
}
a {
  outline: none;
  border: 0;
  color: #0b4879;
  text-decoration: underline;
  font-weight: 700;
}
a:hover {
  text-decoration: none;
}
.button {
  display: inline-block;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  font-weight: 800;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 45px 20px 45px;
  background: #3db2e2;
  -webkit-border-radius: 45px 45px 45px 45px;
  -moz-border-radius: 45px 45px 45px 45px;
  -ms-border-radius: 45px 45px 45px 45px;
  -o-border-radius: 45px 45px 45px 45px;
  border-radius: 45px 45px 45px 45px;
  text-decoration: none;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px 0;
  outline: none;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button:hover {
  text-decoration: none;
  background: #0b4879;
}
.button.next,
.button.prev {
  font-size: 21px;
  line-height: 27px;
  padding: 10px 35px 13px 35px;
}
img {
  max-width: 100%;
}
strong,
b {
  font-weight: 800;
}
strong.big,
b.big {
  color: #0b4879;
  font-size: 18px;
  line-height: 24px;
}
em,
i {
  font-style: italic;
}
ul {
  list-style-type: disc;
  list-style-position: outside;
  margin: 10px 0 0 17px;
}
ul li {
  padding-left: 10px;
}
ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin: 10px 0 0 17px;
}
ol li {
  padding-left: 15px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
textarea,
select {
  outline: none;
  border: solid 1px #a0a0a0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 10px 12px 10px;
  width: 100%;
  font-family: 'Muli', sans-serif;
  font-size: 16px;
  margin: 3px 0;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -ms-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  background: #fff;
}
input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
  border-radius: 0;
  background-position: 100% center;
  background-repeat: no-repeat;
  cursor: pointer;
}
select option:first-of-type {
  padding: 0;
}
textarea {
  resize: vertical;
  min-height: 150px;
}
input[type="submit"] {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 30px;
  line-height: 36px;
  padding: 15px 45px 20px 45px;
  background: #3db2e2;
  -webkit-border-radius: 45px 45px 45px 45px;
  -moz-border-radius: 45px 45px 45px 45px;
  -ms-border-radius: 45px 45px 45px 45px;
  -o-border-radius: 45px 45px 45px 45px;
  border-radius: 45px 45px 45px 45px;
  text-decoration: none;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  -webkit-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
  margin: 0 0 50px 0;
  outline: none;
  border: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
input[type="submit"]:hover {
  text-decoration: none;
  background: #0b4879;
}
input[type="submit"].next,
input[type="submit"].prev {
  font-size: 21px;
  line-height: 27px;
  padding: 10px 35px 13px 35px;
}
.radiobutton-group,
.checkbox-group {
  margin: 5px auto 35px auto;
  text-align: left;
  display: inline-block;
}
.checkbox {
  position: relative;
  display: block;
  margin: 0;
  padding: 5px 0 0 0;
  /* checkbox */
  /* checkbox of checked or not-checked */
}
.checkbox.inline {
  display: inline-block;
  margin: 0 10px 0 0;
}
.checkbox input[type="checkbox"]:not(:checked),
.checkbox input[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.checkbox input[type="checkbox"]:not(:checked) + label,
.checkbox input[type="checkbox"]:checked + label {
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
  font-family: 'Muli', sans-serif;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 20px;
}
.checkbox input[type="checkbox"]:not(:checked) + label span,
.checkbox input[type="checkbox"]:checked + label span {
  display: block;
  float: left;
  overflow: hidden;
  width: calc(100% - 22px);
  padding: 0 5px 5px 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 19px;
}
.checkbox input[type="checkbox"]:not(:checked) + label:before,
.checkbox input[type="checkbox"]:checked + label:before {
  content: '';
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  background: none;
  border: solid 1px #a0a0a0;
  background: #fff;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -ms-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
  border-radius: 4px 4px 4px 4px;
  margin-right: 8px;
}
.checkbox input[type="checkbox"]:checked + label:after {
  content: '\e816';
  font-family: "icons";
  position: absolute;
  font-size: 19px;
  top: 7px;
  left: 2px;
  color: #3db2e2;
}
.checkbox input[type="checkbox"]:not(:checked) + label:after {
  display: none;
}
.checkbox:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
  width: 0;
  visibility: hidden;
  overflow: hidden;
}
.radiobutton {
  position: relative;
  display: block;
  margin: 0;
  padding: 5px 0 0 0;
  /* radiobutton */
  /* radiobutton of checked or not-checked */
}
.radiobutton.inline {
  display: inline-block;
  margin: 0 10px 0 0;
}
.radiobutton input[type="radio"]:not(:checked),
.radiobutton input[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
.radiobutton input[type="radio"]:not(:checked) + label,
.radiobutton input[type="radio"]:checked + label {
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
  font-family: 'Muli', sans-serif;
  color: #2e2e2e;
  font-size: 16px;
  line-height: 16px;
}
.radiobutton input[type="radio"]:not(:checked) + label span,
.radiobutton input[type="radio"]:checked + label span {
  display: block;
  float: left;
  overflow: hidden;
  width: calc(100% - 23px);
  padding: 0 5px 5px 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 19px;
}
.radiobutton input[type="radio"]:not(:checked) + label:before,
.radiobutton input[type="radio"]:checked + label:before {
  content: '';
  display: block;
  float: left;
  width: 21px;
  height: 21px;
  background: none;
  border: solid 1px #a0a0a0;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
}
.radiobutton input[type="radio"]:checked + label:after {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: #3db2e2;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  top: 8px;
  left: 3px;
}
.radiobutton input[type="radio"]:not(:checked) + label:after {
  display: none;
}
.radiobutton:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
  width: 0;
  visibility: hidden;
  overflow: hidden;
}
.form {
  width: 100%;
  border-collapse: collapse;
  margin: 35px auto;
}
.form td {
  padding: 5px;
  min-width: 50%;
  text-align: left;
}
.form td.small {
  min-width: 0;
  width: 100px;
}
.form td.small input[type="text"],
.form td.small input[type="email"],
.form td.small input[type="number"],
.form td.small input[type="password"],
.form td.small input[type="tel"],
.form td.small textarea,
.form td.small select {
  max-width: 100px;
}
.form table {
  border-collapse: collapse;
  width: 100%;
}
.form table td {
  min-width: 0;
}
.error {
  display: block;
  width: 98%;
  margin: 0 1% 15px 1%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 15px 17px 15px;
  margin-bottom: 10px;
  background: #cb0808;
  color: #fff;
}
/*WRAPPER
============================================================================================*/
.wrapper {
  height: auto !important;
  min-height: 100%;
  background-color: #0b4879;
  overflow: hidden;
}
/*HEADER
============================================================================================*/
header {
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 0 5px 0;
  background: #3db2e2;
}
/*CONTENT
============================================================================================*/
.content {
  background-color: #0b4879;
  background-image: url('/images/bg.png');
  background-repeat: no-repeat;
  background-position: center top;
  padding-bottom: 25px;
  /*content-header*/
  /*content-body*/
  /*counter*/
  /*question*/
  /*social-share*/
  /*contact-form*/
}
.content .block {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 55px 0 15px 0;
  background: #fff;
  -webkit-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  -moz-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
  position: relative;
}
.content .block.no-bottom-space {
  padding: 55px 0 0 0;
}
.content .narrow-text {
  width: 40%;
  margin: auto;
}
.content .content-header {
  position: relative;
  z-index: 1;
}
.content .content-header .content-header-inner {
  position: relative;
  height: 0;
  padding-top: 34.6%;
  /*(100% / 1000 x 346) = 34.6% => afbeelding is (383 - 37) = 346px hoog (-37 overlap handje)*/
  width: 100%;
  /*1000px => afbeelding is 1000px breed*/
}
.content .content-header img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.content .content-body {
  position: relative;
  z-index: 0;
  text-align: center;
}
.content .counter {
  display: block;
  background: #6e74b6;
  /* Old browsers */
  background: -moz-linear-gradient(top, #6e74b6 0%, #5157a0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #6e74b6 0%, #5157a0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #6e74b6 0%, #5157a0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 15px 12px 15px;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  z-index: 20;
  width: 98%;
  max-width: 175px;
  text-align: center;
}
.content .question {
  width: 75%;
  margin: auto;
}
.content .question .narrow-text {
  width: 65%;
}
.content .social-share {
  display: inline-block;
  text-align: center;
  margin: 25px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 35px 0 35px;
  border-top: solid 1px #a0a0a0;
}
.content .social-share a {
  display: inline-block;
  text-decoration: none;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  text-align: center;
  background: #3db2e2;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  margin: 2px 0 2px 2px;
  cursor: pointer;
}
.content .social-share a.icon-facebook {
  background: #3b5998;
}
.content .social-share a.icon-twitter {
  background: #55acee;
}
.content .social-share a:hover {
  background: #0b4879;
}
.content .contact-form {
  background: rgba(61, 178, 226, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 0 15px 0;
  position: relative;
}
.content .contact-form .narrow-text {
  width: 55%;
}
.content .contact-form .pin {
  position: absolute;
  display: block;
  top: -100px;
  right: -110px;
}
.content .contact-form .pin img {
  display: block;
}
/*FOOTER
============================================================================================*/
footer {
  text-align: center;
  background: #0b4879;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 0;
}
footer img {
  display: inline-block;
  margin: 15px;
}
/*
7.  Media queries
============================================================================================*/
/*Tablet*/
@media only screen and (max-width: 959px) {
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
  }
  /*CONTENT*/
  .content {
    padding-bottom: 0;
    /*question*/
    /*contact-form*/
  }
  .content .block {
    padding: 45px 0 15px 0;
  }
  .content .block.no-bottom-space {
    padding: 45px 0 0 0;
  }
  .content .narrow-text {
    width: 75%;
  }
  .content .question .narrow-text {
    width: 85%;
  }
  .content .contact-form .narrow-text {
    width: 85%;
  }
  .content .contact-form .pin {
    position: absolute;
    display: block;
    top: -50px;
    right: -220px;
  }
  .content .contact-form .pin img {
    width: 50%;
  }
}
/*Phone*/
@media only screen and (max-width: 719px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 25px;
  }
  h1 .subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
  h3 {
    font-size: 19px;
    line-height: 25px;
  }
  .button {
    font-size: 21px;
    line-height: 27px;
    padding: 10px 35px 13px 35px;
  }
  input[type="submit"] {
    font-size: 21px;
    line-height: 27px;
    padding: 10px 35px 13px 35px;
  }
  .form {
    margin: 15px auto 25px auto;
    display: block;
  }
  .form tbody,
  .form tr,
  .form td,
  .form th {
    display: block;
    width: 100%;
  }
  .form td {
    display: block;
    width: 100%;
  }
  .form td.small {
    width: 100%;
  }
  .form td.small input[type="text"],
  .form td.small input[type="email"],
  .form td.small input[type="number"],
  .form td.small input[type="password"],
  .form td.small input[type="tel"],
  .form td.small textarea,
  .form td.small select {
    max-width: 100%;
  }
  .form table td {
    padding: 5px 0;
  }
  /*HEADER*/
  header {
    padding: 25px 0 5px 0;
  }
  /*CONTENT*/
  .content {
    /*question*/
    /*social-share*/
    /*contact-form*/
  }
  .content .block {
    padding: 25px 0 15px 0;
  }
  .content .block.no-bottom-space {
    padding: 25px 0 0 0;
  }
  .content .narrow-text {
    width: 85%;
  }
  .content .question {
    width: 85%;
  }
  .content .question .narrow-text {
    width: 90%;
  }
  .content .social-share span {
    display: block;
    margin-bottom: 10px;
  }
  .content .contact-form .pin {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-top: 25px;
  }
  .content .contact-form .pin img {
    display: inline-block;
  }
}