@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 100;
  src: local("Montserrat Thin"), url(/fonts/Montserrat-Thin.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 100;
  src: local("Montserrat Thin Italic"), url(/fonts/Montserrat-ThinItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 200;
  src: local("Montserrat ExtraLight"), url(/fonts/Montserrat-ExtraLight.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 200;
  src: local("Montserrat ExtraLight Italic"), url(/fonts/Montserrat-ExtraLightItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  src: local("Montserrat ExtraLight"), url(/fonts/Montserrat-ExtraLight.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 300;
  src: local("Montserrat Light Italic"), url(/fonts/Montserrat-LightItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat Regular"), url(/fonts/Montserrat-Regular.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 400;
  src: local("Montserrat Regular Italic"), url(/fonts/Montserrat-Italic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), url(/fonts/Montserrat-Medium.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 500;
  src: local("Montserrat Medium Italic"), url(/fonts/Montserrat-MediumItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  src: local("Montserrat SemiBold"), url(/fonts/Montserrat-SemiBold.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 600;
  src: local("Montserrat SemiBold Italic"), url(/fonts/Montserrat-SemiBoldItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), url(/fonts/Montserrat-Bold.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 700;
  src: local("Montserrat Bold Italic"), url(/fonts/Montserrat-BoldItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 800;
  src: local("Montserrat ExtraBold"), url(/fonts/Montserrat-ExtraBold.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 800;
  src: local("Montserrat ExtraBold Italic"), url(/fonts/Montserrat-ExtraBoldItalic.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 900;
  src: local("Montserrat Black"), url(/fonts/Montserrat-Black.ttf);
}
@font-face {
  font-family: Montserrat;
  font-style: italic;
  font-weight: 900;
  src: local("Montserrat Black Italic"), url(/fonts/Montserrat-BlackItalic.ttf);
}
@font-face {
  font-family: Seymour One;
  font-style: normal;
  font-weight: 400;
  src: local("Seymour One Regular"), url(/fonts/SeymourOne-Regular.ttf);
}
*,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 10pt;
}

h2 {
  text-align: center;
}

p {
  font-weight: 500;
}

#mainContainer {
  width: 800px;
  border: 1px solid #393939;
  margin: 50px auto 50px auto;
  background-color: #ffffff;
}

#bannerContainer {
  height: 65px;
}

#bannerAgencyName {
  width: 450px;
  float: right;
  text-align: right;
  font-size: 14pt;
  margin: 15px 10px 0 0;
}

#bannerCaseLookLogo {
  float: left;
}

.footerContainer {
  font-size: 8pt;
}

#navigationContainer {
  height: 25px;
  margin: 10px;
}

#navigationContainer ul {
  float: left;
  padding: 0;
}

#navigationContainer ul li {
  display: inline;
  margin: 5px;
  padding: 0;
}

#navigationContainer a {
  text-decoration: none;
  padding: 4px;
  border: 1px solid #999999;
  box-shadow: 1px 1px 2px #000000;
}

#navigationContainer a:hover,
#navigationContainer a:active {
  background-color: #fafafa;
  box-shadow: 1px 1px 1px #000000;
}

.columnClear {
  clear: both;
}

header {
  height: 15rem;
  background-image: linear-gradient(rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.2)), url("/images/RectLight.svg");
  background-position: center;
  background-size: cover;
  text-transform: uppercase;
  color: white;
  font-size: 5rem;
  font-weight: 600;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@supports (display: flex) {
  header {
    min-height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
header span {
  font-weight: 300;
}
@media screen and (max-width: 650px) {
  header span {
    transform: translateY(-0.8rem);
  }
}
header .banner_title {
  margin: 0;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  header .banner_title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 650px) {
  header .banner_title {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}
header .subheader {
  display: flex;
  flex-direction: row;
}
header .subheader .line {
  height: 0.5rem;
  min-width: 15rem;
  background: #f2e590;
  transform: translateY(0.3rem);
}
@media screen and (max-width: 650px) {
  header .subheader .line {
    min-width: 8rem;
  }
}
header .subheader p {
  transform: translateY(-1.5rem);
  margin: 0 1rem;
  font-family: "Seymour One", sans-serif;
  font-size: 2.5rem;
}
@media screen and (max-width: 991px) {
  header .subheader p {
    font-size: 1.5rem;
    transform: translateY(-0.5rem);
  }
}

.navbar-section .navigation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 5rem 0;
  min-height: calc(100vh - 20rem);
}
.navbar-section .navigation li {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0.6rem 0;
  min-width: 80%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.navbar-section .navigation li a {
  font-size: 1.8rem;
  font-weight: 600;
  width: 100%;
  color: white;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  padding: 1.6rem 0;
  background-color: #542023;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .navbar-section .navigation li a {
    font-size: 1.4rem;
  }
}
.navbar-section .navigation li a:after {
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  position: absolute;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
}
.navbar-section .navigation li a:hover {
  color: #542023;
}
.navbar-section .navigation li a:hover:after {
  width: 100%;
  background-color: #f2e590;
}

/*!
 * SlickNav Responsive Mobile Menu v1.0.10
 * (c) 2016 Josh Cope
 * licensed under MIT
 */
.slicknav_btn {
  position: relative;
  display: block;
  vertical-align: middle;
  float: right;
  padding: 0.438em 0.625em 0.438em 0.625em;
  line-height: 1.125em;
  cursor: pointer;
}

.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
  margin-top: 0.188em;
}

.slicknav_menu {
  *zoom: 1;
}

.slicknav_menu .slicknav_menutxt {
  display: block;
  line-height: 1.188em;
  float: left;
}

.slicknav_menu .slicknav_icon {
  float: left;
  width: 1.125em;
  height: 0.875em;
  margin: 0.188em 0 0 0.438em;
}

.slicknav_menu .slicknav_icon:before {
  background: transparent;
  width: 1.125em;
  height: 0.875em;
  display: block;
  content: "";
  position: absolute;
}

.slicknav_menu .slicknav_no-text {
  margin: 0;
}

.slicknav_menu .slicknav_icon-bar {
  display: block;
  width: 1.125em;
  height: 0.125em;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.slicknav_menu:before {
  content: " ";
  display: table;
}

.slicknav_menu:after {
  content: " ";
  display: table;
  clear: both;
}

.slicknav_nav {
  clear: both;
}

.slicknav_nav ul {
  display: block;
}

.slicknav_nav li {
  display: block;
}

.slicknav_nav .slicknav_arrow {
  font-size: 0.8em;
  margin: 0 0 0 0.4em;
}

.slicknav_nav .slicknav_item {
  cursor: pointer;
}

.slicknav_nav .slicknav_item a {
  display: inline;
}

.slicknav_nav .slicknav_row {
  display: block;
}

.slicknav_nav a {
  display: block;
}

.slicknav_nav .slicknav_parent-link a {
  display: inline;
}

.slicknav_brand {
  float: left;
}

.slicknav_menu {
  font-size: 16px;
  box-sizing: border-box;
  background: #4c4c4c;
  padding: 0;
}

.slicknav_menu * {
  box-sizing: border-box;
}

.slicknav_menu .slicknav_menutxt {
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 3px #000;
}

.slicknav_menu .slicknav_icon-bar {
  background-color: #fff;
}

.slicknav_btn {
  margin: 5px 5px 6px;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: transparent;
}

.slicknav_nav {
  color: #fff;
  margin: 0;
  padding: 0;
  font-size: 0.875em;
  list-style: none;
  overflow: hidden;
}

.slicknav_nav ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0 0 0 20px;
}

.slicknav_nav .slicknav_row {
  padding: 5px 10px;
  margin: 2px 5px;
}

.slicknav_nav .slicknav_row:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #ccc;
  color: #fff;
}

.slicknav_nav a {
  padding: 5px 10px;
  margin: 2px 5px;
  text-decoration: none;
  color: #fff;
}

.slicknav_nav a:hover {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background: #ccc;
  color: #222;
}

.slicknav_nav .slicknav_txtnode {
  margin-left: 15px;
}

.slicknav_nav .slicknav_item a {
  padding: 0;
  margin: 0;
}

.slicknav_nav .slicknav_parent-link a {
  padding: 0;
  margin: 0;
}

.slicknav_brand {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  padding: 7px 12px;
  height: 44px;
}

.slicknav_menu {
  display: none;
  background-color: #542023;
}

@media screen and (max-width: 991px) {
  /* #menu is the original menu */
  #menu {
    display: none;
  }

  .slicknav_menu {
    display: block;
  }
}
footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-image: linear-gradient(rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.2)), url("/images/RectLight.svg");
  background-position: center;
  background-size: cover;
  min-height: 5rem;
  color: white;
}
@media screen and (max-width: 768px) {
  footer {
    flex-direction: column;
  }
}
footer p {
  margin: 0;
}
footer a {
  text-decoration: none;
  color: #f2e590;
}

.infoBox {
  background-image: linear-gradient(rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.2)), url("/images/RectLight.svg");
  background-position: center;
  background-size: cover;
  min-height: 20rem;
  margin: 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  padding: 1rem;
}
.infoBox__title {
  color: #f2e590;
  font-size: 2rem;
}
.infoBox__info {
  text-transform: uppercase;
  text-align: center;
  color: white;
  font-weight: 300;
  font-size: 1.2rem;
}
.infoBox__info a {
  color: #f2e590;
  text-decoration: none;
}
@media screen and (min-width: 991px) and (max-width: 1100px) {
  .infoBox__info {
    font-size: 1rem;
  }
}

.fa-clock,
.fa-phone-square,
.fa-university {
  color: #f2e590;
  font-size: 3rem;
}

.marquee {
  overflow: hidden;
  margin: 2rem 0;
  font-size: 1.8rem;
  color: #542023;
}

.btn-form {
  background-color: #542023;
  color: white;
  transition: all 0.3s ease-in-out 0s;
  font-size: 14px;
}
.btn-form:hover {
  color: #542023;
  background-color: #f2e590;
}

.card {
  font-size: 1.6rem;
  margin-bottom: 5rem;
}

.card-header {
  background-color: #542023;
  color: white;
  text-align: center;
}

.admin-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #1e1e1e;
}
@media screen and (max-width: 700px) {
  .admin-row {
    flex-direction: column;
  }
}
.admin-row p {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .admin-row p {
    font-size: 1.6rem;
  }
}
.admin-row p span {
  color: #542023;
}
.admin-row .img-fluid {
  max-width: 19rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1100px) {
  .admin-row .img-fluid {
    max-width: 14rem;
  }
}

.jurisdiction {
  font-size: 2rem;
  padding: 0 1rem;
}

.map {
  min-height: 48rem;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .map {
    width: 100%;
  }
}

.holidaySchedule, .sectionTitle, .page-title {
  text-transform: uppercase;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
}
@media screen and (min-width: 992px) and (max-width: 1081px) {
  .holidaySchedule ~ table > :not(caption) > * > *, .sectionTitle ~ table > :not(caption) > * > *, .page-title ~ table > :not(caption) > * > * {
    font-size: 1.2rem !important;
  }
}

.page-content {
  min-height: calc(100vh - 20rem);
}

.right-side-content {
  margin: 5rem 0;
  min-height: 110vh;
  font-size: 1.6rem;
}

.page-title {
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 5rem;
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  position: absolute;
  width: 15rem;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 4px;
  margin: auto;
  background-color: #542023;
}

.sectionTitle {
  text-align: left;
  font-size: 2.5rem;
}

dd {
  margin-bottom: 3.5rem;
}

.row {
  --bs-gutter-x: 0 !important;
}

a {
  text-decoration: none !important;
}

.input-group-text {
  font-size: 1.7rem !important;
}

/*# sourceMappingURL=siteDefault.css.map */
