.crmx {
    padding: 100px 10px 80px;
    background: linear-gradient(180deg, #dafffc 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

    .crmx .head {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

        .crmx .head .title {
            display: flex;
            flex-direction: column;
            gap: 4px;
            align-items: center;
        }

            .crmx .head .title div:nth-child(1) {
                background: linear-gradient(180deg, #1cbe98 0%, #44bcb9 100%);
                background-clip: text;
                color: transparent;
                font-family: Inter;
                font-weight: 800;
                font-size: 40px;
                line-height: 130%;
                letter-spacing: 2%;
                text-align: center;
            }

            .crmx .head .title div:nth-child(2) {
                background: linear-gradient(180deg, #3bbdb1 0%, #91baee 100%);
                background-clip: text;
                color: transparent;
                font-weight: 800;
                font-size: 48px;
                line-height: 130%;
                letter-spacing: 2%;
                text-align: center;
            }

        .crmx .head .description {
            font-weight: 400;
            font-size: 20px;
            line-height: 100%;
            letter-spacing: 0%;
            text-align: center;
        }

    .crmx .buttons {
        display: flex;
        gap: 20px;
    }

        .crmx .buttons button:nth-child(1) {
            box-shadow: 0px 4px 24px 0px #2b7d7b1f;
            background: #43bbb8;
            padding: 0 24px;
            border-radius: 12px;
            height: 64px;
            display: flex;
            align-items: center;
            border: none;
        }

            .crmx .buttons button:nth-child(1) span {
                font-weight: 500;
                font-size: 20px;
                line-height: 100%;
                letter-spacing: 0%;
                color: white;
            }

        .crmx .buttons button:nth-child(2) {
            border: 2px solid #43bbb8;
            padding: 0 24px;
            border-radius: 12px;
            height: 64px;
            display: flex;
            align-items: center;
            background: transparent;
        }

            .crmx .buttons button:nth-child(2) span {
                font-weight: 500;
                font-size: 20px;
                line-height: 100%;
                letter-spacing: 0%;
                color: #43bbb8;
            }

    .crmx .crmx-banner {
        width: 1000px;
    }

@media (min-width: 375px) and (max-width: 767px) {
    .crmx .crmx-banner {
        width: 100%;
    }

    .crmx .head .title div:nth-child(1) {
        font-size: 16px;
        line-height: 130%;
    }
    .crmx .head .title div:nth-child(2) {
        font-size: 18px;
        line-height: 130%;
    }

    .crmx .head .description {
        font-size: 18px;
        line-height: 130%;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .crmx .crmx-banner {
        width: 100%;
    }
}
