.product__requestBtn {
    width: 100%;
    padding: 16px 0 16px;
    background: #ec3c46;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
}

.documentation {
    p {
        margin: 25px 0 10px;
        font-weight: 700;
        font-size: 16px;
    }

    ul {
        list-style: none;

        li {
            line-height: 15px;
            display: flex;
            align-items: center;
            font-size: 14px;
            margin: 10px 0 10px;
            position: relative;
            padding-left: 25px;

            &::before {
                content: "download";
                font-family: "Material Symbols Outlined";
                font-size: 20px;
                font-weight: 700;
                color: #cc0000;
                position: absolute;
                left: 0;
                top: 0;
            }
        }
    }
}

@media (max-width: 767px) {
    .documentation {
        p {
            font-size: 14px;
        }
    }
}
