/*----------------------
---Main Layout Styles---
------------------------*/
.img-center{
    margin:20px auto;
}

#main-nav a.ir-logo {
    margin:0;
    margin-top:5px;
    padding:0;
    width:151px;
    height:57px;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
    background: url("../assets/logo.png");
}

#main-nav a.ir-logo span{
    color:transparent;
    font:0/0 a;
}

.navbar {
    margin:0;
    border-radius:0;
}

/*---------------------------
---Main Typography Styles----
-----------------------------*/

body{
	font-family: Lato, sans-serif;
}

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

h1 {
    font-size:30px;
    line-height:30px;
    font-weight:300;
    text-transform:uppercase;
    letter-spacing:0.02em;
}

h1.section-title{
    position:relative;
    margin:0 0 124px;
    font-size:48px;
    line-height:64px;
    font-weight:300;
    text-align:center;
    color:#8aaad9;
    z-index:1;
}

.section-title span {
    font-size:150%;
    font-weight:400;
}

.section-title [class*=icon]{
    position:absolute;
    top:-28px;
    left:50%;
    margin-left:-60px;
    font-size:120px;
    color:#eee;
    z-index:-1;
}

h2 {
    font-size:21px;
    line-height:24px;
    font-weight:bold;
    text-transform:uppercase;
}

p {
    font-size:18px;
    line-height:24px;
    font-weight:300;
    letter-spacing:0.01em;
    margin-bottom:20px;
}

a,
a:hover,
a:focus {
    outline:none !important;
    text-decoration:none;
}

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

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

a:focus,
.btn:focus {
  outline: none;
}

/*----------------------
---Main Color Styles----
------------------------*/
body {
	color:#999;
	overflow-x:hidden;
}

#main-nav .navbar-toggle{
    border:1px solid rgba(255,255,255,0.5);
    border-radius:0;
}

#main-nav .icon-bar {
    background:#fff;
}

.btn-theme{
	color:#fff;
	background-color:#8aaad9;
	padding:15px 90px;
	font-size:24px;
	font-weight:300;
	text-transform:uppercase;
	border:none;
	border-radius:0;
	-webkit-transition:background-color 0.2s ease-out;
	transition:background-color 0.2s ease-out;
}

.btn-theme:hover{
	cursor:pointer;
	color:#fff;
	background-color:#9fb8e0;
}

.btn-theme:active,
.btn-theme:focus{
	color:#fff;
}


.btn-theme [class*=icon]{
    margin-right:10px;
}


.btn-theme.transparent{
	color:#fff;
	background-color:transparent;
	padding:14px 35px;
	border:2px solid #fff;
	font-weight:400;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}

.btn-theme.transparent:hover,
.btn-theme.transparent:focus,
.btn-theme.transparent:active{
	color:#8aaad9;
	background-color:#fff;
	border:2px solid #fff;
	opacity:1;
}

/*----------------------
----Navigation Styles---
------------------------*/

.navbar-brand,
.navbar-brand:hover,
.navbar-brand:active,
.navbar-brand:focus {
    padding:0 10px;
    font-size:30px;
    line-height:30px;
    font-weight:normal;
    color:#fff;
}

.navbar-brand span {
    font-size:24px;
    font-weight:300;
}

#main-nav.scrolled .navbar-brand{
    color:#8aaad9;
}

#main-nav{
    background:transparent;
    color:#fff;
    box-shadow:0 0 0px transparent;
    -webkit-transition:background 0.3s ease-out;
    transition:background 0.3s ease-out;
}

#main-nav.scrolled{
    background:#fff;
    border-bottom:1px solid #ddd;
}

#main-nav.scrolled .navbar-toggle{
    color:#8aaad9;
    border-color:#8aaad9;
}

#main-nav.scrolled .navbar-toggle .icon-bar{
    background:#8aaad9;
}

#main-nav .container{
    padding:30px 20px;
    -webkit-transition:padding 0.5s ease-out;
    transition:padding 0.5s ease-out;
}

#main-nav.scrolled .container{
    padding:10px 20px;
}

#main-nav .nav a,
#main-nav .nav a:active,
#main-nav .nav a:hover{
    padding:0px 10px;
    font-size:18px;
    line-height:54px;
    font-weight:400;
    background:transparent;
    color:#fff;
}


#main-nav.scrolled .nav a,
#main-nav.scrolled .nav a:active,
#main-nav.scrolled .nav a:hover{
    color:#8aaad9;
}


#main-nav li{
    background:transparent;
    margin:0 10px;
    border:2px solid transparent;
}

#main-nav .dropdown-menu a{
    font-size:14px;
}

/* Hover Effect */
#main-nav .nav a {
    position:relative;
}

#main-nav .nav a:before {
	position: absolute;
	bottom:-5px;
	left: 50%;
	color: transparent;
	content: '*';
	text-shadow: 0 0 transparent;
	font-size: 16px;
	line-height:21px;
	-webkit-transition: text-shadow 0.3s, color 0.3s;
	-moz-transition: text-shadow 0.3s, color 0.3s;
	transition: text-shadow 0.3s, color 0.3s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}

#main-nav .nav a:hover:before,
#main-nav .nav li.active a:before {
	color: #fff;
	text-shadow: 12px 0 #fff, -12px 0 #fff;
}

#main-nav.scrolled .nav a:hover:before,
#main-nav.scrolled .nav li.active a:before {
	color: #8aaad9;
	text-shadow: 12px 0 #8aaad9, -12px 0 #8aaad9;
}

.no-textshadow #main-nav .nav a:before {
	content: '* * *';
}

.no-csstransforms #main-nav .nav a:before {
	margin-left:-15px;
}

/*----------------------
-----Header Styles------
------------------------*/

.jumbotron {
    background:transparent;
    color:#8aaad9;
}

header.jumbotron{
    padding:0;
    margin-bottom:0;
    min-height:500px;
}

.jumbotron .left-col,
.jumbotron .right-col{
    float:left;
}

.jumbotron .message-box{
    width:90%;
    margin:300px auto 0;
	background:#fff;
    background:rgba(255,255,255,0.8);
    padding:20px 0;
}

.jumbotron .left-col{
	width:35%;
    text-align:right;
}

.jumbotron .right-col{
	width:65%;
    text-align:left;
    overflow:hidden;
    border:none;
    box-shadow:none;
    background:transparent;
    margin:0;
    padding:0;
}

.jumbotron .left-col p{
    display:inline-block;
    margin:0;
    padding:18px 5px 12px 30px;
    font-size:38px;
    font-weight:300;
    line-height:48px;
}

.jumbotron .left-col p span{
    font-size:42px;
    font-weight:400;
}

.jumbotron .right-col p{
    display:inline-block;
    margin:0;
    padding:10px 30px 10px 5px;
    font-size:110px;
    line-height:110px;
    font-weight:900;
    text-transform:uppercase;
}

.jumbotron .home-slider .slides li {
    opacity:0;
    -webkit-ransition:opacity 0.4s ease-out;
    transition:opacity 0.4s ease-out;
}

.no-csstransitions .jumbotron .home-slider .slides li {
    opacity:1;
}

.jumbotron .home-slider .slides li.flex-active-slide,
.jumbotron .home-slider .slides li.clone {
    opacity:1;
}
/*------------------------
-----Services Styles------
------------------------*/

#services{
    background:#fff;
    color:#999;
    padding:80px 0;
}

#services .row.line {
    height:6px;
    background:#8aaad9;
    margin-bottom:24px;
}

#services .line .spot {
    margin:-7px auto;
    display:block;
    width:20px;
    height:20px;
    background:#8aaad9;
    border:5px solid #fff;
    border-radius:50%;
}

.services .icon {
    position:relative;
    display:inline-block;
    padding:0;
    margin-bottom:24px;
    width:160px;
    height:160px;
    text-align:center;
    font-size:72px;
    line-height:130px;
    color:#ccc;
    background:none;
    border:10px solid #8aaad9;
    border-radius:50%;
    z-index:1;
    -webkit-transition:color 0.2s ease-in;
    transition:color 0.2s ease-in;
}

.no-opacity .services .icon {
	color:#fff;
}

.services .icon:after {
	pointer-events: none;
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background:#8aaad9;
    border-radius:50%;
    border:2px solid #8aaad9;
	-webkit-box-sizing: content-box; 
	-moz-box-sizing: content-box; 
	box-sizing: content-box;
    top:-2px;
    left:-2px;
    z-index:-1;
	-webkit-transform: scale(1.4);
	-moz-transform: scale(1.4);
	-ms-transform: scale(1.4);
	transform: scale(1.4);
	opacity: 0;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.services .icon:hover{
    color:#fff;
}

.services .icon:hover:after {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition: all 0.4s ease-out;
}

.services .item {
    margin-bottom:80px;
}

.services h2 {
    margin:0;
    margin-bottom:24px;
    font-size:24px;
    font-weight:400;
}

.services p {
    margin:0;
    margin-bottom:24px;
}


.services.bottom-row p {
    margin-top:48px;
}

/*-----------------------
------About Styles-------
------------------------*/

#about {
    background:#8aaad9;
    color:#fff;
    padding:80px 0;
}

#about h1 {
    color:#fff;
    font-size:36px;
    line-height:42px;
    font-weight:300;
    margin-bottom:24px;
    position:relative;
}

#about p {
    font-size:24px;
    line-height:36px;
    font-weight:300;
    margin-bottom:42px;
}

#about a:hover{
    text-decoration:underline;
} 

#about .btn-theme.transparent {
    font-size:18px;
    text-decoration:none;
}

#about img {
    box-shadow:12px 0px 0px 12px rgba(255,255,255,0.2),
                -12px 0px 0px 12px rgba(255,255,255,0.2);
}

/*-----------------------
------Skills Styles-------
------------------------*/

#skills {
    padding-top:80px;
    color:#637187;
	background:#fff;
}

.skills .col-sm-3 {
    margin-bottom:80px;
}

#skills.cuda-section {
    padding-bottom:40px;
}

.chart {
  position: relative;
  display: inline-block;
  width: 170px;
  height: 170px;
  margin-bottom: 50px;
  text-align: center;
}
.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.percent {
  display: inline-block;
  line-height: 170px;
	font-size:50px;
	font-weight:300;
  z-index: 2;
}
.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: 40px;
}

#skills .skills h2 {
    margin:0 0 80px;
    color:#637187;
    font-size:24px;
    font-weight:300;
}


/*----------------------
-----Portfolio Styles---
------------------------*/

#portfolio {
    background:#fff;
}

#portfolio .section-title {
    font-weight:300;
    margin-bottom:60px;
}

#portfolio .section-title [class*=icon]{
    color:#fff;
}

#portfolio-header {
    padding:80px 0;
    background:#f5f5f5;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}


#filter-works ul {
    list-style:none;
    padding:0;
    margin:0;
}

#filter-works ul li{
    display:inline-block;
    padding:0;
    line-height:24px;
    background:transparent;
    margin:0 0 0 10px;
}

#filter-works ul li:after{
    content:"/";
    margin-left:10px;
    font-size:24px;
    line-height:24px;
    font-weight:300;
    color:#6a6a6a;
}

#filter-works ul li:last-child:after{
    display:none;
}

#filter-works ul li a,
#filter-works ul li a:active,
#filter-works ul li a:hover{
    padding:0;
    font-size:24px;
    line-height:24px;
    font-weight:300;
    background:transparent;
    color:#6a6a6a;
    text-transform:uppercase;
    text-decoration:none;
}

#filter-works ul li:hover a,
#filter-works ul li.active a{
    color:#8aaad9;
}

.masonry-wrapper{
    margin:0 auto;
    padding:0;
    overflow:hidden;
}

#projects-container {
    margin:0 auto;
    visibility:hidden;
}

#projects-container .project-item{
    display:block;
    position:relative;
    margin:0;
    width:350px;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity:1;
	filter:alpha(opacity=100);
	overflow:hidden;
}

#projects-container .project-item.filtered{
	-moz-transform: scale(0);
	-ms-transform: scale(0);
    transform:scale(0);
	opacity:0;
	filter:alpha(opacity=0);
}

.project-item img {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
    -webkit-transition:-webkit-transform 0.3s ease-out;
    transition:transform 0.3s ease-out;
}

.project-item:hover img {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
    transform:scale(1.3);
}


.project-item .hover-mask {
    position:absolute;
    padding:0;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:#8aaad9;
    opacity:0;
	filter:alpha(opacity=0);
    -webkit-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out;
}

.project-item:hover .hover-mask {
    opacity:1;
	filter:alpha(opacity=100);
    padding:20px;
}

.no-csstransitions .project-item:hover .hover-mask {
    opacity:0;
	filter:alpha(opacity=0);
}

.project-item .hover-mask:after {
    position:absolute;
    content:"";
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:transparent;
    border:0px solid rgba(255,255,255,0.2);
    -webkit-transition:border 0.3s ease-out;
    transition:border 0.3s ease-out;
}

.project-item .hover-mask:hover:after {
    border-width:20px;
}


.project-item .hover-mask .project-title {
    color:#fff;
    margin:0;
    padding:16px;
    font-size:21px;
    line-height:24px;
    font-weight:300;
}

.project-item .hover-mask p {
    color:#fff;
    margin:0;
    padding:16px;
    font-size:16px;
    line-height:24px;
    font-weight:300;
    position:absolute;
    bottom:0;
    right:0;
    text-align:right;
    -webkit-transition:all 0.3s ease-out;
    transition:all 0.3s ease-out;
}

.project-item .hover-mask:hover p {
    bottom:20px;
    right:20px;
}

.no-opacity .project-item .hover-mask p {
	visibility:hidden;
}

.no-opacity .project-item .hover-mask:hover p {
	visibility:visible;
}

.masonry,
.masonry .masonry-brick {
  -webkit-transition-duration: 0.7s;
     -moz-transition-duration: 0.7s;
      -ms-transition-duration: 0.7s;
       -o-transition-duration: 0.7s;
          transition-duration: 0.7s;
          
   transition-timing-function:ease-in-out;    
}

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

.masonry .masonry-brick {
  -webkit-transition-property: left, right, top, -webkit-transform, opacity;
     -moz-transition-property: left, right, top, -moz-transform, opacity;
      -ms-transition-property: left, right, top, -ms-transform, opacity;
       -o-transition-property: left, right, top, -o-transform, opacity;
          transition-property: left, right, top, transform, opacity;
}

/*--------------------------
----Project Modal Styles----
----------------------------*/

.fade.modal {
	overflow-x:hidden;
}


.modal.fade .modal-dialog {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.5s;
}

.modal.in .modal-dialog {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.modal-backdrop{
    background-color:#fff;
}

.modal-backdrop.in{
    opacity:1;
	filter:alpha(opacity=100);
}

.modal-dialog{
    width:90%;
    max-width:1140px;
    padding-top:50px;
}

.modal-content{
    border:none;
    border-radius:0;
    box-shadow:none;
    background-color:#fff;
}

.modal-header{
    height:60px;
    border:none;
    border-bottom:1px solid #8aaad9;
    margin-bottom:10px;
}

.modal-header .close{
    font-size:42px;
    line-height:42px;
    margin-top:0px;
    -webkit-transition:all 0.2s ease-out;
    transition:all 0.2s ease-out;
}

.modal-header .close:hover{
    color:#8aaad9;
    opacity:1;
}

.modal-body .left-col,
.modal-body .right-col{
    float:left;
    padding:0;
}

.modal-body .left-col{
	width:50%;
	margin:0 50px 20px 0;
	position:relative;
}

.modal-body .right-col{
	width:50%;
    padding:10px 60px 0;
}

.modal-body .left-col{
    min-height:60px;
    background:transparent;
    z-index:1;
}

.modal-body h1{
    color:#8aaad9;
    margin:200px 0 24px;
    font-size:32px;
}

.modal-body .project-descr{
    color:#aaa;
    margin:0 0 24px;
    
}

.modal-body .btn-theme{
    margin-top:48px;
}

.modal-body .loader {
    position:absolute;
    left:50%;
    top:0;
    margin-top:27%;
    margin-left:-10px;
    width:30px;
    height:30px;
    background:url('../assets/loader.gif') no-repeat 50% 50%;
}

.modal-body .image-wrapper{
    position:absolute;
    width:96%;
    top:4%;
    left:3%;
    border:none;
    z-index:-1;
    opacity:0;
    -webkit-transition:all 0.5s ease-out 0.7s;
    transition:all 0.5s ease-out 0.7s;
}

.modal-body .image-wrapper.done {
    opacity:1;
}

/*----------------------
-----Twitter Styles-----
------------------------*/

#twitter {
    color:#fff;
    background:#8aaad9;
    padding:60px 0;
}

#twitter a:hover,
#twitter a:active,
#twitter a:focus{
    text-decoration:none;
}

#twitter h1{
    position:relative;
}

#twitter .tweet{
    font-size:24px;
    line-height:36px;
    font-weight:300;
	word-spacing:5px;
    margin-bottom:40px;
}

#twitter .tweet a:hover{
    text-decoration:underline;
}

#twitter .timePosted{
    display:inline-block;
    font-size:16px;
    font-weight:300;
    margin-bottom:20px;
}

#twitter .interact{
    margin-left:20px;
    padding-right:80px;
    display:inline-block;
    font-size:21px;
    font-weight:300;
}

#twitter .interact a {
    margin-right:6px;
}

#twitter .twitter-icon {
    padding-top:6px;
    text-align:center;
}

#twitter .icon-twitter {
    font-size:60px;
}

#twitter-slider{
    border:none;
    box-shadow:none;
    background:transparent;
    margin:0;
    padding:0;
}

#twitter-slider .flex-direction-nav {
    display:block;
    position:absolute;
    bottom:10px;
    right:0;
}

#twitter-slider .flex-direction-nav li{
    display:inline;
}

#twitter .flex-direction-nav .flex-prev,
#twitter .flex-direction-nav .flex-next{
    background:transparent;
    background-image:none;
    display:inline;
    opacity:1;
    text-indent:0;
    position:relative;
    left:0;
    top:0;
    width:auto;
    height:42px;
    padding:0;
    margin:0;
    margin-left:7px;
    font-size:42px;
    line-height:42px;
    color:#fff;
}

#twitter-slider .flex-direction-nav a:hover,
#twitter-slider .flex-direction-nav a:active,
#twitter-slider .flex-direction-nav a:focus{
    text-decoration:none;
}

/*----------------------
-----Contact Styles-----
------------------------*/

#contact {
    background:transparent;
    color:#fff;
	padding:80px 0; 
}

#contact .section-title {
    color:#fff;
    margin-bottom:84px;
}

#contact .section-title [class*=icon]{
    color:#8aaad9;
	-webkit-transform: rotate(-15deg);
	-moz-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
    transform:rotate(-15deg);
    opacity:0.6;
	filter:alpha(opacity=60);
}


#contact .contact-info p,
#contact .contact-info address{
    margin:0 0 30px;
    font-size:18px;
    line-height:30px;
    font-weight:400;
}


#contact .socials{
    margin:0;
    padding:0;
    margin-bottom:24px;
}

#contact .socials li{
    display:inline-block;
    margin:0 15px 15px 0;
}

#contact .socials li a{
    display:inline-block;
    width:48px;
    height:48px;
    font-size:32px;
    line-height:48px;
    text-align:center;
    text-decoration:none;
    margin:0;
    padding:0;
    color:#fff;
    -webkit-transition:color 0.2s ease-out;
    transition:color 0.2s ease-out;
}


#contact .socials li a:hover{
    padding:0;
    color:#8aaad9;
    text-decoration:none;
}


#contact-form .form-group label{
    display:none;
    font-size:18px;
    line-height:24px;
    font-weight:400;
    text-transform:uppercase;
}

#contact-form.no-placeholder .form-group label{
    display:block;
}

#contact-form .form-control {
    background:#fff;
    background:rgba(255,255,255,0.9);
    border:none;
    border-radius:1px;
    outline:none;
    box-shadow:none;
    margin-bottom:30px;
    height:68px;
    font-size:30px;
    line-height:48px;
    font-weight:300;
    color:#8aaad9;
    padding-left:64px;
}

#contact-form .form-group{
    position:relative;
}

#contact-form .form-group [class*="icon-"] {
    display:block;
    width:64px;
    position:absolute;
    top:0;
    left:5px;
    color:#8aaad9;
    font-size:32px;
    line-height:68px;
    text-align:center;
    font-weight:300;

}

#contact-form.no-placeholder .form-group [class*="icon-"]{
    top:30px;
}

#contact-form textarea.form-control {
    height:auto;
	max-width:100%;
	min-width:100%;
    font-size:30px;
    line-height:42px;
	padding-top:14px;
}

#contact-form .form-control:focus {
    border:none;
    outline:none;
    box-shadow:none;
}

#contact-form .form-control::-webkit-input-placeholder { /* WebKit browsers */
    color:    #8aaad9;
}
#contact-form .form-control:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #8aaad9;
    opacity:1;
}
#contact-form .form-control::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #8aaad9;
    opacity:1;
}
#contact-form .form-control:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #8aaad9;
}

#contact-form .error-message {
    background:#8aaad9;
    padding:10px 20px;
    position:absolute;
    top:-10px;
    right:-10px;
    font-size:16px;
    font-weight:400;
}

/*----------------------
-----Footer Styles-----
------------------------*/
#main-footer {
    background:#fff;
    color:#8aaad9;
    padding:30px 0;
}

#main-footer .small-logo {
    padding:0;
    margin:0;
    margin-bottom:24px;
    font-size:24px;
    line-height:24px;
    font-weight:normal;
    color:#8aaad9;
}

#main-footer .small-logo span {
    padding:0;
    font-size:18px;
    line-height:24px;
    font-weight:300;
    text-transform:none;
}


#main-footer ul.footer-nav {
    list-style:none;
    padding:0;
    margin:0;
    margin-bottom:24px;
}

#main-footer ul.footer-nav li{
    display:inline-block;
    padding:0 15px;
    line-height:24px;
    border-right:1px solid #8aaad9;
}

#main-footer ul.footer-nav li:first-child{
    padding-left:0;
}

#main-footer ul.footer-nav li:last-child{
    border-right:none;
}

#main-footer ul.footer-nav li a{
    color:#8aaad9;
    text-decoration:none;
    font-size:14px;
    line-height:24px;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:0.02em;
    padding:0;
    -webkit-transition:color 0.2s ease-out;
    transition:color 0.2s ease-out;
}

#main-footer ul.footer-nav li a:hover,
#main-footer ul.footer-nav li a:active{
    color:#9fb8e0;
    text-decoration:none;
}

#main-footer p{
    color:#8aaad9;
    font-size:14px;
    line-height:24px;
    font-weight:400;
}

#main-footer .right-col{
    text-align:right;
}

#main-footer .right-col h2{
    text-transform:none;
    font-size:18px;
    line-height:24px;
    font-weight:700;
    margin:0 0 24px;
}

#main-footer .right-col p{
    font-size:15px;
    line-height:24px;
    font-weight:300;
}


/*------------------------
---Scrolling animations---
-------------------------*/

.scrollimation.fade-in{
	opacity:0;
	-webkit-transition:opacity 0.4s ease-out;
	transition:opacity 0.4s ease-out;
}

.scrollimation.fade-in.in{
	opacity:1;
}

.scrollimation.scale-in{
	opacity:0;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform:scale(0.8);
	-webkit-transition: -webkit-transform .6s cubic-bezier(.17,.89,.67,1.57), opacity .6s ease-out;
	transition: transform .6s cubic-bezier(.17,.89,.67,1.57), opacity .6s ease-out;
}

.scrollimation.scale-in.in{
	opacity:1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform:scale(1);
}

.scrollimation.fade-right{
	opacity:0;
	-webkit-transform: translateX(-30px);
	-moz-transform: translateX(-30px);
	-ms-transform: translateX(-30px);
	transform:translateX(-30px);
	-webkit-transition: -webkit-transform .6s ease-in,opacity .8s ease-in;
	transition: transform .6s ease-in,opacity .8s ease-in;
}

.scrollimation.fade-right.in{
	opacity:1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform:translateX(0px);
}

.scrollimation.fade-left{
	opacity:0;
	-webkit-transform: translateX(30px);
	-moz-transform: translateX(30px);
	-ms-transform: translateX(30px);
	transform:translateX(30px);
	-webkit-transition: -webkit-transform .6s ease-in,opacity .8s ease-in;
	transition: transform .6s ease-in,opacity .8s ease-in;
}

.scrollimation.fade-left.in{
	opacity:1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform:translateX(0px);
}

.scrollimation.fade-up{
	opacity:0;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform:translateY(30px);
	-webkit-transition: -webkit-transform .6s ease-in,opacity .8s ease-in;
	transition: transform .5s ease-in,opacity .8s ease-in;
}

.scrollimation.fade-up.in{
	opacity:1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform:translateY(0px);
}

.touch .scrollimation.fade-in{
	opacity:1;
}

.touch .scrollimation.scale-in{
	opacity:1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform:scale(1);
}

.touch .scrollimation.fade-right{
	opacity:1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform:translateX(0px);
}

.touch .scrollimation.fade-left{
	opacity:1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	transform:translateX(0px);
}

.touch .scrollimation.fade-up{
	opacity:1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform:translateY(0px);
}

/*-----------------------
------Media Queries------
------------------------*/

@media (max-width: 1199px) {

.jumbotron .left-col p{
    font-size:28px;
    line-height:32px;
}

.jumbotron .left-col p span{
    font-size:36px;
}

.jumbotron .right-col p{
    font-size:82px;
    line-height:82px;
}

}

@media (max-width: 991px) {

.jumbotron .message-box{
	padding:10px 0;
}

.jumbotron .left-col {
    width:100%;
    text-align:center;
}

.jumbotron .left-col p{
    padding:10px;
}

.jumbotron .right-col{
    width:100%;
    text-align:center;
}

.jumbotron .right-col p{
    padding:10px;
}

}

@media (max-width: 768px) {

#main-nav .navbar-brand{
    color:#8aaad9;
}

#main-nav{
    background:#fff;
    border-bottom:1px solid #ddd;
}

#main-nav .navbar-toggle{
    color:#8aaad9;
    border-color:#8aaad9;
}

#main-nav .navbar-toggle .icon-bar{
    background:#8aaad9;
}

#main-nav .container{
    padding:10px 20px;
}

#main-nav .nav a,
#main-nav .nav a:active,
#main-nav .nav a:hover{
    color:#8aaad9;
    line-height:42px;
    text-align:center;
}

#main-nav .nav a:before {
    display:none;
}

#main-nav .nav a:hover,
#main-nav .nav li.active a {
    box-shadow:0 0 0 1px;
}

.jumbotron .left-col p{
    font-size:24px;
    line-height:28px;
}

.jumbotron .left-col p span{
    font-size:32px;
}

.jumbotron .right-col p{
    font-size:62px;
    line-height:62px;
}

#main-footer ul.footer-nav{
    margin-bottom:24px;
}

#main-footer .left-col,
#main-footer .right-col{
    text-align:center;
}

.modal-dialog{
    max-width:480px;
}

.modal-body .left-col,
.modal-body .right-col{
	width:100%;
}

h1.section-title{
    font-size:42px;
    line-height:56px;
}

}

@media (max-width: 479px) {

.jumbotron .right-col p{
    font-size:38px;
    line-height:38px;
}

h1.section-title{
    font-size:32px;
    line-height:46px;
}


p {
    font-size:16px;
    line-height:21px;
}

.btn-theme{
	padding:15px 40px;
	font-size:18px;
}

#about h1 {
    font-size:28px;
    line-height:36px;
}

#about p {
    font-size:21px;
    line-height:28px;
}


#filter-works ul li a{
    font-size:21px;
    line-height:28px;
}

#contact .contact-info p,
#contact .contact-info address{
    font-size:16px;
    line-height:26px;
}


#contact .form-control {
    height:58px;
    font-size:24px;
    line-height:30px;
}

#contact .form-group [class*="icon-"] {
    font-size:32px;
    line-height:58px;

}

#contact textarea.form-control {
    font-size:24px;
    line-height:32px;
	padding-top:14px;
}

}
