@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

body, html {
    font-family: "IBM Plex Sans";
}

.wrapper {
    display: flex; 
    justify-content: center
}

.breit{
    max-width: 1000px
}

h1{
    color: #010080; 
    font-size: 3rem; 
    padding: 2rem 20% 0.5rem 20%; 
    font-family: Comorant Infant; 
    text-align: center;
    line-height: normal;
    font-weight: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

h2{
    padding: 0 0 2vh 5%;
    color:#010080; 
    font-size: 1.5rem;
    font-family: Comorant Infant; 
    font-weight: normal;
    line-height: normal;
    overflow-wrap: break-word;
    hyphens: auto;
}

p {
    margin: 0;
    line-height: 1.5em;
    overflow-wrap: break-word;
    hyphens: auto;
}


.div.filler{
    height:1rem;
    width:100%;
    border-right: 1px solid #010080;
    box-sizing: border-box;
}

.double_div_filler {
    height: 1rem;
    width: 100%;
    display: block;
    border-right: 1px solid #010080;
    border-left: 1px solid #010080;
    box-sizing: border-box;
}

.div.menu{
    display: flex;
    justify-content: space-between;
}

.menu_item {
    display: flex;
    flex-direction: column;
}

.menu_item:hover{
    background-color: rgba(0,0,0,0.05);
}

.menu_item.fat{
    border-bottom: 2px solid #010080
}

.burger {
    display: block;
    color: #010080;
    font-size: 2.5rem;
    padding: 0 3vw 0 3vw
}

.burger_menu  {
    display: none;
}


@media (max-width: 768px) {
    .div.menu{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 10px;
        position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        background: white;
        padding-top: 18vh;
        transition: right 0.3s ease;
        z-index: 999;
    }
    .burger_menu {
        display: flex; 
        flex-direction: column; 
        position: relative;
        z-index: 1001;
    }

    .double_div_filler.show{
        border-right: white;
        border-left: white;
    }

    .div.filler.show{
        border-right: white;
    }

    .div.menu.show {
        right: 0;
    }

    body, html {
        font-size: 0.75rem;
    }

    h1{
        font-size: 2rem;
    }

    h2{
        font-size: 1rem;
    }
}

.menu_text_item {
    padding: 0 1.5em 0.2em 1.5em;
    word-break: break-word; 
    flex-grow: 1;
    text-decoration: none;
    color: black;
}

.menu_text_item.fat{
    font-weight: bold;
}

.menu_text_item.fat.red{
    color:#e85c41;
}

.menu_text_item.fat.blue{
    color:#010080;
}

.click_text{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    width: 16rem;
    text-decoration: none;
    color: black;
}

.click_text:hover{
    width: 18rem;
}

.blueborder {
    height: 150%;
    width: 2rem;
    border-top: 1px solid #010080;
    border-bottom: 1px solid #010080;
}

.redborder {
    height: 150%;
    width: 2rem;
    border-top: 1px solid #e85c41;
    border-bottom: 1px solid #e85c41;
}

.buttonalign {
    display: flex; 
    align-items: center;
}

.contact_border {
    height: 4rem;
    width: 2rem;
    border-top: 1px solid #010080;
    border-bottom: 1px solid #010080;
}

.contact_text{
    color: #e85c41;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10ch;
    text-decoration: none;
}

.contact_text:hover{
    width: 15ch;
}

.info_clm {
    display: flex;
    flex-direction: column;
    width: 44vw;
    max-width: 440px;
    min-width: 275px;
}

.info_txt{
    word-break: break-word;
    overflow-wrap: break-word;
}

.info_box {
    overflow: hidden;
    text-align: center;
}

.info_box:hover{    
    filter: brightness(1.1);
    cursor: pointer;
}

.box_txt{
    padding: 5%;
    font-size: 2rem;
    font-weight: 100;
    color: white;
}

.spacer{
    height: 8vh;
}

.big{
    font-weight: 700;
    color: #010080;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

ul li {
    position: relative;
    padding-left:28px;
}

ul li::before{
    content:"";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

ul li.a::before{
    background-image: url('../images/bullet_or.svg');
}

ul li.b::before{
    background-image: url('../images/bullet_bl.svg');
}

.contact {
    display: flex; justify-content: flex-start; gap: 5%; align-items: center; padding: 0 5% 0 5%;
}
.spezialistenHeader{
    white-space: nowrap;
} 
@media (max-width: 768px){
    .contact{
        justify-content: center;
        row-gap: 20px;
        flex-direction: column;
    }
    .spezialistenHeader{
        white-space: normal;
    }
}

.carousel{
    display: flex; 
    overflow-x: hidden;
}

.carousel::-webkit-scrollbar{
    display: none;
}

.group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    animation: spin 50s infinite linear;
    padding-right: 1em;
}

.card1{
    flex: 0 0 3.333em;
    height: 2em;
    padding: 1em;
    align-content: center;
}

.card2{
    flex: 0 0 3.333em;
    height: 7em;
    padding: 1em;
    align-content: center;
}

.card3{
    flex: 0 0 3.333em;
    padding: 1em;
    height:100px;
    align-content: center;
}

@keyframes spin {
    from {translate: -100%;}
    to {translate: 0;}
}


#language-selector {
  position: fixed;
  top: 20px;         
  right: 20px;    
  z-index: 9999;
  background: white;
  padding: 5px 10px;
  border-radius: 5px;
}
@media (min-width: 1000px){
    #language-selector {
        right: calc((100vw - 1000px)/2 + 20px)
    }
}
#language-selector select {
  border: none;
  color: #010080;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}