html,body {
    margin: 0;
    padding: 0;
    text-decoration: none;
    overflow-x: hidden;  
   

    height: 100%;
    background-color: rgb(11, 29, 10);
}
body {
    color: lightgoldenrodyellow;
    font-family: 'Libre Baskerville', serif;    
}
@media (min-width: 1200px) and (min-height: 875px){
html {
    --scrollbarBG: rgb(56, 83, 60);;
    --thumbBG: lightgoldenrodyellow;
  }
  body::-webkit-scrollbar {
    width: 11px;
  }
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
    overflow-y: scroll;
  }
  body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
  }
  body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
  }

  html,body {
    scroll-behavior: smooth;  
    -ms-scroll-snap-type: y mandatory;  
        scroll-snap-type: y mandatory;
  }
}
p {
  line-height: 1.5rem;
}
a {
  text-decoration: none;
  color: #fafad2;
}

.en {
    display: none;
}
.de {
    display: unset;
}
section {
    width: 100dvw;
    height: 100dvh;    
    scroll-snap-align: start;
    background-color: rgb(11, 29, 10);
    position: relative;
}
section:last-of-type {
    margin-bottom: 0 !important;
}
h1 {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 5.5rem;
    font-weight: 500;
    margin: 0;
    padding-top: 15px;
}
@media (max-width: 1200px) or (max-height: 875px) {
  section:not(:first-of-type) {
    padding-top: 40px;
  }
  section {
    min-height: 100vh;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  h1 {
    font-size: 3rem;
  }
}

nav {
    position: fixed;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;    
    width: -webkit-min-content;    
    width: -moz-min-content;    
    width: min-content;  
    background-color: rgb(56, 83, 60);
    text-align: right;
    padding: 5px;
    margin: 0;
    width: 50px;
    border-radius: 10px 0 0 10px;
    z-index: 2000;
}
nav>a {
    cursor: pointer;
}
nav>a>img {
    margin: 5px;
    border: 1px solid black;
    padding: 5px;
    border-radius: 5px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, .5) 5px 5px 5px;
    transition: box-shadow .3s;   
}
nav>a:hover img {
    box-shadow: rgba(0, 0, 0, .5) 2px 2px 5px;
}

hr {
    width: 30%;
    border-radius: 50%;
    margin: 0 auto;
}

#social {
    cursor: pointer;
}
.fa img {
    height: 1.7em;
    width: 1.7em;
    margin: 2.5px 0 0 0;
}
.btn-app {
    width: 2em;
    height: 2em;
    border-radius: 5px;
    position: absolute;
    background-color: white;
    color: #fff;
    text-align: center;
    z-index: -1;
    color: black;
    box-shadow: none;
    border: 1px solid black;
  }
 
#menu-round {
    position: absolute;
    bottom: 0.7em;
    right: 5px;   
  }
  #menu-round .btn-app {
    bottom: 0.25em;
    right: 0.25em;
    transition: 0.4s;
  }
  #menu-round.open .btn-app {
    box-shadow: rgba(0, 0, 0, .5) 5px 5px 5px;
  }
  #menu-round.open .btn-app:nth-of-type(1) {
    right: 0.5em;
    bottom: -2.9em;
    transition-delay: 0.2s;
  }
  #menu-round.open .btn-app:nth-of-type(2) {
    right: 3.25em;
    bottom: -2.25em;
    transition-delay: 0.1s;
  }
  #menu-round.open .btn-app:nth-of-type(3) {
    right: 3.75em;
    bottom: 0.5em;
  }
  
#mobilemenu {display: none;}

@media (max-width: 1200px)  {
    nav {
        height: 80px;
        width: 40px;
        top: 40px;
        right: 0;
        transition: 0.4s;
        border-radius: 0 0 0 10px;
      
    }
    nav > a {        
        right: 0px;
        top: 5px;
        height: 45px;
        width: 45px;
        position: absolute;
        transition: 0.4s;
        opacity: 0;        
    }
    #language {
        top: 43px;
        opacity: 1;
    }
    #menu-round {opacity: 0;}

    #mobilemenu {display: block; z-index: 10000; height: 50px;width: 46px; opacity: 1;}
    nav.open {
        height: 240px;
        top: 120px;
    }
    nav hr {         
        display: none;        
      }
 
    nav.open >a { opacity: 1;   }
    nav.open>#menu-round {opacity: 1; }
    nav.open>a:nth-child(3) { top: 50px; }
    nav.open>a:nth-child(4) { top: 82px; }
    nav.open>a:nth-child(5) { top: 120px; }
    nav.open>a:nth-child(6) { top: 160px; }
    nav.open>a:nth-child(8) { top: 200px; }
    #menu-round {       
        bottom: 8px;
        right: 2px;   
      }
      nav #menu-round .btn-app {
        bottom: 44px;
        right: 2px;
        transition: 0.4s;
      }
      nav.open #menu-round .btn-app {
        bottom: 4px;
      }
  
    
}


#site-no-js {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}


#frontsec { 
    display: flex;   
    background-color: rgb(11, 29, 10);    
}


#frontpic {
    height:90%;
    width: 35%;  
    overflow: hidden; 
    cursor: pointer;
    margin-top: auto;
    margin-left: auto;
    margin-right: 2px;
    box-shadow: rgba(0, 0, 0, .5) -5px -5px 5px;
    transition: box-shadow .5s ease;
}
#frontpic #img {
    background-image: url('frontpic2-s.jpg');
    background-position: center;
    background-size: cover;
    height: 100%;
    transition: transform 2.5s ease; 
}
#frontpic:hover #img {
    transform: scale(1.6);
}
#frontpic:hover {
    box-shadow: rgba(0, 0, 0, .5) -.5px -.5px 5px;
}
#frontpic h1{
    position: relative;
    top: 62%;      
    z-index: 10;
    font-size: 1em; 
    opacity: 0;
    transition: transform 2.5s ease, opacity 2.5s ease;   
    height: 0;
}
#frontpic:hover h1 {
    transform: scale(2.5);
    opacity: 1;
}
#fronttext {
    height: 90%;
    width: 50%; 
    min-width: 300px;    
    background:  url('img/euleLogo-transparent-bearbeitet.png'), radial-gradient(ellipse 100% 50% at 0, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
    background-size: 120px, contain;
    background-repeat: no-repeat;
    background-position: 97% 3%, 0 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    margin-top: auto;
    margin-right: auto;
    box-shadow: rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px;
}
#ftext {
    max-width: 700px;
    width: 90%;
    text-align: center;
    margin: 0 auto;    
    color: #fafad2;  
    line-height: 1.7em;  
}
#ftext h1 {
  margin-bottom: .7em;
}
#ftext p:first {
  line-height: 2em;
}
#nextdates {
  position: absolute;
  bottom: 40px;  
  
  background-color: darkgreen;
  border-radius: 10px;
  color: lightgoldenrodyellow;
  padding: 5px;
}
#nextdatesmodal {
  padding-left: 30px;
  width: fit-content;
}
#nextdatesmodal a{
  text-decoration: underline;
}
@media (max-height: 875px) {
#frontsec {
  height: 100vh;
}
  
}

@media (max-width: 1200px) {
  #frontsec {
    height: auto;
  }
    #frontsec {
        flex-direction: column;
    }
    #frontpic {
        width: 95%;   
        height: 60dvh;  
        margin: 10px auto;           
    }  
    #fronttext {
        width: 95%;  
        margin: 0 auto;
    }
    #ftext {
        font-size: .9rem;
    }
    #frontpic #img {
        -webkit-animation: imgfirst 4s 3s ease forwards;
                animation: imgfirst 4s 3s ease forwards;
    }
    @-webkit-keyframes imgfirst {
        0% { transform: scale(1);}
        100% { transform: scale(1.5);}
    }
    @keyframes imgfirst {
        0% { transform: scale(1);}
        100% { transform: scale(1.5);}
    }
    #img h1 {
        -webkit-animation: textfirst 4s 3s ease forwards;
                animation: textfirst 4s 3s ease forwards;
    }
    @-webkit-keyframes textfirst {
        100% {transform: scale(1.7);opacity: 1;}
    }
    @keyframes textfirst {
        100% {transform: scale(1.7);opacity: 1;}
    }
    #fronttext {
      padding-top: 20px;
      background:  url('img/euleLogo-transparent-bearbeitet.png'), radial-gradient(ellipse 100% 50% at 0, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
      background-size: 70px, contain;
      background-repeat: no-repeat;
      background-position: 98% 12%, 0 0;
      flex-direction: column;
    }
    #fronttext button {
      position:relative;
      bottom: 10px;
      margin: 20px;
    }

}



#mapsec {
    background: rgb(11, 29, 10);
    display: flex;
    align-items: center;
    justify-content: center;     
}
#mapcont {    
    min-height: 95vh;
    width: 90%;
    background: radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
    box-shadow:  rgba(0, 0, 0, .5) -5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px, rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) -5px 5px 5px;    
    
}
#map {
    width: 90%;
    height: 77vh;
    max-height: 95%;   
    border-radius: 15px;
    border: 5px solid black; 
    box-shadow:  5px 5px 15px rgba(0, 0, 0, .5);
    margin: auto auto;
}

div.leaflet-popup-content-wrapper {
    cursor: pointer; 
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);    
}
div.leaflet-popup-tip{
  background-color: rgba(255, 255, 255, 0.7);
}
div.leaflet-tooltip-pane {
    z-index: 1000;
}
div.leaflet-popup-content-wrapper img {
    width: auto;
    height: 80px;
}


#changetiles {
    display: block;
    margin: 10px auto;
    background-color: darkgreen;
    border-radius: 10px;
    color: lightgoldenrodyellow;
}


#moretours {
    position: absolute;
    z-index: 10;
    display:grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    justify-content: center;
    align-items: start;
    bottom: 12px;
    font-family: 'Great Vibes', cursive;
    right: 75px;    
    font-size: 25px;   
    cursor: pointer;
}
#moretours a {
  text-decoration: none;
  color: #fafad2;
}
#moretours >svg { transition: transform .5s;transform: rotate(-10deg) translateY(10px);transform-origin: left;}
#moretours:hover >svg {
    transform: rotate(20deg) translateY(10px);
    transform-origin: left;
    transition: transform .5s;
}



#sidebar {
    position: relative;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.7);
    border: 2px solid black;
    border-radius: 8px;
    height: 85%;
    margin: 1% 3px auto auto ;
    width: 20%;
    min-width: 300px;
    z-index: 1700;
    color: black;
    opacity: 0;
    transition: opacity 1s;
    padding: 2%;    
    text-align: right;
    font-size: larger;
    display: none;
}
#sidebar p {  
    text-align: left;
}
#sidebar a {
  position: absolute;
  cursor: pointer;
}
.sidebarbtn {
   position: absolute;
   top: 10px;
   left: 10px;
   cursor: pointer;
   border: 2px solid black;
   font-weight: 600;
}
@media (max-width: 1200px){ 
    #mapcont {width: 99vw;}
    div.leaflet-popup-content-wrapper img {display: none;}
    #map { width: 98%; margin: 0; border-radius: 0;}
    #sidebar {width: 93%;height: 95%;}
    #moretours {right: 10px;  }
    #changetiles {margin: 20px;}

}




#touren2sec {
    display: flex;
    align-items: center;
    justify-content: center;    
}
#touren2cont {
    height: 98vh;
    width: 80vw;
}
#touren2h1, #touren2>div {
    background: radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
    box-shadow:  rgba(0, 0, 0, .5) -5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px, rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) -5px 5px 5px;    
    margin: 10px;
}
#touren2h1>h1{
  padding-top: 15px;
}
#touren2 {
    display: grid; 
    grid-template-columns: 1fr 1fr;
    justify-self: center; 
    justify-items: center;
}
#touren2>div {
    width: 97%;
    text-align: center;   
    min-height:39vh;  
}
#touren2>div:last-child{
  width: 98.5%;
  min-height: 39vh;
  grid-column: span 2;
}
#touren2>div>div {
  width: 90%;
  max-width: 600px;
  height: 92%;
  margin: 15px auto 5px;  
  background-size: cover;
  background-color: none;
  background-blend-mode:color-burn;
  transition: all .5s ease;
  border: 1px lightgoldenrodyellow solid;
}

#museumtour { background-image: url('img/museumstour-s.jpg');  }
#massgeschneidert { background-image: url('img/massgeschneidert-s.jpg');  }
#genusstour { background-image: url('img/genusstour-s.jpg');  }
#museumtour:hover,#museumtour:focus  { background-color: rgba(0, 0, 0, .7);  }
#massgeschneidert:hover, #massgeschneidert:focus { background-color: rgba(0, 0, 0, .7); }
#genusstour:hover, #genusstour:focus { background-color: rgba(0, 0, 0, .7);  }

#touren2 p {
  line-height: 1.7em;
  color: transparent;
  transition: color .5s ease;
  padding: 5px;
}
#touren2>div>p>span {
  font-size: larger;
}
#touren2 a {
  color: lightgoldenrodyellow;
}

#touren2>div>div:hover p, #touren2>div>div:focus p {
  color: lightgoldenrodyellow;
}


@media (max-width: 1200px) or (max-height: 800px) { 
  #touren2cont { width: 95%; height: auto;}

  #touren2 {
    align-items: center;
    justify-items: center;
  }
  #touren2>div {
        width: 90vw;
        max-width: 600px;
        height: 100%;
        grid-column: span 2;
  }
  #touren2>div>div {
    width: 90%;
    max-height: 100%;
  }
  #touren2h1>h1 {
        padding: 30px;
  }
}




.meinungencont {
  display: flex;
  justify-content:center;
  align-content: center;
  min-height: 90%;
  flex-wrap: wrap;
  margin-top: 20px;
}
.meinungenh1 {
  width: fit-content;
  background: radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
  box-shadow:  rgba(0, 0, 0, .5) -5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px, rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) -5px 5px 5px;
  transform: translateY(20px);  
  margin: 0 auto;
  padding: 20px 40px 10px 40px;  
}


.testimonial {
  margin: 10px 0;
}

.testimonial blockquote {
  margin: 0 80px 0;
  background: radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);      
  padding: 20px 60px;
  position: relative;
  border: none;
  border-radius: 8px;
  font-style: italic;
  width: 250px;
  box-shadow: rgba(0, 0, 0, .5) -5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px, rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) -5px 5px 5px;
}

.testimonial blockquote:before,
.testimonial blockquote:after {
  position: absolute;
  font-size: 80px;
  line-height: 1;
  
  font-style: normal;
}

.testimonial blockquote:before {
  content: "\201C";
  top: 10px;
  left: 10px;
}

.testimonial blockquote:after {
  content: "\201D";
  right: 10px;
  bottom: -0.5em;
}

.testimonial div {
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid rgb(19, 46, 17);
  margin: 0 0 0 160px;
 
  filter: drop-shadow(rgba(0, 0, 0, .5) 5px 5px 3px);
}

.testimonial p {
  margin: 8px 30px 0 120px;
  text-align: left;
}

@media (max-width:1600px) {                               /* versteckt die beiden letzten testimonials, wenn der screen kleiner als fullHD fullscreen ist */
  .meinungencont .testimonial:nth-last-child(-n+2) {
    display: none;
  }
  .meinungenh1 {
    width: 90vw;
    padding: 10px;
    text-align: center;
  }
}






#preisesec {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
#preisecont {
  height: 90vh;
  width: 40vw;
  justify-self: center;
}
#preisecont >div {
  background: radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
  box-shadow:  rgba(0, 0, 0, .5) -5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px, rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) -5px 5px 5px;    
  margin: 10px;
  text-align: left;
  padding: 10px 20px;
} 
#preise {
  min-height: 80%;
}
#preise hr {
  margin: 40px auto;
}
@media (max-width:1200px) {
  #preisesec>div {
    grid-column: span 2;
    width: auto;
    height: auto;
    margin: 10px 10px;
  }

}




#about{
    height: 95%;
    width: 90%;
    background: radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
    box-shadow:  rgba(0, 0, 0, .5) -5px -5px 5px, rgba(0, 0, 0, .5) 5px 5px 5px, rgba(0, 0, 0, .5) 5px -5px 5px, rgba(0, 0, 0, .5) -5px 5px 5px;    
    
    margin: 0 auto;

    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: -webkit-min-content auto -webkit-min-content;
    grid-template-rows: min-content auto min-content;     
    align-items: center;    
}
#about h1 {
    grid-column-start: 1;
    grid-column-end: span 2;
}
#about div {
    padding: 50px;
}
#aboutbild {
  width: 85%;
  box-shadow:  2px 2px 40px rgba(0, 0, 0, .7);
}
#about #austrianguide {
  position: absolute;
  top: 20px;
  right: 120px;
  box-shadow: 0 0 5px 10px white;
}


@media (max-width: 1200px) { 
    #about {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 80px;
        padding-bottom: 30px;
    } 
    #about div {
        padding: 10px;
    }
    #about #austrianguide {
      top: 10px;
      right: auto;      
    }
}
@media (max-height: 875px) and (min-width:1200px) {
  #about #austrianguide {
    top: 80px;
  }
}





footer {
  position:sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;    
  background-color: rgba(0, 0, 0, .5);
  z-index: 1000;
}  
footer a {
  margin: 0 1vw;
  font-size: small;
  cursor: pointer;
  text-decoration: none;
  color: var(--thumbBG);
  text-align: center;
}

.dialog {
  width: 90%;
  height: 90%;
  margin: auto;  
  color: #fafad2;
  background:  radial-gradient(ellipse 70% 70%, rgba(35,87,33,1) 0%,  rgb(15, 37, 13) 100%);
}
.dialog::-webkit-backdrop {
  background-color: rgba(0, 0, 0, .7)
}
.dialog::backdrop {
  background-color: rgba(0, 0, 0, .7)
}
.closebtn {
  position: fixed;
  top: 20px;
  right: 20px;
}

@media (max-width: 1200px) {
  footer {width: 100%;}
  footer a {font-size: xx-small;}
  .dialog h1 {
    font-size: 2em;
  }
  .dialog {
    width: 100%;
    height: 100%;
  }
}






/* -------------- Contact form -------------- */

#contact_form input:not([type="checkbox"])::after,
#contact_form textarea:required::after {
  content: " *";
  color: red;
  vertical-align: top;
}
#contact_form input:not(:placeholder-shown):valid,
#contact_form textarea:not(:placeholder-shown):valid {
  color: #fafad2;
}
#contact_form input:not(:placeholder-shown):invalid,
#contact_form textarea:not(:placeholder-shown):invalid {
  color: red;
}


.js-submitted input:valid,
.js-submitted textarea:valid {
  color: #fafad2;
}
.js-submitted input:invalid,
.js-submitted textarea:invalid {
  color: red;
}

.hidden {
  display: none;
}

button {
    overflow: visible;
  }
  
  button, select {
    text-transform: none;
  }
  
  button, input, select, textarea {
    color: #5A5A5A;
    font: inherit;
    margin: 0;
  }
  
  input {
    line-height: normal;
  }
  
  textarea {
    overflow: auto;
  }
  
  #container {
    border: solid 3px #fafad2;    
    width: 70%;
    margin: 0 auto;
    position: relative;
  }
  
  form {
    padding: 37.5px;
    margin: 20px 0;
  }
  
  #container h1 {
    color: #fafad2;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 7px;
    text-align: center;
  }
  
  .underline {
    border-bottom: solid 2px #fafad2;
    margin: 5px auto;
    width: 180px;
  }
  
  .icon_wrapper {
    margin: 40px auto 0;
    width: 100%;
  }
  
  .icon {
    display: block;
    fill: #fafad2;
    height: 50px;
    margin: 0 auto;
    width: 50px;
  }
  
  .email {
      float: right;
      width: 45%;
  }
  
  input[type='text'], [type='email'], select, textarea {
      background: none;
    border: none;
      border-bottom: solid 2px #fafad2;
      color: #fafad2;
      font-size: 1.000em;
    font-weight: 400;
    letter-spacing: 1px;
      margin: 0em 0 1.875em 0;
      padding: 0 0 0.875em 0;
    
      width: 100%;
      -ms-box-sizing: border-box;
      -o-box-sizing: border-box;
      box-sizing: border-box;
      transition: all 0.3s;
  }
  
  input[type='text']:focus, [type='email']:focus, textarea:focus {
      outline: none;
      padding: 0 0 0.875em 0;
  }
  
  .message {
      float: none;
  }
  
  .name {
      float: left;
      width: 45%;
  }
  
  select {   
    outline: none; 
  }
  
  select::-ms-expand {
    display: none;
  }
  
  .subject {
    width: 100%;
  }
  
  .telephone {
    width: 100%;
  }
  
  textarea {
      line-height: 150%;
      resize: none;
    width: 100%;
  }
  
  ::-webkit-input-placeholder {
      color: #fafad2;
  }
  
  :-moz-placeholder { 
      color: #fafad2;
      opacity: 1;
  }
  
  ::-moz-placeholder {
      color: #fafad2;
      opacity: 1;
  }
  
  :-ms-input-placeholder {
      color: #fafad2;
  }
  
  select option {
    background-color: #fafad2;
    color: darkgreen;
  }
  #form_button {
    background: none;
    border: solid 2px #fafad2;
    color: #fafad2;
    cursor: pointer;
    display: inline-block;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 0.875em;
    font-weight: bold;
    outline: none;
    padding: 20px 35px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-bottom: 25px;
  }
  
  #form_button:hover {
    background: #fafad2;
    color: darkgreen;
  }
  #form_button:disabled {
    background: grey;
  }
  
  .formquestion {
    display: flex;
    padding-top: 15px;
  }
  #question_button {
    height: 30px;
    margin-left: 10px;
    background: darkgreen;
    color: #fafad2;
  }


  @media screen and (max-width: 768px) {
    #container {
      margin: 0 auto;
      width: 95%;
    }
    #contact_form {
        margin: 20px 0;
    }
  }
  
  @media screen and (max-width: 480px) {
    #container h1 {
      font-size: 26px;
    }
    
    .underline {
      width: 68px;
    }
    
    #form_button {
      padding: 15px 25px;
    }
  }
  
  @media screen and (max-width: 420px) {
    #container h1 {
      font-size: 18px;
    }
    
    .icon {
      height: 35px;
      width: 35px;
    }
    
    .underline {
      width: 53px;
    }
    
    input[type='text'], [type='email'], select, textarea {
      font-size: 0.875em;
    }
  }



/* Accordion */

.accordion {
  position: relative;
  margin: 5px auto;
  width: 100%;
}

[id*=open-accordion], [id*=close-accordion] {  
  line-height: 20px;
  height: 20px;
  display: block;
  margin: 0 auto;
  position: relative;
  width: 99%;
}

[id*=close-accordion] {
  display: none;
}

.accordion a {
  color: #fafad2;
  font-weight: normal;  
  text-decoration: underline;
  text-shadow: none;
}
.accordion li {
  margin-bottom: 10px;
}

[id*=open-accordion]:after, [id*=close-accordion]:after {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fafad2;
  position: absolute;
  right: calc(100% - 200px);
  top: 5px;
  z-index: 999;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.target-fix {
  display: block;
  top: 0;
  left: 0;
  position: fixed;
}

.accordion-content {
 
  height: 0;
  margin: 0px auto 15px;
  padding: 0 2.5%;
  position: relative;
  overflow: hidden;
  width: 95%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}

.accordion span:target ~ .accordion-content {
  display: block;
  height: auto;
  padding-bottom: 5px;
}

.accordion span:target ~ [id*=close-accordion] {
  display: block;
}

.accordion span:target ~ [id*=open-accordion] {
  display: none;
}

.accordion span:target ~ [id*=close-accordion]:after {
  border-top: 10px solid #fafad2;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}