@charset "UTF-8";
body {
  background: white;
  color: #18171C;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  font-size: 18px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-main {
  padding-top: 24px;
  padding-bottom: 24px;
}
.page-main section {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  max-width: 768px;
  margin: auto;
}
.page-main section img {
  width: 100%;
  margin-block-start: 1em;
  margin-block-end: 1em;
}

.page-main section.edge-to-edge {
  padding-left: 0px;
  padding-right: 0px;
  max-width: 100%;
}
.page-main section.edge-to-edge section {
  max-width: 768px;
}

.page-main {
  flex-grow: 1;
}

img.rounded {
  border-radius: 8px;
}

main.home {
  background-image: url("../images/L1000945-2048w.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.page-header {
  border-bottom: 1px solid #E7E7EA;
}

.logo {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  color: #18171C !important;
}

.page-header section {
  padding: 24px 24px 16px 24px;
}

.page-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: left;
  padding-left: 24px;
  padding-bottom: 16px;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  -webkit-overflow-scrolling: touch;
}
.page-header nav::-webkit-scrollbar {
  display: none;
}

.menu {
  display: flex;
  width: 100%;
  list-style-type: none;
  padding: 16px 0px 16px 0px;
  margin: 0px;
}
.menu li {
  padding-right: 16px;
}
.menu a:link, .menu a:visited, .menu a:hover, .menu a:active {
  transition: color 0.25s;
  color: #9291A1;
  font-size: 18px;
}
.menu a:hover {
  color: #18171C;
}
.menu a.selected:link, .menu a.selected:visited, .menu a.selected:hover, .menu a.selected:active {
  color: #18171C;
  font-weight: 500;
}

footer {
  padding: 24px;
  text-align: center;
  background-color: #F5F5F7;
}
footer .menu {
  justify-content: center;
}
footer .menu li {
  padding-right: 0px;
}
footer .menu li:before {
  content: "·";
  margin-left: 8px;
  margin-right: 8px;
}
footer .menu li:first-child:before {
  content: none;
}
footer .menu a {
  transition: color 0.25s;
}
footer .menu a:hover {
  color: #18171C;
}

.background-secondary {
  background: #E7E7EA;
}

h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-block-end: 1em;
}
@media screen and (min-width: 752px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}
@media screen and (min-width: 752px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

p {
  font-size: 18px;
  line-height: 1.75;
}

p.secondary {
  color: #9291A1;
}

p.centered {
  text-align: center;
}

p.caption {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.75px;
  margin: 0px;
}
@media screen and (min-width: 752px) {
  p.caption {
    font-size: 16px;
  }
}

strong {
  font-weight: 700;
}

.light {
  color: white !important;
}

.muted {
  color: #9291A1;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

p a:link, p a:visited, p a:hover, p a:active {
  font-size: 1.125rem;
  color: #007AFF;
  text-decoration: underline;
  text-decoration-color: #E7E7EA;
  text-underline-offset: 0.35rem;
  transition: color 0.25s;
}
p a:link:hover, p a:visited:hover, p a:hover:hover, p a:active:hover {
  color: #18171C;
}

s {
  opacity: 0.5;
}

.nobreak {
  display: inline-block;
}

.text-centered {
  text-align: center;
}

.text-secondary {
  color: #9291A1;
}

.image-caption {
  margin-top: 0px;
}

.link-group a {
  padding-right: 16px;
}

article {
  padding: 24px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  height: 240px;
}
article h2 {
  max-width: 100%;
  margin-top: 0px;
  padding-right: 40px;
}
article .caption {
  opacity: 100;
  position: relative;
  top: 0px;
  transition: 0.25s ease;
}
article .ic_arrow_forward {
  font-size: 1.5em;
  color: white;
  position: absolute;
  top: 32px;
  right: 24px;
  transition: 0.25s ease;
}
article img.teaser {
  position: relative;
  top: 0px;
  transition: 0.25s ease;
  border-radius: 0px;
  margin-top: 20px;
}
@media screen and (min-width: 752px) {
  article {
    padding: 40px;
    height: 350px;
  }
  article .ic_arrow_forward {
    top: 48px;
    right: 40px;
  }
}

article:hover {
  cursor: pointer;
}
article:hover .ic_arrow_forward {
  color: white;
  position: absolute;
  top: 32px;
  right: 14px;
  transition: 0.25s ease;
}
article:hover .caption {
  opacity: 0;
  position: relative;
  top: -20px;
  transition: 0.25s ease;
}
article:hover img.teaser {
  position: relative;
  top: -20px;
  transition: 0.25s ease;
}
@media screen and (min-width: 752px) {
  article:hover {
    padding: 40px;
  }
  article:hover .ic_arrow_forward {
    top: 48px;
    right: 30px;
  }
}

.portfolio-intro {
  width: 100%;
  display: inline-block;
  padding-bottom: 100px;
  margin-bottom: -150px;
}

a.back-action {
  font-size: 1.125rem;
  color: white;
  text-decoration: none;
  transition: 0.25s;
}
a.back-action .ic_arrow_back {
  color: white;
  float: left;
  margin-right: 8px;
  position: relative;
  left: 0px;
  top: -2px;
  transition: 0.25s ease;
}

a.back-action:hover .ic_arrow_back {
  left: -10px;
  top: -2px;
  transition: 0.25s ease;
}

.background-color-buffer {
  background: linear-gradient(45deg, #FF8F87 0%, #FFA987 100%);
}

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