* {
  margin: 0;
  padding: 0; }

body {
  font-family: 'Athelas'; }

a {
  color: inherit;
  text-decoration: none; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

@font-face {
  font-family: 'Athelas';
  src: url("../fonts/Athelas-Bold.woff2") format("woff2"), url("../fonts/Athelas-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Athelas';
  src: url("../fonts/Athelas-Regular.woff2") format("woff2"), url("../fonts/Athelas-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
html.lenis,
html.lenis body {
  height: auto; }

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip; }

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain; }

.lenis.lenis-smooth iframe {
  pointer-events: none; }

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete; }

.container {
  width: 100%;
  margin: auto;
  padding: 0 30px;
  box-sizing: border-box;
  display: flex;
  gap: 30px; }

.layout-container {
  display: flex;
  width: 100%;
  box-sizing: border-box; }

.page-content {
  padding: 30px;
  box-sizing: border-box;
  width: calc(100% - clamp(200px, 20vw, 400px));
  margin-left: clamp(200px, 20vw, 400px); }
  .page-content .home__content {
    height: calc(100vh - 60px); }

.page-title h1 {
  margin-top: 15px;
  font-size: 36px;
  color: #222121;
  margin-bottom: 20px; }

.post {
  padding: 0 0 30px;
  flex: 1; }

.footer {
  padding: 24px 0;
  border-top: 1px solid #ECECEC;
  margin-left: clamp(200px, 20vw, 400px); }
  .footer .container {
    justify-content: space-between;
    align-items: center; }
  .footer p {
    font-size: 14px;
    color: #717171; }
  .footer a {
    color: #717171; }
    .footer a:hover {
      color: #D82465; }
  .footer .header-right {
    display: none; }

.header {
  background: white;
  height: 114px;
  position: sticky;
  top: 0; }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px; }

.btn-home {
  font-size: 48px;
  margin-bottom: 30px;
  display: inline-block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer; }
  .nav-toggle img {
    width: 24px;
    height: 24px;
    display: block; }
  .nav-toggle .icon-close {
    display: none; }

body.nav-open .nav-toggle .icon-menu {
  display: none; }
body.nav-open .nav-toggle .icon-close {
  display: block; }

.header-right {
  display: flex;
  gap: 8px; }
  .header-right .social-button {
    width: 32px;
    height: 32px;
    display: flex;
    border-radius: 32px;
    background-color: rgba(0, 0, 0, 0.05);
    justify-content: center;
    align-items: center; }
    .header-right .social-button img {
      height: 32px;
      width: 32px; }

.menu .nav {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 50px; }
  .menu .nav > li {
    position: relative; }
    .menu .nav > li a {
      font-size: 24px;
      font-weight: 400;
      color: #717171; }
      .menu .nav > li a:hover {
        font-weight: 600; }
    .menu .nav > li .sub-menu {
      margin: 10px 0 0;
      padding: 0;
      list-style: none; }
      .menu .nav > li .sub-menu li {
        margin-bottom: 8px; }
        .menu .nav > li .sub-menu li a {
          font-size: 20px;
          color: #717171;
          font-weight: normal; }
        .menu .nav > li .sub-menu li.current_page_item a {
          color: #222121;
          font-weight: 600; }
    .menu .nav > li.current_page_item a, .menu .nav > li.current-menu-parent a {
      color: #222121;
      font-weight: 600; }

.gallery .gallery__images {
  list-style: none;
  --masonry-gutter: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1px;
  column-gap: var(--masonry-gutter);
  row-gap: 0; }
  .gallery .gallery__images .gallery__images__item {
    background-color: #f1f1f1;
    box-sizing: border-box;
    overflow: hidden;
    align-self: start; }
    .gallery .gallery__images .gallery__images__item img {
      width: 100%;
      height: auto;
      display: block; }

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92); }

.modal-content {
  margin: auto;
  display: block;
  will-change: transform, opacity;
  backface-visibility: hidden; }

.close,
.prev,
.next {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
  font-family: inherit; }
  .close:focus-visible,
  .prev:focus-visible,
  .next:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px; }

.close {
  top: 50px;
  right: 50px; }

.prev {
  top: 50%;
  left: -50px;
  transform: translateY(-50%); }

.next {
  top: 50%;
  right: -50px;
  transform: translateY(-50%); }

.prev:hover,
.next:hover,
.close:hover {
  color: #bbb; }

.image {
  width: 100%;
  max-width: calc(100vw - 200px);
  height: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  padding: 40px 0 110px; }
  .image .modal-content {
    width: 100%;
    height: 100%;
    object-fit: contain; }
  .image .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .image .content h3 {
      margin: 10px 0 5px;
      font-size: 24px; }
    .image .content p {
      font-size: 18px;
      color: #ddd; }

#sidebar {
  width: clamp(200px, 20vw, 400px);
  height: 100vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  border-right: 1px solid #ECECEC;
  padding: 30px;
  box-sizing: border-box; }
  #sidebar .left-nav .image-holder {
    width: 100%; }
    #sidebar .left-nav .image-holder img {
      width: 100%;
      height: auto; }

[data-barba="container"] {
  will-change: opacity, transform; }

.work-gallery .page-title {
  margin: 20px 0;
  font-size: 40px;
  display: none; }

.siblings {
  position: relative;
  top: -92px;
  left: 250px;
  padding: 12px;
  display: inline-block; }
  .siblings ul {
    list-style: none;
    display: flex;
    gap: 12px; }
    .siblings ul li a:hover {
      color: #D82465; }
    .siblings ul li.current_page_item {
      color: #D82465; }

.home__content {
  display: flex;
  height: 100%;
  gap: 30px;
  width: 100%; }
  .home__content .col-50 {
    width: 66%; }
    .home__content .col-50 img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .home__content .col-25 {
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    gap: 40px;
    width: 34%; }
    .home__content .col-25 .image-holder {
      flex: 1; }
      .home__content .col-25 .image-holder img {
        height: 100%;
        width: 100%;
        object-fit: cover; }

.about-page {
  display: flex;
  flex-direction: row;
  margin: auto;
  height: calc(100vh - 160px);
  box-sizing: border-box; }
  .about-page .about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
  .about-page .image-holder img {
    height: 100%;
    object-fit: contain;
    object-position: left top; }
  .about-page .about-content h1 {
    font-size: 36px;
    margin-top: 20px;
    margin-left: -200px;
    color: #222121;
    margin-bottom: 40px; }
  .about-page .about-content .page-content {
    overflow: auto;
    margin: 0 40px;
    font-size: 20px;
    height: calc(100% - 150px);
    color: #717171;
    line-height: 1.7;
    max-width: 1000px;
    font-weight: 500;
    width: 90%; }
    .about-page .about-content .page-content p {
      margin-bottom: 20px; }

.contact-page {
  display: flex;
  flex-direction: row;
  margin: auto;
  height: calc(100vh - 160px);
  box-sizing: border-box; }
  .contact-page .about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
  .contact-page .image-holder img {
    height: 100%;
    object-fit: contain;
    object-position: left top; }
  .contact-page .about-content .page-content {
    overflow: auto;
    font-size: 20px;
    height: calc(100% - 150px);
    color: #717171;
    line-height: 1.7;
    max-width: 1000px;
    font-weight: 500; }
    .contact-page .about-content .page-content p {
      margin-bottom: 20px; }

@media (max-width: 768px) {
  .header {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px; }
    .header .btn-home {
      font-size: 28px;
      margin-bottom: 0; }
    .header .left-nav {
      flex: 0 0 100%; }

  .nav-toggle {
    display: block; }

  #sidebar {
    padding: 30px 0; }
    #sidebar .header {
      align-items: center; }
    #sidebar .header-right {
      display: none; }

  .footer {
    padding: 24px 0 32px;
    margin-left: 0; }
    .footer .container {
      align-items: center;
      gap: 16px; }
    .footer .header-right {
      display: flex; }
      .footer .header-right .social-button {
        width: 32px;
        height: 32px; }
    .footer p {
      text-align: center; }

  .container,
  .layout-container {
    flex-direction: column;
    gap: 0;
    padding: 0 20px; }

  .page-content {
    width: 100%;
    margin-left: 0;
    padding: 20px; }

  #sidebar {
    position: static;
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #ECECEC; }
    #sidebar .left-nav {
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition: max-height 0.3s ease, visibility 0s linear 0.3s; }

  body.nav-open #sidebar .left-nav {
    max-height: 1000px;
    padding: 16px 0;
    visibility: visible;
    transition: max-height 0.3s ease, visibility 0s; }

  .menu .nav {
    margin-bottom: 20px; }

  ._home {
    height: auto;
    padding: 0 20px 20px; }
    ._home__content {
      flex-direction: column;
      height: auto;
      gap: 20px; }
      ._home__content .col-50 {
        flex: none;
        width: 100%; }
        ._home__content .col-50 img {
          height: 300px; }
      ._home__content .col-25 {
        height: auto; }
        ._home__content .col-25.last {
          flex-direction: row;
          gap: 12px; }
          ._home__content .col-25.last .image-holder {
            flex: 1; }
            ._home__content .col-25.last .image-holder:first-child, ._home__content .col-25.last .image-holder:last-child {
              height: 200px; }

  .about-page,
  .contact-page {
    flex-direction: column;
    height: auto; }
    .about-page .image-holder img,
    .contact-page .image-holder img {
      width: 100%;
      height: 260px;
      object-fit: cover; }
    .about-page .about-content h1,
    .contact-page .about-content h1 {
      margin-left: 0;
      margin-top: 20px;
      font-size: 28px; }
    .about-page .about-content .page-content,
    .contact-page .about-content .page-content {
      height: auto;
      margin: 0; }

  .gallery .gallery__images {
    grid-template-columns: 1fr; }

  .siblings {
    position: static;
    padding: 12px 0; }

  .image {
    max-width: calc(100vw - 32px);
    padding: 56px 0 150px; }
    .image .content {
      bottom: 76px;
      flex-direction: column;
      gap: 2px; }
      .image .content h3 {
        margin: 0;
        font-size: 20px; }
      .image .content p {
        font-size: 15px; }

  .prev,
  .next {
    font-size: 28px;
    top: auto;
    bottom: 20px;
    transform: none; }

  .prev {
    left: 20px; }

  .next {
    right: 20px; }

  .close {
    top: 16px;
    right: 16px;
    font-size: 32px; } }
@media (min-width: 1601px) {
  .gallery .gallery__images {
    grid-template-columns: repeat(3, 1fr); } }

/*# sourceMappingURL=style.css.map */
