@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&display=swap');

:root {
    --menu-height: 0px;
    --green: #50BBB1;
}

body {
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Inter, Helvetica, sans-serif;

}


/*  CSS for the container */
.container {
    width: 100%;
    /* border: 2px solid blue; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu {
    top: 0rem;
    padding-top: 1rem;
    /* position: fixed; */
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 3.6rem;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -2px;
    /* border: 1px solid red; */
    width: 90%;
    max-width: 2500px;
    z-index: 2;
    background-color: white;
}

/* @media
  screen and (-webkit-min-device-pixel-ratio: 2),
  screen and (min-resolution: 192dpi),
  screen and (min-resolution: 2dppx) {
    body {
         border: 4px solid red;

    }

} */

.content-section {
    padding-left: 300px;
    width: 90%;
    max-width: 2500px;
    padding: 0rem;
    background-color: white;
    position: relative;
    z-index: 1;
    /* overflow: hidden; */
    /* border: 1px solid red; */
    /* height: 1000px; */
    /* margin-top: calc(var(--menu-height) + 2rem); */
    margin-top: 2rem;

    z-index: 1;
    text-align: left;
    font-size: 1rem;
    line-height: 1.2rem;
}

.menu__row, .menu-row-content {
    display: flex;
}

.content__row{
    display: flex;
}

.menu-row-content {
    width: 100%;
}

.menu__item {
    flex: 1;
    padding: .5rem;
    text-align: center;
}

.content__item {
    flex: 1;
    padding: .5rem;
    text-align: left;
}

.menu__item--mobile {
    display: none;
}

.divider {
    border-top: 2px solid #50BBB1;
    width: 94.5%;
    margin-top: 5px;
    margin-left: 5%;
}

.menu__item--left {
  text-align: left;
}

.menu__item--right {
  text-align: right;
}

.green {
  color: var(--green);
}

.menu__row .menu__item:not(.menu__item--left):first-child {
    flex: 0 0 260px;
    position: relative;
}

.content__row .content__item:not(.content__item--left):first-child {
    flex: 0 0 260px;
    position: relative;
}

.menu-row-border-right-small-height {
    padding-right: 1rem;
}

.menu-row-border-right{
    padding-right: 1rem;
}

.menu-row-border-right-small-height::after {
    content: "";
    position: absolute;
    top: 30%;
    bottom: -7px;
    right: -1px;
    border-right: 2px solid #50BBB1;
}

.menu-row-border-right::after {
    content: "";
    position: absolute;
    top: 0; 
    bottom: 14%; 
    right: -1px;
    border-right: 2px solid #50BBB1;
    /* width: 100%; */
}

/* Content */


.border-top {
    border-top: 2px solid var(--green);
    padding-top: .5rem;
}

.d-inline-block {
    display: inline-block;
}

div#impressum_link {
    margin-left: 302px;
    width: 100%;
    display: block;
    /* border-top: 2px solid var(--green); */
    padding-top: 0.5rem;
    /* margin-top: 6rem; */
    margin-bottom: 2rem;
}


/* Responsive design for mobile devices */
@media (max-width: 900px) {
    .menu, .menu__item{
        font-size: calc(28px + 0.390625vw);
        line-height: calc(28px + 0.390625vw);
        padding-bottom: 2px;
        padding-top: 2px;
        padding-left: 0px;
    }

    div#impressum_link {
        margin-left: 0;
        padding-left: .5rem;
        padding-right: .5rem;
        width: 100%;
        display: block;
        border-top: 2px solid var(--green);
        padding-top: 0.5rem;
    }

    .newslink{
        display: none;
    }
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .menu-row-content {
        flex-direction: column; /* Stack the items vertically */
    }

    .menu-row-content div {
        text-align: left!important;
    }

    .menu__item {
        width: 100%; /* Full width for each item */
        margin-bottom: 0rem; /* Add some space between items */
    }


    .menu__row .menu__item:not(.menu__item--left):first-child {
        flex: 0 0 150px!important;
        position: relative;
    }


    .content__row .content__item:first-child {
        border: 1px solid black;
        display: none;
    }

    .menu__item--mobile {
        display: block;
    }

    .menu, .content-section {
        width: 100%;
    }

    .menu__row .menu__item:not(.menu__item--left):first-child {
        flex: 0 0 120px!important;
        position: relative;
    }
    
    .content__row .content__item:not(.content__item--left):first-child {
        flex: 0 0 130px!important;
        position: relative;
    }

    .divider {
        width: 98%;
        margin-left: 1%;
    }
    
}

.error_msg {
    background-color: bisque;
    margin-bottom: 2rem;
}

.success_msg {
    background-color: lightseagreen;
    margin-bottom: 2rem;
}

.btn {
    background-color: var(--green);
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px;
    width: 100px;
    height: 100px;
  }
  
  .btn-round1 {border-radius: 2px;}
  .btn-round2 {border-radius: 4px;}
  .btn-round3 {border-radius: 8px;}
  .btn-round4 {border-radius: 12px;}
  .btn-round5 {border-radius: 200px;}
  .btn-invert{
    color: var(--green);
    background-color: white;
    border: 2px solid var(--green);
    cursor: pointer;
    display: inline-block;
    float: right;
  }



  .btn-invert:hover{
    background-color: var(--green);
    border: none;
    color: white;
  }

  @media (max-width: 768px) {
    .btn-invert{
        border-radius: 0px;
        color: var(--green);
        background-color: white;
        border: 2px solid var(--green);
        cursor: pointer;
        display: inline-block;
        float: right;
        width: auto;
        height: auto;
      }
    
    
    
      .btn-invert:hover{
        background-color: var(--green);
        border: none;
        color: white;
      }
  }

  .newslink {
    position: fixed;
    left: 1.5rem;
    right: auto;
    bottom: 1.5rem;
    z-index: 1000;
    font-size: 4rem;
    font-weight: 300;
}

.custom-stroke{
    stroke: var(--green);
    text-decoration: none;
}

.TextformatterVideoEmbed {
    margin: 0px!important;
    padding-bottom: 56%!important;
}

span.opt_left {
    display: inline-block;
    margin-right: 22px;
    letter-spacing: -3px;
}

.d-none {
    display: none!important;
}

.logo_container{
    text-align: right;
    margin-bottom: 0px;
    height:auto;
}

.logo_image{
    width: 60%;
    transform: translateY(-15px)
}
