.about__container {
    padding-top: 23px;
} 

.about__title {
    color: var(--color-green-dark);
    font-family: var(--font-inter);
    font-size: 26px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.572px;
    margin-bottom: 12px;
}

.about__text,
.about__list {
    color: #000000;
    font-family: var(--font-inter);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.342px;
    margin-bottom: 30px;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about__list {
    padding-left: 25px;
}

ul.about__list li {
    list-style: disc;
}

.about__text a {
    text-decoration: underline;
}

.about__img {
    position: relative;
    width: 100%;
    height: 327px;
}

.about__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (min-width: 400px) {
    .about__text,
    .about__list {
        font-size: 18px;
    }

    .about__list i {
        font-size: 16px;
    }

    .about__list {
        padding-left: 35px;
    }
}


/* ------------------- */


.about__header {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #cbcbcb;
}

.about__video {
    margin: 0 auto;
    max-width: 768px;
}
.about__video  video{
   
    width: 100%;
    margin: 0 auto;
}

.about__title_work {
    font-weight: 700;
    font-size: 22px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #000;
}

h2.about__title_work {
    text-align: center;
    margin-bottom: 15px;
}
h3.about__title_work {
    text-transform: uppercase;
    margin-bottom: 0;
}

.about__steps {
    display: flex;
    flex-direction: column;
}
.steps {
}
.step {

    display: flex;
    flex-direction: column;
    gap: 15px;

   padding-top: 20px;
   padding-bottom: 30px;

    border-bottom: 1px solid #cbcbcb;
}

.step a {
    color: #01B988;
}

.step__title {

}
.step__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #000;

    display: flex;
    flex-direction: column;
    gap: 10px;
}
.step__img {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 15px;
    /* border-bottom: 1px solid #cbcbcb; */
}

.step .step__img:not(:last-child)::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    right: -20px;
    height: 1px;
    background-color: #cbcbcb;

}
   


.step__img{

}

.step__img img {
    width: 100%;
    height: 100%;
}

.step__decor-line {
    margin: 0px -20px;
    height: 1px;
    background-color: #cbcbcb;
    color: transparent;
}


.side-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    opacity: 0;
    transition: opacity .3s ease-in;
    z-index: -1;
}

.side-nav.active {
    opacity: 1;
    z-index: 10;
}

.steps__list {

}

.steps__list li {
    padding: 10px;
}

.steps__list a {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000;
}

.side-nav__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-nav__list li {
    position: relative;
}

.side-nav__list li:not(:last-child)::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    width: 3px;
    background-color: #01b988;
}

.side-nav__list a {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    /* background: #01b988; */
    border-radius: 50%;
    color: #cbcbcb;

    background: #d9d9d9;
}
.side-nav__list a.active {
    background: #01b988;
    color: #fff;
}

.side-nav__list li:last-child  a{
    background-color: #01b988;
    color: #fff;
}



@media (min-width: 480px) {
    .side-nav__list{
        gap: 15px;
    }

    .side-nav__list li:not(:last-child)::after {
        bottom: -15px;
        height: 15px;
    }

    .side-nav__list a{
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    
}

@media (min-width: 1024px) {
    .side-nav__list a {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .about .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}