@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');



:root {
    --bs-primary: #325fe8;
    --bs-primary-rgb: 50, 95, 232;
}



/* start: Globals */
.fs-7 {
    font-size: 14px;
}
.fs-8 {
    font-size: 12px;
}
.fw-medium {
    font-weight: 500;
}
.bg-primary-light {
    background-color: #f1f5f9;
}
.ls-tight {
    letter-spacing: -1px;
}
.max-lg {
    max-width: 940px;
}
.max-md {
    max-width: 720px;
}
.max-sm {
    max-width: 540px;
}
.font-crimson {
    font-family: 'Crimson Pro', serif;
}
.z-10 {
    z-index: 10;
}
.invert {
    filter: invert(100%);
}
.font-crimson {
    font-family: 'Crimson Pro', serif;
}
.opacity-7 {
    opacity: .7;
}

body {
    font-family: 'DM Sans', sans-serif;
}
section {
    padding: 100px 0;
}
.btn {
    --bs-btn-padding-x: 1rem;
}
.btn > * {
    vertical-align: middle;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #284cba;
    --bs-btn-hover-border-color: #284cba;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #284cba;
    --bs-btn-active-border-color: #284cba;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}
.link-primary {
    color: rgba(var(--bs-primary-rgb), 1) !important;
    font-weight: 600;
    letter-spacing: -.5px;
    transition: color .2s;
}
.link-primary > * {
    vertical-align: middle;
}
.link-primary:hover {
    color: var(--bs-dark) !important;
}
/* end: Globals */



/* start: Navbar */
nav {
    background-color: rgba(255, 255, 255, .8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid var(--bs-gray-200);
    height: 64px;
}
.nav-mobile-menu-logo,
.nav-logo img {
    width: 32px;
}
.nav-toggle {
    width: 40px;
    height: 40px;
}
.nav-toggle:hover {
    background-color: var(--bs-gray-200);
}
.nav-mobile-menu {
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transition: all .1s;
}
.nav-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}
.nav-mobile-menu-dialog {
    transform: scale(.95);
    transform-origin: right top;
    transition: all .2s;
}
.nav-mobile-menu.active .nav-mobile-menu-dialog {
    transform: scale(1);
}
.nav-mobile-menu-dismiss {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-mobile-menu-dismiss:hover {
    background-color: var(--bs-gray-200);
}
.nav-mobile-menu-link > a:hover {
    background-color: var(--bs-light);
}
/* end: Navbar */



/* start: Footer */
footer {
    background-color: #0a132e;
    color: #94a3b8;
    padding: 64px 0;
}
.footer-logo img {
    width: 32px;
}
.footer-link {
    list-style-type: none;
}
.footer-link a {
    color: #94a3b8;
    transition: color .3s;
}
.footer-link a:hover {
    color: var(--bs-white);
}
footer .form-select {
    background-color: #334155;
    border-color: #334155;
    color: #94a3b8;
    max-width: 200px;
}
.footer-social a {
    color: #94a3b8;
    text-decoration: none;
    transition: color .3s;
}
.footer-social a:hover {
    color: var(--bs-white);
}
.footer-bottom {
    row-gap: 24px;
}
.footer-more-link {
    column-gap: 24px;
    row-gap: 16px;
}
.footer-more-link a {
    color: #94a3b8;
    transition: color .3s;
}
.footer-more-link a:hover {
    color: var(--bs-white);
}
/* end: Footer */







/* start: Breakpoints */
@media (min-width: 768px) {
    .nav-menu {
        list-style-type: none;
    }
    .nav-menu > li {
        height: 100%;
        display: flex;
        align-items: center;
    }
    .nav-menu > li:not(:last-child) {
        margin-right: 32px;
    }
    .nav-menu > li > a {
        text-decoration: none;
        color: var(--bs-dark);
        font-weight: 500;
        vertical-align: middle;
    }
    .nav-menu > li:hover > a {
        transition: all .2s;
        color: var(--bs-primary);
    }
    .nav-dropdown-menu-wrapper {
        top: calc(100% + 10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--bs-gray-200);
        transition: top .3s, opacity .2s, visibility .2s;
        z-index: 10;
    }
    .nav-menu > li:hover .nav-dropdown-menu-wrapper {
        top: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-dropdown-menu {
        list-style-type: none;
    }
    .nav-dropdown-menu a {
        text-decoration: none;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid transparent;
    }
    .nav-dropdown-menu a:hover {
        background-color: var(--bs-light);
        border-color: var(--bs-primary);
    }
    .nav-dropdown-menu-icon {
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background-color: var(--bs-light);
        border: 1px solid var(--bs-gray-300);
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bs-primary);
    }
}
/* start: Breakpoints */