/* Main */

:root {
  --pmcm-blue: #002267;
  --pmcm-orange: #ee5c45;
}

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: 'Montserrat', sans-serif;
  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-weight: bold;
}

p {
  margin-bottom: 0.5rem;
}

.green {
  color: green;
}

.red {
  color: red;
}

/* Navbar */

#navbarNav {
  justify-content: center;
}

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

.nav-link {
  color: var(--pmcm-blue);
  font-size: 1.2rem;
  font-weight: bold;
  border-width: 1px;
  /* border-color: black;
  border-style: solid; */

}

.nav-link:hover {
  color: var(--pmcm-orange);
}

#navbar-logo-and-text {
  text-decoration: none;
  margin-right: 2rem;
  color: black;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

#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;
  color: var(--pmcm-blue);
}

.navbar-toggler-icon{
  color: black;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

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

/* Page-title */
.page-title {
  background-color: var(--pmcm-blue);
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  padding-top: 1rem;
  padding-bottom: 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 */
.pmcm-btn {
  border-width: 0;
  border-radius: 0.4rem;
  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;
}

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

.green-btn {
  background-color: #009000;
  color: white;
}

.green-btn:hover {
  background-color: #005000;
}

.orange-btn {
  background-color: var(--pmcm-orange);
  color: white;
}

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


/* Crispy CSS */

.asteriskField {
  display: none;
}


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