@font-face {
  font-family: Cooper;
  src: url('../fonts/CooperLtBTBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cooper;
  src: url('../fonts/CooperLtBTLightItalic.ttf') format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cooper;
  src: url('../fonts/CooperLtBTBoldItalic.ttf') format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Cooper;
  src: url('../fonts/CooperLtBTLight.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  background-color: #f2e6c2;
  font-family: Cooper, Georgia, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.hero-section {
  background-color: #f2e6c2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 92vh;
  display: flex;
  overflow: hidden;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -200px;
  display: flex;
  overflow: hidden;
}

.image {
  z-index: auto;
  margin-top: 0;
  padding-top: 0;
  position: absolute;
  top: 100%;
  bottom: -400px;
  overflow: hidden;
  transform: translate(0, -50%);
}

.body {
  background-color: #f2e6c2;
  font-family: Cooper, Georgia, sans-serif;
  font-style: normal;
  font-weight: 300;
}

.heading {
  color: #b36b47;
  text-align: center;
  text-shadow: -2px 2px #000;
  margin-top: 0;
  font-family: Cooper, Georgia, sans-serif;
  font-size: 80px;
  font-style: italic;
  line-height: 60px;
  text-decoration: none;
  display: block;
}

.paragraph {
  color: #995c3d;
  text-align: center;
}

.heading-2 {
  color: #331f14;
  text-align: left;
  text-transform: none;
  align-self: center;
  margin-top: 0;
  font-family: Cooper, Georgia, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 50px;
}

.heading-2.testimonial-headline {
  color: #333;
  text-align: center;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 30px;
}

.heading-2.left-aligned {
  align-self: flex-start;
}

.hero-cta {
  text-align: center;
  text-shadow: 1px 1px 1px #26170f80;
  white-space: normal;
  cursor: pointer;
  background-color: #b36b47;
  border: 1px solid #804d33;
  border-radius: 4px;
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px 24px;
  font-family: Cooper, Georgia, sans-serif;
  font-size: 24px;
  font-weight: 700;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 2px 12px #26170f40;
}

.hero-cta:hover {
  background-color: #bf734d;
}

.hero-cta:active {
  background-color: #ad6845;
  transform: translate(0, 1px);
  box-shadow: 0 1px 10px #26170f59;
}

.hero-cta.cta-secondary {
  background-color: #4d3e36;
  border-color: #1a1512;
  font-weight: 300;
}

.hero-cta.cta-secondary.play-vibe {
  font-family: Cooper, Georgia, sans-serif;
  font-weight: 300;
}

.hero-cta.cta-secondary.play-vibe:hover {
  background-color: #59483f;
}

.hero-cta.cta-secondary.small-button {
  margin-top: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 10px;
}

.hero-cta.cta-secondary.pause-vibe {
  display: none;
}

.hero-cta.pricing-cta {
  white-space: normal;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 16px;
  position: relative;
}

.hero-cta.long-text:hover {
  background-color: #bf734d;
}

.hero-cta.long-text:active {
  background-color: #ad6845;
}

.div-block {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  padding: 20px;
  display: flex;
  position: relative;
}

.nav-link {
  color: #4d2e1f;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 300;
}

.nav-link.w--current {
  color: #000;
  text-decoration: underline;
}

.nav-link.nav-cta {
  color: #fff;
  text-transform: none;
  text-shadow: 0 1px 1px #26170f80;
  background-color: #b36b47;
  border: 1px solid #804d33;
  border-radius: 4px;
  font-weight: 700;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 2px 4px #26170f26;
}

.nav-link.nav-cta:hover {
  background-color: #bf734d;
}

.nav-link.nav-cta:active {
  background-color: #ad6845;
  transform: translate(0, 1px);
}

.nav-link.about-hide {
  display: inline-block;
}

.nav-link.pricing, .nav-link.about {
  display: none;
}

.navbar {
  background-color: #0000;
  padding-top: 10px;
  font-family: Cooper, Georgia, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.heading-3 {
  color: #b36b47;
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 0;
  font-family: Cooper, Georgia, sans-serif;
  font-size: 20px;
  font-style: normal;
}

.heading-3.dark {
  color: #331f14;
  text-align: center;
  line-height: 30px;
}

.heading-3.brown {
  color: #b36b47;
  text-align: left;
  align-self: center;
}

.heading-3.brown.centered {
  text-align: center;
}

.brand {
  margin-top: 6px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 80vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  color: #331f14;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 300px;
  display: flex;
}

.div-block-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.dancing-spot {
  z-index: 2000;
  cursor: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: block;
  position: fixed;
  inset: auto 0% 0% auto;
}

.body-2 {
  background-color: #f2e6c2;
}

.basic-container {
  margin-bottom: 100px;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer.dark {
  color: #ffffffa6;
  background-color: #331f14;
}

.footer-flex-container {
  text-align: left;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-width: 200px;
  max-height: 60px;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-link {
  color: #ffffffd9;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link.pricing {
  display: none;
}

.div-block-3 {
  color: #fff6;
  text-align: center;
}

.paragraph-2 {
  color: #331f14;
  font-size: 20px;
  line-height: 30px;
}

.paragraph-2.centered {
  text-align: center;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section {
  align-items: center;
  display: flex;
}

.body-3 {
  background-color: #f2e6c2;
}

.sidepane-ui {
  z-index: 1001;
  opacity: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 80px;
  margin-right: 5px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto auto;
}

.image-3 {
  cursor: grab;
}

.section-2 {
  z-index: 9;
  background-color: #b36b47;
  justify-content: center;
  align-items: center;
  min-height: 120vh;
  padding-top: 60px;
  display: flex;
  position: relative;
}

.div-block-4 {
  object-fit: fill;
  justify-content: center;
  align-items: flex-end;
  padding-top: 84px;
  padding-bottom: 64px;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
  overflow: visible;
}

.testimonialsection {
  z-index: 10;
  background-color: #fcf9f7;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.testimonial-logo-container {
  opacity: 1;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.container-2 {
  padding-left: 20px;
  padding-right: 20px;
}

.image-5 {
  background-color: #0000;
}

.testimonial-logo {
  margin: 16px 20px;
}

.text-span, .text-span-2 {
  font-size: 12px;
}

.paragraph-3 {
  color: #fff;
  text-align: center;
  padding-left: 80px;
  padding-right: 80px;
  font-size: 30px;
  line-height: 40px;
}

.bold-text {
  color: #331f14;
  text-align: center;
}

.div-block-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -50px;
  display: flex;
}

.sidepane-hover-area {
  opacity: 0;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 34px;
  margin-top: 98px;
  display: flex;
  position: absolute;
}

.sidepane-hover-area.avg-views {
  height: 34px;
  margin-top: 146px;
}

.sidepane-hover-area.avg-comments {
  height: 34px;
  margin-top: 190px;
}

.sidepane-hover-area.mainpane {
  cursor: pointer;
  height: 42px;
  margin-top: 4px;
}

.sidepane-hover-area.avg-shares {
  height: 34px;
  margin-top: 275px;
}

.sidepane-hover-area.avg-likes {
  height: 34px;
  margin-top: 234px;
}

.sidepane-tooltip {
  align-self: flex-end;
  margin-right: 140px;
}

.tiktok-view {
  z-index: 1000;
  opacity: 1;
  object-fit: fill;
  object-position: 50% 0%;
  background-color: #fafafa;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.tiktokscreenshot {
  max-width: 2880px;
}

.image-7 {
  margin-top: -34px;
  margin-right: -10px;
}

.text-block {
  color: #4d3e36;
  text-align: center;
  align-self: flex-end;
  width: 150px;
  margin-top: -39px;
  margin-right: 10px;
  font-size: 13px;
  line-height: 16px;
}

.bonked-updog {
  display: none;
  position: absolute;
}

.unbonked-updog {
  position: absolute;
}

.bonk-block {
  display: none;
}

.image-8 {
  display: none;
  position: absolute;
}

.html-embed {
  position: absolute;
}

.headshot-container {
  position: relative;
}

.headshot-column {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.columns {
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.headshot-video {
  cursor: pointer;
  margin-bottom: -60px;
  display: block;
}

.headshot-video.groovy {
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.team-member {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.paragraph-4 {
  align-self: center;
  font-size: 16px;
}

.section-4 {
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120vh;
  display: flex;
  overflow: hidden;
}

.large-heading {
  text-align: center;
  margin-top: 0;
  font-size: 50px;
  font-weight: 300;
  line-height: 60px;
}

.html-embed-2 {
  border-radius: 10px;
}

.div-block-6 {
  max-width: 700px;
  margin-top: 40px;
}

.dogify-player {
  background-color: #f2e6c2;
  border: 4px solid #b36b47;
  border-radius: 100px;
  align-items: center;
  min-width: 320px;
  min-height: 60px;
  margin-bottom: 16px;
  margin-left: 14px;
  margin-right: 12px;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  overflow: hidden;
  box-shadow: -4px 4px #b36b47;
}

.dogify-player.alessio {
  background-color: #f2e6c2;
  border-color: #3d1087;
  display: flex;
  inset: auto 0% 0% auto;
  box-shadow: -4px 4px #3d1087;
}

.dogify-player.mikael {
  border-color: #991616;
  display: flex;
  box-shadow: -4px 4px #991616;
}

.album-art {
  object-fit: fill;
  background-color: #b36b47;
  border-radius: 3px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin: 10px 10px 10px 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.album-art.alessio {
  background-color: #3d1087;
}

.album-art.mikael {
  background-color: #991616;
}

.song-info {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.song-title {
  color: #333;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
}

.artist {
  color: #333333bf;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
}

.play-pause-container {
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.play-pause-icon {
  cursor: pointer;
  position: absolute;
}

.play-pause-icon.play {
  display: none;
}

.div-block-7 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-9 {
  position: absolute;
}

.image-10 {
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.paragraph-5 {
  margin-top: 20px;
  margin-bottom: 60px;
}

.section-6 {
  min-height: 100vh;
}

.container-3 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 100px;
  display: flex;
}

.container-4 {
  margin-top: 30px;
}

.link {
  color: #331f14;
  text-decoration: none;
}

.link:hover, .link:focus {
  text-decoration: underline;
}

.link-2 {
  color: #331f14;
}

.updogherointeractive {
  position: absolute;
  top: 62%;
}

.image-11 {
  position: absolute;
}

.updogemptyeyes {
  z-index: 5;
  position: relative;
}

.updogeyes {
  z-index: 4;
  position: absolute;
}

.updogeyewhite {
  background-color: #bddce0;
  width: 300px;
  height: 100px;
  position: absolute;
  top: 224px;
  left: 59px;
}

.spotify-player {
  background-color: #331f14;
  border-radius: 20px;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
  margin-right: 14px;
  padding-bottom: 0;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  overflow: hidden;
  box-shadow: 0 0 0 3px #b36b47, -8px 8px #b36b47, 0 14px 20px 4px #331f1466;
}

.spotify-player.alessio {
  background-color: #3d1087;
  width: 300px;
  display: none;
  box-shadow: 0 0 0 3px #3d1087, -8px 8px #3d1087, 0 14px 20px 4px #0c031966;
}

.spotify-player.mikael {
  background-color: #3e81b6;
  width: 300px;
  display: none;
  box-shadow: 0 0 0 3px #3e81b6, -8px 8px #3e81b6, 0 14px 20px 4px #09121966;
}

.html-embed-3 {
  margin-bottom: -5px;
  padding-bottom: 0;
}

.html-embed-4 {
  margin-bottom: -5px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 20px;
  min-height: 200px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 0 0 1px #331f141a, 0 1px 6px #331f141a, 0 10px 40px #331f1426;
}

.pricing-card.highlighted {
  box-shadow: 0 0 0 3px #b36b47, 0 0 0 1px #0000001a, 0 1px 6px #0000001a;
}

.price {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 80px;
  line-height: 80px;
}

.price.small {
  white-space: pre-line;
  font-size: 52px;
  line-height: 60px;
}

.price.smallest {
  font-size: 37px;
  line-height: 50px;
}

.columns-2 {
  text-align: left;
}

.pricing-plan-name {
  color: #fff;
  letter-spacing: .5px;
  background-color: #b36b47;
  border-radius: 20px;
  padding-left: 14px;
  padding-right: 14px;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
}

.text-block-2 {
  white-space: normal;
}

.pricing-list {
  margin-top: 20px;
  margin-bottom: 20px;
}

.list-item {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
}

.plan-description {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 24px;
}

.container-5 {
  margin-top: 80px;
  margin-bottom: 40px;
}

.image-15 {
  order: 0;
  margin-left: auto;
  margin-right: 10px;
}

.link-block {
  margin-left: auto;
  margin-right: 10px;
}

.intercom-button {
  z-index: 100;
  cursor: pointer;
  background-color: #cc7a52;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 0;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
  box-shadow: 0 4px 20px #0003;
}

.intercom-wrapper {
  z-index: 100;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
  position: fixed;
  inset: auto 0% 0% auto;
}

.intercom-messsage {
  z-index: 99;
  background-color: #fff;
  border-radius: 10px;
  width: 260px;
  min-height: 40px;
  margin-bottom: 94px;
  margin-right: 20px;
  padding: 16px 18px;
  position: relative;
  box-shadow: 0 0 0 1px #0000001a, 0 2px 24px #00000024;
}

.intercom-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 400;
}

.intercom-text.header {
  margin-left: 8px;
  font-weight: 500;
}

.intercom-profile-photo {
  border-radius: 20px;
  width: 32px;
}

.intercom-message-header {
  align-items: center;
  margin-bottom: 12px;
  display: flex;
}

.text-span-3 {
  color: #3339;
  font-weight: 400;
}

.intercom-poof {
  z-index: 102;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  margin-right: 10px;
  position: fixed;
  inset: auto 0% 0% auto;
}

.intercom-poof._2 {
  margin-bottom: 80px;
}

.intercom-poof._3 {
  margin-bottom: 144px;
  margin-right: 31px;
}

.intercom-poof._4 {
  margin-bottom: 106px;
  margin-right: 87px;
}

.intercom-poof._5 {
  margin-bottom: 148px;
  margin-right: 154px;
}

.intercom-poof._6 {
  margin-bottom: 83px;
  margin-right: 194px;
}

.image-17 {
  width: 28px;
  height: 32px;
}

.link-3 {
  color: #333333bf;
}

.disclaimer {
  color: #331f14;
  text-align: center;
  text-transform: uppercase;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
}

.footeroverscroll {
  z-index: -2;
  background-color: #331f14;
  width: 100%;
  height: 1000px;
  position: fixed;
  bottom: -1000px;
}

.video {
  border-radius: 20px;
  overflow: hidden;
}

.image-18 {
  display: none;
}

.html-embed-5 {
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  overflow: hidden;
  transform: translate(0);
  box-shadow: 0 8px 40px #0006, 0 0 0 2px #0003;
}

.link-4 {
  color: #331f14;
  text-decoration: underline;
}

.link-5 {
  color: #331f14;
}

.grid {
  grid-template-rows: auto;
  padding-top: 40px;
}

.div-block-8 {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
}

.grid-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: 1fr;
  place-content: center start;
  place-items: center start;
  padding-left: 24px;
}

.container-7 {
  padding: 80px 12px 40px;
}

.text-block-3 {
  font-size: 28px;
}

.div-block-9 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.profilephoto {
  border: 2px solid #331f14;
  border-radius: 100px;
  width: 100px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.headerwhatever {
  font-size: 28px;
}

.profilename {
  color: #331f14;
  font-size: 20px;
  text-decoration: underline;
}

.profilename:hover, .profilename:active {
  text-decoration: underline;
}

.link-block-2 {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.link-6 {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .hero-cta {
    font-size: 18px;
  }

  .hero-cta.pricing-cta {
    line-height: 22px;
  }

  .div-block {
    padding: 20px;
  }

  .dancing-spot {
    display: block;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sidepane-ui {
    display: none;
  }

  .paragraph-3 {
    padding-left: 60px;
    padding-right: 60px;
  }

  .div-block-5 {
    margin-bottom: -40px;
  }

  .section-5 {
    display: none;
  }

  .price.small {
    font-size: 42px;
  }
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 26px;
    line-height: 36px;
  }

  .heading-2.testimonial-headline {
    margin-bottom: 20px;
  }

  .div-block {
    margin-bottom: 0;
  }

  .nav-link.nav-cta {
    float: left;
    margin-left: 10px;
    display: inline-block;
  }

  .heading-3 {
    font-size: 16px;
  }

  .heading-3.dark {
    line-height: 24px;
  }

  .image-2 {
    max-width: 160px;
  }

  .icon {
    color: #4d2e1f;
  }

  .nav-menu {
    background-color: #f2e6c2;
  }

  .menu-button {
    background-color: #0000;
  }

  .menu-button.w--open {
    background-color: #f2e6c2;
  }

  .div-block-2 {
    flex-direction: column;
  }

  .basic-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-logo-link {
    max-width: 120px;
  }

  .footer-image {
    object-fit: contain;
  }

  .footer-heading {
    margin-bottom: 10px;
  }

  .image-3 {
    cursor: auto;
  }

  .image-4 {
    display: none;
  }

  .section-2 {
    min-height: 90vh;
  }

  .div-block-4 {
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonial-logo-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-items: center;
    display: grid;
  }

  .paragraph-3 {
    padding-left: 40px;
    padding-right: 40px;
    font-size: 24px;
    line-height: 34px;
  }

  .bold-text {
    line-height: 20px;
  }

  .div-block-5 {
    margin-bottom: -30px;
  }

  .columns {
    flex-direction: column;
  }

  .large-heading {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 38px;
  }

  .div-block-6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dogify-player {
    min-width: 300px;
    margin-bottom: 24px;
    left: 0%;
  }

  .dogify-player.alessio {
    inset: auto 0% 0%;
  }

  .section-5 {
    display: flex;
  }

  .section-6 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .updogherointeractive {
    top: 70%;
  }

  .updogeyewhite {
    top: 201px;
  }

  .spotify-player {
    justify-content: center;
    align-items: center;
    display: flex;
    inset: auto 0% 0%;
  }

  .spotify-player.alessio {
    margin-bottom: 28px;
    margin-left: 15px;
    margin-right: 10px;
    inset: auto 0% 0% auto;
    box-shadow: 0 0 0 3px #3d1087, -8px 8px #3d1087, 0 14px 20px 4px #0c031966;
  }

  .spotify-player.mikael {
    margin-bottom: 28px;
    margin-left: 15px;
    margin-right: 10px;
    inset: auto 0% 0% auto;
  }

  .intercom-button {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .intercom-messsage {
    margin-bottom: 84px;
  }

  .intercom-poof {
    margin-bottom: 0;
    margin-right: 0;
  }

  .intercom-poof._2 {
    margin-bottom: 70px;
  }

  .intercom-poof._3 {
    margin-bottom: 134px;
  }

  .intercom-poof._4 {
    margin-bottom: 96px;
  }

  .intercom-poof._5 {
    margin-bottom: 138px;
  }

  .intercom-poof._6 {
    margin-bottom: 73px;
  }

  .container-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 479px) {
  .hero-section {
    height: 80vh;
  }

  .image {
    bottom: -240px;
  }

  .heading-2.testimonial-headline {
    margin-top: 16px;
    margin-bottom: 40px;
  }

  .hero-cta {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 18px;
  }

  .hero-cta.long-text, .hero-cta.primary {
    margin-left: 0;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .div-block {
    padding-top: 80px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar {
    z-index: 100;
  }

  .heading-3 {
    font-size: 14px;
    line-height: 20px;
  }

  .image-2 {
    max-width: 160px;
  }

  .nav-menu {
    padding-top: 10px;
    padding-bottom: 8px;
    box-shadow: 0 1px #26170f1a, 0 1px 6px #26170f1a, 0 8px 40px #26170f33;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-logo-link {
    max-width: 200px;
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .section-2 {
    min-height: 60vh;
    padding-top: 30px;
  }

  .div-block-4 {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .testimonialsection {
    padding-bottom: 50px;
  }

  .testimonial-logo-container {
    flex-direction: column;
    align-items: center;
  }

  .text-span, .text-span-2 {
    font-size: 16px;
  }

  .paragraph-3 {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 16px;
    line-height: 24px;
  }

  .bold-text {
    font-size: 14px;
  }

  .div-block-5 {
    margin-bottom: -10px;
  }

  .large-heading {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 30px;
    line-height: 40px;
  }

  .dogify-player {
    transform: none;
  }

  .dogify-player.alessio, .dogify-player.mikael {
    display: flex;
  }

  .updogeyewhite {
    width: 200px;
    height: 200px;
    top: 118px;
    left: 38px;
  }

  .image-14 {
    width: 200px;
  }

  .bold-text-2 {
    font-size: 15px;
    line-height: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .headerwhatever {
    font-size: 22px;
  }
}

#w-node-badf5185-ed93-c867-8ab1-25cfa3285ec4-715cab58, #w-node-af4b1ed6-047d-f991-644b-6c78cd6a5751-715cab58, #w-node-c849e01c-fbeb-8984-88cd-b81605c9f361-715cab58, #w-node-c849e01c-fbeb-8984-88cd-b81605c9f365-715cab58 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Cooper';
  src: url('../fonts/CooperLtBTBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper';
  src: url('../fonts/CooperLtBTLightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper';
  src: url('../fonts/CooperLtBTBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cooper';
  src: url('../fonts/CooperLtBTLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}