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

:root {
  --light: #c5c2ba;
  --medium: #7f746b;
  --dark: #494949;
  --black: #000000;
  --green: #7c8b77;
  --pink: #db908a;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--dark);
  font-family: 'Lato';
}

.container {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  margin: 0px auto;
  padding: 0px;
}

.form-row {
  display: flex;
  flex-direction: column;
  height: 65px;
  margin-top: 10px;
}

.form-row > input {
  width: 100%;
  padding: 7px 10px;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9em;
  border: 1px solid var(--light);
  border-bottom: 0px;
  border-radius: 0;
  color: var(--dark);
}

#email {
  text-align: center;
}

.mailinglist > form {
  text-align: center;
  margin: 10px auto;
}

.form-button {
  border: 1px solid var(--light);
  width: 100%;
  padding: 6px 10px;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.8em;
  text-transform: uppercase;
  background-color: var(--dark);
  color: var(--light);
  text-decoration: none;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 120%;
}

.form-button:hover {
  background-color: var(--green);
  color: white;
}

.top-bar {
  display: flex;
  align-items: center;
  position: relative;
  padding: 15px;
  top: 0;
  background-color: var(--dark);
  border-bottom: 3px solid var(--medium);
  color: white;
  min-height: 30px;
  z-index: 6;
}

.login-bar {
  width: 1000px;
  color: white;
  margin: 0px auto;
  display: none;
  justify-content: flex-end;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 0.85em;
  padding: 0px 72px;
}

.login-bar a {
  color: white;
  text-decoration: none;
  padding: 0px 8px;
  opacity: 0.7;
  font-weight: 500;
}

.login-bar a:hover {
  opacity: 1;
}

header {
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 6;
  box-shadow: 0px 6px 3px rgba(0, 0, 0, 0.155);
  border-bottom: 3px solid var(--medium);
}

.banner {
  position: relative;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55vh;
  margin: 0px auto;
  overflow: hidden;
  border-bottom: 3px solid var(--medium);
  background-color: var(--black);
}

#bannervid {
  position: absolute;
  z-index: 2;
}

#overlay {
  position: absolute;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  background-color: var(--light);
  mix-blend-mode: screen;
  opacity: 0.2;
}

.banner-text {
  color: var(--light);
  position: relative;
  text-align: center;
  z-index: 3;
  padding: 100px 40px;
  font-size: clamp(3rem, 9vw, 10rem);
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 95%;
  letter-spacing: -9px;
  mix-blend-mode: overlay;
  margin-bottom: 60px;
  background: -webkit-linear-gradient(55deg, #9fcdf9, white, #9fcdf9);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-logo img {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 3;
  opacity: 0.9;
  filter: drop-shadow(5px 2px 7px rgba(0, 0, 0, 0.45));
}

section {
  width: 100%;
  padding: 0px 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--light);
}

section:nth-child(even) {
  background-color: #a29d99;
}

.text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-title {
  width: 100%;
  font-size: 3.5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-weight: 300;
  color: white;
  line-height: 110%;
  opacity: 1;
}

.content-text {
  width: 100%;
  font-size: 1.1em;
  font-weight: 400;
  color: var(--medium);
  line-height: 190%;
  padding: 10px 0px;
  letter-spacing: 0.5px;
}

.content-text a {
  color: var(--medium);
  text-decoration: none;
}

.content-text a:hover {
  color: var(--light);
}

.content-tel {
  font-size: 1.3em;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 30px;
  text-align: center;
}

.content-tel > span {
  font-weight: 400;
}
.review-section {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 80px;
}

.review-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin: 30px auto;
}

.review-card {
  background-color: white;
  padding: 40px 60px;
  border-radius: 3px;
  box-shadow: 0px 10px 6px rgba(0, 0, 0, 0.193);
}

.reviewer {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}

.review-card p {
  font-size: 1rem;
  color: var(--medium);
  line-height: 150%;
}

.review-card .reviewer {
  margin-top: 15px;
  font-weight: 700;
  color: var(--dark);
}

.reviewer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
}

#toggle-btn {
  border: none;
  background: none;
  color: var(--medium);
  font-size: 0.85rem;
  font-weight: 300;
  cursor: pointer;
  padding: 0px;
  margin: 0px 5px;
  opacity: 0.5;
  margin-top: 10px;
  font-style: italic;
}

#toggle-btn:hover {
  opacity: 1;
}

.hide {
  display: none;
}

.unhide {
  display: inline;
}

footer {
  background-color: var(--dark);
  border-top: 3px solid var(--medium);
  color: white;
  padding: 15px 0px;
}

.footer-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0px auto;
  padding: 0px 60px;
}

.footer-title {
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-tel {
  font-size: 1em;
  font-weight: 600;
  color: var(--light);
  text-transform: uppercase;
  text-align: center;
  opacity: 0.8;
}

.footer-title-hide {
  opacity: 0;
  font-size: 1em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.signup-title {
  font-size: 0.85em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-column > a {
  display: block;
  font-size: 0.9em;
  line-height: 120%;
  color: var(--light);
  margin-bottom: 10px;
  text-decoration: none;
  opacity: 0.8;
}

.footer-column > a:hover {
  color: white;
  opacity: 1;
}

#copyright {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  width: 100vw;
  text-align: center;
  font-size: 0.8em;
  padding: 15px 0px;
  background-color: #323232;
  color: var(--light);
}

.footer-column {
  display: flex;
  flex-direction: column;
  width: 22%;
  margin: 20px;
  text-align: left;
}

.footer-column:first-of-type {
  width: 34%;
  padding: 0px;
  justify-content: space-between;
  margin-right: 60px;
}

.footer-column img {
  width: 78%;
  max-width: 300px;
  margin: 0px auto 5px auto;
}

.footer-mail {
  font-size: 1.2em;
  color: var(--light);
  text-align: center;
  text-decoration: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 850px;
  margin: 40px auto;
  color: var(--medium);
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.95em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-bottom: 20px;
  margin-top: 5px;
  padding: 10px;
  border: 1px solid var(--light);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.contact-form textarea {
  height: 150px;
}

.disclaimer {
  margin-top: 30px;
  font-size: smaller;
  font-weight: 300;
  font-style: normal;
  line-height: 130%;
}

.small {
  font-size: small;
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  footer {
    display: none;
  }

  .banner {
    height: 55vh;
  }

  .banner-text {
    font-size: clamp(3rem, 12vw, 10rem);
    letter-spacing: -5px;
    padding: 20px;
    margin-bottom: 30px;
  }

  section {
    padding: 0px 40px;
  }

  .content-title {
    font-size: 2.35rem;
    padding: 10px;
    line-height: 115%;
    font-weight: 400;
    opacity: 1;
    letter-spacing: 0px;
  }

  .content-text {
    font-size: 1.1rem;
    line-height: 150%;
    padding: 10px;
    font-weight: 400;
  }

  .contact-form {
    width: 90%;
  }
}

@media screen and (max-width: 575px) {
  .content-title {
    letter-spacing: 0px;
  }

  .review-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin-top: 10px;
  }

  .review-card {
    margin-top: 20px;
    padding: 20px 40px;
  }

  .banner-text {
    font-size: clamp(3rem, 16vw, 12rem);
    letter-spacing: -5px;
    padding: 20px;
    margin-bottom: 20px;
  }

  .banner {
    height: 40vh;
  }

  section {
    padding: 0px 10px;
  }

  footer {
    display: none;
  }
}
