.menu {
    background-color: #FFF;
    overflow: hidden;    
    vertical-align: bottom;
}
.menu a {
    float: left;
    display: block;
    color: #333; 
    font-weight: bolder;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;    
}
.menu a:hover {
    background-color: #ddd;
    color: black;    
}

.flipped {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
    -webkit-backface-visibility: hidden;
}

@media screen and (max-width: 600px) {
    .menu a:not(:first-child){
        display: none;
    }
    .menu a:first-child:hover{
        background:#FFF;
    }
    .menu a.icon {
      float: right;
      display: block;
    }
    #desktop-menu{
        display:none;
    }
    .menu.responsive a:first-child{
        display:none;
    }
    .menu.responsive {
        position: relative;
    }
    .menu.responsive a.icon{
      position: absolute;
      right: 0;
      top: 0;
    }
    .menu.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
    .row-eq-height {
    }
    .col-center{
    }
    #page-action .row>div:not(:first-child){
        margin-top:30px;
    }
    .mobile-scale-100{
        width:100%;
    }
    .mobile-hide{
        display: none;
    }
    .contact{
        
    }
}

@media screen and (min-width: 601px) {
    .menu a:hover{
        border-radius: 10px 10px 0px 0px;
    }
    #mobile-menu{
        display:none;
    }
    #page-menu{
        height:120px;
        border-bottom: 1px solid #000;        
        border-left: 1px solid #000;
        border-radius: 0px 0px 0px 10px;
        overflow: hidden;
    }
    .row-eq-height {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display:         flex;
    }    
    .col-center{
        display:flex;
        flex-direction:column;
        justify-content:center;
    }
    .mobile-scale-100{
        
    }
    .contact{
        padding-left: 50px;
    }
}

#page-action { 
    opacity: 0.02;
    transition: opacity 0.5s ease-out;        
}

.star-background{
    background: #dddddd; 
    background: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 34%, #9b967f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #dddddd 0%,#bbbbbb 34%,#9b967f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #dddddd 0%,#bbbbbb 34%,#9b967f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#9b967f',GradientType=0 ); /* IE6-9 */    
}

.star-container{
    background: #dddddd; 
    background: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 34%, #9b967f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #dddddd 0%,#bbbbbb 34%,#9b967f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #dddddd 0%,#bbbbbb 34%,#9b967f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#9b967f',GradientType=0 ); /* IE6-9 */
    border-radius: 5px;
    box-shadow:0px 0px 10px #999;    
}

.extern-logo{
    display: inline-block;
    margin: 5px;
    background: #dddddd; 
    background: -moz-linear-gradient(top, #dddddd 0%, #bbbbbb 34%, #9b967f 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #dddddd 0%,#bbbbbb 34%,#9b967f 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #dddddd 0%,#bbbbbb 34%,#9b967f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow:0px 0px 8px #000;    
}

.contact input{
    border: 1px solid #999;
    padding: 5px;
    width: 100%;
    margin-bottom:3px;
    outline: none;
}
.contact input:hover, .contact input:focus{
    border: 1px solid #080;    
}
.contact textarea{
    border: 1px solid #999;
    padding: 5px;
    width: 100%; 
    height: 200px;
    resize: none;
    outline: none;
}
.contact textarea:hover, .contact textarea:focus{
    border: 1px solid #080;    
}
.contact .col-top{
    display:flex;
    flex-direction:column;
    margin-top: 6px;
}
.contact input[type='submit']{
    border:1px solid #999;
    background: #EEE;
    width: 60%;
}

.contact div.error{
    display: none;
    background: rgba(255, 150, 150, 0.3);
    border-radius: 5px 20px 0px 0px;
    color: #000;
    border:1px solid #999;
    border-bottom: 0px;
    padding-left:15px;
}
.contact input[type='text'].error{
    background: rgba(255, 200, 200, 0.3);
}
.contact input[type='text'].error:hover, .contact input[type='text'].error:focus{ 
    border: 1px solid #F00;
}
.contact textarea.error{
    background: rgba(255, 200, 200, 0.3);
}
.contact textarea.error:hover, .contact textarea.error:focus{ 
    border: 1px solid #F00;
}

.error-captcha{
    display: inline-block;
    padding: 10px;
    border: 1px solid #F00;
    background: rgba(255, 200, 200, 0.3);
}

.container-success{
    text-align: center;
    padding: 10px;
    margin: 10px;
    border: 1px solid #080;
    background: rgba(200,230,200,0.8);
}
.container-error{
    text-align: center;
    padding: 10px;
    margin: 10px;
    border: 1px solid #800;
    background: rgba(230,200,200,0.8);
}
