.faq{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    user-select: none;
}
.faqcon{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background-color: rgb(144, 211, 238);
    width: 95%;
    height: auto;
    margin-top: 4vh;
    border: 3px black solid;
    border-radius: 23px
}
details > summary {
    list-style: none;
}
.faqQ{
    padding: 10px;
    justify-content: space-evenly;
    cursor: pointer;
}
.faqA{
    display: flex;
    justify-content: center
}
.faqtxtcon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%
}
.faqimgcon{
    width: 50%
}
.faqimg{
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 20px 0px
}
.small{
    object-fit: cover;
}
@media (min-width:0px) {
    .faqimgcon{
        padding-top: 10px;
        width: 100%;
        height: 200px;
    }
}
@media (min-width:350px) {
    .faqimgcon{
        width: 100%;
        height: 250px;
    }
}
@media (min-width:450px) {
    .faqimgcon{
        width: 100%;
        height: 300px;
    }
}
@media (min-width:550px) {
    .faqimgcon{
        width: 100%;
        height: 350px;
    }
}
@media (min-width:667px) {
    .faqimgcon{
        width: 100%;
        height: 400px;
    }
}
@media (max-width:767px) {
    .faqA{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column
    }
    .faqtxtcon{
        width: 90%
    }
    .faqimg{
        border-radius: 0px 0px 20px 20px
    }
}
@media (min-width:768px) {
    .faqimgcon{
        padding-top: 0px;
        width: 50%;
        height: auto;
    }
    .faqimg{
        width: 100%;
        height: 100%;
        border-radius: 0px 0px 20px 0px
    }
}