@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  width: 100vw;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  justify-items: center;
  align-items: center;
}
.bg-image{
  background-image: url(slideshow1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  filter: blur(8px);
  -webkit-filter: blur(8px);
  overflow: none;

}
/* Pretty Stuff */
.contact-form-container {
  background: var(--lotsOfYellow);
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  opacity:1;
  position:relative;
  bottom:725px;


}

.contact-us {
  position: relative;
  width: 250px;
  background: var(--kindaBlue);
  overflow: hidden;
}
.contact-us:before {
  position: absolute;
  content: "";
  bottom: -50px;
  left: -100px;
  height: 250px;
  width: 400px;
  background: var(--lotsOfYellow);
  transform: rotate(25deg);
}
.contact-us:after {
  position: absolute;
  content: "";
  bottom: -80px;
  right: -100px;
  height: 270px;
  width: 400px;
  background: var(--navyBlue);
  transform: rotate(-25deg);
}

.contact-header {
  color: white;
  position: absolute;
  transform: rotate(-90deg);
  top: 120px;
  left: -40px;
}
.contact-header h1 {
  font-size: 1.5rem;
}

.social-bar {
  position: absolute;
  bottom: 20px;
  left: 75px;
  z-index: 1;
  width: 100px;
}
.social-bar ul {
  list-style-type: none;
}
.social-bar ul li {
  display: inline-block;
  color: white;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin-right: -4px;
  font-size: 1.2rem;
}

.contact-us-header {
  text-align: center;
  padding: 20px 0;
  color: var(--navyBlue);
}
.contact-us-header h1 {
  font-weight: normal;
}
.contact-us-header h2 {
  margin-top: 10px;
  font-weight: 300;
}

.address, .email, .phone {
  text-align: center;
  padding: 20px 0;
  color: var(--navyBlue);
}
.address h3, .email h3, .phone h3 {
  font-size: 0.9rem;
  font-weight: 500;
}
.address i, .email i, .phone i {
  color: var(--navbar);
  font-size: 1.7rem;
  margin-bottom: 20px;
}

.contact-form-form {
  position: relative;
  width: 440px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background: var(--kindaBlue);
}
.contact-form-form input, .contact-form-form textarea {
  background: var(--kindaBlue);
  display: block;
  margin: 20px auto;
  width: 100%;
  border: 0;
}
.contact-form-form input {
  height: 40px;
  line-height: 40px;
  outline: 0;
  border-bottom: 1px solid #e0ac1c;
  font-size: 1rem;
  color: white;
}
.contact-form-form textarea {
  border-bottom: 1px solid var(--lotsOfYellow);
  resize: none;
  outline: none;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: white;
}
.contact-form-form button {
  position: absolute;
  display: block;
  height: 40px;
  width: 250px;
  left: 95px;
  border: 0;
  border-radius: 20px;
  bottom: -20px;
  background: var(--navyBlue);
  color: white;
  font-size: 1.1rem;
  font-weight: 300;
  outline: none;
}

.contact-form {
  padding-bottom: 40px;
}

/* Layout Stuff */


.contact-form-container {
  width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 0.5fr 0.5fr 2fr;
  grid-template-areas: "contact-us header header header" "contact-us address phone email" "contact-us contact-form contact-form contact-form";
  z-index:1;
}

.contact-us {
  grid-area: contact-us;
}

.contact-us-header {
  grid-area: header;
}

.address {
  grid-area: address;
}

.phone {
  grid-area: phone;
}

.email {
  grid-area: email;
}

.contact-form {
  grid-area: contact-form;
}
.navbar{
  position:fixed;
  top:0;
  overflow-y:hidden;

}
