::-webkit-input-placeholder { color: white; }
::-moz-placeholder          { color: white; }
:-ms-input-placeholder      { color: white; }
:-moz-placeholder           { color: white; }

body {
  font-weight: 400;
}

#logo-svg {
  width: 200px;
  color: #6fb61b;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 0 8px;
  background-image: url(../images/logo.svg);
  height: 60px;
  max-height: 60px;
  position: absolute;
  left: 64px;
  top: 32px;
}

body.page section {
  background: #e59a21;
  overflow: auto;
}

body.page section .content {
  width: 600px;
  margin: 2em auto;
  padding-right: 2em;
}

body.page section h1 {
  padding: 0;
  margin: 0 0 1em;
  font-size: 32px;
}

#contact {
  display: flex;
  align-items: center;
}

#contact .content {
  padding: 0;
  width: 500px;
  margin: 0 auto;
}

#contact .form-input {
  margin: 0 0 2em;
}

#contact input,
#contact textarea {
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid white;
  color: white;
  padding: .5em 0;
  width: 100%;
  font-size: 18px;
  background: transparent;
  outline: none;
}

#contact .form-actions {
  text-align: left;
  display: flex;
}

#contact #form-message {
  flex: 1;
  font-size: 20px;
  line-height: 28px;
  vertical-align: middle;
  color: #1f1956;
}

#contact #form-message.form-message-error {
  color: #ed4337;
  font-weight: bold;
}

#contact .form-actions button {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 28px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

body.page p {
  margin-bottom: .5em;
}

#about {
  background-image: url(../images/about-background.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

#about .content {
  background: rgba(0, 0, 0, .3);
  padding: 80px;
}

/* Pages */
body.page-about {
  background-color: white;
}

.page-about #logo-svg {
  background-image: url(../images/logo-green.svg);
}

.page-terms-and-conditions #logo-svg {
  display: none;
}

.page-about #menu-svg,
.page-terms-and-conditions #menu-svg {
  background-image: url(../images/menu-green.svg);
}

.page-about #menu-svg:hover,
.page-terms-and-conditions #menu-svg:hover {
  background-image: url(../images/menu-blue.svg);
}

body.page-contact-us {
  background-color: #e59a21;
}

body.page-terms-and-conditions {
  background-color: white;
  color: #1f1956;
}

body.page-terms-and-conditions section {
  background-color: white;
  background-image: url(../images/terms-and-conditions-background.jpg);
  /*background-position: top left;*/
  background-position: 40% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-terms-and-conditions h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  color: #6fb61b;
}

.page-terms-and-conditions p {
  line-height: 1.3;
  font-size: 14px;
}

.page-terms-and-conditions a {
  color: black;
  text-decoration: underline;
}

body.page-terms-and-conditions section .content {
  width: auto;
  margin-top: 96px;
  margin-left: 50vw;
  margin-right: 10vw;
}

address {
  font-style: normal;
  line-height: 1.2;
}

address a {
  color: white;
  text-decoration: none;
}

address a:hover {
  text-decoration: underline;
}