@charset "UTF-8";
:root {
  --eggplant: #54214d;
  --secondary-eggplant-tint: #8f4f87;
  --secondary-eggplant: #dcbfd8;
  --green: #12877a;
  --beige: #f7f5f0;
  --blue: #ccebff;
  --purple: #d6dbfb;
  --light-purple: #f5f6fe;
  --light-blue: #e6f7ff;
  --light-pink: #fbf0fa;
  --secondary-green: #a0ede2;
  --light-green: #dffffa;
  --light-beige: #fcfbfa;
  --primary-beige: #f7f5f0;
}

@font-face {
  font-family: "polin";
  src: url("../../fonts/Polin-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "polin";
  src: url("../../fonts/Polin-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "polin";
  src: url("../../fonts/Polin-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "w4-icons";
  src: url("../../fonts/icomoon.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
.view-desktop {
  display: block;
}
.view-mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .view-desktop {
    display: none;
  }
  .view-mobile {
    display: block;
  }
}

body {
  margin: 0;
  font-family: "polin", sans-serif;
  font-weight: 400;
  color: var(--eggplant);
}

section {
  padding: 0 5rem;
  box-sizing: border-box;
}

.basic-grid {
  width: 100%;
  max-width: 144rem;
  margin: auto;
}
.basic-grid.narrow {
  max-width: 107rem;
}
@media only screen and (max-width: 1023px) {
  .basic-grid {
    max-width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
}

.btn-primary {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 2.4rem */
  color: white;
  background: var(--green);
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  text-decoration: none;
  transition: 0.3s all;
  display: inline-block;
}
.btn-primary:hover {
  background: #46d1bd;
}

.btn-secondary {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.4rem */
  color: var(--eggplant);
  border: 1px solid var(--eggplant);
  text-decoration: none;
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  display: inline-block;
  align-self: flex-start;
  transition: 0.3s all;
}
.btn-secondary:hover {
  background: #8f4f87;
  color: white;
  border-color: #8f4f87;
}

.white-text {
  color: white;
}

.headline-1 {
  font-family: "polin", sans-serif;
  font-size: 5.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 6.38rem */
  white-space: pre-line;
}
.headline-1.light {
  font-weight: 300;
}
.headline-1 strong {
  font-weight: 600;
}

.headline-2 {
  font-family: "polin", sans-serif;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 4.55rem */
  white-space: pre-line;
}

.headline-3 {
  font-family: "polin", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 3rem */
  white-space: pre-line;
}

.papragraph-main,
p,
ul,
ol {
  font-family: "polin", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.4rem */
}

.caption {
  border-radius: 5.5rem;
  border-width: 0.25rem;
  border-style: solid;
  padding: 1rem 2rem;
  width: fit-content;
  margin-top: 0;
}
.caption.transparent {
  border-color: var(--eggplant);
}
.caption.solid {
  background: var(--Primary-Eggplant, #54214d);
  color: white;
  border-width: 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: grey;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

form {
  display: grid;
  width: 100%;
  grid-template-rows: repeat(4, 4.8rem);
  gap: 2.1rem;
}
form .wpcf7-form-control-wrap {
  position: relative;
}
form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  left: 1rem;
  top: 1rem;
  user-select: none;
  font-size: 1.3rem;
}
form input:not([type=checkbox]),
form textarea {
  line-height: 4.8rem;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  border-radius: 0.8rem;
  border: none;
  direction: rtl !important;
}
form input:not([type=checkbox])#email:not(:placeholder-shown), form input:not([type=checkbox])#phone:not(:placeholder-shown),
form textarea#email:not(:placeholder-shown),
form textarea#phone:not(:placeholder-shown) {
  direction: ltr;
}
form input:not([type=checkbox])#email:not(:placeholder-shown) + .wpcf7-not-valid-tip, form input:not([type=checkbox])#phone:not(:placeholder-shown) + .wpcf7-not-valid-tip,
form textarea#email:not(:placeholder-shown) + .wpcf7-not-valid-tip,
form textarea#phone:not(:placeholder-shown) + .wpcf7-not-valid-tip {
  left: auto;
  right: 1rem;
}
form input:not([type=checkbox])[type=submit],
form textarea[type=submit] {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  color: white;
  background: var(--green);
  padding: 1rem 3.8rem;
  border-radius: 5rem;
  text-decoration: none;
  display: inline-block;
  width: auto;
  transition: 0.3s all;
}
form input:not([type=checkbox])[type=submit]:hover,
form textarea[type=submit]:hover {
  background: #46d1bd;
}
form textarea {
  height: 16rem;
}
form input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
}
form input[type=checkbox]:checked + span:before {
  background-color: var(--green) !important;
}
form input[type=checkbox] + span {
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
}
form input[type=checkbox] + span:before {
  margin-left: 1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: block;
  content: "";
  background-color: white !important;
  border-radius: 0.2rem;
  background: url("../../assets/check.svg") no-repeat center center;
  background-size: 1.2rem;
  transition: 0.3s background-color;
}
form input[type=checkbox] + span a {
  color: white;
}
form .submit-con {
  display: flex;
  justify-content: flex-end;
}
form .submit-con .wpcf7-spinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--green) url(../../assets/loader.svg) center no-repeat !important;
  z-index: 1;
  opacity: 1;
  border-radius: 5rem;
  margin: 0;
}
form .respons-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-grow: 1;
  align-items: center;
}
form .respons-wrapper .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  color: white !important;
  font-size: 1.4rem !important;
}
@media only screen and (max-width: 1023px) {
  form input[type=checkbox] + span {
    font-size: 1.3rem;
    align-items: center;
  }
}

button {
  border: none;
}

.testimonials-area {
  padding: 13rem 0;
  background: var(--eggplant);
  color: var(--beige);
  padding: 7rem 0;
}
.testimonials-area .tests-splide {
  padding: 7rem 0;
}
.testimonials-area .testemonial-item.is-next .test-inner, .testimonials-area .testemonial-item.is-prev .test-inner {
  opacity: 0.6;
}
.testimonials-area .testemonial-item.is-active .test-inner {
  scale: 1;
  opacity: 1;
}
.testimonials-area .test-inner {
  border-radius: 0.8rem;
  border: 2px solid var(--beige);
  width: 40rem;
  height: 30rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  scale: 0.9;
  opacity: 0.3;
  transition: 0.3s all;
}
.testimonials-area .test-inner p.quote {
  position: relative;
  padding-top: 4rem;
  flex-grow: 1;
}
.testimonials-area .test-inner p.quote::before {
  content: "”";
  font-size: 14rem;
  line-height: 0;
  vertical-align: top;
  margin-right: 0.5rem;
  color: var(--beige);
  position: absolute;
  right: -1rem;
}
.testimonials-area .test-inner .persons-details {
  grid-template-columns: auto;
}
.testimonials-area .test-inner .persons-details.with-image {
  grid-template-columns: 6rem auto auto;
}
.testimonials-area .test-inner .persons-details.with-image .name,
.testimonials-area .test-inner .persons-details.with-image .role {
  margin: 0 1.5rem 0 0;
}
.testimonials-area .test-inner .persons-details .companys-logo-con {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.testimonials-area .test-inner .persons-details .companys-logo-con img {
  max-height: 3rem;
  width: auto;
}
.testimonials-area .test-inner .name-and-role {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.testimonials-area .test-inner .name,
.testimonials-area .test-inner .role {
  grid-column: 2/3;
  margin: 0;
  display: flex;
  align-items: flex-end;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 150%; /* 2.4rem */
}
.testimonials-area .test-inner .name {
  font-weight: 600;
}
.testimonials-area .test-inner .role {
  font-weight: 400;
}
.testimonials-area .test-inner .photo-con {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 2rem;
}
.testimonials-area .test-inner .photo-con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-area .splide__arrow--prev {
  height: 100%;
  right: 0;
  width: 50%;
  border-radius: 0;
  opacity: 0 !important;
}
.testimonials-area .splide__arrow--next {
  height: 100%;
  left: 0;
  width: 50%;
  border-radius: 0;
  opacity: 0 !important;
}
.testimonials-area .special-cursor-mover {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transition: 0.1s all;
  z-index: 9999;
}
.testimonials-area .special-cursor-mover .special-cursor-rotator {
  scale: 0.3;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s transform, 0.5s scale, 0.2s opacity;
  background: url(../../assets/up-arrow.svg) no-repeat center/contain;
}

.contact-area {
  padding: 13rem 0;
  background: var(--eggplant);
}
.contact-area h2 {
  color: white;
  margin: 0;
}
.contact-area .text-side {
  flex: 0 0 50%;
}
.contact-area .form-side {
  flex: 0 0 50%;
}
@media only screen and (max-width: 1023px) {
  .contact-area {
    padding: 4rem 0;
  }
}

.title-text-cta-image-component.short-hero,
section.short-hero {
  background: var(--eggplant);
  height: 70vh;
  margin-top: 6rem;
}
.title-text-cta-image-component img,
section img {
  width: 100%;
  height: auto;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)),
.title-text-cta-image-component.two-columns .basic-grid,
section.two-columns:not(:has(.basic-grid)),
section.two-columns .basic-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  height: 100%;
  gap: 14rem;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)) div:first-child,
.title-text-cta-image-component.two-columns .basic-grid div:first-child,
section.two-columns:not(:has(.basic-grid)) div:first-child,
section.two-columns .basic-grid div:first-child {
  order: 2;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)) .title,
.title-text-cta-image-component.two-columns .basic-grid .title,
section.two-columns:not(:has(.basic-grid)) .title,
section.two-columns .basic-grid .title {
  margin-bottom: 0;
}
.title-text-cta-image-component.two-columns:not(:has(.basic-grid)) .btn,
.title-text-cta-image-component.two-columns .basic-grid .btn,
section.two-columns:not(:has(.basic-grid)) .btn,
section.two-columns .basic-grid .btn {
  margin-top: 2rem;
}

.filters {
  margin: 8rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.filters .filter {
  font-size: 2rem;
  padding: 1rem 3rem;
  background-color: transparent;
  border: 0.1rem solid var(--eggplant);
  border-radius: 5rem;
  transition: 0.3s all;
  white-space: normal;
}
.filters button.filter:hover, .filters button.filter.active {
  background-color: var(--eggplant);
  color: white;
  cursor: pointer;
}
@media only screen and (max-width: 1023px) {
  .filters {
    margin: 4rem 0;
  }
  .filters .filter {
    font-size: 1.4rem;
    padding: 0.5rem 2rem;
  }
}

.loader-area {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 20rem 0;
}
.loader-area img {
  width: 6rem;
  height: 6rem;
}
.loader-area.show {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .loader-area {
    margin: 10rem 0;
  }
}

.appear-animation {
  transform: translate(0px, 100px);
  opacity: 0;
}

.load-animation {
  opacity: 0;
  animation: load-animation 0.5s;
  animation-fill-mode: forwards;
}

@keyframes load-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .headline-1 {
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    white-space: normal;
  }
  .headline-2 {
    font-size: 2.7rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    white-space: normal;
  }
  .headline-3 {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    white-space: normal;
  }
  .papragraph-main,
  p,
  ul,
  ol {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    white-space: normal;
  }
  .btn-primary {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    padding: 1.3rem 3.8rem;
  }
  section.testimonials-area {
    padding-bottom: 4rem !important;
    transform: translate3d(0, 0, 0);
    display: block !important;
  }
  section.testimonials-area .test-inner {
    width: 80vw;
    max-width: 40rem;
    height: auto;
  }
  section.testimonials-area .test-inner p.quote::before {
    font-size: 11rem;
  }
  section.testimonials-area .test-inner .persons-details.with-image {
    grid-template-columns: 6rem auto;
  }
  section.testimonials-area .test-inner .persons-details .companys-logo-con {
    justify-content: flex-start;
    padding-top: 2rem;
  }
  section.testimonials-area .tests-splide {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
  }
  section.testimonials-area .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 2.8rem;
    padding-top: 2rem;
  }
  section.testimonials-area .splide__arrow {
    opacity: 1 !important;
    transform: none !important;
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    border: 1px solid #8f4f86;
    background: transparent !important;
    position: static;
  }
  section.testimonials-area .splide__arrow svg path {
    stroke: #8f4f86;
    fill: #8f4f86;
  }
  section.contact-area {
    display: block !important;
  }
  section.contact-area .basic-grid {
    display: block;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  section.contact-area .basic-grid h2 {
    text-align: center;
    margin-bottom: 4rem;
  }
  section.contact-area .basic-grid .submit-con {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
  }
  section.contact-area .basic-grid .submit-con .respons-wrapper {
    margin-bottom: 1.5rem;
  }
}
.clients-area {
  padding-top: 0;
  padding: 13rem 0;
}
.clients-area h2 {
  text-align: center;
  margin: 0 0 4.3rem 0;
}
.clients-area .clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7.5rem;
  justify-content: center;
}
.clients-area .clients-list li img {
  height: 6.9rem;
  width: auto;
}

@media only screen and (max-width: 1023px) {
  .clients-area {
    display: block !important;
    padding: 6rem 0;
  }
  .clients-area .basic-grid {
    padding: 0 2rem !important;
    box-sizing: border-box;
  }
  .clients-area .basic-grid .clients-list {
    column-gap: 3.5rem;
    row-gap: 2.8rem;
  }
  .clients-area .basic-grid .clients-list li img {
    height: 4.9rem;
    width: auto;
  }
}
.bullets-component {
  padding: 8rem 0;
}
.bullets-component .title {
  text-align: center;
}
.bullets-component ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 4rem 0;
}
.bullets-component ul li {
  padding: 0 5rem;
  box-sizing: border-box;
  border-radius: 0.8rem;
}
.bullets-component ul li img {
  width: 7.7758rem;
  height: 7.7758rem;
  margin-bottom: 4rem;
}
.bullets-component ul li .title,
.bullets-component ul li p {
  margin: 0;
}
.bullets-component ul li .title {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 1023px) {
  .bullets-component {
    padding: 4rem 2rem;
  }
  .bullets-component ul {
    grid-template-columns: 1fr;
  }
  .bullets-component ul li {
    padding: 3rem 3rem;
  }
  .bullets-component ul li img {
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
  }
}

.faq-component {
  padding: 15rem 0;
}
.faq-component .grid {
  grid-template-columns: 2fr 4fr;
  gap: 7.9rem;
}
.faq-component .grid h2 {
  margin-top: 0;
}
.faq-component .grid img {
  width: 82%;
  display: flex;
}
.faq-component .grid ul.items li {
  border-radius: 0.8rem;
  border: 0.1rem solid;
  overflow: hidden;
  margin-bottom: 2rem;
}
.faq-component .grid ul.items li:last-child {
  margin-bottom: 0;
}
.faq-component .grid ul.items li:has(.is-open) .question:after {
  rotate: 0deg;
}
.faq-component .grid ul.items li .question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.faq-component .grid ul.items li .question p {
  margin: 0;
  text-align: right;
  white-space: normal;
}
.faq-component .grid ul.items li .question:after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  background-size: 1.8rem !important;
  display: block;
  background: url("../../assets/arrow_down.svg") no-repeat center center;
  rotate: 180deg;
  transition: 0.3s ease-out all;
  opacity: 50%;
}
.faq-component .grid ul.items li .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-out all;
  padding: 0 2rem;
}
.faq-component .grid ul.items li .answer .inner {
  overflow: hidden;
  margin: 0;
  white-space: normal;
}
.faq-component .grid ul.items li .answer.is-open {
  grid-template-rows: 1fr;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 1023px) {
  .faq-component {
    padding: 0;
  }
  .faq-component .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .faq-component .grid ul.items li {
    margin-bottom: 1.5rem;
  }
  .faq-component .grid > div:first-of-type {
    display: flex;
    flex-direction: column-reverse;
  }
  .faq-component .grid > div:first-of-type .title {
    margin: 0;
  }
  .faq-component .grid > div:first-of-type img {
    width: 70%;
    margin: auto;
    display: flex;
    padding: 2rem 0;
  }
}

section.banner {
  background-color: var(--secondary-eggplant);
  height: auto;
  padding: 5rem 0 !important;
}
section.banner .banner-container {
  box-shadow: 4px 4px 5px 0 #54214d;
  width: 50%;
  height: auto;
  overflow: hidden;
  margin: auto;
  display: flex;
  justify-content: center;
  border-radius: 1rem;
}
@media only screen and (max-width: 1023px) {
  section.banner {
    padding: 5rem 0 !important;
  }
  section.banner .banner-container {
    width: 80%;
    height: 22rem;
  }
}

.single-solution section.short-hero .headline-3 {
  font-size: 2.5rem;
  line-height: 150%;
  margin: 2rem 0;
}
.single-solution section.features .title-text-cta-image-component {
  padding: 8rem 0;
  border-bottom: 0.4rem solid;
  grid-template-columns: 0.75fr 1fr;
}
.single-solution section.features .title-text-cta-image-component .title {
  margin-bottom: 1rem;
}
.single-solution section.features .title-text-cta-image-component:last-of-type {
  border-bottom: none;
}
.single-solution section.bullets-component.number-bullets-list:not(.bottom-bullets) {
  margin-bottom: 10rem;
}
.single-solution section.bullets-component.number-bullets-list:not(.bottom-bullets) .text-caption {
  font-size: 5.5rem;
}
.single-solution section.bullets-component.number-bullets-list:not(.bottom-bullets) .title {
  margin-top: 0;
}
.single-solution section.bullets-component.number-bullets-list:not(.bottom-bullets) li {
  border-right: 0.5rem solid;
  border-radius: 0;
}
.single-solution section.bullets-component.number-bullets-list:not(.bottom-bullets) li:first-child {
  border-right: none;
}
.single-solution section .bottom-bullets li {
  padding: 8rem 5rem;
}
.single-solution section.bottom-section .support {
  padding: 10rem 0;
}
.single-solution section.bottom-section .support .headline-2 {
  margin: 0;
}
.single-solution section.bottom-section .support.grid {
  grid-template-columns: 1.2fr 5fr;
  gap: 12rem;
}
.single-solution section.bottom-section .support.grid ul {
  flex-wrap: wrap;
  gap: 2.2rem 2.5rem;
}
.single-solution section.bottom-section .support.grid ul li {
  border-radius: 1.544rem;
  height: 10rem;
}
.single-solution section.bottom-section .support.grid ul li img {
  width: 100%;
  height: -webkit-fill-available;
}
.single-solution section.other-solutions {
  padding: 6rem 0;
  background: var(--primary-beige);
}
.single-solution section.other-solutions .splide__arrow {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  border: 1px solid #8f4f87;
  background: white !important;
  opacity: 1 !important;
}
.single-solution section.other-solutions .splide__arrow.splide__arrow--prev {
  right: 10em;
}
.single-solution section.other-solutions .splide__arrow.splide__arrow--next {
  left: 10em;
}
.single-solution section.other-solutions .splide__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.single-solution section.other-solutions .splide__arrow svg path {
  fill: none;
  stroke: var(--eggplant);
  stroke-width: 2px;
}
.single-solution section.other-solutions .splide__arrow:disabled {
  opacity: 0.3 !important;
}
.single-solution section.other-solutions .splide__slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single-solution section.other-solutions a {
  text-decoration: none;
  color: var(--eggplant);
  display: block;
  margin-bottom: 2rem;
  width: fit-content;
}
.single-solution section.other-solutions .papragraph-main {
  margin-top: 4rem;
}
@media only screen and (max-width: 1023px) {
  .single-solution section.short-hero {
    height: auto;
    padding: 9rem 0 5rem 0;
    margin: 0;
  }
  .single-solution section.short-hero .headline-3 {
    font-size: 1.4rem;
    line-height: 150%;
  }
  .single-solution section.short-hero .basic-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }
  .single-solution section.short-hero .basic-grid .caption {
    margin: auto;
  }
  .single-solution section.features {
    padding: 0;
  }
  .single-solution section.features .two-columns {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 4rem;
    gap: 2rem;
  }
  .single-solution section.bullets-component .number-bullets-list:not(.bottom-bullets) {
    padding-top: 0;
    padding-bottom: 0;
  }
  .single-solution section.bullets-component .number-bullets-list:not(.bottom-bullets) li {
    border-right: none;
    border-bottom: 0.5rem solid;
    width: 80%;
    margin: auto;
    padding: 2rem 0 4rem 0;
  }
  .single-solution section.bullets-component .number-bullets-list:not(.bottom-bullets) li .title {
    margin-top: 2rem;
  }
  .single-solution section.bullets-component .number-bullets-list:not(.bottom-bullets) li .text-caption {
    font-size: 3.5rem;
  }
  .single-solution section.bullets-component .number-bullets-list:not(.bottom-bullets) li:last-of-type {
    border-bottom: none;
  }
  .single-solution section.bottom-section {
    padding: 0;
  }
  .single-solution section.bottom-section .support.grid {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    gap: 3rem;
    padding-bottom: 2rem;
  }
  .single-solution section.bottom-section .support.grid ul {
    gap: 1.3rem;
    justify-content: center;
  }
  .single-solution section.bottom-section .support.grid ul li {
    height: 5.0467rem;
    border-radius: 0.7275rem;
  }
  .single-solution section.other-solutions {
    padding-top: 2rem;
    text-align: center;
  }
  .single-solution section.other-solutions .splide__arrow {
    top: 42rem;
  }
  .single-solution section.other-solutions .splide__arrow--prev {
    right: 2em !important;
  }
  .single-solution section.other-solutions .splide__arrow--next {
    left: 2em !important;
  }
  .single-solution section.other-solutions .solution-slider .splide__slide {
    width: 88vw !important;
  }
  .single-solution section.other-solutions .solution-slider .splide__slide a.btn {
    width: max-content;
    margin: auto;
    margin-top: 2rem;
  }
}/*# sourceMappingURL=solution.css.map */