.juridic {
    width: 100%;
    margin: 60px 0;
}

.juridic__row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 110px;
    border-radius: 20px 20px 0 0;
    border-top: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    background: #F5F8FC;
}

.juridic__col-image {
    width: 100%;
    position: relative;
}

.juridic__col-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.juridic__col-info p {
    font-size: 16px;
    color: #222;
    font-weight: 400;
    line-height: 140%;
}

.juridic__col-info p strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
}

.juridic__label {
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 0 20px 0 0;
    background: #F5F8FC;
    padding: 30px 65px 46px 40px;
}

.juridic__label p {
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 600;
    color: #222;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
    width: fit-content;
}

.juridic__label p::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right,
            #868686 0 7px,
            transparent 7px 11px)
}

@media (max-width: 1250px) {
    .juridic__row {
        gap: 50px;
    }
}

@media (max-width: 1100px) {
    .juridic__row {
        gap: 20px;
    }

    .juridic__col-image {
        width: 75%;
    }

    .juridic__label {
        padding: 20px;
    }

    .juridic__col-info {
        width: 80%;
    }
}

@media (max-width: 768px) {

    .juridic__col-image {
        width: 100%;
    }

    .juridic__col-info {
        width: 100%;
        padding: 13px 27px 16px 21px;
    }

    .juridic__row {
        flex-direction: column;
        border-radius: 0 0 20px 20px;
        border: 0;
    }

    .juridic__label {
        padding: 15px 34px 21px 9px;
    }

    .juridic__label p::after{
        bottom: 0;
    }
}