.ca-carousel {
  --nav-size: 3.5rem;
  --nav-offset: 1.75rem;
  position: relative;
  max-width: 80%;
  margin: 2.5rem auto;
  padding: 0 calc(var(--nav-size) + var(--nav-offset));
}
@media (max-width: 37.5em) {
  .ca-carousel {
    max-width: 95%;
  }
}

.ca-carousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.ca-carousel__viewport:active {
  cursor: grabbing;
}

.ca-carousel__track {
  display: flex;
  transition: transform 0.32s ease;
}

.ca-carousel__slide {
  flex: 0 0 100%;
  background: #fff;
}

.ca-carousel__media {
  aspect-ratio: 16/9;
  background: #eee;
}
.ca-carousel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ca-carousel__body {
  padding: 1rem 1.125rem;
}
.ca-carousel__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}
.ca-carousel__body p {
  margin: 0;
  line-height: 1.5;
  opacity: 0.85;
}

.ca-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: var(--nav-size);
  height: var(--nav-size);
  border: 0;
  background: #777;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 0.625rem 1.375rem rgba(0, 0, 0, 0.18);
  border-radius: 1000px;
}
.ca-carousel__nav:hover {
  background: #666;
}
.ca-carousel__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.ca-carousel__nav--prev {
  left: 0;
}

.ca-carousel__nav--next {
  right: 0;
}

.ca-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.875rem;
  padding-top: 0.875rem;
}

.ca-carousel__dot {
  width: 0.875rem;
  height: 0.875rem;
  border: 0;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border-radius: 1000px;
}
.ca-carousel__dot.is-active {
  background: rgba(0, 0, 0, 0.9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media (max-width: 40em) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: sans-serif;
}

.primary-heading {
  font-size: 3rem;
  font-weight: 600;
}

.secondary-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.tertiary-heading {
  font-size: 1.8rem;
  font-weight: 400;
}

.basic-text {
  font-size: 1.5rem;
}

.full__img,
.full__img > * {
  width: 100%;
  display: block;
}

.hero {
  position: relative;
}
.hero__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.specsgrid {
  background-color: #000;
  color: #fff;
  padding: 10rem 0;
}
.specsgrid img {
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.specsgrid-cell {
  position: relative;
}
.specsgrid-cell p {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 80%;
}
.specsgrid-1 {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
.specsgrid-1 .specsgrid-cell:first-child {
  grid-row: 1/3;
}
@media (max-width: 50em) {
  .specsgrid-1 .specsgrid-cell:first-child {
    grid-row: auto;
  }
}
@media (max-width: 50em) {
  .specsgrid-1 {
    grid-template-columns: 1fr;
  }
}
.specsgrid-2 {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 50em) {
  .specsgrid-2 {
    grid-template-columns: 1fr;
  }
}
.specsgrid-3 {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 50em) {
  .specsgrid-3 {
    grid-template-columns: 1fr;
  }
}

.center {
  background-color: black;
  text-align: center;
  color: #fff;
  padding: 10rem;
}
@media (max-width: 50em) {
  .center {
    padding: 10rem 5rem;
  }
}
.center h2 {
  color: #decebf;
  padding-bottom: 5rem;
}
.center p {
  padding-bottom: 2rem;
}

.multi {
  position: relative;
  background-color: #000;
}
.multi-big {
  display: block;
  width: 100%;
}
@media (max-width: 50em) {
  .multi-big {
    display: none;
  }
}
.multi-small {
  display: none;
  width: 100%;
}
@media (max-width: 50em) {
  .multi-small {
    display: block;
  }
}
.multi-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
.multi-text .primary-heading {
  color: #decebf;
}

.kitchen {
  position: relative;
  background-color: #000;
  color: #fff;
}
.kitchen__text {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
@media (max-width: 50em) {
  .kitchen__text {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0, 0);
    margin: 0 auto;
    padding: 5rem 0;
  }
}

.rooms {
  background-color: #000;
  color: #fff;
}
.rooms__cont {
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.rooms__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.three {
  background-color: #000;
  color: #fff;
}
.three__cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50em) {
  .three__cont {
    grid-template-columns: 1fr;
  }
}
.three__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .three__text {
    grid-row: 1/2;
  }
}

.pet {
  background-color: #000;
  color: #fff;
}
.pet__cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  gap: 2rem;
}
@media (max-width: 50em) {
  .pet__cont {
    grid-template-columns: 1fr;
  }
}
.pet__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.navigation {
  background-color: #000;
}
.navigation h2 {
  color: #decebf;
  text-align: center;
  padding: 5rem;
  width: 80%;
  margin: 0 auto;
}
.navigation .drops {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.power {
  background-color: #000;
  color: #fff;
}
.power h2 {
  color: #decebf;
  text-align: center;
  padding: 5rem;
  width: 80%;
  margin: 0 auto;
}
.power__cont {
  position: relative;
}
.power__text {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 80%;
  transform: translate(-50%, 0);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.power__text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
}

.double {
  background-color: #000;
  color: #fff;
}
.double__cont {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 50em) {
  .double__cont {
    grid-template-columns: 1fr;
  }
}
.double__cont-cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.debris {
  background-color: #000;
  color: #fff;
}
.debris__cont {
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.debris__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.debris__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 2rem;
}
@media (max-width: 50em) {
  .debris__grid {
    grid-template-columns: 1fr;
  }
}

.wet {
  background-color: #000;
  color: #fff;
}
.wet__cont {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.wet__cont video {
  padding: 5rem 0;
}

.charge {
  background-color: #000;
  color: #fff;
}
.charge__text {
  width: 80%;
  text-align: center;
  margin: 0 auto;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.charge__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 80%;
  margin: 0 auto;
  padding: 5rem;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 50em) {
  .charge__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grids {
  background-color: #000;
  color: #fff;
}
.grids__cont {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
}
.grids__cont-cell {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  align-items: center;
}
@media (max-width: 50em) {
  .grids__cont-cell {
    grid-template-columns: 1fr;
  }
}
.grids__cont-cell-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 50em) {
  .grids__cont-cell-text {
    grid-row: 2/3;
  }
}

.custom {
  position: relative;
}
.custom__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
@media (max-width: 50em) {
  .custom img {
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.app {
  width: 80%;
  margin: 10rem auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.app__cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.dog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 90%;
  margin: 0 auto;
  gap: 2rem;
  padding: 5rem 0;
}
@media (max-width: 50em) {
  .dog {
    grid-template-columns: 1fr;
  }
}
.dog__cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.last {
  width: 80%;
  margin: 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

/*# sourceMappingURL=Index.css.map */
