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

body{
	background: linear-gradient(90deg,#ffec6c,lightgreen);
}

.navbar{
	background: white;
	display: flex;
	position: sticky;
	position: -webkit-sticky;
	top:0;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	z-index: 9;
}

.navbar-dark{
	text-align: center;
}

.navbar-links{
	margin-bottom: 10px;
}

.navbar li{
	list-style: none;
	float: left;
	padding: 2vw;
	font-family: 'Open Sans';
}

.navbar li a{
	text-decoration: none;
	color: black;
}

.navbar li a:hover{
	color: orangered;
}

.navbar li a:active{
	color: darkorange;
}

.contact-head{
	font-family: 'Roboto';
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 20px 0;
}

.contact-head p{
	width: 90%;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

#contct-frm{
	width: 90%;
	background:cornflowerblue;
	border-radius: 20px;
	padding: 20px;

}

label{
	margin-bottom: 10px;
	padding: 0 10px;
	font-weight: 700;
}

input[type="text"]{
	padding: 12px;
	width: 100%;
	border-radius: 20px;
	border: none;
	margin-bottom: 20px;
}

input[type="submit"]{
	    width: 30%;
    padding: 10px;
    border-radius: 20px;
    background: darkorange;
    border: none;
    margin:0 30%;
    font-weight: 700;
}

input[type="submit"]:active{
	background-color: orangered;
}

textarea{
	width: 100%;
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 20px;
}

.footers{
	display: flex;
	align-items: center;
	flex-direction: column;
	border-top: 5px solid gray;
	width: 100%;
	background: lightgrey;
	font-family: 'Open Sans';
	margin-top: 40px;
	
}	

.footers ul li{
	list-style: none;
	float: left;
}

.footers li a{
	color: black;
	text-decoration: none;
}

.alone{
	list-style: none;
	float: right;
}


h6 i{
	display: inline;
	padding: 0 10px;
	cursor: pointer;
}

h6 i:hover{
	color: darkblue;
}

.logos{
	display: inline-flex;
	padding: 10px;
}

.logos h6 a{
	color: black;
}

@media screen and (min-width: 768px ){
.navbar-dark{
		display: flex;
		align-items: center;
	}

#contct-frm{
	width: 30%;
	margin-bottom: 72px;
}
}