/*  ------------------------------------------------
           Valiant Graphics  CSS TABLE OF CONTENTS
/*  ------------------------------------------------- */
/*
1:  Pre-loader
2:  Default styles
3:  Common section styles
4:  Navigation
5:  Page sections (sections included in the navigation)
    5.1:    Hero Unit (Main slider)
    5.2:    About section ("About us")
    5.3:    Services section ("What we do")
    5.4:    Why choose us
    5.5:    Portfolio section
    5.6:    Contact section
6: Icon Boxes
7: Forms
8: Pricing
9:  Call to action section (payment)
10: Footer
11: CSS3 Animations
12: Buttons
13: Media queries





/*--------------------------- -*/
/* 1:  Pre-loader
/*-----------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99999;
    height: 100%;
}
#status {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    padding: 0;
}

/* 2:   Default styles
/* ---------------------------------------------- */

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

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: #ffffff; /* Can be changed via colors.css */
    background-color: #fff;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 20px 0;
    text-transform: none;
    color: #F8E514; /* Primary color, can be changed via colors.css */
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;    
}


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

a:hover,
a:focus {
    text-decoration: none;
    color: #F8E514; /* Primary color, can be changed via colors.css */
}

.light {
    font-weight: 100;
}

.white{
    color:#fff;
}

.gray{
    color: #a5a5a5;
}
.graydark{
    color:#1a1a1a;
}

.buffer-twenty{
    margin:20px 0;
}

.buffer-twenty-top{
    margin-top: 20px;
}

.buffer-twenty-bottom{
    margin-bottom: 20px;
}

.buffer-forty{
    margin:40px 0;
}

.buffer-forty-top{
    margin-top: 40px;
}

.no-bottom-pad{
    padding-bottom: 0 !important;
}

.no-top-pad{
    padding-top: 0 !important;
}

.highlight{
    font-weight: 700;
    color: rgba(254,82,76, 1); /* Primary color, can be changed via colors.css */
}

.list-ord{
    list-style: none;
    margin:0;
    padding: 10px 0;
    font-size: 16px;
    line-height: 28px;
}

.no-bg{
    background: none !important;
}
.upper {
    text-transform: uppercase;
}
.line{

        width: 80%;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 50px;
	height: 1px;
	background: #fff;
	background-image: -webkit-linear-gradient(left, #f9f9f9, #5a5a5a, #f9f9f9);
	background-image: -moz-linear-gradient(left, #f9f9f9, #5a5a5a, #f9f9f9);
	background-image: -ms-linear-gradient(left, #f9f9f9, #5a5a5a, #f9f9f9);
	background-image: -o-linear-gradient(left, #f9f9f9, #5a5a5a, #f9f9f9);
	opacity: 0.5;
}



/*Padding modifiers
   ---------------------------------------------------------------------------*/
.sep-top-xs {
    padding-top: 1.5em;
}
.sep-top-sm {
    padding-top: 2.2em;
}
.sep-top-md {
    padding-top: 3em;
}
.sep-top-lg {
    padding-top: 4.3em;
}
.sep-top-2x {
    padding-top: 6.5em;
}
.sep-top-3x {
    padding-top: 9.4em;
}
.sep-top-4x {
    padding-top: 11.5em;
}
.sep-top-5x {
    padding-top: 16em;
}
.sep-bottom-xs {
    padding-bottom: 1.5em;
}
.sep-bottom-sm {
    padding-bottom: 2.2em;
}
.sep-bottom-md {
    padding-bottom: 3em;
}
.sep-bottom-lg {
    padding-bottom: 4.3em;
}
.sep-bottom-2x {
    padding-bottom: 6.5em;
}
.sep-bottom-3x {
    padding-bottom: 9.4em;
}
.sep-bottom-4x {
    padding-bottom: 11.5em;
}
.sep-bottom-5x {
    padding-bottom: 16em;
}
.no-padding {
    padding: 0;
}
.no-margin {
    margin: 0;
}





/* 3:   Common section styles
/* ---------------------------------------------- */

.content-section {
    padding: 100px 0;
}

.content-section.alt-bg{
    background-color: #222;
}

.content-section.alt-bg-dark{
    background-color: #fafafa;
    border-top:1px solid #f5f5f5;
    border-bottom:1px solid #d2d2d2;
}
.content-section.alt-bg-light{
    background-color: #fff;
    border-top:1px solid #f5f5f5;
    border-bottom:1px solid #d2d2d2;
}

.caption{
    font-weight: 100;
    font-size: 20px;
}

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

.align-middle{
    margin:0 auto;
}

.sans-border{
    border-radius: 0;
}

.sans-shadow{
    box-shadow: none;
}


/* 4:   Navigation
/* ---------------------------------------------- */

.navbar-custom {
    margin-bottom: 0;
    text-transform: none;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    -webkit-transition: background .5s ease-in-out;
    -moz-transition: background .5s ease-in-out;
    transition: background .5s ease-in-out;
}

.navbar-custom.top-nav-collapse{
    background: rgba(0,0,0, .9); /* Primary color, can be changed via colors.css */
}

.navbar-custom .navbar-brand {
    font-weight: 600;
    font-size: 25px;
    padding: 0;
    margin: 0;
}

.navbar-custom .navbar-brand span.brand-logo{
    display: inline-block;
    padding: 10px 0;
    margin: 0 16px;
}


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

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 2px 6px;
    color: #fff;
}

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

.navbar-custom a {
    color: rgba(0,0,0, 1); /* Primary color, can be changed via colors.css */
}

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

.navbar-custom .nav li a:hover {
    outline: 0;
    color: rgba(255, 255, 255, .8);
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: rgba(255, 255, 255, .3);
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}


/* Custom overlay navigation
/* ---------------------------------------------- */
.button_container {
    position: relative;
    margin-top: 14px;
    height: 28px;
    width: 28px;
    cursor: pointer;
    z-index: 999;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

/* Animate the top hamburger bar */
.button_container.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    -ms-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #FFF;
}

/* Set the middle hamburger bar's opacity to 0  */
.button_container.active .middle {
    opacity: 0;
    background: #FFF;
}

/* Animate the bottom hamburger bar */
.button_container.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #FFF;
}

.button_container span {
    background: #fff;
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    cursor: pointer;
}

.button_container span:nth-of-type(2) {
    top: 8px;
}

.button_container span:nth-of-type(3) {
    top: 16px;
}

/* The overlay */
.overlay {
    position: fixed;
    display: block; 
    background: rgba(0,0,0, 1); /* Primary color, can be changed via colors.css */
    top: 0;
    border: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: auto;
}

.overlay.open {
    opacity: .95;
    visibility: visible;
    height: 100%;
}

.overlay.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(1) {
    -webkit-animation-delay: .40s;
    animation-delay: .40s;
}

.overlay.open li:nth-of-type(2n) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay nav {
    position: relative;
    height: 50%;
    top: 50%;
    font-size: 30px;
    font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}

.overlay ul li {
    display: block;
    height: 15%;
    height: calc(100% / 8);
    min-height: 85px;
    position: relative;
    opacity: 0;
}

.overlay ul li a {
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 50%;
}

/* Link underline on hover */
.overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #fff;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .15s;
    transition: .15s;
}


/* 5:   PAGE SECTIONS
/* ---------------------------------------------- */

/*      5.1: Hero unit (Main slider)
/* ---------------------------------------------- */

.intro-carousel {
    width: 100%;
    /*height: 100%;*/
    color: #fff;
    background:#000;
}

.carousel-caption{
    text-shadow: none;
    bottom: 25%;
}

.carousel-caption h1{
    padding: 0;
    margin: 10px 0;
    color: #fff;
} 

.carousel-caption .intro-text{
    padding: 40px;
}

.carousel-caption .btn{
    margin:0;
}

.carousel-control{
    top: 50%;
    width:4%;
    height:7%;
    margin: 0;
    text-shadow: none;
}

.carousel-control.left,
.carousel-control.right{
    background: none;
    z-index: 100;
}

.carousel-control.left:hover,
.carousel-control.right:hover{
    background: rgba(254,82,76, 0.9); /* Primary color, can be changed via colors.css */
}

#parallax-slide{
    background: url(../images/cover-three.jpg) 50% 0 no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid #fff;
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -12.5px;
    border-radius: 16px;
}

.mouse:after {
    content: "";
    position: absolute;
    height: 8px;
    width: 5px;
    background-color: #fff;
    border-radius: 100%;
    left: 50%;
    margin-left: -2.5px;
    top: 5px;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
}


.carousel,
.item,
.active {
    height: 100%;
}

.carousel-inner {
    height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */
.fill {
    width: 100%;
    height: 100%;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}





/*      5.2: About section
/* ---------------------------------------------- */

.about h2{

    font-size: 40px;
    margin: 0 0 40px 0;
    padding: 0;
    color:#F8E514;
    font-weight: 800;
}
.about p {

    text-align: justify;
    color:#999;
}
.about span{

    font-size:  20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding: 0;
    color:#1a1a1a;
}
.about h3{

    font-size:  30px;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding: 0;
    color:#1a1a1a;
}



/*      5.3: Services section ("What we do")
/* ---------------------------------------------- */

.services{
    //background-color: #F9F9F9;
    background: url(../images/whyus_bg.jpg) 50% 0 no-repeat;
     -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;

}

.services h2{
    font-size: 40px;
    margin: 0 0 40px 0;
    padding: 0;
    color:#F8E514;
    font-weight: 800;
}

.services-item{
    background: #f9f9f9;
    box-shadow: 5px 5px 20px #a5a5a5;
    padding: 30px 20px 20px;
    margin: 15px 0;
    position: relative;
    color: #fff;
    overflow: hidden;
    -webkit-transition: background .5s ease-in-out;
    -moz-transition: background .5s ease-in-out;
    transition: background .5s ease-in-out;
}

.services-item h4{
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 25px;
    font-weight: 600;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


.services-item p{
    padding: 0;
    margin: 0;
    color:#999;
    font-size: 20px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


.services-item i{
    color: #F8E514; /* Primary color, can be changed via colors.css */
    padding: 0;
    margin: 0 0 10px 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.services-item:hover{
    background:#1a1a1a; /* Primary color, can be changed via colors.css */
    -webkit-transition: background .2s ease-in-out;
    -moz-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out;
}


.services-item:hover h4{
    color:#fff;
    transform: translate(0,-5px);
    -webkit-transform: translate(0,-5px);
    -o-transform: translate(0,-5px); 
    -moz-transform: translate(0,-5px);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.services-item:hover p{
    color:#fff;
    transform: translate(0,-10px);
    -webkit-transform: translate(0,-10px);
    -o-transform: translate(0,-10px); 
    -moz-transform: translate(0,-10px);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.services-item:hover i{
    color:#fff;
    transform: translate(0,-5px);
    -webkit-transform: translate(0,-5px);
    -o-transform: translate(0,-5px); 
    -moz-transform: translate(0,-5px);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.services-item:hover:before{
    border-color: #fff #fff #a5a5a5 #a5a5a5;
    -webkit-transition: border-color .2s ease-in-out;
    -moz-transition: border-color .2s ease-in-out;
    transition: border-color .2s ease-in-out;
}


/*       5.4: ("Why choose us")
/* ---------------------------------------------- */

.products{
    width: 100%;
    background: #222;
    background: url(../images/process_bg.jpg) 50% 0 no-repeat scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.products-container p{
    color:#fff;
}

.products-container span.icon{
    display: inline-block;  
    padding: 18px;
    margin: 0 0 22px 0;
    min-width: 80px;
    color: #fff;
    background: rgba(254,82,76, 1); /* Primary color, can be changed via colors.css */
    text-align: center;
    border-radius: 50px;
    width: 80px;
    height: 80px;
}


.product-item{
    padding: 10px 0;
}
.product-item h3{
    margin: 0;
    padding: 0 10px;
    font-size: 20px;
}

.product-item p{
    font-size: 16px;
    padding: 0 10px;
}




/*       5.5: Portfolio section
/* ---------------------------------------------- */



.portfolio-item-thumb img {
    max-width: none;
    width: 100%
}
.portfolio-item-content {
    background: #f9f9f9;
    padding: 20px 20px 15px
}
.portfolio-item-content h2 {
    font-size: 32px;
    margin: 0
}
.portfolio-item-content p {
    margin: 0
}
.portfolio li {
    width: 25%;
    float: left;
    list-style: none
}
.portfolio-item {
    position: relative;
    overflow: hidden
}
.portfolio-item img {
    max-width: none;
    width: 101%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.portfolio-item:hover img {
    transform: translateY(-20px);
    opacity: .7;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.portfolio-item a.project-detail,
.portfolio-item a.project-zoom {
    background: #333;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    font-size: 23px;
    height: 58px;
    text-align: center;
    text-decoration: none;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 58px;
    line-height: 67px;
    position: absolute;
    top: 50%;
    margin: -60px 0 0;
    left: 50%
}
.portfolio-item a.project-detail {
    margin-left: -64px;
    margin-right: -64px
}
.portfolio-item:hover a {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1)
}
.portfolio-item-info {
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: -100%;
    right: 0;
    background: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.portfolio-item-info h3 {
    margin: 0
}
.portfolio-item-info h3 small {
    display: block;
    margin: 7px 0 0
}
.portfolio-item:hover .portfolio-item-info {
    bottom: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.portfolio-masonary-column {
    width: 33.3%;
    float: left
}
.portfolio-masonary-item {
    position: relative;
    overflow: hidden
}
.portfolio-masonary-item img {
    width: 100%;
    max-width: none;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease
}
.portfolio-masonary-item:hover img {
    transform: scale(1.12);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease
}
.portfolio-masonary-item .portfolio-masonary-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 40px;
    background: rgba(255, 255, 255, .61);
    font-weight: 400;
    font-size: 32px;
    opacity: 0;
    color: #575757
}
.portfolio-masonary-item .portfolio-masonary-content small {
    display: block;
    font-size: 16px;
    color: #606060;
    font-weight: 400
}
.portfolio-masonary-item:hover .portfolio-masonary-content {
    opacity: 1
}
.portfolio-bottom {
    background: #f5f5f5;
    border-bottom: 2px solid #e9e9e9;
    padding: 40px 0 35px
}
.portfolio-bottom p {
    margin: 0;
    font-size: 24px
}
.portfolio-bottom p a {
    border-bottom: 1px solid #222;
    color: #222
}
.our-work.portfolio-bg {
    background: #f9f9f9
}
.our-work.portfolio-bg .poftfolio-item-info {
    background: #fff
}
#Container-portfolio .mix {
    display: none
}
.portfolio-filter-nav {
    //background: #fff;
    padding: 160px 0 10px;
    //border-bottom: 1px solid #e4e7e8;
    //border-top: 1px solid #e4e7e8;
    text-align: center;
    color:#1a1a1a;
}
.portfolio-filter-nav .filter {
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    padding: 10px 20px 7px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.portfolio-filter-nav .filter.active,
.portfolio-filter-nav .filter:hover {
    color: #F8E514;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.poftfolio-item-thumb {
    position: relative
}
.poftfolio-item-thumb img {
    width: 100%;
    max-width: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.poftfolio-item-thumb:hover img {
    opacity: .6;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.poftfolio-item-thumb a.hover-button-left,
.poftfolio-item-thumb a.hover-button-right {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -29px;
    width: 58px;
    height: 58px;
    border-radius: 100%;
    font-size: 23px;
    color: #fff;
    background: #333;
    line-height: 63px;
    text-align: center;
    transform: scale(0);
    -webkit-transform: scale(0)
}
.poftfolio-item-thumb:hover a.hover-button-left,
.poftfolio-item-thumb:hover a.hover-button-right {
    transform: scale(1);
    -webkit-transform: scale(1)
}
.poftfolio-item-thumb a.hover-button-left {
    margin-left: -70px
}
.poftfolio-item-thumb a.hover-button-right {
    margin-right: -70px
}
.poftfolio-item-info {
    padding: 20px 0 16px
}
.poftfolio-item-info h3 {
    font-size: 28px;
    color: #222
}
.poftfolio-item-info h3 small {
    color: #5b5b5b;
    display: block;
    font-size: 18px;
    padding: 6px 0 0
}
.poftfolio-item-info.text-center {
    padding-left: 20px;
    padding-right: 20px
}
.poftfolio-item-thumb .hover-button-plus {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    color: #333;
    font-size: 40px;
    transform: scale(0);
    -webkit-transform: scale(0);
    background: url(../images/plus-icon.png) center center no-repeat
}
.poftfolio-item-thumb .hover-button-plus i {
    left: 50%;
    margin: -22px;
    position: absolute;
    top: 50%
}
.poftfolio-item-thumb:hover .hover-button-plus {
    transform: scale(1);
    -webkit-transform: scale(1)
}
.portfolio-wide-layout {
    padding: 0 40px
}
.portfolio-column {
    margin: 0 -15px;
    padding: 50px 0 0
}
.portfolio-column li {
    padding: 15px;
    float: left
}
.portfolio-two-column li {
    width: 50%
}
.portfolio-two-column li img {
    max-width: none;
    width: 100%
}
.portfolio-three-column li {
    width: 33.3%
}
.portfolio-four-column li {
    width: 25%
}
.portfolio-five-column li {
    width: 20%
}
.portfolio-four-column .poftfolio-item-info h3 {
    font-size: 24px
}
.portfolio-five-column .poftfolio-item-info h3 {
    font-size: 20px
}
.portfolio-five-column .poftfolio-item-info h3 small {
    font-size: 16px
}
.portfolio-column.no-space {
    margin: 0
}
.portfolio-column.no-space li {
    padding: 0
}






/*       5.6: Contact section
/* ---------------------------------------------- */


.contact-bg{
    width: 100%;
    background: #222;    
    background: url(../images/contact_bg.jpg) 50% 0 no-repeat;
    //background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
.contact h2{

    font-size: 40px;
    font-weight: 800;
    margin: 0 0 40px 0;
    padding: 10px;
    color:#F8E514;
}



/* 06.Icon Boxes
   ---------------------------------------------------------------------------*/
.icon-box {
    overflow: hidden;
}
.icon-box h1,
.icon-box h2,
.icon-box h3,
.icon-box h4,
.icon-box h5,
.icon-box h6 {
    margin: 20px 0 15px 0;
}
.icon-box.icon-lg .icon-content {
    width: 110px;
    height: 110px;
    font-size: 4.5em;
}
.icon-box.icon-lg .icon-content .fa {
    line-height: 110px;
}
.icon-box.icon-md .icon-content {
    width: 95px;
    height: 95px;
    font-size: 4em;
}
.icon-box.icon-md .icon-content .fa {
    line-height: 95px;
}
.icon-box.icon-sm .icon-content {
    width: 75px;
    height: 75px;
    font-size: 3.2em;
}
.icon-box.icon-sm .icon-content .fa {
    line-height: 75px;
}
.icon-box.icon-xs .icon-content {
    width: 45px;
    height: 45px;
    font-size: 1.7em;
}
.icon-box.icon-xs .icon-content .fa {
    line-height: 45px;
}
.icon-box.fixed-section {
    position: absolute;
    top: -40px;
}
.icon-box .icon-content {
    display: block;
    float: left;
    text-align: center;
    max-width: 100%;
    vertical-align: middle;
}
.icon-box.icon-lg .icon-box-content {
    margin: 0 0 0 135px;
}
.icon-box.icon-md .icon-box-content {
    margin: 0 0 0 120px;
}
.icon-box.icon-sm .icon-box-content {
    margin: 0 0 0 100px;
}
.icon-box.icon-xs .icon-box-content {
    margin: 0 0 0 65px;
}
.icon-box.icon-xs .icon-box-content h1,
.icon-box.icon-xs .icon-box-content h2,
.icon-box.icon-xs .icon-box-content h3,
.icon-box.icon-xs .icon-box-content h4,
.icon-box.icon-xs .icon-box-content h5,
.icon-box.icon-xs .icon-box-content h6 {
    margin: 10px 0 15px 0;
}
.icon-box.icon-xs .icon-box-content .info-title {
    margin: 10px 0 2px 0;
}
.icon-box.icon-xs .icon-box-content p {
    margin: 0;
}
.icon-box.icon-horizontal {
    text-align: center;
}
.icon-box.icon-horizontal .icon-content {
    float: none;
    margin: auto;
    display: inline-block;
}
.icon-box.icon-horizontal .icon-box-content {
    margin: 0;
}

.contact-form label{
    color: #ffffff;
}



/* 7. Forms
   ---------------------------------------------------------------------------*/
.form-control {
    box-shadow: none;
    border-radius: 0;
}
.form-control:focus {
    box-shadow: none;
}
.form-control.input-lg {
    resize: none;
    font-size: 0.9em;
}
.form-control.rounded {
    border-radius: 4px;
}
label {
    font-weight: normal;
}
label.error {
    color: #df514c;
    font-size: 0.9em;
    margin: 5px 0 0 0;
}
.form-inline button {
    margin: 0 10px 0 0;
}
.newsletter-form {
    position: relative;
}
.newsletter-form input {
    border: 0;
    height: 72px;
    border-radius: 40px;
}
.newsletter-form input.input-lg {
    font-size: 1.4em;
}
.newsletter-form input:focus {
    box-shadow: none;
}
.newsletter-form button {
    position: absolute;
    right: 24px;
    top: 24px;
    border: 0;
    background: none;
}
.h_search_form {
    overflow: hidden;
    height: 0;
}
.h_search_form .h_search_form_wrapper {
    position: relative;
    padding: 10px 0;
}
.h_search_form .btn {
    background: transparent;
    border: none;
    padding-left: 12px;
    padding-right: 12px;
}
.h_search_form .form-control {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.h_search_form .h_search_close {
    position: absolute;
    right: 0;
    top: 0;
    line-height: 54px;
    z-index: 2;
}
.theme-form-group {
    padding: 2px;
    border-radius: 30px;
    line-height: 42px;
}
.theme-form-group .btn {
    padding-left: 12px;
    padding-right: 12px;
}
.theme-form-group .form-control {
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.theme-form-group .form-control:first-child,
.theme-form-group .input-group-addon:first-child,
.theme-form-group .input-group-btn:first-child > .btn,
.theme-form-group .input-group-btn:first-child > .dropdown-toggle {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}
.theme-form-group .form-control:last-child,
.theme-form-group .input-group-addon:last-child,
.theme-form-group .input-group-btn:last-child > .btn,
.theme-form-group .input-group-btn:last-child > .dropdown-toggle {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}





/* ----------------------------------------------------------------
    8.    Pricing 
-----------------------------------------------------------------*/

.pricing { 
    padding: 100px 0 170px;
    position: relative; 
}

.pricing [class^=col-] {
    padding: 0 ;
    margin-top: 20px;
}


/* Pricing Boxes
-----------------------------------------------------------------*/

.pricing-box {
    position: relative;
    margin-top: 40px;
    border: 1px solid rgba(0,0,0,0.075);
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background-color: #F5F5F5;
}


/* Pricing Boxes - Title
-----------------------------------------------------------------*/

.pricing-title {
    padding: 20px 0 ;
    background-color: #F9F9F9;
    border-radius: 3px 3px 0 0;
    text-shadow: 1px 1px 1px #FFF;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-title h3 {
    margin: 0px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
}

.pricing-text p{
    display: block;
    color: #999;
    font-weight: 300;
    font-size: 18px;
    text-align: justify;
    margin-top: 10px;
    text-transform: uppercase;
}
.pricing-text span{

    font-size:  18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding: 0;
    color:#1a1a1a;
}




/* Pricing Boxes - Price
-----------------------------------------------------------------*/

.pricing-price {
    position: relative;
    //padding: 25px 0 10px;
    color: #00B74C;
    font-weight: 300;
    font-size: 65px;
    line-height: 1;
}

.pricing-price:after {
    content: '';
    position: absolute;
    width: 100px;
    border-top: 1px solid rgba(0,0,0,0.1);
    top: auto;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
}

.pricing-price span {
    display: inline-block;
    vertical-align: top;
    margin: 7px 3px 0 0;
    font-size: 28px;
    font-weight: normal;
}

.pricing-price span.price-tenure {
    vertical-align: baseline;
    font-size: 16px;
    font-weight: normal;
    color: #999;
    margin: 0 0 0 3px;
}


/* Pricing Boxes - Features
-----------------------------------------------------------------*/

.pricing-features { border-bottom: 1px solid rgba(0,0,0,0.075); }

.pricing-features ul {
    margin: 0;
    padding: 15px 0;
    list-style: none;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 14px;
}


/* Pricing Boxes - Action
-----------------------------------------------------------------*/

.pricing-action { padding: 15px 30px; }


/* Pricing Boxes - Best Price
-----------------------------------------------------------------*/

.pricing-box.best-price {
    background-color: #FFF;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    z-index: 10;
}

.pricing-box.best-price { margin: -20px -1px 0 -1px; }

.pricing-box.best-price .pricing-title {
    background-color: #FFF;
    padding: 20px 0;
}

.pricing-box.best-price .pricing-title h3 { font-size: 22px; }

.pricing-box.best-price .pricing-price {
    color: #1ABC9C;
    font-size: 72px;
}


/* Pricing Boxes - Minimal
-----------------------------------------------------------------*/

.pricing-box.pricing-minimal .pricing-price {
    background-color: #FFF;
    border-bottom: 1px solid rgba(0,0,0,0.075);
}

.pricing-box.pricing-minimal .pricing-price:after { display: none; }


/* Pricing Boxes - 5 Columns
-----------------------------------------------------------------*/

.pricing.pricing-5 .pricing-box {
    float: left;
    width: 20%;
    margin-top: 20px;
}

.pricing.pricing-5 .pricing-box.best-price { margin-top: 0; }

.pricing.pricing-5 .pricing-box:nth-child(5) { margin-left: -1px; }

.pricing.pricing-5 .pricing-title h3 { font-size: 18px; }

.pricing.pricing-5 .best-price .pricing-title h3 { font-size: 20px; }


/* Pricing Boxes - Extended
-----------------------------------------------------------------*/

.pricing-box.pricing-extended {
    background-color: #FFF;
    text-align: left;
}

.pricing-box.pricing-extended .pricing-desc-right {
    float: right;
    width: 75%;
    padding: 25px;
}
.pricing-box.pricing-extended .pricing-desc {
    float: left;
    width: 75%;
    padding: 25px;
}

.pricing-box.pricing-extended .pricing-title {
    background-color: transparent;
    padding-top: 0;
    text-align: left;
}

.pricing-box.pricing-extended .pricing-features { border: 0; }

.pricing-box.pricing-extended .pricing-features ul { padding: 15px 0 0 0; }

.pricing-box.pricing-extended .pricing-features li {
    padding: 60px 0;
    font-size: 15px;
    width: 50%;
    float: left;
}

.pricing-box.pricing-extended .pricing-features ul li i {
    position: relative;
    top: 1px;
    width: 16px;
    margin-right: 2px;
}

.pricing-box.pricing-extended .pricing-area-left {
    position: absolute;
    top: 0;
    right: auto;
    left: 0;
    width: 25%;
    height: 100%;
    border-right: 1px solid rgba(0,0,0,0.05);
    background-color: #F9F9F9;
    padding: 30px;
    border-radius: 0 3px 3px 0;
    text-align: center;
}

.pricing-box.pricing-extended .pricing-area-left .pricing-price,
.pricing-box.pricing-extended .pricing-area-left .pricing-action { padding: 10px; }

.pricing-box.pricing-extended .pricing-area-left .pricing-price { padding-bottom: 20px; }

.pricing-box.pricing-extended .pricing-area-left .pricing-price:after { display: none; }

.pricing-box.pricing-extended .pricing-area-left .pricing-price span.price-tenure {
    display: block;
    margin: 10px 0 0 0;
    font-weight: 300;
    line-height: 1.5;
    font-size: 16px;
}



.pricing-box.pricing-extended .pricing-action-area {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 25%;
    height: 100%;
    border-left: 1px solid rgba(0,0,0,0.05);
    background-color: #F9F9F9;
    padding: 30px;
    border-radius: 0 3px 3px 0;
    text-align: center;
}

.pricing-box.pricing-extended .pricing-action-area .pricing-price,
.pricing-box.pricing-extended .pricing-action-area .pricing-action { padding: 10px; }

.pricing-box.pricing-extended .pricing-action-area .pricing-price { padding-bottom: 20px; }

.pricing-box.pricing-extended .pricing-action-area .pricing-price:after { display: none; }

.pricing-box.pricing-extended .pricing-action-area .pricing-price span.price-tenure {
    display: block;
    margin: 10px 0 0 0;
    font-weight: 300;
    line-height: 1.5;
    font-size: 16px;
}


.pricing-box.pricing-extended .pricing-meta {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.table-comparison,
.table-comparison th { text-align: center; }

.table-comparison th:first-child,
.table-comparison td:first-child {
    text-align: left;
    font-weight: bold;
}




/* 9.   Call to action section (payment)
/* ---------------------------------------------- */

.cta-two-section{
    width: 100%;
    margin:0;
    padding: 120px 0;
    background: #3498db; /* Primary color, can be changed via colors.css */
    -webkit-box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
    box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
}

.cta-two-section h3{
    font-size: 25px;
    line-height: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
}

.cta-two-section p {
    font-size: 18px;
    line-height: 27px;
    font-weight: 100;
    margin: 0px;
    color: #fff;
}

.cta-two-section .btn{
    margin: 0;
}



/* 10.  Footer
/* ---------------------------------------------- */

footer {
    background:#222222; /* Dark color/Footer color, can be changed via colors.css */
    color:#fff;
    padding: 80px 0 0 0;
}

footer h2{
    display: inline-block;
    color:#fff;
}

footer h4{
    margin: 0 0 20px 0;
    padding: 0;
    color:#fff;
}

footer p {
    margin: 10px 0;
    font-size: 14px;
}

footer ul.blog-entries,
footer ul.twitter-entries{
    margin: 20px 0 0 0;
    padding: 0;
    list-style: none;
}

footer ul.blog-entries li,
footer ul.twitter-entries li{
    margin: 10px 0;
    line-height: 1.5;
}

footer ul.blog-entries li span,
footer ul.twitter-entries li span{
    display: block;
    color: #6d7579;
}

footer .copynote{
    padding: 20px 0;
    margin-top: 40px;
    background:#1a1a1a; /* Dark color/Footer color, can be changed via colors.css */
}

footer .segment{
    padding-bottom: 20px;
}

footer .social a{
    display: inline-block;
    padding: 6px 20px;
}

.scroll-top {
    display: none;
    position: fixed;
    bottom: 4%;
    right: 1%;
    z-index: 100;
}

.scroll-top a:link,
.scroll-top a:visited {
    display: inline-block;
    padding: 5px 15px;
    color: #fff;
    //border: 1px solid rgba(254,82,76, 1);
    background:#F8E514; /* Primary color, can be changed via colors.css */
    font-size: 30px;
}

.scroll-top a:hover {
    //border: 1px solid #fff; /* Hover border color, can be changed via colors.css */
    outline: 0;
    color: #fff;
    background: #000; /* Hover color, can be changed via colors.css */
}






/* 11.  CSS3 Animations
/* ---------------------------------------------- */

/* Hero unit mouse animation */

@-webkit-keyframes rotateplane { 
    0% {
        -webkit-transform: translateY(-2px)
    }

    100% {
        -webkit-transform: translateY(7px)
    }
}

@keyframes rotateplane { 
    0% {
        transform: translateY(-2px);
        -webkit-transform: translateY(-2px);
    }

    100% {
        transform: translateY(7px);
        -webkit-transform: translateY(7px);
    }
}


/* Navigation link animation */

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}


/* 12:  Buttons
/* ---------------------------------------------- */

.btn {
    border-radius: 0;
    border: 0;
    padding: 10px 30px;
    text-transform: none;
    font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 100;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    color: #fff;
    border: 1px solid rgba(254,82,76, 1); /* Primary color, can be changed via colors.css */
    background: rgba(254,82,76, 1); /* Primary color, can be changed via colors.css */
}


.btn-default:hover,
.btn-default:focus,
.btn-overcolor:hover,
.btn-overcolor:focus {
    border: 1px solid #fff; /* Hover border color, can be changed via colors.css */
    outline: 0;
    color: #fff;
    background: #df514c; /* Hover color, can be changed via colors.css */
}


.btn-outlined {
    font-weight: bold;
    border: 1px solid #1a1a1a; /* Secondary color, can be changed via colors.cs */
    color: #fff;
    background-color: #1a1a1a; /* Secondary color, can be changed via colors.cs */
}


.btn-outlined:hover,
.btn-outlined:focus{
    border: 1px solid #1a1a1a; /* Secondary color, can be changed via colors.cs */
    color: #1a1a1a; /* Secondary color, can be changed via colors.cs */
    background: transparent;
}

.btn-overcolor{
    border: 1px solid rgba(255, 255, 255, 1);
    color: #fff;
    background: rgba(254,82,76, 1); /* Primary color, can be changed via colors.css */
}


.btn-lg{
    margin: 15px 0;
}

.circle {
    padding: 7px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px; 
}

.squared {
    padding: 10px;
    width: 60px;
    height: 60px; 
}



/* 13:  MEDIA QUERIES START
/* ---------------------------------------------- */


/* Media Queries [min-width:767px]
/* ---------------------------------------------- */


/* Media Queries [max-width:767px]
/* ---------------------------------------------- */

@media(max-width:767px) {

    .about,
    .cta-two-section{
        text-align: center;
    }
    .carousel-caption {
        top: 30%;
        margin: 0;

    }

    .carousel-caption h1 {
        font-size: 25px;
    }

    .carousel-caption .intro-text {
        font-size: 20px;
        padding: 0px;
    }

    .mouse{
        display: none;
    }

    .circle {
        padding: 0px;
        font-size: 18px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }

    .navbar-custom a{
        color: rgba(254,82,76, 1);
        color: #fff;
    }

    .video-section{
        background: url(../images/youtube-video-cover.jpg) no-repeat bottom center scroll;
    }


    .button_container span,
    .button_container span {
        background: #F8E514 !important;
    }

    .button_container.active span.top,
    .button_container.active span.bottom{
        background:#F8E514;
    }
    .btn {
        font-size: 20px;

    }


    .cta-two-section .btn{
        margin: 20px 0 0 0;
    }

    .scroll-top {
        bottom: 4%;
        right: 3%;
    }

    .scroll-top a:link,
    .scroll-top a:visited {
        padding:1px 10px;
        font-size: 25px;
    }

    .pricing-box.best-price { margin-top: 0; }

    .pricing.pricing-5 .pricing-box {
        float: none;
        width: 100%;
    }

    .pricing-box.pricing-extended .pricing-features li {
        width: auto;
        float: none;
    }


}


/* Media Queries [min-width:768px]
/* ---------------------------------------------- */

@media(min-width:768px) {
    .about{
        text-align: center;
    }


    p {
        margin: 0 0 35px;
        font-size: 18px;
        line-height: 1.6;
    }

    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: 0 0;
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out;
    }
    .navbar-custom.top-nav-collapse {
        padding: 10px 0px ;
        background: #1a1a1a; /* Primary color, can be changed via colors.css */
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out;
        -webkit-box-shadow: 0 0 10px 2px rgba(0,0,0,.1);
        box-shadow: 0 0 10px 2px rgba(0,0,0,.1);

    }

    .navbar-custom.top-nav-collapse .navbar-brand{
        color: #F8E514;
    }

    .navbar-custom.top-nav-collapse .button_container span{
        background: #F8E514;
    }

    .navbar-custom.top-nav-collapse .button_container.active span.top,
    .navbar-custom.top-nav-collapse .button_container.active span.bottom{
        background:#F8E514;
    }
}


/* Media Queries [max-device-width:800px] - Fix for HTML5 videos on mobile devices
/* ---------------------------------------------- */
@media screen and (max-device-width: 800px) {
    /*body {
        background: url(../images/youtube-video-cover.jpg) #000 no-repeat center center fixed;
    }*/
    .html5-video-container{
        background: url(../images/typing-on-mac.jpg) no-repeat bottom center scroll;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
        background-attachment: fixed;
    }
    #bgvid{
        display: none;
    }

    pricing [class^=col-md-] .pricing-box.best-price { margin-top: 0; }

    .pricing.pricing-5 .pricing-box.best-price { margin-top: 20px; }

    .device-sm .pricing.pricing-5 .pricing-title h3,
    .device-sm .pricing.pricing-5 .best-price .pricing-title h3 { font-size: 14px; }

    .device-sm .pricing.pricing-5 .pricing-title span { font-size: 12px; }

    .device-sm .pricing.pricing-5 .pricing-price { font-size: 38px; }

    .device-sm .pricing.pricing-5 .pricing-price span { font-size: 20px; }

    .device-sm .pricing.pricing-5 .pricing-price span.price-tenure { font-size: 12px; }

    .device-sm .pricing.pricing-5 .pricing-box.best-price .pricing-title { padding: 15px 0; }


    .pricing-box.pricing-extended .pricing-desc,    
    .pricing-box.pricing-extended .pricing-action-area {
        position: relative;
        float: none;
        width: auto;
        padding: 25px;
    }

    .pricing-box.pricing-extended .pricing-action-area {
        height: auto;
        border-left: 0;
        border-top: 1px solid rgba(0,0,0,0.05);
        border-radius: 0 0 3px 3px;
    }

    .pricing-box.pricing-extended .pricing-desc-right,
    .pricing-box.pricing-extended .pricing-area-left {
        position: relative;
        float: none;
        width: auto;
        padding: 25px;
    }

    .pricing-box.pricing-extended .pricing-area-left {
        height: auto;
        border-left: 0;
        border-top: 1px solid rgba(0,0,0,0.05);
        border-radius: 0 0 3px 3px;
    }
}


/* Media Queries [min-width:992px]
/* ---------------------------------------------- */
@media screen and (min-width: 992px) {
    .about{
        text-align: left;
    }

    .video-controls,
    .html5-video-controls{
        display: block;
    }

    .carousel-control{
        top: 48%;
        margin:0%;
    }

    .products{
        text-align: left;
    }
}

/* Media Queries [max-width:1199px]
/* ---------------------------------------------- */

@media(max-width:1199px) {
    .navbar-custom .button_container span {
        background: #F8E514;
    }

}

/* Debug styles (remove before exporting for production)
/* ---------------------------------------------- */

.debug{
    border:1px solid #f00;
}




