:root {
    --primary: #EE7203;
    --secondary: #2A4C72;
    --bg-color: #eeeeee;
    --text-color: #333333;
    --font-primary: "Open Sans", sans-serif;
    --font-weight-bold: 700;
}

[data-theme="dark"] {
    --bg-color: #000;
    --text-color: #c0c9d7;
}

body {
    font-family: var(--font-primary);
    background-size: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 0.88rem;
}

.footer-logo {
    filter: contrast(0);
}

.h1,
h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
}

.h2,
h2 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
}

.h3,
h3 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
}

.title-1 {
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: var(--font-weight-bold);

}

.title-2 {
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: var(--font-weight-bold);
    color: var(--secondary);
}

.background-img {
    background-image: url(../img/bg.svg);
    background-repeat: no-repeat;
}

::-moz-selection {
    /* Code for Firefox */
    color: var(--bg-color);
    background: var(--secondary);
}

::selection {
    color: var(--bg-color);
    background: var(--secondary);
}

.section-header {
    background: url(../img/header-bg.png);
    background-size: cover;
    padding: 3rem 0;
}

.carousel-title {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.carousel-title-1 {
    font-size: 3rem;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.carousel-title-2 {
    font-size: 4rem;
    color: var(--secondary);
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.carousel-title-3 {
    font-size: 1rem;
    color: var(--text-color);
}

.carousel-indicators .active {
    background-color: var(--primary);
}

.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 50px;
}

.section-top-nav {
    background-color: var(--primary);
    color: var(--bg-color);
}

.section-main {
    padding: 4rem 0;
    background: url(../img/section-bg-1.svg) top no-repeat;
    background-size: contain;
}

.section-plan {
    background: linear-gradient(45deg, #F59D0F, var(--primary));
    color: var(--bg-color);
    padding: 4rem 0;
}

.section-plan h1 {
    color: var(--bg-color);
}

.section-links {
    padding: 4rem 0;
}

.important-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    align-items: stretch;
}

.important-links a {
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    align-items: center;
}


.important-links img {
    width: 100px;
}

.section-footer {
    background: #152028;
    color: #84878D;
    padding: 4rem 0 0 0;
}

.section-footer h3 {
    color: var(--primary);
}

.nav-top .nav-link {
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: var(--font-weight-bold);
    color: var(--bg-color);
}

.navbar-nav .nav-link {
    font-weight: var(--font-weight-bold);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary);
}

.navbar-brand img {
    height: 100px;
    transition: .3s ease all;
}

.navbarSticky .navbar-brand img {
    height: 50px;
    transition: .3s ease all;
}

.section-lines .line1 {
    background: #F79520;
    height: 6px;
    width: 100%;
    margin-bottom: 6px;
}

.section-lines .line2 {
    background: var(--primary);
    height: 6px;
    width: 100%;
    margin-bottom: 6px;
}

.section-lines .line3 {
    background: #84878D;
    height: 6px;
    width: 100%;
    margin-bottom: 6px;
}

.footer-links.list-group .list-group-item {
    background: none;
    color: #84878D;
    border: 0;
    padding: 0.5rem 0;
}

.accordion-button {
    font-weight: var(--font-weight-bold);
}

.card.custom-card {
    border: 0;
    box-shadow: 0 4px 12px #0000001a;
    padding: 1rem;
}


@media (max-width: 1280px) {

    .carousel-title-1 {
        font-size: 2rem;
    }

    .carousel-title-2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .carousel-title-1 {
        font-size: 2rem;
    }

    .carousel-title-2 {
        font-size: 3rem;
    }
}