@import './root.css';
.shuffle-text {
  cursor: pointer;
}

.released-film {
  font-size: var(--ea-font-size-medium);
  line-height: 1.2;
  display: flex;
  padding-left: var(--ea-left-right-padding);
  padding-right: var(--ea-left-right-padding);
  margin-bottom: 10.66667rem;
}

.released-film-video-overlay {
  position: relative;
}
.released-film-title {
  width: 30%;
}
.released-film-outer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 70%;
}
.released-film-outer-inner {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.released-film-close-button {
  position: fixed;
  top: 29px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000000;
}

.released-film-play-button {
  /* background: rgba(0, 0, 0, 0.5); */
  color: white;
  border: none;

  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  background: black;
  width: 421px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.released-film-play-button video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.film-hidden {
  display: none;
}
.released-video-model-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* bottom: 2%; */
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: all 0.3s ease-in;
}
.released-video-model-inner iframe {
  width: 85vw;
  height: 85vh;
  position: absolute;
  /* left: 20px; */
  /* right: 42px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10001;
}
@media screen and (max-width: 890px) {
  .released-film {
    flex-direction: column;
  }
  .released-film-outer {
    width: 100%;
  }
  .released-video-year {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .released-film-outer {
    flex-direction: column;
  }
  .released-film-outer-inner {
    justify-content: space-between;
  }
  .released-video-year {
    align-items: center;
    margin-top: 55px;
    width: 421px;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 500px) {
  .released-film-play-button {
    width: 243px;
    height: 137px;
  }
  .released-video-year {
    width: 243px;
  }
}
@media screen and (max-width: 340px) {
  .released-film-play-button {
    width: 171px;
    height: 95px;
  }
  .released-video-year {
    width: 171px;
  }
}
.released-watch-film-button {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -35px;
  width: 100%;
  left: 0;
  line-height: 1.2;
  font-size: var(--ea-font-size-medium);
}
.watch-film-arrow {
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.released-film-play-button:hover .watch-film-arrow {
  transform: scale(-1);
}
.text-color-black {
  color: black;
}
.text-color-white {
  color: white;
}
@media screen and (max-width: 600px) {
  .released-watch-film-button {
    justify-content: unset;
    gap: 10px;
  }
}

.featured-works {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  padding-left: var(--ea-left-right-padding);
  padding-right: var(--ea-left-right-padding);
}
.title-featured-work {
  text-align: left;
  width: 100%;
  font-size: var(--ea-font-size-medium);
  line-height: 1.2;
  padding-bottom: 8px;
}
.all-featured-work-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.featured-work,
.all-featured-work {
  /* padding: 20px; */
  font-size: var(--ea-font-size-huge);
  border-top: var(--ea-border-size) solid;
  font-family: var(--ea-font-family-locomotive-new);
  text-align: center;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}
.all-featured-work {
  border-bottom: var(--ea-border-size) solid;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.all-featured-work::before,
.all-featured-work::after {
  content: '🕳';
  font-size: 50%;
  animation: featuredProjectsAllFlash 2s linear infinite;
}
@keyframes featuredProjectsAllFlash {
  0%,
  25% {
    content: '';
  }

  26%,
  50% {
    content: '🔺';
  }

  51%,
  75% {
    content: '';
  }

  76%,
  100% {
    content: '🕳';
  }
}
.featured-work img {
  height: 100px;
  /* opacity: ; */
  transition: width 0.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  width: 0;
}

.featured-work:hover img {
  height: 120;
  /* opacity: 1; */
  width: 1.5em;

  transition: width 0.45s cubic-bezier(0.08, 0.82, 0.17, 1), opacity 0.2s cubic-bezier(0.08, 0.82, 0.17, 1);
}
.featured-work.pixelated img {
  image-rendering: pixelated;
  /* inset: 0; */
}
.c-image_inner.pixelated {
  image-rendering: pixelated;
  inset: 0;
}
.featured-work span {
  margin-left: 5px;
  margin-right: 5px;
}
.loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-wrap: row;
  justify-content: center;
  align-items: center;
  font-family: var(--ea-font-family-locomotive-new);
  font-size: 32px;
  line-height: 1.2;
  background: black;
  z-index: 1000000000;
  color: white !important;
}
.loading-content {
  animation: scaleAnimation 1s;
  position: relative;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.loading-content:last-child {
  margin-left: -5px;
}
.small-r {
  margin-left: -5px;
}
.loading-locomotive span {
  margin-right: -7px;
}
/* .loading-animation [class^='del-'] {
  transition: opacity 0.5s ease-in-out;
} */
.load-zig-zac {
  position: relative;
}
.left-animated-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -32%;
  top: -116px;
}
.right-animated-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 30%;
  bottom: -112px;
}
.center-animated-container {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 0;
}
.left-animated-container div,
.right-animated-container div {
  width: 350px;
  height: 100%;
  /* border: 1px solid red; */
}
