/*
	Todd Motto Labs
	URL: www.toddmotto.com
*/

/*------------------------------------*\
    RESET
\*------------------------------------*/

*,
*:after,
*:before {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

body {
	background:#ECF0F1;
}
a,
a:hover {
	text-decoration:none;
}
ul,
ol {
	list-style:none;
}
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}


/*------------------------------------*\
    Flaunt JS Navigation
\*------------------------------------*/
header{
	position: fixed;
	width: 100%;
	background-color: #fff;
	z-index: 9999;
	top: 0;
}
.nav-container{
	max-width: 1280px;
	margin: 0 auto;
}
.logo{
	width: 220px;
	height:50px;
	margin: 10px;
	background-image:url(../images/archisoft-header.png);
	background-repeat: no-repeat;
	float: left;
}
.normal{
	display: block !important;}
.mobile{
	display: none !important;
}
.nav {
	display:inline-block;
	float:right;
	font-size:14px;
	font-weight:400;
	font-family: arial;
	text-transform:uppercase;
	letter-spacing: 1px;
	margin: 10px;
}
.nav-list {
	text-align:left;
}
.nav-item {
	float:left;
	*display:inline;
	zoom:1;
	position:relative;
}
.nav-item a {
	display:block;
	color:#000;
	padding:15px 20px;
	background:none;
}
.nav-item > a:hover {
	color: #00c3cb;
	background:none;
}
.nav-item:hover .nav-submenu {
	display:block;
}

/* Navigation submenu */
.nav-submenu {
	display:none;
	position:absolute;
	left:0;
	width:260px;
	font-size: 14px;
	text-transform:capitalize;
	letter-spacing:normal;
	margin:0 10px;
}
.nav-submenu-item a {
	color: #ddd;
	background:#333;
	/*border-bottom:1px solid #9A337E;*/
	display:block;
	padding:8px 10px;
}
.nav-submenu-item a:hover {
	color: #fff;
	background:#2d2d2d;
}
/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:3px;
	right:0;
	background:#bcbec0 url(../images/nav.svg) no-repeat center center;
	background-size:18px;
	height:40px;
	width:50px;
	border-radius: 5px;
	margin: 5px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position:absolute;
	top:0;
	right:0;
	display:none;
/*	border-left:1px solid #8B2870;
*/	height:45px;
	width:45px;
	cursor:pointer;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background:url(../images/drop.svg) no-repeat center center;
	background-size:20px;
}
.nav-click:hover {
	background-color:none;
}
.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/
@media only screen and  (max-width: 896px) {
	header{
	position: fixed;
	width: 100%;
	background-color: #fff;
	z-index: 9999;
	top: 0;
}
.nav-container{
	max-width: 1280px;
	margin: 0 ;
}
.logo{
	width: 210px;
	height:50px;
	margin: 10px;
	background-image:url(../images/archisoft-header.png);
	background-repeat: no-repeat;
	float: left;
}
.normal{
	display: block !important;}
.mobile{
	display: none !important;
}
.nav {
	display:inline-block;
	float:right;
	font-size:14px;
	font-weight:400;
	font-family: arial;
	text-transform:uppercase;
	letter-spacing: 1px;
	margin: 10px 0;
}

.nav-item a {
	display:block;
	color:#000;
	padding:15px 10px;
	background:none;
}
.nav-item > a:hover {
	color: #00c3cb;
	background:none;
}
.nav-item:hover .nav-submenu {
	display:block;
}

/* Navigation submenu */
.nav-submenu {
	display:none;
	position:absolute;
	left:0;
	width:260px;
	font-size: 14px;
	text-transform:capitalize;
	letter-spacing:normal;
	margin:0 10px;
}
.nav-submenu-item a {
	color: #ddd;
	background:#333;
	/*border-bottom:1px solid #9A337E;*/
	display:block;
	padding:8px 10px;
}
.nav-submenu-item a:hover {
	color: #fff;
	background:#2d2d2d;
}
/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:3px;
	right:0;
	background:#bcbec0 url(../images/nav.svg) no-repeat center center;
	background-size:18px;
	height:40px;
	width:50px;
	border-radius: 5px;
	margin: 5px;
}
/* Mobile navigation, clickable area for revealing <ul> */
.nav-click {
	position:absolute;
	top:0;
	right:0;
	display:none;
/*	border-left:1px solid #8B2870;
*/	height:45px;
	width:45px;
	cursor:pointer;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background:url(../images/drop.svg) no-repeat center center;
	background-size:20px;
}
.nav-click:hover {
	background-color:none;
}
.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
header{
	height: 55px;
}
.logo{
	width: 180px;
	height:50px;
	margin: 2px 10px 0;
	background-image:url(../images/archisoft-header-small.png);
	background-repeat: no-repeat;
	float: left;
}
.normal{
	display: none !important;}
.mobile{
	display: block !important;
}
.nav-mobile {
	display:block;
}
.nav {
	width:100%;
	padding:0;
	margin: 0;
}
.nav-list {
	display:none;
	margin: 0;
	width: 100%;
}
.nav-item {
	width:100%;
	float:none;
}
.nav-item a {
	display:block;
	color:#000;
	padding:15px 20px;
	background:#fff;
}
.nav-item > a:hover {
	color: #00c3cb;
	background:#fff;
}
.nav-item:hover .nav-submenu {
	display:block;
}

/* Navigation submenu */
.nav-menu{
	display: block !important;
}


.nav-submenu {
	display:none;
	position:absolute;
	left:0;
	width:220px;
	font-size: 14px;
	text-transform:capitalize;
	letter-spacing:normal;
	margin: 0;
}
.nav-submenu-item a {
	color: #ddd !important;
	background:#333;
	/*border-bottom:1px solid #9A337E;*/
	display:block;
	padding:15px;
}

.nav-submenu-item a:hover {
	color: #fff !important; 
	background:#2d2d2d;
}

	.nav-click {
		display:block;
	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;
	}
	.nav-item:hover .nav-submenu {
		display:none;
	}
	.nav-submenu {
		position:static;
		width:100%;
	}
}