/*   G E N E R A L   */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
    --primary: rgb(41, 66, 43);
    --white: #ffffff;
    --secondary: #E9EDC9;
}

/* Breakpoint: 576px+ */
@media (min-width: 36em) {}

/* Breakpoint: 768px+ */
@media (min-width: 48em) {}

/* Breakpoint: 992px+ */
@media (min-width: 62em) {}

/* Breakpoint: 1200px+ */
@media (min-width: 75em) {}

/* Breakpoint: 1400px+ */
@media (min-width: 87.5em) {}


html {
    font-size: 1em;  /* 16px */
    scroll-behavior: smooth;
}


body {
    display: grid;
    grid-template-columns: auto 0px;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
}


.container {
    max-width: 23rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 48em) {
    .container {
        max-width: 48rem;
    }
}

@media (min-width: 62em) {
    .container {
        max-width: 62rem;
    }
}

@media (min-width: 75em) {
    .container {
        max-width: 75rem;
    }
}

@media (min-width: 87.5em) {
    .container {
        max-width: 87.5rem;
    }
}


.heading {
    color: #0e300f;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 48em) {
    .heading {
        padding-top: 3rem;
    }
}

@media (min-width: 62em) {
    .heading {
        font-size: 1.75rem;
    }
}


.links {
    color: var(--white);
    text-decoration: none;
    font-size: 0.75rem;
}

@media (min-width: 62em) {
    .links {
        font-size: 1rem;
    }
}


.links:hover {
    color: #0e300f;
    text-decoration: underline;
}


.text-primary {
    font-weight: bold;
}

.h-space {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 48em) {
    .h-space {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}



/*   B U T T O N   */

.button {
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999999px;
    border: none;
    background-color: rgb(96, 144, 62);
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
    font-size: 0.75rem;
}

@media (min-width: 62em) {
    .button {
        -webkit-appearance: none;
        appearance: none;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.05rem;
    }
}

.button:hover {
    text-decoration: underline;
    background-color: rgb(55, 88, 32);
}

.ausgebucht{
    background-color: white;
    color: black;
}

.ausgebucht:hover{
    background-color: darkgrey;
    text-decoration: none;
}


.backtotop {
    --offset: 100px;

    position: sticky;
    bottom: 20px;
    margin-right: 20px;
    place-self: end;
    margin-top: calc(100vh + var(--offset));
    padding: 0.5rem 0.5rem;
}

.backtotop::before {
    content: "";
    position: absolute;
    inset: 30%;
    transform: translateY(20%) rotate(-45deg);
}


.backtotop__image {
    width: 2rem;
    height: 2rem;
}

@media (min-width: 48em) {
    .backtotop__image {
        width: 3rem;
        height: 3rem;
    }
}

@media (min-width: 62em) {
    .backtotop__image {
        width: 4rem;
        height: 4rem;
    }
}


::-webkit-scrollbar {
    width: 1.3rem;
}
  
::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: #797979;
    transition: all 0.5s ease-in-out;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #222224;
}
  
::-webkit-scrollbar-track {
    background: #f9f9f9;
}



/*   H E A D E R   */

.header {
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/header/Trauben_Weiss_mobile.jpg);
    background-position: 35% 50%;
}

@media (min-width: 48em) {
    .header {
        background-image: url(../images/header/Trauben_Weiss.jpg);
        background-position: 0% 50%;
        
    }
}


.header__heading {
    margin: 0;
    font-size: 1.5rem;
    padding-top: 10rem;
    padding-bottom: 0.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 48em) {
    .header__heading {
        padding-top: 11rem;
        font-size: 2.5rem;
    }
}

@media (min-width: 62em) {
    .header__heading {
        padding-top: 12rem;
        font-size: 3rem;
    }
}


.header__sub-heading {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.5rem;
    padding-bottom: 10rem;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    text-align: center;

}

@media (min-width: 48em) {
    .header__sub-heading {
        font-size: 1.75rem;
        padding-bottom: 11rem;
    }
}

@media (min-width: 62em) {
    .header__sub-heading {
        font-size: 2rem;
        padding-bottom: 12rem;
    }
}


.header__logo {
    display: block;
    width: 20rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

@media (min-width: 48em) {
    .header__logo {
        width: 25rem;
    }
}



/*   H E A D L I N E S   */

.heading__pre-text {
    display: block;
    font-size: 0.75rem;
    padding-bottom: 0.25rem;
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 48em) {
    .heading__pre-text {
        font-size: 0.9rem;
    }
}

@media (min-width: 62em) {
    .heading__pre-text {
        font-size: 1rem;
    }
}


.heading--centered {
    text-align: center;
    color: var(--white);
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}


.heading--right {
    color: var(--white)
}


.heading--weingueter {
    text-align: center;
    color: var(--white);
    text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
}


.heading--events{
    color: var(--white);
    padding-left: 0rem;
}

@media (min-width: 48em) {
    .heading--events{
        padding-left: 3rem;
    }
}



.heading__info {
    color: var(--white);
    margin: 0;
    padding-bottom: 0.25rem;
}


.data_impressum__headline {
    color: var(--white);
    padding-bottom: 2rem;
}


/*   Q U O T E   */

.quote {
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    color: rgb(255, 255, 255);
}


.quote__paragraph {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding-top: 3rem;
}

@media (min-width: 48em) {
    .quote__paragraph {
        font-size: 1.25rem;
        font-weight: 700;
        padding-top: 4rem;
    }
}

@media (min-width: 62em) {
    .quote__paragraph {
        font-size: 1.5rem;
        padding-top: 5rem;
    }
}

.quote__paragraph::before {
    content: "„";
}

.quote__paragraph::after {
    content: "“";
}


.quote__caption {
    text-transform: uppercase;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
    font-size: 0.75rem;
}

@media (min-width: 48em) {
    .quote__caption {
        padding-bottom: 4rem;
        font-size: 1rem;
    }
}

@media (min-width: 62em) {
    .quote__caption {
        padding-bottom: 5rem;
        font-size: 1.25rem;
    }
}



/*   B A C K G R O U N D   S T O R Y   */

.story {
    /*background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.5) 100%), 
    url(../images/story/black_mobile.jpg);
    background-size: 135% auto;
    background-position: 100% 35%;
    background-attachment: local, fixed;
    background-repeat: no-repeat, no-repeat;*/
    background-color: #222224;
    padding-top: 1rem;
}

@media (min-width: 48em) {
    .story {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.5) 100%), 
        url(../images/header/Trauben_Hand_0.jpg);
        background-size: 200% auto;
        background-position: 80% 0%;
        background-attachment: local, fixed;
        background-repeat: no-repeat, no-repeat;
    }
}

@media (min-width: 62em) {
    .story {
        background-size: 135% auto;
        background-position: 100% 35%;
    }
}


.story__container {
    padding-bottom: 1rem;
}

@media (min-width: 62em) {
    .story__container {
        padding-left: 3rem;
        padding-top: 2rem;
        padding-right: 3rem;
        padding-bottom: 2rem;
    }
}


@media (min-width: 48em) {
    .story__inner {
        padding-left: 60%;
        padding-bottom: 4rem;
    }
}


.story__storyline {
    margin: 0;
    color: rgb(255, 255, 255);
    font-size: 0.75rem;
    padding-bottom: 2rem;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 62em) {
    .story__storyline {
        font-size: 1rem;
        padding-bottom: 3rem;
    }
}



/*   W E I N G U E T E R   S L I D E R   */

.text-center {
    text-align: center;
}


.weingueter {
    padding-top: 1rem;
    padding-bottom: 2rem;
    background-color: var(--primary);
}
  
@media (min-width: 48em) {
    .weingueter {
      padding: 2rem 0;
    }
}

@media (min-width: 62em) {
    .weingueter {
      padding: 3rem 0;
    }
}

  
.weingueter .weingueter-slider {
    height: 28rem;
    padding: 1rem 0;
    position: relative;
}

@media (min-width: 48em) {
    .weingueter .weingueter-slider {
        height: 35rem;
        padding: 2rem 0;   
    }
}

  
.weingueter-slide {
    width: 14rem;
    height: 20rem;
    position: relative;
    filter: blur(2px);
}

@media (min-width: 48em) {
    .weingueter-slide {
        width: 18rem;
        height: 25rem;
    }
}


.weingueter-slide .weingueter-slide-img img {
    width: 14rem;
    height: 20rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

@media (min-width: 48em) {
    .weingueter-slide .weingueter-slide-img img {
        width: 18rem;
        height: 25rem;
    }
}

  
.swiper-slide-active {
    filter: blur(0px);
}
  

.weingueter-slide .weingueter-slide-content {
    position: absolute;
    padding: 0;
    margin: 0;
    left: -1rem;
    top: 0;
    right: 0;
    bottom: 15rem;
}


@media (min-width: 48em) {
    .weingueter-slide .weingueter-slide-content {
        position: absolute;
        padding: 0;
        margin: 0;
        left: -1rem;
        top: 0;
        right: 0;
        bottom: 19.5rem;
    }
}


  
.weingueter-slide-content .flagge {
    position: absolute;
    width: 2rem;
    height: 1.75rem;
    opacity: 0.9;
    bottom: -0.5rem;
    left: 2rem;
}

@media (min-width: 48em) {
    .weingueter-slide-content .flagge {
        width: 3.25rem;
        height: 2.5rem;
        bottom: 2rem;
        left: 14.75rem;
    }
}

  
.weingueter-slide-content .weingueter-slide-content-bottom {
    position: absolute;
    bottom: 1.8rem;
    left: 2rem;
    color: var(--white);
    font-size: 0.6rem;
}

@media (min-width: 48em) {
    .weingueter-slide-content .weingueter-slide-content-bottom {
        bottom: 2rem;
        font-size: 0.7rem;
    }
}

  
.weinregion {
    padding-top: 0.25rem;
    display: flex;
    gap: 1rem;
}


.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    display: none;
}
  

.weingueter-slider-control {
    position: relative;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
  

.weingueter-slider-control .swiper-button-next {
    left: 58% !important;
    transform: translateX(-58%) !important;
}
  
@media (max-width:990px) {
    .weingueter-slider-control .swiper-button-next {
      left: 70% !important;
      transform: translateX(-70%) !important;
    }
}
  
@media (max-width:450px) {
    .weingueter-slider-control .swiper-button-next {
      left: 85% !important;
      transform: translateX(-85%) !important;
    }
}
  
@media (max-width:990px) {
    .weingueter-slider-control .swiper-button-prev {
      left: 30% !important;
      transform: translateX(-30%) !important;
    }
}
  
@media (max-width:450px) {
    .weingueter-slider-control .swiper-button-prev {
      left: 15% !important;
      transform: translateX(-15%) !important;
    }
}
  

.weingueter-slider-control .slider-arrow {
    background: var(--secondary);
    font-size: 2.5rem;
    padding-bottom: 0.25rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    left: 42%;
    transform: translateX(-42%);
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
    color: var(--bg);
}

@media (min-width: 48em) {
    .weingueter-slider-control .slider-arrow {
        font-size: 2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}
  
  
.weingueter-slider-control .slider-arrow::after {
    content: '';
}

  
.weingueter-slider-control .swiper-pagination {
    position: relative;
    width: 20rem;
    bottom: 0.5rem;
}

@media (min-width: 48em) {
    .weingueter-slider-control .swiper-pagination {
        bottom: 0.25rem;
    }
}

  
.weingueter-slider-control .swiper-pagination .swiper-pagination-bullet {
    filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}
  
.weingueter-slider-control .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
}



/*   E V E N T S   */

.events {
    /*background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.5) 100%), 
    url(../images/story/black_mobile.jpg);
    background-size: 135% auto;
    background-position: 100% 35%;
    background-attachment: local, fixed;
    background-repeat: no-repeat, no-repeat;*/
    background-color: #222224;
}



@media (min-width: 48em) {
    .events {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.5) 100%), 
        url(../images/header/Trauben_Hand_0.jpg);
        background-size: 200% auto;
        background-position: 80% 0%;
        background-attachment: local, fixed;
        background-repeat: no-repeat, no-repeat;
    }
}

@media (min-width: 62em) {
    .events {
        background-size: 135% auto;
        background-position: 100% 35%;
    }
}


@media (min-width: 48em) {
    .events__flex {
        display: flex;
    }
}


@media (min-width: 48em) {
    .events__left {
        width: 50%;
        padding-left: 3rem;
        padding-top: 3rem;
        padding-right: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 62em) {
    .events__left {
        width: 56%;
    }
}

@media (min-width: 48em) {
    .events__right {
        width: 50%;
    }
}

@media (min-width: 62em) {
    .events__right {
        width: 44%;
        padding-top: 2rem;
    }
}


@media (min-width: 62em) {
    .events__inner {
        padding-bottom: 1rem;
        padding-right: 4%;
    }
}


.events__storyline {
    margin: 0;
    padding-left: 0rem;
    color: rgb(255, 255, 255);
    font-size: 0.75rem;
    padding-bottom: 1rem;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

@media (min-width: 48em) {
    .events__storyline {
        padding-left: 3rem;
    }
}

@media (min-width: 62em) {
    .events__storyline {
        font-size: 1rem;
        padding-bottom: 2rem;
    }
}



/*   E V E N T S - O V E R V I E W   */

.events__card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding-bottom: 3rem;
}

@media (min-width: 48em) {
    .events__card-container {
        padding-left: 1.5rem;
    }
}


.events__card {
    position: relative;
    height: 10rem;
    width: 8rem;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(0.3rem);
    backdrop-filter: blur(0.3rem);
    border-radius: 1rem;
    flex: 0 0 8rem;
    margin: 1rem;
    padding-top: 0.5rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);

    transition: transform 0.25s ease-in-out;
}

@media (min-width: 62em) {
    .events__card {
        height: 12rem;
        width: 9.5rem;
        flex: 0 0 9.5rem;
    }
}

.events__card:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.25);
}


.events__card-heading {
    margin: 0;
    font-size: 0.75rem;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    padding: 1rem;
}

@media (min-width: 62em) {
    .events__card-heading {
        font-size: 1rem;
        padding: 1.25rem;
    }
}


.events__card-date {
    margin: 0;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-size: 0.75rem;
    padding-bottom: 1rem;
}

@media (min-width: 62em) {
    .events__card-date {
        font-size: 1rem;
        padding-bottom: 1.25rem;
    }
}



/*   A K T U E L L E S   */

.aktuell {
    margin: 0;
    background-color: var(--primary);
    padding-top: 3rem;
}

@media (min-width: 75em) {
    .aktuell {
        padding-bottom: 4rem;
    }
}

.aktuell::after {
    content: "";
    display: block;
    width: 5.5rem;
    height: 0.1rem;
    background-color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    /*box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);*/
}

@media (min-width: 48em) {
    .aktuell::after {
        margin-top: 5rem;
    }
}

@media (min-width: 62em) {
    .aktuell::after {
        margin-top: 6rem;
        width: 40%;
        height: 0.2rem;
    }
}

.swiper {
    width: 100%;
    height: 300px;
}

.swiper-slide {
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 0.5rem;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.aktuelles2 {
    height: 25rem;
    width: 100%;
    border-radius: 0.5rem;
}

@media (min-width: 75em) {
  .aktuelles2 {
    height: 30rem;
      width: 90%;
  }
}





.aktuelles {
    height: 5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 5px 0;
    border-radius: 0;
}


@media (min-width: 48em) {
  .aktuelles {
      height: 7rem;
      width: 100%;
  }
}

@media (min-width: 75em) {
  .aktuelles {
      height: 8rem;
      width: 90%;
  }
}


.aktuelles .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.aktuelles .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.aktuelles-slide-content {
    position: absolute;
    height: 10rem;
    width: 100%;
    bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1rem 0 1rem;
   
    color: var(--white);
    text-align: left;
    background-color: rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(0.25rem);
    backdrop-filter: blur(0.25rem);

    font-size: 0.6rem;
}

@media (min-width: 48em) {
  .aktuelles-slide-content {
      height: 10rem;
      padding: 2rem 2rem 0 2rem;
      font-size: 0.75rem;
  }
}

@media (min-width: 62em) {
  .aktuelles-slide-content {
      height: 12rem;
      font-size: 0.9rem;
  }
}

@media (min-width: 75em) {
  .aktuelles-slide-content {
      height: 10rem;
      font-size: 1rem;
  }
}

@media (min-width: 87.5em) {
  .aktuelles-slide-content {
      height: 10rem;
  }
}


.aktuelles-header {
  font-size: 1rem;
  padding-bottom: 0.25rem;
}

@media (min-width: 75em) {
  .aktuelles-header {
    font-size: 1.25rem;
    padding-bottom: 0.5rem;
  }
}



/*   K O N T A K T   */

.contact {
    background-color: var(--primary);
    padding-bottom: 5rem;
    padding-top: 3rem;
}

@media (min-width: 48em) {
    .contact {
        padding-top: 4rem;
    }
}

@media (min-width: 62em) {
    .contact {
        padding-top: 5rem;
    }
}


.contact__logo {
    display: block;
    width: 17rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.5;
    padding-top: 0rem;
    margin-bottom: 2rem;
}

@media (min-width: 48em) {
    .contact__logo {
        padding: 0rem;
        width: 24rem;
        
    }
}

.contact__info-paragraph {
    margin: 0;
    font-weight: normal;
    font-size: 0.75rem;
    color: white;
    text-align: center;
}

@media (min-width: 62em) {
    .contact__info-paragraph {
        font-size: 0.9rem;
    }
}

.contact__info-phone-container {
    text-align: center;
}



.contact__info-phone {
    display: inline-block;
    color: #014153;
    font-size: 2rem;
    text-decoration: none;
}

.contact__info-phone:hover {
    text-decoration: underline;
}


@media (min-width: 62em) {
    .contact__info-phone {
        padding-bottom: 0rem;
    }  
}

.contact__icon-container {
    text-align: center;
}

.contact__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 62em) {
    .contact__row {
        margin: 0;
        padding-top: 0rem;
        padding-bottom: 0rem;
        display: flex;
        flex-direction: row;

        background-image: linear-gradient(90deg, 
            transparent 0%, transparent calc(50% - 0.125rem),
            rgba(255, 255, 255, 0.5) calc(50% - 0.125rem), rgba(255, 255, 255, 0.5) calc(50% + 0.125rem), 
            transparent calc(50% + 0.125rem));
        
    }
}

@media (min-width: 62em) {
    .contact__info {
        flex: 0 0 50%;
        padding-top: 0rem;
        margin: 0;
        
    }
}


@media (max-width: 62rem) {
    .contact__info::after {
        content: "";
        display: block;
        width: 5.5rem;
        height: 0.1rem;
        background-color: rgba(255, 255, 255, 0.5);
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
        /*box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);*/
    }
}

.contact__info-right {
    padding-top: 2rem;
    font-size: 0.75rem;
    text-align: center;
}

@media (min-width: 62em) {
    .contact__info-right {
        font-size: 0.9rem;
        padding-top: 3rem;
        padding-left: 10rem;
        text-align: center;
    }
}


.contact__info-paragraph-right {
    color: var(--white);
    padding-bottom: 2.5rem;
}

@media (max-width: 62em) {
    .contact__map::before {
        content: "";
        display: block;
        width: 5.5rem;
        height: 0.1rem;
        background-color: rgba(255, 255, 255, 0.5);
        margin-left: auto;
        margin-right: auto;
        margin-top: 3rem;
        box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
    }
}

.contact__map-input {
    width: 20rem;
    height: 20rem;
    margin-top: 3rem;
    border: 0;
    border-radius: 1rem;
}

@media (min-width: 48em) {
    .contact__map-input {
        width: 25rem;
        height: 25rem;
    }
}

@media (min-width: 62em) {
    .contact__map-input {
        margin-top: 2rem;
    }
}


/*   F O O T E R   */

.main-footer {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding-bottom: 2rem;
}

/* .main-footer::before {
    content: "";
    display: block;
    width: 5.5rem;
    height: 0.1rem;
    background-color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}  */

.footer-links{
    margin-left: 1rem;
    margin-right: 1rem;
}



/*   D A T E N S C H U T Z   */

.data_impressum {
    background-color: var(--primary);
}

.data_impressum__paragraph {
    font-size: 0.75rem;
    color: var(--white);
    padding-bottom: 3rem;
}

@media (min-width: 62em) {
    .data_impressum__paragraph {
        font-size: 1rem;
    }
}


/*   I M P R E S S U M   */

.impressum__table {
    color: var(--white);
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.table_label {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-right: 5rem;
    font-weight: 600;
}

.list {
    color: var(--white);
    padding-bottom: 0.5rem;
}

.list__head {
    padding-bottom: 0.75rem;
    margin-left: 1.5rem;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    margin-top: 3rem;
}

.sub {
    margin-left: 2.5rem;
}

.sub__sub {
    margin-left: 2.5rem;
    margin-top: 0rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.sub__sub__sub {
    margin-left: 3.25rem;
}



/*   I F R A M E S   */

