/* Main */

:root {
  --uom-blue: #000f46;
  --uom-hover-blue: #a3e4f7;
  --pmcm-orange: #ee5c45;
  --serif-font: 'Fraunces';
  --sans-serif-font: 'Source Sans 3';
}

html {
  font-size: 16px;
}

@media (max-width: 576px) {
  html {
    font-size: 3.2vw;
  }
}

@media (min-width: 577px) and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

.main-base-class {
  width: 100%;
  background-color: white;
  font-family: var(--sans-serif-font), sans-serif;
  font-size: 1.125rem;
  font-weight: normal;
  font-style: normal;
  touch-action: manipulation;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* General */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif-font), serif;
  font-weight: bold;
  font-variation-settings: "opsz" 72, "SOFT" 50, "WONK" 0;
  color: var(--uom-blue);
}

.title-h {
  color: white; 
  font-weight: 400;
}

p {
  margin-bottom: 0.5rem;
}

.green {
  color: green;
}

.red {
  color: red;
}

.orange{
  color: orange;
}

/* Navbar */

#whole-navbar {
    background-color: var(--uom-blue);
}

#navbarNav {
  justify-content: right;
}

.nav-item {
  margin: 0 0.3rem 0 0.3rem;
}

.nav-link {
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-width: 1px;
  /* border-color: black;
  border-style: solid; */
}

.nav-link:hover {
  background-color: var(--uom-hover-blue);
  color: var(--uom-blue);
}

.nav-link:focus {
    color: white;
}

#navbar-logo-and-text {
  text-decoration: none;
  margin: 5px 2rem 5px 0;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
}

#navbar-logo-pic-div {
  height:3rem;
  width:3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  vertical-align: middle;
} 

#navbar-logo-pic {
  max-height:90%;
}

#navbar-text {
  vertical-align: middle;
  margin-bottom: 0;
  margin-left: 0.3rem;
  text-wrap: nowrap;
  font-weight: bold;
}

.navbar-toggler-icon{
  color: black;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

#nav-profile-dropdown {
    position: absolute;
    right: 0;
    left: auto;
}

/* Size of main boxes */
.content-containder-div {
  width: min(1200px, 100%);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  align-self: center;
}

/* Page-title */

.title-band {
  background-color: #000B34;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 0 2rem 0;
}

.title-band-container {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.title-band-container-non-home {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Footer CSS */

footer {
  margin-top: 1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
  width: 100%;
  color: grey;
  text-align: center;
  font-size: 0.8rem ;
}

/* Button CSS */
.uom-btn {
  border-width: 0;
  padding: 0.5rem 1rem 0.5rem 1rem;
  transition-duration: 0.5s;
  font-weight: bold;
  margin: 0.5rem 0.5rem 0.5rem 0;
  text-decoration: none;
  font-family: var(--serif-font);
}

.uom-btn-small {
  padding: 0.3rem 0.5rem 0.3rem 0.5rem;
  font-weight: normal;
}

.blue-btn {
  background-color: var(--uom-blue);
  color: white;
}

.blue-btn:hover {
  background-color: var(--uom-hover-blue);
  color: var(--uom-blue);
}

.blue-btn:focus {
  background-color: var(--uom-blue);
  color: white;
}


/* Crispy CSS */

.asteriskField {
  display: none;
}


.link-span {
  position: absolute; 
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Centre children */
/* Central div */
.centre-children {
  display: flex;
  flex-direction: column;
}

.centre-children > * {
  align-self: center;
  text-align: center;
}

.centre-children > * > * {
  align-self: auto;
  text-align: left;
}