.products {
    width: 100%;
    margin-top: 65px;
    margin-bottom: 65px;
}

.products .item {
    margin-bottom: 30px;
    transition: all .3s;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 30px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}

/* Product Item - Overlay*/

.products .item .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(56, 103, 214, 0.1);
    overflow: hidden;
    width: 100%;
    -moz-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
    -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
    transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
    border-radius: 6px;
}

.products .item .overlay {
    top: 100%;
}

.products .item:hover .overlay {
    top: 0;
    z-index: -1;
}

.products .item:hover {
    transform: scale(1.05);
}

.products .item .item-block {
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-bottom: 0;
}

.products .item .item-head p {
    font-size: 25px;
    font-weight: 600;
    padding-top: 6px;
    margin-right: 30px;
}

.products .item p {
    font-size: 17px;
    font-weight: 600;
    margin-right: 15px;
    color: #70799f;
    margin-bottom: 0;
}

.products .item span {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #18108a;
    margin-bottom: 0;
}

.products .item a {
    width: 175px;
    padding: 9px 0px;
    text-align: center;
    border: solid 2px #420a7f;
    border-radius: 7px;
    color: #2c0952;
    transition: 0.4s;
}

.products .item a:hover {
    background-color: #420a7f;
    color: #fff;
}

@media (max-width: 991px) {
    .products .item {
        display: block;
        /* padding: 30px; */
    }
    .products .item a {
        margin-top: 15px;
        width: 100%;
        display: block;
    }
}

/*
-----------------------------
           F.A.Q.
-----------------------------
*/

.faq {
    margin-bottom: 45px;
}

.faq .title {
    text-align: center
}

.faq .title h3 {
    color: #70799f;
    font-size: 35px;
    margin-bottom: 35px;
    text-transform: capitalize;
}

.faq .item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 6px;
    padding: 10px 53px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    transition: 0.4s;
}

.faq .item:hover {
    transform: scale(1.05);
}

.faq .item a {
    display: block;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    color: #70799f;
}

.faq .item i {
    font-size: 16px;
    position: absolute;
    left: -25px;
    top: 6px;
    transition: 0.4s;
}

.faq .item p {
    padding-top: 5px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #c3c3c3;
}

.faq .collapsed i {
    transform: rotate(-90deg);
}

.faq .item ul,
li {
    color: #c3c3c3;
    font-size: 15px;
}