﻿
.ServicesPage {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 130px;
    display: flex;
    flex-direction: column;
}


.ServicesHeader {
    font-weight: bold;
    font-size: var(--fs-30);
    color: var(--TechnificentColor);
    text-align: center;
    text-decoration: underline;
    margin-left: 10px;
    margin-right: 10px;
}

.ServicesText {
    color: var(--TechnificentColor);
    font-size: var(--fs-20);
}

.ServicesList {
    color: var(--TechnificentColor);
    font-size: var(--fs-20);
}

.ServicesList li {
    display: flex;
    position: relative;
    margin: 10px 0;
    line-height: 30px;
    list-style: none;
    padding-left: 25px;
    margin-right: 40px;
}

.ServicesList li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 15px;
    height: 15px;
    background: url('../Images/Cogwheel.png') no-repeat left center;
    background-size: contain;
}


.ServicesList li.NoBullet:before {
    content: none;
}

.ServicesList li.Spacer {
    height: 0px; 
    padding: 0;
    margin: 0;
}