/* .problem {
    --Problem-Horisontal-Padding: var(--Side-Padding-Large);
    --Problem-Vertical-Padding: 144px;
    display: flex;
    max-width: 1440px;
    padding: var(--Problem-Vertical-Padding) var(--Problem-Horisontal-Padding);
    flex-direction: column;
    align-items: flex-start;
    gap: 72px;

    .problem-title-block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-self: stretch;
        flex-direction: row-reverse;

        .problem-title-text {
            max-width: 850px;
            font-size: 32px;
            line-height: 44px;
            font-weight: 700;
            align-self: stretch;
            color: var(--Colors-Main-Dark);
        }
    }

    .problem-description-block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row-reverse;

        .problem-logo {
            width: 224px;
            height: 206px;
        }

        .problem-description {
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            gap: 72px;
            flex-direction: row-reverse;

            .problem-description-text{ 
                max-width: 529px;
                font-size: 16px;
                line-height: 24px;
                font-weight: 400;
                color: var(--Colors-Main-Dark);
            }

            .problem-descrition-title {
                max-width: 314px;
                font-size: 24px;
                line-height: 32px;
                font-weight: 600;
                color: var(--Colors-Main-Dark);
            }
        }
    }

    .mobile-button {
        display: none;
    }

    @media screen and (max-width: 1340px) {
        gap: 64px;

        .problem-title-block {
            gap: 72px;
            .problem-title-text {
                max-width: unset;
                flex: 1 0 0;
                align-self: stretch;
            }
        }

        .problem-description-block {
            gap: 72px;

            .problem-description {
                gap: 64px;

                .problem-description-text {
                    max-width: unset;
                    flex: 1 0 0;
                }
            }
        }
    }

    @media screen and (max-width: 1140px) {
        --Problem-Horisontal-Padding: 40px;
        --Problem-Vertical-Padding: 104px;
        gap: 40px;

        .problem-title-block {
            .desktop-button {
                display: none;
            }
        }

        .problem-description-block {
            .problem-description {
                flex-direction: column-reverse;
                gap: 40px;

                .problem-descrition-title {
                    max-width: unset;
                    align-self: stretch;
                }
            }
        }
        .mobile-button {
            display: flex;
        }
    }

    @media  screen and (max-width: 940px) {
        --Problem-Vertical-Padding: 96px;
        gap: 48px;
    
        .problem-description-block {
            .problem-logo {
                display: none;
            }
        }

        .mobile-button {
            margin-top: 16px;
        }
    }

    @media screen and (max-width: 540px) {
        --Problem-Horisontal-Padding: 20px;
        --Problem-Vertical-Padding: 80px;
    }

    @media screen and (max-width: 440px) {

        .problem-title-block {
            .problem-title-text {
                font-size: 28px;
                line-height: 36px;
            }
        }

        .problem-description-block {
            gap: 32px;

            .problem-description-title {
                font-size: 20px;
                line-height: 28px;
            }
        }

        .mobile-button {
            margin-top: 8px;
        }
    }
} */

.problem {
    --Problem-Horisontal-Padding: var(--Side-Padding-Large);
    --Problem-Vertical-Padding: 144px;
    display: flex;
    max-width: 1440px;
    padding: var(--Problem-Vertical-Padding) var(--Problem-Horisontal-Padding);
    flex-direction: column;
    align-items: flex-start;
    gap: 72px;
}
.problem .problem-title-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    flex-direction: row-reverse;
}
.problem .problem-title-block .problem-title-text {
    max-width: 850px;
    font-size: 32px;
    line-height: 44px;
    font-weight: 700;
    align-self: stretch;
    color: var(--Colors-Main-Dark);
}
.problem .problem-description-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.problem .problem-description-block .problem-logo {
    width: 224px;
    height: 206px;
}
.problem .problem-description-block .problem-description {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 72px;
    flex-direction: row-reverse;
}
.problem .problem-description-block .problem-description .problem-description-text {
    max-width: 529px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--Colors-Main-Dark);
}
.problem .problem-description-block .problem-description .problem-descrition-title {
    max-width: 314px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--Colors-Main-Dark);
}
.problem .mobile-button {
    display: none;
}
@media screen and (max-width: 1340px) {
    .problem {
        gap: 64px;
   }
    .problem .problem-title-block {
        gap: 72px;
   }
    .problem .problem-title-block .problem-title-text {
        max-width: unset;
        flex: 1 0 0;
        align-self: stretch;
   }
    .problem .problem-description-block {
        gap: 72px;
   }
    .problem .problem-description-block .problem-description {
        gap: 64px;
   }
    .problem .problem-description-block .problem-description .problem-description-text {
        max-width: unset;
        flex: 1 0 0;
   }
}
@media screen and (max-width: 1140px) {
    .problem {
        --Problem-Horisontal-Padding: 40px;
        --Problem-Vertical-Padding: 104px;
        gap: 40px;
   }
    .problem .problem-title-block .desktop-button {
        display: none;
   }
    .problem .problem-description-block .problem-description {
        flex-direction: column-reverse;
        gap: 40px;
   }
    .problem .problem-description-block .problem-description .problem-descrition-title {
        max-width: unset;
        align-self: stretch;
   }
    .problem .mobile-button {
        display: flex;
   }
}
@media screen and (max-width: 940px) {
    .problem {
        --Problem-Vertical-Padding: 96px;
        gap: 48px;
   }
    .problem .problem-description-block .problem-logo {
        display: none;
   }
    .problem .mobile-button {
        margin-top: 16px;
   }
}
@media screen and (max-width: 540px) {
    .problem {
        --Problem-Horisontal-Padding: 20px;
        --Problem-Vertical-Padding: 80px;
   }
}
@media screen and (max-width: 440px) {
    .problem .problem-title-block .problem-title-text {
        font-size: 28px;
        line-height: 36px;
   }
    .problem .problem-description-block {
        gap: 32px;
   }
    .problem .problem-description-block .problem-description-title {
        font-size: 20px;
        line-height: 28px;
   }
    .problem .mobile-button {
        margin-top: 8px;
   }
}
