@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --bs-primary-rgb: 30, 79, 163;
    --bs-primary: #1E4FA3;
    --bs-secondary-rgb: 46, 125, 50;
    --bs-secondary: #2E7D32;
    --bs-tertiary-rgb: 198, 40, 40;
    --bs-tertiary: #C62828;
    --bs-body-bg: #F7F9FC;
    --bs-body-bg-rgb: 247, 249, 252;
    --bs-body-color: #2D2D2D;
    --bs-body-color-rgb: 45, 45, 45;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    overflow-x: hidden;
}

p:empty::before {
    content: "\00a0";
    display: inline-block;
}

a {
    color: var(--bs-primary);
    color: #1E4FA3;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #30bae3
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--bs-primary);
    color: #1E4FA3;
    margin-bottom: 1rem;
}

.btn {
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 0;
}

.btn-primary {
    --bs-btn-color: #FFF;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #212121;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #fff;
    --bs-btn-disabled-border-color: #fff;
}

    .btn-primary:focus,
    .btn-primary:active {
        color: #FFF;
    }

.btn-light:hover {
    background-color: var(--bs-dark);
    color: #fff;
}

/**umb_name:Font Light*/
.fw-light {
    font-weight: 300;
}

/**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(--bs-primary);
    color: #1E4FA3;
}

/**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;
}