.services {
    padding-bottom: 60px;
}
.services__list {
    grid: none/repeat(3, 1fr);
    gap: 30px 30px;
}
.services__item {
    transition: var(--transition-duration);
    padding: 30px 30px 35px 30px;
    min-height: 300px;
    display: flex;
    color: #fff;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 4px;
}
.services__item:hover, 
.services__item:active {
    box-shadow: 0 0 50px rgba(181, 186, 191, 0.5);
}
.services__name {
    line-height: 24px;
    margin-bottom: 20px;
	cursor: default;
}
.services__desc {
    color: #ced6e0;
	cursor: default;
}
.services__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.services__btn {
	padding-left: 20px;
	padding-right: 20px;
    height: 45px;
    font-weight: 500;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #fff;
}
.services__btn:hover, 
.services__btn:active {
    color: #000;
    background-color: #fff;
}
.services__price {
	position: relative;
	top: -1px;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
	cursor: default;
}
.services__price sup {
    font-size: 0.6em;
	line-height: 0px;
}
.services__bg {
    position: relative;
}
.services__bg.bg img {
	z-index: 5;
}
.services__bg:after,
.services__bg:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	width: 100%;
	height: 100%;
    transition: var(--transition-duration) linear;
}
.services__bg:before {
	opacity: 1;
    background-image: linear-gradient(-21deg, rgba(66, 87, 108, 0.85) 0, rgba(26, 40, 54, 0.75) 100%);
	z-index: 10;
}
.services__bg:after {
    opacity: 0;
    background-image: linear-gradient(-21deg, #42576c 0, #1a2836 100%);
	z-index: 15;
}
.services__item:hover .services__bg:after, 
.services__item:active .services__bg:after {
    opacity: 1;
}
@media screen and (min-width: 1576px) {
	.services__bg.bg {
		overflow: hidden;
	}
	.services__bg.bg img {
		filter: blur(5px);
	}
}
@media screen and (max-width: 1220px) {
    .services__list {
        gap: 20px;
    }
    .services__item {
		min-height: 0px;
        padding: 25px 25px 30px 25px;
    }
	.services__name.h4 {
		font-size: 22px;
		line-height: 26px;
	}
	.services__desc.t4 {
		line-height: 22px;
	}
	.services__actions {
		margin-top: 25px;
	}
}
@media screen and (max-width: 992px) {
    .services__list {
        grid: none/repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
	.services__btn {
		font-size: 14px;
		height: 43px;
		padding-left: 18px;
		padding-right: 18px;
	}
}
@media screen and (max-width: 630px) {
	.services {
		padding-bottom: 45px;
	}
    .services__list {
        grid: none/repeat(1, 1fr);
		gap: 25px;
    }
	.services__price {
		font-size: 18px;
		line-height: 24px;
	}
}
@media screen and (max-width: 480px) {
	.services__name {
		margin-bottom: 15px;
	}
	.services__desc.t4 {
		line-height: 21px;
	}
	.services__actions {
		margin-top: 20px;
	}
}