span {
  font-weight: inherit;
}
span.icon {
  line-height: 0;
  vertical-align: bottom;
}
svg {
  vertical-align: bottom;
}
span.orange {
  font-weight: inherit;
  color: var(--secondary);
}
span.blue {
  font-weight: inherit;
  color: var(--primary);
}
strong {
  font-weight: bold;
}
.mgb-def {
  margin-block: 60px;
}
div.container.mxw-def {
  margin-inline: auto;
  max-width: 1146px;
  padding-inline: 20px;
}
.def-sec-header {
  margin-bottom: 24px;
}
.def-sec-header .title {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 8px 0;
  color: #000;
}
.def-sec-header .description {
  font-size: 14px;
  line-height: 1.7;
}
.hero-section {
  position: relative;
  background-color: #d2e4ff;
  overflow: hidden;
}
.hero-section > .container {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 70px 0;
  z-index: 2;
}
.back-icon svg {
  height: 200px;
  width: 200px;
  position: absolute;
  transform: translateX(50%) rotate(-16deg);
  right: 40%;
  bottom: -80px;
  fill: #000;
  opacity: 0.5;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-buttons .cta {
  flex-shrink: 0;
  flex-grow: 1;
}
.hero-buttons .cta a {
  min-width: fit-content;
  gap: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding: 12px 14px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--primary);
  transition: background-color 200ms;
}
.hero-buttons .cta a span {
  line-height: inherit;
}
.hero-buttons .cta a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-bottom: -2px;
}
.hero-buttons .cta a:hover {
  background-color: #0056d6;
}
.hero-section h1.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 22px;
  color: #000;
  line-height: 1.5;
}
.hero-section p.description {
  margin-bottom: 22px;
}
.hero-img {
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: 100%;
}
.hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.hero-section .pattern-icons svg {
  position: absolute;
  width: 100px;
  height: 100px;
}
.hero-section .pattern-icons svg:first-child {
  top: 50px;
  right: -30px;
}
.hero-section .pattern-icons svg:nth-child(2) {
  bottom: -40px;
  right: 30px;
}
.hero-section .pattern-icons svg:nth-child(3) {
  top: -40px;
  right: 40%;
}
.hero-section .pattern-icons svg:nth-child(4) {
  transform: rotate(90deg);
  left: -30px;
  bottom: 100px;
}
.benefits-section > .container .item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  user-select: none;
  transition: box-shadow 200ms;
  background-color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.benefits-section > .container .item:hover {
  box-shadow: 0 0px 10px 1px rgba(0, 0, 0, 0.1);
}
.benefits-section > .container .item .title {
  color: var(--secondary);
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}
.benefits-section > .container .item .description {
  font-size: 14px;
  margin-top: -10px;
  line-height: 2;
  text-align: center;
}
.benefits-section > .container .item .icon svg {
  width: 80px;
  height: 80px;
  fill: var(--secondary);
}
.benefits-section > .container .item .shape {
  position: absolute;
  width: 210px;
  height: 160px;
  border-radius: 47% 53% 39% 61% / 65% 51% 49% 35%;
  top: -32px;
  right: -45px;
  background-color: #fff5f1;
  z-index: -1;
  overflow: hidden;
}
.benefits-section > .container .item .shape svg {
  fill: #ffebe3;
  position: absolute;
  top: 25px;
  right: 20px;
  width: 120px;
  height: 120px;
}
.benefits-section ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style-type: none;
}
.benefits-section ul li {
  display: flex;
}

.benefits-section ul li:nth-child(1) .item .shape {
  background-color: #f2ffe6;
}
.benefits-section ul li:nth-child(1) .item .title {
  color: #099e40;
}
.benefits-section ul li:nth-child(2) .item .shape {
  background-color: #e4efff;
}
.benefits-section ul li:nth-child(2) .item .title {
  color: #0066ff;
}
.benefits-section ul li:nth-child(3) .item .shape {
  background-color: #e9e1ff;
}
.benefits-section ul li:nth-child(3) .item .title {
  color: #4200ff;
}
.benefits-section .control-dots {
  display: none;
}
.control-dots,
.control-dots-nojs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.control-dots .dot,
.control-dots-nojs .dot {
  width: 8px;
  height: 8px;
  border-radius: 100vmax;
  background-color: #d9d9d9;
  cursor: pointer;
  transition: 200ms;
}
.control-dots .dot.current,
.control-dots-nojs .dot.current {
  width: 24px;
  background-color: var(--primary);
}
.control-dots-nojs .dot {
  cursor: auto;
}
.sample-imgs[data-stage="0"] .control-dots-nojs .dot:first-child {
  width: 24px;
  background-color: var(--primary);
}
.sample-imgs[data-stage="1"] .control-dots-nojs .dot:last-child {
  width: 24px;
  background-color: var(--primary);
}
.introduction-section {
  background-color: #fffcfa;
  padding: 24px 0;
}
.introduction-section .content {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 48px;
  background-color: #fff;
}
.introduction-section .content .video {
  width: 50%;
  flex-shrink: 0;
}
.introduction-section .content .video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.cta-def {
  display: flex;
  justify-content: center;
  gap: 4px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--secondary);
  line-height: 24px;
  padding: 10px 0;
  margin-top: 1rem;
  transition: background-color 200ms;
}
.cta-def:hover {
  background-color: #d7562b;
  color: #fff;
}
.cta-def svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.howtouse-section .content {
  position: relative;
}
.howtouse-section .costum-scroller-indicator-js {
  width: 40px;
  margin: 24px auto 0;
}
.howtouse-section .content ul {
  display: flex;
  list-style-type: none;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.howtouse-section .content ul {
  margin: 0px 0px 0px 0px !important;
  list-style-type: none;
}

.howtouse-section .content ul li {
  width: calc((100% / 3) - 16px);
  flex-shrink: 0;
  scroll-snap-align: center;
}
.howtouse-section .content ul li .item {
  display: flex;
  gap: 8px;
}
.howtouse-section .content li .step--content {
  width: 50%;
  min-height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background-color: #fffbf9;
  align-self: flex-start;
  overflow: hidden;
  z-index: 0;
}
.howtouse-section .content li:nth-child(3n + 2) .step--content {
  align-self: center;
}
.howtouse-section .content li:nth-child(3n) .step--content {
  align-self: flex-end;
}
.howtouse-section .content li .step--content::before {
  content: "";
  position: absolute;
  background-color: #fff2ee;
  width: 86px;
  height: 67px;
  top: initial;
  left: initial;
  bottom: -20px;
  left: -25px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -1;
}
.howtouse-section .content li .step--content::after {
  content: "";
  position: absolute;
  background-color: #fff2ee;
  width: 75px;
  height: 58px;
  top: -15px;
  right: -25px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -1;
}
.howtouse-section .content li .step--number {
  position: absolute;
  font-size: 26px;
  font-weight: bold;
  color: #81b4ff;
  top: 10px;
  right: 10px;
  line-height: 1;
}
.howtouse-section .content li .step--description {
  font-size: 12px;
  line-height: 18px;
  color: #000;
}
.howtouse-section .content li .step--image {
  width: 50%;
}
.howtouse-section .content li .step--image img {
  width: 100%;
  height: auto;
  display: block;
}
.scroll-btn {
  position: absolute;
  display: none;
  place-items: center;
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-110%);
  border-radius: 50%;
  border: 2px solid var(--primary);
  background-color: #fff;
  z-index: 10;
}
.scroll-btn svg {
  width: 17px;
  height: 17px;
  fill: var(--primary);
}
.howtouse-section .content:hover .scroll-btn {
  display: grid;
}
.howtouse-section .content .scroll-btn.disable {
  display: none;
}
.howtouse-section .content .scroll-btn.next {
  left: 0;
}
.howtouse-section .content .scroll-btn.prev {
  right: 0;
}
.plan-section {
  padding: 24px 0;
  background-color: #fff9f7;
}
.plan-section .form-container {
  position: relative;
  padding: 32px 24px 40px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
  z-index: 0;
}
.plan-section .form-container::before {
  content: "";
  position: absolute;
  background-color: #f2eaff;
  width: 210px;
  height: 162px;
  top: initial;
  left: initial;
  bottom: -110px;
  right: -130px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -1;
}
.plan-section .form-container::after {
  content: "";
  position: absolute;
  background-color: #f2eaff;
  width: 210px;
  height: 162px;
  top: 50%;
  left: -155px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -1;
}
.plan-section .form-container .back-wave {
  position: absolute;
  width: 100%;
  height: 121px;
  top: 0;
  right: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  z-index: -1;
}
.plan-section .form-container .form--title {
  color: var(--primary);
  line-height: 1.8;
  margin: 4px 0 65px 0;
}
.plan-section .form-container .form--step-bar {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  margin-bottom: 24px;
}
.plan-section .form-container .form--step-bar .step {
  width: 149px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background-color: #d1d5db;
  color: #645e5e;
  user-select: none;
}
.plan-section .form-container.onform .form--step-bar .step:first-child,
.plan-section .form-container:not(.onform) .form--step-bar .step:last-child {
  background-color: var(--primary);
  color: #fff;
}
.plan-section .form-container .form--step-bar .step:first-child {
  border-radius: 0 10px 10px 0;
}
.plan-section .form-container .form--step-bar .step:last-child {
  border-radius: 10px 0 0 10px;
}
.plan-section .form-container .form--step-bar .step span {
  margin-bottom: -3px;
  font-weight: bold;
}
.plan-section .form-container .required {
  color: #ff0000;
}
.plan-section .form-container .label {
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
.plan-section .form-container .pet-gender .form--gender-inps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.plan-section .form-container .pet-gender .form--gender-inps .label {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 8px;
}
.plan-section .form-container .pet-gender .form--gender-inps .label p {
  margin-bottom: initial;
}
.plan-section .form-container .pet-gender .label svg {
  width: 40px;
  height: 40px;
  fill: #d1d5db;
}
.plan-section .form-container .pet-gender input:checked ~ svg {
  fill: var(--primary);
}
.plan-section .form-container .form--grid-inps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 70px;
  margin-top: 1rem;
  margin-bottom: 24px;
}
.plan-section .form-container .form--grid-inps .grid-inp-holder.wide {
  grid-column: span 2;
}
.plan-section .form-container .form--grid-inps input[type="text"] {
  width: 100%;
  height: 48px;
  font-size: 14px;
  padding: 4px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  color: black !important;
}
.plan-section .form-container .form--grid-inps input[type="text"]:focus {
  outline: 2px solid var(--primary);
}
.plan-section
  .form-container
  .inp-container.touched
  input[type="text"]:invalid {
  border: 2px solid #ff2200;
}
.plan-section .form-container .inp-container .invlid-inp-err {
  display: none;
  font-size: 12px;
  margin-top: 8px;
  color: #ff2200;
}
.plan-section
  .form-container
  .inp-container.touched
  input[type="text"]:invalid
  + .invlid-inp-err {
  display: inline-block;
}
.plan-section .form-container .form--grid-inps .label {
  display: block;
  margin-bottom: 8px;
}
.plan-section .box-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  width: 100%;
  height: 48px;
  padding: 4px 15px;
  border: 1px solid #d1d5db;
  background-color: #fff;
  border-radius: 4px;
  user-select: none;
  cursor: pointer;
}
.plan-section .box-container :where(.dropdown-icon, .filter-icon) {
  width: 24px;
  height: 24px;
  fill: #000;
}
.plan-section .box-container .placeholder {
  font-size: 14px;
  line-height: 24px;
  margin: 0 4px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}
.plan-section .filter-options-popup {
  display: none;
  place-items: center;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.25);
  inset: 0 0 0 0;
  z-index: 20;
}
.plan-section .filter-options-popup.active {
  display: grid;
  animation: fade-in 300ms forwards;
}
.plan-section .filter-options-popup .options-container {
  width: 90%;
  max-width: 300px;
  max-height: 345px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.4);
}
.plan-section .filter-options-popup.active .options-container {
  animation: translate-in-left 300ms forwards;
}
.plan-section .filter-options-popup .options-container ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  max-height: 268px;
  overflow: auto;
}
.plan-section
  .filter-options-popup
  .options-container
  ul::-webkit-scrollbar-track {
  background: transparent;
}
.plan-section .filter-options-popup .options-container ul li {
  display: flex;
  margin: 0 10px;
  border-radius: 4px;
  line-height: initial;
}
.plan-section .filter-options-popup .options-container ul {
  margin: 0;
}
.plan-section .filter-options-popup .options-container ul li:hover {
  background-color: #eaedf1;
}
.plan-section .filter-options-popup .options-container ul li:first-child {
  margin-top: 10px;
}
.plan-section .filter-options-popup .options-container ul li:last-child {
  margin-bottom: 10px;
}
.plan-section .filter-options-popup .options-container .register-btn {
  display: block;
  width: calc(100% - 32px);
  font-size: 14px;
  height: 40px;
  margin: 16px;
  padding: 0px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  background-color: var(--primary);
  color: #fff;
}
.plan-section
  .filter-options-popup
  .options-container
  ul
  li
  input[type="radio"] {
  display: none !important;
}
.plan-section
  .filter-options-popup
  .options-container
  ul
  li
  input[type="checkbox"] {
  margin: 0 3px 0 0 !important;
}
.plan-section .filter-options-popup .options-container label {
  font-size: 16px;
  padding: 10px;
  flex-grow: 1;
  color: #000;
  margin: 0px 0px 0px 0px !important;
}
.plan-section .filter-options-popup .close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.plan-section .filter-options-popup .close-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.plan-section .form-container .form--cta {
  font-size: 14px;
  font-weight: bold;
  padding: 8px 24px;
  border: none;
  outline: none;
  border-radius: 4px;
  color: #fff;
  background-color: var(--primary);
}
.plan-section .form-container .form--select-plan .plan {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.plan-section .form-container .form--select-plan .plan #selected-plan {
  position: absolute;
  top: -4px;
  right: -5px;
}
.plan-section .form-container .form--select-plan .plan img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  cursor: pointer;
}
.plan-section .form-container .form--select-plan .plan .selected-image {
  display: none;
}
.plan-section .plan label {
  display: block;
  padding: 3px;
  border: 1px solid #d1d5db;
}
.plan-section .plan #selected-plan:checked + label {
  border-color: #8ab8ff;
}
.plan-section .plan #selected-plan:checked + label .selected-image {
  display: block;
}
.plan-section .plan #selected-plan:checked + label .unselected-image {
  display: none;
}
.plan-section .form-container .form--select-plan .plan-select-btns {
  display: flex;
  gap: 1rem;
  margin-top: 24px;
}
.plan-section .form-container .back-btn {
  background-color: #d1d5db;
  font-size: 14px;
  font-weight: bold;
  color: var(--blck);
  padding: 8px 24px;
  border-radius: 4px;
  outline: none;
  border: none;
}
.plan-section .form-container:not(.onform) .form--varible-part form {
  display: none;
}
.plan-section .form-container.onform .form--varible-part .form--select-plan {
  display: none;
}
.reviews-section .reviews-list {
  display: flex;
  list-style-type: none;
  overflow-x: auto;
  gap: 1rem;
  padding: 0 2px;
}

.reviews-section .reviews-list .review-card {
  display: flex;
  min-width: 350px;
  width: 370px;
}
.reviews-section .reviews-list .review-card .review-item {
  position: relative;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 16px;
  overflow: hidden;
  z-index: 1;
  -webkit-user-drag: none;
  user-select: none;
}
.reviews-section .reviews-list .review-card .review-item::after {
  content: "";
  position: absolute;
  background-color: #fff2ee;
  width: 210px;
  height: 162px;
  top: -48px;
  left: -103px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -1;
}
.reviews-section .reviews-list .review-card .review-item::before {
  content: "";
  position: absolute;
  background-color: #fff2ee;
  width: 210px;
  height: 162px;
  top: initial;
  left: initial;
  bottom: -80px;
  right: -130px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -1;
}
.reviews-section .reviews-list .review-card .review-item .review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.reviews-section .reviews-list .review-card .review-item .review-image img {
  width: 70px;
  height: 70px;
  border-radius: 100vmax;
  vertical-align: bottom;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
.reviews-section .reviews-list .review-card .review-item .review-title {
  font-size: 14px;
  color: var(--primary);
  line-height: 2;
}
.reviews-section .reviews-list .review-card .review-item .rating {
  display: flex;
}
.reviews-section .reviews-list .review-card .review-item .rating svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}
.reviews-section .review-item .video-player {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.reviews-section .review-item .video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.reviews-section .review-item .video-player video.played {
  object-fit: contain;
}
.costum-scroller-indicator-js {
  width: 70px;
  height: 7px;
  background-color: #d1d5db;
  border-radius: 10px;
  margin: 14px auto;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.costum-scroller-indicator-js .scroll-thumb {
  width: 25%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 10px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: grab;
}
.costum-scroller-indicator-js .scroll-thumb.dragging {
  cursor: grabbing;
}
.bck-shps {
  position: relative;
  background-color: #fdf9f7;
  overflow: hidden;
  z-index: 0;
}
.bck-shps::before {
  content: "";
  position: absolute;
  background-color: #fff2ee;
  width: 110px;
  height: 90px;
  top: initial;
  left: initial;
  bottom: -20px;
  left: -25px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -2;
}
.bck-shps::after {
  content: "";
  position: absolute;
  background-color: #fff2ee;
  width: 110px;
  height: 90px;
  top: -15px;
  right: -25px;
  border-radius: 79% 21% 48% 52% / 59% 62% 38% 41%;
  z-index: -2;
}
.achivment-section .achivment--box {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}
.achivment-section .achivment--box.wide {
  margin-bottom: 24px;
}
.achivment-section .achivment--box.wide ol {
  list-style: none;
  counter-reset: item;
}
.achivment-section .achivment--box.wide ol li {
  counter-increment: item;
  margin-bottom: 8px;
  color: var(--blck);
    list-style-type: none;
      margin: 0px 0px 0px 0px;
}
.achivment-section .achivment--box.wide ol li:before {
  content: counter(item);
  background: #fce9e2;
  border-radius: 100vmax;
  color: #f43d00;
  width: 24px;
  height: 24px;
  padding: 2px 0 0 2px;
  text-align: center;
  display: inline-block;
  margin-left: 6px;
}
.achivment-section .achivment--box h3 {
  color: #0066ff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
}
.achivment-section .box-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.achivment-section .box-wrapper .achivment--box {
  flex-basis: 100%;
}
.achivment-section .sample-imgs {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.achivment-section .sample-imgs img {
  width: 100%;
  max-width: 840px;
  height: auto;
  cursor: pointer;
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  margin-top: -30px;
}
.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox .close-btn svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}
.faq-section .faq-items {
  list-style-type: none;
}
.faq-section ul,
ol {
  margin: 0px 0px 0px 0px !important;
}
.faq-section .faq-items .faq-item {
  padding: 14px 15px;
  margin-bottom: 1rem;
  border-radius: 10px;
  background-color: #e1eaff;
}
.faq-section .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.faq-section .faq-item .faq-question strong {
  font-weight: bold;
}
.faq-section .faq-item .faq-question[aria-expanded="true"] .angle-down {
  transform: rotate(180deg);
}
.faq-section .faq-item .angle-down {
  flex-shrink: 0;
  height: 22px;
  width: 22px;
  transition: transform 200ms ease;
}
.faq-section .faq-item .faq-answer {
  font-size: 14px;
  margin-top: 14px;
  display: none;
}
.faq-section .faq-item .faq-answer :where(span, p) {
  font-size: inherit;
}
.faq-section .faq-item.active .faq-question {
  color: var(--primary);
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}
.faq-section .cta-def {
  width: fit-content;
  margin: 0 auto;
  padding: 12px 24px;
}
.moreinfo-section .read-more-btn {
  display: flex;
  margin: 0 auto;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--primary);
  background-color: #e1eaff;
}
.moreinfo-section .title {
  font-size: 19px;
  margin-bottom: 14px;
}
.moreinfo-section .content-wrapper p {
  margin-bottom: 5px;
}
.moreinfo-section .content-wrapper {
  position: relative;
  height: 3lh;
  overflow: hidden;
}
.moreinfo-section .content-wrapper.expanded {
  height: auto;
}
.moreinfo-section .content-wrapper:not(.expanded):after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}
.moreinfo-section .full-content h3 {
  font-size: 17px;
  line-height: 1.8;
  margin-top: 14px;
  color: var(--blck);
}
.moreinfo-section .full-content ul {
  margin-top: 14px;
  list-style-position: inside;
}
.moreinfo-section .full-content ul li {
  color: var(--blck);
  line-height: 1.7;
  margin-bottom: 8px;
}
.mag-section-cat-cta .section-items {
  list-style-type: none;
}
.mag-section-cat-cta ul {
  margin: 0px 0px 0px 0px !important;
}
.mag-section-cat-cta .section-items .item {
  position: relative;
  border-radius: 10px;
  border: 1px solid #bac6d3;
  overflow: hidden;
}
.mag-section-cat-cta .section-items .title {
  font-size: 1rem;
  color: #000;
  padding: 0 8px;
  margin-bottom: 4px;
}
.mag-section-cat-cta .section-items .meta {
  line-height: 1.5;
  font-size: 12px;
  color: #6e7a86;
  margin: 0 8px;
}
.mag-section-cat-cta .section-items .meta * {
  line-height: inherit;
}
.mag-section-cat-cta .section-items .description {
  font-size: 14px;
  line-height: 1.7;
  margin: 15px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mag-section-cat-cta .section-items .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1rem;
  line-height: 1.75;
  padding: 9px 0 7px;
  color: #fff;
  background-color: var(--primary);
  border-radius: 4px;
  margin: 15px 8px 8px;
}
.mag-section-cat-cta .section-items .cta svg {
  fill: #fff;
}
.mag-section-cat-cta .section-items {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mag-section-cat-cta .section-items a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 10;
}
.mag-section-cat-cta .section-items svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.mag-section-cat-cta .section-items .pic {
  margin-bottom: 16px;
}
.mag-section-cat-cta .section-items .pic img {
  display: block;
  width: 100%;
  border-radius: 0 0 8px 8px;
  object-fit: cover;
}
.mag-section-cat-cta .see-all-cta {
  width: fit-content;
  margin: 20px auto 0 0;
}
.mag-section-cat-cta .see-all-cta a {
  display: block;
  font-size: 14px;
  color: var(--primary);
  padding: 9px 18px;
  border: 2px solid var(--primary);
  border-radius: 10px;
}
.mag-section-cat-cta .see-all-cta svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  fill: var(--primary);
}
.custom-scroller-menu {
  display: flex;
  overflow-x: auto;
  /* scroll-snap-type: x mandatory; */
}
.custom-scroller-menu > .container {
  display: flex;
  flex: 0 0 auto;
  scroll-snap-type: x mandatory;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}
.custom-scroller-menu .item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  user-select: none;
}
.custom-scroller-menu .item .cta {
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  padding: 4px 8px 6px 12px;
  border-radius: 8px;
  font-size: 12 px;
  line-height: 2;
  color: var(--blck);
}
.custom-scroller-menu .item.current .cta {
  color: #fff;
  background-color: var(--primary);
  border-radius: 8px;
}
.custom-scroller-menu .item .cta .icon {
  margin-right: 6px;
}
.custom-scroller-menu .item .cta .icon svg {
  fill: var(--blck);
  width: 18px;
  height: 18px;
}
.highlighted-text {
  position: relative;
  display: inline-block;
}

.highlighted-text::before {
  content: "";
  position: absolute;
  top: 15%;
  left: -4px;
  height: 85%;
  width: 110%;
  background-color: #f9f94d;
  transform: rotate(1.5deg);
  z-index: -1;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .benefits-section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 767px) {
  .howtouse-section .cta-def {
    display: none;
  }
  .reviews-section .reviews-list {
    margin: 0;
  }
  .benefits-section ul {
    margin: 0;
  }
  .sample-imgs .scroll-btn {
    display: grid;
  }
  .sample-imgs .scroll-btn.prev {
    right: 0;
  }
  .sample-imgs .scroll-btn.next {
    left: 0;
  }
  .sample-imgs img.stage-0 {
    animation: translate-in-right 200ms forwards;
  }
  .sample-imgs img.stage-1 {
    animation: translate-in-left 200ms forwards;
  }
  .sample-imgs[data-stage="0"] img.stage-1 {
    display: none;
  }
  .sample-imgs[data-stage="1"] img.stage-1 {
    display: inline-block;
  }
  .sample-imgs[data-stage="1"] img.stage-0 {
    display: none;
  }
  .sample-imgs[data-stage="1"] .scroll-btn.next {
    display: none;
  }
  .sample-imgs[data-stage="0"] .scroll-btn.prev {
    display: none;
  }
  .custom-scroller-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero-section .back-icon svg {
    display: none;
  }
  .hero-section > .container {
    flex-direction: column-reverse;
    padding: 32px 20px;
  }
  .hero-section h1.title {
    font-size: 22px;
  }
  .def-sec-header .title {
    font-size: 19px;
  }
  .def-sec-header .description {
    font-size: 13px;
  }
  .benefits-section ul {
    display: flex;
    margin: 0 -20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .benefits-section ul li {
    min-width: 100vw;
    scroll-snap-align: center;
    padding: 0 20px;
  }
  .benefits-section .control-dots {
    display: flex;
  }
  .introduction-section .content {
    flex-direction: column;
    gap: 1rem;
  }
  .introduction-section .content .video {
    width: 100%;
  }
  .introduction-section .content p {
    font-size: 14px;
    text-align: justify;
  }
  .howtouse-section .content ul li {
    width: 100%;
  }
  .howtouse-section .content .scroll-btn {
    display: grid;
    transform: translateY(0);
    top: 176px;
  }
  .howtouse-section .content li .step--content {
    align-self: flex-start !important;
  }
  .howtouse-section .content .scroll-btn.prev {
    right: calc(25% - 40px);
  }
  .howtouse-section .content .scroll-btn.next {
    left: initial;
    right: 25%;
  }
  .howtouse-section .cta-def {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 50%;
    font-size: 14px;
  }
  .plan-section .form-container .form--title {
    text-align: center;
    line-height: 1.6;
    margin: 18px 18px 42px;
    font-size: 16px;
  }
  .plan-section .form-container .form--description {
    font-size: 13px;
    text-align: center;
    margin-top: 12px;
  }
  .plan-section .form-container .form--step-bar .step {
    width: 130px;
    height: 32px;
    font-size: 12px;
  }
  .plan-section .form-container .label {
    font-size: 14px;
  }
  .plan-section .form-container .pet-gender .label svg {
    width: 28px;
    height: 28px;
  }
  .plan-section .form-container {
    padding: 0 16px 24px;
  }
  .plan-section .form-container .form--grid-inps {
    gap: 1rem;
  }
  .plan-section .box-container .placeholder {
    font-size: 13px;
  }
  .plan-section .form-container .form--grid-inps input[type="text"] {
    font-size: 13px;
  }
  .plan-section .form-container .form--select-plan .plan-select-btns {
    justify-content: center;
  }
  .reviews-section .reviews-list {
    margin: 0 -20px;
    gap: 0;
  }
  .reviews-section .reviews-list .review-card {
    min-width: 100vw;
    padding: 0 20px 20px;
  }
  .achivment-section .achivment--box p {
    font-size: 14px;
  }
  .achivment-section .box-wrapper {
    flex-direction: column;
  }
  .faq-section .faq-item .faq-question {
    font-size: 14px;
  }
  .moreinfo-section .content-wrapper {
    height: 5lh;
  }
  .moreinfo-section .content-wrapper p {
    font-size: 15px;
  }
  .mag-section-cat-cta .section-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-section .pattern-icons svg:where(:nth-child(2), :nth-child(3)) {
    display: none;
  }
  .hero-section .pattern-icons svg:first-child {
    transform: rotate(90deg);
    top: initial;
    bottom: -10px;
    right: -50px;
  }
  .hero-section .pattern-icons svg:nth-child(4) {
    bottom: 30%;
  }
  .plan-section .form-container .back-wave {
    height: 86px;
  }
  .custom-scroller-menu {
    margin: 24px -20px 0;
  }
  .custom-scroller-menu > .container {
    margin: 0 20px;
  }
  .achivment-section .achivment--box .control-dots-nojs {
    display: none;
  }
}
@keyframes translate-in-right {
  from {
    transform: translateX(200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes translate-in-left {
  from {
    transform: translateX(-200px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}