/* ==== Google font ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700');
@import 'https://fonts.googleapis.com/css?family=Nothing+You+Could+Do';
@import 'https://fonts.googleapis.com/css?family=Ubuntu:300';
@import 'https://fonts.googleapis.com/css?family=Architects+Daughter';

body {
    width: 100%;
    height: 100%;
    font-family: 'Ubuntu',sans-serif;
	font-weight: 300;
    color: #000;
/*    color: #666; */
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
margin: 0 0 20px;
font-size: 16px;
line-height: 1.6em;
font-family: 'Ubuntu', sans-serif;
}

p.lead {
	font-weight: 600;
}

a {
    color: #28c3ab;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #176e61;
}

.light {
    font-weight: 400;
}

.navbar {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.3);
	
}

.navbar-brand {
    font-weight: 700;
}
.navbar-brand {
  height: 40px;
/*  width: 80%; */
width: 105%;
  padding: 5px 15px;
  font-size: 18px;
  line-height: 1em;
background: linear-gradient(225deg,rgba(238,130,238,0.4),rgba(102,51,153,0.4),rgba(0,0,255,0.4),rgba(0,255,0,0.4),rgba(255,255,0,0.4),rgba(255,153,0,0.4),rgba(255,0,0,0.4));

}

.navbar-brand h1{
	color: #fff;
  font-size: 100px;
  line-height: 40px;
}

.navbar-brand:focus {
    outline: 0;
}

.nav.navbar-nav {
    background-color: rgba(255,255,255,.75);
    text-align:right;
}

.navbar-custom.top-nav-collapse .nav.navbar-nav {
    background-color: rgba(255,255,255,.5);
}


.navbar-custom ul.nav li a {
	font-size: 12px;
	letter-spacing: 1px;
	color: #000;
/*	color: #444; */
	text-transform: uppercase;
	font-weight: 700;
}

.navbar-custom.top-nav-collapse ul.nav li a {
	    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	color: #000;
}

.navbar-custom ul.nav ul.dropdown-menu {
	  border-radius: 0;	
}

.navbar-custom ul.nav ul.dropdown-menu li {
	border-bottom: 1px solid #f5f5f5;

}

.navbar-custom ul.nav ul.dropdown-menu li:last-child{
	border-bottom: none;
}

.navbar-custom ul.nav ul.dropdown-menu li a {
	padding: 10px 20px;
}

.navbar-custom ul.nav ul.dropdown-menu li a:hover {
	background: #fefefe;
}

.navbar-custom.top-nav-collapse ul.nav ul.dropdown-menu li a {
	color: #666;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}


.navbar-custom .nav li a:focus{ 
    outline: 0;
    background-color: rgba(0,0,0,0);
}

.navbar-custom .nav li a:hover,
.navbar-custom .nav li.active {
    outline: 0;
    background-color: rgba(30,30,30,.3);
}

/* .navbar-custom .nav li a:hover,.navbar-custom .nav li a:focus,.navbar-custom .nav li.active {outline: 0;background-color: rgba(0,255,0,.3);} */

.navbar-toggle {
	padding: 4px 6px;
	font-size: 18px;
	color:#fff;
	text-shadow: 0px 0px 5px #000;
}

.navbar-toggle:focus,
.navbar-toggle:active {
    outline: 0;
}


/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.spinner {
  position: fixed;
  z-index: 999;
  height: 2em;
  width: 6em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* #loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 60px;
}

 @keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


 @keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
  25%{
    box-shadow: 10px 10px #39CCCC, -10px -10px #FFDC00;
  }
  50%{
    box-shadow: -10px 10px #39CCCC, 10px -10px #FFDC00;
  }
  75%{
    box-shadow: -10px -10px #39CCCC, 10px 10px #FFDC00;
  }
  100%{
    box-shadow: 10px -10px #39CCCC, -10px 10px #FFDC00;
  }
} 

#load {
	z-index: 9999;
  background-color: #FF4136;
  opacity: 0.75;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  margin: -5px auto 0 auto;
  left: 0;
  right: 0;
  border-radius: 0px;
  border: 5px solid #FF4136;
  box-shadow: 10px 0px #39CCCC, 10px 0px #01FF70;
/*  animation: shadowSpin 1s ease-in-out infinite; */
}

*/

/* misc */
hr {
  margin-top: 10px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;border-top: 2px solid #eee;}

.trans-0 {
background: rgba(0,0,0,0.0);
}
.trans-20 {
background: rgba(0,0,0,0.2);
}
.trans-40 {
background: rgba(0,0,0,0.4);
}

.trans-50 {
background: rgba(0,0,0,0.5);
}

.trans-60 {
background: rgba(0,0,0,0.6);
}

.trans-70 {
background: rgba(0,0,0,0.7);
}

.trans-80 {
background: rgba(0,0,0,0.8);
}

.trans-service {
background: rgba(0,0,0,0.4);
}

.uline {
text-decoration: underline;
padding-bottom: 20px;
}

.highlogo {
color:#fff;
font-size:100px;
text-shadow: 3px 3px #000;
text-transform: capitalize;
font-family: 'Nothing You Could Do', cursive;
margin-top:30px; 
/* background: linear-gradient(225deg,rgba(238,130,238,0.4),rgba(102,51,153,0.4),rgba(0,0,255,0.4),rgba(0,255,0,0.4),rgba(255,255,0,0.4),rgba(255,153,0,0.4),rgba(255,0,0,0.4)); */
}

.highlogopt {
line-height:0.5em;
padding-left:125px;
color:#fff;
font-size:12px;
text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
font-family: 'Montserrat', cursive;
}
/* ===========================
--- General sections
============================ */

.home-section {
    padding-top: 110px;
    padding-bottom: 110px;
	display:block;
    position:relative;
    z-index:120;
}

.contact-section {
    padding-top: 110px;
	display:block;
    position:relative;
    z-index:120;
}

.section-heading h2 {
	font-size: 40px;
	color:#fff;
}
.section-heading i {
	margin-bottom: 20px;
}

.logo {
width:60%;
align:left;
}

.logodiv {
margin-top:-25px;
/* position:fixed; */
/* top:10px; */
/* width:60%; */
}

.logoimg {
width:300px;
height:50px;
}

/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}

.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}

/* ===========
Gradients
============ */

.aboutbg {
background: rgb(220,226,232);
background: -moz-linear-gradient(bottom, rgba(102,51,153,0.3) 20%, rgba(238,130,238,0.1) 80%, rgba(238,130,238,0) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(238,130,238,0)), color-stop(2%, rgba(238,130,238,0)), color-stop(80%, rgba(102,51,153,0.3))); /* safari4+,chrome */
background: -webkit-linear-gradient(bottom, rgba(102,51,153,0.3) 20%, rgba(238,130,238,0.1) 80%, rgba(238,130,238,0) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(bottom, rgba(102,51,153,0.3) 20%, rgba(238,130,238,0.1) 80%, rgba(238,130,238,0) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(bottom, rgba(102,51,153,0.3) 20%, rgba(238,130,238,0.1) 80%, rgba(238,130,238,0) 100%); /* ie10+ */
background: linear-gradient(to top, rgba(102,51,153,0.3) 20%, rgba(238,130,238,0.1) 80%, rgba(238,130,238,0) 100%); /* w3c */
}

.eventbg {
background: rgb(220,226,232);

background: -moz-linear-gradient(bottom, rgba(102,51,153,0.3) 0%, rgba(102,51,153,0.3) 10%, rgba(102,51,153,0.3) 50%, rgba(102,51,153,0.3) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(102,51,153,0.3)), color-stop(50%, rgba(102,51,153,0.3)), color-stop(90%, rgba(102,51,153,0.3)), color-stop(100%, rgba(102,51,153,0.3))); /* safari4+,chrome */
background: -webkit-linear-gradient(bottom, rgba(102,51,153,0.3) 0%, rgba(102,51,153,0.3) 10%, rgba(102,51,153,0.3) 50%, rgba(102,51,153,0.3) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(bottom, rgba(102,51,153,0.3) 0%, rgba(102,51,153,0.3) 10%, rgba(102,51,153,0.3) 50%, rgba(102,51,153,0.3) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(bottom, rgba(102,51,153,0.3) 0%, rgba(102,51,153,0.3) 10%, rgba(102,51,153,0.3) 50%, rgba(102,51,153,0.3) 100%); /* ie10+ */
background: linear-gradient(to top, rgba(102,51,153,0.3) 0%, rgba(102,51,153,0.3) 10%, rgba(102,51,153,0.3) 50%, rgba(102,51,153,0.3) 100%); /* w3c */
}

.servicebg {
background: rgb(220,226,232);
background: -moz-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(0,255,0,0.1) 10%, rgba(0,0,255,0.1) 50%, rgba(102,51,153,0.3) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(102,51,153,0.3)), color-stop(50%, rgba(0,0,255,0.1)), color-stop(90%, rgba(0,255,0,0.1)), color-stop(100%, rgba(255,255,0,0.1))); /* safari4+,chrome */
background: -webkit-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(0,255,0,0.1) 10%, rgba(0,0,255,0.1) 50%, rgba(102,51,153,0.3) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(0,255,0,0.1) 10%, rgba(0,0,255,0.1) 50%, rgba(102,51,153,0.3) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(0,255,0,0.1) 10%, rgba(0,0,255,0.1) 50%, rgba(102,51,153,0.3) 100%); /* ie10+ */
background: linear-gradient(to top, rgba(255,255,0,0.1) 0%, rgba(0,255,0,0.1) 10%, rgba(0,0,255,0.1) 50%, rgba(102,51,153,0.3) 100%); /* w3c */
}

.paymentbg {
background: rgb(220,226,232);
background: -moz-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,0,0.1)), color-stop(100%, rgba(255,255,0,0.1))); /* safari4+,chrome */
background: -webkit-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(bottom, rgba(255,255,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* ie10+ */
background: linear-gradient(to top, rgba(255,255,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* w3c */
}

.refsbg {
background: rgb(220,226,232);
background: -moz-linear-gradient(bottom, rgba(255,153,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,0,0.1)), color-stop(100%, rgba(255,153,0,0.1))); /* safari4+,chrome */
background: -webkit-linear-gradient(bottom, rgba(255,153,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(bottom, rgba(255,153,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(bottom, rgba(255,153,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* ie10+ */
background: linear-gradient(to top, rgba(255,153,0,0.1) 0%, rgba(255,255,0,0.1) 100%); /* w3c */
}

.contactbg {
background: rgb(220,226,232);
background: -moz-linear-gradient(bottom, rgba(255,0,0,0.2) 0%, rgba(255,153,0,0.1) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,153,0,0.1)), color-stop(100%, rgba(255,0,0,0.2))); /* safari4+,chrome */
background: -webkit-linear-gradient(bottom, rgba(255,0,0,0.2) 0%, rgba(255,153,0,0.1) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(bottom, rgba(255,0,0,0.2) 0%, rgba(255,153,0,0.1) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(bottom, rgba(255,0,0,0.2) 0%, rgba(255,153,0,0.1) 100%); /* ie10+ */
background: linear-gradient(to top, rgba(255,0,0,0.2) 0%, rgba(255,153,0,0.1) 100%); /* w3c */
}



/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	position:relative;
	
}

#intro.intro {
	padding:30% 0 0 0;
	height:100%;
}

.intro .slogan {
	text-align: center;

}

.intro .page-scroll {
	text-align: center;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-weight: 700;
	font-family: Montserrat, sans-serif;
	background-color: rgba(0, 0, 0, 0);
	text-decoration: none;
	text-transform: uppercase;
	border-width: 0px;
	border-color: #000;
	border-style: none;
	text-shadow: -1px 0 1px #000;
}

.intro .slogan h3 {
	color: #fff;
	text-shadow: -2px 2px 8px #000;
}


.intro .slogan h4 {
	color: #fff;
	text-shadow: -2px 2px 8px #000;
}

#fontfader h3 {
	color:#fff;
	font-size:80px;
	text-shadow: 3px 3px #000;
	text-transform: uppercase;
	font-family: 'Nothing You Could Do', cursive;
}


/* ===========================
--- About
============================ */


#about {
color:#fff;
}


.about-heading h2 {
	font-size: 40px;
	color: #fff;
}


.boxed-grey {
	background: #f9f9f9;
	padding: 20px;
}

.team h5 {
	margin-bottom: 0px;
	font-family: 'Nothing You Could Do', cursive;
	font-size:22px;
}

.story p {
	line-height:1.3em;
}

.team p.subtitle {
	margin-bottom: 10px;
}

.avatar {
	margin-bottom: 20px;
	max-width:170px;
	width:60%;
	margin-left:auto;
	margin-right:auto;

}

.img-circle {
	border-radius:13%;
	box-shadow: 3px 3px 10px #000;
}

.team-social {
	margin-left: 0;
	padding-left: 0;
	
}

.team-social {
	text-align: center;
}

.team-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.team-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.team-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.team-social .social-facebook a{background: #3873ae;}
.team-social .social-twitter a{background: #62c6f8;}
.team-social .social-dribble a{background: #d74980;}
.team-social .social-deviantart a{background: #8da356;}
.team-social .social-google a{background: #000;}
.team-social .social-vimeo a{background: #51a6d3;}
.team-social .social-facebook a:hover{background: #4893ce;}
.team-social .social-twitter a:hover{background: #82e6ff;}
.team-social .social-dribble a:hover{background: #f769a0;}
.team-social .social-deviantart a:hover{background: #adc376;}
.team-social .social-google a:hover{background: #333;}
.team-social .social-vimeo a:hover{background: #71c6f3;}



/* ===========================
--- Services
============================ */

#service {
color: #fff;
}

.service-icon {
	margin-top: 20px;
	margin-bottom: 10px;
}	

.service-desc h5 {
	font-family: 'Architects Daughter', cursive;
	font-size:26px;
}


.service-heading h2 {
	font-size: 40px;
	color: #fff;
}

#service img {width:100%;max-width:250px}


/* ===========================
--- Payment
============================ */

#payment {
color: #fff;
}

.payment-icon {
	margin-top: 20px;
	margin-bottom: 10px;
}	

.payment-desc h5 {
	font-family: 'Architects Daughter', cursive;
	font-size:26px;
}


.payment-heading h2 {
	font-size: 40px;
	color: #fff;
}

#payment img {width:100%;max-width:250px;}



/* ===========================
--- Refs
============================ */

#refs img {width:100%;max-width:400px;}

.refs-p {
	color:#fff;
	font-size:20px;
	font-weight:bold;
	text-decoration:underline;
	text-shadow: 1px 1px 3px #000;
}


/* ===========================
--- Contact
============================ */


#contact {
color: #fff;
}

form#contact-form .form-group label {
	text-align: left !important;
	display: block;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	color:#666;
}
form#contact-form input,form#contact-form select,form#contact-form textarea {
	border-radius: 0;
	border: 1px solid #eee;
  -webkit-box-shadow: none;
          box-shadow:  none;
}

form#contact-form input:focus,form#contact-form select:focus,form#contact-form textarea:focus {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.input-group-addon {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 0;
}

.widget-contact {
	text-align: left;
}


.company-social {
	margin-left: 0;
	padding-left: 0;
	margin-top: 10px;
}

.company-social {
	text-align: center;
}

.company-social li{
    display: inline-block;
	margin:0 !important;
	padding:0;
}


.company-social a{
	margin:0;
	padding:0;
    display: block;
	width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #3bbec0;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.company-social a i{
	text-align: center;
	margin:0;
	padding:0;
}
.company-social .social-facebook a{background: #3873ae;}
.company-social .social-twitter a{background: #62c6f8;}
.company-social .social-dribble a{background: #d74980;}
.company-social .social-deviantart a{background: #8da356;}
.company-social .social-google a{background: #000;}
.company-social .social-vimeo a{background: #51a6d3;}
.company-social .social-facebook a:hover{background: #4893ce;}
.company-social .social-twitter a:hover{background: #82e6ff;}
.company-social .social-dribble a:hover{background: #f769a0;}
.company-social .social-deviantart a:hover{background: #adc376;}
.company-social .social-google a:hover{background: #333;}
.company-social .social-vimeo a:hover{background: #71c6f3;}



/* ===========================
--- Footer
============================ */

footer {
	text-align: center;
	background-color: rgba(255, 0, 0, .2);
	padding: 50px 0 20px 0;
	position:relative;
	
}



footer p {
	color: #f8f8f8;
	text-shadow: 1px 1px #000000;
}


/* ===========================
--- Elements
============================ */


	.btnfuture {
	box-shadow:inset 0px 1px 3px 0px #91b8b3;
	background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
	background-color:#768d87;
	border-radius:5px;
	border:1px solid #566963;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:'Ubuntu', sans-serif;
	font-size:15px;
	font-weight:bold;
	padding:11px 23px;
	text-decoration:none;
	text-shadow:0px -1px 0px #2b665e;
}
.btnfuture:hover {
	background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
	background-color:#6c7c7c;
}
.btnfuture:active {
	position:relative;
	top:1px;
}

	.btnpast {
	box-shadow:inset 0px 1px 3px 0px #91b8b3;
	background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
	background-color:#768d87;
	border-radius:5px;
	border:1px solid #566963;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:'Ubuntu', sans-serif;
	font-size:15px;
	font-weight:bold;
	padding:11px 23px;
	text-decoration:none;
	text-shadow:0px -1px 0px #2b665e;
}
.btnpast:hover {
	background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
	background-color:#6c7c7c;
}
.btnpast:active {
	position:relative;
	top:1px;
}

#menneet {
display:none;
}


.btn {
	border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0 {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


#text {
    color: #fff;
    background: #ffcc00;
}

#map {
	height: 500px;
}


.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #666;
  border-color: #666;
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}


/* Media queries */


/* @media(min-width:767px) { */
@media(min-width:784px) {
    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }

    .top-nav-collapse {
        padding: 0;
        background-color: #000;
    }

	.navbar-custom .nav.navbar-nav {
	background-color: rgba(255,255,255,.8);
	text-align:right;
	}

    .navbar-custom.top-nav-collapse {
        border-bottom: 1px solid rgba(255,255,255,.8);
    }

    .intro {
        height: 100%;
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }
	

    .intro-text {
        font-size: 24px;
    }


}

@media (min-width:180px){
.navbar-custom ul.nav li a {font-size: 12px;}
.navbar-brand{width:100%;margin-top:-45px;}
.highlogo{margin-top:0px;}
.logoimg {width:200px;padding-left:15px;}
.logodiv{margin-top:0px;}
.navbar-brand h1 {font-size:60px;}
.highlogopt{font-size:10px;padding-left:80px;margin-top:-15px;}
.about-heading h2{font-size:30px;}
.service-heading h2{font-size:30px;}
.section-heading h2{font-size:30px;}
.refs-p{font-size:16px;}
#fontfader h3 {font-size:45px;}
.slogan {padding-top:10%;}
.slogan h3 {color:#fff;text-align:center;font-size:22px;}
.slogan h4 {color:#fff;text-align:center;font-size:14px;}
.trans-service {background: rgba(0,0,0,0.0);}
}


@media (min-width:480px){
#fontfader h3 {font-size:70px;}
#intro.intro {padding:35% 0 0 0;height:100%;}
.slogan {padding-top:0%;}
.slogan h3 {color:#fff;text-align:center;font-size:28px;}
.slogan h4 {color:#fff;text-align:center;font-size:16px;}
.trans-service {background: rgba(0,0,0,0.0);}
.logoimg {width:250px;padding-left:15px;}
.logodiv{margin-top:0px;}
/* #service img {max-width:150px;} */
}

@media (min-width:768px){
    .navbar {
        padding: 0px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }
.navbar-custom ul.nav li a {font-size: 8px;}
.container{width:750px;padding-top:30px;padding-left:0px;padding-right:0px;}
.navbar-brand{width:105%;padding-left:20px;margin-top:0px;}
.highlogo{margin-top:0px;}
#intro.intro {padding:25% 0 0 0;height:100%;}
.navbar-brand h1 {font-size:100px;}
.highlogopt{font-size:12px;padding-left:125px;margin-top:0px;}
.logoimg {width:250px;padding-left:0px;}
.logodiv{margin-top:-25px;}
.about-heading h2{font-size:40px;}
.service-heading h2{font-size:40px;}
.section-heading h2{font-size:40px;}
.refs-p{font-size:20px;}
#fontfader h3 {font-size:80px;}
.trans-service {background: rgba(0,0,0,0.4);}
#service img {max-width:250px;}
}

@media (min-width:992px){
    .navbar {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
        transition: background .5s ease-in-out,padding .5s ease-in-out;
    }
.navbar-custom ul.nav li a {font-size: 10px;}
.container{width:970px;padding-top:30px;padding-left:15px;padding-right:15px;}
.highlogo{margin-top:0px;}
.logoimg {width:300px;padding-left:0px;}
}

@media (min-width:1200px){
.container{width:1170px}
.navbar-custom ul.nav li a {font-size: 12px;}
.logoimg {width:350px;padding-left:0px;}
}


@media (max-width:768px) {

	.animated {
		/*CSS transitions*/
		-o-transition-property: none !important;
		-moz-transition-property: none !important;
		-ms-transition-property: none !important;
		-webkit-transition-property: none !important;
		transition-property: none !important;
		/*CSS transforms*/
		-o-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-webkit-transform: none !important;
		transform: none !important;
		/*CSS animations*/
		-webkit-animation: none !important;
		-moz-animation: none !important;
		-o-animation: none !important;
		-ms-animation: none !important;
		animation: none !important;
	}

	.team.boxed-grey {
		margin-bottom: 30px;
	}
	
	.boxed-grey {
		margin-bottom: 30px;
	}

	.avatar {
	width:30%;
	}
}

@media (max-width:480px) {

	
	.navbar-custom .nav.navbar-nav {
	background-color: rgba(255,255,255,0.8);
	text-align:right;
	}
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 30px;
	}
	
	.tp-banner-container {
		padding-top:40px;
	}

	.page-scroll a.btn-circle {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		padding: 7px 0;
		border: 2px solid #fff;
		border-radius: 50%;
		font-size: 20px;
	}
	
	.avatar {
	width:50%;
	}
	

}

