.grid2__wrapper {
    border-radius: 20px;
    background: #fff;
    width: 100%;
    padding: 24px 24px 24px 0;
    position: relative;
}

.grid2__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    box-shadow: 0px 0px 25px 0px #00000040;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.grid2__item {
    position: relative;
    padding: 52px 30px 30px 30px;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    background: #fff;
    cursor: pointer;
    transition: .35s;
}

.grid2__item:after {
    content: '';
    position: absolute;
    inset: -1px;
    background:
            repeating-linear-gradient(90deg, #7B7B7B 0 8px, transparent 8px 18px) top / 100% 1px no-repeat,
            repeating-linear-gradient(0deg, #7B7B7B 0 8px, transparent 8px 18px) right / 1px 100% no-repeat;
    transition: .35s;
}



.grid2__item:hover,
.grid2__item._active {
    background: #1AA98D !important;
    transition: .35s;
}

.grid2__item:nth-child(-n+3):after {
    background-image: repeating-linear-gradient(0deg, #000 0 8px, transparent 8px 16px);
    background-position: right;
    background-size: 1px 100%;
    background-repeat: no-repeat;
}

.grid2__item:nth-child(3n):after {
    background-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
    background-position: top;
    background-size: 100% 1px;
    background-repeat: no-repeat;
}

.grid2__item:nth-child(-n+3):nth-child(3n):after {
    background: none;
}

.grid2Item__name {
    position: relative;
    z-index: 1;
    display: flex;
    color: #4D4B4C;
    font-family: "Manrope";
    font-size: 1.2rem;
    font-weight: 600;
    transition: .35s;
}

.grid2__item:nth-child(odd) .grid2Item__name {
    color: #1AA98D;
}

.grid2__item:hover .grid2Item__name,
.grid2__item._active .grid2Item__name {
    color: #fff;
    transition: .35s;
}

.grid2Item__name span {
    display: block;
    margin-top: -8px;
    margin-left: 8px;
    color: #000;
    font-family: "Manrope";
    font-size: 14px;
    font-weight: 500;
    transition: .35s;
}

.grid2__item:nth-child(even) .grid2Item__name span {
    color: #1AA98D;
}

.grid2__item:hover .grid2Item__name span,
.grid2__item._active .grid2Item__name span{
    color: #000;
    transition: .35s;
}

.grid2Item__desc {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    color: #4D4B4C;
    font-family: "Manrope";
    font-size: 14px;
    line-height: 20px;
    transition: .35s;
}

.grid2__item:hover .grid2Item__desc,
.grid2__item._active .grid2Item__desc{
    color: #fff;
    transition: .35s;
}






@media(max-width: 1620px) {

}
@media(max-width: 1400px) {

}
@media(max-width: 1200px) {
    .grid2__wrapper {
        border-radius: 0;
        padding: 0;
    }
    .grid2__item {
        padding: 35px 25px 30px 25px;
    }
    .grid2Item__name {
        font-size: 18px;
    }
}
@media(max-width: 991px) {

}
@media(max-width: 850px) {
    .grid2__items {
        grid-template-columns: 1fr 1fr;
    }
    .grid2__item:nth-child(-n+3):nth-child(3n):after {
        background:
                repeating-linear-gradient(90deg, #7B7B7B 0 8px, transparent 8px 18px) top / 100% 1px no-repeat,
                repeating-linear-gradient(0deg, #7B7B7B 0 8px, transparent 8px 18px) right / 1px 100% no-repeat;
    }
    .grid2__item:nth-child(even):after {
        background-image: repeating-linear-gradient(90deg, #000 0 8px, transparent 8px 16px);
        background-position: top;
        background-size: 100% 1px;
        background-repeat: no-repeat;
    }
    .grid2__item:nth-child(2):after {
        background-image: none;
    }
}
@media(max-width: 768px) {

}
@media(max-width: 576px) {
    .grid2__items {
        grid-template-columns: 1fr;
    }
    .grid2__item:nth-child(1):after {
        background: none !important;
    }
    .grid2__item:after {
        background:
                repeating-linear-gradient(90deg, #7B7B7B 0 8px, transparent 8px 18px) top / 100% 1px no-repeat !important;
    }
}