/* increase default logo size */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-brand {
        width: 9.0rem;
    }
}
.navbar-brand {
    width: 6.5rem;
}

/* change colour of tick icons */
.bg-primary-subtle {
    background-color: #edebe5 !important;
}
.text-primary {
    color: #1F47BF !important;
}

/* change default footer colour */
#footer{
  /* base colour (fallback) */
  background-color: #122A73 !important;

  /* subtle darkening towards the bottom */
  background-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.18) 55%,
    rgba(0,0,0,.35) 100%
  );
}

/* change default primary colour */
.text-bg-primary {
    background-color: #1f48c0 !important;
}
/* change default loader colour */
.bg-primary {
    background-color: #1f48c0 !important;
}
/* change default dropdown nav click colour */
.dropdown-item.active, .dropdown-item:active {
    background-color: #1f48c0;
}
  
/* change default gradient colours */
.bg-gradient-primary {
    background-image: linear-gradient(155deg, #2B53C3 20%, #edebe5 130%, #14285D 75%, #122A73);
}

.footer .nav-link:focus,
.footer .nav-link:hover {
  color: #285DFB;
}
/* blue colour bg */
.bg-blue {
    background-color: #122A73 !important;
}
/* slide nav colouring */
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #1f48c0;
}

/* no capitalisation in drop down nav */
.dropdown-item {
    text-transform: none;
}
/* no capitalisation in buttons */
.btn {
    text-transform: none;
}
/* text link hover colour */
a:hover {
  --bs-link-color-rgb: 31, 72, 192; /* #1f48c0 */
}
  
/* change defult button colours */
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1f48c0;
    --bs-btn-border-color: #1f48c0;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #122A73;
    --bs-btn-hover-border-color: #122A73;
    --bs-btn-focus-shadow-rgb: 122, 110, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #122A73;
    --bs-btn-active-border-color: #122A73;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(8, 7, 19, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1f48c0;
    --bs-btn-disabled-border-color: #1f48c0;
}
  

  

  
