.icons-cards {
    position: relative;
    z-index: 1;
}

.icons-cards--homepage {
    padding-bottom: 54px;
}

.icons-card-item {
    margin-top: 10px;
}

.icons-card-item:first-child {
    margin-top: 0;
}

.icons-card {
    background: var( --white );
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,66,122,0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.icons-card__top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.icons-card__img {
    color: var( --blue );
    font-size: 40px;
    width: 40px;
    line-height: 1em;
}

.icons-card__title {
    padding: 0;
    padding-left: 10px;
    font-size: 16px;
    color: var( --blue-03 )!important;
    font-weight: 700;
    line-height: 1.4em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.icons-card__title::before {
    display: none;
}

.icons-card__details p {
    font-size: 14px;
    color: #44494D;
}

.icons-cards--inner {
    padding: 20px 0 50px 0;
    position: relative;
    z-index: 1;
}

.icons-cards--inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 900px;
    z-index: -1;
    background: var( --gray-02 );
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0% 100%);
    background: linear-gradient(to bottom,  #e5e7e8 0%,#e5e7e8 20%,#ffffff 100%);
}

.cards-icons-column--padding {
    padding-bottom: 50px;
}

.cards-icons-column__top-content {
    padding-bottom: 20px;
}

.cards-icons-column__wrap {
    position: relative;
    z-index: 1;
}

.cards-icons-column__wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 32px);
    z-index: -1;
    background: var( --gray-02 );
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0% 100%);
    background: linear-gradient(to bottom, #E5E7E8 0%,#E5E7E8 20%,#ffffff 100%);
}

.bg-dark-blue + .cards-icons-column,
.icons-cards + .cards-icons-column {
    padding-top: 40px;

    @media( min-width : 1200px ) {
        padding-top: 100px;
    }
}

.icons-card-flex {
    justify-content: center;
}

.cards-icons-column + .bg-white {
    padding-top: 0;
}

@media (min-width: 768px) {
    .icons-cards--homepage {
        padding-bottom: 0px;
        padding-bottom: 50px;
    }
    
    .icons-card-item {
        margin-top: 0;
        margin-bottom: 32px;
    }
    
    .icons-card {
        padding: 30px 30px;
        min-height: 380px;
    }
    
    .icons-card__top {
        display: block;
        margin-bottom: 12px;
    }
    
    .icons-card__img {
        color: var( --blue );
        font-size: 75px;
        width: 75px;
        line-height: 1em;
        margin-bottom: 15px;
    }
    
    .icons-card__title {
        padding: 0;
        font-size: 20px;
    }
    
    .icons-card__details p {
        font-size: 16px;
        padding-right: 0;
    }

    .icons-cards--inner {
        padding: 40px 0 48px 0;
    }
    
    .icons-cards--inner::before {
        height: 845px;
        clip-path: polygon(0 6%, 100% 0, 100% 100%, 0% 100%);
    }

    .cards-icons-column--padding {
        padding-bottom: 48px;
    }

    .cards-icons-column__top-content {
        padding-bottom: 20px;
    }

    .cards-icons-column__wrap::before {
        height: calc(100% - 52px);
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 100%);
    }
}

@media (min-width: 1200px) {
    .icons-cards--homepage {
        padding-bottom: 180px;
    }
    
    .icons-card-item {
        margin-top: 0;
        margin-bottom: 0;
    }

    .icons-card {
        min-height: 412px;
    }

    .icons-card__details p {
        font-size: 16px;
        line-height: 1.75em;
        padding-right: 0;
    }

    .icons-cards--inner {
        padding: 40px 0 100px 0;
    }
    
    .icons-cards--inner::before {
        height: 455px;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .cards-icons-column--padding {
        padding-bottom: 200px;
    }

    .cards-icons-column__top-content {
        padding-bottom: 20px;
    }

    .cards-icons-column__wrap::before {
        height: calc(100% - 110px);
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
    }
    
}