/* >= 768px */
/* >= 1024px */
@media screen and (min-width: 1024px) {
  .path-frontpage {
    background: url(/themes/custom/images/bg.webp) center right no-repeat var(--color-primary);
    background-size: 100% 100%;
  }
  .path-frontpage #main {
    display: flex;
    align-items: center;
    padding: 100px 10vw 100px 10vw;
  }
  .path-frontpage #main #logo {
    top: 50px;
    left: 10vw;
    display: block;
  }
  .path-frontpage #main #logo img {
    height: auto;
  }
  .path-frontpage #main .content-wrapper {
    width: min(50%, 600px);
    padding-top: 100px;
    flex-shrink: 0;
  }
  .path-frontpage #main .image-wrapper {
    --image-width: min(25vw, calc(calc(100vh - 200px) * 0.6));
    display: flex;
    justify-content: center;
    margin-left: 10vw;
    flex-grow: 1;
  }
  .path-frontpage #main .image-wrapper .image {
    width: var(--image-width);
    aspect-ratio: 0.6;
    position: relative;
  }
  .path-frontpage #main .image-wrapper .image picture {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--image-width) / 2);
    width: 100%;
    height: 100%;
  }
  .path-frontpage #main .image-wrapper .image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: calc(var(--image-width) / 2);
  }
  .path-frontpage #main .image-wrapper .image picture:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1;
    z-index: 9;
    background: linear-gradient(25deg, rgba(174, 255, 118, 0.5) 0%, rgba(174, 255, 118, 0) 40%);
  }
  .path-frontpage #main .image-wrapper .image:before,
  .path-frontpage #main .image-wrapper .image:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(var(--image-width) / 2);
    width: calc(var(--image-width) / 5);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-secondary);
    transform: translateX(-50%);
    z-index: 19;
  }
  .path-frontpage #main .image-wrapper .image:after {
    top: calc((var(--image-width) / 5) + (var(--image-width) / 2));
    margin-top: calc(var(--image-width) / 30);
  }
}
/* >= 1248px */
