* {
    padding: 0px;
    margin: 0px;
    font-family: 'Catamaran', sans-serif;
}

.menu {
    width: 100%;
    height: 50px;
    background-color: #A1002A;
}


.email {
   float: left;
   padding: 18px 20px 0px 0px;
}

.telefon {
    float: left;
    padding: 18px 0px 0px 0px;
}

.info img {
    width: 40px;
    float: left;
    padding: 10px;
}


/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

.slideshow-container img {
    height: calc(100vh - 177px);
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/*Burger menu*/
/* Add a black background color to the top navigation */
.topnav {
    background-color: #A1002A;
    overflow: hidden;
    text-transform: uppercase;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 16px;
  }
  
  /* Change the color of links on hover */
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Add an active class to highlight the current page */
  .active {
    background-color: #383838;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }

iframe {
    margin-top: 30px;
}

/*Location text under the google map*/
.location1 {
    text-transform: uppercase;
    color: #A1002A;
    text-align: center;
    font-weight: 600;
    font-size: 24px;
    margin: 100px 0px 20px 0px;
}

.location2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    margin: 0px 0px 20px 0px;
}

.location3 {
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    margin-bottom: 110px;
}

/*Footer*/
.footercontact {
    width: 100%;
    height: 200px;
    background: #A1002A;
    position: relative;
    margin: auto;
    color: #fff;
    text-align: center;
    line-height: 200px;
    font-size: 17px;
}

.footercontact img {
    width: 45px;
    vertical-align: middle;
}

.firstcontact_text, .secondcontact_text, .thirdcontact_text, .fourthcontact_text {
    padding-right: 20px;
}








































/*Mobile view*/
@media only screen and (max-width: 768px) {
    .info {
        display: none;
        height: 0px;
    }

    .slideshow-container img {
        height: 40vh;
    }

    .img1, .img3, .img4 {
        display: none;
    }

    .firstcontact_text, .thirdcontact_text, .fourthcontact_text {
        display: none;
    }

    .footercontact {
        height: 130px;
        line-height: 130px;
        font-size: 18px;
    }

    .footercontact img {
        width: 50px;
    }



    
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 768px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  /* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
  @media screen and (max-width: 768px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive a.icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }