.div-title {
    font-family: var(--roboto-medium);
    font-size: 30px;
    line-height: 35.16px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 700;
}

.div-description {
    color: var(--color-light-grey);
    font-family: var(--roboto-light);
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
}

.divider {
    margin: auto;
    height: 2px;
    width: 114px;
    background: var(--color-red);
    display: inline-block;
}

.forms {
    .box {
        padding: 3rem 1rem;
        background-color: #1A1A1A;
        border: 1px solid #262626;
        text-align: center;

        .icon {
            width: 50px;
        }

        .title {
            color: #ffffff;
            font-family: var(--roboto-bold);
            font-size: 24px;
            font-weight: 600;
            line-height: 28.13px;
            text-align: center;
            margin-block: 8px;
            text-transform: uppercase;
        }

        .description {
            color: var(--color-light-grey);
            font-family: var(--roboto-regular);
            font-size: 18px;
            font-weight: 400;
            line-height: 25.2px;
        }

        .btn-form {
            padding: 12px 24px;
            border-radius: 3px;
            border: none;
            background: transparent;
            color: #ffffff;
            font-family: var(--roboto-medium);
            font-size: 17px;
            font-weight: 600;
            line-height: 24px;
            text-transform: uppercase;

            &:hover {
                opacity: .8;
            }
        }

        .btn-form {
            background-color: var(--color-red);
        }
    }
}

.reporting {

    .report {
        gap: 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #59595A;
        padding: 12px;

        .title-wrapper {
            display: flex;
            justify-content: space-between;
        }

        .title {
            font-family: var(--roboto-bold);
            font-size: 22px;
            font-weight: 700;
            line-height: 24px;
            color: #ffffff;
            text-transform: uppercase;
        }

        .description {
            font-family: var(--roboto-medium);
            font-size: 18px;
            font-weight: 400;
            line-height: 24px;
            color: var(--color-light-grey);
        }
    }
}

@media (max-width: 992px) {
    .div-title {
        font-size: 32px;
    }

    .forms .col-12 {
        padding-inline: 0;
    }
}

@media (max-width: 576px) {
    .div-title {
        font-size: 24px;
        line-height: 28.5px;
        margin-bottom: 1rem;
    }

    .div-description {
        font-size: 17px;
        line-height: 20px;
    }

    .forms {
        .box {
            .title {
                font-size: 22px;
                line-height: 25.13px;
            }

            .description {
                font-size: 16px;
                line-height: 22.2px;
            }
        }
    }

    .reporting {
        .report {
            flex-wrap: wrap;

            .description {
                font-size: 16px;
                line-height: 22px;
            }
        }
    }
}
