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

.info {
  position: relative;
}
.info__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
@media (max-width: 56.25em) {
  .info__text {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    color: #000;
    transform: translate(0, 0) !important;
    width: 80% !important;
    margin: 5rem auto;
    text-align: left !important;
  }
}
.info__text-head {
  font-size: 1.8rem;
  font-weight: 600;
}
.info__text-par {
  font-size: 1.5rem;
}
.info__text-cb {
  left: 50%;
  bottom: 3rem;
  transform: translate(-50%, 0);
  text-align: center;
  width: 70%;
}
.info__text-lb {
  left: 3rem;
  bottom: 3rem;
  width: 50%;
}
.info__text-lt {
  left: 3rem;
  top: 8rem;
  width: 50%;
}
.info__text-rb {
  right: 3rem;
  bottom: 3rem;
  width: 50%;
  text-align: right;
}
.info__img {
  width: 100%;
  display: block;
}

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