#list-page {
  position: relative; }
  #list-page .loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10; }
    #list-page .loading .loader {
      border-color: white;
      border-top-color: black;
      margin-top: 100px;
      border-width: 1px;
      animation-timing-function: linear; }
    #list-page .loading dotlottie-player {
      display: block;
      margin: 50px auto 0 auto; }
  #list-page .back {
    width: max-content;
    cursor: pointer;
    gap: 5px;
    margin: 30px 0 50px 0; }
    #list-page .back img {
      width: 18px;
      height: auto; }
  #list-page .client-img {
    width: auto;
    height: 100px;
    display: block;
    margin: 20px 0; }
  #list-page .project-ceb {
    width: max-content;
    display: flex;
    gap: 10px;
    align-items: start; }
    #list-page .project-ceb img {
      height: 150px;
      width: auto;
      border-radius: 6px;
      box-shadow: 0 0 6px rgba(0, 0, 0, .2); }
    #list-page .project-ceb > div {
      width: 5px; }
      #list-page .project-ceb > div h2 {
        font-size: 30px; }
  #list-page h1 {
    font-weight: normal;
    font-size: 1.5rem; }
  #list-page .empty {
    text-align: center;
    padding: 50px 0; }
  #list-page .posts {
    margin-bottom: 100px; }
    #list-page .posts .post-container {
      margin-bottom: 25px; }
      #list-page .posts .post-container .post {
        background-color: gray;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 350px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        background-color: black; }
        #list-page .posts .post-container .post img {
          height: auto;
          width: 100%; }
        #list-page .posts .post-container .post .over {
          opacity: 0;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.7);
          transition: opacity 0.2s ease-in-out;
          color: white;
          font-size: 0.9rem;
          text-transform: uppercase;
          display: flex;
          align-items: center;
          justify-content: center;
          pointer-events: none; }
          #list-page .posts .post-container .post .over .more {
            border: solid 1px white;
            border-radius: 5px;
            padding: 5px 10px; }
          #list-page .posts .post-container .post .over .info {
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 10px;
            line-height: 1.5; }
        #list-page .posts .post-container .post:hover .over {
          opacity: 1;
          pointer-events: all; }
        #list-page .posts .post-container .post.photo {
          margin-bottom: 15px; }
      #list-page .posts .post-container .client {
        margin-top: 10px; }
        #list-page .posts .post-container .client img {
          width: auto;
          height: 40px; }

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }
  .modal-container .closex {
    color: white;
    font-weight: bold;
    display: block;
    margin: 0 5px 5px auto;
    width: 20px;
    height: 20px;
    cursor: pointer; }
  .modal-container .modal-box {
    background-color: black;
    color: white;
    border-radius: 5px;
    padding: 0;
    cursor: default;
    max-width: 80vw;
    max-height: 80vh;
    overflow: auto; }
    .modal-container .modal-box video, .modal-container .modal-box iframe {
      width: 100%;
      height: 400px; }
    .modal-container .modal-box .swiper {
      max-width: 100%;
      max-height: 100%;
      background-color: black; }
      .modal-container .modal-box .swiper .swiper-wrapper {
        overflow: auto; }
      .modal-container .modal-box .swiper .swiper-slide {
        width: auto !important; }
      .modal-container .modal-box .swiper img {
        height: 80vh;
        width: auto;
        display: block;
        margin: 0 auto; }
      .modal-container .modal-box .swiper .swiper-pagination-bullet-active {
        background: white; }
      .modal-container .modal-box .swiper .swiper-button-next:after, .modal-container .modal-box .swiper .swiper-button-prev:after {
        color: black;
        font-size: 16px;
        background: white;
        border-radius: 50%;
        padding: 8px 12px;
        font-weight: bold;
        opacity: 0.5;
        cursor: pointer; }
        .modal-container .modal-box .swiper .swiper-button-next:hover:after, .modal-container .modal-box .swiper .swiper-button-prev:hover:after {
          opacity: 1; }
    .modal-container .modal-box .modal-footer {
      padding: 5px;
      font-size: 14px;
      display: flex;
      align-self: center; }
      .modal-container .modal-box .modal-footer img {
        height: 20px;
        width: auto;
        margin-right: 5px; }
      .modal-container .modal-box .modal-footer b {
        margin: 0 3px; }
