

.modal-wrapper {
    align-items: normal;
    background-color: rgba(41, 41, 41, 0.904);
    bottom: 0;
    display: block;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;

    visibility: hidden;
    width: 100%;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .modal-wrapper.visible {
      opacity: 1;
      visibility: visible;
  }
  

  
  .modal-window {
      display: inline-table;
      
      background-color: white;
      border-radius: 0px;
      box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
      padding: 20px;
      transform: scale(0);
      transition: 0.1s step-end all;
      position: absolute;
      margin-top: 10px;
      margin-bottom: 10px;
  }
  
  .modal-window .col-4{
      width: 30%;
  }

  .modal-window .col-8{
    width: 60%;
  }

  .modal-window.visible {
      transform: scale(1);
      position: relative;
  }
  
  .modal-header {
      align-items: center;
      border-bottom: 2px solid black;
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 20px;
  }
  
  .close-modal-button {
      border: none;
      background-color: transparent;
      color: rgb(112, 112, 112);
      cursor: pointer;
      font-size: 1rem;
      padding: 0.2em;
  }
  
  .close-modal-button:hover {
      color: black;
  }
  
  .modal-trigger {
      color: rgb(10, 47, 255);
      cursor: pointer;
      text-decoration: underline;
  }

  .project-info{
      font-size:16px;
  }
  .project-info span{
      font-weight: bolder;
      
  }

  .project-info li{
      margin-bottom: 10px;
  }
  
  .image-wrapper{
      display: grid;
      max-width: 100vw;
      min-width:0;
      width: 100%;
      padding: 2%;
      overflow: hidden;
  }

  .image-wrapper .image{
      display: grid;
      width: 100%;
      max-width: 100vw;
      margin-bottom: 10px;
      margin-top: 10px;
  }

  .slick-prev:before, .slick-next:before{
    left: 0px !important;
    right: 0px !important;
    color:#232324 !important;
}