*{
box-sizing:border-box;
}

@font-face
{
	font-family: Metropolis;
    src: url(../fonts/Metropolis-Bold.otf);
}
body
{
	font-family: 'Montserrat', sans-serif !important;
	font-size:14px;
	overflow-x:hidden;
}
.wrapper
{
	width: 95%;
    margin: 0 auto;   
    max-width: 1200px;
	padding: 0px 15px;
}
header
{
	font-family: Metropolis !important;
    background: transparent;
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
	 z-index: 99;
}
header .wrapper
{
	display: flex;
    align-items: center;
    height: 75px;
}
.logoContainer
{
	margin-right:auto;
	padding-right:20px;
}
.logoContainer img
{
	
}
.headerMenu
{
	margin:0 auto;
	display:block;
	color:#fff;
	font-size:14px;
	text-transform:uppercase;
	padding:0px;
}
.headerMenu li
{
	list-style-type:none;
	float:left;	
}
.headerMenu li a
{
		display:block;
		padding:15px 0px;
		margin:0px 20px;
		color:inherit;
		text-decoration:none;
		outline:none;
		position:relative;
}
.headerMenu li a::before
{
	content:'';
	position:absolute;
	left:0px;
	right:0px;
	bottom:0px;
	margin:0 auto;
	width:0px;
	height:2px;
	background:#ffe400;
	transition:width 0.2s ease-in-out;
}
.headerMenu li a:hover::before,.activeMenu::before
{
	width:100% !important;
}
.socialGroups
{
	margin-left:auto;
	padding-left:20px;
}
.headerButton
{
	width: 170px;
    height: 41px;
    border: 3px solid #ffe400;
    text-align: center;
    line-height: 36px;
    display: inline-block;
    margin-right: 7px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 3;
    border-radius: 25px;
    overflow: hidden;
    vertical-align: middle;
	
}
.headerButton:hover
{
	
	 color:#000;
	 text-decoration:none;
}
.headerButton::after
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: rgba(255,228,0,1);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
	border-radius:25px;
}
.headerButton:hover::after
{
	 opacity: 1;
	 -webkit-transform: scale(0.98,0.9);
    transform: scale(0.98,0.9);
}
.headerSocialLinks
{
	width: 32px;
	vertical-align: middle;
    height: 32px;
    display: inline-block;
    margin-left: 8px;
    border: 2px solid #82c0c5;
    color: #82c0c5;
    line-height: 31px;
    text-align: center;
    border-radius: 25px;
    font-size: 13px;
	position:relative;
	overflow:hidden;
	z-index:3;
}

.headerSocialLinks::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: rgba(255,255,255,0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.headerSocialLinks:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(0.5,1);
    transform: skewX(-180deg) scale(0.7,1);
}
.headerSocialLinks:hover
{
	text-decoration:none;
	color:#fff;
}

#menu-toggle {
	display:none;
     width: 40px;
    height: 40px;
 
  position: relative;
  position: relative;
  cursor: pointer;
      margin: 0px 0px 0px 15px;
 
  border-radius: 5px;
}
#menu-toggle:hover {
 
}
#menu-toggle #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}
#menu-toggle #hamburger span {
      width: 30px;
    height: 3px;
    position: relative;
    top: 6px;
    left: 5px;
    margin: 5px 0;
}
#menu-toggle #hamburger span:nth-child(1) {
  transition-delay: .5s;
}
#menu-toggle #hamburger span:nth-child(2) {
  transition-delay: .625s;
}
#menu-toggle #hamburger span:nth-child(3) {
  transition-delay: .75s;
}
#menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}
#menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 4px;
  position: absolute;
     top: 4px;
    left: 18px;
  transition-delay: 0s;
}
#menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 4px;
  position: absolute;
     left: 4px;
    top: 18px;
  transition-delay: .25s;
}

#menu-toggle.open #hamburger span {
  width: 0%;
}
#menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}
#menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: .125s;
}
#menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: .25s;
}
#menu-toggle.open #cross span:nth-child(1) {
  height: 80%;
  transition-delay: .625s;
}
#menu-toggle.open #cross span:nth-child(2) {
  width: 80%;
  transition-delay: .375s;
}
#menu-toggle span
{
	display: block;
  background: #fff;
  border-radius: 2px;
  transition: .25s ease-in-out;
}
@media(max-width:1125px)
{
.headerMenu li a
{
	    margin: 0px 10px;
}	
}
@media(max-width:700px)
{
.headerSocialLinks
{
	display:none;
}
}
@media(max-width:1024px)
{
.headerMenu
{
	
	position: absolute;
   
    width: 320px;
    right: 0px;
    top: 75px;
    background: #ffe400;
    height: calc(100vh - 75px);
	-webkit-transform: translateX(320px);
    transform: translateX(320px);
    visibility: visible-webkit-box-shadow:0 0 16px rgba(0,0,0,.28);
    box-shadow: 0 0 16px rgba(0,0,0,.28)-webkit-transition:transform .25s cubic-bezier(0.4,0.0,0.2,1),visibility 0s linear 0s;
    transition: transform .25s cubic-bezier(0.4,0.0,0.2,1),visibility 0s linear 0s;
}
.openMenu
{
	-webkit-transform: translateX(0);
    transform: translateX(0);
}
.headerMenu li
{
	float: none;
    color: #000;
    padding: 0px 10px;
	
}
.headerMenu li a::before
{
	background: #05808a;
}
#menu-toggle
{
	display:block;
}
}
@media(max-width:460px)
{
.logoContainer
{
	    width: 63px;
    overflow: hidden;
}
}
.homeBanner
{
	    background-image: url(../images/homeBanner.jpg);
   
}
.serviceBanner
{
	background-image: url(../images/serviceBanner.jpg);
	min-height: 567px !important;
    background-size: cover !important;
}
.contactBanner
{
	 background-image: url(../images/contactBanner.jpg);
	 min-height: 567px !important;
	 background-size: cover !important;
}
.aboutusBanner
{
	background: url(../images/aboutusBanner1.jpg);
	
    min-height: 567px !important;
    background-size: cover !important;
	
}
.projectBanner
{
	background: url(../images/projectBanner.jpg);
	min-height: 567px !important;
    background-size: cover !important;
	
}
.Banner
{
	background-size:100% 100%;
    background-repeat: no-repeat;
    min-height: 654px;
	
	overflow:auto;
}

.photoSection{
	display:none;
}

.team_para{
	text-align:left;
	max-width:720px;
}

.contactForm
{
	background-image: url(../images/formBg.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    min-height: 567px;
	padding:100px 0px;
	background-attachment:fixed;
	overflow:auto;
}
.Banner h1
{
	font-weight:bold;
	font-size:24px;
	margin:0px 0px 10px 0px;
	text-transform:uppercase;
	color:#fff;	
	line-height:normal;
}

.Banner h2
{
	font-weight:bold;
	font-size:60px;
	margin:0px 0px 10px 0px;
	text-transform:uppercase;
	color:#fff;	
	line-height:normal;	
	display:inline-block;	
	
	border-right: 4px solid #abcbc5; /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	animation: blink-caret .75s step-end infinite;
}
@media(max-width:1000px)
{
.Banner h2
{
	font-size: 45px;
}
}
@media(max-width:787px)
{
.Banner h2
{
	font-size: 30px;
}
}
@media(max-width:730px)
{
.Banner h2 
{
	white-space: normal;
	animation: none;
	border-right:none;
}

}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #abcbc5; }
}
.Banner p
{
	    max-width: 620px;
    font-size: 20px;
    margin: 0px 0px 15px 0px;
    color: #fff;
    line-height: 25px;
}
.bannerData
{
	margin-top:150px;
}
.bannerBtn
{
	display:inline-block;	
	position:relative;
	overflow:hidden;
	    width: 135px;
}
.bannerBtn::after
{
	    content: 'Our Services';
    position: absolute;
    top: 0px;
    bottom: 0px;
    background: #ffe400;
    line-height: 44px;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    padding: 0px 15px 0px 18px;
    border-radius: 0px 25px 25px 0px;   
       border-radius: 25px;
       left: -130px;
  
    transition: 0.2s ease-in-out;
}
.bannerBtn:hover::after
{
	  left: 0px;
}
.sectionTwo
{
	padding:100px 0px;
	border:1px solid #e5e5e5;
}
.sectionTwo h1
{
	font-size:18px;
	text-transform:uppercase;
	margin:0px 0px 10px 0px;
	color:#000;
	text-align:center;
	font-weight:bold; 
}
.sectionTwo p
{
	font-size:16px;	
	margin:0px auto 20px auto;
	line-height:25px;
	max-width:740px;
	color:#555;
	text-align:center;
	
}
.readBtn
{
	width:156px;
	height:50px;
	border:3px solid #0e7788;
	line-height:46px;
	text-align:center;
	display:block;
	margin:0 auto;
	font-size:15px;
	font-weight:bold;
	color:#0e7788;
	position:relative;
	text-transform:uppercase;
	overflow:hidden;
}
.readBtn::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: #0e7788;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.readBtn:hover
{
	color:#fff;
	text-decoration:none;
}
.readBtn:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(0.98,0.9);
    transform: skewX(-180deg) scale(0.98,0.9);
}
.my_fixed
{
	    background: #1d6885 !important;
}
.serviceSection
{
	    padding: 85px 0px;
    overflow-y: auto;
    overflow-x: hidden;
	
}
.serviceData
{
	margin-bottom:20px;
   
}

.serviceData img{
margin-bottom:10px;
}
.serviceData h1
{
		font-weight:bold;
		font-size:16px;
		margin:0px 0px 10px 0px;
		color:#333333;
		position:relative;
		padding-left:20px;
}
.serviceData h1::after
{
	content:'';
	width:14px;
	height:14px;
	background:#ffff96;
	border:4px solid #ffdd00;
	border-radius:50%;
	overflow:hidden;
	position: absolute;
    left: 0px;
    top: 1px;
}
.serviceData p
{
	
		    font-size: 15px;
    margin: 0px;
    color: #333333;
    line-height: 24px;
}
@media (min-width: 767px)
{
.serviceData {
     min-height: 320px;
}
}
.portfolioSection
{
	
	background-image:url(../images/projectSlider.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-attachment:fixed;
	padding:0px 15px;
	position:relative;
	text-align:center;
}
.project h1
{
	font-weight:bold;
	font-size:18px;
	margin:45px 0px 15px 0px;
	text-transform:uppercase;
	color:#fff;
	text-align:center;
	
}
.project h2
{
	font-weight:normal;
	font-size:14px;
	margin:0px auto 15px auto;
	min-height: 65px;
	color:#fff;
	text-align:center;
	max-width:582px;
	line-height:21px;
}
.project  img
{
 margin:40px auto 0 auto;
display:block;
max-width:100%;
width:auto !important;


}
.mr-10
{
	margin-right:10px;
}

.btnSlider
{
	display:inline-block;
	border:2px solid #0e7788;
	color:#fff;
	text-transform:uppercase;
	font-size:14px;
	font-weight:bold;
	padding:8px 25px;
	margin-bottom:10px;
	border-radius:25px;
	width:175px;
	height:40px;
	overflow:hidden;
	    position: relative;
		 
	
}
.btnSlider::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: #0e7788;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
	   border-radius: 25px;
    transition: all 0.5s;
}
.btnSlider:hover
{
	color:#fff;
	text-decoration:none;
}
.btnSlider:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(0.95,0.8);
    transform: skewX(-180deg) scale(0.95,0.8);
}
#portfolio .owl-nav
{
	    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    margin-top: -25px;
}
.arrowLeft
{
	left:0px;
	position: absolute;
}
.arrowRight
{
	right:0px;
	position: absolute;
}
#portfolio .owl-dot span
{
	    width: 10px;
    height: 10px;
    background: transparent;
    float: left;
    margin-right: 5px;
    border: 2px solid #fff;
	    border-radius: 50%;
}
#portfolio .owl-dot.active span
{

    background: #0e7788;
    float: left;   
    border: 2px solid #0e7788;
}
.customerDetails
{
	
}
.testimonial h1
{
	font-weight:bold;
	font-size:18px;
	color:#000;
	margin:0px 0px 30px 0px;
	text-align:center;
}
.customerDetails p
{

	font-size:14px;
	color:#555;
	margin:0px 0px 20px 0px;
	text-align:left;
}
.customerDetails span
{
	display:block;
	font-size:16px;
	color:#000;
	
}
.testimonial
{
	padding:50px 0px;
	overflow:auto;
}
.customerDetails
{
	position:relative;
	max-width:767px;
	margin:0 auto;
}
@media(max-width:1024px)
{
.customerDetails::before
{
	display:none;
}	
}
.customerDetails::before
{
	content:'';
	width:85px;
	height:85px;
	background-image:url(../images/quote.png);
	background-repeat:no-repeat;
background-position:center center;
    position: absolute;
    left: -110px;
    top: -15px;
}
.clientLogo
{
	padding:50px 0px;
	overflow:auto;
	background:#000;
	text-align:center;
	
	
}
.clientLogo h1
{
	font-weight:normal;
	font-size:18px;
	color:#797979;
	margin:0px 0px 30px 0px;
	text-align:center;
}
.clientLogo h1 span
{
	font-weight:bold;
	color:#fff;
}
.logoClients
{
	display: inline-block;
    height: 90px;
    width: 150px;
    margin-right: 25px;
    margin-bottom: 15px;
	cursor:pointer;
	
}
.logoClients img:hover,.logoClients:hover img
{
	  -webkit-filter:none; /* Safari 6.0 - 9.0 */
    filter: none;
}
.logoClients img
{
	max-width:100%;
	max-height:100%;
	margin:0 auto;
	cursor:pointer;
	vertical-align:middle;
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
.footer1
{
	    padding: 10px 0px;
    overflow: auto;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    margin-top: 10px;
	
}
.fmail
{
	float:left;
	font-size:14px;
	color:#87878c;
	text-decoration:none;
}
.fsocial
{
	float: right;
    font-size: 14px;
    color: #87878c;
    margin-left: 7px;
    border: 2px solid #87878c;
    text-decoration: none;
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    border-radius: 28px;
	overflow:hidden;
	position:relative;
}
.fmail:hover,.fmail:active,.fmail focus
{
	text-decoration:none;
	color:#1a6b86;
}

.fmail img
{
	margin-right:7px;
	vertical-align:middle;
}

.fsocial::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color:#1a6b86;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	border-radius:50%;
}
.fsocial:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(0.9,0.9);
    transform: skewX(-180deg) scale(0.9,0.9);
}
.fsocial:hover
{
	text-decoration:none;
	color:#fff;
	border-color:#1a6b86;
}
.fooSec
{
	margin-bottom:20px;
	
}
@media (min-width:768px) and (max-width:992px)
{
.fooSec
{
	    min-height: 150px;
	
}	
}
.fooSec h1
{
	font-weight:bold;
	font-size:16px;
	color:#555555;
	margin:0px 0px 10px 0px;	
	text-transform:uppercase;
}
.fooSec a,.fooSec p
{
	display:block;
	text-decoration:none;	
	color:#87878c;
	font-size:14px;
	margin-bottom:10px;
	
}
.fooSec p
{
	    line-height: 23px;
}
.fooSec a:hover
{
	text-decoration:none;
}
.footer3
{
	margin-top:10px;
	padding:10px 0px;
	border-top:1px solid #ccc;
	font-size:13px;
	color:#87878c;
}
@media(max-width:365px)
{
.fmail
{
	float: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
.footer1
{
	text-align:center;
}
.fsocial
{
	    float: none;
    display: inline-block;
}
}
.mapBtn
{
	border: 1px solid #ccc;
    color: #333 !important;
    text-align: center;
    border-radius: 28px;
    font-size: 14px;
    width: 160px;
    padding-left: 14px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    background-image: url(../images/mapIcon.png);
    background-repeat: no-repeat;
    background-position: center left 10px;
	position:relative;
	overflow:hidden;
}

.mapBtn::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color:#1a6b86;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}
.mapBtn:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(1,1);
    transform: skewX(-180deg) scale(1,1);
}
.mapBtn:hover
{
	text-decoration:none;
	color:#fff !important;
	border:1px solid transparent !important;
}
.contactSection1
{
	text-align:center;
	padding:45px 0px;
	
}
.contactSection1 h1
{
	font-size:24px;
	font-weight:bold;
	margin:0px 0px 18px;
	text-transform:uppercase;
	color:#000;
}
.contactSection1 p
{
	font-size:18px;	
	margin:0px 0px;

	color:#87878c;
}
.contactSection1 a
{
	color:#2599c0;
		font-weight:500;
	text-decoration:none;
}
.contactSection1 a:hover
{
	
}

.contactDetails
{
	margin-bottom:30px;
}
.contactDetails h1
{
	color:#fff;
	font-size:16px;
	font-weight:bold;
	text-transform:uppercase;
	margin:0px 0px 15px;
}
.contactDetails p
{
	color:#fff;
	font-size:14px;	
	margin:0px 0px;
	line-height:24px;
}

.mapBtn1
{
	    border: 2px solid #0b79a0;
    color: #fff !important;
    text-align: center;
    border-radius: 28px;
    font-size: 14px;
    background: #0db2c5;
    width: 140px;
    font-weight: bold;
    height: 34px;
    line-height: 29px;
    text-transform: uppercase;
    text-decoration: none !important;
    position: relative;
    display: block;	
	z-index:5;
    margin: 10px 0px;
    overflow: hidden;
}

.mapBtn1::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color:#fff;
	border:2px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}
.mapBtn1:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(1,1);
    transform: skewX(-180deg) scale(1,1);
}
.mapBtn1:hover
{
	text-decoration:none;
	color:#000 !important;
	border:1px solid transparent !important;
}

.headerSocialLinks1
{
	width: 32px;
	vertical-align: middle;
    height: 32px;
    display: inline-block;
    margin: 8px 8px 8px 0px;
    border: 2px solid #82c0c5;
    color: #82c0c5;
    line-height: 31px;
    text-align: center;
    border-radius: 25px;
    font-size: 13px;
	position:relative;
	overflow:hidden;
	z-index:3;
}

.headerSocialLinks1::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color: rgba(255,255,255,0.5);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.headerSocialLinks1:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(0.5,1);
    transform: skewX(-180deg) scale(0.7,1);
}
.headerSocialLinks1:hover
{
	text-decoration:none;
	color:#fff;
}
.input-Group
{
	position: relative;
    margin-bottom: 40px;	
}
.loginInput {
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none !important;
    display: block !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 14px !important;
  
    padding-right: 25px;
    background-repeat: no-repeat;
    background-position: center right;
    box-sizing: border-box;
}
.animate-text {
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transition: all .3s cubic-bezier(0.4,0,0.2,1);
    transition: all .3s cubic-bezier(0.4,0,0.2,1);
    -webkit-transition-property: color,bottom,transform;
    transition-property: color,bottom,transform;
    color: #fff;
    font-size: 14px;
    pointer-events: none;
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
}
.line-effect {
    background-color: rgba(255,255,255,0.8);
    bottom: -2px;
    height: 1px;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
}
.animate-textSmall
{
    -webkit-transform: scale(0.75) translateY(-28px);
    transform: scale(0.75) translateY(-28px);
}
.line-effect::after
{
	content: '';
	width: 0px;
	left: 0px;
	right: 0px;
	margin: 0 auto;
	position: absolute;
	height: 2px;
	background-color: #c9d21f;
	transition: 0.5s ease-in-out;
}
.openLine::after
{
    width: 100% !important;
}

.cartoonBanner
{
	background-image:url(../images/teamArt.jpg);
	background-repeat:no-repeat;
	background-size:100% 417px;
	min-height:417px;
	padding:80px 0px 20px 0px; 
}
.secviceData
{
	max-width:700px;
}
.secviceData h1
{
	font-size:26px;
	margin:0px 0px 10px;
	text-transform:uppercase;
	font-weight:bold;
	color:#fff;
}
.secviceData p
{
	font-size:18px;
	margin:0px 0px;
	font-weight:500;
	color:#fff;
}
.projectSection
{
	
	overflow:auto;
}
.projectData
{
	position:relative;
	z-index:2;
	overflow:hidden;
}
.projectData img
{
	width:100%;
	transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
   
}
.projectDetails 
{
	position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
	opacity:0;
	z-index:2;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
	
}
.projectData:hover .projectDetails
{
	opacity: 1;
    -ms-transform: scale(1);
    transform: scale(1);
}
.projectData:hover img
{
	 -ms-transform: scale(1.3);
    transform: scale(1.3);
}
.projectDetails h1
{
	font-size:26px;
	font-weight:bold;
	color:#fff;
	margin:0px 0px 10px 0px;
	padding:0px 0px 10px 0px;
	position:relative;
	    display: inline-block;
	
}
.projectDetails h1::after
{
	content:'';
	width:50%;
	height:3px;
	background:#fff;
	position:absolute;
	left:0px;
	bottom:0px;
}
.projectDetails p
{
	color:#fff;
	font-size:16px;
	margin:0px;
}
.nopadding 
{
	padding:0px !important;
}
.centerDiv
{
	    position: absolute;
    left: 50%;
 
    top: 50%;
    transform: translate(-50%,-50%);
}
.layer1
{
	background:rgba(206,53,99,0.9);
}
.layer2
{
	background:rgba(178,52,180,0.9);
}
.layer3
{
	background:rgba(41,99,218,0.9);
}
.layer4
{
	background:rgba(178,218,158,0.9);
}
.layer5
{
	background:rgba(41,52,180,0.9);
}
.layer6
{
	background:rgba(206,53,53,0.9);
}
.layer7
{
	background:rgba(249,201,15,0.9);
}
.layer8
{
	background:rgba(0,116,142,0.9);
}
.projectTitle
{
	margin:80px 0px;
	color:#1d6885;
	font-size:26px;
	font-weight:bold;
	text-transform:uppercase;
	text-align:center;
}
.projectBannerLeft
{
	background-image:url(../images/projectBannerLeft.jpg);
	min-height:calc(100vh - 130px);
	background-repeat:no-repeat;
	background-size:cover;
	overflow: auto;
	
}
.projectBannerRight
{
	min-height: calc(100vh - 71px);
    background: #ffe400;
    padding: 30px !important;
    position: relative;	
}

.plannerText
{
	margin:150px auto 0px auto;
	max-width:350px;
	
}
.plannerText h1
{
	font-size:24px;
	font-weight:bold;
	margin:0px 0px;
	color:#fff;
	text-transform:uppercase;
}
.plannerText p
{
	font-size:16px;	
	margin:5px 0px;
	color:#fff;
	
}
.dotBlack,.dotBlack1
{
	
}
.dotBlack::before
{
	content: '';
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 50%;
}
.dotBlack::after
{
	content: '';
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
}

.dotBlack1::before
{
	content: '';
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    bottom: 10px;
    left: 10px;
    border-radius: 50%;
}
.dotBlack1::after
{
	content: '';
    width: 10px;
    height: 10px;
    background: #000;
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
}
.projectPlannerForm
{
	max-width:518px;
	margin:50px auto;
	display:block;
}
.projectPlannerForm h1
{
	font-size:30px;
	margin:0px 0px 50px;
	color:#20789f;
	font-weight: bold;
	text-transform:uppercase;
}
.projectPlannerForm p
{
	margin: 0px;
    font-weight: 500;
    font-size: 16px;
}
.nextPrevSection
{
	margin:70px 0px;
}
.nextPrevSection span
{
	color: #555;
    font-size: 14px;
    vertical-align: middle;
    font-weight: 500;
	cursor:pointer;
   
}
.nextPrevSection span.pull-left img
{
	    margin-right: 10px;
	width: 40px;
	vertical-align:middle;
}
.nextPrevSection span.pull-right img
{
	margin-left:10px;
	width: 40px;
	vertical-align:middle;
}
.FormData1,.FormData1 li
{
	margin:0px;
	list-style-type:none;
	padding:0px;
}
.inputCheckBox
{
	
}
.inputCheckBox input[type="checkbox"]
{
	display:none;
}
.inputCheckBox label
{
	display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}
.inputCheckBox label::after
{
	
	content: '';
    height: 10px;
    width: 10px;
    border: 2px solid #555;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0px;
    top: 5px;

}
input[type="checkbox"]:checked + label::after{
	
	background:#20789f;
	border-color:#20789f;
 
} 
label.myLabel input[type="file"] {
    position:absolute;
    top: -1000px;
}
.myLabel {
        border: 2px solid #555;
    border-radius: 4px;
       padding: 7px 15px;
    margin: 2px;
    border-radius: 30px;
    background: transparent;
    display: inline-block;
    cursor: pointer;
   
	    position: relative;
    overflow: hidden;
	    z-index: 1;
}
.myLabel img
{
	margin-right:7px;
}
.myLabel::before
{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    background-color:#fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}
.myLabel:hover::before
{
	  opacity: 1;
    -webkit-transform: skewX(-180deg) scale(1,1);
    transform: skewX(-180deg) scale(1,1);
}
.myLabel:hover
{
	text-decoration:none;
	color:#fff !important;
	border-color:#fff;
	
}

.myLabel :invalid + span {
    color: #555;
}
.myLabel :valid + span {
    color: #555;
}
.aboutusSection
{
	margin: 20px 0px;
}
.aboutPixel
{
	display:inline-block;
	border:none;
	background:#ffe400;
	text-transform:uppercase;
	margin-bottom: 20px;
}
.teamBtn
{
	display:inline-block;
	border:none;
	background:#20789e;
	color:#fffeff;
	text-transform:uppercase;
	margin-bottom: 20px;
}
.aboutPixel:hover
{
	background:#20789e;
     color:#fffeff;
}
.aboutusSection a
{
	text-decoration: none;
    padding: 8px;
    color: #333333;
    font-weight: 600;
}
.teamBtn
{
	color:#fffeff !important;
}	
.teamBtn:hover
{
	background:#ffe400;
     color:#333333 !important;
}
.aboutusSection p
{
	margin: 0 0 10px;
    width: 70%;
    font-size: 14px;
    line-height: 24px;
}
.photoSection img
{
	    background: #00ebcd;
    border-radius: 50%;
    width: 70%;
	margin: 0px auto;
    display: block;
}
.photoSection
{
    padding: 0px;
    text-align: center;
}
.groupSection
{
	    margin: 25px auto;
		display:block;
    padding-bottom: 20px;
}
.photoSection h1
{
	font-size: 18px;
    text-transform: uppercase;
    color: #333333;
    font-weight: 600;
    margin: 0px;
    padding: 25px 0px 10px 0px;
}
.socialLink
{
	    width: 26px;
    vertical-align: middle;
    height: 26px;
    display: inline-block;
    margin-left: 8px;
    border: none;
    background: #2078a0;
    color: #82c0c5;
    line-height: 26px;
    text-align: center;
    border-radius: 25px;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.socialLink:hover
{
	color:white !important;
}

@media (min-width: 320px)
{
.aboutusSection p
{
	width:100% !important;
}
}
@media (min-width: 994px)
{
.aboutusSection p
{
	width:60% !important;
}
}
.quotes
{
	content: "\f10e";
    vertical-align: top;
    font-size: 16px;
    color: #ffe200;
    position: relative;
}
.teamInfo h1
{
	color: #2a95bf;
    font-size: 36px;
    font-weight: 600;
}
.teamInfo span
{
	text-transform: uppercase;
    margin-right: 20px;
    border-right: 2px solid #818181;
    padding-right: 20px;
    color: #555555;
    font-weight: 600;
}
.teamInfo p
{
	    margin: 20px 0px;
    color: #555555;
    line-height: 26px;
    width: 80%;
}
@media (max-width: 420px)
{
.teamInfo h1
{
	font-size: 24px !important;
    font-weight: 700;
}
}
@media (max-width: 757px)
{
.teamInfo p
{
	width:100% !important;
}	
@media (max-width: 525px)
{
.teamInfo span
{
	display: block;
    border: none;
    line-height: 26px;
}
}
}
.mailUs i
{
	        width: 40px;
    vertical-align: middle;
    height: 40px;
    display: inline-block;
    border: none;
    background: #2a95c1;
    color: #ffff;
    line-height: 40px;
    text-align: center;
    border-radius: 25px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}
.mailUstext h2
{
	display: inline-block;
    font-size: 16px;
    color: #555555;
    font-weight: 600;
    margin-left: 20px;
	    margin: 0px;
}
.mailUstext a
{
	display:block;
}
.mailUstext
{
	display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}
.teamSection
{
	margin:40px 0px;
}
@media (max-width: 1020px)
{
.aboutHead
{
	font-size: 48px !important;
}
}
@media (max-width: 845px)
{
.aboutHead
{
	    max-width: 505px !important;
    font-size: 31px !important;
}
}
@media (max-width: 551px)
{
.aboutHead
	{
		font-size:18px !important;
		
	}
}
@media (max-width: 320px)
{
.aboutHead
	{
		font-size:18px !important;
		
	}
}

