/*
 Theme Name:     K Art and Design, Inc.
 Description:    K Art and Design, Inc.
 Author:         K Art and Design, Inc.
 Template:       Divi
 Version:        2.0.0
*/
 
 
/* =Theme customization starts here
------------------------------------------------------- */

#top-menu > li > a span {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
        float: left;
	width: 100%;
	padding: 5px 0;
}
#top-menu a {
        text-align: center;
}
#top-menu li {
   padding-right: 0;
}

.et_mobile_menu li a span {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	float: none !important;
	width: 100%;
	padding-bottom: 8px;
}
.et_mobile_menu li a span:before {
    content: ":  ";
}


/* Menu Effect 2 - bottom border slide in */
#top-menu a {
	padding: 14px 0; /*you may want to adjust this*/
}
#top-menu a::after {
	position: absolute;
	top: 60%; /*you may want to adjust this*/
	left: 0;
	width: 100%;
	height: 2px; /*you may want to adjust this*/
	background: #78a22f;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}
#top-menu a:hover::after,
#top-menu a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}