/*
Theme Name:	Lucid Solutions
Theme URI: http://lucidsolutions.io 
*/

/* basic reset */
	* { margin: 0; padding: 0; }
	h1, h2, h3, h4, h5, h6, p, ul, ol, pre, blockquote, cite, table { margin-bottom: 0.8em; }
	ul, ol, li { margin-left: 0.0em; }

/* page wrappers */
	html {
		background: black;
	}
	body {
		text-align: center;
		font-family:'Open Sans', sans-serif;
		color: #fff;
    padding: 20px 80px;
	}

/* common tags */

/* links */
	a:link {
		color: #000;	
	}
	a:visited {
		color: #222;	
	}
	a:hover {
		background-color: #FF9;	
	}
	/* prettier images */
	img { border: none; }
	/* blockquote */
	blockquote, cite {
		font-size: 0.9em;
		padding-left: 20px;
		padding-right: 20px;
	}

/* main contents */
	#main { }
	#content {
		position: fixed;
		top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    right: 0;
    bottom: 0;

    overflow: hidden;
    z-index: -100;
	}
	.home-bg {
		-webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
/*		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;*/
	}
	@media (min-aspect-ratio: 16/9) {
	  .home-bg {
	    width: 100%;
	    height: auto;
	  }
	}

	@media (max-aspect-ratio: 16/9) {
	  .home-bg {
	    width: auto;
	    height: 100%;
	    max-width: 100%;
	  }
	}

/* header */
	#header {
		margin: 30px 0;
		border-bottom: 1px solid #eee;
		display: none;
	}
	.main-menu {
		list-style: none;
		display: table;
		color: white;
		font-family: "open_regular";
	}
	.main-menu li {
		display: table-cell;
		vertical-align: bottom;
		padding-right: 20px;
    font-size: 1.2rem;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    top: 4px;
	}

  .main-menu li:hover {
    cursor: pointer;
  }

  .main-menu li.nav-logo {
    top: 0;
    padding-right: 15px;
  }

  /* Body Copy */
  .bodyCopy {
    color: white;
    text-align: center;
    position: absolute;
    top: 30%;
    transform: translateX(-50%);
    left: 50%;
  }

  .orange {
    color: #fa9624;
    font-weight: semi-bold;
  }

  /* Services Scroll Up */
  .servicesWrap {
    position: relative;
    top: 2000px;
    left: 0;
    max-width: 400px;
    text-align: left;
  }
  .servicesWrap h2:hover {
    transition: color 0.5s ease;
    color: #fa9624;
    cursor: pointer;
  }

  .fa-arrow-right {
    padding-right: 10px;
    margin-top: 10px;
    width: 24px;
    height: 24px;
    float: left;
  }

  /* Contact Scroll up */
  .contactWrap {
    position: relative;
    top: 2000px;
    left: 0;
    max-width: 400px;
    text-align: left;
  }

/* footer */
	#footer {
		display: block;
		clear: both;
		border-top: 1px solid #eee;
		padding: 10px 0 10px 0;
		display: none;
	}
	#footer p {
		text-align: center;	
		font-size: 0.9em;
	}

/* CF7 Styles */
.wpcf7-form-control {
  background-color: transparent !important;
  border: 0 !important;
  font-size: 18px !important;
  font-family: "Open Sans" !important;
  color: white !important;
  outline: none !important;
}
.wpcf7-textarea {
  height: 100px !important;
}
.wpcf7-submit {
  background-color: transparent !important;
  padding: 5px 10px;
  border: 2px solid white !important;
  cursor: pointer;
}
.wpcf7-submit:hover {
  transition: color 0.5s ease !important;
  background-color: #fa9624 !important;
}


/* wordpress classes */
	.alignleft {
		float: left; 
		padding: 2px 8px 8px 2px;
	}
	.alignright {
		float: right;
		padding: 2px 2px 8px 8px;
	}
	.aligncenter {
		clear: both;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.clearfix:after {
	     visibility: hidden;
	     display: block;
	     font-size: 0;
	     content: " ";
	     clear: both;
	     height: 0;
	     }
	.clearfix { display: inline-block; }
	/* start commented backslash hack \*/
	* html .clearfix { height: 1%; }
	.clearfix { display: block; }
	/* close commented backslash hack */

  /* Responsive */
@media only screen and (max-width: 650px) {
  html {
    margin-top: 0 !important;
    background: url('media/ls-mobile.png') center center / cover no-repeat;
    background-position-y: -100px;
  }
  body {
    padding: 20px;
    overflow: hidden;
  }
  .main-menu {
    display: block;
    max-width: 100%;
    text-align: center;
  }
  .main-menu li {
    display: inline-block;
    margin-top: 10px;
  }
  .main-menu li.nav-logo {
    width: 100%;
    display: block;
    padding-right: 0;
    padding-left: 5px;
  }
  .bodyCopy {
    max-width: 200px;
    font-size: .9em;
  }
  .home-bg {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .bodyCopy {
    font-size: .75em;
  }
}

