.services-grid-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 60px;
    gap: 40px;
}
.services-grid-title {
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #24292F;
}
.services-grid-content {
    display: grid;
    padding: 0px;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}
.services-grid-content-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
	padding: 0px;
	background: #F8F8F8;
	box-shadow: 0px 8px 20px rgba(103, 63, 222, 0.1);
	border-radius: 16px;
}
.services-grid-content-item-img {
    width: 100%;
    max-height: 120px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.services-grid-content-item-img img {
    max-width: 100%;
	height: 100%;
	width: 100%;
	border-radius: 16px 16px 0px 0px;
}
.services-grid-content-item-desc {
    display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px 32px;
	gap: 12px;
	position: relative;
	height: 100%;
}
.services-grid-content-item-desc-title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #24292F;
}
.services-grid-content-item-desc-txt {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #24292F;
	padding-bottom: 10px;
}
.services-grid-content-item-desc button {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #5820F6;
    background: #fff;
    border: none;
	position: absolute;
	bottom: 20px;
}
.services-grid-other-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 18px;
    gap: 10px;
    border: 1px solid #5820F6;
    border-radius: 8px;
    background-color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5820F6;
    align-self: center;
    margin-top: 20px;
}
@media screen and (max-width: 991px) {
    .services-grid-block {
        padding: 40px 20px 80px;
        gap: 40px;
    }
    .services-grid-content {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 480px) {
    .services-grid-block {
        padding: 20px 16px 40px;
        gap: 24px;
    }
    .services-grid-title {
        font-style: normal;
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #24292F;
    }
    .services-grid-content {
        grid-template-columns: 1fr;
    }
    .services-grid-content-item-desc {
        padding: 12px 20px 20px;
        gap: 12px;
    }
    .services-grid-content-item-desc-title {
        font-size: 20px;
        line-height: 22px;
    }
    .services-grid-content-item-desc-txt {
        font-size: 14px;
        line-height: 18px;
    }
    .services-grid-content-item-desc button {
        font-size: 14px;
        line-height: 18px;
    }
    .services-grid-other-btn {
        margin-top: 0;
    }
}