/* ==========================================================================
    CSS Sorting
   ========================================================================== */
/*
1- Author's custom styles
2- Preloader
3- Button and Link Hover Effect
4- Header
5- Menu Bar
6- Menu Hover Effect
7- Banner Section
8- Portfolio Section
9- Services
10- About Us
11- Counter
12- Blog
13- Social Icons
14- Client Logo Section
15- Testimonial Parallex
16- Contact Us Section
17- Map
*/

@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,500);
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #2f3033;
}
ul li {
    list-style: none
}
a {
    color: #000;
}
ul {
    margin-bottom: 0;
    padding: 0;
}
a:focus, a:hover {
    outline: none !important;
    text-decoration: none;
}
h2, h3, h4, h5, h6 {
    color: #32303c;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}
img {
    width: 100%
}
p {
    line-height: 22px;
}
.section-padding {
    padding: 60px 30px;
}
.page-section {
    float: left;
    width: 100%;
    background: #fff;
    position: relative;
}

/*================ Preloader ====================*/
.preloader{
    background-color: #000;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999999;
    margin-top: 0px;
    top: 0px;
}
#loading-center{
    width: 100%;
    height: 100%;
    position: relative;
}
#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    width: 200px;
    margin-top: -100px;
    margin-left: -100px;	

}
.object{
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50% 50% 50% 50%;
    position: absolute;
    border-left: 5px solid #FFF;
    border-right: 5px solid #FFF;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;	
}
#object_one{
    left: 75px;
    top: 75px;
    width: 50px;
    height: 50px;
}						
#object_two{
    left: 65px;
    top: 65px;
    width: 70px;
    height: 70px;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}	
#object_three{
    left: 55px;
    top: 55px;
    width: 90px;
    height: 90px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#object_four{
    left: 45px;
    top: 45px;
    width: 110px;
    height: 110px;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}	
@-webkit-keyframes animate {
    50% {
        -ms-transform: rotate(180deg); 
        -webkit-transform: rotate(180deg); 
        transform: rotate(180deg); 
    }  
    100% {
        -ms-transform: rotate(0deg); 
        -webkit-transform: rotate(0deg); 
        transform: rotate(0deg); 
    }	  
}
@keyframes animate {
    50% {
        -ms-transform: rotate(180deg); 
        -webkit-transform: rotate(180deg); 
        transform: rotate(180deg); 
    }  
    100% {
        -ms-transform: rotate(0deg); 
        -webkit-transform: rotate(0deg); 
        transform: rotate(0deg); 
    }	  
}

/*================ Button and Link Hover Effect ====================*/

/* Underline From Center */
.hover, .nav-tabs > li > a:hover {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: white;
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 20px;
    margin-top: 25px;
}
.hover:before, .nav-tabs > li > a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #e6e6e6;
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hover:hover:before, .hover:focus:before, .hover:active:before, .nav-tabs > li > a:hover:before, .nav-tabs > li > a:focus:before {
    left: 0;
    right: 0;
}
.regular-checkbox {
    display: none;
}
.regular-checkbox + label {
    background-color: #fafafa;
    border: 1px solid #cacece;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);
    padding: 9px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    top: 5px;
}
.regular-checkbox + label:active, .regular-checkbox:checked + label:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}
.regular-checkbox:checked + label {
    background-color: #e9ecee;
    border: 1px solid #adb8c0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 0px 10px 0px rgba(0,0,0,0.05), inset 15px 10px 0px rgba(255,255,255,0.1);
    color: #99a1a7;
}
.regular-checkbox:checked + label:after {
    content: '\2714';
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: #99a1a7;
}

/*================ Header ====================*/
.header {
    width: 100%;
    float: left;
    background: rgba(0, 0 ,0, 0.7);
    position: relative;
    z-index: 992;
}
header.animated {
    background: #000;
}
header.animated .icn__wrap {
    top: 0;
}
.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    line-height: 2;
    margin-top: 17px;
}
.logo a:hover {
    text-decoration: none
}
/*================ Menu Bar ====================*/
nav {
    float: right;
}
.navbar-inverse {
    background: none !important
}
.navbar-inverse {
    margin-top: 0px;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border: 0;
    margin-bottom: 0;
    min-height: auto;
}
.navbar-inverse .navbar-nav > li > a {
    transition: all 0.3s linear 0s;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 15px;
    line-height: 6;
    text-decoration: none;
}
.navbar-collapse{
    display: block !important;
}
/*================ Menu Hover Effect ====================*/
#bs-example-navbar-collapse-1 a::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    content: '';
    opacity: 0;
    -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
    transition: height 0.3s, opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
}
#bs-example-navbar-collapse-1 a:hover::after, #bs-example-navbar-collapse-1 a:focus::after {
    height: 5px;
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
}
#bs-example-navbar-collapse-1 li .children a::after{
    background: #000;
}
.main-section {
    float: left;
    width: 100%;
}
/*Navigation*/
.header__fake {
    position: fixed;
}
.header__fake i {
    display: block;
}
.header__fake .btm__border {
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    -o-transition: left 0.5s;
    -moz-transition: left 0.5s;
    -webkit-transition: left 0.5s;
    transition: left 0.5s;
}
.header__fake .icn__wrap {
    cursor: pointer;
    float: right;
    width: 80px;
    position: relative;
    height: 80px;
    top: 6px;
}
.header__fake .icn__wrap .icn__hamburger {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-6px);
    -ms-transform: translateX(-50%) translateY(-6px);
    transform: translateX(-50%) translateY(-6px);
    display: block;
    width: 18px;
    height: 1px;
    z-index: 999;
    background: #fff;
}
.header__fake .icn__wrap.close .icn__hamburger:after {
    display: none;
}
.header__fake .icn__wrap.close .icn__hamburger {
    -webkit-transform: translateX(0) rotate(45deg);
    -moz-transform: translateX(0) rotate(45deg);
    -ms-transform: translateX(0) rotate(45deg);
    -o-transform: translateX(0) rotate(45deg);
    transform: translateX(0) rotate(45deg);
    display: block;
}
.header__fake .icn__wrap.close .icn__hamburger:before {
    -webkit-transform: translateX(0) rotate(-90deg);
    -moz-transform: translateX(0) rotate(-90deg);
    -ms-transform: translateX(0) rotate(-90deg);
    -o-transform: translateX(0) rotate(-90deg);
    transform: translateX(0) rotate(-90deg);
    margin: 0;
    display: block;
}
.header__fake .icn__wrap .icn__hamburger:after, .header__fake .icn__wrap .icn__hamburger:before {
    content: "";
    float: left;
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    margin: 5px 0 0;
}
.header__fake .close {
    opacity: 1;
}
.header__fake .icn__wrap .icn__hamburger:before {
    margin: 6px 0 0;
}
.header__fake .icn__wrap svg {
    z-index: 10;
}
.header__fake .icn__wrap svg circle {
    fill: none;
    stroke: #fff;
    stroke-width: .5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 39 39;
    stroke-dashoffset: -39;
    -webkit-transition: stroke-dashoffset 0.5s;
    transition: stroke-dashoffset 0.5s;
}
.header__fake.animated .btm__border {
    left: 100%;
    right: 4px;
}
.header__fake.animated svg circle {
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 0.5s;
    transition: stroke-dashoffset 0.5s;
}
.header__fake.fix .btm__border {
    -webkit-animation: fix 0.2s linear;
    -moz-animation: fix 0.2s linear;
    -o-animation: fix 0.2s linear;
    animation: fix 0.2s linear;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    right: 5px;
}
@keyframes fix {
    from {
        right: 5px;
    }
    to {
        right: 0px;
    }
}
/*PrettyPhoto*/
.pp_content_container .pp_details {
    z-index: 99;
}
.bounce {
    animation : bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform : translateY(0);
    }
    40% {
        transform : translateY(-30px);
    }
    60% {
        transform : translateY(-15px);
    }
}

.navbar-nav .children {
    background-color: #fff;
    border-top: 1px solid;
    left: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: 100%;
    transform: translateX(30px);
    transition: all 0.4s ease-in-out 0s;
    visibility: hidden;
    z-index: 999;
}
.navbar-nav > li:hover > .children, .navbar-nav .children > li:hover > .children {
    opacity: 1;
    transform: translateX(0px);
    visibility: visible;
}
.children.open > li {
    padding: 0 30px;
}
.navbar-nav .children a{
    color: #000;
    line-height: 1;
}

/*================ Banner Section ====================*/
#home-banner {
    overflow: hidden;
    position: relative;
    width: 100%;
    float: left;
    background: #000;
    display: block;
    /*border-bottom: 2px solid #000;*/
}
#home-banner .intro {
    color: #fff;
    font-size: 16px;
    position: absolute;
    text-align: left;
    top: 45%;
    width: 45%;
    margin: 0 30px;
    z-index: 9;
}
#home-banner .intro h1 {
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    margin: 15px 0;
    padding: 0;
}
#home-banner .intro span {
    display: none;
}
.mbBgndGallery > img{
   margin-top: -50px !important;
}
.center-align > p {
    color: #fff;
    font-size: 18px;
    margin: 0;
    padding: 0;
}
.center-align {
    text-align: center;
    margin: 0 auto;
    width: 30%;
    background: url('../img/bg_pattern.png') rgba(0, 0, 0, 0.8);
    padding: 2.5em;
    /*border: 5px #fff double;*/
}
#home-banner .black span {
    color: #000;
}
#home-banner .black {
    color: #000;
    width: 100%;
    text-align: center;
    margin: 0;
    top: 40%;
}

#home-banner .backstage {
		width: 200px;
		text-align: center;
		height: auto;
		margin: 45px 0; }

.white {
    color: #fff !important;
}
.home-bg {
    -webkit-animation-name: back_animation;
    -moz-animation-name: back_animation;
    -o-animation-name: back_animation;
    animation-name: back_animation;
    -webkit-animation-duration: 60s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    animation: 60s ease 0s normal none infinite back_animation;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: -1;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.landing-home-banner {
    position: absolute;
    top: 20%;
    width: 100%;
}
#home_video {
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}
.mejs-controls {
    display: none !important;
}
.video-overlay, .overlay {
    background: url("../img/bg_pattern.png") repeat scroll 0 0 rgba(33, 39, 57, 0.5);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.landing-home-banner h1 {
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 5.143em;
    font-weight: bold;
    line-height: 80px;
    padding-top: 120px;
    text-align: left;
}
.landing-home-banner .col-lg-6 h1 span {
    color: #dc59fd;
    ;
}
.landing-home-banner-img > img {
    padding-left: 40px;
}
.landing-home-banner p {
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 1.143em;
    font-weight: 400;
    line-height: 25px;
    padding-top: 20px;
    text-align: left;
}
@keyframes back_animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}
/*Banner Arrow*/
.arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 40px;
    background-size: contain;
}
.arrow a {
    display: block;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
}
.bg-animated .arrow a{
    color: #000;
}
/*================ Portfolio Section ====================*/
.grid:after {
    content: '';
    display: block;
    clear: both;
}
.grid-item {
    background: #000;
}
.grid-item img {
    -webkit-transition: opacity 0.75s;
    transition: opacity 0.75s;
}
.grid-item:hover img {
    opacity: 0.4;
}
.grid-item a.caption::before, .grid-item a.caption::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
    transition: opacity 0.75s, transform 0.75s;
}
.grid-item a.caption::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}
.grid-item a.caption::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}
.grid-item a.caption h3 {
    padding-top: 48%;
    -webkit-transition: -webkit-transform 0.75s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
    color: #fff;
    opacity: 0;
}
.grid-item:hover a.caption::before, .grid-item:hover a.caption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.grid-item:hover a.caption h3 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.grid-item2 a.caption h3 {
    padding-top: 25%;
}
.grid-item3 a.caption h3 {
    padding-top: 8%;
}
.grid-item7 a.caption h3 {
    padding-top: 22%;
}
.grid-item {
    float: left;
    width: 25%;
}
.grid-item--width2 {
    width: 50%;
}
.grid1 {
    background: none;
}
.captionText {
    text-align: center;
    position: absolute;
    top: 30%;
    font-size: 20px;
    width: 100%;
    padding: 20px 10%;
}
.grid-item .caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 100%;
    transition: all 0.6s ease-in-out
}
.caption h3 {
    font-weight: 700;
    font-size: 36px;
}
.caption p {
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 18px;
    color: #000;
    top: 30%;
}
.grid-item:hover .caption {
    opacity: 1;
}
.load {
    background: #000;
    color: #fff;
    float: left;
    padding: 20px 0;
    text-align: center;
    width: 100%;
    margin-top: -1px;
}
.load a {
    color: #fff;
    position: relative;
}
.load a:before {
    content: "\f107";
    color: #fff;
    font-family: fontawesome;
    position: absolute;
    right: -23px;
    font-size: 20px;
    top: -5px;
}
/*==================== Services  ====================*/
.services h2 {
    padding-top: 60px;
    text-transform: uppercase;
}
.services h4, .services p {
    padding-bottom: 15px;
}
.serviceImg {
    margin-top: 60px;
    float: left;
}

/*Service Categories*/
.categories {
    background: #000 none repeat scroll 0 0;
    float: left;
    padding-bottom: 40px;
    padding-top: 35px;
}
.categories > div {
    padding-top: 25px;
}
.categories h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 55px;
}
.categories img {
    width: auto;
}
.categories ul {
    margin-left: 30px;
}
.categories ul li {
    list-style: none;
    line-height: 24px;
}
.categories ul li a {
    color: #fff;
    font-size: 12px;
    line-height: 2;
}
.categories .col-md-7 {
    border-right: 1px solid #fff;
}
.gray {
    background: #e7e7e7;
}
.gray h3 {
    color: #000;
}
.gray .col-md-7 {
    border-right: 1px solid #b8b8b8;
}
.gray ul li a {
    color: #000
}
/*================ About Us ======================*/
.about-left {
    background: url(../img/servicesImg2.jpg) no-repeat 0 0;
    background-size: cover;
}
.aboutus h2 {
    text-transform: uppercase;
}
.aboutus h4 {
    font-weight: 300;
    padding-bottom: 15px;
    line-height: 2;
}
/*================ Counter ======================*/
.counter {
    float: left;
    padding-top: 75px;
    position: relative;
    width: 100%;
}
.counter-block figure {
    height: 56px;
    width: auto;
}
.counter-block figure img {
    width: 30%;
}
.counter-block .timer {
    color: #030303;
    font-size: 30px;
    font-weight: 400;
}
.text {
    font-size: 15px;
    text-transform: uppercase
}
.counter-block {
    float: left;
    position: relative;
    text-align: center;
    width: 100%;
}
/*================ Blog ======================*/
.blog {
    width: 100%;
    position: relative;
    float: left
}
.blog-items {
    position: relative;
    color: #e6e6e6;
    z-index: 1;
}
.overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.blogText {

    margin-top: 8em;
    margin-bottom: 8em;
}
.blog h6 {
	color: #fff;
    font-size: 30px;
     margin-bottom: 4em;
}
.blog p2 {
     color: #fff;
    font-size: 24px;
    font-weight: 300;
}
.video-area {
    float: left
}
.video-section h2 {
    color: #000;
}
.video-section object {
    width: 70% !important;
    margin: 0 auto;
}
.video-section video {
    width: 100% !important;
    margin: 0 auto;
}
/*================ Social Icons ======================*/
#clients {
    background: #000;
}
.social1 {
    background: #000 none repeat scroll 0 0;
    color: #fff;
    text-align: center;
}
.social1 i {
    color: #fff;
    font-size: 30px;
}
.social2 i {
    color: #000;
}
.social2 {
    background: #fff none repeat scroll 0 0;
}
.rollover {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    height: 300px;
    border: 0 solid rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.rollover:hover {
    border: 20px solid rgba(255, 255, 255, 0.5);
}
.social2 .rollover:hover {
    border: 20px solid rgba(0, 0, 0, 0.5);
}
.rollover i {
    height: 50%;
    width: 50%;
    text-align: center;
    line-height: 298px;
}
.rollover a i {
    display: block;
}
#myCarousel .flex-direction-nav {
    width: 67px;
    margin: 0 auto;
}
#myCarousel .flex-direction-nav li {
    list-style: none;
    float: left;
}
#myCarousel .flex-direction-nav li .flex-prev {
    background: rgba(0, 0, 0, 0) url("../img/arow-left.png") no-repeat scroll 0 0;
    float: left;
    height: 26px;
    margin-right: 15px;
    text-indent: -999em;
    width: 26px;
}
#myCarousel .flex-direction-nav li .flex-next {
    background: rgba(0, 0, 0, 0) url("../img/arow-right.png") no-repeat scroll 0 0;
    float: left;
    height: 26px;
    text-indent: -999em;
    width: 26px;
}
#myCarousel {
    padding: 70px 10%;
    float: left;
}
#myCarousel h2 {
    font-size: 38px;
    margin-bottom: 15px;
    margin-top: 0;
}
#myCarousel h2, #myCarousel p, #myCarousel h6 {
    color: #fff;
    width: 100%;
    text-align: center;
}
/*================ Client Logo Section ======================*/
.logos a {
    float: left;
    text-align: center;
}
.logo1 {
    background: #f5f5f5 none repeat scroll 0 0;
    float: left;
    padding-top: 70px;
    padding-bottom: 70px;
}
.logo1 a {
    background: rgba(0, 0, 0, 0) url("../img/logo.png") no-repeat center top;
    height: 37px;
    text-indent: -999em;
    transition: all 0.3s linear 0s;
    width: 100%;
}
.gray {
    background: #e0e0e0 none repeat scroll 0 0;
}
.logo2 a {
    background: url(../img/logo2.png) no-repeat center top;
}
.logo3 a {
    background: url(../img/logo3.png) no-repeat center top;
}
.logo4 a {
    background: url(../img/logo4.png) no-repeat center top;
}
.logo1:hover a {
    background-position: center bottom;
}
/*========================== Testimonial Parallex ===========================*/

.parallax-window {
    background: transparent;
}
.testimonials {
    min-height: 400px;
    float: left;
    background: transparent;
    padding-top: 90px;
    position: relative
}
.testimonials .slides p {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 2;
}
.shadow {
    background: rgba(0,0,0,.4);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
#myCarousel2 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center
}
#myCarousel2 .flex-direction-nav li .flex-prev {
    width: 100%;
    height: 26px;
    float: left;
    text-indent: -999em;
    margin-right: 15px;
}
#myCarousel2 .flex-direction-nav li .flex-next {
    width: 26px;
    height: 26px;
    text-align: center;
    text-indent: -999em
}
#myCarousel2 .flex-direction-nav {
    bottom: -47px;
    left: 46%;
    position: absolute;
}
#myCarousel2 .flex-direction-nav li {
    float: left
}
#myCarousel2 h2 {
    margin-bottom: 30px;
    color: #fff
}
#myCarousel2 h4 {
    text-transform: uppercase;
    color: #fff;
}

/*========================== Contact Us Section ===========================*/
.contact {
    background: #fff;
    text-transform: none;
}
.contact p {
    font-size: 14px;
    color: #999;
    font-weight: 500;
    line-height: 2;
}
.form-control:focus {
    box-shadow: none
}
.contact h2 {
    font-weight: 600;
}
.contact .form-control {
    margin-top: 15px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #c1c1c1;
    border-radius: 0;
    box-shadow: none;
    font-weight: 500;
    height: 40px;
}
.contact .last {
    margin-right: 0 !important
}
.contact span {
    display: inline;
    font-size: 13px;
    color: #999;
    font-weight: 500;
}
.contact label {
    margin: 25px 10px 0 0;
}
input[type="radio"], input[type="checkbox"] {
    box-shadow: none;
}
.contact .form-controlN {
    width: 80%;
    float: left;
}
.contact a.link {
    color: #000;
    float: left;
    margin-top: 40px;
    margin-left: 25px;
    font-weight: 600
}
.contactAddress, .contactus {
    margin-top: 30px;
}
.nav-tabs {
    border: none
}
.nav-tabs li {
    margin-right: 0px;
    border: none;
    margin: 0 30px;
}
.nav-tabs li:first-child, .nav-tabs li:last-child {
    margin: 0;
}
.contactInfo .nav-tabs li a {
    text-transform: uppercase;
    background: none !important;
    color: #e6e6e6 !important;
    border: none;
    padding: 30px 0;
    font-size: 18px;
    margin: 0;
}
.contactInfo .address_tabs {
    margin-top: 15px;
    margin-bottom: 150px;
    float: left;
}
.contactAddress p, .contactus a {
    color: #e6e6e6;
}
.contact .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background: none !important;
    color: #e6e6e6 !important;
    border: none;
    border-bottom: 1px solid
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a, .nav-tabs > li > a:hover {
    background: none;
    color: #fff;
}
.newsection {
    z-index: 5;
    position: relative
}
.contactus a {
    float: left;
    width: 100%;
    margin-bottom: 15px;
}
.contactus a i {
    font-size: 18px;
    margin-right: 10px;
}
.counter-block img {
    width: auto;
}
.counter-block .timer {
    font-size: 30px;
}
.nav-tabs > li > a::before {
    height: 1px;
}
.nav-tabs > li.active > a::before {
    height: 0;
}
.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a {
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
}
/*========================== Map ===========================*/
.map {
    background: #e6e6e6 none repeat scroll 0 0;
    bottom: 0;
    color: #000;
    left: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    width: 53%;
    z-index: 5;
}
.map a {
    color: #000;
    line-height: 5;
    display: block;
}
.map a i {
    color: #000;
    font-size: 20px;
    padding-left: 20px;
}
.copyText {
    padding-left: 15px;
    padding-bottom: 10px;
    margin-top: 40px;
    float: left;
    width: 100%
}
.contactInfo {
    background: #000;
}
.contactInfo h2 {
    color: #fff;
    text-transform: capitalize;
}
.flex-active-slide {
    display: block;
    text-align: center;
    overflow: hidden;
}
.icon-desktop, .icon-genius, .gray .icon-hotairballoon, .icon-expand {
    font-size: 60px;
    color: #808184;
    margin-bottom: 15px;
}
.icon-trophy, .icon-heart, .icon-hotairballoon, .icon-picture {
    font-size: 40px;
    color: #808184;
}
#map_canvas {
    position: relative;
    z-index: 9999999;
}
.pp_gallery ul a img {
    width: 50px !important;
}
/*Video section*/ 
.video-section {
    float: left;
    width: 100%;
}
.mejs-poster.mejs-layer, .mejs-container.svg.mejs-video, .mejs-overlay.mejs-layer.mejs-overlay-play {
    width: 100% !important;
}
.parallax-window {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    position: relative;
}
.message_contact.alert{
	border-radius: 0px;
    background: transparent;
    border: 2px solid;
}
.make_booking{ min-width:150px; position:relative;}
.make_booking i.fa-refresh{
	right: 10px;
    position: absolute;
    top: 19px;
}