a {
  color: inherit;
  text-decoration: none;
}

.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

html, body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: white;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05rem;
}

#logo-group {
  display: flex;
  align-items: center;
}
#logo-group .label {
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

#logo img {
  width: 40px;
  margin-right: 1rem;
}

#hamburger {
  display: none;
}
#hamburger .material-symbols-rounded {
  font-size: 2rem;
}

button {
  border-radius: 5rem;
  padding: 0.25rem 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 0.9rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 100;
  letter-spacing: 0.05rem;
  margin: 0.25rem;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
}
button.hidden {
  display: none;
}
button:hover {
  background: #fc1f78;
  border-color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
button.focus, button.active {
  background: #fc1f78;
  border-color: rgba(255, 255, 255, 0.5);
}
button.active {
  pointer-events: none;
}

.subhead {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fc1f78;
  margin: 0;
  padding: 0;
}

h1, h2 {
  margin: 1rem 0;
  padding: 0;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 2.5rem;
}

h2 {
  font-size: 1.7rem;
  line-height: 1.7rem;
}

h3 {
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

p {
  letter-spacing: 0;
}

section.card {
  width: 100%;
}
section.card.project {
  max-width: 30% !important;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin: 1rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-sizing: border-box;
}
section.card.project .project-title {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
}
section.card-container {
  display: flex;
  padding: 3rem 0;
  justify-content: space-between;
}
section.card-container .card-heading {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.container {
  padding: 3rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
}

.hover-item {
  position: relative;
  color: transparent !important;
  padding: 0.125rem 0.25rem;
}
.hover-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-bottom: 1px solid transparent;
  z-index: 0;
}
.hover-item::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: attr(data-label);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover-item:hover::before {
  width: 100%;
  transition: width 0.3s ease-out;
  border-color: #fc1f78;
}

.spacer {
  flex: 1;
}
.spacer.horz {
  width: 100%;
}

.site-header {
  background: rgba(0, 73, 110, 0.8);
  width: 100%;
  color: white;
  position: fixed;
  top: 0;
  z-index: 9090;
}
.site-header .container {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  align-items: center;
  flex-flow: row nowrap;
}

.brand {
  width: 100%;
}

.site-nav ul {
  list-style: none;
  display: flex;
}
.site-nav li {
  padding: 0 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
}

#main {
  background: #00496e;
}
#main h1 {
  color: white;
}
#main p {
  color: rgba(255, 255, 255, 0.5);
}
#main .content {
  width: 50%;
}

#about h2 {
  width: 50%;
}

#about-highlights .card-heading {
  color: rgba(0, 0, 0, 0.5);
}

#work {
  background: #00496e;
  padding-bottom: 0;
}
#work h2 {
  color: white;
}
#work p {
  color: rgba(255, 255, 255, 0.5);
}

#experience {
  padding-top: 0;
  padding-bottom: 0;
  background: #00496e;
}
#experience h2 {
  color: white;
}

.project {
  position: relative;
}
.project img {
  width: 100%;
}

.work-experience:first-of-type {
  margin-top: 2rem;
}

.work-experience {
  border-left: 2px solid #fc1f78;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.work-experience h3 {
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.work-experience h2 {
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin: 0;
  padding: 0;
  margin-bottom: 0.2rem;
}
.work-experience .work-description {
  margin: 0;
  padding: 0;
  padding-top: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.detail-tag {
  font-size: 0.5rem;
  color: white;
  text-transform: uppercase;
  border: 1px solid #fc1f78;
  padding: 0.1rem 0.3rem;
  white-space: nowrap;
  transition: all 0.2s;
  cursor: normal;
}
.detail-tag:hover {
  background: #fc1f78;
  color: white;
}

footer {
  display: flex;
  flex-flow: row wrap;
  background: white;
}
footer .container {
  width: 50%;
  display: flex;
  flex-flow: row wrap;
  align-self: flex-start;
}
footer .container h3 {
  color: black;
  width: 100%;
}
footer .container p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.2rem;
}
footer .container h2 {
  font-size: 4.5rem;
  line-height: 4.5rem;
  width: 100%;
  margin-bottom: 2rem;
  color: #fc1f78;
}
footer .container p {
  margin: 0rem;
}

.input-group {
  width: 100%;
  margin-bottom: 1rem;
}
.input-group .label {
  padding-left: 0.5rem;
  font-weight: 800;
  color: #fc1f78;
  margin-bottom: 0.5rem;
}
.input-group .contact {
  font-family: "Nunito Sans", sans-serif;
  box-sizing: border-box;
  font-size: 1rem;
  padding: 0.4rem 0.5rem;
  width: 100%;
  border-radius: 1rem;
  outline: none;
  border: 1px solid #fc1f78;
}

.copyright {
  width: 100%;
  text-align: center;
  padding-bottom: 3rem;
}

#mountain-container {
  position: relative;
}

#mountain-icon {
  width: 600px;
  position: absolute;
  bottom: -3.5rem;
}

.project-image {
  position: relative;
}
.project-image img.video {
  opacity: 0.6;
}
.project-image button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#sknkwrx {
  flex-flow: row wrap;
  justify-content: space-between;
  display: none;
  padding-top: 2rem;
}
#sknkwrx h3 {
  color: #fc1f78;
}
#sknkwrx img {
  width: 30%;
}
#sknkwrx.show {
  display: flex;
}

#sknkwrx-content {
  width: 60%;
}/*# sourceMappingURL=main.css.map */