.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-bold {
    font-weight: 700;
}

.text-light {
    font-weight: 300;
}

.text-regular {
    font-weight: 400;
}

.text-medium {
    font-weight: 500;
}

.text-italic {
    font-style: italic;
}

.text-underline {
    text-decoration: underline;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 24px;
}

.mb-5 {
    margin-bottom: 32px;
}

.mt-1 {
    margin-top: 4px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 16px;
}

.mt-4 {
    margin-top: 24px;
}

.mt-5 {
    margin-top: 32px;
}

.ml-1 {
    margin-left: 4px;
}

.ml-2 {
    margin-left: 8px;
}

.ml-3 {
    margin-left: 16px;
}

.ml-4 {
    margin-left: 24px;
}

.ml-5 {
    margin-left: 32px;
}

.mr-1 {
    margin-right: 4px;
}

.mr-2 {
    margin-right: 8px;
}

.mr-3 {
    margin-right: 16px;
}

.mr-4 {
    margin-right: 24px;
}

.mr-5 {
    margin-right: 32px;
}

.pt-1 {
    padding-top: 4px;
}

.pt-2 {
    padding-top: 8px;
}

.pt-3 {
    padding-top: 16px;
}

.pt-4 {
    padding-top: 24px;
}

.pt-5 {
    padding-top: 32px;
}

.pb-1 {
    padding-bottom: 4px;
}

.pb-2 {
    padding-bottom: 8px;
}

.pb-3 {
    padding-bottom: 16px;
}

.pb-4 {
    padding-bottom: 24px;
}

.pb-5 {
    padding-bottom: 32px;
}

.pl-1 {
    padding-left: 4px;
}

.pl-2 {
    padding-left: 8px;
}

.pl-3 {
    padding-left: 16px;
}

.pl-4 {
    padding-left: 24px;
}

.pl-5 {
    padding-left: 32px;
}

.pr-1 {
    padding-right: 4px;
}

.pr-2 {
    padding-right: 8px;
}

.pr-3 {
    padding-right: 16px;
}

.pr-4 {
    padding-right: 24px;
}

.pr-5 {
    padding-right: 32px;
}

.product-docs {
    padding: 64px 0;
}

.product-docs .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-docs .row .col {
    flex: 0 0 33%;
    max-width: 33%;
    padding: 8px;
}

.product-docs .col .inner-box {
    background: #fff;
    padding: 24px;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.product-docs .col .inner-box .title {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 900;
}

.product-docs .col .inner-box .title > a {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #000;
    line-height: 32px;
}

.product-docs .col .inner-box .title > a:hover {
    color: #0b75e5;
}

.product-docs .col .inner-box .content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    color: #333;
    font-size: 16px;
}

.product-docs-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0b75e5;
    font-size: 32px;
}


@media (max-width: 1200px) {
    .product-docs .row .col {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 8px;
    }

    .product-docs-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .product-docs .row .col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 8px;
    }
}