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

.ca-carousel__media img,
.ca-carousel__media video {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.ca-carousel__body {
  padding: 1rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.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: 3.2rem;
  font-weight: 600;
}

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

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

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

.hero {
  position: relative;
}
.hero__img > * {
  width: 100%;
  display: block;
}
.hero h1 {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  width: 80%;
}

.info {
  margin-bottom: 5rem;
}
.info__img > * {
  width: 100%;
  display: block;
}
.info__text {
  width: 80%;
  margin: 8rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.left {
  position: relative;
}
.left__img > * {
  width: 100%;
  display: block;
}
.left__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 5rem;
  left: 5rem;
  width: 40%;
}
@media (max-width: 50em) {
  .left__text {
    width: 80%;
  }
}

.title {
  width: 70%;
  margin: 8rem auto 0;
}

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