/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxxl: 2560px;
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.mainpage-hero {
  position: relative;
  z-index: 2;
}
.mainpage-hero h1 {
  margin: 0;
}
.mainpage-hero--wrapper {
  position: relative;
  max-width: 100%;
}
.mainpage-hero--wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.15;
}
.mainpage-hero--wrapper .content-block {
  padding-top: 200px;
  z-index: 2;
  position: absolute;
}
.mainpage-hero--wrapper .content-block *:last-child p {
  margin-top: 12px;
}
@media (max-width: 992px) {
  .mainpage-hero--wrapper .content-block {
    text-align: center;
    padding-top: 96px;
    position: relative;
  }
}
.mainpage-hero .picture {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.mainpage-hero .picture--bite {
  overflow: hidden;
  z-index: 1;
}
.mainpage-hero .picture--bite > picture {
  height: auto;
  top: 0;
  left: 0;
  z-index: 1;
}
.mainpage-hero .picture--bite > picture img {
  width: 57vw;
  height: auto;
  min-width: 850px;
}
@media (max-width: 992px) {
  .mainpage-hero .picture--bite > picture img {
    min-width: unset;
    width: clamp(480px, 120vw, 640px);
  }
}
.mainpage-hero .picture--paw {
  z-index: -1;
  bottom: 27px;
  top: unset;
}
@media (max-width: 992px) {
  .mainpage-hero .picture--paw {
    display: flex;
    justify-content: center;
  }
}
.mainpage-hero .picture--paw > picture {
  z-index: 1;
}
.mainpage-hero .picture--paw > picture img {
  width: 32vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}
@media (max-width: 992px) {
  .mainpage-hero .picture--paw > picture img {
    left: unset;
    transform: unset;
    width: 420px;
  }
}
@media (min-width: 992px) {
  .mainpage-hero .picture--paw > picture {
    margin-left: 51vw;
    display: flex;
    margin-bottom: 40px;
  }
  .mainpage-hero .picture--paw > picture img {
    left: unset;
    transform: unset;
  }
}
.mainpage-hero .picture--mcgruff {
  position: inherit;
}
@media (max-width: 992px) {
  .mainpage-hero .picture--mcgruff {
    padding-top: 100px;
  }
}
.mainpage-hero .picture--mcgruff > picture {
  z-index: 1;
  display: flex;
}
.mainpage-hero .picture--mcgruff > picture img {
  z-index: 3;
  width: auto;
  margin-left: 36vw;
  height: 85vh;
  margin-top: 15vh;
  min-height: 550px;
}
@media (min-width: 1920px) {
  .mainpage-hero .picture--mcgruff > picture img {
    margin-top: 14vh;
    margin-left: 38vw;
    height: 86vh;
  }
}
@media (max-width: 512px) {
  .mainpage-hero .picture--mcgruff > picture img {
    margin-top: 0;
    margin-left: 19vw;
    height: 480px;
    min-height: unset;
  }
}
