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

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

body {
  font-family: "Roboto", sans-serif;
}

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

.primary-heading {
  font-size: 4.8rem;
  font-weight: 700;
}
@media (max-width: 31.25em) {
  .primary-heading {
    font-size: 3.2rem;
  }
}

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

.tertiary-heading {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.quad-heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.basic-text {
  font-size: 1.6rem;
  line-height: 1.6;
}

.hero {
  position: relative;
}
.hero__text {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
}
.hero__text img {
  height: 5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 50em) {
  .hero__text {
    top: 5rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
  }
}

.dark-bg {
  background-color: #000;
  color: #fff;
}

.meet {
  width: 80%;
  margin: 0 auto;
  padding: 10rem 0;
  text-align: center;
}

.meet2 {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
}

.meet-phone {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.meet-phone video {
  border-radius: 19px;
}

.big-video {
  width: 100%;
  display: block;
}
@media (max-width: 50em) {
  .big-video {
    display: none;
  }
}

.small-video {
  width: 100%;
  display: none;
}
@media (max-width: 50em) {
  .small-video {
    display: block;
  }
}

.glide {
  position: relative;
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 6rem 0;
}
.glide__viewport {
  overflow: hidden;
  border-radius: 1.2rem;
}
.glide__track {
  display: flex;
  transition: transform 0.5s ease;
}
.glide__slide {
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
.glide__slide img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.glide__caption {
  position: relative;
}
.glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 2.8rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
}
.glide__arrow:hover {
  background: rgba(255, 255, 255, 0.35);
}
.glide__arrow--prev {
  left: 1.5rem;
}
.glide__arrow--next {
  right: 1.5rem;
}
.glide__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.glide__dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  padding: 0;
}
.glide__dot--active {
  background: #fff;
  border-color: #fff;
}

.thin h2 {
  text-align: center;
}
.thin__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
  gap: 2rem;
}
@media (max-width: 62.5em) {
  .thin__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 50em) {
  .thin__grid {
    grid-template-columns: 1fr;
  }
}
.thin__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #f6f6f6;
  padding: 3rem;
  border-radius: 19px;
}
.thin__grid-cell .secondary-heading {
  background: linear-gradient(170deg, #9a9af8 25%, #747cf9 50%, #3b57fe 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.blue-text {
  background: linear-gradient(170deg, #9a9af8 25%, #747cf9 50%, #3b57fe 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.performance__text {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.performance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
  margin: 0 auto;
  gap: 1rem;
  padding: 5rem 0;
}
@media (max-width: 50em) {
  .performance__grid {
    grid-template-columns: 1fr;
  }
}
.performance__grid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.double {
  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) {
  .double {
    grid-template-columns: 1fr;
  }
}
.double img,
.double video {
  border-radius: 19px;
}
@media (max-width: 50em) {
  .double img,
  .double video {
    grid-row: 2/3;
  }
}
.double__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cameragrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 50em) {
  .cameragrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.cameragrid-cell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dog {
  display: block;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 50em) {
  .dog {
    width: 100%;
  }
}/*# sourceMappingURL=Index.css.map */