*{
	margin: 0;
	padding: 0;
	font-family: "ubuntu",sans-serif;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
  
  }
  header{
	background-color: #33383b;
  }
  .inner-width{
	max-width: 80%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	margin: auto;
  }
  .menu-icon{
	width: 50px;
	height: 50px;
	background:#2c3e47 ;
	color: #fff;
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	z-index: 2;
	border-radius: 10px;
	cursor: pointer;
	transition: .2s linear;
  }
  .menu-icon:hover{
	opacity: .9;
	transform: scale(1.1);
  }
  .navigation-menu{
	position: fixed;
	width: 100%;
	height: 100%;
	background:#2c3e47 ;
	top: 0;
	right: -100%;
	display: flex;
	align-items: center;
	justify-content: center;
  
  }
  .navigation-menu nav{
	display: grid;
  }
  .navigation-menu li{
	margin: 20px 0;
	overflow: hidden;
  }
  .navigation-menu a{
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	transform: translateY(40px);
  }
  .navigation-menu a:before{
	 content: "";
	 position: absolute;
	 width: 0;
	 height: 15Px;
	 background: #fd7474;
	 bottom: 0;
	 left: 0;
	 border-radius: 15px;
	 z-index: -1;
	transition: .2s linear;
  }
  .navigation-menu a:hover::before{
	width: 100%;
  }
  .menu-icon.active{
	background: #f1f1f1;
	color: #2c3e47;
  
  }
  .navigation-menu.active{
	right: 0;
  }
  .navigation-menu.active a{
  transform: translateY(0);
  transition: 0.6linear;
  }
  .navigation-menu.active li:nth-child(1) a{
	transition-delay: .1s;
  }
  .navigation-menu.active li:nth-child(2) a{
	transition-delay: .2s;
  }
  .navigation-menu.active li:nth-child(3) a{
	transition-delay: .3s;
  }
  .navigation-menu.active li:nth-child(4) a{
	transition-delay: .4s;
  }
  .navigation-menu.active li:nth-child(5) a{
	transition-delay: .5s;
  }
  /*         End navbar                      */
  



/* start footer */

.footer-distributed{
	background-color: #ddd;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;

	padding: 55px 50px;
	margin-top: 80px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:  #FFFFFF;
	font: normal 36px 'Cookie', cursive;
	margin: 0;
}

.footer-distributed h3 span{
	color:  #FFFFFF;
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #FFFFFF;
	margin: 20px 0 12px;
	padding: 0;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
	text-decoration: none;
	color:  inherit;
}

.footer-distributed .footer-company-name{
	color:  #FFFFFF;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}



/* Footer Center */
.footer-distributed{
    margin: 0;
    
}
.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #fff;
	color: #33383b;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #FFFFFF;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  #FFFFFF;
	text-decoration: none;;
}


/* Footer Right */

.footer-distributed .footer-right{
	width: 20%;
}

.footer-distributed .footer-company-about{
	line-height: 20px;
	color:  #FFFFFF;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}

.footer-distributed .footer-company-about span{
	display: block;
	color:  #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 20px;
}

.footer-distributed .footer-icons{
	margin-top: 25px;
}

.footer-distributed .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	background-color:  #FFF;
	border-radius: 2px;

	font-size: 20px;
	color: #33383b;
	text-align: center;
	line-height: 35px;

	margin-right: 3px;
	margin-bottom: 5px;
}