@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap');

body{
  margin:0;
  padding:0;
  font-family: 'Poppins', sans-serif;
  background-color: #95ff00;
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
}

header {
  background: #ff7e00;
  width:100%;
  padding:20px 0;
  color:white;
  text-align:center;
}

a {
  text-decoration:none;
  color:inherit;
  font-size: 30px;
  font-weight: bold;
}

nav ul {
  background-color:#379ad6;
  overflow:hidden;
  color:white;
  padding:0;
  margin:0;
  text-align:center;
  -webkit-transition:max-height 0.4s;
  -ms-transition:max-height 0.4s;
  -moz-transition:max-height 0.4s;
  -o-transition:max-height 0.4s;
  transition:max-height 0.4s;
}

nav ul li {
  display:inline-block;
  padding:20px;
}

nav ul li:hover {
  background-color:#ff7e00;
}

section {
  line-height: 1.5em;
  font-size:0.9em;
  padding:40px;
  width:75%;
  margin:0 auto;
}


@media screen and (max-width:580px){
  
  nav ul {
    max-height:0;
  }
  
  nav ul li {
    width:100%;
    box-sizing:border-box;
    padding:15px;
    text-align:left;
  }
   

}

.container {
	max-width:700px;
	width:100%;
	margin:0 auto;
	position:relative;
    background: #FFF;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    max-height: 900px;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font:400 12px/16px "Open Sans", Helvetica, Arial, sans-serif; }

#contact {
	background:fade(#F9F9F9,85);
	padding:25px;
	margin:80px 0;
}

#contact h3 {
	color: #95ff00;
    margin-top: -20px;
	font-size: 60px;
	font-weight: bold;

}

#contact h4 {
	margin-top: -60px;
	display:block;
	font-size:20px;
    color: #95ff00;
}

fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

#contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

#contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

#contact textarea {
	height:100px;
	max-width:100%;
  resize:none;
}

#contact button[type="submit"] {
	cursor:pointer;
	width:100%;
	border:none;
	background: #95ff00;
	color:#FFF;
	margin:0 0 5px;
	padding:25px 10px;
	font-size:15px;
	text-transform: uppercase;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

#contact button[type="submit"]:hover {
	background:#09C;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active { box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); }

#contact input:focus, #contact textarea:focus {
	outline:0;
	border:1px solid #999;
}
::-webkit-input-placeholder {
 color:#888;
}
:-moz-placeholder {
 color:#888;
}
::-moz-placeholder {
 color:#888;
}
:-ms-input-placeholder {
 color:#888;
}

label.error{
	color: darkred;
	padding-left: 10px;
	font-weight: bold;
}
input.error{
	border-color: darkred !important;
}

footer{
    position:static;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ff7e00;
    height: auto;
    width: 100%;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
    margin-top: 100px;
}
.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 60px;
    font-weight: bold;
    text-transform: capitalize;
    line-height: 3rem;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.footer-content a{
    font-size: 16px;
}

.footer-content img{
  width: 130px;
  height: 130px;
}

.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 19px;
    margin-top: -20px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom{
    background: #379ad6;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;font-family: 'Poppins', sans-serif;

}