@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;900&family=Kanit:wght@400;500;600;700&display=swap");

:root {
    --body-font-family: "Kanit", sans-serif;
    --heading-font-family: "Inter Tight", sans-serif;
    --accent-color: #0c63b5;
    --body-color: #454545;
    --heading-color: #101010;
    --primary-color: #101010;
    --cr_banner-color: #f4f4f4;
    --border-color: #c1c1c1;
    --common-color-white: #ffffff;
    --common-color-black: #000000;
    --drak-color: #ffffff;
}

html,
body {
    color: var(--body-color);
    background-color: var(--drak-color);
    font-family: var(--body-font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    padding: 0px;
    margin: 0px 0px 20px 0px;
    font-weight: 700;
    line-height: 1.2em;
    color: #0c63b5;
    font-family: "Inter Tight", sans-serif;
}

.cs_primary_font {
    font-family: "Inter Tight", sans-serif;
}

.cs_secondary_font {
    font-family: var(--body-font-family);
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 55px;
}

h3 {
    font-size: 45px;
}

h4 {
    font-size: 35px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 22px;
}

p {
    margin-bottom: 18px;
}

ul {
    margin: 0 0 25px 0;
    padding-left: 20px;
    list-style: square outside none;
}

    ul.cs_list_style_none {
        list-style: none;
        padding: 0px;
    }

        ul.cs_list_style_none li {
            margin-bottom: 30px;
        }

            ul.cs_list_style_none li:last-child {
                margin-bottom: 0px;
            }

ol {
    padding-left: 20px;
    margin-bottom: 25px;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 15px;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6em;
    margin: 0;
}

address {
    margin: 0 0 15px;
}

img {
    border: 0;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}
    a:hover {
        text-decoration: none;
        color: #0c63b5;
    }

.grid-layout a {
    color: var(--accent-color);
}

button {
    color: inherit;
    transition: all 0.3s ease;
}

table {
    width: 100%;
    border: 1px solid rgb(222, 226, 230);
    margin-bottom: 25px;
}

    table th {
        font-weight: 600;
        color: var(--body-color);
    }

    table td,
    table th {
        border-top: 1px solid #c1c1c1;
        padding: 11px 10px;
    }

dl {
    margin-bottom: 25px;
}

    dl dt {
        font-weight: 600;
    }

b,
strong {
    font-weight: bold;
}

pre {
    color: var(--body-color);
    border: 1px solid #c1c1c1;
    font-size: 18px;
    padding: 25px;
    border-radius: 5px;
}

kbd {
    font-size: 100%;
    background-color: var(--body-color);
    border-radius: 5px;
}

@media screen and (max-width: 991px) {
    body,
    html {
        font-size: 16px;
        line-height: 1.6em;
    }

    ul {
        margin: 0 0 25px 0;
        padding-left: 20px;
        list-style: square outside none;
    }

        ul.cs_list_style_none {
            list-style: none;
            padding: 0px;
        }

            ul.cs_list_style_none li {
                margin-bottom: 10px;
            }

                ul.cs_list_style_none li h3 {
                    font-size: 22px;
                }
}

input,
textarea {
    color: --primary-color;
    transition: all 0.3s ease;
}

/**umb_name:Botao Azul*/
.btn-blue {
    background: transparent;
    border: 2px solid #1a4790;
    color: #1a4790;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    padding: 10px 25px;
    width: fit-content;
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all .3s;
    justify-content: center;
}

    .btn-blue:hover {
        background: #1a4790;
        border: 2px solid #1a4790;
        color: #FFFFFF;
        font-size: 16px;
        line-height: 1;
        font-weight: 700;
        padding: 10px 25px;
        width: fit-content;
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-radius: 5px;
        transition: all .3s;
        justify-content: center;
    }

/**umb_name:Font Regular*/
.fw-normal {
    font-weight: 400;
}

/**umb_name:Font Medium*/
.fw-medium {
    font-weight: 500;
}

/**umb_name:Font Semi-Bold*/
.fw-semibold {
    font-weight: 600;
}

/**umb_name:Cor principal*/
.text-primary {
    color: var(--accent-color) !important;
}

/**umb_name:Cor escura*/
.text-dark {
    color: var(--heading-color) !important;
}

/**umb_name:Font secundaria*/
.font-secondaty {
    font-family: var(--heading-font-family);
}

/**umb_name:Font 14*/
.font-14 {
    font-size: 14px;
}

/**umb_name:Font 16*/
.font-16 {
    font-size: 16px;
}

/**umb_name:Font 18*/
.font-18 {
    font-size: 18px;
}

/**umb_name:Font 20*/
.font-20 {
    font-size: 20px;
}

/**umb_name:Font 22*/
.font-22 {
    font-size: 22px;
}

/**umb_name:Font 24*/
.font-24 {
    font-size: 24px;
}

/**umb_name:Font 26*/
.font-26 {
    font-size: 26px;
}

/**umb_name:Font 28*/
.font-28 {
    font-size: 28px;
}

/**umb_name:Font 30*/
.font-30 {
    font-size: 30px;
}

/**umb_name:Font 40*/
.font-40 {
    font-size: 40px;
}