@media screen and (min-width: 1300px) {
.service-content {
display: grid;
grid-template-columns: 1fr 300px;
}
}

@media screen and (min-width: 1600px) {
.service-column-content {
display: grid; 
grid-template-columns: repeat(3, 1fr);
position: relative;
}

.service-column  { position: relative } 
.service-column:not(:first-child)::before {
position: absolute;
content: '';
height: 100%;
width: 1px;
top: 0;
left:0;
background-color: #4773c521
}
}

.service-content ul {
padding: 30px 10px 10px 0 !important;
}
.service-content li { font-size: 0.9375rem }
.service-content__info {
padding: 35px;
font-size: 1.25rem;
line-height: 1.5625rem;
display: flex;
align-items: center;
font-weight: 600;
}

.sc-info {
font-weight: 600;
font-size: 1.5rem;
line-height: 2rem;
}

.service-column {
padding: 10px 25px;
}

.service-column ul {
font-size: 0.9375rem;
line-height: 1.4375rem;
}

.sc-text-container {
display: flex;
flex-direction: column;
justify-content: center;
gap: 30px;
height: 100%
}