

/* utility */
html.sr .load-hidden {
    visibility: hidden;
  }
  
html {
    scroll-behavior: smooth; 
  } 
body{
margin:0;
font-family: 'Hind', sans-serif;
}

 
#hero {
background: #52616B;
height: 730px;
}
#hero-thanks {
    background:  #52616B;
    height: 530px;
    }
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px
}
header {margin: 0 auto;
    height: 130px;
    padding-top: 55px;
    position: relative;
}

#logo {
    float: left; 
    width: 100px; 
    height: 55px;
    display: inline-block;
}


/* NAVIGATION */
nav {
    float: right;
    }
.fa {display: none !important}

 #myTopnav a {
    display: inline-block;
    vertical-align: top;
    color: white;
    margin-left: 48px;
    font-family: 'hind', sans-serif;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    text-decoration: none;
    font-size: 22px;
}

 #myTopnav a:hover {
	 border-bottom: 2px solid #D8FC79;
     -webkit-transition: all .2s ease-in-out;	
}

nav#black #myTopnav a {
color: #000000;
}

#myTopnav .icon {
    display: none;
  }

@media screen and (max-width: 660px) {
    #myTopnav a {display: none;}
    #myTopnav a.icon {
      float: right;
      display: block;
    }
  
    #myTopnav.responsive {
        position: relative;
		padding: 10px
    }
    #myTopnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    #myTopnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }




h1 {
    font-family: 'hind', sans-serif;
    font-size: 30px; 
    line-height: 45px;
   margin-top: 8rem; 
    color: #C9D6DF;
    font-weight: 400;
    max-width: 470px;
    margin-bottom: 50px;
}

#hero-thanks h1 {
    text-align: center; 
	margin: 30px auto;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px; 
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 600;
    color: #52616B;
    text-align: center;
    margin-top: 80px;
}
#intro {
	width: 48%;
    float: left;
}

#intro-img {
	width: 50%;
    max-width: 500px;
}

h3 {
font-family: 'Montserrat', Arial, Helvetica, sans-serif;
font-size: 30px;
line-height: 40px;
margin-top: 0;
}

#caseStudy .row h3 {
font-size: 28px; 
line-height: 32px;
color: black;
font-weight: bold;
margin-top: 40px;
}
 p {
   font-size: 20px; 
    line-height: 32px;
    font-family: 'Hind', Arial, Helvetica, sans-serif;
} 
#hero-thanks p {
    text-align: center; 
	margin: 0 auto; 
	color: #ffffff;
}
 a.button {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;  
    padding: 6px 20px 3px; 
    font-size: 24px;
    transition: background-color .4s ease-in-out;
    -webkit-transition: background-color .4s ease-in-out;
}

a.main-btn, input[type="submit"] {
border: 2px solid #D8FC79;
color: #D8FC79;
}

a.main-btn:hover, input[type="submit"]:hover {
    border: 2px solid #D8FC79;
    color: #52616B;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    background: #D8FC79;
}

a.second-btn {
color: #000;
border: 2px solid #000;
font-size: 20px;
margin-top: 1rem;
display: inline-block;

}

a.second-btn:hover {

    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    background: #000000;color: white;
}

a.cntrbtn {
    display: block;
    width: 140px;
    text-align: center;
    margin: 0 auto 5rem;
}

.narrow-text {
    width: 100%;
    max-width: 945px;
    text-align: center;
    margin: 0 auto;
}

/* DARK SECTIONS */
.dark {
	background: #52616B; 
	padding: 40px 0 80px}
.dark .container h2 {
	color: #D8FC79 !important;
}
.dark p, .dark label {
	color: white;
}


/* SKILLS SECTION */

#skills {
    background-image: url(../images/bg-process.png); 
    background-size: cover;

}
#skillList { 
    display: flex; 
    margin: 10px 0 0;
   
}
.skillItem {
    width: 33%; 
    text-align: center;
    margin: 55px 55px 15px
}

@media screen and (max-width: 768px) {
    #skillList {
        display: block;
    }
    .skillItem {
        width: 100%; 
        margin: 0;
    }
    }




.image-bg{
    width: 103px; 
	height: 103px; 
	margin: 0 auto;
    background-image: url(../images/Ellipse-green.png);
    display: flex; /* 1/3 line of code to perfectly align the icon in center of circle*/
    align-items: center; /* line 2/3 */
    justify-content: center; /*line 3/3*/
}

.linkCTA a {
    color: #000;

}

.linkCTA {
 padding-bottom: 0;   
line-height: 15px;
}

/* PROCESS */

#process {
    background-color: #52616B;
    }

.centered-img {
    display: block;
    margin: 0 auto;
    padding: 60px 0;
    width: 100%
}
.process-img{
	max-width: 800px;
}

#projectPreviews{ /*flexbox parent*/
    display: flex; /*flexbox must 1*/
    flex-wrap: wrap; /*flexbox must 2, gets item to next rows*/
    margin: 0 20px;
    align-items: center;/*align content vertically centered*/
}

.projectPreview-info{ /*flexbox children*/
 
margin: 3rem 0;
    width: calc(50% - 6rem);/*flexbox must 3, define width*/
    margin-left: 6rem;
}
.projectPreview-img {
width: 40%; /*flexbox must 3, define width*/
margin: 3rem 0;
padding: 5%;		
background-image: url("../images/bg1.png");
	background-repeat: no-repeat;
	background-size: cover
}

footer {
    text-align: center;
}
footer p{
	font-size: 12px
}

/* work */

.marg-info {
    width: calc(50% - 6rem);
    margin-left: 6rem;
}

.pad-right{
	padding-right: 20px;
}

/* FORM */
form {
    width: 100%;
    max-width: 705px; 
    margin: 60px auto 0;
}
	
label {
font-size: 18px;
line-height: 22px;
color: #C9D6DF;
}

input, textarea {
    width: 100%;
/*    max-width: 300px;*/
    height: 20px;
    -webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
margin-bottom: 30px;
font-size: 25px;
line-height: 35px;
padding: 10px;
border: white;
}
textarea {
    height: 229px;
}
input[type=text]:focus, textarea:focus {
     border: 3px solid #D8FC79;
     outline:#D8FC79;
}
input[type="submit"] {
    width: 159px; 
    height: 54px;
    display: block;
    margin: 0 auto;
	background: #52616B;
    line-height: 26px;
}


/* CASE STUDY */

h1.project-title {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: bold;
    line-height: 50px;
    border-bottom: 8px solid #D8FC79;
    color: black;
    margin: 50px auto 20px;
    display: inline-block;
    text-align: center;
}


@media screen and (max-width: 768px) {
.fa {display: inline-block !important}
i.fa.fa-bars {
	font-size: 35px;
	float: right;
	color: white;
	}
	header {
		padding-top: 0;
	}
	nav {
		position: absolute;
    right: 40px;
	}
	#myTopnav a{
		font-size: 16px;
		margin-left: 8px;
		padding: 5px 10px
	}
	#intro {
		width: 100%;
		float: none;
	}	

h1 {
    font-size: 27px;
    line-height: 33px;
max-width: 100%;
	margin-top: 3rem;
	text-align: center;
}
	
#intro-img {
	width: 100%; 
	max-width: 300px;	
	    margin: auto;
    display: block;
	}	
a.button{
	font-size: 16px;
	display: block;
	width: 200px;
	margin: 0 auto; 
	text-align: center;
	}
.linkCTA a {
    color: #000;
    margin: 1rem auto 4rem;
    display: block;
}	
	
.projectPreview-img, .projectPreview-info{ /*flexbox children*/
width: 100%; /*flexbox must 3, define width*/
margin: 3rem 0;
	
}
h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 10px;
}
	
h3 {
    font-size: 25px;
    line-height: 30px;
	text-align: center;
}	

.projectPreview-info p {
		text-align: center;
	}	

label {
    font-size: 20px;
    line-height: 25px;

}
input, textarea {
    height: 20px;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 22px;
	padding: 10px 0;
}
textarea {
		height: 150px
	}
input[type="submit"] {

    height: 54px;

}
    }
@media screen and (max-width: 660px) {
nav {
background: rgb(0 0 0 / 35%);
}
}