@font-face {
    font-family: "skema";
    src: url("../fonts/skema.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
 

  @font-face {
    font-family: "skema";
    src: url("../fonts/skema-extralight.ttf");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "skema";
    src: url("../fonts/skema-light.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "skema";
    src: url("../fonts/skema-bold.ttf");
    font-weight: bolder;
  }

  a.button {
    position: relative;
    padding: 0.7em 1.2em;
    border: none;
    cursor: pointer;
    outline: none;
    margin: 1em 0.8em;
    color:#333;
    max-width: 300px;
    background: rgb(238, 238, 238);
    transition: all 0.3s ease-in;
    text-transform: uppercase;
  }

  a.button:hover{
    background: rgb(231, 231, 231);
    color: black;
  }

  a.button::after, a.button::before {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 20%;
    border: 1px solid;
    transition: all 0.3s ease;
  }
  a.button::after {
    bottom: 0px;
    right: 0px;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #4e4e4e;
    border-right-color: #4e4e4e;
  }
  a.button::before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #4e4e4e;
    border-left-color: #4e4e4e;
  }
  a.button:hover:after, a.button:hover:before {
    border-bottom-color: #4e4e4e;
    border-right-color: #4e4e4e;
    border-top-color: #4e4e4e;
    border-left-color: #4e4e4e;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-width: 2px;
  }


  #menu .menu a{
    position: relative;
    text-decoration: none;
  }
  #menu .menu a:hover{
    font-weight: 300;
    color: black;
  }

  #menu .menu a:before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 50%;
    height: 1px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s;
  }
  #menu .menu a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    left: 50%;
    height: 1px;
    background-color: #333;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
  }
  #menu .menu a:hover:before {
    transform: scaleX(1);
  }
  #menu .menu a:hover:after {
    transform: scaleX(1);
  }

  .mosaic-container{
    position: relative;
  }
  .mosaic-container >*{
    width: 20%;
    overflow: hidden;
  }
  .mosaic-container div img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }
  .mosaic-1{
    position: absolute;
    right: 0%;
    width: 25%;
  }
  .mosaic-2{
    position: absolute;
    width: 46%;
    left: 27%;
    top: 4%;
  }
  .mosaic-3{
    position: absolute;
    width: 25%;
    left: 0% ;
    top: 18%;
  }
  .mosaic-4{
    position: absolute;
    width: 35%;
    left: 27% ;
    top: 29%;
  }
  .mosaic-5{
    position: absolute;
    width: 35%;
    right: 0% ;
    top:40%
  }
  .mosaic-6{
    position: absolute;
    width: 60%;
    left: 0% ;
    top: 58%
  }


  
  
  .plus-minus-toggle {
    cursor: pointer;
    height: 21px;
    position: relative;
    width: 21px;
    position: absolute;
    top: 13px;
    right: 4px;
  }
  .plus-minus-toggle:before, .plus-minus-toggle:after {
    background: #333;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 0;
    width: 18px;
    transition: transform 500ms ease;

  }
  .plus-minus-toggle:after {
    transform-origin: center;
  }
  .collapsed .plus-minus-toggle:after {
    transform: rotate(90deg);
  }
  .collapsed .plus-minus-toggle:before {
    transform: rotate(180deg);
  }