ul li::marker {
    color: var(--color-green);
}

.service__detail p strong {
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin: 40px 0;
}
.service__detail ul li::marker {
    color: var(--color-green);
}

.main__section__wrapper {
    background: var(--light-gray);
    margin-bottom: 60px;}

.main__section {
    display: flex;
    justify-content: space-between;
    align-items: center;}

.main__section__picture {
    position: relative;
    width: auto;
    min-width: 600px;
    z-index: 0;}

.main__section__picture  img {
    height: 100%;
    width: 100%;
    display: flex;}

.main__section__picture::before {
    content: '';
    background: linear-gradient(90deg, #F8F8FA 10%, rgba(248,248,250,0.00) 33%);
    width: 100%;
    position: absolute;
    z-index: 1;
    display: flex;
    height: 100%;}

.section-description {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {

}

@media (max-width: 480px) {
    .section-description {
        grid-template-columns: 100%;
    }
}


