* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  font-family: "Montserrat";
  background-color: #f3f3f3;
  overflow-x: hidden;
}

/* SECTION 1 */

.hero {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 120vh;
  object-fit: cover;
}

nav {
  display: flex;
  width: 100%;
  height: 137px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 7% 0px 7%;
  background-color: #ecd7bc;
}

.nav-title {
  font-family: "Sacramento";
  font-style: normal;
  font-weight: normal;
  font-size: 65px;
  color: #000;
}

.nav-title a {
  color: #000;
}

.nav-link {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 22px;
}

.product-link {
  margin-right: 52px;
}

.s2 {
  margin-left: 7%;
  margin-right: 7%;
  margin-top: 7%;
}

.form-cont {
  display: flex;
  flex-direction: column;
}

input {
  width: 50px;
}

.form-btn {
  width: 195px;
  height: 50px;
  border: none;
  background: #ecd7bc;
  border-radius: 3px;

  font-weight: 500;
  font-size: 21px;

  color: #000000;
  margin-top: 20px;
  cursor: pointer;
}

.name,
.email {
  width: 98%;
  height: 55px;
  padding-left: 20px;

  background: #ffffff;
  border: 1px solid #bfbfbf;
  border-radius: 5px;

  font-size: 16px;
  font-family: "montserrat";
  color: rgb(21, 21, 21);
}

.name-label,
.email-label,
.message-label {
  font-size: 20px;
  margin-bottom: 8px;

  color: #000000;
}

.email-label,
.message-label {
  margin-top: 30px;
}

.message {
  width: 98%;
  height: 175px;
  display: flex;
  justify-content: center;
  padding-bottom: 120px;
  padding-left: 20px;

  background: #ffffff;
  border: 1px solid #bfbfbf;
  border-radius: 5px;

  font-size: 16px;
  font-family: "montserrat";
  color: rgb(21, 21, 21);
}

.time {
  width: 65.5%;
  height: 514px;

  background: #9a8177;
  justify-self: flex-end;
}

.day-cont {
  display: flex;
  justify-content: space-between;
}

.time-title {
  width: 283px;
  height: 44px;
  font-weight: 600;
  font-size: 36px;
  margin: 0 auto;
  padding-top: 50px;

  color: #ffffff;
}

.upper-cont {
  margin-top: 80px;
}

.day-cont {
  margin-left: 35px;
  margin-right: 35px;
  padding-top: 20px;
}

.time p {
  font-size: 22px;
  line-height: 29px;

  color: #ffffff;
}

.s2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

footer {
  margin-top: 35vh;
  width: 100%;
  height: 215px;

  background: #9a8177;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin-left: 88px;

  font-size: 28px;
  color: #ffffff;
}

.socials {
  margin-right: 88px;

  font-size: 24px;
  color: #ffffff;
}

nav li a {
  color: black;
  text-decoration: underline;
}

.nav-mobile {
  display: none;
}

@media only screen and (max-width: 667px) {
  .s2 {
    display: flex;
    flex-direction: column;
  }

  .form {
    margin-top: 50px;
  }

  .time {
    width: 100%;
    margin-top: 15vh;
  }

  .time-title {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }

  .time p {
    font-size: 18px;
  }

  .form-btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  footer {
    flex-direction: column;
  }

  .copyright,
  .socials {
    margin: 0;
    text-align: center;
  }

  .copyright {
    font-size: 24px;
    margin-top: 15%;
  }

  .socials {
    font-size: 18px;
    margin-bottom: 15%;
  }
}
