/* 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;
}

@media only screen and (max-width: 768px) {
  nav {
    position: fixed;
    z-index: 100;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    box-sizing: border-box;
    height: 3.5rem;
    width: 100%;
    background-color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
  }
  nav img {
    width: 6rem;
    height: 6rem;
  }
  nav button {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
  }
  nav ul {
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    transition: opacity 0.3s ease-out;
    display: flex;
    flex-direction: column;
    padding-top: 2.5rem;
  }
  nav ul li {
    padding: 2.5rem;
    text-align: center;
  }
  nav ul li a {
    color: #957850;
    text-decoration: none;
  }
  nav ul .close {
    font-size: 1.7rem;
  }
  nav ul:not(.active) {
    top: -200%;
    opacity: 0;
  }
}
@media only screen and (min-width: 768px) {
  nav {
    position: absolute;
    z-index: 100;
    bottom: 0;
    width: 100%;
    height: 10%;
    background-color: white;
    color: #957850;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  }
  nav.locked {
    position: fixed;
    bottom: unset;
    top: 0;
  }
  nav.locked img {
    position: relative;
    top: unset;
    left: unset;
    margin-left: 2rem;
    margin-top: 1rem;
  }
  nav ul {
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  nav ul li {
    flex-grow: 1;
    text-align: center;
  }
  nav ul li.active {
    font-weight: bold;
    font-size: 1.1rem;
  }
  nav ul li a {
    color: #957850;
    text-decoration: none;
  }
  nav img {
    position: fixed;
    top: 1rem;
    left: 2rem;
    width: 10.5rem;
    height: 10.5rem;
  }
}
section#landing {
  position: relative;
  height: 100vh;
  width: 100vw;
  margin-top: -3.5rem;
}
section#landing::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80%;
  background-image: url("/assets/images/landing.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 20%;
  clip-path: circle(100% at 50% 10%);
}
section#landing h1 {
  display: none;
}
section#landing a {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 3rem;
  font-size: 1rem;
  background-color: #d2bc55;
  border: none;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  section#landing {
    position: relative;
    display: inherit;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    margin-top: -10vh;
    background-image: none;
    clip-path: none;
  }
  section#landing::before {
    content: "";
    background-image: url("/assets/images/landing.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  section#landing h1 {
    display: inherit;
    position: absolute;
    bottom: 10%;
    right: 0;
    font-family: "Montserrat", sans-serif;
    padding: 3rem;
    font-size: 1.75rem;
    color: white;
    font-weight: bold;
  }
  section#landing h1::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40rem;
    height: 25rem;
    background-image: linear-gradient(148deg, transparent 0%, transparent 50%, #d2bc55 50%);
    z-index: -1;
  }
}
section#introductie,
section#steun {
  padding: 5rem 10%;
  text-align: center;
}
section#introductie#introductie,
section#steun#introductie {
  padding-top: 0;
}
section#introductie h1,
section#steun h1 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
}
section#introductie h2,
section#steun h2 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  margin-bottom: 1.5rem;
}

@media only screen and (min-width: 768px) {
  section#introductie {
    padding-top: 5rem !important;
  }
}
section#over {
  background-color: #e6e6e6;
  padding: 3rem 1rem;
  text-align: center;
  -webkit-box-shadow: inset 0px 0px 24px -12px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px 0px 24px -12px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 0px 24px -12px rgba(0, 0, 0, 0.75);
}
section#over h2 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  margin-bottom: 1.5rem;
}
section#over p {
  margin-bottom: 1.5rem;
}
section#over img {
  border-radius: 0.3rem;
}

@media only screen and (min-width: 768px) {
  section#over {
    position: relative;
    display: flex;
    height: 90vh;
    padding: 0 5rem;
    font-weight: 300;
  }
  section#over div {
    padding: 7rem 3rem;
  }
  section#over::after {
    content: "";
    position: absolute;
    bottom: 2rem;
    height: 2%;
    left: 0;
    width: 100%;
    background-color: #d2bc55;
  }
  section#over p {
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  section#over img {
    height: 75vh;
  }
}
section#galerij {
  padding: 2.5rem 1rem;
}
section#galerij h2 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
}
section#galerij p {
  margin-top: 1rem;
  text-align: center;
}
section#galerij ul {
  margin-top: 1.5rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}
section#galerij ul li {
  margin-top: 0.5rem;
}
section#galerij ul li img {
  max-width: 150px;
}

@media only screen and (min-width: 768px) {
  section#galerij {
    padding: 2.5rem 20%;
  }
  section#galerij ul {
    justify-content: space-between;
  }
  section#galerij ul li {
    margin-top: 1rem;
  }
  section#galerij ul li img {
    max-width: 250px;
  }
}
section#historiek {
  padding: 0 1rem;
}
section#historiek > h1 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  padding-top: 2.5rem;
  border-left: 1px solid #d2bc55;
}
section#historiek > p {
  text-align: center;
  padding: 2.5rem 2.5rem;
  border-left: 1px solid #d2bc55;
}
section#historiek > p:last-of-type {
  border-left: none;
  border-right: 1px solid #d2bc55;
}
section#historiek > h2 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 2.5rem 0;
  border-left: 1px solid #d2bc55;
  border-bottom: 1px solid #d2bc55;
}
section#historiek > h2:last-of-type {
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #d2bc55;
}
section#historiek h2 {
  color: #957850;
}
section#historiek .timeline-element {
  padding: 4rem 2.5rem;
  position: relative;
}
section#historiek .timeline-element:nth-of-type(even) {
  border-left: 1px solid #d2bc55;
  border-bottom: 1px solid #d2bc55;
}
section#historiek .timeline-element:nth-of-type(even) time {
  left: 1rem;
}
section#historiek .timeline-element:nth-of-type(odd) {
  border-right: 1px solid #d2bc55;
  border-bottom: 1px solid #d2bc55;
  text-align: right;
}
section#historiek .timeline-element:nth-of-type(odd) time {
  right: 1rem;
}
section#historiek .timeline-element:last-child {
  border-bottom: none;
}
section#historiek .timeline-element h2 {
  font-size: 1.2rem;
}
section#historiek .timeline-element p {
  margin: 1rem 0;
}
section#historiek .timeline-element time {
  position: absolute;
  bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: #957850;
}

@media only screen and (min-width: 768px) {
  section#historiek {
    padding: 0 20%;
  }
}
.order-page .price {
  font-family: "Montserrat", sans-serif;
  color: #ad962e;
}

section#bestel {
  padding: 0 2.5rem;
}
section#bestel h1 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  margin-top: 2.5rem;
}
section#bestel ul {
  display: flex;
  justify-content: space-around;
  flex-flow: row wrap;
  padding-bottom: 7rem;
}
section#bestel ul li {
  position: relative;
  max-width: 8rem;
  -webkit-box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
  padding: 2.5rem 1rem;
  margin: 1rem 0;
  display: block;
  flex-grow: 1;
  overflow: hidden;
}
section#bestel ul li figcaption {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-bottom: 1.5rem;
  text-overflow: clip;
  overflow: hidden;
}
section#bestel ul li button {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: transparent;
  border: none;
  font-size: 1.1rem;
  color: #3a3c37;
  line-height: 0rem;
}
section#bestel ul li button svg {
  width: 1.5rem;
  height: 1.5rem;
}
section#bestel ul li span {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
section#bestel ul li span.out {
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  color: #ee4949;
}

main aside > div {
  display: none;
}

#item-details {
  position: fixed;
  width: 80%;
  left: 50%;
  top: 50%;
  background-color: white;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
  padding: 2.5rem 1rem;
  margin: 1rem 0;
  display: block;
  transition: opacity 0.3s ease-out;
}
#item-details:not(.active) {
  opacity: 0;
  pointer-events: none;
}
#item-details figure img {
  max-width: 100%;
}
#item-details figcaption {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-bottom: 1.5rem;
}
#item-details button {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: transparent;
  border: none;
  font-size: 1.1rem;
  color: #3a3c37;
  line-height: 0rem;
}
#item-details button svg {
  width: 1.5rem;
  height: 1.5rem;
}
#item-details p {
  margin-bottom: 1rem;
  text-align: center;
}
#item-details span {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
#item-details span.out {
  font-size: 0.8rem;
  font-family: "Montserrat", sans-serif;
  color: #ee4949;
}

section#cart {
  position: fixed;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
section#cart h2 {
  display: none;
  padding: 1.5rem;
}
section#cart div {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  align-items: center;
}
section#cart div h3 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  text-align: left;
  font-size: 1.5rem;
  color: #3a3c37;
  padding: 0;
  display: flex;
  align-items: center;
}
section#cart div h3 ion-icon {
  font-size: 2.5rem;
}
section#cart div h3 span {
  margin-left: 1rem;
}
section#cart div button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  background-color: #d2bc55;
  border: none;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
section#cart ul {
  width: 100%;
  overflow-y: scroll;
  flex-grow: 1;
}
section#cart ul:not(.active) {
  display: none;
}
section#cart ul li {
  padding: 1rem 2.5rem;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
section#cart ul li:nth-of-type(even) {
  background-color: #e6e6e6;
}
section#cart ul li span {
  font-size: 1.1rem;
}
section#cart ul li p {
  flex-grow: 1;
  padding-left: 1rem;
  text-overflow: ellipsis;
  max-width: 65%;
  overflow: hidden;
}
section#cart ul li button {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
}

@media only screen and (min-width: 768px) {
  .order-page {
    display: flex;
  }

  section#bestel {
    width: 70%;
    box-sizing: border-box;
    padding: 0 15%;
  }
  section#bestel h1 {
    margin-top: 1.5rem;
  }
  section#bestel ul li {
    max-width: 12.5rem;
  }

  #item-details {
    width: 30%;
  }

  main aside {
    position: fixed;
    padding: 2rem;
    right: 0;
    width: 30%;
    height: 90vh;
    top: 10%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
  }
  main aside > div {
    margin-top: 1rem;
    display: unset;
    flex-shrink: 1;
    background-color: white;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    text-align: center;
  }
  main aside section#cart {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    height: 1px;
    width: 100%;
    margin-bottom: 1rem;
    flex-grow: 2;
    justify-content: space-between;
    align-items: center;
  }
  main aside section#cart h2 {
    display: inherit;
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    color: #957850;
    padding: 0 0 2.5rem;
    padding-top: 1.5rem;
  }
  main aside section#cart ul:not(.active) {
    display: unset;
  }
}
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
}

.checkmark {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #7ac142;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #7ac142;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.checkmark.loading:not(.active) .checkmark__circle {
  animation: loading 1.6s cubic-bezier(0.65, 0, 0.45, 1) infinite;
}

.checkmark.active .checkmark__circle {
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark.active.success {
  animation: fill-success 0.4s ease-in-out forwards, scale 0.3s ease-in-out 0.9s both;
}
.checkmark.active.success .checkmark__check {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes loading {
  0% {
    stroke-dashoffset: 166;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -166;
  }
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill-success {
  100% {
    box-shadow: inset 0px 0px 0px 2.5rem #b0da8f;
  }
}
section#complete {
  display: flex;
  flex-flow: column nowrap;
  box-sizing: border-box;
  width: 100%;
  align-items: center;
}
section#complete h1 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  padding-top: 1.5rem;
}
section#complete .input-group {
  position: relative;
  margin: 2rem 0 0;
  width: 75%;
}
section#complete .input-group input:not([type=checkbox]),
section#complete .input-group select {
  padding: 1rem 1rem;
  border: 0;
  background-color: #e6e6e6;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #3a3c37;
  font-size: 1rem;
}
section#complete .input-group input:not([type=checkbox]) option,
section#complete .input-group select option {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}
section#complete .input-group input:not([type=checkbox]):focus, section#complete .input-group input:not([type=checkbox]):valid,
section#complete .input-group select:focus,
section#complete .input-group select:valid {
  outline: none;
  padding-top: 1.4rem;
}
section#complete .input-group input:not([type=checkbox]):focus + label, section#complete .input-group input:not([type=checkbox]):valid + label,
section#complete .input-group select:focus + label,
section#complete .input-group select:valid + label {
  top: 0.3rem;
  font-size: 0.8rem;
}
section#complete .input-group input:not([type=checkbox]) + label,
section#complete .input-group select + label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #957850;
  transition: all 0.15s ease-in-out;
}
section#complete p {
  margin: 2rem;
  box-sizing: border-box;
}

section#cart {
  position: fixed;
  bottom: 0;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}
section#cart h2 {
  display: none;
  padding: 1.5rem;
}
section#cart div {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  align-items: center;
}
section#cart div h3 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  text-align: left;
  font-size: 1.5rem;
  color: #3a3c37;
  padding: 0;
  display: flex;
  align-items: center;
}
section#cart div h3 ion-icon {
  font-size: 2.5rem;
}
section#cart div h3 span {
  margin-left: 1rem;
}
section#cart div button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  background-color: #d2bc55;
  border: none;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
section#cart ul {
  width: 100%;
  overflow-y: scroll;
  flex-grow: 1;
}
section#cart ul:not(.active) {
  display: none;
}
section#cart ul li {
  padding: 1rem 2.5rem;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
section#cart ul li:nth-of-type(even) {
  background-color: #e6e6e6;
}
section#cart ul li span {
  font-size: 1.1rem;
}
section#cart ul li p {
  flex-grow: 1;
  padding-left: 1rem;
  text-overflow: ellipsis;
  max-width: 65%;
  overflow: hidden;
}
section#cart ul li button {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
}

@media only screen and (min-width: 768px) {
  section#complete {
    width: 75%;
  }
  section#complete .input-group {
    width: 50%;
  }

  main > section#cart {
    position: fixed;
    height: 90vh;
    right: 0;
    width: 25%;
    top: 10%;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
  }
  main > section#cart h2 {
    display: inherit;
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    text-align: center;
    color: #957850;
    padding: 0 0 2.5rem;
    padding-top: 1.5rem;
  }
  main > section#cart ul:not(.active) {
    display: unset;
  }
}
section#contact {
  text-align: center;
  padding-bottom: 5rem;
}
section#contact h1,
section#contact h2 {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: #957850;
  padding: 0 0 2.5rem;
  padding: 2.5rem 1rem;
}
section#contact p {
  padding: 0 1rem;
}
section#contact h2 {
  font-size: 1.8rem;
  padding-bottom: 1.5rem;
}
section#contact p:last-of-type {
  margin-top: 2rem;
}
section#contact form {
  background-color: #e6e6e6;
  padding: 3rem 1rem;
  margin-top: 2rem;
  text-align: center;
  -webkit-box-shadow: inset 0px 0px 24px -12px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 0px 0px 24px -12px rgba(0, 0, 0, 0.75);
  box-shadow: inset 0px 0px 24px -12px rgba(0, 0, 0, 0.75);
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
section#contact form button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  background-color: #d2bc55;
  border: none;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: bold;
  margin-top: 1rem;
  text-decoration: none;
}
section#contact form .input-group {
  position: relative;
  margin: 2rem 0 0;
  width: 85%;
}
section#contact form .input-group input:not([type=checkbox]),
section#contact form .input-group textarea,
section#contact form .input-group select {
  padding: 1rem 1rem;
  border: 0;
  background-color: white;
  border-radius: 0.5rem;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #3a3c37;
  font-size: 1rem;
  resize: none;
}
section#contact form .input-group input:not([type=checkbox]) option,
section#contact form .input-group textarea option,
section#contact form .input-group select option {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}
section#contact form .input-group input:not([type=checkbox]):focus, section#contact form .input-group input:not([type=checkbox]):valid,
section#contact form .input-group textarea:focus,
section#contact form .input-group textarea:valid,
section#contact form .input-group select:focus,
section#contact form .input-group select:valid {
  outline: none;
  padding-top: 1.4rem;
}
section#contact form .input-group input:not([type=checkbox]):focus + label, section#contact form .input-group input:not([type=checkbox]):valid + label,
section#contact form .input-group textarea:focus + label,
section#contact form .input-group textarea:valid + label,
section#contact form .input-group select:focus + label,
section#contact form .input-group select:valid + label {
  top: 0.3rem;
  font-size: 0.8rem;
}
section#contact form .input-group input:not([type=checkbox]) + label,
section#contact form .input-group textarea + label,
section#contact form .input-group select + label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #957850;
  transition: all 0.15s ease-in-out;
}
section#contact ul li {
  margin: 0.5rem;
  color: #957850;
}
section#contact ul li span {
  color: #3a3c37;
}

@media only screen and (min-width: 768px) {
  section#contact h1,
section#contact h2 {
    padding: 2rem 10rem;
  }
  section#contact p {
    padding: 0 10rem;
  }
  section#contact form .input-group {
    width: 50%;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
}

p {
  letter-spacing: 0.04rem;
  font-size: 1.2rem;
  color: #3a3c37;
}

a {
  text-decoration: none;
  color: #957850;
  font-weight: bold;
}

main {
  padding-top: 3.5rem;
}

* {
  max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .mobile {
    display: none;
  }

  main {
    padding-top: 10vh;
  }
}

/*# sourceMappingURL=main.css.map */
