.vsc-controller {
  display: none;
}

.title-card {
  display: flex;
  flex-direction: column;
  width: 95%;
  margin: 0 auto;
}

.title-card h1 {
  font-size: 48px;
  margin: 0;
}

.project-descriptors {
  display: flex;
  width: 100%;
  margin: 0 0 15px 0;
  flex-direction: column;
}

.project-descriptors div {
  margin: 5px 0;
}

.project-descriptors br {
  display: none;
}

.heading {
  font-size: 12px;
  font-weight: 300;
  margin: 0;
}

.descriptor {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  line-height: 18px;
}

.main-content {
  width: 95%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.about-project {
  display: flex;
  flex-direction: column;
  flex: 0.35;
}

.about-project img {
  display: none;
}

.about-project video {
  display: none;
}

.about-title {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.about-description {
  margin: 10px auto;
  font-size: 14px;
}

.bottom-images {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.bottom-images img {
  width: 100%;
  object-fit: cover;
}

.bottom-images video {
  width: 30%;
  object-fit: cover;
  aspect-ratio: 1/2;
  flex: 1;
}

.project-content {
  flex: 0.65;
}

.video-container {
  position: relative;
  width: 100%;
  display: flex;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.content-description {
  font-size: 14px;
  margin: 10px auto 10px auto;
}

.project-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  justify-content: space-between;
}

.project-images img {
  flex: 1;
  width: 100%;
}

.project-images video {
  flex: 1;
  width: 100%;
}

.half {
  flex: 0.5 !important;
}

.center {
  margin: 0 auto;
}

.about-image {
  height: 100%;
  object-fit: cover;
}

.not-full-center {
  width: 95%;
  margin: 0 auto;
}

.buttons {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}

.buttons-navigation {
  border: none;
  display: flex;
  background-color: transparent;
  align-items: center;
  margin: 15px 0;
}
.buttons-navigation span {
  padding: 10px;
  font-family: "Poppins";
  font-size: 15px;
  color: #2d2d2d;
}

.buttons-navigation img {
  width: 16px;
  aspect-ratio: 1;
}

.space-bottom {
  margin: 10px auto;
}

.pause-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  border: none;
  background: transparent;
}

.pause-play img {
  width: 64px;
  aspect-ratio: 1;
  filter: invert(100%);
}

.buttons-navigation:hover span {
  color: #5a5a5a;
}

.work-footer {
  display: flex;
  width: 95%;
  margin: 0 auto 50px auto;
  justify-content: space-between;
}

.work-footer span {
  font-size: 12px;
  border-radius: 15px;
  border: 1px solid #2d2d2d;
  padding: 10px;
}

.work-footer-title {
  font-size: 30px;
  margin: 10px 0;
}

.links {
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.links a {
  font-size: 24px;
  font-weight: 600;
  text-align: right;
}

.work-footer a {
  display: block;
}

.delmonte {
  flex-direction: row;
  column-gap: 15px;
  margin: 15px 0 0 0;
}

.carousel {
  display: none;
}

.branding-two {
  display: flex;
  flex-direction: column-reverse;
  width: 95%;
  margin: 0 auto;
}

.aside-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.aside-branding-image {
  margin: 10px 0;
}

.credits {
  display: flex;
  width: 95%;
  margin: 0 auto 20px auto;
}

.credits article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: left;
  margin: 20px 0px;
}

.credits h3 {
  margin: 0;
}

.left-credits{
  margin-right: 10vw;
}

@media screen and (min-width: 1200px) {
  .title-card h1 {
    font-size: 130px;
  }

  .project-descriptors {
    width: 60%;
    flex-direction: row;
    column-gap: 2.5vw;
  }

  .project-descriptors br {
    display: inline;
  }

  .heading {
    font-size: 24px;
  }

  .descriptor {
    font-size: 32px;
    line-height: 32px;
    font-weight: 500;
  }

  .main-content {
    flex-direction: row;
    column-gap: 2.5vw;
    margin: 20px auto;
  }

  .about-title {
    font-size: 32px;
    font-weight: 600;
  }
  .about-description {
    font-size: 20px;
    font-weight: 300;
    margin: 10px auto 30px 0;
  }

  .about-project img {
    display: block;
    width: 100%;
  }


.about-project video {
  display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: 50%;
}

  .content-description {
    font-size: 20px;
    margin: 20px auto;
  }

  .project-images {
    flex-direction: row;
    margin: 0px !important;
  }

  .project-images img {
    width: calc(33% - 10px);
    flex: auto;
  }

  
  .project-images video {
    width: calc(33% - 10px);
    flex: auto;
  }

  .buttons-navigation span {
    font-size: 24px;
  }

  .buttons-navigation img {
    width: 32px;
  }

  .work-footer-title {
    font-size: 100px;
    margin: 10px 0;
  }

  .links {
    display: flex;
    flex-direction: column;
    margin: auto 0;
  }

  .links a {
    font-size: 38px;
    font-weight: 600;
    text-align: right;
  }

  .work-footer a {
    display: block;
  }

  .work-footer span {
    font-size: 24px;
    border-radius: 15px;
    border: 1px solid #2d2d2d;
    padding: 10px 20px;
  }

  .work-footer span:hover {
    background-color: #fa793b;
  }

  .bottom-images {
    display: flex;
    column-gap: 2.5vw;
    margin-top: 2.5vw;
    flex-direction: row;
  }

  .bottom-images img {
    width: 48%;
    object-fit: cover;
    aspect-ratio: 2/1;
  }

  .bottom-images video {
    width: 30%;
    object-fit: cover;
    aspect-ratio: 1/2;
  }

  .carousel {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(2px);
  }

  .active {
    display: flex;
  }

  .no-overflow {
    overflow: hidden;
  }

  .carousel button {
    background-color: transparent;
    border: none;
  }

  .close {
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 0;
  }

  .viewer {
    display: flex;
    flex-direction: row;
    height: 100%;
  }

  .viewer img {
    width: 80%;
    max-height: 90%;
    margin: auto;
  }

   .viewer video {
    width: 80%;
    max-height: 90%;
    margin: auto;
  }

  .carousel-images {
    width: 32px;
    aspect-ratio: 1;
    filter: brightness(0%) invert(100%);
  }

  .no-margin {
    margin: 0;
  }
  .branding-one {
    flex-direction: row-reverse;
  }

  .branding-two {
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
  }

  .aside-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }

  .aside-branding-image {
    margin: 0;
    width: 49%;
  }

  .credits {
    margin-bottom: 15px;
  }
}
