@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

navbar ul {
  display: flex;
  position: absolute;
  margin-right: 15px;
  bottom: 0;
  right: 0;
}

navbar li {
  text-decoration: none;
  list-style: none;
  margin-right: 25px;
  font-size: 20px;
}

navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

navbar a:hover {
  color: #000;
  transition: .20s;
}

* {
  margin: 0;
  padding: 0;
}

.bg-img {
  width: 100%;
  height: 100%;
}

#closeBtn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 5px;
  color: orange;
  z-index: 100;
}

.fa-times {
  font-size: 28px !important;
  color: #fff;
}

#closeBtn:hover {
  color: #000;
}

.main-section {
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 999;
}

.header {
  width: 100%;
  background: orange;
  height: 200px;
  text-align: center;
  position: relative;
  font-family: 'Raleway', sans-serif;
}

.contactForm {

  width: 320px;
  right: 18px;
  top: 250px;
  bottom: 15px;
  height: 350px !important;
  background: rgba(47, 108, 92, 0.9);
  z-index: 99;
  padding-top: 10px;
  position: fixed;
  /* border: 2px solid #fff; */
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
  animation: slide 2s forwards;
  margin-right: -5px;
}

.contactForm i {
  height: 10px;
}

.contactForm h4 {
  font-size: 20px;
  text-align: center;
  color: white;
}

form {
  display: block;
  position: absolute;
  margin: 0 auto !important;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 50%;
  /* padding-top: 40px; */
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

input:focus::-webkit-input-placeholder {
  color: orange;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

input:focus {
  border: 3px solid #000;
  outline: none;
}

textarea {
  /* width: 250px;
  height: 30px; */
  /* margin-top: 15px; */
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  /* padding: 18px; */
  margin-bottom: 10px;
  color: #fff;
  border: 2px solid lightgray;
  border-radius: 7px;
}

#email,
#firstName,
#lastName {
  width: 250px;
  height: 30px;
  margin-top: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  padding: 18px;
  color: #fff;
  border: 2px solid lightgray;
  border-radius: 7px;
}

#email:hover,
#firstName:hover,
#lastName:hover,
#area:hover {
  border: 2px solid orange;
}

#area::placeholder {
  color: gray !important;
  padding: 10px 30px;
}

#cbox {
  margin: 5px;
}

#btn {
  margin-top: 10px;
  padding: 10px 25px;
  border: none;
  background: #f0f0f5;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  border-radius: 25px;
}

#btn:hover {
  background: orange;
}

@keyframes slide {

  from {
    right: -700px;
  }

  to {
    right: 7px;
  }
}