@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond:500,600&display=swap');

html,
body,
header,
main,
footer,
section,
h1,
h2,
h3,
span,
form,
img,
p,
div,
textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: 14px/1.5 'Cormorant Garamond', serif;
  background-color: #000;
}

#bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -10;
}

#bg img {
  display: block;
  width: 100%;
}

footer {
  color: #fff;
  font-size: .9em;
  padding: 2em 0 1em;
  text-align: center;
}

footer span a {
  color: #fff;
}

header {
  max-width: 1200px;
  width: 98%;
  margin: 0 auto;
  background: url(./images/logo.png) no-repeat 2em;
  background-size: 180px;
}

h1 {
  width: 80%;
  margin: 0 auto;
  padding-top: 1.5em;
  font-size: 3em;
  text-align: center;
  color: #466442;
}

section {
  max-width: 640px;
  width: 100%;
  padding: 2rem;
  margin: 0 auto 1%;
  border-radius: 5px;
  background-color: #ffffff69;
}

section>div {
  width: 100%;
  padding: 2em 3em;
  background-color: #fff;
  color: #000;
  border-radius: 5px;
}

.item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5em;
}

h2 .required {
  color: #f00;
  font-size: 1rem;
  padding-left: 1em;
}

form .required::after {
  content: '*';
  display: inline-block;
  color: #f00;
  font-size: 1.5em;
  font-weight: bold;
}

label {
  min-width: 120px;
  font-size: 1.3em;
  font-weight: bold;
}

input,
textarea {
  padding: 5px;
  border: 1px solid #bbb;
}

input {
  min-width: 300px;
  width: 80%;
}

textarea {
  width: 100%;
}

button {
  display: block;
  margin: 1em 0 1em auto;
  width: 100px;
  line-height: 2;
  background-color: #31b81b;
  border-radius: 3px;
  color: #fff;
  font-size: 1.2em;
}

a#contactBt {
  opacity: .3;
  pointer-events: none;
  width: 250px;
  margin: 1em auto;
  display: block;
  line-height: 3;
  background-color: #ccc;
  border-radius: 3px;
  color: #000;
  font-size: 1.2em;
  text-decoration: none;
  text-align: center;
  border: 2px solid #787777;
  font-family: Arial;
}

a#contactBt.ready {
  opacity: 1;
  pointer-events: auto;
  background-color: #31b81b;
  color: #fff;
}

h2 {
  font-size: 34px;
  margin-bottom: .5em;
  color: #444;
}

h3 {
  font-size: 1.8em;
  margin-bottom: .5em;
  font-weight: bold;
}

p {
  margin-bottom: 2em;
}

p a {
  color: #000;
}

.error,
.all_error {
  color: #f00;
  font-weight: bold;
  padding: 5px;
  display: block;
  width: 100%;
  text-align: right;
}

#after_msg {
  display: none;
}

#after_msg p {
  font-size: 1.5em;
  margin-bottom: 1em;
}

.mail::before {
  content: ' : ';
}

.map a {
  display: block;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 5px;
  position: relative;
}

.map a::after {
  content: "Get Direction";
  padding: 5px 1.5em;
  color: #000;
  font-weight: bold;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  bottom: 2em;
  right: 2em;
}

.map img {
  display: block;
  width: 100%;
}

@media (max-width: 1400px) {
  header {
    background-size: 120px;
    background-position: 0 1.5em;
  }

  h1 {
    font-size: 2.5em;
    padding-top: 1em;
  }
}


@media (max-width: 700px) {
  #bg {
    background: url(./images/bg.jpg) no-repeat #000;
    background-size: cover;
  }

  header {
    margin-bottom: 0;
    background-size: 80px;
    background-position: 1em 1em;
    color: #000;
  }

  h1 {
    font-size: 1.6em;
    padding-top: 2.5em;
    line-height: 1;
  }

  main {
    background-color: #ffffff00;
    padding: 0;
    margin: 0;
    border-radius: 0;
  }

  button {
    margin-bottom: 0;
  }

  section {
    padding: 1.5em 1em;
    border-radius: 0;
    margin-bottom: 0;
    background-color: inherit;
  }

  section>div {
    padding: 1.5em;
  }

  h2 {
    text-align: center;
    font-size: 1.4em;
    margin-bottom: 0;
  }

  h2 .required {
    display: block;
    text-align: right;
  }

  h3 {
    font-size: 1.2em;
    padding-top: 1em;
  }

  p a {
    margin-left: -.5em;
  }

  p {
    margin-bottom: 1em;
  }

  form .required::after {
    font-size: 1em;
  }

  label {
    width: 100%;
    line-height: 1;
  }

  textarea {
    height: 80px;
  }

  #after_msg p {
    font-size: 1em;
    text-align: center;
  }

  footer {
    background-color: #0009;
    padding-bottom: 2em;
  }

  footer span {
    display: block;
  }
}