/**
 * Recommended Tools
 */

/* General */
@media screen and (max-width: 767px) {
    .cs-custom-padding {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }
}

/* Masonry filters */
.cs-masonry-filters {
    margin-bottom: 80px;
}

.cs-masonry-filters ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.cs-masonry-filters ul li {
    list-style: none;
    border-bottom: 3px solid transparent;
    transition: ease border 300ms;
}

.cs-masonry-filters ul li + li {
    margin-left: 40px;
}

.cs-masonry-filters ul li.active,
.cs-masonry-filters ul li:hover {
    border-bottom-color: #335EEA;
}

.cs-masonry-filters ul li.active > a,
.cs-masonry-filters ul li:hover > a {
    color: #335EEA;
}

.cs-masonry-filters ul li a {
    display: inline-flex;
    width: 100%;
    line-height: 2.3;
    transition: ease color 300ms;
}

@media screen and (max-width: 545px) {
    .cs-masonry-filters ul {
        flex-direction: column;
    }
    .cs-masonry-filters ul li + li {
        margin-top: 7px;
        margin-left: 0;
    }
}

/* Masonry Wrapper */
.cs-masonry-wrapper {
    margin-bottom: -120px;
    transition: ease height 300ms;
}

/* Masonry Item */
.cs-masonry-item {
    margin-bottom: 30px;
}

/* Card */
.cs-card-wrapper {
    background: #FAFBFD;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 9px;
    padding: 40px;
    transition: ease box-shadow 300ms;
}

@media screen and (min-width: 768px) {
    .cs-card-wrapper {
        min-height: 286px;
    }
}

.cs-card-wrapper:hover {
    box-shadow: 0px 12px 24px rgba(85, 100, 123, 0.1);
}

.cs-card-wrapper img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.cs-card-wrapper h2 {
    font-size: 25px;
    line-height: 35px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cs-card-wrapper p {
    font-size: 16px;
    line-height: 26px;
    color: #697B96 !important;
}

.cs-card-wrapper p:last-of-type {
    margin-bottom: 0;
}

@keyframes msnryFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.msnryFadeIn {
    animation-name: msnryFadeIn;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    opacity: 0;
}