:root {
  --black: #151515;
  --primary-1: #023040;
  --grey-4: #e3e3e3;
  --grey-1: #666;
  --haze: whitesmoke;
  --white: white;
  --hover-1: #064257;
  --grey-3: #d1d1d1;
  --primary-2: #79d69f;
  --hover-2: #89f0b3;
  --instagram: #f83f5a;
  --red: #ee3e54;
  --grey-2: #999;
  --green: #88ae45;
  --primary-3: #853f71;
  --primary-4: #665ba2;
  --twitter: #2aa3f0;
  --facebook: #3b5998;
}

.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;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

body {
  color: var(--black);
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Caladea, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 52px;
}

h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: Caladea, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
}

h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Caladea, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}

h5 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Caladea, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary-1);
  text-decoration: none;
}

img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

label {
  color: var(--black);
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: block;
}

figure {
  margin-bottom: 24px;
}

figcaption {
  border-bottom: 1px solid var(--grey-4);
  color: var(--grey-1);
  text-align: left;
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 12px;
  font-size: 13px;
  line-height: 20px;
}

.section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.section.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.section.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section.section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section.haze {
  background-color: var(--haze);
  padding-top: 60px;
  padding-bottom: 120px;
}

.section.haze.no-padding-top {
  padding-top: 120px;
  display: block;
}

.section.about-feature-section {
  padding-top: 120px;
  padding-bottom: 140px;
}

.section.about-feature-section .feature-image {
  height: clamp(240px, 24vw, 320px);
}

.section.top-image-section {
  color: var(--white);
  background-color: #000;
  padding-top: 180px;
  padding-bottom: 180px;
  overflow: hidden;
}

body.page-hunde .section.top-image-section,
body.page-katzen .section.top-image-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70vh;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.mask {
  overflow: hidden;
}

.section.hero-v1-section {
  z-index: 3;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 104px;
  display: flex;
}

.section.mask {
  color: #fff;
  background-color: #000000bd;
  padding-top: 180px;
  padding-bottom: 180px;
  overflow: hidden;
}

.section.primary-section {
  color: var(--white);
  background-color: var(--primary-1);
  overflow: hidden;
}

.wrapper {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.wrapper.nav-bar-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.button-primary {
  background-color: var(--primary-1);
  color: var(--white);
  text-align: center;
  border-style: none;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s, border-color 0.2s;
  display: flex;
}

.button-primary:hover {
  background-color: var(--hover-1);
}

.button-primary.small {
  height: 40px;
  padding: 8px 20px;
  font-size: 13px;
  line-height: 20px;
}

.button-primary.white {
  color: var(--black);
  background-color: #fff;
}

.button-primary.white:hover {
  background-color: var(--hover-1);
  color: var(--white);
}

.button-primary.tiny {
  height: 32px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
}

.button-primary.color-2 {
  background-color: var(--primary-2);
}

.button-primary.color-2:hover {
  background-color: var(--hover-1);
}

.button-primary.nav-button {
  color: var(--white);
  flex: none;
}

.button-primary.nav-button:hover {
  background-color: var(--hover-1);
}

.button-primary.button-secondary {
  background-color: var(--primary-2);
  color: var(--primary-1);
}

.button-primary.button-secondary:hover {
  background-color: var(--hover-2);
}

.button-primary.button-secondary.hero-button {
  display: flex;
}

.text-small {
  font-size: 13px;
  line-height: 20px;
}

.text-small.text-grey {
  margin-bottom: 15px;
}

.text-small.text-grey.left {
  text-align: left;
}

.nav-bar {
  z-index: 100;
  background-color: var(--white);
  justify-content: center;
  height: 80px;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 40px #0000001c;
}

.nav-link {
  color: var(--black);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  transition: background-color 0.4s;
}

.nav-link:hover {
  background-color: var(--haze);
}

.nav-link.w--current {
  color: var(--primary-1);
  background-color: var(--primary-2);
  font-weight: 700;
}

body.page-home .nav-menu a[href^="index.html"],
body.page-hunde .nav-menu a[href^="hundepension.html"],
body.page-katzen .nav-menu a[href^="katzenpension.html"],
body.page-pricing .nav-menu a[href^="pricing.html"],
body.page-contact .nav-menu a[href^="contact.html"] {
  color: var(--primary-1);
  background-color: var(--primary-2);
  font-weight: 700;
}

.nav-link.nav-dropdown {
  padding-right: 26px;
}

.utility-page-wrapper {
  background-color: var(--black);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.utility-page-content {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 570px;
  display: flex;
  position: relative;
}

.tooltip {
  z-index: 5;
  background-color: var(--hover-1);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 200px;
  max-width: 200px;
  margin-bottom: 16px;
  padding: 12px 16px;
  font-size: 11px;
  line-height: 14px;
  display: flex;
  position: absolute;
  bottom: 50%;
}

.haze {
  background-color: var(--haze);
}

.text-grey {
  color: var(--grey-1);
}

.text-grey.text-center {
  text-align: center;
  margin-bottom: 10px;
}

.text-grey.description {
  text-align: center;
  margin-bottom: 40px;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.intro.no-margin-bottom {
  margin-bottom: 0;
}

.intro.wide {
  max-width: 770px;
}

.intro.left {
  text-align: left;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.intro.left.margin-bottom {
  margin-bottom: 48px;
}

.intro.margin-bottom {
  margin-bottom: 80px;
}

.text-left {
  color: var(--white);
  text-align: left;
}

.text-label {
  color: var(--grey-1);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: inline-block;
}

.text-label.white {
  color: var(--white);
}

.link-white {
  color: #fff;
  text-decoration: none;
}

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

.brand {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.brand.w--current {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.change {
  background-color: #fff;
  border-radius: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 32px;
  display: flex;
  box-shadow: 0 15px 40px #0000001c;
}

.change-icon {
  background-color: var(--hover-1);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  position: relative;
}

.change-icon.fix {
  background-color: var(--instagram);
}

.nav-menu {
  flex: none;
  align-items: center;
  margin-right: auto;
  padding-left: 0;
  padding-right: 20px;
  display: flex;
}

.hidden {
  margin-left: 0;
  display: none;
}

.no-padding-top {
  padding-top: 0;
}

.page-wrapper {
  width: 100%;
  position: relative;
}

.navigation {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
  display: flex;
}

.bg-elements {
  z-index: 0;
  opacity: 0.05;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  height: 100%;
  min-height: 640px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.pricing-v1-feature {
  color: var(--grey-1);
  cursor: help;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  position: relative;
}

.pricing-v1-feature:hover {
  background-color: var(--haze);
  color: var(--hover-1);
}

.info {
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 4px;
  padding: 4px;
  transition: border 0.3s;
  display: flex;
  position: relative;
}

.info:hover {
  border-color: red;
}

.form-error {
  color: var(--red);
  text-align: center;
  background-color: #ee3e541f;
  border: 1px solid #ee3e5480;
  border-radius: 7px;
  margin-top: 16px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 20px;
}

.form-error.white {
  background-color: var(--white);
  border-color: #0000;
}

.input {
  background-color: var(--haze);
  border: 1px solid #0000;
  border-radius: 7px;
  height: 48px;
  margin-bottom: 0;
  padding: 7px 20px 8px;
  transition: box-shadow 0.4s, opacity 0.2s, color 0.4s, background-color 0.4s,
    border-color 0.4s;
}

.input:hover,
.input:focus {
  border-color: var(--primary-1);
  background-color: var(--white);
}

.input::placeholder {
  color: var(--grey-2);
}

.input.text-area {
  height: auto;
  min-height: 200px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.contact-form .input.text-area {
  height: 100%;
  min-height: 200px;
}

.input.white {
  background-color: var(--white);
}

.input.white.left {
  text-align: left;
}

.form-success {
  color: var(--green);
  background-color: #88ae451f;
  border: 1px solid #88ae4580;
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 20px;
}

.form-success.white {
  background-color: #fff;
  border-color: #0000;
}

.link {
  box-shadow: inset 0 -2px 0 0 var(--grey-4);
  color: var(--black);
  text-align: left;
  align-items: center;
  margin-top: -8px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link.blog-intro-link {
  margin-top: 0;
  margin-right: 8px;
}

.link.google-reviews-link {
  margin-top: 16px;
  margin-right: 0;
}

.nav-dropdown-icon {
  color: var(--black);
  margin-right: 10px;
}

.dropdown-list.w--open {
  background-color: #fff;
  border-radius: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-left: -4px;
  padding-top: 10px;
  padding-bottom: 10px;
  left: 0;
  box-shadow: 0 6px 24px #30364d38;
}

.nav-dropdown-link {
  color: var(--black);
  padding: 12px 20px;
  font-size: 14px;
  line-height: 20px;
  transition: color 0.1s, background-color 0.1s;
}

.nav-dropdown-link:hover {
  background-color: var(--haze);
}

.nav-dropdown-link.w--current {
  color: var(--black);
  font-weight: 700;
}

.dropdown-corner {
  z-index: 1;
  background-color: #fff;
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  position: absolute;
  top: -4px;
  left: 33px;
  transform: rotate(45deg);
}

.dropdown-corner.padding {
  left: 89px;
}

.dropdown-bridge {
  z-index: 1;
  height: 8px;
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
}

.inline-links {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.inline-links.margin-top {
  margin-top: 80px;
}

.review-v7 {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
}

.review-v9 {
  z-index: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 12px;
  display: flex;
  position: relative;
}

.icon {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 24px;
  display: flex;
}

.pricing-v2-card {
  z-index: 1;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  flex-direction: column;
  flex: 1;
  align-items: center;
  padding-bottom: 0;
  display: flex;
  position: relative;
  box-shadow: 0 15px 40px #0000001c;
}

.pricing-v2-tag {
  z-index: 1;
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  color: var(--grey-1);
  text-align: left;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  font-size: 21px;
  line-height: 28px;
  display: flex;
  position: relative;
}

.pricing-v2-card-info {
  flex-direction: column;
  flex: 1;
  width: 100%;
  padding: 30px 48px 40px;
  display: flex;
}

.video-link {
  border: 1px solid var(--grey-3);
  color: var(--hover-1);
  border-radius: 17px;
  align-items: center;
  height: 34px;
  margin-top: 24px;
  padding-left: 4px;
  padding-right: 13px;
  text-decoration: none;
  display: flex;
}

.top-bar {
  z-index: 10;
  background-color: var(--hover-1);
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: auto;
  min-height: 40px;
  padding: 6px 32px;
  font-size: 12px;
  line-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.small-message-text {
  margin-right: 12px;
}

.message {
  background-color: var(--hover-1);
  color: var(--white);
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  display: flex;
}

.text-highlighted {
  color: var(--primary-1);
  background-color: #79d69f80;
  border-radius: 3px;
  padding-left: 4px;
  padding-right: 4px;
  font-weight: 700;
  display: inline-block;
}

.layouts {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  perspective: 1000px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 1600px;
  margin-bottom: -24px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3%;
  padding-right: 3%;
  display: grid;
  position: relative;
  overflow: hidden;
}

.layout-box {
  flex-direction: column;
  align-items: center;
  padding: 40px 8%;
  display: flex;
}

.layout {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  border-radius: 8px;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  transition: box-shadow 0.4s, transform 0.4s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px #0000001c;
}

.layout:hover {
  box-shadow: 0 0 0 1px var(--grey-4);
  transform: translate(0, 4px);
}

.button-icon {
  float: left;
  width: 20px;
  margin-right: 10px;
}

.faq-question {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 8px;
  display: flex;
}

.faq-top-link {
  color: var(--grey-3);
  font-size: 12px;
  text-decoration: underline;
  display: inline-block;
}

.faq-top-link:hover {
  color: var(--hover-1);
  text-decoration: underline;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 24px;
  text-align: left;
  flex-direction: column;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: grid;
}

.menu-icon-line-top,
.menu-icon-line-bottom {
  background-color: var(--black);
  height: 2px;
}

.menu-icon {
  float: right;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.menu-icon-line-middle {
  background-color: var(--black);
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.review-v1 {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  box-shadow: 0 15px 40px #0000001c;
}

.review-v1-text {
  color: var(--black);
  flex: 1;
  margin: 24px 32px 0;
  font-size: 17px;
  line-height: 28px;
}

.review-v1-author {
  border-top: 0px solid var(--grey-4);
  border-bottom: 1px solid #e2e2e2;
  flex-flow: column;
  flex: 1;
  align-items: center;
  margin: 0;
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.review-v1-info {
  flex: 0 auto;
  width: 100%;
}

.review-v1-name {
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.review-v1-company {
  color: var(--grey-2);
  font-size: 13px;
  line-height: 20px;
}

.main-grid {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  perspective: 2000px;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.dots {
  opacity: 0.12;
  background-image: url("../images/circle-pattern-white.svg");
  background-position: 0 0;
  background-size: 12px;
  width: 297px;
  height: 118px;
  position: absolute;
  inset: 25% auto auto 3%;
}

.circle-small {
  opacity: 0.08;
  width: 8vw;
  position: absolute;
  inset: 12% 7% auto auto;
}

.pricing-v2-billing {
  border-left: 1px solid var(--grey-4);
  flex: 1;
  margin-left: 16px;
  padding: 4px 0 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.pricing-v2-billing.thin {
  color: var(--grey-1);
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.sidebar-author-link {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.card-button {
  background-color: var(--white);
  box-shadow: inset 0 1px 0 0 var(--grey-4);
  color: var(--black);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding-bottom: 1px;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.4s;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.card-button:hover {
  color: var(--white);
}

.accordion-header {
  color: #222;
  cursor: pointer;
  justify-content: flex-end;
  align-items: center;
  min-height: 72px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.accordion-item {
  border-top: 1px solid var(--grey-4);
  border-bottom: 1px solid var(--grey-4);
  text-align: left;
  margin-bottom: -1px;
  transition: box-shadow 0.4s, background-color 0.4s;
  display: block;
  overflow: hidden;
}

.accordion-text {
  color: var(--grey-1);
  padding-top: 0;
  padding-bottom: 32px;
}

.accordion-text.without-header {
  padding-top: 32px;
}

.accordion-heading {
  flex: 1;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 16px;
  font-family: Caladea, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

body.page-datasecurity .accordion-info {
  display: block !important;
  height: auto !important;
  opacity: 1 !important;
}

body.page-datasecurity .section.section-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.text-quote {
  margin-top: 8px;
  font-size: 21px;
  line-height: 32px;
}

.accordion-plus {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  display: flex;
  position: absolute;
  right: 0;
}

.question-simple {
  border-bottom: 1px solid var(--grey-4);
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: -1px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 4%;
  display: flex;
}

.question-simple.first {
  border-top: 1px solid var(--grey-4);
}

.mini-gallery {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: 80px 80px 80px 80px 80px;
  grid-template-columns: 1fr 1fr;
}

.gallery-photo {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.gallery-photo._1 {
  box-sizing: content-box;
  aspect-ratio: auto;
  vertical-align: baseline;
  object-fit: contain;
  background-image: url("../images/IMG_7733.JPG");
  background-image: image-set(
    url("../images/IMG_7733-800.avif") type("image/avif") 1x,
    url("../images/IMG_7733-1600.avif") type("image/avif") 2x,
    url("../images/IMG_7733-800.webp") type("image/webp") 1x,
    url("../images/IMG_7733-1600.webp") type("image/webp") 2x,
    url("../images/IMG_7733-800.jpg") type("image/jpeg") 1x,
    url("../images/IMG_7733-1600.jpg") type("image/jpeg") 2x
  );
  background-position: 0 0;
  background-size: cover;
  height: 100%;
  overflow: hidden;
}

.gallery-photo._4 {
  background-image: url("../images/4_5_3455672161_resized_2_1.jpg");
  background-image: image-set(
    url("../images/4_5_3455672161_resized_2_1-500.avif") type("image/avif") 1x,
    url("../images/4_5_3455672161_resized_2_1-500.webp") type("image/webp") 1x,
    url("../images/4_5_3455672161_resized_2_1-500.jpg") type("image/jpeg") 1x
  );
}

.gallery-photo._3 {
  object-fit: fill;
  background-image: url("../images/Hundesitter-Lise.jpg");
  background-image: image-set(
    url("../images/Hundesitter-Lise-500.avif") type("image/avif") 1x,
    url("../images/Hundesitter-Lise-500.webp") type("image/webp") 1x,
    url("../images/Hundesitter-Lise-500.jpg") type("image/jpeg") 1x
  );
}

.gallery-photo._2 {
  background-image: url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395.jpg");
  background-image: image-set(
    url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395-800.avif")
      type("image/avif") 1x,
    url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395-1600.avif")
      type("image/avif") 2x,
    url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395-800.webp")
      type("image/webp") 1x,
    url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395-1600.webp")
      type("image/webp") 2x,
    url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395-800.jpg")
      type("image/jpeg") 1x,
    url("../images/man-standing-beside-people-sitting-beside-table-with-laptops-3184395-1600.jpg")
      type("image/jpeg") 2x
  );
}

.gallery-hover {
  z-index: 2;
  color: var(--white);
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.gallery-band {
  margin-top: 32px;
  padding-top: 8px;
  padding-bottom: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  align-items: center;
}

.gallery-band::-webkit-scrollbar {
  display: none;
}

.section.gallery-band-section {
  background-color: var(--primary-1);
  padding-top: 72px;
  padding-bottom: 72px;
  padding-left: 0;
  padding-right: 0;
  align-items: stretch;
}

.section.gallery-band-section.home-gallery-section {
  background-color: var(--primary-1);
}

.section.gallery-band-section .gallery-band {
  margin-top: 0;
  width: 100%;
}

.gallery-band-track {
  gap: 0;
  display: inline-flex;
  min-width: 100%;
  flex: 0 0 auto;
}

.gallery-band-sequence {
  flex: 0 0 auto;
  gap: 16px;
  padding-right: 16px;
  display: flex;
}

.gallery-band-sequence.is-duplicate {
  pointer-events: auto;
}

.gallery-band-item-duplicate {
  cursor: pointer;
}

.gallery-band-item {
  border-radius: 16px;
  flex: none;
  width: 330px;
  height: 225px;
  display: block;
  position: relative;
  overflow: hidden;
}

.gallery-band-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes gallery-band-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-band-track {
    animation: none;
    transform: none;
  }
}

.feature-card {
  z-index: 1;
  background-color: var(--white);
  text-align: center;
  border-radius: 20px;
  flex-direction: column;
  flex: 270px;
  align-items: center;
  padding: 20px 20px 32px;
  display: flex;
  position: relative;
  box-shadow: 0 8px 24px #0000001a;
}

.feature-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
  transition: transform 0.25s ease;
  transform-origin: center;
}

.feature-card-link .feature-card {
  height: 100%;
  transition: box-shadow 0.25s ease;
}

.feature-card-link:hover,
.feature-card-link:focus-visible {
  transform: translateY(-6px) scale(1.02);
}

.feature-card-link:hover .feature-card,
.feature-card-link:focus-visible .feature-card {
  box-shadow: 0 14px 32px #00000026;
}

.feature-card.small {
  height: 100%;
  padding: 32px;
}

.feature-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  min-height: 260px;
  margin-bottom: 24px;
  display: block;
}

.nav-right {
  z-index: 1;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.top-bar-close {
  cursor: pointer;
  background-color: #0003;
  background-image: url("../images/x-white_1.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  width: 40px;
  height: 100%;
  transition: background-color 0.4s;
  position: absolute;
  right: 0;
}

.top-bar-close:hover {
  background-color: var(--primary-1);
}

.small-message {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 8px 20px;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-button {
  background-color: var(--grey-4);
  background-image: url("../images/home-color.svg");
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 16px;
  border-radius: 16px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 78px;
  height: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.back-to-top,
.top {
  height: 0;
}

.top-button {
  z-index: 10;
  background-color: var(--primary-1);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 16px;
  transition: background-color 0.3s;
  display: flex;
  position: fixed;
  inset: auto 16px 16px auto;
}

.top-button:hover {
  background-color: var(--hover-1);
}

.divider {
  background-color: var(--primary-1);
  border-radius: 1.5px;
  width: 88px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 16px;
}

.divider.page-intro-divider {
  background-color: var(--white);
}

.divider.no-margin-bottom {
  margin-bottom: 0;
}

.divider.no-margin-bottom.white {
  background-color: var(--white);
}

.page-heading {
  margin-bottom: 20px;
}

.page-intro-left {
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  max-width: 570px;
  margin-top: -16px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.page-intro-subheading {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
}

.hero-cta {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.subscribe {
  width: 400px;
  max-width: 100%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 8px;
}

.dot-divider {
  background-color: var(--grey-3);
  border-radius: 50%;
  width: 3px;
  height: 3px;
  margin-left: 6px;
  margin-right: 6px;
}

.dot-divider.white {
  background-color: #ffffff4d;
}

.pricing-v2-name {
  z-index: 3;
  border-bottom: 0px solid var(--grey-4);
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
}

.footer-bottom-left {
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-bottom-right {
  text-align: right;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.text-color-1 {
  color: var(--primary-2);
}

.play-button {
  z-index: 3;
  border: 2px solid var(--white);
  background-color: var(--primary-1);
  background-image: url("../images/play-white.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 28px;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  transition: transform 0.4s;
  position: relative;
  box-shadow: 0 2px 8px #0000001c;
}

.play-button:hover {
  transform: scale(1.08);
}

.play-button.absolute {
  z-index: 3;
  position: absolute;
}

.play-button.tiny {
  background-size: 16px;
  border-width: 1px;
  width: 28px;
  height: 28px;
}

.play-button.small {
  background-size: 24px;
  width: 56px;
  height: 56px;
}

.pricing-features-left {
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-right: 24px;
  display: grid;
}

.pricing-features-right {
  grid-column-gap: 30px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding-left: 24px;
  display: grid;
}

.link-arrow {
  background-image: url("../images/right.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-bottom: -1px;
  margin-left: 3px;
  margin-right: -3px;
  font-size: 16px;
}

.hero-v5-intro {
  z-index: 1;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.image-4 {
  margin-bottom: 16px;
}

.hero-subline {
  margin-top: 0;
}

.hero-slider {
  color: #fff;
  object-fit: fill;
  background-color: #000;
  height: 82vh;
  min-height: 680px;
  max-height: 56vw;
}

.list-dropdown {
  z-index: 30;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -8px;
  padding-bottom: 8px;
  display: flex;
  position: relative;
}

.post {
  background-color: var(--white);
  border-radius: 24px;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 8%;
  position: relative;
  top: -200px;
  box-shadow: 0 15px 40px #0000001c;
}

.contact-v2 {
  grid-column-gap: 64px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.contact-v2-media {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 368px;
}

.side-nav-link {
  border: 4px solid var(--white);
  background-color: #574b8a4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: box-shadow 0.4s, border-color 0.4s, background-color 0.4s;
  display: flex;
  position: relative;
}

.side-nav-link:hover {
  background-color: #574b8a80;
}

.side-nav-link.w--current {
  background-color: var(--hover-1);
  width: 16px;
  height: 16px;
  transition: border-radius 0.4s, border-color 0.4s, background-color 0.4s;
}

.top-button-icon {
  margin: 0 auto 1px;
  position: relative;
  transform: rotate(180deg);
}

.bg-image {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 120%;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.bg-image._1 {
  opacity: 0.95;
}

.icon-box {
  background-color: var(--hover-1);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: flex;
}

.icon-box.color-1 {
  background-color: var(--primary-1);
}

.icon-box.color-2 {
  background-color: var(--primary-2);
}

.icon-box.color-3 {
  background-color: var(--primary-3);
}

.icon-box.color-4 {
  background-color: var(--primary-4);
}

.moving-bg {
  z-index: 0;
  object-fit: cover;
  width: 104%;
  max-width: none;
  height: 104%;
  display: block;
  position: absolute;
  inset: -2%;
}

.moving-bg.page-header-image {
  opacity: 0.98;
}

body.page-hunde .moving-bg.page-header-image {
  filter: brightness(0.8);
}

.moving-bg.cta-image-1 {
  opacity: 0.82;
  background-color: #00000087;
}

.moving-bg._404-bg {
  opacity: 0.95;
}

.intro-left {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.intro-left.team-left-info {
  padding-top: 48px;
  padding-right: 8%;
  position: sticky;
  top: 104px;
}

.media-rounded {
  z-index: 2;
  border-radius: 24px;
  position: relative;
}

.media-container {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.side-blocks .media-container {
  width: 100%;
}

.side-blocks .media-container picture {
  width: 100%;
  display: block;
}

.media-decoration {
  z-index: 0;
  background-color: var(--haze);
  border-radius: 40px;
  width: 90%;
  height: 90%;
  position: absolute;
  inset: -32px -32px auto auto;
}

.media-decoration.top-left {
  inset: -32px auto auto -32px;
}

.media-decoration.bottom-right {
  inset: auto -32px -32px auto;
}

.side-blocks {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.side-content {
  flex-direction: column;
  align-items: flex-start;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 15%;
  display: flex;
}

.media-side-left {
  z-index: 2;
  object-fit: cover;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  width: 100%;
  height: 100%;
  position: relative;
}

.link-underline {
  z-index: 1;
  background-color: var(--primary-2);
  width: 50%;
  height: 2px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.feature-cards-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.usp-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-columns: 1fr;
  display: grid;
}

.usp-grid .feature-card {
  text-align: left;
  align-items: flex-start;
}

.features-4 {
  grid-column-gap: 32px;
  grid-row-gap: 64px;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.feature-centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.feature-centered.feature-reveal {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.feature-centered.feature-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-v2-card.pricing-card-reveal {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.feature-card.feature-card-reveal {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.pricing-v2-card.pricing-card-reveal.is-visible,
html.w-mod-js:not(.w-mod-ix) .pricing-v2-card.pricing-card-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.feature-card-reveal.is-visible,
html.w-mod-js:not(.w-mod-ix) .feature-card.feature-card-reveal.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.price-tag-top {
  color: var(--white);
  font-size: 18px;
  font-family: Caladea, sans-serif;
  font-weight: 700;
  padding-bottom: 20px;
}

.card-button-hover {
  background-color: var(--primary-1);
  height: 6px;
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.card-button-text {
  z-index: 1;
  position: relative;
}

.video-section {
  background-image: linear-gradient(#00000026, #00000026);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  max-height: none;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.hero-v3 {
  z-index: 2;
  color: var(--white);
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 78vh;
  max-height: 50vw;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.anchor-sticky-info {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 184px;
}

.feature-side-cards-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

._3-blocks-intro {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 400px auto auto;
  margin-bottom: 60px;
}

.blog-intro-text {
  color: var(--grey-1);
  margin-top: 4px;
}

._3d-transform-box {
  perspective: 1000px;
  perspective-origin: 50%;
  transform-origin: 50%;
}

.accordion-toggle {
  justify-content: space-between;
  align-items: flex-start;
  padding: 21px 0;
  transition: color 0.4s;
  display: flex;
}

.accordion-toggle:hover {
  color: var(--primary-3);
}

.plus-line-h {
  background-color: var(--black);
  width: 100%;
  height: 2px;
  position: absolute;
}

.plus-line-v {
  background-color: var(--black);
  width: 2px;
  height: 100%;
  position: absolute;
}

.contact-list-icon {
  width: 20px;
  margin-right: 6px;
}

.contact-list-name {
  padding-left: 26px;
}

.contact-list-item {
  align-items: flex-start;
  display: flex;
}

.contact-v2-card {
  border-radius: 20px;
  flex-direction: column;
  min-height: 480px;
  padding: 20px;
  display: flex;
  box-shadow: 0 15px 40px #0000001c;
}

.contact-v2-info {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  margin-top: 8px;
  padding: 16px 12px;
}

.contact-list {
  grid-column-gap: 16px;
  grid-row-gap: 12px;
  text-align: left;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: 4px;
  font-size: 13px;
  line-height: 20px;
  display: grid;
}

.contact-v2-form {
  width: 100%;
  margin-bottom: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  display: flex;
}

.contact-form-heading {
  margin-bottom: 48px;
  font-family: Caladea, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.team {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team-v1-photo {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  width: 144px;
  height: 144px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.text-color-3 {
  color: var(--primary-2);
}

.footer-insta-block {
  border-radius: 4px;
  width: 100%;
  padding: 50%;
  position: relative;
  overflow: hidden;
}

.gallery-slider {
  height: 38vw;
}

.gallery-slider-button {
  background-color: var(--white);
  color: var(--black);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 20px;
  transition: box-shadow 0.2s;
  display: flex;
  inset: auto 36px 36px auto;
  box-shadow: 0 1px 2px #00000024;
}

.gallery-slider-button:hover {
  box-shadow: 0 0 0 4px #00000026, 0 8px 16px #0000001a;
}

.gallery-slider-button.left {
  right: 96px;
}

.gallery-slide {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery-slider-nav {
  height: 36px;
  font-size: 7px;
  display: none;
}

.gallery-slider-gradient {
  z-index: 1;
  opacity: 0.7;
  background-image: linear-gradient(#0000, #000);
  height: 240px;
  position: absolute;
  inset: auto 0% 0%;
}

.galley-slide-info {
  z-index: 2;
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  max-width: 600px;
  margin-bottom: 20px;
  margin-left: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.gallery-slide-number {
  height: 100%;
  margin-right: 20px;
  font-family: Caladea, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 36px;
}

.gallery-slider-text {
  border-left: 1px solid #ffffff80;
  padding-left: 20px;
}

.floating-element {
  z-index: 5;
  justify-content: center;
  align-items: center;
  padding: 8px;
  display: flex;
  position: absolute;
}

.floating-element._2 {
  margin-bottom: 12%;
  margin-right: -72px;
  inset: auto 0 0 auto;
}

.checkbox {
  background-color: var(--haze);
  box-shadow: none;
  border-style: none;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  margin-left: 0;
  margin-right: 8px;
}

.checkbox.w--redirected-checked {
  background-color: var(--primary-2);
  box-shadow: none;
  background-position: 50%;
  background-size: 15px;
  border-color: #0000;
}

.quote-author {
  border-top: 1px solid var(--grey-4);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  margin-top: 24px;
  margin-bottom: -8px;
  padding: 16px 20px;
  display: flex;
}

.quote-author-name {
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.4s;
  display: flex;
}

.quote-author-info {
  color: var(--grey-1);
  font-size: 13px;
  line-height: 20px;
}

.quote-author-photo {
  object-fit: cover;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

.mini-video {
  background-color: var(--white);
  color: var(--black);
  border-radius: 11px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 8px;
  padding: 12px;
  transition: all 0.4s;
  display: flex;
  box-shadow: 0 6px 20px #0000001c;
}

.mini-video:hover {
  box-shadow: 0 0 0 1px var(--grey-4);
  transform: translate(0, 3px);
}

.mini-video-preview {
  background-color: var(--black);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.mini-video-preview-image {
  object-fit: cover;
  width: 80px;
  height: 60px;
}

.mini-video-text {
  margin-left: 8px;
  margin-right: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.price-v2 {
  color: var(--primary-2);
  font-family: Caladea, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 32px;
}

.pricing-3-blocks {
  grid-column-gap: 24px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.team-member-bg-wrapper {
  justify-content: center;
  align-items: center;
  height: 32vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-profile-text {
  color: var(--white);
  background-color: #00000080;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.team-v2-link {
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 100%;
  padding-top: 50%;
  padding-bottom: 50%;
  position: relative;
  overflow: hidden;
}

.side-testimonials {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.side-review-blocks {
  grid-column-gap: 16px;
  grid-row-gap: 48px;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.side-review-blocks.second {
  margin-left: 48px;
  padding-top: 48px;
}

.map-big {
  border-radius: 24px;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.footer-v3-links {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-right: 16px;
  display: flex;
}

.footer-v3-nav {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 15px;
  display: flex;
}

.footer-v1 {
  background-color: var(--primary-1);
  color: var(--white);
  padding-top: 60px;
}

.footer-v1-grid {
  grid-column-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 370px 1fr 1fr 270px;
  margin-bottom: 64px;
}

.footer-v1-info {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-right: 12%;
  display: flex;
}

.footer-v1-brand {
  color: var(--white);
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -8px;
  padding: 8px 20px 8px 0;
  font-family: Caladea, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  display: flex;
}

.footer-v1-description {
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-v1-block {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

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

.footer-link {
  color: var(--white);
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
}

.footer-link-underlined {
  text-decoration: underline;
  margin-top: 8px;
}

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

.footer-text {
  color: #ffffffcc;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.footer-text-strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.footer-hours {
  color: #ffffffcc;
  column-gap: 12px;
  row-gap: 4px;
  grid-template-columns: auto 1fr;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  font-variant-numeric: tabular-nums;
  display: grid;
}

.footer-hours-label {
  align-self: start;
}

.footer-hours-time {
  min-width: 0;
}

.footer-contact {
  color: var(--white);
  align-items: flex-start;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.footer-contact-icon {
  height: 16px;
  margin-top: 3px;
  margin-right: 8px;
}

.footer-instagram {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
  display: grid;
}

.footer-insta-block {
  border-radius: 4px;
  width: 100%;
  padding: 50%;
  position: relative;
  overflow: hidden;
}

.footer-insta-photo {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0%;
}

.footer-link-box {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-link-badge {
  background-color: var(--primary-3);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-left: 10px;
  padding: 4px 5px 4px 6px;
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  transition: background-color 0.2s;
}

.footer-link-badge:hover {
  background-color: var(--primary-1);
}

.footer-bottom {
  color: #ffffff80;
  border-top: 1px solid #ffffff29;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.social-icons-small {
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-link-small {
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  transition: background-color 0.4s;
  display: flex;
}

.social-link-small:hover {
  background-color: var(--primary-1);
}

.social-icon-small {
  width: 16px;
}

.feature-card-info {
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.feature-card-info h5 {
  font-size: 26px;
  line-height: 32px;
}

.intro-hero {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
  max-height: 56vw;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-instagram-hover {
  z-index: 1;
  background-color: #00000080;
  background-image: url("../images/instagram-white.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 16px;
  height: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.image {
  box-sizing: content-box;
  aspect-ratio: auto;
  object-fit: cover;
}

._1 {
  background-image: url("../images/IMG_7733.JPG");
  background-image: image-set(
    url("../images/IMG_7733-800.avif") type("image/avif") 1x,
    url("../images/IMG_7733-1600.avif") type("image/avif") 2x,
    url("../images/IMG_7733-800.webp") type("image/webp") 1x,
    url("../images/IMG_7733-1600.webp") type("image/webp") 2x,
    url("../images/IMG_7733-800.jpg") type("image/jpeg") 1x,
    url("../images/IMG_7733-1600.jpg") type("image/jpeg") 2x
  );
  background-position: 0 0;
  background-size: cover;
}

._2.gallery-photo {
  background-image: url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung.jpg");
  background-image: image-set(
    url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung-500.avif")
      type("image/avif") 1x,
    url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung-800.avif")
      type("image/avif") 2x,
    url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung-500.webp")
      type("image/webp") 1x,
    url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung-800.webp")
      type("image/webp") 2x,
    url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung-500.jpg")
      type("image/jpeg") 1x,
    url("../images/Der-perfekte-Hundesitter-tibeo-hundebetreuung-800.jpg")
      type("image/jpeg") 2x
  );
}

.div-block {
  background-color: #0000005e;
  position: absolute;
  inset: 0%;
}

.image-5 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-block-2 {
  flex: 0 1 360px;
  max-width: 360px;
  margin-top: 0;
}

.white {
  text-align: center;
}

.white.description {
  color: var(--white);
  font-family: Caladea, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
  padding-bottom: 10px;
}

.opening-hours-note {
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

.opening-hours-list {
  grid-row-gap: 8px;
  display: grid;
  justify-items: stretch;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.opening-hours-row {
  grid-column-gap: 12px;
  grid-template-columns: 6ch 13ch;
  align-items: baseline;
  display: grid;
  width: 100%;
}

.opening-hours-label,
.opening-hours-time {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.opening-hours-label {
  text-align: left;
}

.opening-hours-time {
  font-variant-numeric: normal;
  text-align: right;
}

.flex-block {
  justify-content: center;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.image-6,
.image-7 {
  padding-left: 90px;
  padding-right: 90px;
}

.image-8 {
  padding-left: 75px;
  padding-right: 75px;
}

.image-9 {
  padding-left: 60px;
  padding-right: 60px;
}

.wrapper-animal-icon {
  justify-content: center;
  align-items: flex-end;
  min-height: 160px;
  margin-bottom: 10px;
  display: flex;
}

.div-block-7 {
  border-bottom: 0 solid #e2e2e2;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 24px;
  display: flex;
}

.div-block-8 {
  flex: 1;
}

.div-block-9 {
  display: flex;
}

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

@media screen and (min-width: 1440px) {
  img {
    object-fit: cover;
  }

  .mini-gallery.rooms {
    grid-template-columns: 1fr 1fr;
  }

  .media-container {
    justify-content: center;
    align-items: center;
  }

  .image-5 {
    height: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 48px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h5 {
    font-size: 17px;
  }

  p {
    margin-bottom: 24px;
  }

  .section,
  .section.top-image-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.top-image-section {
    min-height: 60vw;
    height: 70vh;
  }

  .section.about-feature-section {
    padding-top: 96px;
    padding-bottom: 112px;
  }

  .section.hero-v1-section {
    padding-top: 80px;
    padding-bottom: 24px;
  }

  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wrapper.nav-bar-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .button-primary.button-secondary.hero-button {
    display: flex;
  }

  .nav-bar {
    height: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link {
    background-color: #fff;
    border-radius: 0;
    margin-bottom: -1px;
    padding: 16px 24px;
  }

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

  .nav-link.w--current {
    color: var(--primary-1);
    background-color: var(--primary-2);
  }

  .no-margin-bottom,
  .intro.no-margin-bottom {
    margin-bottom: 0;
  }

  .intro.wide {
    max-width: 670px;
  }

  .intro.margin-bottom {
    margin-bottom: 64px;
  }

  .brand {
    padding-left: 16px;
    padding-right: 16px;
  }

  .change {
    padding: 24px;
  }

  .nav-menu {
    border-bottom: 1px solid var(--grey-4);
    background-color: var(--white);
    max-height: 90vh;
    margin-right: 0;
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
    overflow: scroll;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .navigation {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 0;
  }

  .bg-elements {
    min-height: 420px;
  }

  .info {
    flex: none;
    display: none;
  }

  .input {
    box-shadow: inset 0 0 #0000;
  }

  .link {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 13px;
  }

  .link.blog-intro-link {
    margin-right: 0;
    position: static;
  }

  .nav-dropdown-icon {
    color: var(--grey-3);
    margin-right: 24px;
    font-size: 15px;
  }

  .dropdown-list.w--open {
    z-index: 1;
    background-color: var(--white);
    border-radius: 0;
    margin-top: -1px;
    margin-left: 0;
    padding: 0 16px 8px;
    position: relative;
    box-shadow: 0 1px #ffffff1f;
  }

  .nav-dropdown-link {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
  }

  .nav-dropdown-link:hover {
    background-color: #0000;
  }

  .nav-dropdown-link.w--current {
    color: var(--hover-1);
  }

  .dropdown-corner,
  .dropdown-bridge {
    display: none;
  }

  .pricing-v2-card {
    flex: 0 auto;
  }

  .small-message-text {
    flex: 1;
  }

  .message {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .menu-button.w--open {
    color: var(--hover-1);
    background-color: #0000;
  }

  .layouts {
    border-radius: 0;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
  }

  .layout-box {
    padding: 8%;
  }

  .layout {
    overflow: hidden;
  }

  .main-grid {
    grid-column-gap: 16px;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .dots {
    height: 81px;
    top: 34%;
    bottom: -10%;
    left: -14%;
  }

  .circle-small {
    width: 10vw;
    top: 20%;
    right: 4%;
  }

  .pricing-v2-billing {
    flex: 0 auto;
    font-size: 14px;
    font-weight: 700;
  }

  .pricing-v2-billing.thin {
    -webkit-text-decoration-skip-ink: auto;
    text-decoration-skip-ink: auto;
    font-size: 13px;
    font-weight: 400;
    text-decoration: underline;
  }

  .question-simple {
    padding-right: 0;
  }

  .mini-gallery {
    grid-template-rows: 12vw 12vw 12vw 12vw 12vw;
  }

  .feature-card {
    border-radius: 16px;
    padding: 16px 16px 28px;
  }

  .feature-image {
    border-radius: 6px;
  }

  .nav-right {
    display: none;
  }

  .top-bar-close {
    right: 0;
  }

  .small-message {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-button {
    width: 32px;
  }

  .top-button {
    bottom: 12px;
    right: 12px;
  }

  .divider.page-intro-divider {
    margin-bottom: 8px;
  }

  .play-button {
    background-size: 24px;
    width: 64px;
    height: 64px;
  }

  .pricing-features-left {
    padding-right: 0;
  }

  .pricing-features-right {
    padding-left: 0;
  }

  .hero-v5-intro {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero-slider {
    height: 63vw;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
  }

  .post {
    border-radius: 20px;
    line-height: 20px;
    top: -80px;
  }

  .contact-v2 {
    grid-column-gap: 32px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-v2-media {
    flex: 0 auto;
    height: 54vw;
  }

  .icon-box {
    width: 56px;
    height: 56px;
  }

  .intro-left {
    z-index: 2;
    text-align: center;
    align-items: center;
    position: relative;
  }

  .intro-left.team-left-info {
    text-align: center;
    align-items: center;
    padding-top: 0;
    padding-right: 0;
    position: static;
  }

  .media-rounded {
    border-radius: 20px;
  }

  .media-decoration {
    border-radius: 32px;
    top: -24px;
    right: -24px;
  }

  .media-decoration.top-left {
    top: -24px;
    left: -24px;
  }

  .media-decoration.bottom-right {
    bottom: -24px;
    right: -24px;
  }

  .side-blocks {
    grid-row-gap: 48px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .side-content {
    text-align: center;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
  }

  .media-side-left {
    border-radius: 0;
  }

  .feature-cards-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 20%;
    padding-right: 20%;
  }

  .usp-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr 1fr;
  }

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

  .card-button-hover {
    display: none;
  }

  .video-section {
    height: 70vh;
    min-height: 60vw;
    max-height: none;
  }

  .hero-v3 {
    height: auto;
    min-height: 64vw;
    max-height: none;
  }

  .anchor-sticky-info {
    text-align: center;
    align-items: center;
    position: static;
  }

  ._3-blocks-intro {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 48px;
    padding-left: 20%;
    padding-right: 20%;
    display: flex;
  }

  .blog-intro-text {
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
  }

  .contact-v2-info {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-v2-form {
    margin-top: 32px;
    padding-bottom: 0;
    padding-left: 12%;
    padding-right: 12%;
  }

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

  .gallery-slider {
    height: 64vw;
  }

  .gallery-slider-button {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .gallery-slider-button.left {
    right: 76px;
  }

  .galley-slide-info {
    margin-top: 15px;
    margin-bottom: 12px;
    margin-left: 19px;
    padding-top: 8px;
    padding-bottom: 8px;
    right: 144px;
  }

  .gallery-slide-number {
    margin-right: 16px;
    font-size: 36px;
    line-height: 28px;
  }

  .gallery-slider-text {
    padding-left: 16px;
    font-size: 13px;
    line-height: 20px;
  }

  .pricing-3-blocks {
    grid-row-gap: 60px;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-member-bg-wrapper {
    height: 43vw;
  }

  .team-profile-text {
    display: none;
  }

  .side-review-blocks {
    grid-row-gap: 31px;
  }

  .side-review-blocks.second {
    margin-left: 24px;
    padding-top: 60px;
  }

  .map-big {
    border-radius: 20px;
    height: 60vw;
  }

  .footer-v3-links {
    margin-left: -12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .footer-v3-nav {
    flex-wrap: wrap;
  }

  .footer-v3-brand {
    margin-right: 14px;
  }

  .intro-hero {
    height: auto;
    max-height: none;
    padding-top: 112px;
    padding-bottom: 144px;
  }

  .footer-instagram-hover {
    display: none;
  }

  .image-4 {
    margin-bottom: 16px;
  }

  .wrapper-animal-icon {
    max-width: 300px;
  }

  .div-block-8 {
    flex-flow: column;
    flex: 0 auto;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }

  h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h4 {
    margin-bottom: 8px;
    font-size: 19px;
    line-height: 24px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.about-feature-section {
    padding-top: 80px;
    padding-bottom: 96px;
  }

  .section.haze.no-padding-top {
    padding-top: 64px;
  }

  .section.top-image-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.top-image-section {
    min-height: 0;
    height: 70vh;
  }

  body.page-hunde .page-intro-subheading,
  body.page-katzen .page-intro-subheading {
    font-size: inherit;
    line-height: inherit;
  }

  .section.hero-v1-section {
    padding-top: 64px;
  }

  body.page-contact #Vacation.section.mask {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .button-primary.nav-button {
    height: 44px;
    display: none;
  }

  .button-primary.button-secondary.hero-button {
    display: flex;
  }

  .nav-bar {
    height: 60px;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .no-margin-bottom,
  .intro.no-margin-bottom {
    margin-bottom: 0;
  }

  .intro.margin-bottom {
    margin-bottom: 48px;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .page-wrapper {
    overflow: hidden;
  }

  .review-v9 {
    padding: 6px;
  }

  .icon {
    width: 20px;
  }

  .top-bar {
    justify-content: flex-start;
    min-height: 32px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
  }

  .layouts {
    margin-bottom: 0;
  }

  .layout-box {
    padding-left: 6%;
    padding-right: 6%;
  }

  .contact-form {
    padding-top: 16px;
  }

  .menu-icon {
    margin-left: 2px;
    margin-right: 2px;
  }

  .review-v1-author {
    flex-wrap: wrap;
  }

  .main-grid {
    grid-row-gap: 48px;
  }

  .dots {
    width: 226px;
    height: 71px;
    top: 38%;
  }

  .circle-small {
    width: 15vw;
    top: 17%;
  }

  .pricing-v2-billing {
    flex: 0 auto;
  }

  .accordion-header {
    min-height: 60px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .accordion-text {
    margin-left: 4px;
    margin-right: 4px;
    padding-bottom: 24px;
  }

  .accordion-heading {
    font-size: 17px;
    line-height: 24px;
  }

  .text-quote {
    font-size: 20px;
    line-height: 28px;
  }

  .accordion-plus {
    width: 14px;
    height: 14px;
  }

  .question-simple {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .mini-gallery {
    grid-template-rows: 14vw 14vw 14vw 14vw 14vw;
  }

  .feature-card {
    padding: 20px 20px 32px;
  }

  .feature-image {
    border-radius: 8px;
  }

  .top-bar-close {
    width: 32px;
  }

  .top-button {
    display: none;
  }

  .subscribe {
    width: 100%;
    max-width: 400px;
  }

  .footer-bottom-right {
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    width: 100%;
  }

  .play-button {
    width: 56px;
    height: 56px;
  }

  .hero-slider {
    height: 68vw;
  }

  .post {
    border-radius: 16px;
    padding-top: 40px;
    padding-bottom: 40px;
    top: -40px;
  }

  .icon-box {
    width: 52px;
    height: 52px;
  }

  .media-rounded {
    border-radius: 16px;
  }

  .side-blocks {
    grid-row-gap: 32px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .side-content {
    padding-left: 12%;
    padding-right: 12%;
  }

  .feature-cards-3 {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 20%;
    padding-right: 20%;
  }

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

  .features-4 {
    grid-row-gap: 48px;
  }

  .video-section {
    height: 70vh;
    max-height: none;
  }

  .hero-v3 {
    min-height: 60vw;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .anchor-sticky-info {
    position: static;
  }

  .feature-side-cards-2 {
    grid-template-columns: 1fr 1fr;
  }

  ._3-blocks-intro {
    padding-left: 0%;
    padding-right: 0%;
  }

  .contact-v2-form {
    margin-top: 0;
  }

  .gallery-slider-button {
    width: 48px;
    height: 48px;
    padding: 10px;
    display: none;
  }

  .gallery-slider-nav {
    height: 24px;
    padding-top: 3px;
    font-size: 6px;
    display: block;
  }

  .galley-slide-info {
    max-width: 100%;
    margin-bottom: 20px;
    margin-left: 16px;
    margin-right: 16px;
    padding-right: 0;
    right: 0;
  }

  .gallery-slide-number {
    font-size: 32px;
  }

  .side-testimonials {
    padding-left: 20%;
    padding-right: 20%;
    display: block;
  }

  .side-review-blocks {
    grid-row-gap: 24px;
  }

  .side-review-blocks.second {
    margin-left: 0;
    padding-top: 24px;
  }

  .footer-v3-links {
    flex-wrap: wrap;
    flex: 0 auto;
    justify-content: center;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-v3-nav {
    flex: 0 auto;
    justify-content: center;
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }

  .footer-v3-link {
    margin-left: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer-v3-brand {
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-v3-content {
    flex-flow: column wrap;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .intro-hero {
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .flex-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  body.page-contact #Vacation .flex-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 64px;
    justify-items: center;
  }

  body.page-contact #Vacation .div-block-2 {
    width: 100%;
    max-width: 360px;
  }

  .wrapper-animal-icon {
    max-width: 300px;
  }

  .div-block-8 {
    flex: 0 auto;
  }
}

@media screen and (max-width: 479px) {
  .section.top-image-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  body.page-contact #Vacation .flex-block {
    row-gap: 10px;
  }

  body.page-contact #Vacation.section.mask {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  body.page-hunde .section.top-image-section,
  body.page-katzen .section.top-image-section {
    min-height: 0;
    height: 70vh;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .button-primary.small {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-primary.button-secondary.hero-button {
    display: flex;
  }

  .nav-link {
    padding-left: 20px;
    padding-right: 20px;
  }

  .utility-page-content {
    width: 100%;
  }

  .no-margin-bottom {
    margin-bottom: 0;
  }

  .intro.no-margin-bottom {
    width: 100%;
    margin-bottom: 0;
  }

  .intro.wide {
    max-width: 100%;
  }

  .nav-menu {
    width: 100%;
  }

  .no-padding-top {
    padding-top: 0;
  }

  .input {
    min-width: 0;
  }

  .nav-dropdown-icon {
    margin-right: 18px;
  }

  .nav-dropdown-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .inline-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .pricing-v2-card {
    padding-bottom: 0;
  }

  .pricing-v2-card-info {
    padding-left: 24px;
    padding-right: 24px;
  }

  .message {
    text-align: center;
    flex-direction: column;
  }

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

  .review-v1-text {
    margin: 24px;
  }

  .review-v1-author {
    padding-left: 23px;
    padding-right: 23px;
  }

  .main-grid {
    grid-row-gap: 48px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .dots {
    width: 160px;
    height: 82px;
    bottom: -12%;
  }

  .circle-small {
    width: 17vw;
    top: 22%;
    right: 6%;
  }

  .pricing-v2-billing {
    flex: 1;
  }

  .question-simple {
    padding-right: 0;
  }

  .mini-gallery {
    grid-template-rows: 68vw;
    grid-template-columns: 1fr;
    grid-auto-rows: 68vw;
  }

  .feature-image {
    width: 100%;
    height: auto;
  }

  .hero-slider {
    height: 150vw;
  }

  .list-dropdown {
    background-color: var(--white);
    border-radius: 7px;
    flex-flow: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin-top: 8px;
    margin-bottom: -32px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px #0000001c;
  }

  .post {
    box-shadow: none;
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
    top: 0;
  }

  .contact-v2-media {
    height: 80vw;
  }

  .media-decoration {
    border-radius: 28px;
    top: -16px;
    right: -16px;
  }

  .media-decoration.top-left {
    top: -16px;
    left: -16px;
  }

  .media-decoration.bottom-right {
    bottom: -16px;
    right: -16px;
  }

  .side-blocks {
    grid-row-gap: 40px;
  }

  .side-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-cards-3 {
    padding-left: 0;
    padding-right: 0;
  }

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

  .price-tag {
    flex: none;
    min-width: 88px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .feature-side-cards-2 {
    grid-template-columns: 1fr;
  }

  .contact-v2-info {
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-v2-form {
    padding-left: 0;
    padding-right: 0;
  }

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

  .gallery-slider {
    height: 80vw;
  }

  .gallery-slider-button {
    display: none;
  }

  .galley-slide-info {
    align-items: flex-start;
    margin-left: 16px;
    margin-right: 16px;
    right: 0;
  }

  .gallery-slide-number {
    margin-top: 8px;
    margin-right: 12px;
  }

  .floating-element._2 {
    margin-bottom: -32px;
    margin-left: 20px;
    margin-right: -16px;
  }

  .quote-author {
    flex-direction: column;
    width: 100%;
  }

  .quote-author-info.hide-on-mobile {
    display: none;
  }

  .quote-author-photo {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    margin-right: auto;
  }

  .pricing-3-blocks {
    grid-row-gap: 48px;
  }

  .team-member-bg-wrapper {
    height: 52vw;
  }

  .side-testimonials {
    padding-left: 0%;
    padding-right: 0%;
  }

  .map-big {
    border-radius: 16px;
    height: 100vw;
  }

  .footer-v3-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .div-block-8 {
    flex: 1;
  }
}

@media screen and (max-width: 991px) {
  .footer-v1-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-row-gap: 48px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-v1-info {
    grid-column: 1 / -1;
  }

  #w-node-ecf6cc58-22d3-8ae1-4b7e-213b09e4b74f-d1822f9d {
    grid-column: 1 / -1;
  }

  .footer-v3-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-v3-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-v3-brand {
    padding: 0;
  }

  .footer-v3-link {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-v1-grid {
    grid-column-gap: 32px;
    grid-row-gap: 48px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-v3-link {
    padding: 0;
  }

  .footer-v3-content {
    justify-content: flex-start;
  }

  .footer-v3-column {
    gap: 6px;
  }
}

#w-node-_2683cce1-048b-5d6d-93b2-802ff96dcf39-72738c40,
#w-node-f2432a77-6bad-98e8-2683-ac84b972deb1-72738c45 {
  grid-area: 1 / 3 / 2 / 11;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c382c-72738c4e {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: start;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3836-72738c4e {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3837-72738c4e {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3839-72738c4e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383b-72738c4e,
#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383d-72738c4e {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383f-72738c4e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3843-72738c4e {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3845-72738c4e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_0ba5bac5-0888-74cd-6879-5654eb2ef579-72738c57 {
  place-self: center;
}

#w-node-_2f158bf9-26b3-8d1c-5bb6-4f86fcf000ed-72738c57 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: center;
}

#w-node-_2f158bf9-26b3-8d1c-5bb6-4f86fcf00104-72738c57 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: start;
}

#w-node-_6f8a611c-2a79-6c3c-840e-71433ab1a99a-72738c57 {
  place-self: center;
}

#w-node-_314697d7-6518-5b66-1f4f-527e2a32a41b-72738c57 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: center;
}

#w-node-_314697d7-6518-5b66-1f4f-527e2a32a42f-72738c57 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: start;
}

#w-node-_3f6a8411-6976-6028-6dd0-8feb3bfe33d3-72738c57 {
  place-self: center;
}

#w-node-d75dd2e9-4c5b-0eb1-c360-5542c22b9a27-72738c57 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: center;
}

#w-node-d75dd2e9-4c5b-0eb1-c360-5542c22b9a31-72738c57 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: start;
}

#w-node-_9f94e720-084f-bf62-7597-952f188bfe04-72738c57 {
  place-self: center;
}

#w-node-ce4638bd-eac1-6410-ddf0-17484d78e545-72738c59 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d7171456-4127-6603-8b1b-58df0e76257e-72738c59 {
  grid-area: 1 / 1 / 2 / 5;
  align-self: start;
}

#w-node-d7171456-4127-6603-8b1b-58df0e76258b-72738c59 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-e14f343d-91b5-758b-db63-bc417977c53e-72738c59 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: center;
}

#w-node-e14f343d-91b5-758b-db63-bc417977c54f-72738c59 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-e14f343d-91b5-758b-db63-bc417977c550-72738c59 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-e14f343d-91b5-758b-db63-bc417977c551-72738c59 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-e14f343d-91b5-758b-db63-bc417977c552-72738c59 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-e14f343d-91b5-758b-db63-bc417977c553-72738c59 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_138af31b-8f13-0449-7c27-a1a4baaba70d-72738c59 {
  grid-area: 1 / 3 / 2 / 11;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8105-72738c64 {
  align-self: stretch;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8107-72738c64 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8113-72738c64 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8113-72738c64 {
  flex-direction: column;
  min-height: 0;
  display: flex;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8117-72738c64 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a80ec-72738c64 {
  align-self: stretch;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a80f4-72738c64 {
  place-self: start;
}

#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a80f5-72738c64,
#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a80fb-72738c64,
#w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8100-72738c64,
#w-node-c5212aa2-24d0-47a0-6b6d-a4724fcf4409-72738c64 {
  justify-self: start;
}

#w-node-b3e86b45-cf76-ef6d-e936-7c1027307c79-72738c66 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: start;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c0-72738c66 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c1-72738c66 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c3-72738c66 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c5-72738c66,
#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c7-72738c66 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c9-72738c66 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cd-72738c66 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cf-72738c66 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-c6d5017e-e3fb-cdaf-4b30-607e48913d11-72738c66 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: start;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c1-72738c66 {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c2-72738c66 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c4-72738c66 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c6-72738c66,
#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c8-72738c66 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1ca-72738c66 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1ce-72738c66 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-d4cba00b-6c7e-11c6-c74c-810d334df1d0-72738c66 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e7e-72738c8f {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e96-72738c8f {
  grid-area: 1 / 6 / 2 / 13;
}

@media screen and (min-width: 1920px) {
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3836-72738c4e,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c0-72738c66 {
    grid-area: 1 / 7 / 2 / 13;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c1-72738c66 {
    grid-area: 1 / 1 / 2 / 7;
  }
}

@media screen and (min-width: 1440px) {
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3836-72738c4e {
    grid-area: 1 / 7 / 2 / 13;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3837-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3839-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383b-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383d-72738c4e {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383f-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3841-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3843-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3845-72738c4e {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c0-72738c66 {
    grid-area: 1 / 7 / 2 / 13;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c1-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c3-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c5-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c7-72738c66 {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c9-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cb-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cd-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cf-72738c66 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c1-72738c66 {
    grid-area: 1 / 1 / 2 / 7;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c2-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c4-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c6-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c8-72738c66 {
    grid-area: span 3 / span 1 / span 3 / span 1;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1ca-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1cc-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1ce-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1d0-72738c66 {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_2683cce1-048b-5d6d-93b2-802ff96dcf39-72738c40,
  #w-node-f2432a77-6bad-98e8-2683-ac84b972deb1-72738c45 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c382c-72738c4e {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3836-72738c4e {
    grid-area: 2 / 1 / 2 / 9;
  }

  #w-node-_2f158bf9-26b3-8d1c-5bb6-4f86fcf000ed-72738c57 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_2f158bf9-26b3-8d1c-5bb6-4f86fcf00104-72738c57 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-_314697d7-6518-5b66-1f4f-527e2a32a41b-72738c57 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-_314697d7-6518-5b66-1f4f-527e2a32a42f-72738c57 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-d75dd2e9-4c5b-0eb1-c360-5542c22b9a27-72738c57 {
    grid-area: 2 / 2 / 3 / 8;
    align-self: center;
  }

  #w-node-d75dd2e9-4c5b-0eb1-c360-5542c22b9a31-72738c57,
  #w-node-d7171456-4127-6603-8b1b-58df0e76257e-72738c59 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-d7171456-4127-6603-8b1b-58df0e76258b-72738c59 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-e14f343d-91b5-758b-db63-bc417977c53e-72738c59 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: center;
  }

  #w-node-e14f343d-91b5-758b-db63-bc417977c54f-72738c59 {
    grid-area: 2 / 2 / 3 / 8;
  }

  #w-node-_138af31b-8f13-0449-7c27-a1a4baaba70d-72738c59 {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8117-72738c64 {
    justify-self: stretch;
  }

  #w-node-b3e86b45-cf76-ef6d-e936-7c1027307c79-72738c66 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c0-72738c66 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-c6d5017e-e3fb-cdaf-4b30-607e48913d11-72738c66 {
    grid-area: 1 / 2 / 2 / 8;
    align-self: start;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c1-72738c66 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e7e-72738c8f {
    grid-area: 1 / 2 / 2 / 8;
    align-self: center;
  }

  #w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e96-72738c8f {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3836-72738c4e {
    grid-area: 2 / 1 / 2 / 9;
  }

  #w-node-_75752422-c856-d0b7-b195-40801f7b4363-72738c59 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e14f343d-91b5-758b-db63-bc417977c54f-72738c59 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_1c3d144f-9184-e48f-aa89-51c5a06a8107-72738c64,
  #w-node-_1c3d144f-9184-e48f-aa89-51c5a06a810b-72738c64,
  #w-node-_1c3d144f-9184-e48f-aa89-51c5a06a810f-72738c64 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c0-72738c66 {
    grid-area: 2 / 1 / 2 / 9;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c1-72738c66 {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e96-72738c8f {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }
}

@media screen and (max-width: 479px) {
  .section.about-feature-section {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  #w-node-_2683cce1-048b-5d6d-93b2-802ff96dcf39-72738c40,
  #w-node-f2432a77-6bad-98e8-2683-ac84b972deb1-72738c45 {
    grid-column: span 4 / span 4;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c382c-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3836-72738c4e {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3837-72738c4e {
    grid-row: span 2 / span 2;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3839-72738c4e,
  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383b-72738c4e {
    grid-row: span 1 / span 1;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383d-72738c4e {
    grid-row: span 2 / span 2;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c383f-72738c4e {
    grid-row: span 1 / span 1;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3841-72738c4e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_35aee271-8841-1cd0-4f21-6f0f0c9c3845-72738c4e {
    grid-row: span 1 / span 1;
  }

  #w-node-_2f158bf9-26b3-8d1c-5bb6-4f86fcf000ed-72738c57 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_2f158bf9-26b3-8d1c-5bb6-4f86fcf00104-72738c57 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_314697d7-6518-5b66-1f4f-527e2a32a41b-72738c57 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-_314697d7-6518-5b66-1f4f-527e2a32a42f-72738c57 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-d75dd2e9-4c5b-0eb1-c360-5542c22b9a27-72738c57 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-d75dd2e9-4c5b-0eb1-c360-5542c22b9a31-72738c57,
  #w-node-d7171456-4127-6603-8b1b-58df0e76257e-72738c59 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-d7171456-4127-6603-8b1b-58df0e76258b-72738c59 {
    grid-column: span 4 / span 4;
  }

  #w-node-e14f343d-91b5-758b-db63-bc417977c53e-72738c59 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: center;
  }

  #w-node-e14f343d-91b5-758b-db63-bc417977c54f-72738c59 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e14f343d-91b5-758b-db63-bc417977c550-72738c59,
  #w-node-e14f343d-91b5-758b-db63-bc417977c552-72738c59 {
    grid-row: span 2 / span 2;
  }

  #w-node-_138af31b-8f13-0449-7c27-a1a4baaba70d-72738c59 {
    grid-column: span 4 / span 4;
  }

  #w-node-b3e86b45-cf76-ef6d-e936-7c1027307c79-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c0-72738c66 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c1-72738c66 {
    grid-row: span 1 / span 1;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c3-72738c66 {
    grid-row: span 2 / span 2;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c5-72738c66 {
    grid-row: span 1 / span 1;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655c7-72738c66,
  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cd-72738c66 {
    grid-row: span 2 / span 2;
  }

  #w-node-e0ccae55-1bbe-1f59-a1ab-d9cc162655cf-72738c66 {
    grid-row: span 1 / span 1;
  }

  #w-node-c6d5017e-e3fb-cdaf-4b30-607e48913d11-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c1-72738c66 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c2-72738c66 {
    grid-row: span 1 / span 1;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c4-72738c66 {
    grid-row: span 2 / span 2;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c6-72738c66 {
    grid-row: span 1 / span 1;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1c8-72738c66,
  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1ce-72738c66 {
    grid-row: span 2 / span 2;
  }

  #w-node-d4cba00b-6c7e-11c6-c74c-810d334df1d0-72738c66 {
    grid-row: span 1 / span 1;
  }

  #w-node-b95b152a-96d8-fbc1-61e7-f14ab13f6b5b-72738c6b {
    grid-area: span 1 / span 4 / span 1 / span 4;
    align-self: start;
  }

  #w-node-b95b152a-96d8-fbc1-61e7-f14ab13f6b78-72738c6b,
  #w-node-b95b152a-96d8-fbc1-61e7-f14ab13f6ba8-72738c6b,
  #w-node-_1a9ea416-2515-be79-d60a-ad423c127fb6-72738c6b,
  #w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e7e-72738c8f,
  #w-node-_9f011a64-6e67-4d8f-3646-5f3f26938e96-72738c8f {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }
}

@media screen and (max-width: 991px) {
  .section.gallery-band-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .gallery-band-sequence {
    gap: 12px;
    padding-right: 12px;
  }

  .gallery-band-item {
    width: 300px;
    height: 210px;
  }
}

@media screen and (max-width: 767px) {
  .section.gallery-band-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .gallery-band-item {
    width: 270px;
    height: 180px;
  }
}

@media screen and (max-width: 479px) {
  .section.gallery-band-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .gallery-band-item {
    width: 240px;
    height: 165px;
  }
}

@media screen and (max-width: 991px) {
  .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

@media screen and (max-width: 479px) {
  .footer-link {
    font-size: 13px;
    line-height: 20px;
  }

  .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-v1 {
    padding-top: 40px;
  }

  .footer-bottom-left {
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    width: 100%;
    margin-bottom: 12px;
  }

  .footer-bottom-right {
    text-align: center;
    flex: 0 auto;
    justify-content: center;
    width: 100%;
  }

  .footer-v1-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-bottom: 40px;
    grid-template-rows: auto auto auto;
  }

  .footer-v1-info {
    padding-right: 0%;
  }

  #w-node-_26b96535-832a-8399-2acb-40d42ecc7be8-d1822f9d,
  #w-node-ecf6cc58-22d3-8ae1-4b7e-213b09e4b74f-d1822f9d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}
