﻿:root {
    --primary-color: #9AB9DE;
    --primary-bg: white;
}

body {
    width: 100%;
    font-family: "Ranade", sans-serif;
}

.secondary-text {
    color: #9AB9DE;
}

span.sub-title {
    font-size: 10px;
    line-height: 42px;
    letter-spacing: 8px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

a.primary-link {
    font-size: 10px;
    color: var(--primary-color);
    text-decoration: none;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 25px;

    &>* {
        max-width: 1200px;
    }
}

.row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

a.no-underline {
    text-decoration: none;
}

ul.no-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    span.sub-title {
        font-size: 15px;
    }
    a.primary-link {
        font-size: 18px;
    }
}

/* Navbar Style */
header {
    position: fixed;
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    background-color: #FCFCFC;
    z-index: 9999;
    height: 68px;

    & .btn-contactus {
        background-color: #C4DCF3;
        color: #102442;
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 0.2rem;
    }
}

.btn-contactus.active {
    background-color: black !important;
    color: white !important;
    border-color: black !important;
  }

  .nav-link.active:not(.btn-contactus) {
    text-decoration: underline;
    text-underline-offset: 1px;
    color: #102442;
  }

.navbar.mobile {
    display: block;
}

.navbar.desktop {
    display: none;
}

.sidebar {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;

    &>.navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 100vh;

        &>ul {
            flex: 1;
            padding-left: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;

            &>li {
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid var(--primary-color);

                &>a {
                    font-size: 30px;
                    color: #102442;
                    text-transform: capitalize;
                    letter-spacing: 0.2rem;
                    padding: 14px 0;
                    width: 100%;
                }

                &::after {
                    font-size: 24px;
                    color: var(--primary-color)
                }
            }
        }
    }
}

.navbar-toggler {
    border: none;
}

@media (min-width: 1024px) {
    .navbar.mobile,
    .sidebar {
        display: none;
    }

    .navbar.desktop {
        display: block;
    }
}

/* Footer Style */
.footer {
    background-color: #001c3d;
    color: white;
    padding: 2rem 0;
}

.footer a {
    color: white;
}

.footer-content {
    &>h5 {
        font-size: 10px;
        color: var(--primary-color);
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }

    &>p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 0;
    }

    &>ul {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 0;
    }
}

footer small,
footer .small {
    font-size: 8px;
}

.footer-nav {
    list-style-type: none;
    padding-left: 0;

    &>li:not(:last-child)::after {
        content: "|";
        margin-left: 10px;
        color: #C4DCF3;
    }
}

@media (min-width: 768px) {

    footer small,
    footer .small {
        font-size: 10px;
    }
}

.fade-white {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
  }

