:root {
    --helperBlue: #576ED6;
    --mainBlue: #2D63E4;
    --mainBlack: #1E1E1E;
}

.list_wrapper {
background-color: #FFFFFF;
}

.list {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 176px 20px;
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.list-item__img {
    width: 624px;
    height: 495px;
    border-radius: 12px;
}

.list-item-content {
    width: 557px;
    display: flex;
    flex-direction: column;
}

.list-item__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    color: var(--mainBlue);
}

.list-item__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--mainBlack);
    margin-top: 8px;
    margin-bottom: 44px;
}

.list-item-equipments {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.list-item-equipment {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.list-item-equipment__iconBlock {
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F9F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-item-equipment__icon {
    width: 24px;
    height: 24px;
}

.list-item-equipment__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-wrap: wrap;
    color: var(--mainBlack);
}

@media (max-width: 1240px) {
    .list {
        gap: 100px;
    }

    

    .list-item__img {
        max-width: 580px;
        width: 100%;
        height: 400px;
    }

    
}
@media (max-width: 1120px) {
    .list-item__img {
        max-width: 488px;
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 998px) {
    .list-item {
        display: flex;
        flex-direction: column;
        justify-content: unset;
        align-items: center;
        gap: 50px;
    }
    .list-item__img {
        max-width: 488px;
        width: 100%;
        height: 350px;
        order: -1;
    }

    .list-item-content {
        align-items: center;
    } 

    .list-item__description {
        text-align: center;
    }

    .list-item__title {
        text-align: center;
    }
}

@media (max-width: 650px) {
    .list-item-content {
        width: 300px;
    }

    .list-item__img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 450px) {
    .list {
        padding: 176px 20px;
    }

    .list-item-content {
        width: 280px;
    }

    .list-item__img {
        width: 280px;
        height: 280px;
    }
}