* { 
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: "Aboreto", system-ui;

}
body{
    /* background-color: #B2D0FF; */
    background-color: grey;
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    font-style: normal;
       
}
main {
    background-color: #FFFFFF;
    border-radius: 25px;
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: ROW;
}
#img {
    width: 45%;
    padding: 131px 0px;
}
#img > img {
    width: 100%;
    height: 100%;
    flex: none;
    order: 0;
    flex-grow: 0;
    align-self: center;
}

/*BOOK FORM */

#bookCar {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
    justify-content: center;
    align-items: center;
}
h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 54px;
    text-align: center;
    margin-bottom: 15px;
    }
fieldset {
    border: none;
    width: 40vw;
    height: 20vh;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    margin-left:25px;
    
    
}
legend {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    padding-bottom: px;
    
}
.container {
    width: 80vw;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    

}


  input[type="radio"][id^="myCheckbox"] {
    display: none;
  }
  label {
    width: 100px;
    height: 80px;
    background: #E7EEF9;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;  
    margin: 10px;
    cursor: pointer;
  }
  
  label:before {
    background: #E7EEF9;
    content: " ";
    display: block;
    border-radius: 10px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.5s;
    transform: scale(0);
  }

  :checked + label {
    background: #8DB5F1;
  }
  
  :checked + label:before {
    content: " ";
      }

label > img {
   width: 50px;
   height: 50px;
   margin-left: auto;
   margin-right: auto;
 
   

}
label > h3 {
    color: #000000;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

#wash > label > img {
    width: 40px;
   height: 40px;
}


#customer {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;


}
.data {
     width: 80vw;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     margin-left: 10px;
     
}


.data > input,select {
    width: 70vw;
    height: 40px;
    background: rgba(231, 238, 249, 0.43);
    border: none;
    border-radius: 5px;
    color: #333333;
    padding-left: 5px;
}

.data >label {
    width: 222px;
    height: 25px;
font-weight: 400;
font-size: 14px;
color: #333333;
background: none;
}
textarea {
    width: 70vw;
height: 15vh;

background: rgba(231, 238, 249, 0.43);
border-radius: 5px;
border: none;
resize: none;
}
button{
    width: 230px;
height: 50px;
background: #013B83;
border-radius: 10px;
border: none;
font-weight: 700;
font-size: 14px;
line-height: 25px;
color: #FFFFFF;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
}

/* 
.container {
background: green;
width: 70vw;
} */

.faq{
    height: 70vh;
    width: 70vw;
    background-color: red;
}

.faq-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

.faq-header h2 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
}


/* FAQ ITEM */

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}


/* QUESTION */

.faq-question {
    width: 100%;
    padding: 24px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: none;
    background: none;

    font: inherit;
    font-size: 18px;
    text-align: left;

    cursor: pointer;
}


/* PLUS */

.faq-icon {
    font-size: 28px;
    font-weight: 300;

    transition: transform 0.3s ease;
}


/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.faq-answer p {
    margin: 0;
    max-width: 700px;

    padding-bottom: 0;

    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
}


/* OPEN STATE */

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-answer p {
    padding-bottom: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}