/* ============================================
Features Boxed
============================================= */

.header-inner-box .header-inner-logo a {
    text-decoration: none;
}

.features-boxed {
    padding: 10px 50px 0px 50px;
}

.features-boxed .intro {
    width: 100%;
    height: 110px;
    text-align: center;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid #f4f4f4;
}

.features-boxed .intro p {
    margin-bottom: 0;
}

.features-boxed .features {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: flex;
    /* NEW, Spec - Firefox, Chrome, Opera */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
}

.features-boxed .item {
    text-align: center;
    width: 28%;
    margin: 20px;
}

.features-boxed .item .box {
    min-height: 265px;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border: 1px solid #dedede;
}

.features-boxed .item .box:hover {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #3b8dbd;
}

.features-boxed .item .icon {
    margin-top: 20px;
    width: 32%;
}

.features-boxed .item .name {
    font-weight: bold;
    font-size: 21px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 5px;
    color: inherit;
}

.features-boxed .item .description {
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 20px;
    max-width: 320px;
    margin: 0 auto;
    line-height: 23px;
}


/* ============================================
Media queries
============================================= */

@media only screen and (max-width: 1024px) {
    .features-boxed .item {
        width: 70%;
    }
}

@media only screen and (max-width: 768px) {
    .features-boxed .item {
        width: 90%;
    }
    .features-boxed {
        padding: 0px 30px 0px 30px;
    }
}

@media only screen and (max-width: 480px) {
    .features-boxed .item {
        margin: 0 auto;
        margin-bottom: 50px;
    }
    .features-boxed {
        padding: 0px 20px 0px 20px;
    }
}

@media only screen and (max-width: 320px) {
    .features-boxed {
        padding: 0px;
    }
}