.about-main .row{
    align-items: center;
}

.about-main-left{
    width: 50%;
    padding: 0px 30px 0px 15px;
}
.about-main-right{
    width: 50%;
    padding: 0px 15px 0px 30px;
}
.about-image-wrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
    row-gap: 20px;
}
.image-half{
    width: 50%;
    padding: 0px 10px;
    height: 350px;
}
.image-half img,.image-full img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.image-full{
    width: 100%;
    padding: 0px 10px;
    height: 350px;
}

.about-image{
    position: relative;
}
.about-experience{
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    border: 8px solid #fff;
}
.about-experience h4{
    margin-bottom: 0px;
    color: #fff;
    text-shadow: 2px 2px #000;
}

.about-main-right ul li{
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
    padding-left: 35px;
    margin: 0 0 18px;
    position: relative;
    list-style: none;
    position: relative;
    color: #000;
}
.about-main-right ul li:before {
    position: absolute;
    content: "";
    top: 3px;
    left: 0;
    right: auto;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: url(../images/step-icon.svg);
    background-size: contain;
}
.about-main-right h2{
    color: var(--orange);
}