.products {
    padding: 60px 0 80px;
}

.products .wrapper {
    text-align: center;
}

.products__item-wrapper {
    text-align: center;
    display: block;
}

.products__heading {
    margin-bottom: 51px;
    font-size: 39px;
    color: #006c80;
}

.products__heading h4 {
    font-size: 28px;
    color: #006c80;
    font-weight: normal;
}

.products__item {
    width: 15%;
    margin: 0 8px;
    display: inline-block;
}

.product__item-wraplink {
    text-align: center;
    background-color: #005a73;
    border-radius: 10px;
    padding: 25px 20px 15px;
    transition: 0.2s ease-out;
    will-change: transform;
    transform-origin: center bottom;
    display: block;
}

.products__item:nth-child(2) {
    animation-delay: 0.1s;
}

.products__item:nth-child(3) {
    animation-delay: 0.2s;
}

.products__item:nth-child(4) {
    animation-delay: 0.3s;
}

.products__item:nth-child(5) {
    animation-delay: 0.4s;
}

.products__item:nth-child(6) {
    animation-delay: 0.5s;
}

.products__item:hover .product__item-wraplink {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.35);
}

.products__item .products__item-text {
    color: #fff;
    font-size: 19px;
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.products__item .products__item-text b {
    display: block;
}

.products__item img {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}

.products__item .product__item-link {
    padding: 8px 10px;
    color: #fff;
    display: block;
}

.products__item-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.centered-icon {
    color: white;
    font-size: 60px;
}

.products__item-icon--image {
    height: 40px;
}

.products__item a.btn {
    color: #000;
    border: 0;
    font-size: 14px;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease
}

.products__item a.btn:hover {
    color: #80b5bf;
}

@media screen and (max-width: 1024px) {
    .products__item {
        width: 25%;
        margin-top: 20px;
    }

    .products__heading {
        margin-bottom: 31px;
    }
}

@media screen and (max-width: 767px) {
    .products__item-wrapper {
        display: block;
        margin: 0 20px;
    }

    .products__item {
        display: block;
        width: 100%;
        margin: 20px 0;
    }
}