
/* -------------------------------- 

      Home Page Banner Section

-------------------------------- */
#cd-main-content {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: #3a393f;
  /* slightly visible only when we resize this element */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

#cd-intro {
  position: relative;
  height: 100%;
  background: url("../img/tritech-home-photo.jpg") no-repeat center center;
  background-size: cover;
}
#cd-intro h1 {
	position: absolute;
	width: 100%;
	left: 50%;
	top: 45%;
	bottom: auto;
	right: auto;
	-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%);
	text-align: center;
	background-image: url(../img/tritech-logo-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50%;
	height: 100%;
	color: transparent !important;
}
@media only screen and (max-width: 480px) {
  #cd-intro h1 {
	background-size: 90% !important;
  }
}
.no-js #cd-intro {
  height: 640px;
}
.pageDownArrow{
	position: absolute;
	height: 100px;
	width: 100%;
	left: 50%;
	bottom: 0;
	background-image: url(../img/page-down-arrow.svg);
	background-repeat: no-repeat;
	background-position: center bottom;
	-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%);
	text-align: center;
}
/* Mobile Landscape */
@media only screen and (max-width: 640px) {
.pageDownArrow{
	height: 40px;
	bottom: 0;
	background-size: 6%;
}
}
/* Portrait Landscape */
@media only screen and (max-width: 480px) {
.pageDownArrow{
	height: 60px;
	bottom: 0;
	background-size: 15%;
}
}
.cd-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
	padding: 30px 50px 0 50px;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 80px;
  }
}
@media only screen and (max-width: 480px) {
.cd-header {
	padding: 30px 10px 0 10px;
}
}
.phone {
	float: left;
	max-width: 200px;
	height: 50px;
	background-image: url(../img/phone.svg);
	background-size: 13%;
	background-repeat: no-repeat;
	background-position: left top;
}
.phone p{
	font-family: "Open-Sans", sans-serif;
	font-weight: 500;
	width: auto;
	height: 50px;
	line-height: 35px;
	color: #FFF;
		padding-left: 25px;
	font-size: 20px;
}
.phone a{
	color: #FFF;
}

.header-wrapper-home {
	float: left;
	position: -webkit-sticky;
    position: sticky;
    top: 0;
	width: 100%;
	height: 155px;
	z-index: 3;
	background: #7ebee8;
	margin-bottom: 80px;
	padding: 0 50px 0 50px;
}
.cd-header-home {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#cd-logo {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
    max-width: 230px;
  width: 100%;
  height: auto;
	float: left;
}
#cd-logo img {
  display: block;
   width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
#cd-logo {
	max-width: 180px;
}
}
@media only screen and (max-width: 480px) {
.header-wrapper-home {
	margin-bottom: 40px;
	padding: 0 10px 0 10px;
}
}

/****** Menu Trigger Button **********/
.cd-menu-trigger {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
	height: auto;
	padding: 0;
	float: right;
}
.cd-menu-trigger p{
	font-family: Arial, Helvetica, sans-serif;
	position: absolute;
	padding: 0;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 1px;
	color: #fff;
	display: block;
	line-height: 0px;
	margin: 0px;
	height: auto;
	width: auto;
}
.cd-menu-trigger span {
	/* hamburger icon */
  position: relative;
	display: block;
	width: 50px;
	height: 3px;
	background-color: #fff;
	vertical-align: middle;
	margin-top: 30px;
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	transform: translateY(-5px);
	float: right;
	bottom: 0px;
}
header.smaller .cd-menu-trigger p{
	display: none;
}
header.smaller .cd-menu-trigger span{
	margin-top: 8px;
}
.cd-menu-trigger span::before, .cd-menu-trigger span::after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}
.cd-menu-trigger span::before {
  top: -10px;
}
.cd-menu-trigger span::after {
  bottom: -10px;
}
.no-touch .cd-menu-trigger:hover span::before {
  top: -12px;
}
.no-touch .cd-menu-trigger:hover span::after {
  bottom: -12px;
}

/* ------------------------------------------------- 

      Home Page Main Text Area Section

---------------------------------------------------- */
.mainTextArea_wrapper{
	width: 100%;
	height:auto;
	background-color:#fff;
}
.textArea{
	display: block;
	max-width: 1100px;
	width: 100%;
	height:auto;
	margin: 0 auto 0 auto;
	padding: 80px 0 80px 0;
	text-align: center;
}
@media only screen and (max-width: 480px) {
.textArea{
	padding-top: 50px;
	padding-bottom: 50px;
}
}


/* -----------------------------------------------------------

	HOME PROJECTS SECTION

------------------------------------------------------------- */
.projects{
	float: left;
	width: 100%;
	height: auto;
	padding-top: 40px;
	padding-bottom: 100px;
}
.projects li{
	position: relative;
	float: left;
	width: 30%;
	height: 305px;
	margin-left: 1.62%;
	margin-right: 1.62%;
	list-style-type: none;
	margin-bottom: 0px;
}
.projects li a img{
	float: left;
	width: 100%;
	height: 264px;
	z-index: 5;
	position: absolute;
	left: 0px;
	top: 0px;
}
@media screen and (max-width: 480px) {
.projects li{
	float: left;
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	height: 280px;
	margin-bottom: 40px;
}
.projects li:last-child{
	margin-bottom: 0px !important;
}
.projects li a img{
	height: 280px;
}
}
.projects li a strong{
	font-family: 'Open-Sans', sans-serif;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	width: 100%;
	height: auto;
	text-align: center !important;
	background-color: #7ebee8;
	padding-top: 20px;
	padding-bottom: 20px;
	text-decoration: none;
	z-index: 10;
	position: absolute;
	bottom: 0 !important;
	left: 0;
	border: none;
}
.projects li a strong:hover, .projects li a img:hover{
	color: #fff !important;
	background-color: #666;
	text-decoration:none !important;
}
.projects li a:hover strong{
	text-decoration: underline;
	color: #2a76a6;
}
.projects li a:visited strong{
	text-decoration: none;
	color: #fff;
}
/************** Controls the amount of blog posts showing on home page, using css helper *************/
.page-27 .projects li + li + li + li{
	display:none;
}

/* -----------------------------------------------------------

	About Us & Footer Section

------------------------------------------------------------- */

.holder{
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	background-color: #7ebee8;
	padding-top: 50px;
	padding-bottom: 50px;
}
.TextAreaLeft a:link, .TextAreaRight a:link, .TextAreaLeft a:visited, .TextAreaRight a:visited{
	width: 100%;
	float: left;
	margin-top: 5px;
	margin-bottom: 20px;
	color: #fff;
	text-decoration: underline;
	font-size: 14px;
	font-weight: 600;
}
.TextAreaLeft a:hover, .TextAreaRight a:hover{
	text-decoration: none;
}
.TextAreaLeft{
	width: 50%;
	height: auto;
	float: left;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #fff;
	padding-top: 40px;
	padding-bottom: 20px;
	text-align: right;
}
@media screen and (max-width: 480px) {
.TextAreaLeft{
	padding-top: 20px;
	text-align: left;
	border-bottom-width: 1px;
	border-right-style: none;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}
}
.TextAreaRight{
	width: 49.5%;
	height: auto;
	float: left;
    padding-top: 40px;
}
.TextAreaLeft p, .TextAreaRight p, .TextAreaLeft h1, .TextAreaRight h1, .TextAreaLeft h1 span, .TextAreaRight h1 span{
	float: none;
	width: 60%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	color: #fff !important;
}
.TextAreaLeft h1, .TextAreaRight h1{
	margin-bottom: 15px;
	line-height: 25px;
}
.TextAreaLeft p, .TextAreaRight p{
	font-family: "Raleway", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: normal;
}
.TextAreaLeft p strong, .TextAreaRight p strong{
	font-weight: 600;
}
@media screen and (max-width: 480px) {
.TextAreaLeft h2, .TextAreaRight h2{
	width: 85%;
}
}
@media screen and (max-width: 1024px) {
.TextAreaLeft p, .TextAreaRight p, .TextAreaLeft h1, .TextAreaRight h1{
	width: 75%;
}	
}
@media screen and (max-width: 800px) {
.TextAreaLeft, .TextAreaRight{
	width: 100%;
	float: left;
}
.TextAreaLeft p, .TextAreaRight p, .TextAreaLeft h1, .TextAreaRight h1{
	width: 85%;
}	
}

/************************************************************************
 							Paypal Section
************************************************************************/
.paypal_wrapper{
	background-color: #c1c2c3;
	float: left;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	padding-top: 50px;
	padding-bottom: 50px;
}
.paypalLeft{
	position: relative;
	width: 52%;
	height: auto;
	float: left;
	padding-top: 40px;
	padding-bottom: 20px;
}
.paypalLeft_textWrapper{
	position: absolute;
	right: 0; 
	top: 0;
}
.paypalLeft p, .paypalLeft h1{
	color: #fff;
	text-align: center;
	padding-right: 20px;
}
.paypalRight{
	width: 47.5%;
	height: auto;
	float: left;
	padding-top: 10px;
	padding-left: 20px;
}
@media screen and (max-width: 480px) {
.paypal_wrapper{
	padding-top: 20px;
	padding-bottom: 30px;
}
.paypalLeft{
	width: 100%;
	padding-left: 0px;
}
.paypalLeft_textWrapper{
	position: relative;
}
.paypalRight{
	width: 100%;
	padding-left: 0px;
	padding-top: 0px;
	margin-top: 0px;
}
.paypalRight form input{
	display: block;
		width: 50%;
	margin-right: auto;
	margin-left: auto;
}
}
