.info-card {
    padding: 40px 44px;
    border-radius: 32px;
    background-color: var(--color-gray-bg);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 398px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.info-card p {
font-size: var(--landing-main-body-size);
font-weight: var(--landing-main-body-weight-medium);
line-height: var(--landing-main-body-line-height-long);
letter-spacing: var(--landing-main-body-letter-spacing);
}
.info-cards{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.info-cards h3{
    position: relative;
    z-index: 10;
}
.info-card--width__2-3 {
    width: 61%;
}
.info-card--width__1-3 {
    width: 37%;
}
.info-card--width__1-2 {
    width: 49%;
}
.info-card--width__1-1 {
    width: 100%;
}

.info-card--light_green{
    background-color: #E9FF64;
}
.info-card--violet{
    color: #ffffff!important;
    background: var(--color-violet);
}
.info-card--violet > * {
    color: #ffffff!important;
}
.info-card--top-right {
    height: 398px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    background-image: url('../images/info-card--top-right.svg');
    background-position: 35px -31px;
    background-size: 100% auto;
    width: 37%;
}

.info-card--wide {
    height: 370px;
    width: 100%;
}

.info-card--wide h4 {
    max-width: 250px;
}

.info-card--wide p {
    max-width: 250px;
}
@media screen and (min-width: 1048px){
    .info-card--image_right{
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    .info-card--image_bottom{
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    .info-card--image_bottom img{
        left: 0;
        right: 0;
        bottom: 0;
        width: calc( 100% + 64px );
        margin-left: -32px;
        margin-top: auto;
    }
    .info-card--image_bottom-abolute img{
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        position: absolute;
    }
    .info-card--wide img{
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        min-height: 100%;
        transform: translateX(calc( -50% + 125px ));
        object-fit: cover;
        width: 640px;
        height: auto;
    }
    .info-card--image_right img{
        position: absolute;
        right: 0;
        top: 0;
        width: 90%;
        height: auto;
    }
}
@media screen and (max-width: 1047px) {
    .info-card {
        background-image: none;
        overflow: hidden;
        padding: 24px 36px 0 36px;
        height: auto;
        margin-left: -12px;
        margin-right: -12px;
        padding-top: 24px;
        padding-bottom: 0;
        width: calc(100% + 24px );
    }


    .info-card img {
        margin-left: -24px;
        margin-right: -24px;
        min-width: calc( 100% + 48px );
        width: 100%;
    }

    .info-card--wide img{
        margin-left: -18px;
        margin-right: -18px;
        min-width: calc( 100% + 36px );
    }

    .info-card--wide p {
        max-width: 100%;
    }
}