@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #444444;
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  background-color: #f8f8f8;
}

.ss {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.inter {
  font-family: "Inter", sans-serif;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.notosans {
  font-family: "Noto Sans", sans-serif;
}

.stix {
  font-family: "STIX Two Text", serif;
}

.cormorant {
  font-family: "Cormorant", serif;
}

#site-wrapper {
  margin: 0;
}

#menu-wrapper {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  padding: 0 5%;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #ccc;
  height: 50px;
}

#nrc-logo {
  max-width: 100px;
}
#nrc-logo img {
  width: 100%;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}

#menu-text {
  position: fixed;
  top: 50px;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 10px;
}
#menu-text .font-switch {
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  color: #BE2025;
  text-decoration: none;
  font-weight: bold;
}
#menu-text .font-switch.active {
  background-color: #BE2025;
  color: #fff;
}
#menu-text .font-switch:hover {
  opacity: 0.5;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  border-radius: 5px;
  padding: 5px 20px;
  cursor: pointer;
  color: #BE2025;
  text-decoration: none;
  font-weight: bold;
}
nav a.active {
  background-color: #BE2025;
  color: #fff;
}
nav a:hover {
  opacity: 0.5;
}
nav a:first-child {
  padding-left: 0;
}
nav a:last-child {
  padding-right: 0;
}

.section {
  position: relative;
  min-height: 100vh;
  border-top: 1px solid #ccc;
}
.section:nth-child(even) {
  background-color: #fff;
}

.anchor {
  position: absolute;
  top: -50px;
}

.section-inner {
  margin: 0 auto;
  max-width: 760px;
}

#header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 14px;
}

#logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#logo #logo-top {
  display: flex;
  align-items: center;
  justify-content: center;
}
#logo #logo-top .letter {
  color: #BE2025;
  font-size: 20vw;
  font-weight: 700;
}
#logo #logo-top .vline {
  width: 2px;
  height: 20vw;
  margin: 0 5vw;
  background-color: #625C5B;
}
#logo #logo-bottom {
  color: #625C5B;
  letter-spacing: 7vw;
  text-indent: 7vw;
  text-align: center;
  font-size: 5vw;
}

h1 {
  color: #BE2025;
}

#team {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 60px;
  gap: 20px;
}
#team img {
  width: 95px;
}

.team-member-name {
  font-weight: bold;
  font-size: 1.25em;
}

.team-member-position {
  opacity: 0.75;
}

#services {
  padding-bottom: 40px;
}
#services .more-control {
  cursor: pointer;
  color: #BE2025;
  font-weight: bold;
}
#services .more-control.hidden {
  display: none;
}
#services .more-content {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.3s ease-out;
}
#services .more-content.visible {
  visibility: visible;
  opacity: 1;
  height: auto;
}

#contact #contact-location {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#contact #contact-location .name {
  font-weight: bold;
}

#contact #contact-map {
  text-align: center;
}
#contact #contact-map img {
  margin-top: 40px;
  max-width: 100%;
}

#footer {
  border-top: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  opacity: 0.5;
}

@media screen and (max-width: 960px) {
  #header, .section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 40px;
    font-size: 1em;
  }
  .section-inner {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 550px) {
  .team-member {
    text-align: center;
  }
  #team, #contact #contact-location {
    flex-direction: column;
  }
  #contact-location-people {
    margin-top: 20px;
  }
}
@media screen and (max-width: 380px) {
  nav a {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 320px) {
  #menu-wrapper {
    justify-content: flex-start;
    height: 140px;
  }
  nav {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  nav a {
    padding: 5px 0;
  }
  .anchor {
    top: -140px;
  }
}

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