/* CSS for jQuery Orbit Plugin 1.2.3
 * www.ZURB.com/playground
 * Copyright 2010, ZURB
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 
 
 
/* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY
   ================================================== */
#featured { 
    position: absolute;
    width: 100% !important;
    height: 60vh;
    min-height: 650px;
    min-width:1250px;
    background: transparent;
    overflow: hidden;
}
#featured>img,  
#featured>div,
#featured>a { display: none; }



/* CONTAINER
   ================================================== */

div.orbit-wrapper {
    width: 100% !important; 
    height: 550px;
    position: relative; }

div.orbit {
    width: 1px;
    height: 1px;
    position: relative;
    overflow: hidden }

div.orbit>img {
    position: absolute;
    top: 0;
    right: 0;
    display: none; }
div.orbit>a {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 0; 
    display: none; }

.orbit>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

/* Note: If your slider only uses content or anchors, you're going to want to put the width and height declarations on the ".orbit>div" and "div.orbit>a" tags in addition to just the .orbit-wrapper */


/* TIMER
   ================================================== */

div.timer {
    width: 40px;
    height: 40px;
    overflow: hidden;
    position: absolute;
    top: 10px;
    right: 10px;
    opacity: .6;
    cursor: pointer;
    z-index: 1001; }

/* span.rotator {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: -20px;
    background: url(../orbit/rotator-black.png) no-repeat;
    z-index: 3; } 

span.mask {
    display: block;
    width: 20px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    overflow: hidden; }

span.rotator.move {
    left: 0 }

span.mask.move {
    width: 40px;
    left: 0;
    background: url(../orbit/timer-black.png) repeat 0 0; }

span.pause {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../orbit/pause-black.png) no-repeat;
    z-index: 4;
    opacity: 0; }

span.pause.active {
    background: url(../orbit/pause-black.png) no-repeat 0 -40px }

div.timer:hover span.pause,
span.pause.active {
    opacity: 1 } */


/* CAPTIONS
   ================================================== */

.orbit-caption {
    font: 400 1em/1em 'Roboto Condensed', sans-serif;
    display: none;
}

.orbit-wrapper .orbit-caption {
    position: absolute;
    font: 400 2.5em/1em 'Roboto Condensed', sans-serif;
    top: 150px;
    z-index: 99;
    color: #00334d;
    width: 100%;
    /*text-align: center;*/
}

.orbit-wrapper .orbit-caption .title-caption b {
    font-weight: 400;
    letter-spacing: 2px;
    font: 1.2em/1em 'Roboto Condensed', sans-serif;
    color: #00334d;
    line-height: 63px;
    
}



.rightstuff {
    float: right;
    margin-right: 28px;
    width: 50%;
    min-width: 435px;
    /*text-align: right;*/
}

.rightstuff b {
    float:right;
    
}


.leftstuff {
    float: left;
    margin-left: 28px;
    width: 50%;
    min-width: 435px;
    text-align: left;
}

.orbit-wrapper .orbit-caption p {
    font: 300 0.5em/1.4em 'Roboto Condensed', sans-serif;
    text-transform: none;
    padding-bottom: 10px;
}

.slidelink {
    font: 400 0.4em/1.4em 'Roboto Condensed', sans-serif;
    width: 400px;
    border-radius: 50px;
    overflow: hidden;
    height: auto;
}

.right {
    float: right;
}

.slidelink a {
    display: inline-block;
    padding: 10px;
    width: 180px;
    text-align: center;
    background: #00334d;
    color: #fff;
    text-decoration: none;
}

.slidelink a::after {
    content: "\f105";
    font-family: FontAwesome;
    opacity: 0;
    -webkit-transition: all 0.45s cubic-bezier(.62,0,.37,1.42);
    -moz-transition: all 0.45s cubic-bezier(.62,0,.37,1.42);
    -ms-transition: all 0.45s cubic-bezier(.62,0,.37,1.42);
    -o-transition: all 0.45s cubic-bezier(.62,0,.37,1.42);
    transition: all 0.45s cubic-bezier(.62,0,.37,1.42);
}

.slidelink a:hover::after {
    opacity: 1;
    padding-left:7px; 
}

.slidelink a.alt {
    background: #00b7ff;
}


/* DIRECTIONAL NAV
   ================================================== */

 div.slider-nav {
    display: block }

div.slider-nav span {
    width: 78px;
    height: 100px;
    text-indent: -9999px;
    position: absolute;
    z-index: 1000;
    top: 250px;
    color: transparent;
    margin-top: -60px;
    cursor: pointer; }

div.slider-nav span.right {
    background: url(../orbit/right-arrow.png) no-repeat;
    right: 0;
    margin-right: 20px;
    opacity: 0.9;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }

div.slider-nav span.right:hover {
    opacity: 1;
    -moz-transform: translateX(2px);
    -webkit-transform: translateX(2px);
    -o-transform: translateX(2px);
    -ms-transform: translateX(2px);
    transform: translateX(2px);}

div.slider-nav span.left {
    background: url(../orbit/left-arrow.png) no-repeat;
    left: 0; 
    margin-left:20px;
    opacity: 0.9;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;} 

    div.slider-nav span.left:hover {
        opacity: 1;
     -moz-transform: translateX(-2px);
    -webkit-transform: translateX(-2px);
    -o-transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    transform: translateX(-2px);}

/* BULLET NAV
   ================================================== */


.orbit-bullets {
    position: absolute;
    z-index: +99;
    list-style: none;
    top:400px;
    left: 50%;
    margin-left: -140px;
    padding: 0; }

.orbit-bullets li {
    float: left;
    margin-left: 15px;
    cursor: pointer;
    color: #999;
    text-indent: -9999px;
    background:  #fff;
    width: 50px;
    height: 10px;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: -2px 2px 0px rgba(0,0,0,0.4);
}

.orbit-bullets li.active {
    color: #222;
    background:  #00334d;
    background-position: -8px 0;
}
    
.orbit-bullets li.has-thumb {
    background: none;
    width: 100px;
    height: 75px; }

.orbit-bullets li.active.has-thumb {
    background-position: 0 0;
    border-top: 2px solid #000; }