@media (min-width: 1440px) {
  .container {
    width: 1320px !important;
  }
}
@media (min-width: 1728px) {
  .container {
    width: 1510px !important;
  }
}
@layer utilities {
  .gradient-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 30, 0.6);
    pointer-events: none;
  }
}
.arrow-container {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 8px;
  border-radius: 100%;
  cursor: pointer;
  background-color: #FF98DE;
}
.arrow-container:hover {
  opacity: 0.7;
}

.arrow-right, .arrow-left {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transition: 0.3s ease;
}

.arrow-right {
  transform: rotate(135deg);
}

.arrow-left {
  transform: rotate(-45deg);
}

.content-area p, .content-area ol, .content-area ul {
  margin-bottom: 1.2rem;
  margin-top: 1.4rem;
}
.content-area p strong, .content-area ol strong, .content-area ul strong {
  font-weight: 600;
}/*# sourceMappingURL=manual.css.map */