.page{
	padding: 12px 0px;
}

.banner{
	background-image: url('../images/pages/services.jpg');
	align-items: flex-start;
    flex-wrap: wrap;
    justify-content: unset;
    background-color: var(--color-gray);
    background-size: cover;
    min-height: 250px;
}

.banner__title{
	width: 100%;
	text-align: center;
	padding: 45px 0px 0px 0;
}

.services{
	color: var(--main-color);
    margin: 0 auto;
    column-count: 2;
    padding: 0;
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 20px 0;
    position: relative;
    z-index: 3;
    list-style-type: none;
}

.services li{
    padding: 0 0 0 0px;
    margin: 0px 5px 5px 30px;
    position: relative;
}

.services li::before{
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background-color: var(--main-color);
    left: -37px;
    top: 50%;
    transform: translate(0, -50%);
}

.services span{
	color: rgb(43, 42, 40);
}

.services a:hover span{
    color: var(--main-color);
}




@media (max-width: 990px) {
    .services{
        margin: 0 auto;
        width: 90%;
        font-size: 16px;
    }

    .services li::before {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 360px) {
    .services{
        column-count: 1;
        font-size: 14px;
    }
}