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

.hero {
  position: relative;
}
.hero__text {
  position: absolute;
  top: 20%;
  color: #fff;
  left: 10rem;
  width: 50%;
}
@media (max-width: 50em) {
  .hero__text {
    left: 50%;
    top: 10rem;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
  }
}
.hero__img > * {
  display: block;
  width: 100%;
}

.grid {
  background-color: #e9e9e9;
}
.grid__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 70%;
  margin: 0 auto;
  padding: 10rem 0;
  gap: 2rem;
}
@media (max-width: 50em) {
  .grid__container {
    grid-template-columns: 1fr;
  }
}
.grid__container-cell {
  position: relative;
}
@media (max-width: 50em) {
  .grid__container-cell {
    grid-row: auto !important;
    grid-column: auto !important;
  }
}
.grid__container-cell-text {
  color: #fff;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.grid__container-cell:nth-child(1) {
  grid-column: 1/3;
}
.grid__container-cell:nth-child(1) .grid__container-cell-text {
  top: 50%;
  transform: translate(0, -50%);
  right: 3rem;
  width: 40%;
}
@media (max-width: 50em) {
  .grid__container-cell:nth-child(1) .grid__container-cell-text {
    left: 50%;
    transform: translate(-50%, 0);
    right: auto;
    width: 80%;
    bottom: 5rem;
    top: auto;
    text-align: center;
  }
}
.grid__container-cell:nth-child(2) .grid__container-cell-text, .grid__container-cell:nth-child(3) .grid__container-cell-text, .grid__container-cell:nth-child(4) .grid__container-cell-text, .grid__container-cell:nth-child(6) .grid__container-cell-text, .grid__container-cell:nth-child(7) .grid__container-cell-text {
  width: 70%;
  left: 3rem;
  top: 3rem;
}
.grid__container-cell:nth-child(5) .grid__container-cell-text {
  top: 50%;
  transform: translate(0, -50%);
  left: 3rem;
  width: 40%;
}
.grid__container-cell:nth-child(3) {
  grid-row: 2/4;
  grid-column: 2/3;
}
.grid__container-cell:nth-child(4) {
  grid-row: 3/5;
  grid-column: 1/2;
}
.grid__container-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.line {
  position: relative;
}
.line__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.line__text p {
  color: #fe933c;
}
.line__img > * {
  display: block;
  width: 100%;
}

.mos {
  position: relative;
}
.mos__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  display: grid;
  grid-template-columns: 5fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 62.5em) {
  .mos__text {
    grid-template-columns: 1fr;
  }
}
.mos__text div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mos__img > * {
  display: block;
  width: 100%;
}

.audio {
  position: relative;
}
.audio__text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 5rem;
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 50em) {
  .audio__text {
    width: 80%;
  }
}
.audio__text p:first-child {
  color: #ff8900;
}
.audio__img > * {
  display: block;
  width: 100%;
}

.top {
  padding-top: 15rem;
  background-color: #f2f2f2;
}

.party {
  position: relative;
}
.party__text {
  position: absolute;
  width: 35%;
  right: 10rem;
  top: 50%;
  transform: translate(0, -65%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}
@media (max-width: 50em) {
  .party__text {
    width: 80%;
    top: 10rem;
    right: 50%;
    transform: translate(50%, 0);
  }
}
.party__text p:first-child {
  color: #ff8900;
}
.party__img > * {
  display: block;
  width: 100%;
}

.whoite {
  color: #fff;
}

.style {
  position: relative;
}
.style__text {
  position: absolute;
  top: 20%;
  color: #fff;
  left: 10rem;
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.style__text p:first-child {
  color: #ff8900;
}
@media (max-width: 56.25em) {
  .style__text {
    left: 50%;
    top: 10rem;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
  }
}
.style__img > * {
  display: block;
  width: 100%;
}

.center {
  position: relative;
}
.center__text {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 7rem;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.center__text p:first-child {
  color: #ff8900;
}
@media (max-width: 56.25em) {
  .center__text {
    left: 50%;
    top: 10rem;
    transform: translate(-50%, 0);
    text-align: center;
    width: 80%;
  }
}
.center__img > * {
  display: block;
  width: 100%;
}

.mos2 {
  position: relative;
}
.mos2__text {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  color: #fff;
}
.mos2__text .secondary-heading {
  color: #ff8900;
}
@media (max-width: 50em) {
  .mos2__text {
    grid-template-columns: 1fr;
  }
}
.mos2__text div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mos2__img > * {
  display: block;
  width: 100%;
}

.black {
  color: #000 !important;
}

.top2 {
  padding-top: 5rem;
}
@media (max-width: 50em) {
  .top2 {
    padding-top: 0;
  }
}

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