/*		     				
	CEMD 
    Green Colour: #44bd32
    orange: #e67e22
*/


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus { outline: none; }

/*  Basic elements
	============================================================= */ 
html,
body {
	background-color: #fff;
	color: #555;
	font-family: 'Lato', 'Arial', sans-serif;
	font-size: 20px;
	font-weight: 300;
	/* Renders text clean */
	text-rendering: optimizeLegibility;
	overflow-x: hidden; 
}

/* Clearfix 
   ===================================================*/
.clearfix{ zoom: 1 }
.clearfix:after {
	content: ".";
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
}

.row {
	max-width: 1140px;  
	margin: 0 auto; 
}

section { padding: 80px 0px; }

h1,
h2,
h3 {
	font-weight: 300;
	text-transform: uppercase;
}

h1 {
	margin-bottom: 20px;
	color: #fff;
	font-size: 2.2em;
	word-spacing: 4px;
	letter-spacing: 1px;
}

h2 {
	font-size: 1.8em;
	word-spacing: 2px;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: 1px; 
}

/* Line divider 
   ==================================*/
h2:after {
	display: block;
	height: 2px;
	background-color: #44bd32;
	content: ""; 
	width: 100px;
	margin: 0 auto; 
	margin-top: 30px;

}

h3 {
	font-size: 1.125em; /* Eh. */
	margin-bottom: 15px;
}

/* Copy
   ===================================*/
.long-copy {
	line-height: 1.5;
	width: 70%;
	margin-left: 15%; 
	margin-right: 15%;
	text-align: center; 
	margin-bottom: 30px;
}

.box { padding: 1%; }

.box p {
	font-size: 0.9em;
	line-height: 1.45;

}

/* Links
   ===================================*/
a:link,
a:visited {
	color: #44bd32;
	text-decoration: none;
	border-bottom: 1px solid #44bd32;
	padding-bottom: 1px;
	transition: border-bottom 0.2s, color 0.2s
}

a:hover,
a:active {
	color: #555;
	border-bottom: 1px solid transparent;
}



/* Icons
   ===================================*/
.icon-big {
	font-size: 3.5em;
	display: block;
	color: #44bd32;
	margin-bottom: 10px;
	margin-right: 25px; 
	text-align: center;
}
/* Buttons
   ====================================*/
.btn:link, 
.btn:visited,
input[type="submit"] {
	display: inline-block;
	padding: 10px 30px;
	font-size: inherit;
	font-weight: 300;
	text-decoration: none;
	border-radius: 200px;
	border: 2px solid #44bd32;
	/* Transition the background, color, border by 0.2s*/
	transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btn-full:link,
.btn-full:visited,
input[type="submit"] {
	background-color: #44bd32;
	color: #fff;
	margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited { color: #44bd32; }


/* Button Hover and clicked 
   ========================================*/
.btn:hover,
.btn:active,
input[type="submit"]:hover,
input[type="submit"]:active { background-color: #273c75; }

.btn-full:hover,
.btn-full:active,
input[type="submit"]:hover,
input[type="submit"]:active { border: 2px solid #273c75; }

.btn-ghost:hover,
.btn-ghost:active {
	color: #fff;
	border: 2px solid #273c75;
}


/* Header styles
   ==========================================*/
header {
	background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(img/leaves.jpeg);
	background-size: cover;
	background-position: center;
	height: 100vh; 
	background-attachment: fixed;
}

.hero-text {
	position: absolute; 
	width: 1140px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%); 
}
/* Logo & Navigation section
   ================================*/
.logo{
	height:100px;
	width: auto;
	float: left;
	margin-top: 20px;
}

.main-nav {
	float: right;
	list-style: none;
	margin-top: 55px;
}

.main-nav li {
	display: inline-block;
	margin-left: 40px;
}

.main-nav li a:link,
.main-nav li a:visited {
	padding: 8px 0;
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9em;
	border-bottom: 2px solid transparent; 
	transition: border-bottom 0.2s;
}


.main-nav li a:hover,
.main-nav li a:active {
	border-bottom: 2px solid #44bd32; /* Visible on hover */
}

/* Sticky Navigation
=============================== */
.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.98);
	box-shadow: 0 1px 2px #efefef;
	z-index: 10;
	transition: all 0.5s ease;
}

.sticky .main-nav {
	margin-top: 18px;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
	padding: 16px 0;
	color: #555;
}

.sticky .logo {
	display: none;
}
.sticky .logo-black {
	display: block;
}

/* Mobile Navigation
   =================================*/
.mobile-nav-icon {
	float: right;
	margin-top: 30px;
	cursor: pointer;
	display: none;
}

.mobile-nav-icon i{
	font-size: 2em;
	color: #fff;
}


 /* Gallery showcase section 
    =================================*/
.gallery-showcase {
	list-style: none;
	width: 100%; 

}

.gallery-showcase li {
	display: block;
	float: left;
	width: 25%; /* 4 images per row/ ul element */

}

.gallery1-photo {
	width: 100%; 
	overflow: hidden; /* Keeps images contained */
	background-color: #000; /* for darker img */
}

.gallery1-photo img {
	opacity: 0.7; 
	width: 100%;
	height: auto;
	-webkit-transform: scale(1.16);
	        transform: scale(1.16); 
	transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.gallery1-photo img:hover {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1); 
	opacity: 1; 
}

.gallery { padding: 0; }



/* projects section
   ===========================================*/
.projects {
    background-color:#b2bec3;
}
.box img {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
.p1{
    display: flex;
    width: 100%;
}
#row2{
    
    text-align: center;
    font-size: 30px;
}
#pic img:hover {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1); /* back to normal*/
	opacity: 1; /* back to normal*/
    transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
    
}
#pic img {
    width: 80%;
    padding: 30px;
    display: flex;
}
.col1 {
display: inline-block;
    float: left;
max-width: 50%;
}

  .col2 {
/*        display: inline-block;*/
        width: 50%;
        float:right;
/*      font-size:15px;*/
      padding-right: 250px;
          
    }
.col3 {
/*        display: inline-block;*/
        width: 50%;
        float:right;
      font-size:35px;
      padding-right: 250px;
          
    }
/* reviews section
   ===========================================*/
.reviews {
	background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/reviews.jpeg);
	background-size: cover;
	color: #fff;
	background-attachment: fixed; 
}

blockquote {
	padding: 2%;
	font-style: italic;
	line-height: 1.5;
	position: relative;
	margin-top: 30px;
}

blockquote:before {
	content: "\201C";
	font-size: 4.5em;
	display: block;
	position: absolute;
	top: -60px;
	left: -3px;
}

cite {
	font-size: 0.9em;
	font-style: normal;
	font-weight: 300;
	margin-top: 25px;
	display: block;
}

cite img {
	height: 45px;
	border-radius: 50%;
	margin-right: 10px;
	vertical-align: middle;
}

.graphtext{
    padding-right: 30px;
    display:inline-block;
    float: left;
}


/* Form section
   ===========================================*/
.section-form {
	width: 90%;
	margin: 0 auto;
}

input[placeholder],
input[type="submit"], /* had to repeat this style for some reason, works now */
textarea[placeholder],
select
{
	font-family: inherit;
	font-size: 0.9em;
	font-weight: 300;
}

input[type="text"],
input[type="email"],
select,
textarea {
	width: 100%;
	padding: 7px;
	border-radius: 3px;
	border: 1px solid #ccc;
}

textarea { height: 100px; }

input[type="checkbox"] { margin: 10px 5px 10px 0; }
/* Footer section
   ===========================================*/

footer {
	background-color: #333;
	padding: 30px;
	font-size: 0.8em;
}
.footer-nav li, 
.social-icons li {
	display: inline-block;
	margin-right: 20px;
}

footer-nav li:last-child,
social-icons li:last-child {
	margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-icons li a:link,
.social-icons li a:visited {
	text-decoration: none;
	border: 0;
	color: #888;
	/*transition: color 0.2s;*/
}

.footer-nav li a:hover,
.footer-nav li a:active {
	color: #ddd;
}

footer p {
	color: #888;
	text-align: center;
	margin-top: 20px;
}
/* Animations
   ===================================*/
.js--wp-1, 
.js--wp-2, 
.js--wp-3 {
	opacity: 0;
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated {
	opacity: 1; 
}

.js--wp-4 {
	-webkit-animation-duration: 1s;
	        animation-duration: 1s;
}


h4 {
    padding: 15px;
    color: #fff;
    font-size: 22px;
}
h4 span:hover {
    color: #44bd32;
}
