:root {
  --body-font-family: sans-serif;
  --body-font-size: 16px;
  --border-radius: 4px;
  --primary-color: #1768fd;
  --secondary-color: #333;
  --body-background-color: #fff;
}

* {
  padding: 0px;
  margin: 0px;
  outline: none;
  background: none;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: var(--body-font-size);
}
body {
  font-family: var(--body-font-family);
  font-size: 0.875rem;
  line-height: 1.3rem;
  background-size: cover;
  background: #d1edf1;
  color: #333;
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin: 0px 0px 1rem 0px;
}

h1 {
  font-size: 2rem;
  line-height: 2rem;
}

ul,
ol {
  margin-left: 25px;
}

a {
  color: #333;
}
a img {
  border: none;
}

.flex {
  display: flex;
}
.clear {
  clear: both;
}
.right {
  float: right;
}
.left {
  float: left;
}

.center-text {
  text-align: center;
}

.v-margin {
  height: 25px;
}

.wrapper {
  max-width: 480px;
  margin: auto;
}

.header {
  padding: 25px 0px 0px 0px;
  color: #fff;
  min-height: 320px;
  background-color: #281a11;
}

.logo {
  margin-bottom: 25px;
}

.content {
  z-index: 10000;
  position: relative;
}

.hero,
.intro {
  width: 50%;
}

.hero {
  background: url("../images/bg.jpg") no-repeat bottom right;
  background-size: cover; 
}

.logo img {
  display: block;
  max-width: 100%;
  height: 90px;
}

.form {
  margin: 0px 0px 35px 0px;
}

.form .action {
  justify-content: space-between;
  align-items: center;
}

.title {
  font-size: 2rem;
  line-height: 2.2rem;
}

.intro {
  padding: 50px 0px;
}

.message {
  background-color: #bbfb82;
  padding: 15px;
  border-radius: var(--border-radius);
  font-size: 12px;
  color: #333;
  margin-bottom: 35px;
}

.error {
  background-color: #fae6e6;
  padding: 15px;
  border-radius: var(--border-radius);
  font-size: 12px;
  color: #333;
  margin-bottom: 35px;
}

.instructions {
  margin-bottom: 25px;
  font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
  display: block;
  border: solid 1px #ccc;
  background: #fff;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  line-height: 0.8125rem;
  font-family: var(--body-font-family);
  width: 100%;
  border-radius: var(--border-radius);
}

input[type="checkbox"] {
  border: solid 1px #e6e3e3;
  float: left;
  width: 15px;
  display: block;
}

.consent {
  align-items: flex-start;
  margin: 15px 0px;
}

.legal {
  font-size: 0.75rem;
  margin: -5px 0px 0px 5px;
  line-height: 1.1rem;
}

input[type="submit"] {
  background: var(--primary-color);
  display: inline-block;
  border-radius: var(--border-radius);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 12px 35px;
  cursor: pointer;
  font-size: 0.75rem;
}

input[type="submit"]:hover {
  filter: brightness(1.5);
}

.fields {
  justify-content: space-between;
}
.fields input {
  width: 32.5% !important;
}

.privacy {
  background: #fff;
  color: #333;
  border-radius: var(--border-radius);
  font-size: 0.75rem;
  padding: 35px;
  margin: 35px 0px;
}

.privacy img {
  max-width: 100%;
  display: block;
  height: 60px;
}

.footer {
  font-size: 0.6875rem;
  line-height: 1.1rem;
  text-align: center;
  padding: 35px;
  background: #fff;
}

.title span {
  color: var(--primary-color);
}

@media only screen and (max-width: 650px) {
  body {
    font-size: 14px;
  }

  .logo {
    margin-top: 25px;
  }

  .footer {
    margin-bottom: 25px;
  }

  .wrapper {
    width: 100%;
  }

  .form {
    border-radius: 0px;
  }

  .intro {
    padding: 35px;
    width: 100%;
  }

  .fields {
    display: block;
  }

  .fields input {
    width: 100% !important;
  }

  .privacy {
    padding: 25px;
    margin: 0px;
  }

  .content {
    display: block;
  }

  .description,
  .photo {
    width: 100% !important;
  }

  .description {
    padding-right: 0px;
    margin-top: 25px;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 0px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  height: 0px;
  background-color: transparent;
}
::-webkit-scrollbar-track-piece {
  background-color: #ccc;
}
::-webkit-scrollbar-thumb:vertical {
  height: 0px;
  background-color: #999;
}
