@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.hero {
    padding-top:4rem;
    padding-bottom:6rem;
    padding-left:1rem;
    padding-right: 6rem;
    display: flex;
    flex-wrap: wrap
}

.backgroundtop{
    /*background-image: url('https://bellmer.eventchiefs.com/events/paper-days-2024/overlay_min2.png');*/
    background-image: url('https://bellmer.eventchiefs.com/events/paper-days-2024/back_v3.1.jpg');
    background-size: cover;
    background-position: 90%;
    text-align:right;
}
.logo{
  height: 6rem;
  padding-left:1rem;
  padding-top:1rem;
  padding-right:1rem;
}
.details-ueberschrift{
  font-size:2rem;
}
.bellmercolor{
  color: #008acb;
  font-size:1.3rem;
  display: block;
  text-align: left;
}


body {
    padding: 0;
    margin: 0;
    font-family: "Lato", sans-serif;
}

.title {
    color: #85F6FF;
    width: 50%;
    min-width: 200px;
    display: flex;
    align-items: flex-end; /* Aligns the child elements (e.g., <h1>) to the bottom */
    text-align: left;
}
.faq{
  /*margin-left: 10rem;
  margin-right: 10rem;
    margin: 2rem;
*/
  padding: 2rem;
}


h1 {
    font-size: 4rem;
    margin-top:0;
}

h3 {
    font-size: 1.8rem;
    margin-bottom:0;
}

.sign-up-container {
    width: 50%;
}

.sign-up-box {
    max-width: 200px;
    min-width: 150px;
    padding: 3rem;
    background-color: #008bcb94;
    backdrop-filter: blur(2px);
    margin: 0 auto;
    text-align: left;
    color: white;
    /*box-shadow: 0 0 7px #ffffff8e,
    0 0 10px #adf6fb8f,
    0 0 21px #adf6fb8f,
    0 0 42px #adf6fb8f,
    0 0 82px #adf6fb8f,
    0 0 92px #adf6fb8f,
    0 0 102px #adf6fb8f*/
    
}

.sign-up-box input, select {
    padding: 10px;
    border-radius: 3px;
    /*width: 90%;*/
    border: 1px #85F6FF solid;
    margin: 10px 0;
    display: block;
    box-sizing: border-box;
}

select, input{
    width: 100%;
}

.sign-up-box button {
    width: 100%;
    padding: 10px;
    background-color: #008bcb;
    border-color: #008bcb;
    color: white;
    border-radius: 3px;
  cursor:pointer;
}

.details{
    display: flex;
    justify-content: center;
    /*background-color: #DEE0E6;*/
    background-color: white;
  
}
.detail-box{
    width: 25%;
    min-width: 120px;
    padding: 2rem;
}
.detail-title{
    text-align: center;
    font-size: large;
    /*font-size: 40px;*/
    font-weight: bolder;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #737373;
}
.detail-img{
    height: 3em;
    margin-right: 5px;
}
.detail-text{
    text-align: justify;
}
.images {
    display: flex;
    justify-content: space-between;

}

.images img{
    width: 25%;
    height: max-content;
}

.footer{
    text-align: center;
    padding: 1rem;
    background-color: #008bcb;
    color: white;
    font-size: 1.1rem;
}
.footer a{
    color: white;
}

h1, h3{
    color: white;
    /*text-shadow:
    0 0 7px #ffffffc8,
    0 0 10px #ADF6FB,
    0 0 21px #ADF6FB,
    0 0 42px #ADF6FB,
    0 0 82px #ADF6FB,
    0 0 92px #ADF6FB,
    0 0 102px #ADF6FB,
    0 0 151px #ADF6FB;*/

}
@media (max-width:1000px) {
    .images{
        flex-wrap: wrap;
    }
    .details{
        flex-wrap: wrap;
    }
    .detail-box{
        /*padding: 1rem;*/
        width: 40%;
    }
}
@media (max-width:700px) {
    .images img{
        width: 100%;
        height: 100%;
    }
    .images{
        flex-wrap: wrap;
    }
    .details{
        flex-wrap: wrap;
    }
    .detail-box{
        /*padding: 1rem;*/
        width: 100%;
    }
    .title{
        width: 100%;
    }
    .sign-up-container{
        width: 100%;
    }
    .hero{
        padding: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    /*.faq{
      margin-left: 3rem;
      margin-right: 3rem;
    }*/
}
.accordion {
  background-color: #eee;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.builtin-icons{
  margin-right:15px;
}
.mk-svg-icon{
  fill:white;
}