@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext");
*{

	font-family: "Quicksand";
  }
  p{
	font-family: "Quicksand";
  }
  h2,h1,h3{
	font-family: "Quicksand";
  }
/*Navbar=================================*/
.menu-label{
	padding-left: 1rem;
  }
nav ul{
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin-bottom: 0;
}
a{
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	/* font-size: 1.2em; */
	transition: .3s;
}

header{
	line-height: initial;
    margin-bottom: 1rem;
	position: relative;
	width: 100%;
}

header .container1 {
    position: relative;
    z-index: 2;
}

nav{
	font-family: "Quicksand";
  border: 0px solid black;
  border-radius: 28px;
  margin-top: 1.3rem;
	background: black;
	position: relative;
	padding: 12px 0;
	z-index: 10;
}
nav ul li:nth-child(1){
  float: left;
  padding-left: 30px;
}
nav ul li:nth-last-child(1){
  padding-right: 20px;
}
.logo{
	position: absolute;

	top: -40px;
	left: 45%;
}

.logo img{
  width: 70px;
	height: 70px;
  border-radius: 56px;
  margin-top: 1.5rem;
}
@media screen and (max-width: 576px) {
  .logo{
    display: none;
  }


}

nav ul{
	width: 100%;
	transition: .3s;
}
nav ul li:nth-child(6){
	margin-left: 25px;
}
nav ul li a{
	
	color: white;
	font-weight: bold;
}
nav ul li a:hover{
	color: crimson;
}
#menu{
	display: none;
}

label{
	color: #fff;
	font-size: 0.8 em;
	padding: 15px 0;
	display: none;
}
@media (max-width: 960px){
	label{
		display: block;
	}

  .menuList li:nth-child(1),
  .menuList li:nth-child(2),
  .menuList li:nth-child(3),
  .menuList li:nth-child(4),
  .menuList li:nth-child(5){
		display: none;
	}


	.logo{
		left: 45%;
		top: -34px;
	}
	/* .logo img{
		width: 100px;
	} */
	nav{
		padding: 0;
	}
	nav ul{
		position: absolute;
		top: 53px;
		left: -100%;
		background: #000;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		height: 90vh;
	}
	#menu:checked ~ ul{
		left: 0;
	}
	nav ul li{
		margin: 0 !important;
		width: 100%;
	}
	nav ul li a{
		border: 1px solid crimson;
		padding: 15px 0;
		margin:  0;
		text-align: center;
	}
	nav ul li a:hover{
		background: white;
	}
	nav ul li:nth-last-child(1){
		padding-right: 0px;
	}
}
@media (max-width: 460px){
	nav ul{
		font-size: 14px;
		height: 60vh;
	}
	.logo{
		top: -30px;
	}
	.logo img{
		width: 100px;
    margin-top: 0;
	}
}




/*Footer==================================*/


footer{
	font-family: "Quicksand";
	margin-top: 1rem;
}
.footer-container{
	line-height: 1.5;
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
.footer-container{
	max-width: 1170px;
	margin:auto;
}
.footer-row{
  display: flex;
  flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: black;
    padding: 70px 0;
	padding-bottom: 10px;
}
.footer-col{
   width: 25%;
   padding: 0 10px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: black;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
  }
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
  }
  .footer-col h4{
	font-size: 14px;
  }
  .footer-col ul li a{
	font-size: 12px;
  }
}


/*=========*/
.vm-head{
	font-size: 20px;
}
.green{
	color: green;
}
.blue{
	color: blue;
}
.red{
	color: red;
}
.purple{
	color: purple;
}
.yellow{
	color: rgb(255, 209, 6);
}