 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    min-width: 100vw;
    max-width: 100vw;
    /* overflow-x: hidden; */
    padding-top: 3rem;
    font-size: 1rem;
}

@media (max-width: 600px) and (orientation: portrait) {
    html, body {
    min-width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 3.3vh;
    font-size: 1rem;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    html, body {
    min-width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 4.0vw;
    font-size: 18px;
}
}

.info-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 35rem; 
  width: calc(100% - 2rem); 
  margin: 2rem 0 2rem 2rem;
  background-color: rgba(230, 74, 74, 0.85);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: white;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
}

.info-box-content,
.info-box-content-red {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.5rem 0;
  color: white;
}

@media (max-width: 600px) {
  .info-box {
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 0.4rem;
  }

  .info-box-content,
  .info-box-content-red {
    font-size: 1.1rem;
    margin: 0.3rem 0;
  }
}

@media (min-width: 601px) and (max-width: 1080px) {
  .info-box {
    max-width: 90%;
    margin: 1.5rem auto;
    padding: 1.2rem;
  }

  .info-box-content,
  .info-box-content-red {
    font-size: 1.2rem;
  }
}


header {
    height: 5.9375rem;
    background-color: white;
    display: flex;
    align-content: center;
    justify-content: space-around;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) and (orientation: portrait) {
    header {
    height: 7.3vh;
    background-color: white;
    display: flex;
    align-content: center;
    justify-content: space-around;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    header {
    height: 8.3vw;
    background-color: white;
    display: flex;
    align-content: center;
    justify-content: space-around;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}
}

.header-text {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.875rem;
    margin-top: 1.5rem;
}

@media (max-width: 600px) and (orientation: portrait) {
    .header-text {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3vw;
    margin-top: 2vw;
    margin-left: 2vw;
    min-width: 30vw;
    max-width: 30vw;
    margin-right: -10vw;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .header-text {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2vw;
    margin-top: 1vw;
    margin-left: 2vw;
}
}

.header-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: 10%;
    margin-right: 3.5%;
}

.header-link1 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.125rem;
    color: #004e89;
    text-decoration: none; 
}

@media (max-width: 600px) and (orientation: portrait) {
    .header-link1 {
    font-size: 0px;
    color: white; 
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .header-link1 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2vw;
    color: #004e89;
    text-decoration: none;  
}
}

.header-link1:hover {
    text-decoration: underline; 
}

.header-link2 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.125rem;
    margin-left: 15%;
    margin-right: 15%;
    color: #004e89;
    text-decoration: none;
}

@media (max-width: 600px) and (orientation: portrait) {
    .header-link2 {
    font-size: 0px;
    color: white; 
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .header-link2 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2vw;
    margin-left: 5vw;
    margin-right: 5vw;
    color: #004e89;
    text-decoration: none;
}
}

.header-link2:hover {
    text-decoration: underline; 
}

.btn-top {
    background-color: white;
    color: black;
    padding: 0.625rem 0px;
    cursor: pointer;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.0625rem;
    width: 10%;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 11.875rem;
    max-width: 13.75rem;
    margin-top: -1%;
}

@media (max-width: 600px) and (orientation: portrait) {
    .btn-top {
    background-color: white;
    color: black;
    padding: 0rem;
    cursor: pointer;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4vw;
    width: 45vw;
    height: 5.5vh;
    border: 0.125rem solid;
    border-color: #004e89;
    margin-top: 0vh;
    margin-right: 8vh; 
    max-height: none;
    min-width: 0rem;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .btn-top {
    background-color: white;
    color: black;
    padding: 0rem;
    cursor: pointer;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2vw;
    width: 30vw;
    height: 5.5vw;
    border: 0.125rem solid;
    border-color: #004e89;
    margin-top: 0vh;
    margin-right: 2vw; 
    max-height: none;
    min-width: 0rem;
}
}

.btn-top:hover {
    background-color: #004e89;
    color: white;
    border: 0.125rem solid;
    border-color: white;
}

.btn1 {
    background-color: white;
    color: black;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    margin-top: 2.5rem;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    width: 10%;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 11.875rem;
}

.btn1:hover {
    background-color: #004e89;
    color: white;
    border: 0.125rem solid;
    border-color: white;
}

.btn2 {
    background-color: white;
    color: black;
    padding: 0.625rem 1.25rem;
    cursor: pointer;
    margin-top: 1rem;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.25rem;
    width: 10%;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 13.75rem;
}

.btn2:hover {
    background-color: #004e89;
    color: white;
    border: 0.125rem solid;
    border-color: white;
}

@media (max-width: 600px) and (orientation: portrait) {
    .btn1 {
    background-color: white;
    color: black;
    padding: 2.5vw 0rem;
    cursor: pointer;
    margin-top: 4vw;
    margin-bottom: 20vw;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4.7vw;
    width: 10%;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 52vw;
    max-height: 15vw;
}

.btn2 {
    background-color: white;
    color: black;
    padding: 2.5vw 0rem;
    cursor: pointer;
    margin-top: 4vw;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 4.6vw;
    width: 10%;
    max-width: none;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 57vw;
    max-height: 15vw;
}
}

@media (min-width: 600px) and (max-width: 1080px) and (orientation: landscape) {
    .btn1 {
    text-align: center;
    background-color: white;
    color: black;
    padding: 0vw 0rem;
    cursor: pointer;
    margin-top: 6vw;
    margin-bottom: 20vw;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.4vw;
    width: 10%;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 27vw;
    min-height: 6.5vw;
}

.btn2 {
    background-color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: black;
    padding: 0vw 0rem;
    cursor: pointer;
    margin-top: 3vw;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.3vw;
    width: 10%;
    max-width: none;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 27vw;
    min-height: 6.5vw;
}
}

@media (min-width: 600px) and (max-width: 1080px) and (orientation: portrait) {
    .btn1 {
    text-align: center;
    background-color: white;
    color: black;
    padding: 0vw 0rem;
    cursor: pointer;
    margin-top: 5vw;
    margin-bottom: 20vw;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.4vw;
    width: 10%;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 27vw;
    min-height: 6.5vw;
}

.btn2 {
    background-color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: black;
    padding: 0vw 0rem;
    cursor: pointer;
    margin-top: 2vw;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.3vw;
    width: 10%;
    max-width: none;
    border: 0.125rem solid;
    border-color: #004e89;
    min-width: 27vw;
    min-height: 6.5vw;
}
}

.picture-stelle {
    background: url('/IMG_05.PNG') no-repeat center center/cover;
    height: 46.875rem;
    display: flex;
    position: relative;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
}

@media (max-width: 600px) and (orientation: portrait) {
    .picture-stelle {
    background: url('/IMG_08.PNG') no-repeat center center/cover;
    height: 24vh;
    width: 100vw;
    display: flex;
    position: relative;
    justify-content: flex-end;
    flex-direction: column;
    transform: translateX(0rem);
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .picture-stelle {
    background: url('/IMG_08.PNG') no-repeat center center/cover;
    height: 38vw;
    width: 100vw;
    display: flex;
    position: relative;
    justify-content: flex-end;
    flex-direction: column;
    transform: translateX(0rem);
}
}

.Dienstleistungen {
    padding: inherit;
    margin-left: 16%;
    margin-right: 16%;
    justify-content: space-around;
    flex-wrap: wrap;
}

@media (max-width: 600px) and (orientation: portrait) {
    .Dienstleistungen {
    display: inline-block;
    justify-content: space-around;
    padding: none;
    margin-left: 0%;
    margin-right: 0%;
    flex-wrap: nowrap;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .Dienstleistungen {
    display: inline-block;
    justify-content: space-around;
    padding: none;
    margin-left: 0%;
    margin-right: 0%;
    flex-wrap: nowrap;
}
}

.boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 10vh;
    margin-bottom: 10vw;
    
}

.title-D {
    height: auto;
    min-height: 5.625rem;
    max-height: 10.625rem;
    align-content: center;
    font-size: 340%;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    background: linear-gradient(to right, #f1f1f1 -160%,#004e89 50%,  #f1f1f1 250%);
    justify-content: center;
    min-width: 100%;
    display: flex;
    color: white;
}

@media (max-width: 600px) and (orientation: portrait) {
   .title-D {
    height: auto;
    min-height: 10.5vh;
    max-height: 0vh;
    align-content: center;
    font-size: 7.5vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    line-height: 1.25;
    font-style: normal;
    background: linear-gradient(to right, #f1f1f1 -160%,#004e89 50%,  #f1f1f1 250%);
    justify-content: center;
    min-width: 100vw;
    display: flex;
    color: white;
}   
}

@media (min-width: 600px) and (max-width: 1080px) {
   .title-D {
    height: auto;
    min-height: 6.1vw;
    max-height: 0vh;
    align-content: center;
    font-size: 4.5vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    line-height: 1.25;
    font-style: normal;
    background: linear-gradient(to right, #f1f1f1 -160%,#004e89 50%,  #f1f1f1 250%);
    justify-content: center;
    min-width: 100vw;
    display: flex;
    color: white;
}   
}

@media screen and (max-width: 375px) {
  .title-D {
    height: auto;
    min-height: 12.3vh;
    max-height: 0vh;
    align-content: center;
    font-size: 7.5vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    line-height: 1.25;
    font-style: normal;
    background: linear-gradient(to right, #f1f1f1 -160%,#004e89 50%,  #f1f1f1 250%);
    justify-content: center;
    min-width: 100vw;
    display: flex;
    color: white;
  }
}
.HU-AU {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.5rem;
    color: black;
    transform: translateY(-25%);
    text-align: center;
}

@media (max-width: 600px) and (orientation: portrait) {
    .HU-AU {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 5.5vw;
    line-height: 1.1;
    color: black;
    transform: translateY(-1vw);
    text-align: center;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .HU-AU {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.5vw;
    line-height: 1.1;
    color: black;
    transform: translateY(-1vw);
    text-align: center;
}
}

.zeichen1 {
    display: inline-block;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2.5rem;
    color: black;
    text-align: center;
}

@media screen and (max-width: 600px) and (orientation: portrait){
.zeichen1 {
    display: none;
}
}

.zeichen2 {
    display: none;
}

@media screen and (max-width: 600px) and (orientation: portrait){
.zeichen2 {
    text-align: center;
    display: grid;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 5.5vw;
    color: black;
}
}

.big-picture-box {
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    text-align: center;
    height: auto;
    min-width: 18.75rem;
    max-width: 721.875rem;
    max-height: 20.625rem;
    display: flex;
    justify-content: center;
    transform: translateY(-19%);
    margin-bottom: 1rem;
}

.picture-D0 {
    transform: scale(.6);
    width: 23%;
    height: 100%;
}

@media (max-width: 600px) and (orientation: portrait) {
    .picture-D0 {
    width: 82vw;
    height: 100%;
    transform: scale(.5) translateY(0%);
}
  .big-picture-box {
    background-color: rgba(0, 0, 0, 0);
    width: 100vw;
    text-align: center;
    height: auto;
    min-width: none;
    max-width: none;
    max-height: none;
    display: flex;
    justify-content: center;
    transform: translateY(-13vw);
    margin-bottom: 1rem;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .picture-D0 {
    width: 49vw;
    height: 100%;
    transform: scale(.5) translateY(0%);
}
  .big-picture-box {
    background-color: rgba(0, 0, 0, 0);
    width: 100vw;
    text-align: center;
    height: auto;
    min-width: none;
    max-width: none;
    max-height: none;
    display: flex;
    justify-content: center;
    transform: translateY(-8vw);
    margin-bottom: 1rem;
}
}

.pictures-section1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 84.375rem;
    transform: translateY(-22%);
    overflow: hidden;
}

.pictures-section2 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 84.375rem;
    overflow: hidden;
}

@media (max-width: 600px) and (orientation: portrait){
    .pictures-section1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    min-width: 95vw;
    transform: translateY(-23vh);
}
    .pictures-section2 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    min-width: 95vwm;
    transform: translateY(0%);
}
}

@media (min-width: 600px) and (max-width: 1080px){
    .pictures-section1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    min-width: 95vw;
    transform: translateY(-25vw);
}
    .pictures-section2 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    min-width: 95vwm;
    transform: translateY(0%);
}
}

.pictures-D {
    background-color: white;
    text-align: center;
    width: 30%;
    max-height: 15.625rem;
    border: 0.15rem solid;
    border-color: #004e89;
    margin-top: 5%;
    flex-direction: column;
    display: block;
    box-sizing: border-box;
}

@media (max-width: 600px) and (orientation: portrait) {
    .pictures-D {
    background-color: white;
    text-align: center;
    width: 30.2vw;
    height: 28vw;
    max-height: 15.625rem;
    border: 0.15rem solid;
    border-color: #004e89;
    margin-top: 4.5%;
    overflow: hidden;
}

}

@media (min-width: 600px) and (max-width: 1080px) {
    .pictures-D {
    background-color: white;
    text-align: center;
    width: 30.2vw;
    height: 28vw;
    max-height: 15.625rem;
    border: 0.15rem solid;
    border-color: #004e89;
    margin-top: 4.5%;
    overflow: hidden;
    }
}

.picture-D1 {
    height: 100%;
    transition: transform 0.2s ease;
    object-fit: cover;
}

.picture-D2 {
    height: 100%;
    transition: transform 0.2s ease;
    object-fit: cover;
}

.picture-D3 {
    height: 80%;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(1rem);
}

.picture-D4 {
    height: 80%;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(1.3rem);
}

.picture-D5 {
    height: 100%;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-3rem);
}

.picture-D5-2 {
    height: 90%;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-12rem);
}

.picture-D6 {
    height: 100%;
    transition: transform 0.2s ease;
    object-fit: cover;
}

@media (max-width: 600px) and (orientation: portrait) {
.picture-D1 {
    height: 26vw;
    transition: transform 0.2s ease;
    object-fit: cover;
}

.picture-D2 {
    height: 26vw;
    transition: transform 0.2s ease;
    object-fit: cover;
}
  .picture-D3 {
    height: 24.3vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-0.2rem);
}

.picture-D4 {
    height: 22.4vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(0.5vw);
}

.picture-D5 {
    height: 23.9vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-4.7vw);
}

.picture-D5-2 {
    height: 23.9vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-20.4vw) translateX(0.3vw);
}
  .picture-D6 {
    height: 24.3vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-0.3rem);
}
}

@media (min-width: 600px) and (max-width: 1080px) {
.picture-D1 {
    height: 26vw;
    transition: transform 0.2s ease;
    object-fit: cover;
}

.picture-D2 {
    height: 26vw;
    transition: transform 0.2s ease;
    object-fit: cover;
}
  .picture-D3 {
    height: 24.3vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-0.2rem);
}

.picture-D4 {
    height: 22.4vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(0.5vw);
}

.picture-D5 {
    height: 23.9vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-4.7vw);
}

.picture-D5-2 {
    height: 23.9vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-20.4vw) translateX(0.3vw);
}
  .picture-D6 {
    height: 24.3vw;
    transition: transform 0.2s ease;
    object-fit: cover;
    transform: translateY(-0.3rem);
}
}

.picture-text {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.875rem;
    color: black;
    text-align: center;
    transform: translateY(0px);
}

.picture-text2 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.875rem;
    color: black;
    text-align: center;
    transform: translateY(0px);
}

.picture-text3 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.875rem;
    color: black;
    text-align: center;
    transform: translateY(3rem);
}

.picture-text4 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.875rem;
    color: black;
    text-align: center;
    transform: translateY(3rem);
}

.picture-text5 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.875rem;
    color: black;
    transform: translateY(-14rem);
    text-align: center;
}

.picture-text6 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.875rem;
    text-align: center;
    color: black;
    transform: translateY(0px);
}

.more-info {
    color: black;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.0625rem;
    transform: translateX(1.7%);
    text-align: left;
    margin-top: 6%;
}

@media (max-width: 600px) and (orientation: portrait) {
    .more-info {
    width: 95vw;
    max-width: 95vw;
    color: black;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 2.7vw;
    transform: translateX(0.4rem);
    text-align: left;
    margin-top: 6vw;
    margin-right: 0%;
}

.picture-text {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-1.7rem);
}

.picture-text2 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-1.7rem);
}

.picture-text3 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-1.2rem);
}

.picture-text4 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-2.2vw);
}

.picture-text5 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    transform: translateY(-29vw);
    text-align: center;
}

.picture-text6 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    text-align: center;
    color: black;
    transform: translateY(-1.1rem);
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .more-info {
    width: 95vw;
    max-width: 95vw;
    color: black;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    font-size: 2.7vw;
    transform: translateX(0.4rem);
    text-align: left;
    margin-top: 6vw;
    margin-right: 0%;
}

.picture-text {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-6vw);
}

.picture-text2 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-6vw);
}

.picture-text3 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-4vw);
}

.picture-text4 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    text-align: center;
    transform: translateY(-2.2vw);
}

.picture-text5 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    color: black;
    transform: translateY(-28vw);
    text-align: center;
}

.picture-text6 {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.3vw;
    text-align: center;
    color: black;
    transform: translateY(-4vw);
}
}

.fragen {
    padding: inherit;
    margin-left: 16%;
    margin-right: 16%;
    margin-top: 4%;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3.125rem;
    margin-bottom: 4%;
}

.fragen-ue {
    color:black;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.1875rem;
    text-align: center;
    
}

.fragen-ue2 {
    color:black;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.375rem;
    text-align: center;
    transform: translateY(12.5rem);
    
}

@media (max-width: 600px) and (orientation: portrait) {
    .fragen-ue2 {
    display: none;
    color: rgba(0, 0, 0, 0);
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.375rem;
    text-align: center;
    transform: translateY(12.5rem);
    
}
  .fragen-ue {
    color:black;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 8vw;
    text-align: center;
    
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .fragen-ue2 {
    display: none;
    color: rgba(0, 0, 0, 0);
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.375rem;
    text-align: center;
    transform: translateY(12.5rem);
    
}
  .fragen-ue {
    color:black;
    font-family: "Kanit", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5vw;
    text-align: center;
    
}
}


.frage-bogen {
    width: 100%;
    max-width: 52%;
    margin: auto;
    justify-content: center;
    transform: translateY(-30%);
}

i {
    margin-right: 1%
}

.frage-bogen-obj-text {
   color: black;
    font-size: 160%;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal; 
    width: 300%;
}

.frage-bogen-Inhalt-text {
   color: black;
    font-size: 130%;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal; 
    width: 300%;
}

.frage-bogen-obj{
    border-bottom: 0.125rem solid #004e89;
    padding: 0.9375rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frage-bogen-obj i {
    transition: transform 0.3s;
    transform: rotate(-90deg);
}

.frage-bogen-obj.active i {
    transform: rotate(0deg);
}

.frage-bogen-inhalt {
    display: flex;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    padding-left: 1.25rem;
    color: black;
}

.frage-bogen-obj.active + .frage-bogen-inhalt {
    max-height: 12.5rem;
}

.fragen-hessen {
    justify-content: left;
    margin-top: 3.5%;
}

.fragen-hessen-link {
    font-size: 130%;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    color: #004e89;
    text-decoration: none;
}

.fragen-hessen-link:hover {
    color:#004e89;
    text-decoration: underline;
}

@media (max-width: 600px) and (orientation: portrait) {
    .frage-bogen {
    width: 85vw;
    max-width: 85vw;
    margin: auto;
    margin-top: 50vh;
    justify-content: center;
    transform: translateY(0vh);
}
    .frage-bogen-obj{
    border-bottom: 0.125rem solid #004e89;
    padding: 0.9375rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 90%;
}
  .frage-bogen-obj-text {
   color: black;
    font-size: 5.5vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal; 
    width: 300%;
}

.frage-bogen-Inhalt-text {
   color: black;
    font-size: 4.3vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal; 
    width: 300%;
}
  .fragen-hessen {
    justify-content: left;
    margin-top: 3.5%;
}

.fragen-hessen-link {
    font-size: 6vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    color: #004e89;
    text-decoration: none;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    .frage-bogen {
    width: 85vw;
    max-width: 85vw;
    margin: auto;
    margin-top: -30vw;
    justify-content: center;
    transform: translateY(-50vw);
}
    .frage-bogen-obj{
    border-bottom: 0.125rem solid #004e89;
    padding: 0.9375rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 90%;
}
  .frage-bogen-obj-text {
   color: black;
    font-size: 3.3vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal; 
    width: 300%;
}

.frage-bogen-Inhalt-text {
   color: black;
    font-size: 3vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal; 
    width: 300%;
}
  .fragen-hessen {
    justify-content: left;
    margin-top: 3.5%;
}

.fragen-hessen-link {
    font-size: 2.5vw;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    color: #004e89;
    text-decoration: none;
}
}

.rectangle-section {
    padding: inherit;
    margin-left: 16%;
    margin-right: 16%;
    display: flex;
    justify-content: space-around;
    padding: 3.125rem 0;
    position: relative;
    z-index: 1;
    background-position: top;
    height: 43.75rem; 
    transform: translateY(-29%);
}

.rectangle-balken {
    width: 0.1875rem;
    height: auto;
    background-color: dimgrey;
}

.rec-pic1{
    height: 12.5rem;
    margin-bottom: 2rem;
}

.rec-pic2{
    height: 12.5rem;
    margin-bottom: 1.875rem;
}

.rec-text{
    color: ghostwhite;
    font-size: 1.125rem;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    
}

.rectangle1 {
    background-color: #004e89;
    color: #fff;
    width: 20%;
    height: 90%;
    padding: 2.5rem;
    text-align: center;
    margin: auto;
    min-width: 25rem;
    transform: translateX(0%);
    opacity: 1;
}

.rectangle2 {
    background-color: #004e89;
    color: #fff;
    width: 20%;
    height: 90%;
    padding: 2.5rem;
    text-align: center;
    margin: auto;
    min-width: 25rem;
    transform: translateX(0%);
}

.rectangle h2 {
    margin-bottom: 1.25rem;
    color: orange;
}

.rectangle p {
    margin-bottom: 1.25rem;
}

@media (max-width: 599px) and (orientation: portrait) {
    .rectangle-section {
    padding: inherit;
    margin-left: 0%;
    margin-right: 0%;
    display: grid;
    justify-content: space-around;
    padding: 0rem 0;
    position: relative;
    z-index: 1;
    background-position: top;
    height: 150vw; 
    transform: translateY(-28vw);
    }
    
    .rectangle1 {
    background-color: #004e89;
    color: #fff;
    width: 85vw;
    min-height: 125vw;
    padding: 7vw;
    text-align: center;
    margin: auto;
    min-width: 0rem;    
    transform: translateY(0%);
    opacity: 1;
    margin-bottom: 5vh;
}

.rectangle2 {
    background-color: #004e89;
    color: #fff;
    width: 85vw;
    height: 110vw;
    padding: 7vw;
    text-align: center;
    margin: auto;
    min-width: 0rem;
    transform: translateX(0%);
}
.rec-text{
    color: ghostwhite;
    font-size: 4.1vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    
}
.rec-pic1{
    height: 45vw;
    margin-bottom: 5vw;
}

.rec-pic2{
    height: 45vw;
    margin-bottom: 1vw;
}
}

@media (min-width: 600px) and (max-width: 1080px) and (orientation: landscape) {
    .rectangle-section {
    padding: inherit;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    justify-content: space-around;
    padding: 0rem 0;
    position: relative;
    z-index: 1;
    background-position: top;
    height: 150vw; 
    transform: translateY(-23vw);
    }
    
.rectangle1 {
    background-color: #004e89;
    color: #fff;
    width: 20%;
    height: 65vw;
    padding: 2.5rem;
    text-align: center;
    margin: auto;
    min-width: 25rem;
    transform: translateY(-37vw);
    opacity: 1;
}

.rectangle2 {
    background-color: #004e89;
    color: #fff;
    width: 20%;
    height: 65vw;
    padding: 2.5rem;
    text-align: center;
    margin: auto;
    min-width: 25rem;
    transform: translateY(-37vw);
}
.rec-text{
    color: ghostwhite;
    font-size: 2.1vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    
}
.rec-pic1{
    height: 25vw;
    margin-bottom: 5vw;
}

.rec-pic2{
    height: 27vw;
    margin-bottom: 3vw;
}
.rectangle-balken {
    width: 0.1875rem;
    height: 50%;
    background-color: dimgrey;
}
}

@media (min-width: 600px) and (max-width: 1080px) and (orientation: portrait) {
    .rectangle-section {
    padding: inherit;
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    justify-content: space-around;
    padding: 0rem 0;
    position: relative;
    z-index: 1;
    background-position: top;
    height: 150vw; 
    transform: translateY(-23vw);
    }
    
.rectangle1 {
    background-color: #004e89;
    color: #fff;
    width: 20%;
    height: 67vw;
    padding: 4vw;
    text-align: center;
    margin: auto;
    min-width: 45vw;
    transform: translateY(-37vw);
    opacity: 1;
}

.rectangle2 {
    background-color: #004e89;
    color: #fff;
    width: 20%;
    height: 67vw;
    padding: 4vw;
    text-align: center;
    margin: auto;
    min-width: 45vw;
    transform: translateY(-37vw);
}
.rec-text{
    color: ghostwhite;
    font-size: 2vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
    
}
.rec-pic1{
    height: 25vw;
    margin-bottom: 5vw;
}

.rec-pic2{
    height: 27vw;
    margin-bottom: 3vw;
}
.rectangle-balken {
    width: 0.1875rem;
    height: 50%;
    background-color: dimgrey;
}
}


.infos{
    display: inline-block;
    justify-content: left;
    background-color: grey;
    background-color: rgba(255, 255, 255, 0.8);
    width: auto;
    min-width: 11.2vw;
    max-width: 11.2vw;
    height: auto;
    max-height: 37.5rem;
    min-height: 6.25rem;
    margin-bottom: 0%;
    margin-left: 0%;
    padding: 0.625rem;
}

.info-title{
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1vw;
    display: flex;
    margin-left: 0.3vw;
}

@media screen and (max-width: 600px) and (orientation: portrait){
.infos{
    display: none;
}

.info-title{
    display: none;
}
}

@media screen and (min-width: 600px) and (max-width: 1024px){
.infos{
    display: none;
}

.info-title{
    display: none;
}
}

.qr-code-web{
    display: flex;
    width: 10vw;
    height: auto;
}

.qr-code-section {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80vw;
}

.qr-code {
    width: 50vw;
    height: auto;
}

.qr-text {
    color: black;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.0625rem;
    transform: translateX(1.7%);
    text-align: left;
    margin-top: 0%;
}

@media screen and (max-width: 600px) and (orientation: portrait) {
    .qr-code-section {
    display: grid;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: auto;
    transform: translateY(80vw);
    margin-left: 16.5vw;
}
.qr-text {
    width: 95vw;
    max-width: 95vw;
    color: black;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 5vw;
    text-align: left;
    margin-top: 0%;
    margin-right: 0%;
}
  .qr-code {
    width: 50vw;
    height: auto;
    margin-left: 16.5vw;
    margin-top: 10vw;
}
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
    .qr-code-section {
    display: none;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: auto;
    transform: translateY(80vw);
    margin-left: 16.5vw;
}
.qr-text {
    display: none;
    width: 95vw;
    max-width: 95vw;
    color: black;
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 5vw;
    text-align: left;
    margin-top: 0%;
    margin-right: 0%;
}
  .qr-code {
    display: none;
    width: 50vw;
    height: auto;
    margin-left: 16.5vw;
    margin-top: 10vw;
}
}

h5 {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 1.5625rem;
}

@media screen and (max-width: 600px) and (orientation: portrait) {
    h5 {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 6vw;
}
}

@media screen and (min-width: 600px) and (max-width: 1080px) and (orientation: landscape) {
    h5 {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 3vw;
}
}

@media screen and (min-width: 600px) and (max-width: 1080px) and (orientation: portrait) {
    h5 {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    color: white;
    font-size: 3.5vw;
}
}


footer {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2.1875rem;
    margin-bottom: 7%;
}

.footer-balken {
    width: 67%;
    height: 0.125rem;
    background-color: dimgrey;
    transform: translateY(6rem);
}

.legal-info {
    display: flex;
}

.legal-links {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.125rem;
    margin-top: 1.9%;
    margin-left: 5%;
    color: #004e89;
    text-decoration: none;
}

footer .legal-links:hover {
    text-decoration: underline; 
}


.Rechtliches {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.375rem;
    margin-top: 1.5%;
    margin-bottom: 1.5%;
}

@media (max-width: 600px) and (orientation: portrait) {
    footer {
    display: grid;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: 3vh;
    margin-bottom: 35vh;
    margin-left: 8vw;
}
    .footer-balken {
    width: 80vw;
    height: 0.3vh;
    background-color: dimgrey;
    transform: translateY(17vh);
    }
    
    .legal-info {
    display: grid;
}

.legal-links {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 4vw;
    margin-top: 1.9vw;
    margin-left: 0vw;
    color: #004e89;
    text-decoration: none;
    }
    .Rechtliches {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 6vw;
    margin-top: 1.5vw;
    margin-bottom: 0vw;
}
}

@media (min-width: 600px) and (max-width: 1080px) {
    footer {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: 3vh;
    margin-bottom: -13vh;
    margin-left: 8vw;
}
    .footer-balken {
    width: 80vw;
    height: 0.3vh;
    background-color: dimgrey;
    transform: translateY(-18vw);
    }
    
    .legal-info {
    display: flex;
}

.legal-links {
    font-family: "Kanit", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 2vw;
    margin-top: 2vw;
    margin-left: 2vw;
    color: #004e89;
    text-decoration: none;
    }
.Rechtliches {
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 3vw;
    margin-top: 1.5%;
    margin-bottom: 1vw;
}
}





.icon-section {
    margin-left: 16%;
    margin-right: 16%;
    display: flex;
    justify-content: space-around;
    background-color: white;
    transform: translateY(5.625rem)
    
}

.icon-container1 {
    text-align: center;
    margin-right: 0rem;
    margin-left: 1rem;
    min-width: 21.25rem;
    margin-top: 0rem;
    
}

.icon-container2 {
    text-align: center;
    min-width: 21.25rem;
    
}

.icon-container3 {
    text-align: center;
    min-width: 21.25rem;
    margin-right: 1.25rem;
    transform: translateY(1.4rem);
    
}

.icon-text-fett{
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
}

.icon-text {
    font-size: 1.25rem;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
}

.icon1 {
    width: 9.5rem;
    transition: transform 0.3s ease;
}

.icon1-text {
    transition: transform 0.3s ease;
}

.icon2 {
    width: 9.5rem;
    transition: transform 0.3s ease;
}

.icon2-text {
    transition: transform 0.3 ease;
}

.icon3 {
    width: 9.8rem;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.icon3-text {
    transition: transform 0.3s ease;
}

.icon-container:hover .icon1 {
    transform: scale(1.2);
}

.icon-container:hover .icon2 {
    transform: scale(1.2);
}

.icon-container:hover .icon3 {
    transform: scale(1.2);
}

.icon-container p {
    margin-top: 0.625rem;
}

@media screen and (max-width: 600px) and (orientation: portrait) {
  .icon-section {
    margin-left: 0%;
    margin-right: 0%;
    display: grid;
    justify-content: space-around;
    background-color: white;
    transform: translateY(20vw);
    }
    
    .icon-container1 {
    text-align: center;
    margin-right: 0%;
    margin-left: 0%;
    min-width: 21.25rem;
    margin-top: -10%;
}

.icon-container2 {
    text-align: center;
    min-width: 21.25rem;
    margin-top: 10%;
    margin-right: 0%;
    margin-left: 0%;
}

.icon-container3 {
    text-align: center;
    min-width: 21.25rem;
    margin-right: 0%;
    margin-left: 0%;
    margin-top: 10%;
}
  
  .icon-text-fett{
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 5vw;
}
  
.icon-text {
    font-size: 5vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
}
  
.icon1 {
    width: 35vw;
    transition: transform 0.3s ease;
}
  
.icon2 {
    width: 35vw;
    transition: transform 0.3s ease;
}
  
.icon3 {
    width: 37vw;
    transition: transform 0.3s ease;
    margin-bottom: 3vw;
}
}

@media screen and (min-width: 600px) and (max-width: 1080px) {
  .icon-section {
    margin-left: 0%;
    margin-right: 0%;
    display: flex;
    justify-content: space-around;
    background-color: white;
    transform: translateY(-20vw);
    }
    
    .icon-container1 {
    text-align: center;
    margin-right: 0%;
    margin-left: 0%;
    min-width: 5vw;
    margin-top: 0%;
}

.icon-container2 {
    text-align: center;
    min-width: 5vw;
    margin-top: 0%;
    margin-right: 0%;
    margin-left: 0%;
}

.icon-container3 {
    text-align: center;
    min-width: 5vw;
    margin-right: 0%;
    margin-left: 0%;
    margin-top: -1.5vw
}
  
  .icon-text-fett{
    font-family: "Kanit", serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2vw;
}
  
.icon-text {
    font-size: 2vw;
    font-family: "Kanit", serif;
    font-weight: 200;
    font-style: normal;
}
  
.icon1 {
    width: 15vw;
    transition: transform 0.3s ease;
}
  
.icon2 {
    width: 15vw;
    transition: transform 0.3s ease;
}
  
.icon3 {
    width: 15vw;
    transition: transform 0.3s ease;
    margin-bottom: 3vw;
}
}

.oeffnungszeiten-btn {
      margin-top: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 1rem;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      background: #004e89;
      color: white;
    }
    
    .oeffnungszeiten-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
      background: #014375;
    }
    
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    
    .popup-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    
    .popup-content {
      background: white;
      border-radius: 1.5rem;
      width: 90%;
      max-width: 500px;
      max-height: 800px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      transform: translateY(20px) scale(0.95);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 0;
      white-space: pre-wrap; 
    }
    
    .popup-overlay.active .popup-content {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    
    .popup-header {
      padding: 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #e2e8f0;
    }
    
    .popup-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e293b;
    }
    
    .close-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #64748b;
      cursor: pointer;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }
    
    .close-btn:hover {
      background: #f1f5f9;
      color: #475569;
    }
    
    .popup-body {
      padding: 1.5rem;
      text-align: left;
    }
    
    .popup-message {
      margin-top: -5rem;
      margin-bottom: -6rem;
      font-size: 1.9vh; /* 1.125rem */
      line-height: 1.4;
      color: #334155;
      font-family: monospace;
    }
    
    .popup-footer {
      padding: 1rem 1.5rem;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      text-align: right;
      margin-top: 0.3rem;
    }
    
    .popup-confirm {
      background: #004e89;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 2px 4px rgba(79, 70, 229, 0.3);
    }
    
    .popup-confirm:hover {
      background: #014375;
      transform: translateY(-1px);
      box-shadow: 0 4px 6px rgba(79, 70, 229, 0.4);
    }


    @media screen and (min-width: 600px) and (max-width: 1080px) { 
    .oeffnungszeiten-btn {
      margin-top: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 1rem;
      font-weight: 600;
      font-size: 1.65vw;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      background: #004e89;
      color: white;
    }
    
    .oeffnungszeiten-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
      background: #014375;
    }

    .popup-message {
      margin-top: -5rem;
      margin-bottom: -6rem;
      font-size: 0.95rem;
      line-height: 1.4;
      color: #334155;
      font-family: monospace;
    }
      
     .popup-footer {
      padding: 1rem 1.5rem;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      text-align: right;
      margin-top: 0.3rem;
    }

    }

@media (max-width: 600px) and (orientation: portrait) {
        .popup-message {
      margin-top: -4rem;
      margin-bottom: 0rem;
      font-size: 3.15vw;
      line-height: 1.4;
      color: #334155;
      font-family: monospace;
    }
  
  	.popup-content {
      background: white;
      border-radius: 1.5rem;
      width: 90%;
      max-width: 500px;
      max-height: 85.07vh;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      transform: translateY(20px) scale(0.95);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      opacity: 0;
      white-space: pre-wrap; 
    }
  
  	.popup-footer {
      display: none;
      padding: 1rem 1.5rem;
      background: #f8fafc;
      border-top: 1px solid #e2e8f0;
      text-align: right;
      margin-top: 0.3rem;
    }

    }