*,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

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

html, body {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  background-color: rgb(253, 252, 248);
}

@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  src: local("DM Serif Display"), url(/fonts/DMSerifDisplay-Regular.ttf);
}
@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  src: local("DM Serif Display Italic"), url(/fonts/DMSerifDisplay-Italic.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 300;
  src: local("DM Sans Light"), url(/fonts/DMSans_18pt-Light.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 300;
  src: local("DM Sans Light Italic"), url(/fonts/DMSans_18pt-LightItalic.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  src: local("DM Sans"), url(/fonts/DMSans_18pt-Regular.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 400;
  src: local("DM Sans Italic"), url(/fonts/DMSans_18pt-Italic.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  src: local("DM Sans Medium"), url(/fonts/DMSans_18pt-Medium.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 500;
  src: local("DM Sans Medium Italic"), url(/fonts/DMSans_18pt-MediumItalic.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  src: local("DM Sans Bold"), url(/fonts/DMSans_18pt-Bold.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 700;
  src: local("DM Sans Bold Italic"), url(/fonts/DMSans_18pt-BoldItalic.ttf);
}
header {
  background-color: rgb(27, 34, 51);
  color: white;
}

.top-location {
  padding: 1rem 10rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.6rem;
}

.header-location {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.main-title {
  padding: 3rem 10rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .main-title {
    padding: 3rem 1rem;
  }
}
.main-title-header {
  height: 14.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.main-title-header h1 {
  font-family: "DM Serif Display", serif;
  font-size: 4rem;
}
@media screen and (max-width: 575px) {
  .main-title-header h1 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .main-title-header h1 {
    font-size: 3.8rem;
  }
}
.main-title-header .address {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 1.4rem;
}
@media screen and (max-width: 575px) {
  .main-title-header .address {
    font-size: 1rem;
  }
}
.main-title .seal {
  margin-right: 5rem;
  min-width: 144px;
}
@media screen and (max-width: 575px) {
  .main-title .seal {
    margin-right: 2rem;
  }
}

.navbar {
  border-bottom: 3px solid rgb(179, 136, 8);
}
.navbar-brand {
  padding: 1rem;
}
@media screen and (min-width: 991px) {
  .navbar-brand {
    display: none;
  }
}
.navbar-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
.navbar-nav .nav-item {
  min-width: 15%;
  text-align: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 1rem 0;
}
.navbar-nav .nav-item .nav-link {
  letter-spacing: -0.5px;
  font-weight: 300;
}

.bg-dark {
  background-color: rgb(40, 48, 68) !important;
}

.underline {
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.underline:after {
  display: block;
  content: "";
  border-bottom: solid 3px rgb(179, 136, 8);
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 100% 50%;
}
.underline:hover:after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

/* Marquee */
.marquee-bar {
  background: rgb(255, 248, 237);
  border-bottom: 1px solid rgb(221, 216, 207);
  padding: 1rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-bar button {
  background: none;
  border: none;
  cursor: pointer;
  padding-left: 10px;
  color: rgb(27, 34, 51);
}

.marquee-inner {
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 1.6rem;
  color: rgb(27, 34, 51);
  font-weight: 500;
}

.marquee-inner.paused,
.marquee-bar:hover .marquee-inner {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-inner {
    animation: none;
    white-space: normal;
  }
  .marquee-pause-btn {
    display: none;
  }
}
.information-card {
  font-size: 1.6rem;
}
.information-card-container {
  margin-left: 2rem;
}
.information-card-container .contact-label {
  text-transform: uppercase;
  color: rgba(54, 50, 50, 0.5);
}
.information-card-container .contact-value a {
  color: rgb(179, 136, 8);
}
.information-card-header {
  background-color: rgb(27, 34, 51);
  color: rgb(221, 216, 207);
  text-transform: uppercase;
  padding: 14px 20px;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}
.information-card-body {
  padding: 20px;
}
.information-card-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.jump-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 15rem;
  padding: 2rem;
  border: 1px solid #d8d2d2;
  background-color: white;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: 0.3s;
}
.jump-box:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.jump-box-link {
  text-decoration: none;
  color: black;
}
.jump-box-link:hover {
  color: black;
}
.jump-box-icon {
  font-size: 3rem;
}
.jump-box-section-title {
  color: rgb(179, 136, 8);
  font-size: 2rem;
  text-transform: uppercase;
  margin-left: 1rem;
}
.jump-box-text {
  font-size: 1.6rem;
  font-weight: bold;
}
.jump-box-summary {
  font-size: 1.4rem;
  color: rgba(54, 50, 50, 0.5);
}

footer {
  background: rgb(27, 34, 51);
  min-height: 5rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  footer {
    flex-direction: column;
    font-size: 1rem;
  }
}
footer .design a {
  text-decoration: none;
  color: rgb(179, 136, 8);
}

main {
  min-height: calc(100vh - 18rem);
  margin: 1.5rem;
}

.welcome-info {
  background-color: rgb(27, 34, 51);
  color: rgb(221, 216, 207);
  padding: 6rem;
  font-size: 1.8rem;
  position: relative;
}
.welcome-info .welcome-title {
  font-family: "DM Serif Display", serif;
  color: rgb(255, 210, 0);
  font-size: 3.8rem;
}
.welcome-accent {
  font-family: "DM Serif Display", serif;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  position: absolute;
  bottom: -8rem;
  right: -7px;
  font-size: 15rem;
  opacity: 0.3;
}

.fa-map-marker::before,
.fa-phone-square::before {
  color: rgb(179, 136, 8);
}

.input-group-lg > .form-control {
  font-size: 2rem;
}

.input-group-lg > .input-group-text {
  font-size: 2rem;
}

.btn {
  font-size: 1.6rem;
}

.input-group-text {
  font-size: 2.2rem;
}

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