.info_cards_container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    @media (min-width: 768px) {
        padding: 0 15px;
    }
    @media (min-width: 1300px) {
        width: 100%;
        gap: 120px;
        padding: 0;
    }
}

.info_card {
    display: flex;
    gap: 15px;
    position: relative;
    flex-direction: column;
    align-items: center;
    @media (min-width: 480px) {

        width: 100%;

    }
    @media (min-width: 768px) {
        align-items: stretch;
        flex-direction: row;
        flex-wrap: unset;
        gap: 30px;
    }
}
.hidden {
    display: none;
}
.info_card_second_variant {
    display: flex;
    gap: 15px;
    position: relative;
    flex-direction: column;
    align-items: center;
    @media (min-width: 480px) {
        width: 100%;
    }
    @media (min-width: 768px) {
        align-items: stretch;
        flex-direction: row;
        flex-wrap: unset;
    }
    @media (min-width: 1300px) {
        gap: 30px;
    }
}

.info_card_second_variant:nth-of-type(even) {
    flex-direction: column;
    @media (min-width: 768px) {
        flex-direction: row-reverse;
    }
}
.info_card:nth-of-type(even) {
    flex-direction: column;
    @media (min-width: 768px) {
        flex-direction: row-reverse;
    }
}
.info_card_img_container {
    position: relative;
    aspect-ratio: 630 / 340;
    width: 100%;
    max-width: 630px;
    flex: 1 1 auto;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    @media (min-width: 480px) {
        flex: 1 1 auto;
    }
    @media (min-width: 768px) {
        flex: 1 1 630px;
        max-width: 630px;
    }
}
.info_card_img_second_variant_container {
    position: relative;
    aspect-ratio: 630 / 370;
    width: 100%;
    max-width: 630px;
    flex: 1 1 auto;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    @media (min-width: 480px) {
        flex: 1 1 auto;
    }
    @media (min-width: 768px) {
        flex: 1 1 630px;
        max-width: 630px;
    }
}

.info_card_heading_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    @media (min-width: 768px) {
        gap: 10px;
    }
}

.info_card_checkmark_container {
    display: flex;
    gap: 10px;
    min-height: 30px;
    img {
        margin-top: 2px;
        width: 23px;
        height: 18px;
    }
}
.button_link {
    text-wrap: nowrap;
    max-width: 250px !important;
    width: fit-content!important;
}
.button_link_container {
    display: flex;
    justify-content: center;
}
.small_lines_container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}
.small_grey_line {
    width: 40px;
    height: 1px;
    background: var(--grey-600);
    margin-left: 5px;
}
.small_orange_line {
    width: 40px;
    height: 1px;
    background: var(--orange-700);
    margin-right: 5px;
}


.info_card_corner_img {
    position: absolute;
    right: 0;
    bottom: 0;
}
.info_card:nth-of-type(even) .info_card_corner_img {
    @media (min-width: 768px) {
        right: unset;
        transform: scaleX(-1);
        left: 0;
        bottom: -15px;
    }
}
.info_card_second_variant:nth-of-type(even) .info_card_corner_img {
    @media (min-width: 768px) {
        right: unset;
        transform: scaleX(-1);
        left: 0;
        bottom: -15px;
    }
}

.info_card_text_container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 630px;
    width: 100%;
    @media (min-width: 480px) {
        max-width: 600px;
    }
    @media (min-width: 768px) {
        max-width: 630px;
        flex: 1 1 630px;
    }

}

.info_card_second_variant_content_container {
    display: flex;
    width: 100%;
    max-width: 330px;
    margin-bottom: 25px;
    @media (min-width: 480px) {
        max-width: 347px;
        margin-bottom: 0;
    }
    @media (min-width: 768px) {
        max-width: 630px;
        flex: 1 1 630px;
    }
}

.info_card_second_variant_text_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    max-width: 630px;
    /*@media (min-width: 480px) {*/
    /*    min-height: unset;*/
    /*    max-width: 347px;*/
    /*    flex: 1;*/
    /*    justify-content: space-around;*/
    /*    align-items: center;*/
    /*    height: auto;*/
    /*}*/
    @media (min-width: 768px) {
        max-width: 630px;
    }
    @media (min-width: 1300px) {
        justify-content: center;
        gap: 60px;
    }
}
