@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --main-font: "Inter", sans-serif;
  --accent-font: "Playfair Display", serif;
  --button-font: "Inconsolata", monospace;
}

* {
  font-family: var(--main-font);
  color: var(--white);
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

*::before, 
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

html, 
body {
  overflow-x: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

body {
  background-color: var(--black);
}

a:hover, 
a:hover * {
  cursor: pointer !important;
}

h1, h2, h3, h4, h5, h6, 
p, ul, ol {
  margin: 0;
  padding: 0;
  color: var(--white);
}

h1 {
  letter-spacing: -21px;
  font-size: 12rem;
  line-height: .8;
  font-weight: 500;
}

h2 {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
}

h2 span {
  font-family: var(--accent-font);
  font-style: italic;
}

p {
  padding-bottom: 20px;
  line-height: 1.5;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  padding: 0 5%;
}

.container-larger {
  max-width: 1300px;
}

.row {
  display: grid;
  grid-column-gap: 0;
  grid-row-gap: 0;
  grid-template-rows: auto;
  border-right: 1px solid;
  border-left: 1px solid;
}

.col {
  flex: 1;
}

.v-center {
  align-items: center;
}

.center {
  text-align: center;
}

.b-0 {
  border: 0 !important;
}

.link {
  padding: 10px 16px;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.link:hover {
  background-color: #ffffff1a;
}

.button {
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  text-align: center;
  text-transform: uppercase;
  font-family: var(--button-font);
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.button:hover {
  background-color: #ffffff1a;
  color: var(--white);
}

img {
  max-width: 100%;
}

.grain {
  z-index: 99999;
  opacity: .04;
  pointer-events: none;
  background-image: url("../assets/images/grain.gif");
  background-position: 0 0;
  background-size: auto;
  width: 100%;
  height: 100vh;
  position: fixed;
}

.blur {
  -webkit-backdrop-filter: blur(3rem);
  backdrop-filter: blur(3rem);
}

main {
  display: block;
}

nav {
  position: fixed;
  border-bottom: 1px solid var(--white);
  border-top: 1px solid var(--white);
  width: 100%;
  z-index: 1000;
}

nav span {
  letter-spacing: -3px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

nav .row {
  backdrop-filter: blur(5rem);
  grid-template-rows: auto;
  grid-template-columns: .375fr 1fr .375fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

nav ul {
  justify-content: center;
  align-items: center;
  display: flex;
  list-style: none;
}

nav .row div:last-child {
  justify-self: end;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-button:hover {
  cursor: pointer;
}

.mobile-menu-button span {
  height: 1px;
  width: 36px;
  display: flex;
  gap: 4px;
  background: var(--white);
}

.mobile-menu-links {
  display: none;
  position: fixed;
  top: 65px;
  z-index: 1;
  width: 100%;
  padding: 23px;
  backdrop-filter: blur(5rem);
  border-left: 1px solid;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.mobile-menu-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

.mobile-menu-links.open {
  display: block;
}

.mobile-menu-button {
  transition: all 0.3s ease;
}

.mobile-menu-button span {
  transition: all 0.3s ease;
}

.mobile-menu-button span:nth-child(2) {
  transition: all 0s ease;
}

.mobile-menu-button.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

section {
  border-bottom: 1px solid;
}

section .row {
  min-height: 50vh;
}

section .content {
  padding: 24px;
  width: 100%;
}

section .content h2 {
  padding-bottom: 24px;
}

section .content p {
  text-indent: 50px;
}

.s-01 .row {
  grid-template-columns: 1fr 1fr;
}

.s-01 .row > div:first-child {
  border-right: 1px solid;
}

.s-01 .row > div:last-child {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
  flex-flow: column;
}

.s-02 .row {
  min-height: auto;
  padding: 16px 0;
}

.logos-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logos {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.logo {
  flex: 0 0 auto;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.s-03 .row {
  grid-template-columns: 1fr 1fr;
  align-content: center;
}

.s-04 .row{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.s-04 .row > div {
  border-right: 1px solid;
}

.s-04 .content {
  background: #1c1c1c;
  height: 100%;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.s-04 .content.bg-01 {
  background-image: url('../assets/images/texture-1.jpg');
  background-size: 300%;
  background-position: center;
}

.s-04 .content.bg-02 {
  background-image: url('../assets/images/texture-2.jpg');
  background-size: 300%;
  background-position: center;
}

.s-04 .content.bg-03 {
  background-image: url('../assets/images/texture-7.jpg');
  background-size: 300%;
  background-position: center;
}

.s-04 .content.bg-04 {
  background-image: url('../assets/images/texture-4.jpg');
  background-size: 300%;
  background-position: center;
}

.bg-05 {
  background-image: url('../assets/images/texture-5.jpg');
  background-size: 150%;
  background-position: center;
}

.s-04 .lg-text {
  letter-spacing: -10px;
  font-size: 7rem;
  font-weight: 500;
  line-height: .8;
}

.s-04 .content h2 {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1;
  padding-bottom: 0;
}

.s-05 h2 {
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1;
}

.s-06 .row {
  grid-template-columns: 1fr 1fr;
}

.s-06 .row > div:first-child {
  border-right: 1px solid;
}

.s-06 .row > div:last-child {
  display: flex;
  gap: 1rem;
  padding: 24px;
}

.s-06 h2 {
  letter-spacing: -10px;
  font-size: 7rem;
  font-weight: 500;
  line-height: .8;
}

.s-06 h3 {
  letter-spacing: -6px;
  font-size: 10rem;
  font-weight: 500;
  line-height: .8;
}

.s-06 p {
  padding-bottom: 0;
}

.s-07 .works-bg{
  min-height: 75vh;
  background-color: #1c1c1c;
  background-image: url('../assets/images/carina-full.jpg');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.s-08 .row {
  grid-template-columns: 1fr 1fr;
}

.s-08 .row > div:first-child {
  border-right: 1px solid;
}

.s-08 .content {
  width: 100%;
  max-width: 550px;
}

.s-08 .content h2 {
  letter-spacing: -10px;
  font-size: 7rem;
  font-weight: 500;
  line-height: .8;
  padding-bottom: 0;
}

.s-08 .content ul {
  padding-left: 24px;
  padding-bottom: 24px;
}

.s-08 .content p {
  padding-left: 0;
}

section.s-08 .content p {
    text-indent: 0;
}

.s-09 .bg-image {
  background-color: #1c1c1c;
}

.s-09 .row {
  grid-template-columns: 1fr 1fr;
}

.s-09 .row > div:first-child {
  border-right: 1px solid;
}

.s-09 .row > div:last-child {
  align-content: center;
}

#process-steps h2 {
  text-align: center;
  padding: 50px 0;
  opacity: .5;
}

#process-steps .content p {
  text-indent: 0;
}

.steps {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.step {
  padding-bottom: 30px;
}

.step h3 {
  padding-bottom: 24px;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -3px;
}

.pt-0 {
  padding-top: 0 !important;
}

.content {
  overflow: hidden;
}

footer {
  text-align: center;
}

footer .content {
  padding: 25px;
}

footer .content p {
  padding: 0;
}