/* --- Hero --- */

#hero {
    width: 100%;
    min-width: 960px;
    height: 400px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out; 
    }
    
    @media (min-width : 1200px) { #hero { min-width: auto; height: 500px; }} 
   
    
.slide {
    width: 100%;
    min-width: 960px;
    height: 400px;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative; 
    display: none;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out; 
    }  
    
    .ie8 .slide  { background: transparent; }
    
    @media (min-width : 1200px) { .slide { min-width: auto; height: 500px; background-size: auto; }}  

.slide a { 
    margin: auto;
    width: 100%;
    height: 344px;
    position: relative;
    display: block; 
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out; 
    }
  
    @media (min-width : 1200px) { .slide a { width: 1200px; height: 500px;  }} 


    
.slide a img { display: none; }

#hero .text {
    background: rgba(0,0,0,.5);
    width: 320px;
    padding: 25px 30px 20px 30px;
    font: 22px/26px 'Univers LT W01 55 Roman',Arial, Helvetica, sans-serif;
    text-align: center;
    position: absolute;
    top: 75px;
    right: 75px;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition:    background .3s ease-in-out;
    -o-transition:      background .3s ease-in-out;
    -ms-transition:     background .3s ease-in-out;
    transition:         background .3s ease-in-out; 
    } 
    
    @media (min-width : 1200px) { #hero .text { width: 420px; top: 100px; right: 0; padding: 36px 40px; }}
    

#hero a .text:hover { background: rgba(0,0,0,.75); }

.ie7 #hero .text,
.ie7 #hero .text:hover,
.ie7 #hero .text:active,
.ie8 #hero .text,
.ie8 #hero .text:hover,
.ie8 #hero .text:active { background: #000000 !important; }
    
#hero a h1 {
    color: white;
    font: 32px/30px 'Univers LT W01 45 Light',Arial, Helvetica, sans-serif;
    margin: 0 0 7px;	
    }
    
    @media (min-width : 1200px) { #hero a h1 { font: 36px/34px 'Univers LT W01 45 Light',Arial, Helvetica, sans-serif; }} 

#hero a p {
    color: #bbe4ff;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0;
    }  
    
    @media (min-width : 1200px) { #hero a p { font-size: 19px; }} 


#hero a .button {
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'UniversLTW01-67BoldCn','Arial','Helvetica',sans-serif;
    color: white;
    background: #861f38;
    line-height: 1;
    margin: 15px auto 5px;
    display: inline-block;
    padding: 10px 15px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out; 
    }
    
    #hero a .button:hover {  background: #b51239; text-shadow: 1px 1px 1px rgba(3,59,91,1); padding: 15px 20px; margin: 10px auto 0px;}
    
    #hero a .button:active { background: #69051d; }

    @media (min-width : 1200px) { #hero a .button { font-size: 16px; } } 




/* --- Hiding title for image popup slide content type --- */

#home .lb-data { display: none; }





/* --- Slide Tabs --- */

#hero ul { display: none; }



/* --- Back/Next Buttons --- */

#hero .control {
    width: 35px;
    height: 100px; 
    position: absolute;
    top: 139.5px; 
    font-size: 36px;
    line-height: 100px;
    color: rgba(0,0,0,.4); 
    background: rgba(176,179,180,1);
    display: block;    
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out; }
    
    @media (min-width : 1200px) { #hero .control { top: 182.5px; }}
    
    .ie8 #hero .control { background: #b0b3b4; color: #777a7c; width: 45px;}
    

#hero .control:hover { background: rgba(255,255,255,1); color: rgba(0,0,0,1); }

    .ie8 #hero .control:hover { background: white; color: black; }
    

#hero .control:active { background: rgba(176,179,180,1); color: rgba(255,255,255,.4); }

    .ie8 #hero .control:active { background: #b0b3b4; color: white; }
    

#hero .control.back { 
    left: 0; 
    text-align: right; 
    padding-right: 15px; 
    -moz-border-radius:    0 50px 50px 0;
    -webkit-border-radius: 0 50px 50px 0;
    border-radius:         0 50px 50px 0;
    }
   
#hero .control.next { 
    right: 0; 
    text-align: left; 
    padding-left: 15px;
    -moz-border-radius:    50px 0 0 50px;
    -webkit-border-radius: 50px 0 0 50px;
    border-radius:         50px 0 0 50px;
    }
  




/* --------------- Actions --------------- */

#actions,
#mission,
#mailing-list {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
    }
    

#actions {
    height: 145px;
    width: 100%;
    min-width: 960px;
    position: relative;
    }
    
    @media (min-width : 1200px) { #actions { min-width: auto; max-width: 1400px; }} 
    
    
#actions h2 {
    color: white;
    font-size: 21px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    }
    
    @media (min-width : 1200px) { #actions h2 { font-size: 24px; }}  
    
    
    
    
/* --------------- Mission --------------- */   

#mission {
    background: #215176;
    position: absolute;
    top: 0;
    left: 0;
    height: 95px;
    width: 50%;
    padding: 25px 7.5% 25px 2.5%;
    text-align: left;
    }
    
    @media (min-width : 1400px) { #mission {height: 100px; width: 44.5%; padding: 22.5px 8% 22.5px 7.5%; }} 
    
#mission p {
    color: #d9e8f4;
    font-size: 14px;
    line-height: 17px;
    margin: 0;
    }
    
    @media (min-width : 1200px) { #mission p { font-size: 16px; line-height: 19px; }} 
    
    
    
    
/* --------------- Email Signup --------------- */    

#mailing-list {
    background: #457b9f;
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
    width: 27.5%;
    padding: 32.5px 2% 32.5px 10.5%;
    text-align: left;
    z-index: 999;
    overflow: hidden;
    }  
    
    @media (min-width : 1400px) { #mailing-list {height: 80px; width: 27%; padding: 32.5px 7% 32.5px 6%; }} 



.star {
    position: absolute;
    top: 0;
    left: 53.5%;
    z-index: 1000;
    }





    

