.pieces_detachees {
    margin-block-start: 0 !important;
    margin-top: 0;
    margin-bottom: 12px;
    display: flex;
    column-gap: 60px;
}

.pieces_detachees_image {
    width: calc(40% - 30px);
}

.pieces_detachees_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pieces_detachees_image .pieces_detachees_image_placeholder {
    width: 100%;
    height: 100%;
    background-color: #7d7d7d;
}

.pieces_detachees_block {
    width: calc(60% - 30px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    row-gap: 30px;
}

.pieces_detachees_heading {
    margin: 0px;
    font-size: 24px;
    color: #EC6608;
    font-weight: bold;
}

.pieces_detachees_icon_text_block {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 100%;
    column-gap: 50px;
    row-gap: 10px;
}

.pieces_detachees_icon {
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
}

.pieces_detachees_icon_text_block_image {
    width: 10px;
    height: 10px;
    background-color: #EC6608;
    border-radius: 100%;
}

.pieces_detachees_icon p {
    margin: 0;
    color: #EC6608;
    font-size: 21px;
    font-weight: 500;
    line-height: 34px;
}

.pieces_detachees_text {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin: 0;
}

.pieces_detachees_button {
    background-color: #EC6608;
    color: #FFFFFF;
    border: 3px solid #EC6608;
    display: flex;
    align-items: center;
    column-gap: 18px;
    padding: 12px 12px 12px 22px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 700;
    line-height: 12.6px;
    letter-spacing: 0.262px;
    text-transform: uppercase;
    text-decoration: none;
}

.pieces_detachees_button:hover {
    background-color: #ffffff;
    color: #EC6608;
    border: 3px solid #EC6608;
}

.pieces_detachees_button svg {
    width: 10px;
    height: 10px;
    transition: all 0.3s;
    fill: white;
}

.pieces_detachees_button:hover svg {
    fill: #EC6608;
}

.pieces_detachees_line {
    margin-block-start: 40px !important;
    margin-block-end: 40px !important;
    height: 53px;
    background-image: url('../../assets/images/pieces_detachees_line.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.pieces_detachees_line:nth-of-type(4n) {
    transform: scale(-1, -1);
}

@media screen and (max-width: 768px) {
    .pieces_detachees {
        column-gap: 30px;
    }

    .pieces_detachees_image {
        width: calc(45% - 15px);
    }

    .pieces_detachees_block {
        width: calc(55% - 15px);

    }

    .pieces_detachees_heading {
        font-size: 18px;
    }

    .pieces_detachees_icon p {
        font-size: 16px;
        line-height: 28px;
    }

    .pieces_detachees_button {
        margin-top: 13px;
        margin-top: 13px;
        width: 250px;
        height: 26px;
    }

    .pieces_detachees_button {
        column-gap: 12px;
        padding: 8px 8px 8px 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 425px) {
    .pieces_detachees {
        flex-direction: column;
        align-items: center;
    }

    .pieces_detachees_image {
        width: 100%;
    }

    .pieces_detachees_block {
        width: 100%;
        margin-top: 20px;
    }

    .pieces_detachees_icon p {
        font-size: 13px;
    }

    .pieces_detachees_text {
        font-size: 13px;
    }

    .pieces_detachees_line {
        height: 30px;
    }
}