/*-----------------------------------------------------------------------
/*  Theme Name  : Sphere Theme
/*  Theme URI   :http://www.spheretheme.com/
/*  Description : One Page Theme
/*  Version     : 1.1
/*  assets/css/theme.css
/*-----------------------------------------------------------------------

1. GLOBAL STYLES

2. ANIMATION DELAY

3. PAGE LOADER

4. NAVBAR
        4.1 NAVBAR - CENTER MENU
        4.2 NAVBAR - SIDE MENU

5. INTRO SECTION

6. WHO WE ARE SECTION

7. FUN FACT SECTION

8. OUR MAIN SKILLS SECTION

9. QUOTE SECTION

10. KEEP IN TOUCH SECTION

11. MEET THE TEAM SECTION

12. TESTIMONIALS SECTION

13. COMING SOON SECTION

14. CONTACT US SECTION

15. MAP

16. FOOTER

-----------------------------------------------------------------------*/


/*---------------------------------------------------------------------*/
/*  1. GLOBAL STYLES
/*---------------------------------------------------------------------*/
*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body,
html {
    width: 100%;
    height: 100%;
}
body {
    background-color: #f2f4f4;
    font-family: 'Lato', sans-serif;
    color: #333;
    overflow-x: hidden;
}
a {
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}
.btn:focus,
.btn:active{
    outline: none;
}
.btn{
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 15px;
}
.push {
    margin-left: 0px;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
@media (min-width: 992px) {
    .push.pushed-left {
        margin-left: 250px;
    }
}
@media (min-width: 992px) {
    .push.pushed-right {
        margin-left: -250px;
    }
}
.section {
/*    background-color: #f2f4f4;*/
}
.section > .section-inner {
    position: relative;
}
.section > .section-inner .section-content {
    padding-top: 50px;
    padding-bottom: 10px;
}
@media (min-width: 1024px) {
    .section > .section-inner .section-content {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}
.section > .section-inner .section-content .section-title {
    color: #222;
    text-transform: uppercase;
    padding-bottom: 35px;
}
.section > .section-inner .section-content .section-title.text-white{
    color: #fff;
}
@media (min-width: 1024px) {
    .section > .section-inner .section-content .section-title {
        padding-bottom: 60px;
    }
}
.section > .section-inner .section-content .section-title > .main-title {
    font-size: 30px;
    font-weight: 300;
}
@media (min-width: 480px) {
    .section > .section-inner .section-content .section-title > .main-title {
        font-size: 40px;
    }
}
@media (min-width: 600px) {
    .section > .section-inner .section-content .section-title > .main-title {
        font-size: 50px;
    }
}
@media (min-width: 768px) {
    .section > .section-inner .section-content .section-title > .main-title {
        font-size: 55px;
    }
}
.section > .section-inner .section-content .section-title > .sub-title {
    font-size: 18px;
    font-weight: 300;
}
@media (min-width: 480px) {
    .section > .section-inner .section-content .section-title > .sub-title {
        font-size: 25px;
    }
}
.section > .section-inner .section-content .section-line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #222;
}
.section.section-bgimage-yes {
    background-color: #222;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
@media (min-width: 1280px) {
    .section.section-bgimage-yes {
        background-attachment: fixed;
    }
}
.section.section-bgimage-yes > .section-inner > .section-overlay {
    content: '';
    position: absolute;
    background-color: #000;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    zoom: 1;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.section.section-parallax-yes > .section-inner > .section-overlay {
    content: '';
    position: absolute;
    background-color: #000;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    zoom: 1;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
.section.section-parallax-yes > .section-inner > .parallax .bcg {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
@media (min-width: 1280px) {
    .section.section-parallax-yes > .section-inner > .parallax .bcg {
        background-attachment: fixed;
    }
}


/*---------------------------------------------------------------------*/
/*  2. ANIMATION DELAY
/*---------------------------------------------------------------------*/
.delayp1 {
    animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-delay: .1s;
    -o-animation-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-delay: .1s;
    -moz-transition-delay: .1s;
    -o-transition-delay: .1s;
}
.delayp2 {
    animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-delay: .2s;
    -o-animation-delay: .2s;
    transition-delay: .2s;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    -o-transition-delay: .2s;
}
.delayp3 {
    animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-delay: .3s;
    -o-animation-delay: .3s;
    transition-delay: .3s;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -o-transition-delay: .3s;
}
.delayp4 {
    animation-delay: .4s;
    -moz-animation-delay: .4s;
    -webkit-animation-delay: .4s;
    -o-animation-delay: .4s;
    transition-delay: .4s;
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    -o-transition-delay: .4s;
}
.delayp5 {
    animation-delay: .5s;
    -moz-animation-delay: .5s;
    -webkit-animation-delay: .5s;
    -o-animation-delay: .5s;
    transition-delay: .5s;
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -o-transition-delay: .5s;
}


/*---------------------------------------------------------------------*/
/*  3. KK LOADER
/*---------------------------------------------------------------------*/
/*
<div id="kk-loader-wrapper">
    <div id="kk-loader"></div>
    <img src="logo">
    <div class="kk-loader-section section-left"></div>
    <div class="kk-loader-section section-right"></div>
</div>
*/
/*** KK Loader ***/

#kk-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
}
#kk-loader-wrapper img {
    left: 50%;
    margin-left: -75px;
    margin-top: -75px;
    position: absolute;
    top: 50%;
    width: 150px;
    z-index: 1102;
}
#kk-loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 210px;
    height: 210px;
    margin: -105px 0 0 -105px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #1abc9c;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1101;
}
#kk-loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}
#kk-loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   { 
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
#kk-loader-wrapper .kk-loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 1100;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}
#kk-loader-wrapper .kk-loader-section.section-left {
    left: 0;
}
#kk-loader-wrapper .kk-loader-section.section-right {
    right: 0;
}
/* Loaded */
.loaded #kk-loader-wrapper img {
    -webkit-transform: translate(0%, 0%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translate(-0%, -0%);  /* IE 9 */
    transform: translate(0%, 0%);  /* Firefox 16+, IE 10+, Opera */
    opacity: 0;
    -webkit-transition: all 0.3s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.3s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #kk-loader-wrapper .kk-loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(-100%);  /* IE 9 */
    transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #kk-loader-wrapper .kk-loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #kk-loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;  
    transition: all 0.3s ease-out;
}
.loaded #kk-loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);  /* IE 9 */
    transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.3s 1s ease-out;  
    transition: all 0.3s 1s ease-out;
}

/* JavaScript Turned Off */
.no-js #kk-loader-wrapper {
    display: none;
}



/*---------------------------------------------------------------------*/
/*  4. NAVBAR
/*---------------------------------------------------------------------*/
.navbar.navbar-fixed-top {
    position: relative;
    margin: 0;
    border: 0;
    min-height: 60px;
    background-color: #222;
    box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.2);
}
@media (min-width: 768px) {
    .navbar.navbar-fixed-top {
        -webkit-transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
        -moz-transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
        transition: background 0.2s ease-in-out, padding 0.3s ease-in-out;
    }
}
.navbar.navbar-fixed-top .navbar-brand {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    height: 60px;
    line-height: 60px;
    padding-top: 0px;
    padding-bottom: 0px;
    letter-spacing: 0.1em;
}
.navbar.navbar-fixed-top .navbar-brand img{
    height:47px;
    padding-top:10px;
}
.navbar.navbar-fixed-top .navbar-brand:hover {
    color: #fff;
}
.navbar.navbar-fixed-top .navbar-toggle {
    margin-top: 12px;
    background-color: #1abc9c;
}
.navbar.navbar-fixed-top .navbar-nav > li > a {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top .navbar-nav > li > a {
        height: 60px;
        line-height: 60px;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}
.navbar.navbar-fixed-top .navbar-nav > li > a:hover {
    color: #1abc9c;
    background-color: #222;
}
.navbar.navbar-fixed-top .navbar-nav > li > a > i.fa-angle-down {
    padding-left: 2px;
}
.navbar.navbar-fixed-top .navbar-nav > li.active a,
.navbar.navbar-fixed-top .navbar-nav > li.active a:hover {
    background-color: #1abc9c;
    color: #fff;
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top .navbar-nav > li.active a,
    .navbar.navbar-fixed-top .navbar-nav > li.active a:hover {
        color: #fff;
        background-color: #1abc9c;
        background-repeat: repeat;
    }
}


/*---------------------------------------------------------------------*/
/*  4.1. NAVBAR - CENTER MENU
/*---------------------------------------------------------------------*/
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.center-menu .navbar-nav {
        margin: 0 auto;
        float: none;
        text-align: center;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.center-menu .navbar-nav > li {
        display: inline-block;
        float: none;
        padding-right: 5px;
        padding-left: 5px;
    }
}


/*---------------------------------------------------------------------*/
/*  4.2. NAVBAR - SIDE MENU
/*---------------------------------------------------------------------*/
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu {
        z-index: 15;
        position: fixed;
        top: 0;
        width: 250px;
        height: 100%;
        background-color: #222;
        box-shadow: none;
        -webkit-transition: all 0.2s ease 0s;
        -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
        -o-transition: all 0.2s ease 0s;
        transition: all 0.2s ease 0s;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu .container {
        margin: 0;
        padding: 0;
        width: auto;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu .navbar-header {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 30px;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu .navbar-header .navbar-brand {
        color: #aaa;
        float: none;
        padding-top: 10px;
        padding-bottom: 10px;
        border: 1px solid #aaa;
        border-radius: 2px;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu .navbar-nav {
        position: relative;
        width: 100%;
        height: 100%;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu .navbar-nav > li {
        float: none;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu .navbar-nav > li > a {
        color: #aaa;
        height: 42px;
        line-height: 42px;
        padding: 0px 30px;
    }
    .navbar.navbar-fixed-top.side-menu .navbar-nav > li > a:hover {
        color: #fff;
    }
}
.navbar.navbar-fixed-top.side-menu .navbar-nav > li.active > a {
    color: #fff;
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu.left-slide-menu,
    .navbar.navbar-fixed-top.side-menu.left-push-menu {
        left: -250px;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu.left-slide-menu.active,
    .navbar.navbar-fixed-top.side-menu.left-push-menu.active {
        left: 0;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu.right-slide-menu,
    .navbar.navbar-fixed-top.side-menu.right-push-menu {
        right: -250px;
        left: auto;
    }
}
@media (min-width: 992px) {
    .navbar.navbar-fixed-top.side-menu.right-slide-menu.active,
    .navbar.navbar-fixed-top.side-menu.right-push-menu.active {
        right: 0;
    }
}
.navbar-trigger-open {
    z-index: 10;
    position: fixed;
    top: 0;
    margin-top: 25px;
}
.navbar-trigger-open a {
    color: #fff;
    font-size: 28px;
    background-color: #1abc9c;
    padding: 5px 15px;
    border-radius: 2px;
    opacity: 0.9;
}
.navbar-trigger-open.left {
    left: 0;
    margin-left: 20px;
}
.navbar-trigger-open.right {
    right: 0;
    margin-right: 20px;
}
span.navbar-trigger-close {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 25px;
    margin-top: 28px;
}
span.navbar-trigger-close a {
    color: #aaa;
    font-size: 28px;
}
span.navbar-trigger-close a:hover {
    color: #fff;
}


/*---------------------------------------------------------------------*/
/*  5. INTRO SECTION
/*---------------------------------------------------------------------*/

/*START HOME SLIDESHOW*/
#home-slider {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.caption {
    position: absolute;
    top: 50%;
    margin-top: -150px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 15;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
}
.caption h2 {
    color: #fff;
    font-size: 55px;
    line-height: 55px;
    text-transform: uppercase;
    margin: 30px 0 0 0;
}
@media only screen and (max-width:768px) { 
    .caption h2 {
        font-size: 40px;
        letter-spacing: 1px;
    }
}
@media only screen and (max-width:480px) { 
    .caption h2 {
        font-size: 30px;
        letter-spacing: 1px;
    }
}
@media only screen and (max-width:320px) { 
    .caption h2 {
        font-size: 24px;
        letter-spacing: 1px;
        margin-top: 20px;
        line-height: 28px;
    }
}
.caption p {
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 0;
    padding-bottom: 35px;
    padding-top: 15px;
}
@media only screen and (max-width:320px) {
    .caption {
        margin-top: -200px;
    }
    .caption p {
        padding-bottom: 15px;
    }
    .caption .btn{
        margin-bottom: 15px;
    }
}
.carousel-fade .carousel-inner{
    height: 100%   
}
.carousel-fade .carousel-inner .item {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition-property: opacity;
    transition-property: opacity;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.carousel-fade .carousel-inner .item:after {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.4);
}
.carousel-fade .carousel-inner .active {
    opacity: 1;
    filter: alpha(opacity=100);
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    filter: alpha(opacity=100);
}
.carousel-fade .carousel-control {
    z-index: 2;
}
.left-control,
.right-control {
    background:#fff;
    color: #222;
    font-size: 24px;
    height: 51px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    width: 51px;
    z-index: 20;
}
@media only screen and (max-width:480px) { 
    .left-control,
    .right-control {
        display: none;
    }
}
.left-control {
    left: -51px; 
}
.right-control {
    right: -51px;
}
.left-control:hover,
.right-control:hover {
    background-color: #1abc9c;
    color: #fff;
}
#home-slider:hover .left-control { 
    left: 0px;
}
#home-slider:hover .right-control {
    right: 0px;
}
#home-slider .fa-angle-down {
    position: absolute;
    left: 50%;
    bottom: 50px;
    color: #fff;
    display: inline-block;
    width: 24px;
    margin-left: -12px;
    font-size: 24px;
    line-height: 24px;
    z-index: 999;
    -webkit-animation: bounce 3000ms infinite;
    animation: bounce 3000ms infinite;
}
/*END HOME SLIDESHOW*/

/* HOME BACKGROUND VIDEO */
.video-section{
    display: table;
    width: 100%;
    height: 100%;
}
.video-section .bcg{
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}
body .mbYTP_wrapper{
    position: absolute !important;
}
/* END HOME BACKGROUND VIDEO */
#intro {
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
}
#intro:before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
@media (min-width: 1280px) {
    #intro {
        height: 100%;
        padding: 0px;
    }
}
#intro .parallax {
    width: 100%;
    height: 100%;
}
#intro .parallax > .bcg {
    display: table;
    width: 100%;
    height: 100%;
/*    background-image: url("../img/bg-intro.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;*/
}
#intro .parallax > .bcg.text-rotate{
    background-image: url("../img/text_rotator_bg.jpg");
}

@media (min-width: 1280px) {
    #intro .parallax > .bcg {
        background-attachment: fixed;
    }
}
#intro .intro-body {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding-top: 70px;
    padding-bottom: 70px;
}
@media (min-width: 1280px) {
    #intro .intro-body {
        padding-top: 0px;
        padding-bottom: 20px;
    }
}
.logo > h1 {
    display: block;
    width: 275px;
    height: 80px;
    line-height: 80px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Raleway', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin: auto;
}
@media (min-width: 768px) {
    .logo > h1 {
        width: 340px;
        height: 110px;
        line-height: 110px;
        font-size: 50px;
    }
}
#intro .intro-text {
    margin-top: 40px;
    font-family: 'Raleway', sans-serif;
}
#intro .intro-text h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}
@media (min-width: 768px) {
    #intro .intro-text h2 {
        font-size: 55px;
    }
}
#intro .intro-text p.lead {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
}
@media (min-width: 768px) {
    #intro .intro-text p.lead {
        font-size: 26px;
    }
}
#intro .intro-body .page-scroll {
    margin-top: 30px;
}
@media (min-width: 768px) {
    #intro .intro-body .page-scroll {
        margin-top: 50px;
    }
}
#intro .intro-body .page-scroll a.btn {
    font-family: 'Raleway', sans-serif;
}
@media (min-width: 768px) {
    #intro .intro-body .page-scroll a.btn {
        padding: 20px 25px;
        font-size: 22px;
    }
}

/*---------------------------------------------------------------------*/
/*  5.1 VIDEO SECTION
/*---------------------------------------------------------------------*/
.video-section video{
    min-width: 100%;
}

/*---------------------------------------------------------------------*/
/*  6. WHO WE ARE SECTION
/*---------------------------------------------------------------------*/
#who-we-are .carousel-container {
    padding-bottom: 40px;
}
@media (min-width: 1024px) {
    #who-we-are .carousel-container {
        padding-bottom: 0px;
    }
}
#who-we-are .who-we-are-text {
    text-align: center;
    margin-bottom: 50px;
}
@media (min-width: 1024px) {
    #who-we-are .who-we-are-text {
        text-align: center;
        margin-bottom: 0px;
    }
}
#who-we-are .who-we-are-text > h4 {
    font-size: 22px;
    text-transform: uppercase;
}
@media (min-width:768px) {
    #who-we-are .who-we-are-text > h4 {
        font-size: 25px;
    }
}
#who-we-are .who-we-are-text > p {
    font-size: 18px;
}
#who-we-are .who-we-are-text > .page-scroll {
    padding-top: 5px;
}


/*---------------------------------------------------------------------*/
/*  7. FUN FACT SECTION
/*---------------------------------------------------------------------*/

#fun-fact > .section-inner .section-content .section-title {
    color: #eee;
}
#fun-fact > .section-inner .section-content .section-title > .section-line {
    background-color: #eee;
}


/*---------------------------------------------------------------------*/
/*  8. OUR MAIN SKILLS SECTION
/*---------------------------------------------------------------------*/

#our-main-skills > .section-inner .section-content .section-title {
    color: #eee;
}
#our-main-skills > .section-inner .section-content .section-title > .section-line {
    background-color: #eee;
}
#our-main-skills .bar-chart-text {
    color: #fff;
    text-align: center;
}
@media (min-width: 768px) {
    #our-main-skills .bar-chart-text {
        text-align: left;
    }
}
@media (min-width: 992px) {
    #our-main-skills .bar-chart-text {
        text-align: right;
    }
}
#our-main-skills .bar-chart-text p.lead {
    font-size: 18px;
}
@media (min-width: 768px) {
    #our-main-skills .bar-chart-text p.lead {
        font-size: 21px;
    }
}

/*---------------------------------------------------------------------*/
/*  8. Beautiful SECTION
/*---------------------------------------------------------------------*/
#beautiful > .section-inner .section-content .section-title {
    color: #eee;
    padding-bottom: 0;
}
#beautiful > .section-inner .section-content .section-title .sub-title {
    line-height: 1.5;
    margin-bottom: 0;
}
/*---------------------------------------------------------------------*/
/*  8. Our Clients SECTION
/*---------------------------------------------------------------------*/

#our-clients > .section-inner .section-content .section-title {
    color: #eee;
    padding-bottom: 0;
}
#our-clients > .section-inner .section-content .section-title .sub-title {
    line-height: 1.5;
    margin-bottom: 0;
}
#our-clients > .section-inner .section-content .section-line{
    background-color: #eee;
}
#our-clients .owl-item{
    position: relative;
}
#our-clients a { 
	color:#ffffff;
	text-decoration:underline;
}
/*
#our-clients .owl-item:after{
    position: absolute;
    right: 0;
    top:15%;
    width: 1px;
    height: 70%;
    background: #fff;
    content: "";
}
#our-clients .owl-item:last-child:after{
    display: none;
}*/

/*---------------------------------------------------------------------*/
/*  8. Our Clients SECTION
/*---------------------------------------------------------------------*/

#our-payments {
	background:#f2f4f4;
}
#our-payments > .section-inner .section-content .section-title {
    padding-bottom: 0;

}
#our-payments > .section-inner .section-content .section-title .sub-title {
    line-height: 1.5;
    margin-bottom: 0;
}
#our-payments > .section-inner .section-content .section-line{
    background-color: #ffffff;
}
#our-payments .owl-item{
    position: relative;
}

/*---------------------------------------------------------------------*/
/*  9. QUOTE SECTION
/*---------------------------------------------------------------------*/
#quote > .section-inner .parallax > .bcg {
    background-image: url("../img/bg-quote.jpg");
}
#quote > .section-inner .section-content {
    padding-top: 100px;
    padding-bottom: 80px;
    color: #eee;
}
#quote > .section-inner .section-content .quote-text > .quote-icon > i {
    color: #1abc9c;
    padding-bottom: 20px;
}
#quote > .section-inner .section-content .quote-text > h2 {
    font-size: 40px;
}
#quote > .section-inner .section-content .quote-text > h2.quote-by {
    color: #1abc9c;
}


/*---------------------------------------------------------------------*/
/*  10. KEEP IN TOUCH SECTION
/*---------------------------------------------------------------------*/

#keep-in-touch > .section-inner .section-content .section-title {
    color: #eee;
}
#keep-in-touch > .section-inner .section-content .section-title > .section-line {
    background-color: #eee;
}
#keep-in-touch .social-icon-item > a {
    color: #eee;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    display: block;
}

@media (min-width: 768px) {
    #keep-in-touch .social-icon-item > a {
        font-size: 20px; 
        letter-spacing: 0.2em;
    }
}
#keep-in-touch .social-icon-item > a h4{
    font-size: 14px;
}
@media (min-width: 768px) {
    #keep-in-touch .social-icon-item > a h4{
        font-size: 18px;
    }
}
#keep-in-touch .social-icon-item > a:hover {
    color: #1abc9c;
    cursor: pointer;
}
#keep-in-touch .social-icon-item > a:hover .social-icon > i {
    color: #1abc9c;
}
#keep-in-touch .social-icon-item > a .social-icon > i {
    color: #eee;
    font-size: 3.5em;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#keep-in-touch .social-icon-item.not-right-column.top-column {
    margin-bottom: 50px;
}
@media (min-width: 1024px) {
    #keep-in-touch .social-icon-item.not-right-column.top-column {
        margin-bottom: 0px;
    }
}
#keep-in-touch .social-icon-item.not-right-column {
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    #keep-in-touch .social-icon-item.not-right-column {
        margin-bottom: 0px;
    }
}


/*---------------------------------------------------------------------*/
/*  11. MEET THE TEAM SECTION
/*---------------------------------------------------------------------*/
#meet-the-team .team-item > .team-element {
    position: relative;
    display: block;
    overflow: hidden;
}
#meet-the-team .team-item > .team-element:hover > .team-inner {
    display: block;
    cursor: pointer;
}
#meet-the-team .team-item > .team-element:hover > img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
#meet-the-team .team-item > .team-element > .team-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: none;
    background-color: #000;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=80)";
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail {
    text-align: center;
    display: table;
    width: 100%;
    height: 100%;
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail > .team-content {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
    color: #fff;
    letter-spacing: 0.2em;
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail > .team-content > h4 {
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 300;
}
#meet-the-team .team-item > .team-element > .team-inner > .team-detail > .team-content > p {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 300;
}
#meet-the-team .team-item > .team-element > img {
    display: inline-block;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
#meet-the-team .team-item.not-right-column.top-column {
    margin-bottom: 30px;
}
@media (min-width: 1024px) {
    #meet-the-team .team-item.not-right-column.top-column {
        margin-bottom: 0px;
    }
}
#meet-the-team .team-item.not-right-column {
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    #meet-the-team .team-item.not-right-column {
        margin-bottom: 0px;
    }
}
#meet-the-team .team-item .team-photo{
    margin: 0 auto;
    position: relative;
    max-width: 200px;
}
@media (min-width: 1024px) {
    #meet-the-team .team-item .team-photo{
        max-width:100%;
    } 
}
#meet-the-team .team-item .team-photo .team-role{
    background: #1abc9c none repeat scroll 0 0;
    bottom: 10px;
    color: #fff;
    font-size: 18px;
    left: 0;
    line-height: 18px;
    padding: 5px 5px;
    position: absolute;
    text-transform: uppercase;
}
#meet-the-team .team-item .team-content{
    text-align: center;
}
#meet-the-team .team-item .team-content h4 {
    color: #222;
    font-size: 22px;
    line-height: 30px;
    margin-top: 20px;   
}
#meet-the-team .team-item .team-content p{
    font-size: 18px;
    line-height: 1.3;
}
#meet-the-team .team-item .team-social{
    text-align: center;
}

#meet-the-team .team-item .team-social a{
    font-size: 22px;
    line-height: 22px;
    display: inline-block;
    height: 32px;
    width: 32px;
    color: #b7b7b7;
}
#meet-the-team .team-item .team-social a:hover{
    color: #1abc9c;
}

/*---------------------------------------------------------------------*/
/*  12. TESTIMONIALS SECTION
/*---------------------------------------------------------------------*/

#testimonials > .section-inner .section-content .section-title {
    color: #eee;
}
#testimonials > .section-inner .section-content .section-title > .section-line {
    background-color: #eee;
}
#testimonials .section-inner .owl-pagination{
    text-align: right;
}
#testimonials .section-inner .owl-pagination span{
    border-radius: 0;
}
#testimonials .section-inner .owl-pagination .active span{
    background: #1abc9c;
}

@media (max-width: 640px) {
    #testimonials .testimonial-item .media-left, 
    #testimonials .testimonial-item .media-right, 
    #testimonials .testimonial-item .media-body{
        display: block;
        max-width: 100%;
    } 
    #testimonials .testimonial-item .media-left{
        padding-right: 0;
        margin-bottom: 20px;
    }
}


/*---------------------------------------------------------------------*/
/*  13. COMING SOON SECTION
/*---------------------------------------------------------------------*/
#coming-soon > .section-inner .parallax > .bcg {
    background-image: url("../img/bg-coming-soon.jpg");
}
#coming-soon > .section-inner .section-content .section-title {
    color: #eee;
}
#coming-soon > .section-inner .section-content .section-title > .section-line {
    background-color: #eee;
}
#coming-soon > .section-inner .section-content .countdown-form {
    margin-top: 60px;
}
@media (min-width: 360px) {
    #coming-soon > .section-inner .section-content .countdown-form {
        margin-top: 70px;
    }
}
#coming-soon > .section-inner .section-content .countdown-form form > .input-group > span.input-group-btn > .btn {
    padding-top: 11px;
    padding-bottom: 10px;
}
#coming-soon > .section-inner .section-content .countdown-text {
    margin-top: 50px;
}
#coming-soon > .section-inner .section-content .countdown-text > p {
    color: #eee;
}


/*---------------------------------------------------------------------*/
/*  14. CONTACT US SECTION
/*---------------------------------------------------------------------*/

#contact-us > .section-inner .section-content .section-title {
    color: #eee;
}
#contact-us > .section-inner .section-content .section-title > .section-line {
    background-color: #eee;
}
#contact-us > .section-inner .section-content .content-message {
    color: #fff;
    background-color: #1abc9c;
    margin-bottom: 50px;
    padding: 30px;
}
#contact-us > .section-inner .section-content .form-group .input-group {
    width: 100%;
}
#contact-us > .section-inner .section-content .form-group label {
    color: #eee;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
#contact-us > .section-inner .section-content .form-group label.error {
    position: absolute;
    top: -26px;
    right: 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: none;
    color: #f00;
}
#contact-us > .section-inner .section-content .form-group input,
#contact-us > .section-inner .section-content .form-group textarea {
    color: #eee;
    background-color: rgba(255,255,255,0.4);
    font-weight: 300;
    letter-spacing: 0.1em;
    border-radius: 0px;
    border-color: #eee;
    box-shadow: none;
}
#contact-us > .section-inner .section-content .form-group input:focus,
#contact-us > .section-inner .section-content .form-group textarea:focus {
    border-color: #1abc9c;
    box-shadow: none;
}
#contact-us > .section-inner .section-content .form-group textarea {
    height: 137px;
}
#contact-us > .section-inner .section-content .form-group button {
    width: 100%;
    margin-top: 30px;
    border-radius: 0px;
}
#contact-us > .section-inner .section-content .form-group span {
    color: #fff;
    background-color: #1abc9c;
    border-radius: 0px;
    border-color: #1abc9c;
}
#contact-us > .section-inner .section-content .form-group span > i {
    width: 20px;
}
#contact-us > .section-inner .section-content .social-icon-text > h2 {
    display: inline-block;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    background-color: #1abc9c;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    border: 1px solid #148f77;
    margin-top: 30px;
}
@media (min-width: 1024px) {
    #contact-us > .section-inner .section-content .social-icon-text > h2 {
        font-size: 40px;
        width: 100px;
        height: 100px;
        line-height: 100px;
        margin-top: 50px;
    }
}
#contact-us > .section-inner .section-content .social-icon-text > h4 {
    color: #eee;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 30px;
}
@media (min-width: 1024px) {
    #contact-us > .section-inner .section-content .social-icon-text > h4 {
        font-size: 30px;
    }
}
#contact-us > .section-inner .section-content .social-icon-text > ul.social-icon-list {
    margin-top: 20px;
}
#contact-us > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #eee;
    font-size: 16px;
    text-align: center;
    border: 1px solid #eee;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
#contact-us > .section-inner .section-content .social-icon-text > ul.social-icon-list > li a:hover {
    border-color: #1abc9c;
    background: #1abc9c;
}


/*---------------------------------------------------------------------*/
/*  15. MAP
/*---------------------------------------------------------------------*/
#map {
    background-color: #f2f4f4;
}
#map #google-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-top: 5px solid #fff;
}
#map #google-container #cd-google-map {
    position: relative;
    -webkit-transition: all ease 0.55s;
    transition: all ease 0.55s;
}


/*---------------------------------------------------------------------*/
/*  16. FOOTER
/*---------------------------------------------------------------------*/
footer.footer {
    color: #888;
    background-color: #1c1c1c;
    border-top: 2px solid #1abc9c;
}
footer.footer a {
    color: #c9c9c9;
}
footer.footer a:hover {
    color: #ffffff;
}
footer.footer #footer {
    background-color: #1c1c1c;
    padding-top: 50px;
    padding-bottom: 20px;
}
footer.footer #footer .footer-column.not-right-column {
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    footer.footer #footer .footer-column.not-right-column {
        margin-bottom: 0px;
    }
}
footer.footer #footer .footer-column .footer-text {
    text-align: center;
}
@media (min-width: 768px) {
    footer.footer #footer .footer-column .footer-text {
        text-align: left;
    }
}
footer.footer #footer h4 {
    color: #c9c9c9;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.2em;
}
footer.footer #footer p {
    font-size: 14px;
    margin-bottom: 20px;
}
footer.footer #footer ul.icon-list > li {
    padding-bottom: 10px;
}
footer.footer #footer ul.icon-list > li > i {
    padding-right: 10px;
}
footer.footer #footer ul.social-icon-list > li {
    padding-bottom: 10px;
}
footer.footer #footer ul.social-icon-list > li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #eee;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
footer.footer #footer ul.social-icon-list > li a:hover {
    border-color: #1abc9c;
    background: #1abc9c;

}
footer.footer #footer .newsletter-form input {
    background-color: transparent;
    border-color: #888;
    box-shadow: none;
}
footer.footer #footer .newsletter-form input:focus {
    border-color: #1abc9c;
    box-shadow: none;
}
footer.footer #copyright {
    background-color: #161616;
    padding: 15px 0px;
    border-top: 1px solid rgba(114, 114, 114, 0.25);
}
footer.footer #copyright p {
    font-size: 13px;
    text-align: center;
    margin: 0px;
}
@media (min-width: 768px) {
    footer.footer #copyright p {
        text-align: left;
    }
}

/* back_top starts */
.back_top{
    bottom: 20px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 1000;
}
@media (min-width: 768px) {
    .back_top{
        bottom: 50px;
        right: 50px;
    }

}
.back_top a{
    background: #1abc9c;
    color: #FFFFFF;
    display: inline-block;
    font-size: 23px;
    height: 44px;
    opacity: 0.8;
    text-align: center;
    width: 44px;
}
.back_top a i{
    line-height: 44px;
}
.back_top a:hover{
    opacity: 1;
}
/* back_top ends */

/****************************
* CAROUSEL
****************************/

.carousel p a { color:#ffffff; text-decoration:underline; }

.sub-title a { color:#ffffff; text-decoration:underline; }

#charity { background:#272d30; color:#ffffff; }
#charity > .section-inner .section-content .section-title { color:#ffffff; }
#charity > .section-inner .section-content .section-title { padding-bottom:0px; }

span.orange { color:#ea5b0c; }
