@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  background: #ffffff; 
	font-family: 'Montserrat', sans-serif;
	color:#424e55;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Poppins', sans-serif;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 1.75rem;
	padding-bottom:20px;
	color:#00adef;
}

h3, .h3 {
  font-size: 1.2rem;
	color:#00adef;
}

h4, .h4 {
  font-size: 1rem;
}

h5, .h5 {
  font-size: .75rem;
}

h6, .h6 {
  font-size: .5rem;
}

a{
	color: #00adef;
	text-decoration: none;
}

a:hover{
	color: #00adef;
	text-decoration: none;
	border-bottom:1px dotted #00adef;
}

#logo{
	position:fixed;
	left:20px;
	top:9px;
	z-index: 200;
}

#logo img{
	width: 118px;
	height:auto;
	
}

#logo a:hover{
	border-bottom:none;
}

header{
	position:fixed;
	background:#424e55;
	opacity: 0.5;
	width:100%;
	height:85px;
	z-index: 100;
}

textarea{
	resize: none;
}

.solid-bg-heading{
	color:#ffffff;
	background:#00adef;
	padding:50px 0 100px 0;
	margin-bottom:-50px;
}

.drk-grey-bg{
	background: #424e55;
}

.grey-bg{
	background: #f8f9fa;
}

.container-fluid{
	padding-left:0;
	padding-right:0;
}

.clearspace-tb{
	padding-top:50px;
	padding-bottom:50px;
}

.clearspace-t{
	padding-top:50px;
}

.clearspace-b{
	padding-bottom:50px;
}

.full-width{
	width:100%;
}
	
	.btn-primary:hover {
    color: #fff;
    background-color:#424e55;
		border:none;
}
.btn {
    border: none;
    border-radius: 0;
}

.btn-primary {
    background-color: #00adef;
}

section .btn-primary {
	margin:20px 0 0 0;
}

/* Hamburger Nav */

.button_container {
  position: fixed;
  top: 30px;
  right: 30px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 200 !important;
  transition: opacity 0.25s ease;
}
.button_container:hover {
  opacity: 0.7;
}
.button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}
.button_container.active .middle {
  opacity: 0;
  background: #fff;
}
.button_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}
.button_container span {
  background: #fff;
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 11px;
}
.button_container span:nth-of-type(3) {
  top: 22px;
}
.overlay {
  position: fixed;
  background: #00adef;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
	z-index: 150;
}
.overlay.open {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
}
.overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  text-align: center;
}
.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
	width:100%;
}
.overlay ul li {
  display: block;
  min-height: 50px;
  position: relative;
  opacity: 0;
	width:100%;
}
.overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
	width:100%;
	padding-bottom: 10px;
}

.overlay ul li a:hover {
  background:#fff;
	color:#1ab7ea;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.nav-bg {
  background: #000;
  opacity: 0;
}

.nav-show {
  opacity: 0.4;
}

.nav-transition {    
  -webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

/* ----- Pegboard Tweaks --------*/

.RadMenu {
    float: none;
	text-align: center;
	width:100%;
}
.RadMenu a:hover{
	border: none;
}

.RadMenu a.rmLink{
    width: 100% !important;
}

.RadMenu .rmText {
    float: left;
    width: 100%;
    text-align: center;
	font-weight: bold;
}

/* ----- / Pegboard Tweaks --------*/

/* End Hamburger Nav */


/* Video Banner */
video { 
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
 background: url('../images/home-bg.jpg') no-repeat;
  background-size: cover;
  transition: 1s opacity;
}
.stopfade { 
   opacity: .5;
}


	.banner-wrap{
		height: 940px;
		position: relative;
		overflow: hidden;
	}

	#banner-heading{
	 position: absolute;
  	width: 600px;
  	height: 200px;
 	 top: 55%;
  left: 50%;
  margin-left: -300px;
	margin-top: -100px;
	text-align:center;
	color:#ffffff !important;
		z-index: 80;
	}

#video-overlay{
	position: absolute;
  	width: 100%;
  	height: 100%;
	z-index: 50;
	background: rgba(66, 78, 85, 0.7);
}

/* End Video Banner */

/* services section */
.service-item{
	margin-top: 15px;
	padding-top:20px;
	padding-bottom:20px;
}

.service-item a{
	border:none;
}
.service-item a p{
	color: #424e55;
}

.service-item img{
	margin-bottom: 15px;
}

.service-item:hover{
	background:#eaebef;
	cursor: pointer;
}
/* /services section */

/* newsletter section */

.newsletter-panel ul li{
		list-style: none;
	}
.newsletter-panel ul{
	padding-left:0;
}

.newsletter-panel .pbForm{
	width:100%;
}

.newsletter-panel .pbForm .form{
	width:75%;
	float:left;
}

.newsletter-panel .pbForm .button{
	width:25%;
	float:left;
	background-color: #00adef;
	border:none;
	color:#ffffff;
	padding:5px;
	cursor: pointer;
}

.newsletter-panel .pbForm .button:hover{
background-color: #424e55;
}

.newsletter-panel .item{
	width:50%;
	display:inline-block;
	padding-right:10px;
}
.newsletter-panel .item .field .textbox{
	width:100%;
	border: 1px solid #ccc;
	padding: 4px 10px;
}

.newsletter-panel .item .label{
	display:none;
}
/* /newsletter section */


/* blog post section */

.blog-post-box{
	background:#ffffff;
	padding:20px;
	overflow:hidden;
	position:relative;
}

.bp-thumb-cat{
	text-transform: uppercase;
	margin-bottom:10px;
	font-size: 14px;
}

.blog-post-box p{
	margin-bottom: 50px;
	height: 75px;
	overflow: hidden;
}
.blog-back{
	font-style: italic;
	text-align:right;
	margin: 30px 0 50px 0;
}

.blog-page-nav{
	font-style: italic;
	margin: 30px 0 50px 0;
}

.blog-arrow{
	font-weight:bold;
	font-style: normal;
}

.rm-arrow{
	position:absolute;
	bottom:20px;
	left:20px;
}

.rm-arrow a{
	font-size: 1rem;
	border: 1px solid #424e55;
	color:#424e55;
	border-radius:50%;
	float:left;
	padding:3px 10px;
}

.rm-arrow a:hover{
	border: 1px solid #00adef;
	color:#00adef;
	box-shadow:0 0 5px #fff;
}

.blog-social{
	position:absolute;
	bottom:20px;
	right:20px;
	text-align:right;

}
.blog-post-box.featured-post .blog-social .fa{
padding: 8px;
	width:31px;
	font-size: 15px !important;
	line-height: 15px;
	text-align: center !important;
	text-decoration: none;
	border-radius: 50%;
	background: #fff;
	color:#424e55;
}
.blog-post-box .blog-social .fa{
padding: 8px;
	width:31px;
	font-size: 15px !important;
	line-height: 15px;
	text-align: center !important;
	text-decoration: none;
	border-radius: 50%;
	background: #424e55;
	color:#fff;
}

.blog-social a{
		font-size:26px;
	border-bottom:none;
}

.blog-post-box.featured-post{
	background:#424e55;
	color:#ffffff;
}

.blog-post-box.featured-post a{
	color:#ffffff;
	border-color: #ffffff;
}

.blog-post-box.featured-post .bp-thumb-cat a{
	color:#00adef;
	border-color:#00adef;
}

.fa:hover{
	opacity: 0.6;
}

/* /blog post section */

/* contact section */
.contact-us-panel{
	color:#ffffff;
	text-align:left;
}

.contact-social{
	color:#ffffff;
	font-size:26px;
	margin-top:15px;
}
.contact-social a{
	color:#ffffff;
	border:none;

}
	.contact-social .fa {
   	padding: 10px;
	width:40px;
	font-size: 20px !important;
	line-height: 20px;
	text-align: center !important;
	text-decoration: none;
	border-radius: 50%;
	background: #fff;
	color:#424e55;
}



/* ----- Pegboard Tweaks --------*/
.contact-us-panel .formFields{
		padding-left:0;
	}
	.contact-us-panel .formFields li{
		list-style: none;
	}

.contact-us-panel .textbox, .contact-us-panel .textarea{
	width: 100%;
padding: 8px;
background: #424e55;
border-bottom: 1px solid #fff;
border-top: none;
border-left: none;
border-right: none;
color: #ffffff !important;
}

.contact-us-panel .formFieldLabel{
	display:none;
}

.contact-us-panel .formField{
	margin-bottom:8px;
}

.contact-us-panel .button{
	width:25%;
	float:left;
	background-color: #00adef;
	border:none;
	color:#ffffff;
	padding:5px;
	cursor: pointer;
}

.contact-us-panel .button:hover{
color: #424e55;
	background-color:#ffffff;
}

/* ----- / Pegboard Tweaks --------*/

/* /contact section */

/* Our Work Gallery Hover Effect */

.hovereffect {
width:100%;
height:100%;
float:left;
overflow:hidden;
position:relative;
cursor:default;

}

.hovereffect .hoveroverlay {
width:100%;
height:100%;
position:absolute;
overflow:hidden;
top:0;
left:0;
opacity:0;
background-color:rgba(11,182,236,.7);
-webkit-transition:all .4s ease-in-out;
transition:all .4s ease-in-out
}

.hovereffect .hover-bg-img {
display:block;
position:relative;
-webkit-transition:all .4s linear;
transition:all .4s linear;
}

.hovereffect .cl-logo {
text-transform:uppercase;
color:#fff;
text-align:left;
position:relative;
-webkit-transform:translatey(-100px);
-ms-transform:translatey(-100px);
transform:translatey(-100px);
-webkit-transition:all .2s ease-in-out;
transition:all .2s ease-in-out;
padding: 3rem 2rem 1rem 2rem;
width: 60%;
}

.hovereffect a.info {
	text-decoration:none;
	display:inline-block;
	color:#fff;
	background-color:transparent;
	opacity:0;
	filter:alpha(opacity=0);
	-webkit-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
	margin:10px 0 0;
	padding:7px 30px;
	border:1px solid #fff;
	border-radius: 50%;
	padding:5px 12px;
	margin-top:10px;
	position:absolute;
	left: 2rem;
	bottom: 3rem;
}

.hovereffect a.info:hover {
box-shadow:0 0 5px #fff;
}

.hovereffect p {
	color:#ffffff;
	padding:1rem 2rem 2rem 2rem;
}

.hovereffect:hover .hover-bg-img {
-ms-transform:scale(1.2);
-webkit-transform:scale(1.2);
transform:scale(1.2);
}

.hovereffect:hover .hoveroverlay {
opacity:1;
filter:alpha(opacity=100);
}

.hovereffect:hover .cl-logo,.hovereffect:hover a.info {
opacity:1;
filter:alpha(opacity=100);
-ms-transform:translatey(0);
-webkit-transform:translatey(0);
transform:translatey(0);
}

.hovereffect:hover a.info {
-webkit-transition-delay:.2s;
transition-delay:.2s;
}

/* /Our Work Gallery Hover Effect */

/* ====== INTERNAL PAGES ====== */

.int-banner{
	width:100%;
	height:800px;
	position: relative;
		overflow: hidden;
}

.main-wrap{
	background:#ffffff;
}

.abt-txt-panel{
	padding:50px;
}
	
.abt-img-panel{
	padding:0;
}

.blog-categories{
	color:#ffffff;
}

.blog-item{
	overflow:hidden;
}

.blog-item a{
	display:block;
	width:100%;
}

.blog-item a:hover{
	color:#ffffff !important;
	background:#00adef;
	display: block;
	border:none;
}

.blog-item a:hover .blog-item-summary, .blog-item a:hover .blog-cat-heading, .blog-item a:hover .blog-item-heading  {
	color:#ffffff;
}

.blog-item a:hover .blog-spacer{
	display:none;
}

.blog-item a:hover ::after.blog-spacer{
	display:none;
}


.blog-spacer{
	border-bottom: 1px solid #e1e1e1;
	width:300px;
	margin:0 auto;
}


.blog-cat-heading{
	color:#424e55;
	font-style:italic;
	margin-bottom:10px;
}

.blog-item p{
		color:#424e55;
}

.hiddenElement{
	display:none;
}

.blog-categories a{
	color:#ffffff;
	font-weight:bold;
	margin: 0 4px;
}

.blog-categories a:hover{
	color:#00adef;
	border-bottom: none;
}

.service-summary{
	margin-bottom:15px;
}

#myCarousel {	
	margin-bottom: 25px;
	}

.footer-paragraph{
	font-size:.85rem;
	padding-top:15px;
}

