/* -----------------------------------------------
 *  Betamobil GmbH
 *  
 *  
 *  Table of Content
 *  ----------------
 *      1. "Cuprum" Webfont
 *      2. General
 *      3. Navigation bar
 *      4. Slider
 *      5. Header
 *      6. Content
 *      7. Footer
 */
 

 /* -----------------------------------------------
  *  1. Webfont Cuprum
  * ----------------------------------------------- */
 @font-face {
     font-family: 'Cuprum', sans-serif;
     font-style: normal;
     font-weight: 700;
     src: local('Cuprum'), url(http://fonts.googleapis.com/css?family=Cuprum:700' rel='stylesheet' type='text/css);
 }

 @font-face {
     font-family: 'Cuprum', sans-serif;
     font-style: normal;
     font-weight: 400;
     src: local('Cuprum'), url(http://fonts.googleapis.com/css?family=Cuprum:400' rel='stylesheet' type='text/css);
 } 
 
/* -----------------------------------------------
 *  2. Generals
 * ----------------------------------------------- */

body{
    font-size: 90%;
    line-height: 20px;
    font-family: 'Cuprum', sans-serif;
    font-weight: 400;
    color: #3e3e3e;
    background: scroll center top #27363a url(../img/regular/bg-1.png) repeat;
}

li {    
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Cuprum', sans-serif;
}

h1{
    font-size: 115%;
    color: #ed1704;
    margin-bottom: 10px;
}

h2{
    font-size: 115%;
    color: #000000;
    margin-bottom: 10px;
}

/* Image Fade */
.image-fade:hover{    
    opacity: 0.6;
    filter:alpha(opacity=70);  /* IE */
    z-index: 5;
    border: none;
}

.image-fade {    
    opacity: 1;
    transition: opacity 0.4s ease-in-out 0.3s;
    -moz-transition: opacity 0.6s ease-in-out 0.1s;
    -webkit-transition: opacity 0.4s ease-in-out 0.3s;
    -o-transition: opacity 0.4s ease-in-out 0.3s;
    border: none;
}

/* -----------------------------------------------
 *  3. Navigation bar
 * ----------------------------------------------- */

/* Li für Smartphones */
.responsive{
    display: none;
}

.main-navi-box .toogle-navi, .main-navi-box button{
    display: none;
}

.main-navi{
    margin: 78px 0 0 20px;
    width: 86.4583333333%;/* 830px/960px */
    float: left;   
}

.main-navi .main-navi-box{
    display: block;
    width: 15.58%; /* 129px/830px */
    height: 43px;
    float: left;
    margin-left: 9px;
    background: url(../img/regular/bg-infolayer.png) repeat-x;  
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;   
} 

.main-navi .main-navi-box:hover, .main-navi .activ{
    height: 53px;
    margin-top: -10px;
    background: #ed1704;    /* farbe einzele men� boxen bei mouse over */
    -webkit-transition: all 0.218s ease-in 0s;
    -moz-transition: all 0.218s ease-out 0s;
    -o-transition: all 0.218s ease-in 0s;
    transition: all 0.218s ease-in 0s; 
}

.ie8 .main-navi .main-navi-box:hover{
    margin-top: 0;
    height: 43px;
}

.main-navi .main-navi-box a{
    height: 45px;
    float: left;    
    text-align: center;    
    margin: 5px 0 0 10px;    
    font-size: 115%;
}

.main-navi a.navi-margin{
    margin: 7px 0 0 45px;
}

.main-navi a.navi-margin-1{
    margin: 7px 0 0 37px;
}

.main-navi a.navi-margin-2{
    margin: 7px 0 0 23px;
}

.main-navi a.navi-margin-3{
    margin: 7px 0 0 18px;
}

.ie8 .main-navi a.navi-margin-3, .ie7 .main-navi a.navi-margin-3{
    margin: 7px 0 0 15px;
}

.sub-navi{
    display: none;
    background: url(../img/regular/bg-infolayer.png) repeat-x; 
    margin: 53px 0 0 0;
    position: absolute;
    width: 545px;  /* 466px/840px */
    z-index: 200;
}

.ie7 .sub-navi{
    margin: 53px 0 0 -105px;
    width: 550px;
}

.ie8 .sub-navi{
    margin: 43px 0 0 0;
    width: 558px;
}

.main-navi ul li:hover .sub-navi{
    visibility: visible;
    background: #303f44;
    display: block;
    animation: fade 5s;
    -moz-animation: fade 1s; /* Firefox */
    -webkit-animation: fade 5s; /* Safari and Chrome */
    -o-animation: fade 5s; /* Opera */
}

@keyframes fade  /* für das Submen� box wird langsam sichtbar */
{
    0%   {background: none repeat scroll 0 0 rgba(48, 63, 68, 0);}
    25%  {background: none repeat scroll 0 0 rgba(48, 63, 68, 0.3);}
    50%  {background: none repeat scroll 0 0 rgba(48, 63, 68, 0.6);}
    100% {background: none repeat scroll 0 0 rgba(48, 63, 68, 0.9);}
}

.main-navi .sub-navi li a{
    width: 530px; /* 429px/466px */
    text-align: left;
    padding: 10px 0 5px 15px;
    margin: 0;
    height: 30px;
    overflow: hidden;
}

.ie7 .main-navi .sub-navi li a{
    width: 513px; /* 429px/466px */
}

.ie8 .main-navi .sub-navi li a{
    width: 521px; /* 429px/466px */
}

.main-navi .sub-navi li a:hover{
    background: #ed1704; 
    -webkit-transition: all 0.218s ease-in 0s;
    -moz-transition: all 0.218s ease-out 0s;
    -o-transition: all 0.218s ease-in 0s;
    transition: all 0.218s ease-in 0s; 
}

/* -----------------------------------------------
 *  4. Slider
 * ----------------------------------------------- */

.slider {
    min-width: 100%;   /*960px/960px */
    height: 260px;
    position: relative;
    margin: 0;
    overflow: hidden;
    float: left;
}

.slider img {
    width: 100%; 
    float: right;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
}

.slider .prev,
.slider .next {
    position: absolute;
    top: 35%;
    height: 50px;
    width: 50px; /* 32px/960px */
    padding: 0px 0px;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    filter:alpha(opacity=0);
    -webkit-transition: opacity 0.4s ease-in-out 0.2s;
    -moz-transition: opacity 0.4s ease-in-out 0.2s;
    -o-transition: opacity 0.4s ease-in-out 0.2s;
    -ms-transition: opacity 0.4s ease-in-out 0.2s;
    transition: opacity 0.4s ease-in-out 0.2s;
}

.carousel-control {
    background: none repeat scroll 0 0 #000000;
    border: 3px solid #FFFFFF;
    border-radius: 23px 23px 23px 23px;
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 100;
    height: 40px;
    line-height: 32px;
    opacity: 0.7;
    position: absolute;
    text-align: center;
    width: 40px;
}

.slider:hover .prev,
.slider:hover .next {
    opacity: 1;
    filter:alpha(opacity=100);
}

.slider .prev {
    left: 23px;
}

.slider .next {
    right: 24px;
}

/* -----------------------------------------------
 *  5. Header
 * ----------------------------------------------- */
#layer{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

#logo{
    background: #f3f3f3 ;
    height: 110px;
    width: 110px;  /* 110px/960px */
    float: left;
}

#header .header-image-layer{
    max-width: 960px;
    float: left;
}

.info-layer{
    background: url(../img/regular/bg-infolayer.png) repeat-x;
    height: 43px;
    width: 100%;
    float: left;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px; 
}

.info-mail{
    margin: 8px 10px 0 0;
    width: 180px; /* 180px/960px */
    float: right;
}

.mail-icon{
    background: url(../img/icons/mail-icon.png) no-repeat;
    width: 30px; /* 30px/180px */
    height: 25px;
    margin: 0 20px 0 0;
    float: left;
}

.info-phone{
    float: left;
    margin: 8px 0 0 138px; 
    width: 180px;
}

.phone-icon{
    background: url(../img/icons/phone-icon.png) no-repeat;
    width: 26px; /* 26px/180px */
    height: 26px;   
    margin: 0 10px 0 0;
    float: left;
}

.phone-link{
    margin-top: 5px;
    float: left;
    color: #ed1704;
}

/* -----------------------------------------------
 *  6. Content
 * ----------------------------------------------- */

#content{
    min-height: 300px;
    background: #f4f4f4;
    margin-top: 10px;
    width: 100%;
    float: left;     
    -webkit-border-top-right-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-right-radius: 4px; 
    border-top-left-radius: 4px;
}

.container-left{
    background: #ffffff;
    min-height: 480px;
    padding: 30px;
    width: 20.3125%; /* 195px/960px */
    float: left;    
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    border-top-left-radius: 4px;
}

.contact .mail-icon{
    background: url(../img/icons/mail-icon.png) no-repeat;
    width: 31px;    /* 31px/195px */
    height: 27px;
    float: right;
    margin-top: -29px;
    border: none;
    cursor: pointer;
}

.text-box .phone-link, .text-box-400 a{
    margin-top: 5px;
    float: left;
    color: #3E3E3E;
    margin: 0;
}

.contact .contact-button{
    background: #ed1704;
    border: none;
    margin-top: 15px;
    padding: 5px;
    height: 20px;
    width: 110px;   /* 110px/195px */
    cursor: pointer;
    color: #ffffff;
    font-weight: 700;
    float: left;
    text-align: left;
}

.contact-button .label{
    margin: 0 0 0 13px;
}

.contact-button .contact-icon{
    border-left: 1px solid #ffffff;
    margin: -5px -4px 0 13px;
    width: 30px; /* 30px/195px */
    height: 30px;
    float: right;
}

.ie7 .contact-button .contact-icon{
    margin: -26px -5px 0 20px;
}

.ie8 .contact-button .contact-icon{
    margin: -5px -5px 0 20px;
}

.lang{
    margin-top: 60px;
    width: 100%; /* 190px/195px */
    float: left;
}

.lang a{
    color: #3e3e3e;
}

.lang .eng, .lang .de{
    height: 30px;
    width: 100%; /* 190px/195px */
    float: left;
    margin-top: 5px;  
}

.lang .flag{
    margin: -4px 5px 0 0;
    float: left;
    width: 15.38461538461538%;    /* 30px/195px */
    border: none;
}

.container-left .seperator{
    background: #ed1704;
    width: 100%;   /* 190px/195px */
    height: 1px;
    float: left;
}

.text-box{
    width: 66.08%;   /* 644px/960px */
    float: left;
    padding: 30px;
}

.contact .text-box{
    width: 100%;   /* 190px/195px */
    padding: 10px 0 0 0;
}

.text-box-960{
    width: 90.56%; /* 600px/960px */
    min-height: 160px;
    float: left;
    padding: 20px;
    color: #3E3E3E;
}

/* Kontakt */
.text-box-400{
    width: 41,66666667%; /* 400px/960px */
    float: left;
    padding: 10px 0 20px 20px;
    color: #3E3E3E;
}

.googlemaps{
    width: 65.5%; 
    height: 400px;
    float: left;
}

.googlemaps iframe{
    width: 85.5%;
    height: 400px;
    float: left;
}

/* Referenzen/ Technik  */
.text-box-small{
    width: 62.5%; /* 600px/960px */
    min-height: 160px;
    float: left;
    margin: 29px 0 0 20px;
}

.text-box-small span{
    margin-bottom: 10px;
    float: left;
}

.pdf{
    width: 100%;
    float: left;
    color: #3E3E3E;
}

.text-box-small .icon{
    width: 58px;
    height: 58px;
    float: left;
}

.text-box-small .icon-text{
    margin: 20px 0 0 0;
    float: left;
}

.mask .icon{
    width: 100px;
    height: 100px;
    float: left;
    margin: 66px 0 0 77px;
}

.view {
    width: 250px;   /* 250px/644px */
    height: 160px;
    float: left;
    position: relative;
    text-align: center;
    background: #fff no-repeat center center;
    margin: 0 10px 10px 0;
}

.view .mask,.view .content {
    width: 100%;   /* 250px/644px */
    height: 160px;
    position: absolute;
    overflow: hidden;
    color: #ffffff;
    top: 0;
    left: 0;
}

.view a.info {
    display: inline-block;
    color: #62595e;
    height: 114px;
    margin-top: -54px;
    width: 249px;
}

.view a.info:hover {
    color: #ed1704;
}

.view-sixth img {
    -webkit-transition: all 0.4s ease-in-out 0.5s;
    -moz-transition: all 0.4s ease-in-out 0.5s;
    -o-transition: all 0.4s ease-in-out 0.5s;
    -ms-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;
}

.view-sixth .mask {
    background-color: rgba(0,0,0,0.5);
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in 0.4s;
    -moz-transition: all 0.3s ease-in 0.4s;
    -o-transition: all 0.3s ease-in 0.4s;
    -ms-transition: all 0.3s ease-in 0.4s;
    transition: all 0.3s ease-in 0.4s;
}

.view-sixth h2 {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    font-size: 1.2em;
    margin: 174px 0 0;
    color: #ffffff;
    -webkit-transform: scale(10);
    -moz-transform: scale(10);
    -o-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    -moz-transition: all 0.3s ease-in-out 0.1s;
    -o-transition: all 0.3s ease-in-out 0.1s;
    -ms-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
}

.view-sixth p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(10);
    -moz-transform: scale(10);
    -o-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    -moz-transition: all 0.3s ease-in-out 0.2s;
    -o-transition: all 0.3s ease-in-out 0.2s;
    -ms-transition: all 0.3s ease-in-out 0.2s;
    transition: all 0.3s ease-in-out 0.2s;
}

.view-sixth a.info {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.3s ease-in-out 0.1s;
    -moz-transition: all 0.3s ease-in-out 0.1s;
    -o-transition: all 0.3s ease-in-out 0.1s;
    -ms-transition: all 0.3s ease-in-out 0.1s;
    transition: all 0.3s ease-in-out 0.1s;
}

.view-sixth:hover .mask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.view-sixth:hover img {
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
}

.view-sixth:hover h2 {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.view-sixth:hover p {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    margin-bottom: 10px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.view-sixth:hover a.info {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/* -----------------------------------------------
 *  7. Footer
 * ----------------------------------------------- */

#footer{
    height: 35px;
    background: url(../img/regular/bg-infolayer.png) repeat-x; 
    width: 100%;
    float: left;
}

#footer a{
    font-size: 1em;
}

#footer a:hover, .lang a:hover, .text-box .phone-link:hover, #footer a.activ, .text-box-400 a:hover, .pdf:hover{
    color: #ee1703;
}

#footer ul{
    float: right;
    margin: 8px 0 0 0;
}

#footer .footer-impress{
    width: 71px; /* 74px/960px */
    float: left;
}

#footer .footer-contact{
    width: 52px;    /* 80px/960px */
    float: left;
}

#footer .pipe{
    color: #ffffff;
    width: 14px;    /* 10px/960px */
    float: left;
}
