/*
hero {
  display: block;
  position: relative;
  z-index: 4;

  .heroWrap {
    max-width: inherit;

    .mod-custom {
      width: 100%;
    }
  }

  .heroGrid, .heroTitleImage img {
    height: 40vh;
  }
}

.heroGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  position: relative;
  z-index: 1;

  .TitleImage {
    grid-area: 1 / 1 / 2 / 3;
    height: 66vh;

    img {
      width: 100%;
      height: 66vh;
      object-fit: cover;
    }

    position: relative;
    z-index: 1;
  }

  .grid-top-right {
    grid-area: grid-top-right;
  }

  .grid-bottom-left {
    grid-area: grid-bottom-left;
  }

  #heroTitleTitle {
    grid-area: 1 / 2 / 3 / 3;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 2rem;
    padding-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--white-1);
    font-family: "bodoni_modaregular", sans-serif;
    text-transform: uppercase;

    span {
      text-shadow: 0px 0px 19px rgba(28, 27, 26, 0.9);
    }
  }

  .heroTitleImage {
    grid-area: 1 / 1 / 2 / 3;

    img {
      width: 100%;
      object-fit: cover;
    }

    position: relative;
    z-index: 1;
  }
}

.transparent-menu {
  .heroGrid, .heroTitleImage img {
    height: 66vh;
  }
}
*/

/* Widgetkit */
hero {
    .uk-slideshow {
        li {
            & > .uk-h3 {
                display:none;
            }
            & > .uk-margin {
                margin-block:0 !important;
            }
            .heroVideo {
                display:grid;
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 1fr 1fr;
                grid-auto-columns: 1fr;
                grid-auto-rows: 1fr;
                gap: 0 0;
                grid-auto-flow: row;
                position: relative;
                z-index: 1;
                aspect-ratio: 25 / 9;
                img {
                    grid-area:1 / 1 / 2 / 3;
                    display: block;
                    object-fit: cover;
                    object-position: center top;
                    aspect-ratio: 25 / 9;
                }
                video {
                    grid-area: 1 / 1 / 2 / 3;
                    display: block;
                    object-fit: cover;
                    object-position: center top;
                    width: 100%;
                    position: relative;
                    z-index: 2;
                    aspect-ratio: 25 / 9;
                }
                #heroTitleTitle {
                    grid-area: 1 / 2 / 3 / 3;
                    position: relative;
                    z-index: 3;
                    display: flex;
                    align-items: flex-end;
                    justify-content: flex-end;
                    padding-right: 2rem;
                    padding-bottom: 2rem;
                    font-size: clamp(2rem, 4vw, 4rem);
                    color: var(--white-1);
                    font-family: "bodoni_modaregular", sans-serif;
                    text-transform: uppercase;
                    span  {
                    text-shadow: 0 0 19px rgb(28 27 26 / .9);
                     }
                    h1 {
                        font-size: clamp(2rem, 4vw, 4rem);
                        color: var(--white-1);
                        font-family: "bodoni_modaregular", sans-serif;
                        text-transform: uppercase;
                    }
                }
            }
        }

        .uk-dotnav.uk-flex-center {
            justify-content:flex-start;
            li a {
                width: 20px;
                height: 20px;
            }
        }



    }

    .uk-scope .uk-overlay-primary {
        --uk-inverse: dark !important;
        background: var(--blue-5);
        color: rgba(245, 245, 245, 1);
        .uk-text-large {
            font-size:var(--size-4) !important;
            line-height:1.1 !important;
            max-width:800px !important;
            text-shadow: 0 0 19px rgb(28 27 26 / .9);
            text-align: left;
        }
        p {
            text-align: left;
        }
        .uk-h3 {
            display:none;
        }
        .uk-button {
            background:var(--red-1);
            border-color: var(--red-1);
            font-family:"Montserrat", sans-serif;
            padding: 7px 14px !important;
            border-radius: 3px;
            font-size:var(--size-2);
            line-height: 1;
            letter-spacing: 2px;
            &:hover, &:active, &:focus {
                background:var(--red-2);
                border-color: var(--red-2);
            }
        }
    }
}
@media screen and ( width < 540px ) {
    hero {
        .uk-scope .uk-overlay-primary {
            .uk-text-large {
                font-size:var(--size-1) !important;
            }
        }
    }
}
