.FaqHolder
{
    display:flex;
}

@media screen and (max-width: 800px)
{
    .FaqHolder
    {
        display: block;
    }
}

.Category
{
    flex:33.33%;
}

.faq
{
    background-color:white;
    border-radius:15px;
    border:solid 2px #B06B33;
    color:#B06B33;
    margin-bottom:20px;
    margin-left:20px;
    padding-bottom:60px;
    position:relative;
    overflow:hidden;
}

.faq img
{
    height:/**/
           /**/200px/**/;
    position:absolute;
    /**/
    /**/
    bottom:-100px;
    left:-60px;
    /**/
    transform:rotate(35deg);
    transition:transform 0.5s linear;
}

.faq:hover img
{
    transform:rotate(25deg);
}

.faq h2
{
    background-color:#B06B33;
    color:white;
    border-top-left-radius:13px;
    border-top-right-radius:13px;
    text-align:center;
    font-size:1.4em;
    padding:10px;
}

.faq > div
{
    padding: 10px;
    text-align:justify;
}
