/* FONT IMPORT */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300, 400;
  font-display: block;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff?v=3.19") format("woff");
}
body {
  font: 400 30px/0 Inter;
  margin: 0px;
  background-color: white;
  color: black;
  padding: 0px;
}

h1 {
  font: 400 40px/1.3 Inter;
  margin: 0px;
}

h2 {
  font: 400 40px/1.3 Inter;
  margin: 0px;
}

h3 {
  margin: 0px;
}

header {
  font: 400 30px/1.3 Inter;
  padding: 40px 40px;
}

.nav {
  display: flex;
  justify-content: space-between;
}

.nav-items {
  display: flex;
  gap: 40px;
}

section {
  padding: 40px 40px;
  font: 400 30px/1.3 Inter;
}

a {
  display: inline-block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 50%;
}

img {
  width: 100%;
}

.gallery {
  display: flex;
  width: 100%;
}

.opaque {
  opacity: 50%;
}

.text-large {
  font: 400 30px/1.3 Inter;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-small {
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font: 400 20px/1.4 Inter;
}

.full-width {
  max-width: 100%;
}

/* VIDEO PLAYER */
.video-container {
  position: relative;
  width: 100%;
}

#playPauseBtn {
  position: absolute;
  bottom: 30px;
  left: 20px;
  background-color: white;
  border-radius: 100px;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

#playPauseBtn:hover {
  background-color: lightgray;
}

/* CLIENTS */
.clients {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.clients-list {
  max-width: 1440px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.clients-list span {
  width: 500px;
}

/* WORK EXPERIENCE */
.work {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.work-item {
  display: flex;
  align-items: flex-start;
}

.work-item-title {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 10px;
}

.work-item-details {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* PROJECTS */
.projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-list-item {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-content: stretch;
}
.project-list-item span {
  opacity: 50%;
  text-align: right;
  flex-shrink: 0;
  white-space: nowrap;
}

footer {
  padding: 40px 40px;
  font: 400 30px/1.3 Inter;
  display: flex;
  justify-content: space-between;
}

/* RESPONSIVE */
@media only screen and (max-width: 1200px) {
  h1 {
    font: 400 30px/1.3 Inter;
    margin: 0px;
  }
  h2 {
    font: 400 30px/1.3 Inter;
    margin: 0px;
  }
  header {
    padding: 20px 20px;
    font: 400 20px/1.3 Inter;
  }
  section {
    padding: 20px 20px;
    font: 400 20px/1.3 Inter;
  }
  footer {
    font: 400 20px/1.3 Inter;
    padding: 20px 20px;
  }
  .nav-items {
    gap: 20px;
  }
  .clients {
    gap: 20px;
  }
  .clients-list span {
    width: 350px;
  }
  .work {
    gap: 20px;
  }
  .text-large {
    font: 400 20px/1.3 Inter;
  }
}
@media only screen and (max-width: 600px) {
  .work-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .work-item-title {
    width: 100%;
    position: relative;
  }
  .work-item-details {
    width: 100%;
  }
  .project-list-item {
    flex-direction: column;
    gap: 10px;
  }
  .project-list-item span {
    text-align: left;
  }
  .gallery {
    flex-direction: column;
  }
}/*# sourceMappingURL=styles.css.map */