* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  body { font-family: sans-serif; }
  
  .gallery {
    background: #ffffff;
    box-shadow: 5px 10px #b3b2b207;
  }
  
  .gallery-cell {
    width: 66%;
    height: 200px;
    margin-right: 10px;
    margin-left: 10px;

    
    background: rgba(255, 255, 255, 0);
    counter-increment: gallery-cell;
  }
  
  /* cell number */
  .gallery-cell:before {
    display: block;
    text-align: center;
    content: counter(gallery-cell);
    line-height: 200px;
    font-size: 80px;
    color: white;
  }

  .gallery{
    width: 800px;
  }

  .carousel-cell {
    width: 100%; /* full width */
    height: 200px;
    background: #4437371a;
    /* center images in cells with flexbox */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel.is-fullscreen .carousel-cell {
    height: 100%;

  }

  .carousel{
    margin-bottom: 120px;
  }
  
  .carousel-cell img {
    display: block;
    max-height: 85%;
  }
  .carousel-cell-image{
    max-width: 25%;
  }

  .carousel-image {
    display: block;
    height: 200px;
    /* set min-width,
       allow images to determine cell width */
    min-width: 150px;
    max-width: 100%;
    margin-right: 10px;
    /* vertically center */
    top: 50%;
    transform: translateY(-50%)
  }
  
  .carousel.is-fullscreen .carousel-image {
    height: auto;
    max-height: 100%;
  }

  .imglink{
    cursor: pointer;
  }

