:root {
    --primary-color: #E03A3C;
    --secondary-color: #143977;
    --border-color: #f1f0f2;
    --footer-color-bg: black;
    --footer-color-fg: white;
}


body {
    font-family: "Open Sans", sans-serif;
    color: #000;
}


header,
footer .bottom {
    background: var(--border-color);
}


header .nav-item .active {
    color: #000;
}

body a {
    color: #777777;
    text-decoration: none;
}

body a :hover {
    color: var(--primary-color);
    text-decoration: none;
}

body h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

.page-content p {
    text-align: justify;
}

/* Button */

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}


/* Jumbotron */

.jumbotron {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(90deg, rgba(224,58,60,1) 0%, rgba(155,58,58,1) 35%, rgba(126,58,75,1) 48%, rgba(20,57,119,1) 95%);
    color: #fff;
}

.jumbotron h2 {
    text-transform: uppercase;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}


/* section title */

.section-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-title h2 {
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.jumbotron h2::before,
.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1.5px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.jumbotron h2::after,
.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 20px);
}


/* ng-sector-table */

.table td, .table th {
    padding-right: 50px;
    padding-left: 20px;
}

thead {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}
