@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400&display=swap');

body {
    /*_background: url(../img/ocean.jpg);  Anm. to: kommt von jeder Setite selbst*/
    background-size: cover;
    background-attachment:fixed;
    background-position: center center;
    background-color: #89D8FF !important;
    padding:0;
    margin:0;
    /*_font-family: 'Didact Gothic', sans-serif;*/
    font-family: 'Raleway', sans-serif;
}
a:link {
  color:#00B0F0;
  text-decoration: none;
}
a:hover {
  color:#F03A47;
}
a:active {
  color:#F03A47;
}
a:visited {
  color:#00B0F0;
}
a:under {
  :#000;
}

h1 {
    margin-top:0;
}
h3 {
    margin-bottom:5px;
}
header {
    width:100%;
    background:#fff;
    overflow:auto;
    position:fixed;
    overflow: visible;
    z-index: 10000;
    box-shadow:rgba(0,0,0,0.2) 0px 5px 5px;
    /*next: line below nav bar*/
    /*border-bottom:2px solid #00B0F0;*/
}
#small-logo  {
    float:right;
    margin-top:5px;
    margin-right:5px;
}
#small-logo img {
    width:50px;
}
#main-nav {
    overflow:visible;
    width:100%;
}
#main-nav li {
    list-style:none;
    display:inline-block;
    transition: color 1s,background 0.3s;
    _orignalwerte = transition: color 1s,background 0.3s;
}
#main-nav li a {
_schriftart nav
    font-style: bold;

    /*Tim*/
    font-weight: 300;

    text-decoration: none;
    _text-transform:uppercase;
    color:#666;

    padding:20px 18px;
    /*orignalwerte = padding:26px 24px;*/

    position:relative;
    display: block;
    font-size:14px;

    transition: color 0s,background 0.1s;
    /*original-werte = transition: color 1s,background 0.1s;*/
}
#main-nav li a:hover  {
    color:#00B0F0;
    background: rgba(0,0,0,0.05);

}
#main-nav  ul {
    position:relative;
    overflow:visible;
    margin:0;
    padding:0;
    width:auto;
    float:left;
    min-height:30px;

}
#main-nav ul>li{
    position:relative;
    float:left;
    list-style:none;
    margin:0;
    display:inline-block;
    padding:0;
}
#main-nav  ul>li>ul {
    position:absolute;
    left:0;
    height:auto;
    background: #fff;
    display:none;
    padding-bottom:0px;
    padding-top:0px;
    padding:0;
    margin:0;
    z-index:1;
}
#main-nav  ul>li>ul>li {
    float:left;
    position:relative;
    /*width sub menu*/
    width: 220px;
    border-bottom: 1px solid #eee;
}
#main-nav ul>li>ul>li a {
    padding:4px 30px !important;
}
#main-nav  ul>li:hover>ul {
    display:block;

}
#hamburger-menu {
    float:left;
    width:40px;
    margin-top:19px;
    margin-left:10px;
    display:none;
}
.line {
    width:100%;
    height:4px;
    margin-top:5px;
    background:#00B0F0;
    border-radius:2px;
}
.line:first-child {
    margin-top:0;
}
.menu-top {
    position:relative;
}
.closed.menu-top::before,.open.menu-top::before {

    position: absolute;
    top: 20px;
    _orignalwerte = top: 28px;
    left: 6px;
}

.closed.menu-top::before {
    content:url(../img/box_blue.png);
}
.open.menu-top::before {
    content:url(../img/box_lightgray.png);
}

@keyframes fading-menu {
  0%   {opacity:0;left:0px;}
  _orignalwerte = 0%   {opacity:0;left:-50px;}
  100% {opacity:1;left:0px;}
}

/*@keyframes fading-menu-out {
  0%   {opacity:1;left:0px;}
  100% {opacity:0;left:-50px;}
}*/

/* The element to apply the animation to */
.open ul {

  animation-name: fading-menu;
  animation-duration: 0.3s;
  _orignalwerte = animation-duration: 0.9s;
}
/*.closed ul {
 display: block;
  animation-name: fading-menu-out;
  animation-duration: 0.9s;
}*/

#big-logo img {
    /* ori max-width:14vw; */
    max-width:200px;
}
#big-logo {
    width: 100%;
    position: absolute;
    top:50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left:50%;
    margin-left:-100px;

}
.top-headline {
    position: absolute;
    font-size: 26px;
    /* orig: font-size: 3vw; */
    font-style: none;
    margin: auto;
    width: 100%;
    text-align: center;
    bottom: 16vh;
    /* orig: bottom: 7vh; */
    color: #fff;
    font-weight: 300;

}
/* ----------- query begin --------------*/
/*_hier umbruchbreite + in javascript "menu-toggle"*/
@media only screen and (max-width: 1040px) {
    #hamburger-menu {
        display:block;
    }
    #main-nav ul {
        display:none;
    }
    #main-nav  ul>li>ul>li {
        width:100%;
    }
    #main-nav ul>li{
        width:100%;
        float:left;
        text-align: center;
    }
    #small-logo {
        /*float:none;
        margin:auto;
        margin-top:5px;
        width:50px;
        display:block;
        */
    }
    #main-nav ul>li>ul {
        width:100%;

    }
    #main-nav  ul>li>ul {
        position:relative;
        left:0;
        height:auto;
        background: #fff;
        _display:none;
        padding-bottom:0px;
        padding-top:0px;
        width:100%;
        _padding-left:40px;
        z-index:1;
        background:#eee;
    }
    #main-nav li a {
        padding:11px 30px !important;
        border-bottom:1px solid #ccc;
        line-height:100%;

    }
    #main-nav  ul>li>ul li a{
        padding:8px 30px !important;
    }
    .menu-top:last-child {
        _border-bottom:none;

    }
    #main-nav>ul  {
        _padding-bottom:30px;
        width: 100%;
            margin-top: 4px;
    border-top: 1px solid #ccc;
    }

    .closed.menu-top::before,.open.menu-top::before {

        position: absolute;
        top: 10px;
        left: 10px;
    }

    #big-logo {
        margin-left:-18vw;

    }
    #big-logo img {
        max-width:38vw;
    }
    .top-headline {
        font-size:22px;
    }
}

/*-------------------------------ende queries */


#top-content-wrap {
    position:absolute;
    width:100%;
    overflow: hidden;
    height:calc(95% - 80px);
    margin-top: 80px;

}
#top-content {

}
#main-content-wrap {

    position:absolute;
    width:100%;

    top:calc(100% - 100px);
}

.main-section {
    background: rgba(255,255,255,0.9);
    _ => letzter Wert = Transparenz der Box;

/*versuch shadow oben (tim);*/
    box-shadow:rgba(0,0,0,0.2) 0 5px 5px 5px;


    width:calc(100% - 80px);
    max-width:1000px;
    margin:auto;
    display: block;
    margin-bottom: 40px;;
    padding:40px;
    overflow: auto;
    line-height:150%;
}

#footer-inner {
    width:100%;
    max-width:800px;
    margin:auto;
}
footer {

    width:100%;
    _min-height:200px;
    max-height:35px;
    background:#fff;
    position:relative;
    overflow: hidden;

_versuch shadow oben (tim);
    box-shadow: 0 -10px 10px -10px #333;
    _box-shadow:rgba(0,0,0,0.2) 0 -5px 5px -5px;
}
#footer-nav {
    padding:0px;
}

#footer-nav ul {
    text-align: center;
    margin:0;
    padding:0;
}
.menu-foot {
    list-style:none;
    display:inline-block;
    transition: color 0.3s,background 0.1s;
    _orignalwerte = transition: color 1s,background 0.3s;
}
.menu-foot a{
    font-style: normal;
    text-decoration: none;
    text-transform:uppercase;
    color:#202933;
    padding:5px 15px;
    _ orig: padding:12px 30px;
    position:relative;
    display: block;
    font-size:12px;
    transition: color 0.3s,background 0.1s;
    _orignalwerte = transition: color 1s,background 0.1s;
}
#copyright {
    color: #666;
    font-size:13px;
    position: absolute;
    right: 20px;
    top: 5px;
}
@media only screen and (max-width: 660px) {
    #copyright {
       position: relative;
    /* margin: auto; */
    /* display: block; */
    width: 100%;
    margin-top: -15px;
    text-align: center;
    margin-bottom: 20px;
    float: left;
    margin-left: 20px;
    }
}

/* template2--------------------------------------------------- */
.quote {
    color:#fff;
    width:100%;
    text-align:center;
    font-size:40px;
    line-height: 100%;
    margin:0;
    padding:0;
    margin-top: 36vh;
    font-style: italic;
    text-shadow: 2px 2px #4a586b;
}
.author {
    color:#fff;
    width:100%;
    text-align:center;
    font-size:25px;

    line-height: 100%;
    margin:0;
    margin-top:7px;
    padding:0;

}
.front-button h3 {

    width:100%;
    text-align:center;
    font-size:20px;
    line-height: 100%;
    margin:0;
    padding:0;
    background: rgba(255,255,255,0.5);
    max-width: 221px;
    display:block;
    margin:40px auto 0 auto;
    color:#000;
    padding:12px;
    font-weight:normal;
     transition: background 0.5s;
}
.front-button a {
    text-decoration:none;

}
.front-button a:hover h3 {
     background: rgba(255,255,255,0.8);
}
/* template2--------------------------------------------------- */
/* template3--------------------------------------------------- */
.main-section  ul {
 list-style: none;
}
.main-section li{

    _list-style:square;
}
.main-section li::before {

/* design bullet point--------------------------------------------------- */
  content: "\25A0";
  color: #00B0F0;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  margin-top:-0.15em;
  position:absolute;

}
.content-pic-1 {
    width:100%;
    display:block;

}
.col2.left {
    position:relative;
    float: left;
    width:calc(50% - 60px);
    padding:40px 20px 40px 40px;
}
.col2.right {
  position:relative;
    float: left;
     width:calc(50% - 60px);
    padding:40px 40px 40px 20px
}
.col2-wrap {
    width:100%;
    float:left;
}
#main-content-2 {
    padding:0;
    width:100%;
     max-width:1080px;
}
#main-content-2 h1 {
    margin-top:0;
}
.contact-button-right {
    background: #F03A47;
    width:100%;
    min-width:100px;
    max-width:350px;
    padding:10px;
    text-align: center;
    color:#fff;
    margin:20px 40px 20px;
    border-radius:5px;
    float:right;
    overflow:auto;
}

/* Test Tim -----*/
.contact-button-right:hover {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    transition: all 100ms;
    -webkit-transition: all 100ms;
    -moz-transition: all 100ms;
    -o-transition: all 100ms;
}
/* Ende Test Tim -----*/

.contact-button-center {
    background: #ff5050;
    width:100%;
    max-width:200px;
    padding:10px;
    text-align: center;
    color:#fff;
    margin:20px auto 20px;
    border-radius:5px;
    overflow:auto;
}
.button-a {
    text-decoration: none;
}
@media only screen and (max-width: 600px) {
    .col2.left,.col2.right {
         width:calc(100% - 80px);
    padding:40px;
    }
    .col2.right {
        padding-top:0;
    }
}
/* template3--------------------------------------------------- */
/* template4--------------------------------------------------- */
.float-box {
    float:left;
    width:100%;
    border-bottom:1px solid #ccc;
    padding:20px 0px;
}
.float-box:last-child {
  border-bottom:none !important;
}
.float-box img {
    float:left;
    max-width:200px;
    display: block;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

/* Test Tim -----*/
.float-box img:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
    transition: all 300ms;
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -o-transition: all 300ms;

}
/* Ende Test Tim -----*/

.float-box p {
     float:left;
    padding-left:20px;
    width:calc(100% - 220px);
}

@media only screen and (max-width: 600px) {
   .float-box img {
   float:none;
   margin:auto;

   }
   .float-box p {
       width:100%;
       padding:0;
   }
}
/* template4--------------------------------------------------- */
/* template5--------------------------------------------------- */
/* nur bilder ---------*/

.pic3-wrap {
    margin:0;
}
.pic3 {
    float:left;
    display:block;

    /*max-width:280px;
    margin:calc((100% - 3 * 280px) / 6);*/
     width:29%;
    margin:2%;
}
/* nur bilder ---------*/

.section3-wrap {
     float:left;
     width:100%;
     margin-top:0px;
     margin-bottom: 10px;

}
.section3 {
    float:left;
    display:block;

    width:29%;
    margin:2%;
    background:rgba(255,255,255,0.3);
    box-shadow:rgba(0,0,0,0.5) 5px 5px 5px;
  }
.section3:hover {
    transform: scale(1.01);
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -o-transform: scale(1.01);
    transition: all 100ms;
    -webkit-transition: all 100ms;
    -moz-transition: all 100ms;
    -o-transition: all 100ms;
  }

.pic3-box {
     float:left;
    display:block;
    width:100%;
}
.section3-text {
    padding:20px;
    text-align: center;
        float: left;
}
@media only screen and (max-width: 700px) {
/* nur bilder ---------*/
.pic3 {
     max-width:100%;
     width:100%;
     margin:0 0 40px 0;
}

.pic3-wrap {
    margin-top:0px;
}
/* nur bilder ---------*/

.section3 {
     max-width:100%;
     width:100%;
     margin:20px 0;
}
}
/* template5--------------------------------------------------- */
