@charset "utf-8";
/* CSS Document */
*
{
	marign:0;
	padding:0;
	box-sizing: border-box;
}
body{
	
	margin: 0;
	padding: 0;
	
}

.container{
	width:80%;
	margin:auto;
	overflow:hidden;
}


html {
  scroll-behavior: smooth;
}



h1{
	font-size: 50px;;
	color:#3B0070;
}

/*navigation*/
nav {
	width:100%;
	background:#3B0070;
	padding: 20px;
	justify-content: space-around;
	align-items:center;
	min-height: 8vh;
	
  
  
}
a{
	text-decoration:none;
}

.logo{
	
 position: absolute;
  top: 10px;
  left: 10px;
  width: 200px;
  height: 100px;
}

a:hover {
    color:#5E0076;
    text-decoration: none;
}

nav ul {
	width: 80%;
	margin: 0 auto;
	padding: 0;
	text-align:right;
	font-family: 'Fjalla One', sans-serif;
	font-size: 20px;
	transition: all .2s ease-in-out;
	color:#000000;
}


.nav, .ul,nav ul li{
	list-style: none;
	display: inline-block;
	padding: 20px;
	
}

nav ul li:hover {
	transform: scale(1.2);
	text-decoration:none;
}

.nav,.ul, nav ul li a
{
	color:#FFFFFF;
	text-decoration:none1
}


.toggle {
	
	width: 100%;
	padding: 10px 20px;
	color: #fff;
	text-align: right;
	box-sizing: border-box;
	font-size: 30px;
	display: none;
}

/*section one*/

#section-one{
  text-align:center;
}


/*section work*/
.work img:hover{
	filter:grayscale(100%);
	transform: scale(1.1);
	
}

/*Contact Section*/

.contact {
	border-radius: 5px;
	background-color:#3B0070;
	padding: 20px;
}

input[type=text], select {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type=submit] {
	width: 100%;
	background-color:#E6FF00;
	color:white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursour: pointer;
}

label {
	color:aliceblue;
}

input[type=submit]:hover{
	background-colr: #45a049;
}

#comment {
	width: 100%;
	height: 150px;
	padding: 12px 20px;
	resize:none;
}

/*footer*/

footer {
	position: relative;
	width: 100%;
	height: auto;
	padding: 50px ;
	background: #3B0070;
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}

footer .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
}

footer .container .sec {
	
	margin-right: 30px;
	
}
footer .container .sec.aboutus{
	width: 40%;
}
footer .container  h2{
	position: relative;
	color: #FFF;
	font-weight: 500;
	margin-bottom: 15px;
}

footer .container  h2:before {
	content:'';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50px;
	height: 2px;
	background:#FFFD00;
}

footer  p{
	color: #999;
}

.sci{
	margin-top: 20px;
	display: flex;

}

.sci li{
	list-style: none;
}

.sci li a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	text-decoration: none;
	border-radius: 4px;
}

.sci li a:hover {
	background: #f00;
}

.sci li a .fa {
	color: #fff;
	font-size: 20px;
}

.quickLinks {
	position: relative;
	width: 25%;
}


.quickLinks ul li {
	list-style: none;
}

.quickLinks ul li a {
	color: #999;
	text-decoration: none;
	margin-bottom: 10px;
	display: inline-block;
}

.contacts {
	width: calc(35% - 60px);
	margin-right: 0 !important;
}

.contacts .info {
	position: relative;
}

.contacts .info li {
	display: flex;
	margin-bottom: 16px;
}

.contacts .info li span:nth-child(1) {
	color: #fff;
	font-size: 20px;
	margin-right: 10px;
}

.contacts .info li span {
	color: #999;
}

.copyrightText{
	width: 100%;
	background: #181818;
	padding: 8px 100px;
	text-align: center;
	color: #999;
}

/*mobile*/

@media (max-width: 991px) {
	
	
	footer{
		padding: 40px;
	}
	
	footer .container {
		
		flex-direction: column;
	}
	
	footer .container .sec {
		margin-right: 0;
		margin-bottom: 40px;
	}
	
	footer .container .sec.aboutus, .quickLinks, .contact {
		width: 100%;
	}
	
	.toggle {
		display: block;
	}
	
	
	header ul {
		width: 100%;
		display:none;
	}
	header ul li {
		display: block;
		text-align:center;
	}
	
	.active {
		display:block;
	}
	
	.me{
		width:221px;
		height:204px;
	}
}