/* #Table of Contents

1.  Site Styles
2.  Header
3.  Top Navigation
4.  About
5.  Services
6.  Portfolio
7.  Pricing
8.  Testimonials
9.  Contact
10. Footer
11. Media Queries
================================================== */


/* ========================= Site Styles ========================= */

body{
    padding:0px!important;
}

::selection {
	background: #5c6062; /* Safari */
	color: #fff;
}


h1,h2,h3,h4,h5,h6{
    font-family: 'Lato', sans-serif;
    color:#fff;
}


/* Links */

a{
    color:#000;
	text-decoration:none;
}

a:hover,
a:active,
a:focus{
    outline:0;
	text-decoration:none;
}

/* Site Elements */

.btn {
	padding: 5px 10px;
	background: #333;
	border: none;
	border-radius: 0;
	color: #FFF;
	transition: all linear 0.25s;
	-ms-transition: all linear 0.25s;
	-moz-transition: all linear 0.25s;
	-webkit-transition: all linear 0.25s;
	-o-transition: all linear 0.25s;
}
.btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
	color: #FFF;
	background:#68a1de;
	transition: all linear 0.25s;
	-ms-transition: all linear 0.25s;
	-moz-transition: all linear 0.25s;
	-webkit-transition: all linear 0.25s;
	-o-transition: all linear 0.25s;
}
.btn-large {
	padding: 10px 20px;
}
.btn-small {
	padding: 0px 10px;
}
.btn-mini {
	padding: 0px 5px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
	background: #333 !important;
}

 /* Progress bars */
.page .progress {
	background-color: #26292E;
}

.page-alternate .progress {
	background-color: #68a1de;
}

.progress-bar {
	margin: 0px 0 20px 0px;
}

.progress {
	position: relative;
	background-image: none;
	height: 46px;
	-webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;

	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;


	margin: 0;
}

.progress .bar {
	background-color: #68a1de;
	background-image: none;

	-webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;

	-webkit-box-shadow: none;
	   -moz-box-shadow: none;
			box-shadow: none;
}

.progress .field {
	position: absolute;
	color: #FFFFFF;
	line-height: 44px;
	left: 20px;
}

.progress .field-value {
	position: absolute;
	color: #FFFFFF;
	line-height: 44px;
	right: 20px;
}

.black{
    color:#000;
}

.blue-text{
    color:#68a1de;
}

.white-bg{
    background:#fff;
	color:#68a1de;
	letter-spacing:1px;
	padding:0 10px;

}
.blue-bg{
    background:#68a1de;
	letter-spacing:1px;
	padding:0 10px;
}

.page{
    text-align:center;
}

.scale-img{
    width:100%;
	height:auto;
}

.big-line{
    border-bottom:2px solid #fff;
}

.full-width {
    width:100%;
	background: url(../images/patterns/pattern_1.png) 0 0 repeat fixed;
}

.full-width-dark{
    width:100%;
	background: url(../images/patterns/pattern_2.png) 0 0 repeat fixed;
}


/* ========================================================
   Header
======================================================== */

#header{
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

#home{
   padding:0px 0px 20px 0px;;
}

.welcome-note{
    font-family: 'Lato', sans-serif;
    color:#fff;
    font-size: 70px;
	font-weight: 700;
	letter-spacing: -5px;
	line-height: 1.3;
	text-transform: uppercase;
	text-align:right;
	text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.35);
	padding: 100px 0px 10px 0px;
}

.small-note h1{
    font-size:40px;
	margin:0px;
}

.small-note p{
    color:white;
	margin-top:15px;
}

#social-area{
	text-align:center;
}
#social-area h1{
    margin:0px;
}

#social-area .social-icons ul {
	margin: 0;
	padding: 0;
}

#social-area .social-icons ul li {
	display: inline-block;
	margin-left: 30px;
	margin-bottom:15px;
	list-style: none;
	cursor: pointer;
}

#social-area .social-icons ul li:first-child {
	margin-left: 0;
}

.social-icons ul li a {
	display: block;
	width: 70px;
	height: 70px;
	background: transparent;
	border:1px solid white;

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

.social-icons ul li a i {
	display: inline-block;
	margin: 0;
	color: #fff;
	line-height: 70px;
	opacity: 0.9;

	-webkit-transition: all 400ms ease-out 0s;
	   -moz-transition: all 400ms ease-out 0s;
		 -o-transition: all 400ms ease-out 0s;
		    transition: all 400ms ease-out 0s;

	-webkit-transform: rotateY(0deg);
	   -moz-transform: rotateY(0deg);
		-ms-transform: rotateY(0deg);
		 -o-transform: rotateY(0deg);
			transform: rotateY(0deg);
}

.social-icons ul li:hover a,
.social-icons ul li.active a {
	background-color: #68a1de;

	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
		    transform: rotateY(180deg);
}

.social-icons ul li:hover a i,
.social-icons ul li.active a i {
	color: #FFFFFF;
	opacity: 1;

	-webkit-transform: rotateY(180deg);
	   -moz-transform: rotateY(180deg);
		-ms-transform: rotateY(180deg);
		 -o-transform: rotateY(180deg);
			transform: rotateY(180deg);
}


/* ========================================================
   Top-Navigation
======================================================== */

.navbar .brand{
    padding-top:15px;
    color:#fff;
	font-size:16px;
	font-weight:bold;
	text-shadow:none
}

.navbar-inner{
	border:0;
	background:#1f2329;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-border-radius: 0px;
        -moz-border-radius: 0px;
            border-radius: 0px;
}

.navbar .nav>li{
	padding-right:1px;
}

.navbar .nav>li>a{
	padding:20px 20px;
	color:#fff;
	text-shadow:none;
	font-weight:bold
}

.navbar .nav>li>a:hover,.navbar .nav>li>a:focus{
	color:#fff;
	background:#68a1de;
}

.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{
	color:#fff;
	text-decoration:none;
	background-color:#68a1de;
	-webkit-box-shadow:inset 0 0 0 rgba(0,0,0,0);
	-moz-box-shadow:inset 0 0 0 rgba(0,0,0,0);
	box-shadow:inset 0 0 0 rgba(0,0,0,0)
}

.navbar .nav li.dropdown.open>.dropdown-toggle{
	background-color:#14171a;
	color:#fff
}

.navbar .nav li.dropdown.open>.dropdown-toggle .caret{
	border-top-color:#fff
}

.navbar .nav li.dropdown>.dropdown-toggle .caret{
	border-top-color:#fff
}

.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{
	border-top-color:#fff
}

.dropdown-menu{
	border:0;
	-webkit-border-radius:0 0 3px 3px;
	-moz-border-radius:0 0 3px 3px;
	border-radius:0 0 3px 3px;
	-webkit-background-clip:padding-box;
	-moz-background-clip:padding;
	background-clip:padding-box;
	-webkit-box-shadow:0 2px 5px rgba(0,0,0,0.2);
	-moz-box-shadow:0 2px 5px rgba(0,0,0,0.2);
	box-shadow:0 2px 5px rgba(0,0,0,0.2);
	background-color:#1f2329
}

.navbar .nav>li>.dropdown-menu::before,.navbar .nav>li>.dropdown-menu::after{
	display:none
}

.dropdown-menu li>a{
	color:#fff
}

.dropdown-menu li>a:hover,.dropdown-menu li>a:focus{
	color:#fff;
	background-color:#14171a;
	background-image:none
}

.navbar .btn-navbar{
	margin-top:10px;
	color:#fff;
	background:#14171a
}

.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{
	background:#1f2329;
	border-color:#16191d
}


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

#about{
    background:#fff;
}

#about h2{
    color:#626465;
	padding: 40px 0px 20px 0px;
}

#about p{
    font-family: 'Lato', sans-serif;
	line-height:1.5;
}

.title{
    color:#626465;
	font-size:100px;
	font-weight: 700;
	line-height: 1.1;
	padding:80px 0px 50px 0px;
}

.members-area {
    background:#fff;
}

.text-lines {
    font-family: 'Lato', sans-serif;
    color:#000;
	font-size:20px;
	font-weight: 200;
	line-height: 1.5;
	margin:45px 0px 45px 0px;
	text-align:left;
}

.team{
    position: relative;
    background:#eceef1;
	margin-bottom:45px;
}

.p-name {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #424242;
	margin-top: 20px;
	margin-bottom: 0;
}

.p-position{
    font-size: 16px;
	font-weight: 300;
	font-style: italic;
	color: #707070;
	margin-bottom: 10px;
}

.icons{
    color:#000;
}

.icons {
    padding:30px 0px 10px 0px;
}

.icons  li {
    display:inline;
    margin-right:5px;
	opacity:0.8;
}

.icons li :hover{
    text-decoration:none;
	color:#68a1de;
	-webkit-transition-duration: 0.5s;
     -moz-transition-duration: 0.5s;
      -ms-transition-duration: 0.5s;
       -o-transition-duration: 0.5s;
          transition-duration: 0.5s;
}


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

#services{
    background:#fff;
	padding-bottom:40px;
}

#services h2{
    color:#626465;
}

.service h2{
   padding-bottom:10px;
}

.service p{
   padding-top:20px;
}

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

.service li{
    list-style:none;
}

.service i {
    color:#fff;
	line-height:2.2;
	margin-right: 25px;
}

.service li:hover{
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.circle{
    background: #68a1de;
    display: inline-block;
    height: 150px;
    position: relative;
    width: 150px;

	-webkit-border-radius: 999px;
	-moz-border-radius: 999px;
	border-radius: 999px;
}

p.description{
    font-size: 15px;
	font-weight: 200;
	line-height:1.4;
	margin-bottom:20px;
}


/* ========================================================
   Portfolio
======================================================== */

#portfolio{
    background:#fff;
	text-align:center;
}

.items{
    background:#eceef1;
    position: fixed;
    margin-bottom:30px;
    height:auto;
    overflow:hidden;
    display:block;
}

.option-set {
	margin-top:20px;
	margin-bottom: 36px;
}

.option-set li {
	    font-family: 'Lato', sans-serif;
		display: inline-block;
		position: relative;
		margin-right: 10px;
		text-transform: uppercase;
		font-size: 11px;
}

.option-set i {
		color: #868991;
}

.option-set li a.selected {
		color: #68a1de;
}

.option-set li a {
		color: #868991;
		text-decoration: none;
		font-weight:600;

}

.option-set li a:hover {
		color: #68a1de;
}


/* ==================================================
	Isotope Filtering
================================================== */

/* Start: Recommended Isotope styles */

/**** Isotope Filtering ****/

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/

.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
      -ms-transition-property:     -ms-transform, opacity;
       -o-transition-property:      -o-transform, opacity;
          transition-property:         transform, opacity;
}

/**** disabling Isotope CSS3 transitions ****/

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
      -ms-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}

/* End: Recommended Isotope styles */


/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
     -moz-transition: none;
      -ms-transition: none;
       -o-transition: none;
          transition: none;
}


/* ==================================================
   Contact Section
================================================== */

#contact{
    background:#fff;
}

.contact-details{
    margin-top:30px;
	font-family: 'Lato', sans-serif;
}

.contact-details h3 {
	color: #4C4F55;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
	line-height: 1em;
    text-transform: uppercase;
}

.contact-details ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-details ul li {
	margin: 0 0 20px;
	line-height: 28px;
	padding: 0;
}

#contact-form {
	margin-bottom: 30px;
    margin-top:30px
}

#contact-form p {
	margin-bottom: 1px;
}

#contact-form input,
#contact-form textarea {
    border: 1px solid #d0d6da;
	font-family: 'Lato', sans-serif;
	background-color: #FFFFFF;
    color: #55606A;
    font-size: 16px;
    height: auto;
    padding: 15px;
	margin-bottom: 5px;
    resize: none;
}

#contact-form input {
    width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contact-form textarea {
    width: 100%;
	resize: vertical;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contact-form .submit {
    background: #E0E0E0;
    color: #55606A;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 40px;
    text-align: center;
    vertical-align: middle;
    width: auto;
	margin-top: 30px;

	-webkit-transition: background 0.1s linear 0s, color 0.1s linear 0s;
	   -moz-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		 -o-transition: background 0.1s linear 0s, color 0.1s linear 0s;
		    transition: background 0.1s linear 0s, color 0.1s linear 0s;
}

#contact-form .submit:hover {
    background: #68a1de;
	color: #FFFFFF;
	text-decoration:none;
}


/* ==================================================
	Testimonials
================================================== */

.cycle-slideshow{
    font-family: 'Lato', sans-serif;
    margin-top:20px;
	margin-bottom:20px;
	color:#fff;
}

.testimonial-cycle{
    padding:60px 0px 60px 0px;
}

p.testimonial-content{
    font-size:40px;
	line-height:1.2;
	text-align:left;
}

.testimonial-cycle .author {
	display: block;
	font-size: 20px;
	font-style: normal;
	margin-top: 38px;
	text-align:right;
}


/* ==================================================
	Pricing
================================================== */

.pricing-heading h3{
    font-family: 'Lato', sans-serif;
}

.pricing-offer{
	background: #fcfcfc;
	text-align: center;
	padding:40px 0 40px 0;
	font-size:18px;
	border-top:1px solid #e6e6e6;
	border-bottom:1px solid #e6e6e6;
}

.pricing-box.special .pricing-offer{
	color:#fff;
}

.pricing-offer strong{
	font-size:78px;
	line-height:89px;
}

.pricing-offer sup{
	font-size:28px;
}

.pricing-content{
    font-family: 'Lato', sans-serif;
	background: #fff;
	text-align:center;
	font-size:16px;
}

.pricing-content strong{
color:#353535;
}

.pricing-content ul{
	list-style:none;
	padding:0;
	margin:0;
}

.pricing-content ul li{
	border-bottom:1px solid #e9e9e9;
	list-style:none;
	padding:15px 0 15px 0;
	margin:0 0 0 0;
}

.pricing-action{
	margin:0;
	background: #fcfcfc;
	text-align:center;
	padding:20px 0 30px 0;
}

.pricing-wrapp{
	margin:0 auto;
	width:100%;
	background:#fd0000;
}

/* --- pricing box alt --- */
.pricing-box-alt {
border: 1px solid #e6e6e6;
	background:#fcfcfc;
	position:relative;
	margin-bottom:40px;
	padding:0;
    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.03);
    -moz-box-shadow: 0 2px 0 rgba(0,0,0,0.03);
    box-shadow: 0 2px 0 rgba(0,0,0,0.03);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.pricing-box-alt .pricing-heading {
	background: #fcfcfc;
	text-align: center;
	padding:40px 0 0px 0;
	display:block;
}
.pricing-box-alt.special .pricing-heading {
	background: #68a1de;
	text-align: center;
	padding:40px 0 1px 0;
	border-bottom:none;
	display:block;
	color:#fff;
}
.pricing-box-alt.special .pricing-heading h3 {
	color:#fff;
}

.pricing-box-alt .pricing-heading h3 strong {
	font-size:32px;
	font-weight:700;
	letter-spacing:-1px;
}
.pricing-box-alt .pricing-heading h3 {
	font-size:32px;
	font-weight:300;
	letter-spacing:-1px;
	color:#000;
}

.pricing-box-alt .pricing-terms {
	text-align: center;
	background:#333;
	display:block;
	overflow:hidden;
	padding:30px 0 20px;
}

.pricing-box-alt .pricing-terms  h6 {
	margin-top:10px;
	color:#fff;
	font-size:18px;
	font-family: 'Lato', sans-serif;
}

.pricing-box-alt .icon .price-circled {
    margin: 10px 10px 10px 0;
    display: inline-block !important;
    text-align: center !important;
    color: #fff;
    width: 68px;
    height: 68px;
	padding:12px;
    font-size: 16px;
	font-weight:700;
    line-height: 68px;
    text-shadow:none;
    cursor: pointer;
    background-color: #888;
    border-radius: 64px;
    -moz-border-radius: 64px;
    -webkit-border-radius: 64px;
}

.pricing-box-alt  .pricing-action{
	margin:0;
	text-align:center;
	padding:30px 0 30px 0;
}

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

#footer-social-area{
	text-align:center;
	padding:10px 0px 40px 0px;
}

#footer-social-area .social-icons ul {
	margin: 0;
	padding: 0;
}

#footer-social-area .social-icons ul li {
	display: inline-block;
	margin-top:5px;
	margin-right:10px;
	list-style: none;
	cursor: pointer;
}

#footer-social-area .social-icons ul li:first-child {
	margin-left: 0;
}


/* ==================================================
   Media Queries
================================================== */

/* Large desktop */
@media (min-width: 1200px) {  }

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {

    .container{
	padding:0px 10px 0px 10px;
	}

	.welcome-note{
	    font-size:50px;
	    padding:10px 0px 5px 0px;
	}

   .testimonial-cycle{
    padding:50px 0px 50px 0px;
    }

	p.testimonial-content{
    font-size:30px;
	line-height:1;
	text-align:left;
    }

	.testimonial-cycle .author {
	display: block;
	font-size: 20px;
	font-style: normal;
	margin-top: 18px;
	text-align:center;
    }
 }

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
    .container{padding:0px 10px 0px 10px;}

	.navbar .brand{
        margin-left:10px;
    }

	.navbar .btn-navbar{
	margin-right:20px;
	}

	.welcome-note{
	    font-size:50px;
	    padding:20px 0px 5px 0px;
	}

	.testimonial-cycle{
    padding:30px 0px 30px 0px;
    }

	p.testimonial-content{
    font-size:20px;
	line-height:1;
	text-align:left;
    }

	.testimonial-cycle .author {
	display: block;
	font-size: 15px;
	font-style: normal;
	margin-top: 18px;
	text-align:center;
    }
 }

/* Landscape phones and down */
@media (max-width: 480px) {
   #home{
    padding:0px 0px 0px 0px;
	margin-top:0px;
   }

   .welcome-note{
        font-size:50px;
        padding:20px 0px 0px 0px;
	}

   .container{padding:0px 10px 0px 10px;}

   .navbar .brand{
        margin-left:10px;
   }

   .navbar .btn-navbar{
	margin-right:20px;
	}

	.title{
	font-size:60px;
	}

	.testimonial-cycle{
    padding:30px 0px 30px 0px;
    }

	p.testimonial-content{
    font-size:15px;
	line-height:1.1;
	text-align:left;
    }

	.testimonial-cycle .author {
	display: block;
	font-size: 10px;
	font-style: normal;
	margin-top: 18px;
	text-align:center;
    }

	.da-thumbs li  article h3{
    color:#fff;
    padding-top:60px;
    }
}
