/*!
 * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

body {
    width: 100%;
    height: 100%;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #fff;
    padding: 0;
    font-size: 14px;
    background-color: #000;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

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

@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
    }
}

a {
    color: #42dca3;
    -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: #1d9b6c;
}

.light {
    font-weight: 400;
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(201,90,0,.3);
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: #000;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
}

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

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

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

.navbar-custom a {
    color: #fff;
}

.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(201,90,0,.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(201,90,0,.7);
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}
.navLogo{
    width: 30px;
    height: 42px;
    margin-top: 5px;
    margin-right: 5px;
    float: left;
    background: url(../img/navLogo.png) no-repeat; 
}
@media(min-width:768px) {
    .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: 0;
        border-bottom: 1px solid rgba(201,90,0,.75);
        background: #000;
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    /*background: url(../img/intro-bg.png) no-repeat bottom center scroll;*/
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
}

.intro .intro-body .brand-heading {
    font-size: 40px;
}

.intro .intro-body .intro-text {
    font-size: 18px;
}

::selection { background:#B9B9B9; color:#000000; }
::-moz-selection { background:#B9B9B9; color:#000000; }
::-webkit-selection { background:#B9B9B9; color:#000000; }

@media(min-width:768px) {
    .intro-body{
        display: none;
    }
    .intro {
        height: 100%;
        padding: 0;
    }

    .intro .intro-body .brand-heading {
        font-size: 100px;
    }

    .intro .intro-body .intro-text {
        font-size: 26px;
    }
}

.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 100%!important;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}
.btn-info {
    color: #fff;
    background-color: #8D3F00;
    border-color: #8D3F00;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {    
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {    
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

.content-section {
    padding-top: 100px;


.download-section {
    width: 100%;
    padding: 50px 0;
    color: #fff;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: #000;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}


@media(min-width:767px) {
    .content-section {
        padding-top: 100px;
    }

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

.btn {
    border-radius: 5;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn-default {
    border: 1px solid #42dca3;
    color: #42dca3;
    background-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
    border: 1px solid #42dca3;
    outline: 0;
    color: #000;
    background-color: #42dca3;
}

ul.banner-social-buttons {
    margin-top: 0;
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px;
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
    }

    ul.banner-social-buttons li:last-child {
        margin-bottom: 0;
    }
}


footer {
    padding: 50px 0;
    background-color: blue;
}

footer p {
    margin: 0;
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: rgba(255,255,255,.2);
    margin: 0;
}
/*Shapetrix Entertainment LLC Custom settings*/
}

.aboutPhoto{
    float: right;
    margin-left: 10px;
    margin-bottom: 10px; 
    height:253px;
    width:180px;
    border: 5px solid white;
    background: url(../img/jeremyGugel.jpg) no-repeat;
}
.custom-margin{
    margin: 50px;
}

.aboutTextSpacing{
    line-height: 0.05;
}
.font-size{
    font-size: 16px;
    line-height: 1.1;
    margin: 0 0 15px;
}
::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255,255,255,.2);
}
.sectionBlock{
    background-color: #c2c2c2;
    width: auto;
    height: 250px;
}
.form-control:focus{   
    border-color: rgba(201, 90, 0, 0.8);
    box-shadow: 0 10px 10px rgba(201, 90, 0, 0.075) inset, 0 0 8px rgba(201, 90, 0, 0.6);
    outline: 0 none;
}
.form-control {
    color:#ffffff;
    background-color: #404040;
    border: 2px solid #252525;
}

.input-group-addon{
    background-color: #393939;
    border: none;
    color: #37c42c;
}
.custom.footer{
    width: auto;
    height: 600px;
    color: red;
    background-color: green;
}
.shopsquares{
    padding: 4px;
    width: 75%;
    height: auto;
    border:2px solid #c2c2c2;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin:15px;
}

.shopSquaresHeader{
    padding: 0px;
    width: 100%;
    height: 80px;
    margin-bottom: 5px;
    overflow: hidden;
    border:1px solid white;
    border-radius: 4px;
    position: relative;
}
.lisaCd{
    position: relative;
    margin-top: -70px;
}

#calendar {
    max-width: 900px;
    margin: 0 auto;
}

#loading {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
}

.input-group-addon {
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgb(201, 90, 0);
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn-info:hover{
    border: 1px solid #42dca3;
    outline: 0;
    color: #fff;
    border-color: rgba(201, 90, 0, 0.8);
    box-shadow: 0 10px 10px rgba(201, 90, 0, 0.075) inset, 0 0 8px rgba(201, 90, 0, 0.6);
    background-color: rgb(201, 90, 0);
}
.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 10px;
    height: 10px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}
.glyphicon {
    position: relative;
    top: 1px;
    padding-right: 12px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ourvision{
    padding:14px;
    height:200px;
}
.btn-custom {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
    padding: 6px 32px;
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.btn-custom:hover {
    color: #fff;
    background-color: #9b4a18;
    border-color: #662d0b;
}
.custom-padding{
    padding-top: 25px;
}

.custom-absolute{
    position: absolute;
    bottom: 15px;
    right: 15px;
}
.custom-p{
    margin: 0px;
}
.custom-h3{
    margin-bottom: 10px;
}
.text-left{
    text-align: left;
    padding-left: 10px;
}
.custom-bottom-pad{
    padding-bottom: 3px;
}
textarea.form-control{
    height: 150px;
}
video#bgvid{
    max-width: 105%;
    max-height: 100%;
    width: auto;
    height: auto;
    background: url(../img/introVid_background.png) no-repeat;
    background-size: cover;
}
.navbar-custom .nav li.active a:hover {
    color: #fff;
}
.btn-facebook {
    min-width: 50px;
    min-height: 50px;
    margin-bottom: 5px;
    color: #fff;
    background-color: #3b5998;
    border-color: rgba(0,0,0,0.2);
}
.btn-twitter {
    min-width: 50px;
    min-height: 50px;
    margin-bottom: 5px;
    color: #fff;
    background-color: #2ba9e1;
    border-color: rgba(0,0,0,0.2);
}
.btn-youtube {
    min-width: 50px;
    min-height: 50px;
    color: #fff;
    background-color: #cb2027;
    border-color: rgba(0,0,0,0.2);
}
.btn-youtube:hover{
    color: #fff;
    background-color: #6F1318;
}
.btn-facebook:hover{
    color: #fff;
    background-color: #1F3E7E;
}
.btn-twitter:hover{
    color: #fff;
    background-color: #1576A1;
}
.text-align-md{
    vertical-align: middle;
}
.font-size-lg{
font-size: 25px;
}
.font-size-md{
font-size: 15px;
}
.font-size-sm{
font-size: 5px;
}
@media(max-width:400px) {
   .intro-body{
    display: none;
   }

 

    .navLogo{
        display: none;
    }
}

.social-buttons{
    display: block;
    position: fixed;
    top:100px; 
    left:25px;
    z-index:3;
}

#social-sidebar {
    left: 0;
    position: fixed;
    top: 30%;
}

#social-sidebar li:first-child a { border-top-right-radius: 5px; }
#social-sidebar li:last-child a { border-bottom-right-radius: 5px; }

#social-sidebar a {
    background: rgba(25, 25, 25, .7);
    color: #fff;
    text-decoration: none;
    display: block;
    height: 50px;
    width: 50px;  
    font-size: 24px;
    line-height: 50px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

#social-sidebar a:hover span {
    left: 120%;
    opacity: 1;
}

#social-sidebar a span {
    font: 12px "Open Sans", sans-serif;
    text-transform: uppercase;
    border-radius: 3px;
    line-height: 24px;
    left: -100%;
    margin-top: -16px;
    opacity: 0;
    padding: 4px 8px;
    position: absolute;
    transition: opacity .3s, left .4s;
    top: 50%;
    z-index: -1;
}

#social-sidebar a span:before {
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    left: -4px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
}

#social-sidebar a[class*="twitter"]:hover,
#social-sidebar a[class*="twitter"] span,
#social-sidebar a[class*="twitter"] span:before {background: #00aced;}

#social-sidebar a[class*="facebook"]:hover,
#social-sidebar a[class*="facebook"] span,
#social-sidebar a[class*="facebook"] span:before {background: #3B5998;}

#social-sidebar a[class*="youtube"]:hover,
#social-sidebar a[class*="youtube"] span,
#social-sidebar a[class*="youtube"] span:before {background: #6F1318;}

#social-sidebar a[class*="envelope"]:hover,
#social-sidebar a[class*="envelope"] span,
#social-sidebar a[class*="envelope"] span:before {background: #ce4703;}

#social-footbar {
    margin:10px;
}

#social-footbar li a { border-radius: 5px; float: right; margin-right: 10px;
}


#social-footbar a {
    background: rgba(25, 25, 25, .7);
    color: #fff;
    text-decoration: none;
    display: inline-block;
    height: 50px;
    width: 50px;  
    font-size: 24px;
    line-height: 50px;
    position: relative;
    text-align: center;
    cursor: pointer;
}

#social-footbar a:hover span {
    left: 120%;
    opacity: 1;
}

#social-footbar a span {
    font: 12px "Open Sans", sans-serif;
    text-transform: uppercase;
    border-radius: 3px;
    line-height: 24px;
    left: -100%;
    margin-top: -16px;
    opacity: 0;
    padding: 4px 8px;
    position: absolute;
    transition: opacity .3s, left .4s;
    top: 50%;
    z-index: -1;
}
#social-footbar a span:before {
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
    left: -4px;
    margin-top: -4px;
    transform: rotate(45deg);
}
#social-footbar a[class*="twitter"]:hover,
#social-footbar a[class*="twitter"] span,
#social-footbar a[class*="twitter"] span:before {background: #00aced;}

#social-footbar a[class*="facebook"]:hover,
#social-footbar a[class*="facebook"] span,
#social-footbar a[class*="facebook"] span:before {background: #3B5998;}

#social-footbar a[class*="youtube"]:hover,
#social-footbar a[class*="youtube"] span,
#social-footbar a[class*="youtube"] span:before {background: #6F1318;}

#social-footbar a[class*="envelope"]:hover,
#social-footbar a[class*="envelope"] span,
#social-footbar a[class*="envelope"] span:before {background: #ce4703;}


ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#social-sidebar {
    left: 0;
    margin-top: -75px; /* (li * a:width) / -2 */
    position: fixed;
    top: 50%;
}
#social-sidebar a span {
    border-radius: 3px;
    line-height: 24px;
    left: -100%;
    margin-top: -16px;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    padding: 4px 8px;
    position: absolute;
    -webkit-transition: opacity .3s, left .4s;
    -moz-transition: opacity .3s, left .4s;
    -ms-transition: opacity .3s, left .4s;
    -o-transition: opacity .3s, left .4s;
    transition: opacity .3s, left .4s;
    top: 50%;
    white-space: nowrap;
    z-index: -1;
}
#social-sidebar a span:before {
    content: "";
    display: block;
    height: 8px;
    left: -4px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 8px;
    z-index: -2;
}
.font-size-sm {
    padding-top: 10px;
    font-size: 12px;
    line-height: 1.35;
    text-transform: uppercase;
    width: 75%;
}
.text-summery-box{
    min-height:100px; 
}
.col-sm-offset-1{
    margin-left: 8.33333%
}
@media(max-width:375px) {
   #bgvid{
    display: none;
}
.content-section{
    padding-top: 50px;
}
   .mobileIntroLogo{
    height: 425px;
    max-width: 400px;
    min-width: 378px;
    margin: 0px;
    background: url(../img/mobileIntroLogo.jpg) no-repeat bottom center;
    background-color: #000;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
.intro{
    padding:50px 0;
}
   .aboutPhoto{
    float: none;
    margin:0px auto 10px auto;  
 }
    .scale-text{
    font-size:5vmin;
 }
    #social-sidebar{
        display: none;
}
    .custom-margin{
    margin: 50px 0px 0px 0px;
}

    .col-lg-12{
        padding: 0px;
    }
    .custom-hidden{
        display: none;
        clear: both;
    }
    .testVideoIcon{
        display: normal;
    }
     .videoIcon {
        height: auto;
        width: 100%;
        content: url(../img/videoIcon.jpg);
        
    }
}
.list{
    display: inline-block;
}
@media(max-width:769px){
    .col-sm-offset-1{
    margin-left: 0%
}

}
@media(min-width:400px){


#social-footbar{
        display: none;
    }
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 320s ease-in-out left;
       -o-transition: 320s ease-in-out left;
          transition: 320s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
.carousel-inner{

    transition-duration:;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 6s ease-in-out;
         -o-transition:      -o-transform 6s ease-in-out;
            transition:         transform 6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000;
            perspective: 1000;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}


