.steps {
    margin: 5rem  0 0;
    padding: 1rem 0;
    gap: 2rem;
    display: flex;
    justify-content: center;
}

.steps li:last-child::before,
.steps li:last-child::after {
    display: none;
}


.steps-item {
    text-align: center;
    padding: 2rem;
    padding-top: 5rem;
    border-radius: .313rem;
    position: relative;
    height: 100%;
    box-shadow: 0 8px 8px -4px rgba(16, 24, 40, .03), 0 20px 24px -4px rgba(16, 24, 40, .08);
}

.steps-item-1 {
    background-color: #E5FDF3;
    position: relative;
}

.steps-item-2 {
    background-color: #F7F5FF;
    position: relative;
}

.steps-item-3 {
    background-color: #FEF4F6;
    position: relative;
}


.steps-item .icon {
    position: absolute;
    top: -3.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #eee;
    padding: .5rem;
    box-shadow: 0 8px 8px -4px rgba(16, 24, 40, .03), 0 20px 24px -4px rgba(16, 24, 40, .08);
}
.steps-item .icon > div{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-item .icon-1 {
    background-color: #E5FDF3;
}
.steps-item .icon-1 > div{
    background-color: #aef2d7;
    color: green;
}

.steps-item .icon-2 {
    background-color: #F7F5FF;
}
.steps-item .icon-2 >div{
    background-color: #efe9ff;
    color: #6421f2;
}

.steps-item .icon-3 {
    background-color: #FEF4F6;
}
.steps-item .icon-3 > div{
    background-color: #ffe9e9;
    color: #d73e3e;
}

/* triangle */

@media only screen and (max-width: 1024px) {
    .steps-item{
        margin-bottom: 6rem;
    }
    .steps-item:last-child{
        margin-bottom: 0;
    }
    .steps{
        margin-bottom: 0;
        padding: 0;
    }
}
@media only screen and (max-width: 576px) {
    .steps-item{
        padding-top: 3.5rem;
    }
    .steps-item p{
        margin-bottom: 0;
    }
}


@media only screen and (max-width: 992px) {
    .steps {
        display: block;
    }

    .steps li::before,
    .steps li::after {
        display: none;
    }

    .steps-item .icon {
        margin-bottom: 1rem;
    }

    .steps li {
        padding-bottom: 2rem;
    }

    .steps li:last-child {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 576px) {
    .steps-item .icon {
        width: 6.25rem;
        height: 6.25rem;
    }

    .steps {
        margin-bottom: 0;
    }
}


/* ----bio-contaiber css---- */

.main-container {
    align-items: center;
}

.main-container .image-section{
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.main-container .image-section img{
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%);
}


.img-container img {
    width: 460px;
    height: 600px;
    padding-inline: 1rem;
    overflow: hidden;
    object-fit: contain;
}

.timeline-element p {
 margin-top: -1rem;
}


@media (max-width: 768px) {
    .main-container .image-section{
        margin-bottom: 2rem;
    }
    
}



/* timeline */
.timeline{
    position: relative;
}

.timeline-element {
    padding-left: 2.5rem;
    padding-bottom: 1rem;
    position: relative;
}
.timeline-element:last-child::after{
    display: none;
}

.timeline-element::after {
    content: '';
    position: absolute;
    left:0;
    top: 7px;
    bottom: 0;
    border-left: 5px dotted #DD9D4C;
    height: 100%; 
    width: 0;
    z-index: 0; 
}

.timeline-element::before {
    content: '';
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: white;
    border: 3px solid #DD9D4C;
    position: absolute;
    left: -7px;
    z-index: 1;
    top: 6px;
}
.timeline-element p{
    margin-bottom: 0;
}

@media only screen and (max-width: 768px){
    .main-container,
    .content-container{
        padding: 0;
    }
}