.header .animated,
.footer .animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.top-ten.section {
    width: 100%;
    position: relative;
}

.top-ten.section .left,
.top-ten.section .middle,
.top-ten.section .right {
    width: 100%;
    display: block;
    color: #fff;
    box-sizing: border-box;
    left: 0;
    padding: 30px;
    text-align: center;
    overflow: hidden;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
}

@media (min-width: 480px) {
    .top-ten.section .left .content,
    .top-ten.section .middle .content,
    .top-ten.section .right .content {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media (min-width: 480px) {
    .top-ten.section .left,
    .top-ten.section .middle,
    .top-ten.section .right {
        width: 50%;
        font-size: 0.9em;
        padding: 10px;
        left: 0;
        float: left;
        position: absolute;
    }
}

@media (min-width: 768px) {
    .top-ten.section .left,
    .top-ten.section .middle,
    .top-ten.section .right {
        width: 33.33333%;
        left: 33.33%;
        padding: 10px;
    }
}

@media (min-width: 992px) {
    .top-ten.section .left,
    .top-ten.section .middle,
    .top-ten.section .right {
        padding: 30px;
        font-size: 1em;
    }
}

.top-ten.section.animate .left {
    left: 0;
}

@media (min-width: 480px) {
    .top-ten.section.animate .left {
        left: 50%;
    }
}

@media (min-width: 768px) {
    .top-ten.section.animate .left {
        left: 0;
    }
}

.top-ten.section.animate .right {
    left: 0;
}

@media (min-width: 480px) {
    .top-ten.section.animate .right {
        left: 50%;
    }
}

@media (min-width: 768px) {
    .top-ten.section.animate .right {
        left: 66.66%;
    }
}

.top-ten.section .title {
    background: #639AA7;
}

.top-ten.section .title h2 {
    margin-top: 0;
}

.top-ten.section .title p {
    line-height: 1.55em;
    margin-bottom: 0.75em;
}

.top-ten.section .title .btn-primary {
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 3px;
    display: inline-block;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
}

.top-ten.section .title .btn-primary:hover {
    background: #f3e53d;
}

.top-ten.section .tiles {
    padding: 0;
    background: #fff;
    clear: both;
    display: none;
    float: none;
}

.top-ten.section .tiles img {
    width: 50%;
    float: left;
    height: auto;
    opacity: 0.7;
    -moz-transition: 0.3s ease-in-out all;
    -o-transition: 0.3s ease-in-out all;
    -webkit-transition: 0.3s ease-in-out all;
    transition: 0.3s ease-in-out all;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -o-filter: grayscale(100%);
}

.top-ten.section .tiles img:hover {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -o-filter: grayscale(0%);
}

@media (min-width: 768px) {
    .top-ten.section .tiles {
        display: block;
    }
}

.top-ten.section .middle {
    background: slategray;
    z-index: 2;
    padding: 0;
}

.top-ten.section .middle img {
    width: 100%;
    height: auto;
    display: block;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-20px);
    }
    60% {
        -webkit-transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.box-product:hover .blog-entry {
    opacity: 0.8;
    transform: scale(1.08, 1.08) !important;
}