.cards-with-icon .cards-with-icon__blocks {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.cards-with-icon .cards-with-icon__block {
    flex: 1;
    position: relative;
    color: #fff;
    padding: 40px 24px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cards-with-icon .cards-with-icon__block::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background-color: #FF8157;
}

.cards-with-icon .cards-with-icon__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cards-with-icon .cards-with-icon__block-title {
    font-weight: 800;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0%;
    margin-bottom: 64px;
    margin-top: 16px;
}

.cards-with-icon .cards-with-icon__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
    margin-top: auto;
}

.cards-with-icon .cards-with-icon__register {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

@media screen and (max-width: 1080px) {
    .cards-with-icon .cards-with-icon__blocks {
        flex-direction: column;
    }

    .cards-with-icon .cards-with-icon__block-title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 600px) {
    .cards-with-icon .cards-with-icon__register {
        width: 100%;
    }
}
