@charset "utf-8";
/* CSS Document */

:root {
    --white: #ffffff;
    --black:#000000;
    --blau: #04378b;
    --braviablau: #0074bb;
} 

.img-fluid {
    width: 100%;
    height: auto;
}

.center {
    text-align: center;
}

a[href] {
  color:var(--blau);
  font-weight: 500;
  text-decoration: none;
}

a[href^="tel:"] {
  color:var(--blau);
  font-weight: 500;
  text-decoration: none;
}

a[href^="mailto:"] {
  color:var(--blau);
  font-weight: 500;
  text-decoration: none;
}

a[href^="tel:"]:hover{
  color:var(--braviablau);
}

a[href^="mailto:"]:hover {
  color:var(--braviablau);
}

section {
    width: 100dvw;
    width: 100vw;
    width: 100%;    
}

#space {
  min-height: 14rem;
    background-color: white;
}
.preis-toronto {  color:#1a6017;}
.preis-t60 {  color:#8c1a3e;}

.text-white {
  color: var(--white)
}

.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}


@media (max-width: 992px){
    .image-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px){
    .image-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.bg-black {
    background-color: #000000;
}
.wrapper {
    max-width: 90rem;
    margin-inline: auto;
}
.titel {
  background-color: #000000;
  color: white;
  font-weight: 900;
  padding: 3rem 1rem 3rem 1rem;
  text-align: center;
}

/* hover title image*/
.hover-container {
    position: relative;
    width: 100%;
    cursor: pointer;
}
.image {
    display: block;
    width: 100%;
    height: auto;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(255, 255, 255, 0.9);
}
.hover-container:hover .overlay {
    opacity: 1;
}
.text {
    width: 100%;
    color: black;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (max-width: 560px){
    .text h2 {
        font-size: 1.9rem;
    }
}
@media screen and (min-width: 561px) and (max-width: 1399px) {
    p {
        line-height: 1.2rem;
    }
    .text h2 {
        font-size: 1.9rem;
    }
}

.text button {
    background-color: black;
    color: white;
    font-size: 1rem;
    padding: .5rem 1rem;
    border: none;
    border-radius: .5rem;
    -webkit-border-radius: .5rem;
    -moz-border-radius: .5rem;
    -ms-border-radius: .5rem;
    -o-border-radius: .5rem;
    margin-top: 1.4rem;
    cursor: pointer;
}

.text button:hover,
.text button:focus-visible {
    background-color:var(--braviablau) ;
}

@media (max-width: 1100px){
    .text {
        font-size: 1rem;
    }
}
@media (max-width: 830px){
    .text {
        font-size: 1rem;
        line-height: 1.1rem;         
    }
    .text button {
        margin-top: .5rem;
    }
}
@media (max-width: 560px){
    .text {
        font-size: 1.1rem;
        line-height: 1.2rem;         
    }
    .text button {
        margin-top: 1rem;
    }
}


/* ENDE hover title image*/


/* .foto-container {
    display: grid;
    grid-template-columns: repeat(6, minmax(200px, 1fr));
    grid-template-rows: auto;
    gap: 1rem;
} */

.foto-container img {
  width: 100%;
  height: auto;
}
@media (min-width: 560px){
  .foto-container {    
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}
@media (min-width: 1200px){
  .foto-container {    
    grid-template-columns: repeat(6, minmax(200px, 1fr));
  }
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 4rem;
    background-color: white;
    justify-content: space-evenly;
    padding: 1rem 1rem 3rem 1rem;
    border-top: 10px solid black;
}

.footer-container div:nth-child(3) {
  align-self: end;
}

@media (max-width: 992px){
    .footer-container{        
        gap: 2rem;
    }
}
@media (max-width: 930px){
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
        padding-left: 1rem;
    }
}













.obenkreis {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: rgba(51,51,51,0.6);		/* Hintergrundfarbe (Kreis) */
  -webkit-animation: anitop 1s;
          animation: anitop 1s;
}

@-webkit-keyframes anitop {
  0%{opacity:0}
	100%{opacity:1}
}

@keyframes anitop {
  0%{opacity:0}
	100%{opacity:1}
}

.obenpfeil-1, .obenpfeil-2 {
  border: solid #fff;						/* Farbe Pfeile */
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
	position:absolute;
  left:50%;
  margin-left:-6px;
	transition: all 0.2s ease;
}

.obenpfeil-1 {
	top:15px;
}

.obenpfeil-2 {
	top:22px;
}

.obenkreis:hover .obenpfeil-2 {
	top:8px;
}

#back-top2 {
  position: fixed;
  bottom: 5%;
  right:5%;
  z-index: 1000;
}

#back-top2  span{
  display: block;
}

@media (max-width: 1680px) {
  #back-top2 {
    bottom: 5px;
    right:5px;
    }
}
