:root{
    --color01: #434343;
    --color02: #E5EFF0;
}

html,
body{
    background-color:rgba(234,235,235,1.00);
    font-family: Arial, Helvetica Neue;
}

@media screen and (min-width:1px) and (max-width:750px){
    html, body{ font-size: 12px; }
}

@media screen and (min-width:751px) and (max-width:1100px){
     html, body{ font-size: 15px; }
}

@media screen and (min-width:1101px) and (max-width:16000px){
     html, body{ font-size: 18px; }
}

#topbar{
    position:fixed;
    display: flex;
    top:0px;
    left:0px;
    width:100%;
    height:80px;
    background-color:white;
    align-items: center;
    justify-content: center;
}

#topbar:after{
    position:absolute;
    top: 100%;
    width:100%;
    height:3px;
    content:"";
    filter: blur(3px);
    background-color:rgba(50,51,52,0.75);
}

#topbar img{
    width:auto;
    height:80%;
}

#wrap {
    display:flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding:  100px 0rem 4rem 0rem;
}

#wrap input[name="slides"]{
    display:none;
}

#wrap h1 {
    text-align: center;
    font-size:1.8rem;
    font-weight: 800;
}

#wrap .nextbtn{
    height:3.5rem;
    line-height: 3.5rem;
    margin: 1rem auto 0px auto;
    background-color: royalblue;
    color:white;
    border-radius: 2rem;
    padding: 0px 3.2rem;
    box-sizing: border-box;
}

#wrap .backbtn{    
    height:2rem;
    line-height: 2rem;
    margin: 0.5rem auto;
}

#wrap .slideri{
    display:none;
    width:100%;
    max-width: 1200px;
    flex-direction: column;
    background-color:rgba(255,255,255,0.6);
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin: 2rem 0px;
    box-sizing: border-box;
}

#wrap .slideri h2{
    text-align: center;
    font-size:1.3rem;
    font-weight: 800;
    margin: 2rem 0px 1.4rem 0px;
}

#wrap .slideri p{
    text-align: center;
    font-size:1.0rem;
    line-height: 1.5rem;
    font-weight: 400;
    margin: 1.5rem 0px;
}


#wrap input[name="slides"]:checked + .slideri {
    display: flex;
}

#wrap input[name="visitors"]{
    display: none;    
}

#wrap label.visbtns{
    display:flex;
    width:100%;
    height:3.3rem;
    line-height: 3.3rem;
    padding: 0px 30px;
    font-size:1.4rem;
    font-weight: 800;
    align-items: center;
    justify-content: center;
    background-color:rgba(234,234,234,1.00);
    color:rgba(89,89,89,1.00);
    border-radius: 100px;
    margin:0px 0px;
}

#wrap input[name="visitors"]:checked + label.visbtns{
    background-color:rgba(71,135,225,1.00);
    color:white;
}


#wrap .megawrap{
    display: flex;
    flex-direction: row;
    gap:10px;
}

#wrap .inpwrp{
    position: relative;
    width: 100%;
    margin:25px 0px;
    box-sizing: border-box;
    box-shadow: 0px 0px 0px rgba(2,2,2,0.0);
}

#wrap .inpwrp select {
    display:flex;
    width:100%;
    height:3.3rem;
    line-height: 3.3rem;
    font-size:1.5rem;
    padding: 0px 2rem;
    border:0;
    outline:none;
    border-radius: 2rem;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-appearance: none;
}

#wrap .btnwrps{
    display: flex;
    width:100%;
    height:auto;
    gap:0px 5px;
    padding: 5px 0px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0);
    align-items: center;
    justify-content: center;
}

#wrap .inpwrp p{
    position: absolute;
    top:0px;
    left:0px;
    margin: 0px 0px;
    font-size:1.2rem;
    letter-spacing: 1px;
    color:rgba(22,22,22,0.8);
    font-weight: 600;
    translate: 10px -1.75rem;
}

#wrap input {
    display: block;
    width:100%;
    height:3.5rem;
    line-height: 3.5rem;
    font-size:1.2rem;
    box-sizing: border-box;
    padding: 0px 5%;
    border-radius: 0.7rem;
    outline: none;
    border:0;
}