.stretch {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.stretch > .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.center-wrapper {
  margin: auto 0;
  width: 100%;
}

.about-text {
  font-size: 1rem;
}

.about-indent {
  text-indent: -1rem;
  padding-left: 1rem;
}

.font-italic {
  font-style: italic;
}

.font-400 {
  font-weight: 400;
}
.font-400 b {
  font-weight: 600;
}

.font-300 {
  font-weight: 325;
}
.font-300 b {
  font-weight: 600;
}

.to-about-row {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991px) {
  .to-about-row {
    flex-direction: column;
  }
}
.to-about-row .to-about-col {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 6px;
  background-color: white;
  font-size: 0.9rem;
  flex: 1 1 33%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .to-about-row .to-about-col {
    flex: 100%;
  }
}
.to-about-row .to-about-col.no-padding {
  padding: unset;
}
.to-about-row .to-about-col.space-between {
  justify-content: space-between;
}
.to-about-row .to-about-col.col-w-50 {
  flex: 1 1 50%;
}
.to-about-row .to-about-col .to-about-page {
  margin-top: 0.8rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: 2px solid #0E6EB6;
  text-align: center;
  background-color: #0E6EB6;
  transition: all linear 100ms;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.to-about-row .to-about-col .to-about-page:hover {
  background-color: #FFCC00;
}
.to-about-row .to-about-col .hdr {
  padding: 0.5rem 1rem;
  padding: 1rem;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-color: #003399;
  color: white;
  font-weight: 500;
  font-size: 1.2rem;
}
.to-about-row .to-about-col .cnt {
  height: 100%;
  padding: 1rem;
  padding-top: 0;
}
.to-about-row .to-about-col .cnt .pad {
  margin-left: 1rem;
}
.to-about-row .to-about-col .cnt .colophon-title {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.bg-img {
  /*
  background-image: url('../images/vijuge.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  */
}
.bg-img .bg-container {
  width: 100%;
  min-height: 70vh;
  min-height: 30vh;
  min-height: 45vh;
}
.bg-img .bg-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.bg-img .bg-content .landing-buttons {
  min-width: 50%;
  min-width: 65%;
}
.bg-img .bg-content .landing-buttons .link-button {
  border: 2px solid #003399;
  text-align: center;
  display: block;
  background-color: white;
  color: black;
  text-decoration: none;
  cursor: pointer;
  transition: all linear 100;
  border-radius: 16px;
  border-radius: 50px;
  margin: 1rem 0;
  background-color: #003399;
  color: white;
  padding: 1.25rem;
  font-size: 1.75rem;
  /*
  &:first-of-type {
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
  }

  &:last-of-type {
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
  }
  */
}
@media (max-width: 991px) {
  .bg-img .bg-content .landing-buttons .link-button {
    padding: 0.5rem;
    font-size: 1rem;
  }
}
.bg-img .bg-content .landing-buttons .link-button:hover {
  background-color: #FFCC00;
  color: white;
  color: black;
}/*# sourceMappingURL=landing.css.map */