
ol.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol.list > li {
    width: 100%;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    position: relative;
    counter-increment: list;
    /* max-width: 600px; */
    /* margin: 2rem auto; */
    padding: 2rem 1rem 1rem 0rem;
    /* box-shadow: 0.1rem 0.1rem 1.5rem rgb(0 0 0 / 30%); */
    /* border-radius: 0.25rem; */
    overflow: hidden;
    /* background-color: white; */
}
ol.list > li ul {
    margin-top: 5px;
}
ol.list > li ul li {
    margin-bottom: 10px;
    line-height: 14px;
}


ol.list section {
    flex-grow: 1
}

ol.list img {
    object-fit: contain;
}

.list > li h3 {
	display: flex;
	align-items: center;
    line-height: 33px;
    font-weight: 600;
    margin-bottom:20px;
	/* color: var(--brandColor); */
}

.list > li::before {
    background: #f27720;
    counter-increment: list-item;
    content: counter(list-item);
    /* font-size: 2rem; */
    font-size: 24px;
    font-weight: 700;
    width: 1.5em;
    height: 1.5em;
    flex: 0 0 auto;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    /* margin-right: 20px; */
}

.list p {
  clear: both;
  display: table;
  padding-top: 10px;
  line-height: 23px;
}
.info {
    margin-top: 20px;
}
.info li {
    margin-bottom: 10px;
    line-height: 23px;
}