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

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

.grid {
  background-color: #f1f1f1;
  width: 90%;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 4rem;
  align-items: center;
}
@media (max-width: 56.25em) {
  .grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0 auto;
  }
}
.grid img {
  border-radius: 20px;
}
@media (max-width: 56.25em) {
  .grid img {
    grid-row: 1/2;
  }
}
.grid__cell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.grid__cell:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.center {
  position: relative;
}
.center__text {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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