:root {
  --var-container-w:min(90%, 90vw);
  --var-container-m:min(90%, 140rem);
  --var-container-s:min(90%, 90rem);
  --var-general-text: min(4vw,1.8rem);
  --var-general-text-2:min(3.2vw,2.4rem);
  --var-general_padding:min(7vw,6.5rem) 0;
  --var-h1-text: max(7vw, 3rem);
  --var-menu-text: max(1.1rem, 14px);
  --var-footer-text: max(1.2rem, 14px);
}

html {
  font-size: 10px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-optical-sizing: auto;
  font-family: "halyard-display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*

BOOK: 
font-family: "halyard-display", sans-serif;
font-weight: 300;
font-style: normal;

MEDIUM:
font-family: "halyard-display", sans-serif;
font-weight: 500;
font-style: normal;


*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #1B1918;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

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

img {
  width: 100%;
  height: auto;
}

h1 {
  font-size: min(13vw, 12rem);
  line-height: 0.9;
}
h1 .orange_dot {
  color: #FAA605;
}

h2 {
  font-size: min(5.6vw, 4.8rem);
  line-height: 1.1;
}

h3 {
  font-weight: 500;
  font-size: var(--var-general-text-2);
  line-height: 1.42;
}

h4 {
  font-size: var(--var-general-text-2);
  font-weight: 300;
  color: #1B1918;
}

.general_text {
  font-weight: 300;
  font-size: var(--var-general-text-2);
  line-height: 1.24em;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

p {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}

.btn {
  font-weight: 300;
  font-size: var(--var-general-text-2);
  line-height: 1.42;
  display: flex;
  align-items: flex-start;
  transition: color 0.3s;
}
.btn:hover {
  color: #FAA605;
}
.btn .underline {
  position: relative;
  display: flex;
}
.btn .underline::after {
  content: " ";
  position: absolute;
  bottom: -0.61em;
  width: 100%;
  height: 2px;
  background-color: #1B1918;
}

.container {
  width: var(--var-container-w);
  margin: auto;
  display: flex;
  flex-direction: column;
}
.container._small {
  width: var(--var-container-s);
}

#home_banner {
  font-size: 0.52vw;
}
#home_banner h1 {
  font-size: 12em;
  text-align: center;
}
#home_banner {
  width: 100vw;
  aspect-ratio: 16/9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100vw auto;
  overflow: hidden;
  position: relative;
}
#home_banner::before {
  content: " ";
  display: block;
  opacity: 0.6;
  mix-blend-mode: multiply;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  mix-blend-mode: multiply;
  z-index: 1;
  background: #000;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgb(179, 179, 179) 50%, rgb(255, 255, 255) 85%, rgb(0, 0, 0) 100%);
}
#home_banner .container {
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  aspect-ratio: inherit;
  flex-direction: column;
  align-items: center;
}
#home_banner .container .banner_header {
  margin: auto;
  color: #fff;
}

#home_about {
  padding: min(15vw, 14rem) 0;
}
#home_about .container {
  gap: 1.4rem;
}
#home_about .general_text {
  margin-bottom: 6rem;
}

#home_projects .top {
  margin-bottom: 6rem;
}
#home_projects .top .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#home_projects .top a {
  font-weight: 300;
  font-size: var(--var-general-text-2);
}
#home_projects .top a:hover {
  color: #FAA605;
}

#main_projects {
  padding: 6rem 0;
  padding-bottom: 12rem;
}

#projects-list .project_thumb_title {
  font-size: var(--var-general-text-2);
  font-weight: 300;
  margin-bottom: 0.2em;
  line-height: 1;
}
#projects-list .project_thumb_subtitle {
  font-size: min(2vw, 1.8rem);
  font-weight: 200;
}
#projects-list ._grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
}
#projects-list .project {
  display: flex;
  flex-direction: column;
}
#projects-list .project img {
  width: 100%;
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1rem;
}

#publications {
  padding-top: 6rem;
}
#publications .container {
  width: 80vw;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 10rem;
}
#publications ._left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
#publications ._right {
  position: relative;
}
#publications #img_container {
  width: 90%;
  position: absolute;
}
#publications #img_container img {
  max-width: 500px;
  width: 100%;
}
#publications .publication {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  padding-bottom: 0;
  padding-right: 6rem;
  border: solid 1px transparent;
  border-right: solid 3px transparent;
}
#publications .publication:hover {
  border-right: solid 3px #FAA605;
}
#publications .publication ._list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#publications .publication ._list h4 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}
#publications .publication ._list h4::after {
  content: " ";
  position: relative;
  width: 8rem;
  height: 1px;
  background-color: #1B1918;
  margin-top: 0.4em;
}
#publications .publication ._items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #F4F4F4;
}
#publications .publication ._pub {
  display: flex;
  justify-content: flex-start;
  font-size: 1.8rem;
  font-weight: 300;
  gap: 1em;
}
#publications .publication .title {
  font-weight: 500;
}
#publications .publication .orange {
  color: #FAA605;
}
#publications .publication .year {
  margin-left: auto;
}

#publication_pages .container {
  max-width: 1400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#publication_pages {
  padding-bottom: 10rem;
}

#publication_header .banner_header {
  display: flex;
  flex-direction: column;
  font-size: 6em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.21em;
  position: relative;
  margin-top: 4em;
  margin-bottom: 2em;
}
#publication_header .banner_header small {
  font-size: 0.39em;
}

#studio_about {
  background-color: #FAA605;
  padding-top: min(25vw, 25rem);
  padding-bottom: min(5vw, 5rem);
}
#studio_about .container {
  width: var(--var-container-s);
}
#studio_about h2 {
  margin-bottom: 5em;
}

#studio_menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3em;
  list-style: none;
  color: #1B1918;
}
#studio_menu .container {
  width: var(--var-container-m);
}
#studio_menu li {
  font-size: var(--var-general-text-2);
  font-weight: 500;
}
#studio_menu li a {
  font-size: inherit;
  font-weight: inherit;
}

.team_image {
  width: min(90vw, 160rem);
  margin: auto;
  height: auto;
}

.about_section {
  margin-top: min(10vw, 10rem);
  margin-bottom: min(10vw, 10rem);
}
.about_section .container {
  width: var(--var-container-m);
}
.about_section h2 {
  margin-bottom: 1em;
}

#team {
  position: relative;
}
#team .container {
  width: var(--var-container-m);
}
#team ._grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(3rem, 3vw);
}
#team .steam h3 {
  font-size: min(3.2vw, 3.2rem);
  font-weight: 500;
}
#team .steam .detail {
  font-size: min(2.6vw, 2.2rem);
  font-weight: 300;
}

#contact_about {
  background-color: #F4F4F4;
  padding-top: min(25vw, 25rem);
  padding-bottom: min(5vw, 5rem);
}
#contact_about .container {
  width: var(--var-container-m);
}
#contact_about h2 {
  margin-bottom: 3em;
}
#contact_about .contact_details {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
  justify-content: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 40rem);
}
#contact_about .s_contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#contact_about .s_contact._social .detail {
  gap: 1.5em;
}
#contact_about .s_contact h3 {
  font-size: min(2.8vw, 2.8rem);
  font-weight: 500;
}
#contact_about .s_contact .detail {
  font-size: min(2.4vw, 2.4rem);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 1em;
}
#contact_about .s_contact img {
  height: 1.32em;
}

@media (max-width: 1400px) {
  #projects-list ._grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #contact_about .contact_details {
    flex-direction: column;
    gap: min(3vw, 3rem);
    display: flex;
    align-items: center;
  }
  #contact_about .s_contact {
    align-items: center;
  }
}
@media (max-width: 600px) {
  #projects-list ._grid {
    grid-template-columns: repeat(1, 1fr);
  }
  #projects-list .project_thumb_title {
    font-size: 20px;
  }
  #projects-list .project_thumb_subtitle {
    font-size: 16px;
  }
  #publication_pages .container {
    grid-template-columns: 1fr;
  }
  #publication_pages {
    padding-bottom: 10rem;
  }
}
@media (max-aspect-ratio: 1/1) {
  #home_banner {
    aspect-ratio: 1/1;
    background-size: cover;
  }
  #home_banner::before {
    aspect-ratio: 1/1;
  }
  #home_banner h1 {
    font-size: 10vw;
  }
}/*# sourceMappingURL=general.css.map */