.ideal_for_sect .sect_title:not(:last-child) {
    margin-bottom: 1em;
}
.ideal_for_sect .items {
    display: flex;
    flex-wrap: wrap;
    margin: -0.625em;
    justify-content: center;
}
.ideal_for_sect .item {
    margin: 0.625em;
    width: calc(50% - 1.25em);
    box-sizing: border-box;
    border-radius: 1.25em;
    overflow: hidden;
    background-color: #000000;
    position: relative;
    z-index: 1;
}
.ideal_for_sect .item:before {
    content: '';
    display: block;
    padding: 20.34% 0;
}
.ideal_for_sect .item_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    z-index: -1;
}
.ideal_for_sect .item_title_container {
    background-color: #ffffff;
    color: #374151;
    padding: 0.75em 1.5em;
    width: max-content;
    max-width: calc(100% - 2.5em);
    position: absolute;
    top: 1.25em;
    left: 1.25em;
    border-radius: 0.875em;
    display: flex;
    align-items: center;
}
.ideal_for_sect .item_title_container:before {
    content: '';
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    margin-right: 0.625em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/icons/checked-circle.svg);
}
.ideal_for_sect .item_title {
    /*max-width: calc(100% - 2.78em);*/
    width: max-content;
    font-size: 1.125em;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}
@media(max-width: 1199px) {
    .ideal_for_sect .item {
        width: 35em;
        max-width: calc(100% - 1.25em);
    }
}
@media(max-width: 767px) {
    .ideal_for_sect .items {
        margin: -0.25em;
    }
    .ideal_for_sect .item {
        margin: 0.25em;
        width: 25em;
        max-width: calc(100% - 0.5em);
        border-radius: 0.5em;
    }
    .ideal_for_sect .item_title_container {
        border-radius: 0.5em;
        left: 0.75em;
        top: 0.75em;
        padding: 0.5em 0.75em;
        max-width: calc(100% - 1.5em);
    }
    .ideal_for_sect .item_title_container:before {
        width: 1.75em;
        height: 1.75em;
        margin-right: 0.25em;
    }
    .ideal_for_sect .item_title {
        font-size: 1em;
    }
}