.main {

    width:100%;
    padding-top:53px;
    padding-bottom:100px;

}

.main h2 {

    padding:0;
    margin:0;
    font-size:30px;
    font-weight:700;
    font-family:'Raleway',sans-serif;
    color:rgba(0,0,0,1.0);
    margin-bottom:76px;

}

.faq_container {

    width:100%;
    min-height:10px;

}

.faq_container a {

    color:rgba(0,0,0,1.0);

}

.faq_container .faq_item {

    width:calc((100% / 3) - 20px);
    min-height:100px;
    cursor:pointer;
    margin:10px;
    float:left;

}

.faq_container .faq_item .faq_img {

    width:100%;
    height:200px;
    float:left;
    position:relative;

}

.faq_container .faq_item .faq_img img {

    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    position:relative;
    z-index:3;

}

.faq_container .faq_item .faq_img .img_hover {

    width:135px;
    height:135px;
    background-color:rgba(255,255,255,0.68);
    border-radius:50%;
    background-image:url('./files/icons/search.svg');
    background-size:37px auto;
    background-position:center center;
    background-repeat:no-repeat;
    display:none;
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    margin-top:auto;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:auto;
    z-index:4;

}

.faq_container .faq_item:hover .img_hover {
    display:block;
}

.faq_container .faq_item .faq_text {

    width:100%;
    float:left;

}

.faq_container .faq_item .faq_text h4 {

    padding:0;
    margin:0;
    font-size:20px;
    font-weight:700;
    font-family:'Raleway',sans-serif;
    color:rgba(0,0,0,1.0);
    padding-top:15px;

}

@media screen and (max-width:800px) {

    .faq_container .faq_item {

        width:calc(50% - 10px);
        margin:5px;

    }

}