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

html, body   {
  height: 100%;
	font-family: 'Montserrat', sans-serif;
}
		
.banner	{
	position: relative;
	background-color: white;
	width: 100%;
	height: auto;
		}
		
.logo	{
	position: relative;
	display: block;
	border: 3px solid #f349a1;
	margin-left: auto;
	margin-right: auto;
	width: 30%;
	height: auto;
  border-radius: 20px;
}


/* Navbar */
nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  border: 3px solid #f349a1;
  background-color: #9b2e66;
  font-family: 'Montserrat', sans-serif;
}

.logo2 {
  color:#ded9dc;
  text-transform: lowercase;
  letter-spacing: 1px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  width: 60%;
  justify-content: space-around;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color:#a5a1a3;
  text-decoration: none;
  letter-spacing: 0px;
  font-size: 14px;
  font-weight: bold;
}

.nav-links .current {
  color:#f7f4f5
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 2.5px;
  background-color:#a5a1a3;
  margin: 5px;
  transition: all 0.3s ease;
}

  .landing {
  height: 10vh;
  display: flex;
  justify-content: left;
  align-items: start;
}

.landing h1 {
  margin: 10px;
  font-size: 20px;
  color: red;
}  

@media screen and (max-width: 1024px) {
  .nav-links{
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0px;
    height: 92vh;
    top: 12vh;
    background-color: #9b2e66;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .nav-links li {
    opacity: 0;
  }
  .hamburger {
    display: block;
  }
}
.nav-active {
  transform: translateX(0%);
}
@keyframes navLinkFade {
  from {
      opacity: 0;
      transform: translateX(70px);
  }
  to {
      opacity: 1;
      transform: translateX(0px);
  }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
  transform: rotate(45deg) translate(-5px, -6px);
}

.page-wrapper {
  min-height: 100%;
}

/* form styling */
body {
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  background-color: #db66a2;
  transition: background 0.5s ease;
  position: relative;
}
.field-name,
.field-email,
.field-message,
.field-finish {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:#d6d1d4;
  height: 50px;
  width: 400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  transition: all 0.5s ease;
}

.field-name i,
.field-email i,
.field-message i,
.field-finish i {
  margin-left: 10px;
  margin-right: 15px;
  padding: 20x;
  cursor: pointer;
}

.field-name input,
.field-email input,
.field-message input {
  background: none;
  border: none;
  flex: 1;
  height: 100%;
  outline: none;
}

div.inactive {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 50%);
}

div.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

@keyframes shake {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}




/*   old form
body  {
	text-align: center;
	background-image: url("no12(d-42).jpeg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-position: 10% 0%;
	font-family: sans-serif;
}

.contact-title  {
	margin-top: 100px;
	color: #fff;
	text-transform: lowercase;
	transition: all 4s ease-in-out;
}

.contact-title h1  {
	font-size: 32px;
	line-height: 10px;
}

form  {
	margin-top: 50px;
	transition: all 4s ease-in-out;
}

.form-control  {
	width: 600px;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 1px solid black;
	color: #fff;
	font-size: 18px;
	margin-bottom: 16px;
}

input  {
	height: 45px;
}

form .submit  {
	background: #ff4436;
	border-color: transparent;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
	height: 50px;
	margin-top: 20px;
}

form .submit:hover  {
	background-color: #ff7e75;
	cursor: pointer;
}
*/

/* footer */
.footer	{
	background-color: #9b2e66;
  color:#a5a1a3;
	height: 320px;
  position: relative;
}

.footer .footer-content {
  border: 2px solid #918f90;
  height: 270px;
  display: flex;
  text-decoration: none;
}

.footer .footer-content .footer-section {
  flex: 1;
  padding:2px;
}

.footer .footer-section li {
  list-style: none;
  text-decoration: none;
}
		
.footer .footer-bottom {
  background-color: #8b2c5d;
  color:#a5a1a3;
  height: 50px;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding-top:20px;

}
		


