.trends-section .section-header {
    max-width: 954px;
    margin: auto;
    margin-bottom: 60px;
    text-align: center;
}

.trends-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
}

.trend-col {
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.trend-card {
    background: var(--white);
    border-radius: 8px;
    padding: 25px 25px;
    text-align: left;
    height: 100%;
    display: block;
    text-decoration: none;
    box-shadow: 0px 2px 10px 0px #0000000D;
}

.trend-card:hover {
    transform: scale(1.05);
}

.trend-icon {
    margin: 15px 0 40px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.trend-icon img {
    width: 76px;
    height: 76px;
}

.trend-card h5 {
    color: var(--black);
    font-family: 'Open Sans';
}

.trend-card p {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: rgba(27, 24, 34, 0.67);
}

@media (min-width: 769px) {
    .trends-section .section-header p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width:991px) {
    .trends-section .section-header {
        margin-bottom: 30px;
    }
    .trend-col {
        width: 50%;
    }
    .trend-card {
        padding: 15px;
    }
    .trend-icon {
        margin: 5px 0 20px;
    }
    .trend-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width:767px) {
    .trend-col {
        width: 100%;
        margin-bottom: 15px;
    }
    .trend-icon {
        margin: 5px 0 10px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .trend-icon img {
        width: 50px;
        height: 50px;
    }
    .trend-card h5 {
        margin-bottom: 0;
    }
}

@media (max-width:574px) {
    .trend-icon img {
        width: 40px;
        height: 40px;
    }
}