/* --------------------------------------------- */
/* Pink color:  #476d41*/
/* --------------------------------------------- */


/* --------------------------------------------- */
/* BASIC SETUP */
/* --------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* elements have real size without padding */
}

html{
    background-color: white;
    color: #6c6969;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}


/* --------------------------------------------- */
/* REUSABLE COMPONENTS */
/* --------------------------------------------- */

.row {
    max-width: 1140px;
    margin: 0 auto;
}

.logo {
    height: 300px;
    /*margin-bottom:180px;*/
}

section {
    padding: 40px 0;
}

/*---- HEADINGS ---- */

h1, h2, h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    color: #fff;
    font-size: 200%;
    word-spacing: 4px;    
    margin: 0; 
    letter-spacing: 1px;
}

h2 {
    font-size: 150%;
    word-spacing: 2px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    margin-left: 15px;
    margin-right: 15px;
}

h2:after{
    display: block;
    height: 2px;
    background: linear-gradient(90deg,rgba(241, 177, 57, 1) 0%, rgba(209, 45, 133, 1) 50%, rgba(86, 120, 205, 1) 100%);;
    content: " ";
    width: 200px;
    margin: 0 auto;
    margin-top: 30px;
}


h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h4 {
    font-weight: 300;
}


.box {
    padding: 1%;
    padding: 15px;
}

/*---- PARAGRAPHS ---- */

.lang {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    margin-bottom: 30px;
}

.box p{
    line-height: 145%;
    font-size: 90%;
    
}

/*---- ICONS ---- */

.icon-big {
    font-size: 300%;
    color:  #D12D85;
    display: block;
    margin-bottom: 10px;
}

.icon-small {
    display: inline-block; 
    width: 30px;
    text-align: center;
    color: #D12D85;
    font-size: 120%;    
    margin-right: 10px;

    /*
    secrets to align text and icons
    */
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
    
}

/*---- BUTTONS AND SIMPLE LINKS---- */

.btn-box-header {
    display: inline-block;
}

.hero-box-inner {
    display: inline-block;
    text-align: center;
}

.btn:link,
.btn:visited,
input[type=submit]{
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
/*    margin-left: 55px; */
    margin-top: 10px;
}

.btn-angebot:link,
.btn-angebot:visited,
input[type=submit]{
    color: #fff;
    background-color: #c5008b;    
    margin-right: 15px;
}

.btn-team:link,
.btn-team:visited{
    border: 1px #c5008b solid;
    color: #c5008b;
}

.btn:hover,
.btn:active{
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    transition: background-color 0.2s, border 0.2s, color 0.2s; 
    margin-top: 10px;
}
.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #D12D85;    
}

.btn-angebot:hover,
.btn-angebot:active {
    color: #fff;
    border: 1px #fff solid;
    background-color: #D12D85;    
    margin-right: 15px;
}

.btn-team:hover,
.btn-team:active{
    border: 1px #fff solid;
    color: #fff;
    background-color: #D12D85;
}

a:link,
a:visited{
    color: #6c6969;
    text-decoration: none;
    
}

a:hover,
a:active{
    color: green;
}

/* --------------------------------------------- */
/* HEADER */
/* --------------------------------------------- */

header {
    /*background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/HeaderFloralup.jpg");
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/HeaderFloralup.jpg"); */
    background-size: cover;
    background-color: white;
    background-position: center;
    height: 18vh;
    background-attachment: fixed;
}

.hero-box {
    position: absolute;
    width: 1140px;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);   
    -webkit-transform: translate(-50%, -50%);   
    text-align: center;
}

.logo{
    height: 300px;
    width: auto;
    /*float: left;*/
    margin-top: 0px;
    padding-left: 10px;
}


.logo-black {
    display: none;
    height: 50px;
    width: auto;
    float: left;
    margin-top: 5px 0;
}

.logo-white {
    height: 50px;
    width: auto;
    float: left;
    margin-top: 40px;
}



.main-nav {
    z-index: 9999;
    float: right;
    list-style: none;
    margin-top: 50px;
}

.main-nav li {
    display:inline-block;
    margin-left:40px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 8px 0;
    font-size: 80%;
    
    color: black;
    font-weight: bolder;
    text-decoration: none;
    /*text-transform: lowercase;*/
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2px;
    -webkit-transition: border-bottom 0.2px;
}

.main-nav li a:hover,
.main-nav li a:active{
    border-bottom: 2px solid lightgrey;
}

.sticky {
    position: fixed;
    top: 0;
    /*left 0;*/
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
    padding-bottom: 12px;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    padding: 12px 0;
    color: #555;
}

.sticky .main-nav {
    margin-top: 15px;
}

.sticky .logo {
    display: none;
}

.sticky .logo-black {
    display: block;
}

/*mobile navigation */
.mobile-nav-menu {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-menu i {
    font-size: 250%;
    color: rgba(241, 177, 57, 1);
}

/* --------------------------------------------- */
/* ANGEBOT */
/* --------------------------------------------- */

.h3-angebot{
    color: #555;
    font-size: 130%;
    margin-bottom: 30px;
    margin-top: 5px;
}

.h3-angebot:after {
    display: block;
    height: 2px;
    background-color: grey;
    content: " ";
    margin-top: 5px;
    width: 200px;
}


.grafikdesign-text-box p {
    color: #fff;
}

.logo-angebot{
    height: 200px;
    margin-bottom: 20px;
}

.section-overview .box {
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.39);
    box-shadow: 0 1px 2px #efefef;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ---------- lettering box -------- */

.lettering {
    background-color:   white  ;
}


.letteringbox {
    width: 80%;
}


.letteringbox img {
    float: left;
    width: 110%;
    overflow: hidden;
}

.lettering p {
    color: #555;
}

.lettering-text-box {
    padding: 30px;
    background-color: rgba(239, 239, 239, 1);
    float: right;
    margin-top: -30%;
    margin-left: 50%;
    border-radius: 17px;
}

/* IMAGES Projekte */
 /* Three image containers (use 25% for four, and 50% for two, etc) */
 .column {
    float: left;
    width: 33.33%;
    padding: 5px;
    margin-bottom: 15px;
  }
  
  /* Clear floats after image containers */
  .row::after {
    content: "";
    clear: both;
    display: table;
  } 


/* ----- grafikdesign box -------- */ 

.grafikdesign {
    background-color: #fff;
    overflow: hidden;
    padding-top: 50px !important;
    padding-bottom: 0px !important;
    text-align: center;
}

.grafikdesignbox {
    margin-left: 21%;
    width: 30%;
    /*height: auto;*/
    /*margin-left: 20%;*/
}

.grafikdesignbox img {
    float: right;
    width: 30%;
    overflow: hidden;
}

.grafikdesign-text-box {
    box-sizing: border-box;
    background-color: #555;
    padding: 30px;
    margin: 0 1%;
}

.logodesign-img-box {
    background-color:  grey ;
    border-radius: 17px;
}

.grafikdesign-innere-text-box {
    padding: 30px; 
    margin-left: 5%;
}

.grafikdesign .h3-angebot {
    color: #fff;
}

/* ----- 3D design box -------- */ 

.dreiD-design {
    background-color: #eadfe1;
    overflow: hidden;
}

.dreiDdesignbox {
    width: 85%;
    height: auto;
    margin-left: 20%;
}

.logodesign-text-box {
    box-sizing: border-box;
    background-color: #555;
    padding: 30px;
    margin: 0 -5%;
}

.dreiD-design .h3-angebot {
    color: #fff;
}


/* --------------------------------------------- */
/* PREISE */
/* --------------------------------------------- */

.section-preis {
    background-color: #f4f4f4;
}

.preis-box {
    background-color: #fff;
    border-radius: 5px;
    width: 90%;
    margin-left: 5%;
    box-shadow: 0 2px 2px #efefef;
    -webkit-box-shadow: 0 2px 2px #efefef;
}

.preis-box div {
    padding: 15px;
    border: 2px solid #ededed;
}

.preise-teilung {
    font-size: 150%;
}


.preis-box div:first-child {
    background-color: #fcfcfc;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.erste_row:after {
    display: block;
    height: 2px;
    background-color: #D12D85;
    content: " ";
    width: 200px;
    margin: 0 auto;
    margin-top: 60px;
}

.zweite_row {
    margin-top: 10px;
}

.preise span {
    font-size: 30%;
    font-weight: 300;
}

.preise {
    font-size: 300%;
    margin-bottom: 10px;
    color: #D12D85;
    font-weight: 100;
}

.preise-angebot {
    font-size: 80%;
}

.preis-box ul {
    list-style: none;
}

.preis-box ul li {
    padding: 5px 0;
}

.referenz {
    margin-left: 10px;
    margin-top: 10px;
}


/* --------------------------------------------- */
/* FORMULAR */
/* --------------------------------------------- */

.kontakt-formular {
    width: 60%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
textarea {
    display: block;
    width: 100%;
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

textarea {
    height: 100px;
}

.form-messages {
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 3px;
    margin-bottom: 20px;
    color: #333;
}

.success {
    background-color: rgba(75, 181, 120, 0.81);
}

.error {
    background-color: rgba(191, 38, 67, 0.81);
}

*:focus{outline:none}


/* --------------------------------------------- */
/* FOOTER */
/* --------------------------------------------- */

footer {
    color: white;
    background: linear-gradient(90deg,rgba(241, 177, 57, 1) 0%, rgba(209, 45, 133, 1) 50%, rgba(86, 120, 205, 1) 100%);
    /*background-color: #333;*/
    padding: 40px;
    font-size: 80%;
}

.footer-nav {
    list-style: none;
    text-align: center;
    /*float: left;*/
}

.socialmedia {
    list-style: none;
    float:right;
}

.footer-nav li,
.socialmedia li {
    display: inline-block;
    margin-right: 20px;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.socialmedia li a:link,
.socialmedia li a:visited {
    text-decoration: none;
    color: white;
    border: 0;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.socialmedia li a:link,
.socialmedia li a:visited{
    font-size: 160%;
}


.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
}

.ion-social-instagram {
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
}

.ion-social-instagram:hover {
    color: #517fa4;
}

footer p {
    text-align: center;
    margin-top: 20px;
    color: white;
}

/* --------------------------------------------- */
/* ANIMATIONS */
/* --------------------------------------------- */

.js--wp-1 {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wp-2 {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
}

.js--wp-1.animated,
.js--wp-2.animated {
    opacity: 1;
}

/* --------------------------------------------- */
/* ANGEBOT */
/* --------------------------------------------- */






