@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: auto;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #FBE9D0;
}

div#container {
  height: 100%;
  overflow-y: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 20px 1fr 20px;
      grid-template-columns: 20px 20px 1fr 20px;
  -ms-grid-rows: 80px 100px auto 100px;
      grid-template-rows: 80px 100px auto 100px;
      grid-template-areas: "nav nav   nav   nav  nav" "header header header header header" "main main main main main" "footer footer footer footer footer";
}

div#container > header {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
  text-align: center;
}

div#container > header h1 {
  color: #2e3b43;
  margin-top: 25px;
}

div#container > header > img {
  margin-top: 35px;
  height: 250px;
  width: auto;
}

div#container > header > div .skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

div#container > header > div .skip:focus {
  position: static;
  width: auto;
  height: auto;
}

div#container > nav {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: nav;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div#container > nav .normalbtn {
  display: none;
}

div#container > nav .home {
  background-color: #5c5c5c;
  border: none;
  color: #f0f7f4;
  padding: 5px 26px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 16px;
  margin: 10px;
}

div#container > nav details summary {
  color: white;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 25px;
  margin-top: 25px;
  cursor: pointer;
}

div#container > nav details ul {
  z-index: 99999;
  position: absolute;
  top: 80px;
  left: 0px;
  width: 100%;
  height: 100%;
  float: right;
  color: white;
  background-color: gray;
  list-style: none;
}

div#container > nav details ul > li {
  padding: 7px;
  padding-bottom: 0px;
}

div#container > nav details ul > li > a {
  border: none;
  color: #f0f7f4;
  padding: 5px 26px;
  text-align: center;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  font-weight: 700;
  margin: 5px;
}

div#container > nav details ul > li:visited {
  color: white;
}

div#container > nav details ul > li:hover {
  background-color: #3d464b;
}

div#container > nav details ul > li:active {
  background-color: white;
  color: black;
}

div#container > nav details summary::before {
  color: white;
  content: '☰';
}

div#container > nav details[open] summary::before {
  color: white;
  content: '☰';
}

div#container > main {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: main;
  margin-top: 100px;
}

div#container > main .contact-container {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

div#container > main .contact-container > .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}

div#container > main .contact-container > .contact > .contact-title h2 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

div#container > main .contact-container > .contact > .contact-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: #d2a05a;
  border-radius: 10px;
  margin-bottom: 20px;
}

div#container > main .contact-container > .contact > .contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: gray;
  border-radius: 50px;
}

div#container > main .contact-container > .contact label {
  font-size: 1.1rem;
  margin-top: 15px;
}

div#container > main .contact-container > .contact > textarea {
  height: 140px;
  width: 100%;
  padding-top: 15px;
  border-radius: 20px;
}

div#container > main .contact-container > .contact button {
  background-color: #D2A05A;
  color: #000000;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 360px;
}

div#container > footer {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: footer;
  background-color: #8A8A8A;
}

div#container > footer > h3 {
  margin-top: 35px;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (min-width: 760px) {
  div#container > nav > details {
    display: none;
  }
  div#container > nav .normalbtn {
    display: block;
  }
  div#container > nav .normalbtn > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
  }
  div#container > nav .normalbtn > ul > li {
    margin-right: 20px;
    list-style: none;
  }
  div#container > nav .normalbtn > ul > li > a {
    font-size: 1rem;
    color: white;
    background-color: #5c5c5c;
    padding: 20px 20px;
    text-decoration: none;
    border-radius: 8px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  div#container > nav .normalbtn > ul > li > a:hover {
    background-color: #3d464b;
  }
  div#container > main {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-area: main;
    margin-top: 100px;
  }
  div#container > main div > h2 {
    text-align: center;
  }
  div#container > main div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  div#container > main div > div > h3 {
    margin-top: 40px;
    text-align: center;
  }
  div#container > main div > div > img {
    margin-top: 20px;
    height: 200px;
  }
}
/*# sourceMappingURL=contact.css.map */