body {
  background-color: #f1edea;
  font-family: "Playfair Display", serif;
}

/* NAVBAR */

nav {
  --bs-navbar-padding-x: 0;
  font-size: 18px;
  font-family: "Dosis", sans-serif;
  border-bottom-style: solid;
  border-width: 1px;
  background-color: white;
}

/* CONTACT */
@media screen and (min-width: 900px) {
  .content {
    display: flex;
  }
  .map {
    margin: 7%;
    width: 40%;
  }
  form {
    display: flex;
    flex-direction: column;
    width: 50vh;
    margin: 20px;
  }
}



@media screen and (max-width: 900px) {
  .content {
    flex-direction: column;
    align-items: center;
  }
  .fullForm {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .verticalLine{
    visibility: hidden;
  }
}


.formWrapper {
  flex-direction: column;
  margin-top: 100px;
}
h3 {
  text-align: left;
}

h2 {
  text-align: center;
}
hr {
  width: 100%;
  border-color: black;
}
.verticalLine {
  position: absolute;
  transform: rotate(90deg);
  width: 400px;
  margin-left: -200px;
  margin-top: 183px;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}
.contactInfo h3 {
  text-align: left;
}

/* FORM */

.fullForm {
  display: flex;
}
form {
  display: flex;
  flex-direction: column;
  margin: 20px;
}

label {
  margin-bottom: 5px;
}

input {
  margin-bottom: 10px;
  border: none;
  border-bottom: solid;
  background: transparent;
}
/* MAP */
.map {
  width: 100%;
}
embed,
object,
iframe {
  max-width: 100%;
}
h4 {
  display: block;
  margin: 50px;
  font-family: "Playfair Display", serif;
}


.buttonAndIcons {
  display: flex;
  margin-top: 10px;
}
.fa-brands,
.fa-solid {
  color: black;
  margin-top: 20px;
  margin-left: 25px;
  margin-right: 25px;
}
/* CONTACT BUTTON */
.btn {
  line-height: 50px;
  height: 50px;
  text-align: center;
  width: 250px;
  cursor: pointer;
  background-color: #3f4e4f;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  margin-bottom: 4%;
  font-family: "Dosis", sans-serif;
  color: white;
}
.btn-three {
  color: white;
  transition: all 0.5s;
  position: relative;
  height: 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-three::before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #3f4e4f;
  transition: all 0.3s;
  color: white;
}
.btn-three:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.btn-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.2, 1.2);
}
.btn-three:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}


/* FOOTER */

footer {
  background-color: #b7b7b7;
  font-family: "Nova Mono", monospace;
}

.social {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
}

.social a {
  margin: 0 1rem;
}@media screen and (max-width:800px) {
  .social {
    height: 40px;
  }
}

footer .fa-brands,
.fa-solid {
  color: white;
  padding: 1%;
  flex-direction: column;
  margin-top: 3%;
  margin-bottom: 3%;
}

.social a {
  color: white;
  text-decoration: none;
}
