:root {
    --main-color: #13477a;
    --bg-color: #c9e4f6;
    --text-color: #ffffff;
    --color-dark: #000;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    text-decoration: none !important;
    list-style: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 20px;
}

img,
video {
    width: 100%;
}


input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Global Styles */
body {
    font-family: "Alexandria", sans-serif;
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.bg-blue {
    background-color: var(--main-color);
}

.bg-light-blue {
    background-color: var(--bg-color);
}

.text-blue {
    color: var(--main-color);
}

.border-bottom-blue {
    border-bottom: 1px solid var(--main-color) !important;
}

.border-blue {
    border: 1px solid var(--main-color) !important;
}

.custom-img-shadow {
    filter: drop-shadow(0px 0px 30px #13467a77);
    -webkit-filter: drop-shadow(0px 0px 30px #13467a77);
}

/* Navbar */
.offcanvas,
#home {
    background-color: var(--bg-color) !important;
}

.navbar.bg-dark {
    background-color: var(--bg-color) !important;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--main-color);
    text-decoration: underline !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--main-color) !important;
    font-weight: bold !important;
}

.input-group-text,
.form-control::placeholder {
    color: var(--text-color);
    font-weight: 300;
}

.text-justify {
    text-align: justify;
}

.fs-11-sm {
    font-size: 11px !important;
}

.fs-12-sm {
    font-size: 12px !important;
}

.fs-13-sm {
    font-size: 13px !important;
}

.fs-14-sm {
    font-size: 14px !important;
}

.fs-15-sm {
    font-size: 15px !important;
}

.fs-16-sm {
    font-size: 16px !important;
}

.fs-17-sm {
    font-size: 17px !important;
}

.fs-18-sm {
    font-size: 18px !important;
}

.fs-19-sm {
    font-size: 19px !important;
}

.fs-20-sm {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .fs-11 {
        font-size: 11px !important;
    }

    .fs-12 {
        font-size: 12px !important;
    }

    .fs-13 {
        font-size: 13px !important;
    }

    .fs-14 {
        font-size: 14px !important;
    }

    .fs-15 {
        font-size: 15px !important;
    }

    .fs-16 {
        font-size: 16px !important;
    }

    .fs-17 {
        font-size: 17px !important;
    }

    .fs-18 {
        font-size: 18px !important;
    }

    .fs-19 {
        font-size: 19px !important;
    }

    .fs-20 {
        font-size: 20px !important;
    }

    .custom-img-shadow {
        filter: drop-shadow(0px 0px 15px #13467a77);
        -webkit-filter: drop-shadow(0px 0px 15px #13467a77);
    }
}