html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #2f3233;
  background-color:#e3e5e8;
  background-image: url('../images/bg_main.jpg'); 
  background-repeat: repeat-x;
}

a {
    outline: 0 !important;
}

/* CONSTRUCT ================================================================================= */
.container {
    padding:20px 10px 40px 10px;
}

.head{ 
    padding:30px 0px;
}

.head .logo {
    text-align: center !important;
    padding:5px 10px;
}

.head .logo img{
    display:inline-block;
}

.welcome {
    margin:0px 0px 30px;
    border-bottom:1px dotted #ccc;
    padding:0px 5px 30px 5px;
    text-align: center;
}

.welcome h1 {
    font-family: "Roboto", sans-serif;  
    color: #5f6263;
    padding-top:0px;
    margin-top:10px;
    letter-spacing: -1pt;
}

.welcome p {
    font-family: "Roboto", sans-serif;  
    color: #6f7273;  
    letter-spacing: -0.2pt;
}

.companies {
    margin:40px 0px 0px 0px;
}

.imprint {
    padding:10px 40px;
    font-family: "Roboto", sans-serif;
    color: #6f7273;
    letter-spacing: -0.2pt;
    font-size:80%;
}

/* =========================================================================================== */

/* COMPANIES ================================================================================= */
.companies .company {
    width:20%;
    margin-bottom: 30px;
}

.companies .inner {
    display:block;
    overflow: hidden;
    
    color: #5f6263;
    text-decoration: none;
    font-size: 11px;
    
    background-color:#f5f5f5;
    
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.companies .inner span {
    display:block;
}
.companies .inner .logo {
    padding:20px;
    border-bottom:1px solid #ddd;
    background-color: #f9f9f9;
    text-align: center;
}
.companies .inner .logo img {
    max-width: 100%;
    height:auto;
}
.companies .inner .text {
    height:90px;
    border-top:1px solid #fff;
    padding:10px 10px 20px 10px;
    background-color: #f9f9f9;
    text-align: center;
}


/* =========================================================================================== */

/* RESPFIX =================================================================================== */
@media (min-width: 768px) and (max-width: 969px) {
    .companies .company {
        width:33.33%;
    }
    .companies .company:nth-child(3):after {
        display:block;
        position: static;
        width:100%;
        height:1px;
        content: '';
        float:none;
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    body {
        background-image: none;
    }
    .companies .company {
        width:50%;
    }
    .companies .company:nth-child(4):after {
        display:block;
        position: static;
        width:100%;
        height:1px;
        content: '';
        float:none;
        clear: both;
    }
}
@media (max-width: 499px) {
    body {
        background-image: none;
    }
    .companies .company {
        width:100%;
    }
}
/* =========================================================================================== */