:root {
    --color-blue: #02284c;
    --color-blue-offset: rgba(2, 40, 76, 0.6);
    --color-white: white;
    --color-white-offset: rgba(255, 255, 255, 0.6);
    --color-yellow: #FFFF00;
    --color-white-yellow: rgba(255, 255, 0, 0.6);
    --background-color-blue: #02284c;
    --background-color-blue-opacity: rgba(2, 40, 76, 0.6);
    --background-color-white-opacity: rgba(255, 255, 255, 0.3);
}


html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  
}

.sticky-offset {
    top: 100px;
}

a.header-link {
    color: #ffffff;
    text-decoration: none;
}

    a.header-link:link {
        text-decoration: none;
    }

    a.header-link:hover {
        text-decoration: none;
        color: #858585;
    }

a.plain-link {
    color: #fff;
    text-decoration: none;
}

    a.plain-link:link {
        text-decoration: none;
    }

    a.plain-link:hover {
        text-decoration: none;
        color: #8c8c8c;
    }

a.plain-link-red {
    color: var(--color-red);
    text-decoration: none;
}

    a.plain-link-red:link {
        text-decoration: none;
    }

    a.plain-link-red:hover {
        color: var(--color-red-offset);
        text-decoration: none;
    }

a.plain-link-white {
    color: var(--color-white);
    text-decoration: none;
}

    a.plain-link-white:link {
        text-decoration: none;
    }

    a.plain-link-white:hover {
        color: var(--color-white-offset);
        text-decoration: none;
    }

a.plain-link-blue {
    color: var(--color-blue);
    text-decoration: none;
}

    a.plain-link-blue:link {
        text-decoration: none;
    }

    a.plain-link-blue:hover {
        color: var(--color-blue-offset);
        text-decoration: none;
    }

a.plain-link-yellow {
    color: var(--color-yellow);
    text-decoration: none;
}

    a.plain-link-yellow:link {
        text-decoration: none;
    }

    a.plain-link-yellow:hover {
        color: var(--color-yellow-offset);
        text-decoration: none;
    }

.text-blue {
    color: var(--color-blue);
}

.background-color-blue {
    background-color: var(--background-color-blue);
}

.list-unstyled li {
    margin-bottom: 10px; /* Increased margin between list items */
}

.offset-section {
    padding-top: 100px; /* Adjust this value based on your navbar height */
    margin-top: -100px; /* Adjust this value based on your navbar height */
}

.background-colour-blue-opacity {
    background-color: var(--background-color-blue-opacity); /* Replace with your specific blue color and desired opacity */
}

.background-colour-white-opacity {
    background-color: var(--background-color-white-opacity); /* Replace with your specific blue color and desired opacity */
}

/* Base class with common properties */
.small-banner {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-repeat: no-repeat;
    color: white;
    background-position: top;
    background-size: cover;
    background-color: var(--background-color-blue);
}

/* Home page specific background */
.small-banner-home {
    background-image: url("/img/hero-peering.png");
}
