.ourApproach{
    position: relative;
}

.ourApproach__container{
    margin: 0 auto;
}

.ourApproach__steps{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;

    padding-bottom: 55px;
}

.ourApproach__step {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 51px;
}

.ourApproach__description ul {
    margin: 0;
    padding: 0;
    margin-bottom: 36px;
}

.ourApproach__description li {
    font-size: 15px;
    line-height: 21px;
    list-style-type: none;
    margin: 16px 0;
    padding-left: 35px;
    position: relative;
}

.ourApproach__description li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-pink);
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: center;
    padding: 5px;
    box-sizing: border-box;
    margin-right: 10px;
    vertical-align: middle;

    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.33341L5.16667 7.50008L11 1.66675' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.ourApproach__headerContainer {
    height: 160px;
}

.ourApproach__img-container {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    border: 2px solid var(--color-accent-blue);
    margin-bottom: 38px;

    position: relative;
}

.ourApproach__img {
    width: 40px;
    height: 40px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ourApproach__img_color_lightBlue{
    border: 2px solid var(--color-accent-sky-blue);
}

.ourApproach__subTitleContainer {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

.ourApproach__number, .ourApproach__divider {
    color: var(--color-accent-blue);
}

.ourApproach__number {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ourApproach__list {
    margin: 0;
    padding: 0;
    margin-bottom: 36px;
}

.ourApproach__listItem {
    font-family: 'Montserrat';
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    list-style-type: none;
    margin: 14px 0;
    padding-left: 35px;
    position: relative;
}

.ourApproach__listItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-pink);
    border-radius: 10px;

    background-image: url('../../img/point-list-arrow.svg');
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: center;
    padding: 5px;
    box-sizing: border-box;
    margin-right: 10px;
    vertical-align: middle;
}

.ourApproach__button {
    margin: 0 auto;
    display: flex;
    width: 285px;
    justify-content: space-between;
    align-items: flex-end;
}

@media screen and (min-width: 1680px) and (max-width: 1740px) { /*чтобы заголовок не наезжал на пункты*/
    .ourApproach__headerContainer {
        height: 185px;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1312px) { /*чтобы заголовок не наезжал на пункты*/
    .ourApproach__headerContainer {
        height: 185px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1033px) { /*чтобы заголовок не наезжал на пункты*/
    .ourApproach__headerContainer {
        height: 185px;
    }
}

@media screen and (max-width: 1300px) {
    .ourApproach__container {
        margin: 47px auto;
    }

    .ourApproach__step {
        border-radius: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .ourApproach__steps {
        grid-template-columns: 100%;
        grid-template-rows: auto;
    }

    .ourApproach__headerContainer {
        display: flex;
        justify-content: flex-start;
        gap: 14px;
        height: auto;
    }

    .ourApproach__step {
        padding: 21px;
    }

    .ourApproach__img {
        width: 30px;
        height: 30px;
        padding: 15px;
    }

    .ourApproach__number, .ourApproach__subTitle {
        font-size: 16px;
        line-height: 19.5px;
    }

    .ourApproach__subTitleContainer {
        padding-top: 10px;
        gap: 8px;
        width: min-content;
    }

    .ourApproach__img {
        margin-bottom: 18px;
    }
}