@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --orange: orange;
    --blue: darkblue;
    --white: white;
}

body {
    background-color: #f9f9f9;
}

nav {
    background-color: var(--white);
    text-align: center;
}

span {
    color: var(--orange);
}

.navbar-brand {
    color: var(--blue);
}

nav ul {
    gap: 15px;
    align-items: center;
}

.primary-button {
    border: none;
    padding: 7px 28px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 3px;
}

h1,
h3 {
    color: var(--blue);
}

.select2-container .select2-selection--single {
    height: 40px !important;
    border-radius: 5px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ccc !important;
    border-radius: 0px !important;
}

.footer .box {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: var(--blue);
    transition: all .8s ease;
}


.footer .box:hover {
    background-color: var(--blue);
    color: var(--white);
}

.footer li {
    padding: 10px 0;
    list-style: none;
}

.footer a {
    text-decoration: none;
    color: var(--blue);

}

.footer a:hover {
    color: var(--orange);
}

.copyright {
    background-color: var(--blue);
    color: var(--white);
}

.copyright a {
    color: var(--orange);
}