:root {
  --theme-white: #FFFFFF;
  --theme-gray-light: #e3e4e4;
  --theme-black: #000000;
  --theme-orange: #cf5b28;
  --theme-orange-dark: #cd4628;
  --theme-purple: #da8cb6;
  --theme-purple-light: #F0A4C0;
  --theme-creme: #fff5e9;
  --theme-gray: #f4e2e0;
  --theme-gold: #ffbf59;
  --theme-burgundy: #36101f;
  --theme-burgundy-transparent: rgba(54, 16, 31, 0.9);
  --theme-text: var(--theme-burgundy);
}

body {
  font-size: 16px;
  font-size: clamp(1.04rem, 1.03rem + 0.05vw, 1.07rem);
  font-family: "Rubik", sans-serif;
  line-height: 1.4;
  color: var(--theme-burgundy);
}

.specialfont {
  font-family: "Abril Fatface", serif;
}

.shuffle {
  -webkit-font-kerning: none;
          font-kerning: none;
  -webkit-font-feature-settings: "liga" 0;
          font-feature-settings: "liga" 0;
  white-space: nowrap;
}

.logo {
  display: inline-block;
}
.logo svg {
  display: block;
  fill: var(--theme-white);
  max-width: 150px;
  width: 100%;
}
.logo svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.logo svg path:nth-child(1) {
  -webkit-transition-delay: 0.025s;
          transition-delay: 0.025s;
}
.logo svg path:nth-child(2) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.logo svg path:nth-child(3) {
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}
.logo svg path:nth-child(4) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.logo svg path:nth-child(5) {
  -webkit-transition-delay: 0.125s;
          transition-delay: 0.125s;
}
.logo svg path:nth-child(6) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.logo svg path:nth-child(7) {
  -webkit-transition-delay: 0.175s;
          transition-delay: 0.175s;
}
.logo svg path:nth-child(8) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.logo svg path:nth-child(9) {
  -webkit-transition-delay: 0.225s;
          transition-delay: 0.225s;
}
.logo svg path:nth-child(10) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.logo:hover svg, .logo:focus svg {
  fill: var(--theme-burgundy);
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.navbar .row {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.navbar-inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
.navbar-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-menu-trigger {
  display: none;
  border: 2px solid var(--theme-purple);
  background-color: transparent;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  color: var(--theme-white);
}
.navbar-menu-trigger .open {
  display: block;
}
.navbar-menu-trigger .close {
  display: none;
}
.navbar-menu-trigger.active .open {
  display: none;
}
.navbar-menu-trigger.active .close {
  display: block;
}
@media screen and (max-width: 1199px) {
  .navbar-menu-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.navbar-menu-list {
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.navbar-menu-list li:last-child {
  display: none;
}
@media screen and (max-width: 1199px) {
  .navbar-menu-list {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--theme-burgundy);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .navbar-menu-list li {
    width: 100%;
  }
  .navbar-menu-list li + li {
    margin-top: 1rem;
  }
  .navbar-menu-list li:last-child {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navbar-menu-list::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    z-index: -1;
    background-color: var(--theme-burgundy-transparent);
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .navbar-menu-list.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .navbar-menu-list.open::after {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .navbar-menu-list {
    width: 85%;
  }
}
.navbar-link {
  --x: 0px;
  font-family: "adelle-mono", sans-serif;
  position: relative;
  text-transform: uppercase;
  color: var(--theme-white);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 2px solid transparent;
  line-height: 1;
  padding: 0.8rem 1.2rem;
}
.navbar-link > * {
  pointer-events: none;
}
.navbar-link::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border: 2px solid var(--theme-purple);
  clip-path: polygon(calc(50% - var(--x)) -1rem, calc(50% + var(--x)) -1rem, calc(50% + var(--x)) calc(100% + 1rem), calc(50% - var(--x)) calc(100% + 1rem));
  -webkit-transition: border 0.3s ease, clip-path 0.3s ease;
  transition: border 0.3s ease, clip-path 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.navbar-link:hover, .navbar-link:focus {
  --x: 1rem;
}
.navbar-link-boxed {
  --x: 0%;
  border-color: var(--theme-purple);
}
.navbar-link-boxed::after {
  border: 2px solid var(--theme-orange);
}
@media screen and (max-width: 1199px) {
  .navbar-link {
    min-height: 50px;
  }
  .navbar-link::after {
    clip-path: unset;
    opacity: 0.1;
  }
  .navbar-link:hover::after, .navbar-link:focus::after {
    opacity: 1;
  }
}

.searcher {
  background-color: var(--theme-purple);
  color: var(--theme-white);
  padding: 5rem 0;
  text-align: center;
}
.searcher-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.searcher-title {
  font-family: "Abril Fatface", serif;
  font-size: 9.375rem;
  font-size: clamp(3.53rem, 1.94rem + 7.93vw, 7.89rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  pointer-events: none;
}
.searcher-title:not(.searcher-title-yellow) {
  margin: 0;
}
.searcher-title-yellow {
  color: var(--theme-gold);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1199px) {
  .searcher-title-yellow {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}
.searcher-slogan {
  font-family: "adelle", sans-serif;
  font-size: 1.16rem;
  font-size: clamp(1.09rem, 1.07rem + 0.11vw, 1.15rem);
  color: var(--theme-burgundy);
  margin: 0;
}
@media screen and (max-width: 1199px) {
  .searcher-slogan {
    margin-top: 0.5rem;
  }
}
.searcher-form {
  padding: 1rem 0;
  margin: 0 auto -1rem auto;
  max-width: 700px;
  width: 100%;
}
.searcher-form .form-control {
  font-size: 1.25rem;
}
.searcher-form .form-control:focus {
  color: var(--theme-text);
  background-color: var(--theme-white);
  border-color: var(--theme-purple);
  outline: 0;
  -webkit-box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem var(--theme-purple-light);
          box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem var(--theme-purple-light);
}

.section {
  position: relative;
  padding: 5rem 0;
}
.section-title {
  font-family: "Abril Fatface", serif;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .section {
    padding: 4rem 0;
  }
  .section-title {
    padding-inline: 1rem;
  }
}

.about {
  background-color: var(--theme-creme);
}

.howitworks {
  background-color: var(--theme-orange);
  color: var(--theme-creme);
}
.howitworks-steps {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .howitworks-steps {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.howitworks-item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.howitworks-item .icon {
  position: relative;
  font-size: 4rem;
  line-height: 1;
  margin: 0 0 2rem 0;
}
.howitworks-item .icon i {
  display: block;
  margin-bottom: -0.2rem;
}
.howitworks-item .icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150%;
  aspect-ratio: 1/1;
  background-color: var(--theme-creme);
  z-index: -1;
  opacity: 0.1;
  border-radius: 50%;
}
.howitworks-item .title {
  font-weight: 600;
  font-size: 2rem;
  margin: 0;
}
.howitworks-item + .howitworks-item::after {
  content: "\e52c";
  position: absolute;
  top: 50%;
  left: -0.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Phosphor-Fill" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
          font-variant-ligatures: discretionary-ligatures;
  font-size: 2rem;
}
@media screen and (max-width: 991px) {
  .howitworks-item + .howitworks-item::after {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -200%) rotate(90deg);
            transform: translate(-50%, -200%) rotate(90deg);
  }
}

.review {
  background-color: var(--theme-gray);
}
.review-slider {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(rgb(0, 0, 0)), color-stop(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) var(--outerContainerWidth), rgb(0, 0, 0) calc(var(--containerWidth) + var(--outerContainerWidth)), rgba(0, 0, 0, 0));
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(rgb(0, 0, 0)), color-stop(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(0, 0, 0) var(--outerContainerWidth), rgb(0, 0, 0) calc(var(--containerWidth) + var(--outerContainerWidth)), rgba(0, 0, 0, 0));
  cursor: ew-resize;
  margin-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .review-slider {
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.review-slider-progress-bar {
  height: 0.4rem;
  width: 100%;
  background-color: var(--theme-creme);
  overflow: hidden;
  border-radius: 1rem;
}
.review-slider-progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background: var(--theme-burgundy);
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
.review-slider.slick-initialized .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.review-slider.slick-initialized .slick-list .slick-track .slick-slide {
  height: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.review-slider.slick-initialized .slick-list .slick-track .slick-slide.near-1 {
  opacity: 0.75;
}
.review-slider.slick-initialized .slick-list .slick-track .slick-slide.near-2 {
  opacity: 0.5;
}
.review-slider.slick-initialized .slick-list .slick-track .slick-slide.near-3 {
  opacity: 0.25;
}
.review-slider.slick-initialized .slick-list .slick-track .slick-slide > div {
  height: 100%;
  padding: 0 0.5rem;
}
.review-item {
  max-width: 420px;
  height: 100%;
  background-color: var(--theme-white);
  border-radius: 1rem;
  overflow: hidden;
  font-family: "adelle", sans-serif;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .review-item {
    max-width: unset;
  }
}
.review-item-meta {
  padding: 1.5rem;
  background-color: var(--theme-creme);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.review-item-author-link {
  font-weight: 600;
  color: var(--theme-burgundy);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.review-item-author-link:hover, .review-item-author-link:focus {
  color: var(--theme-purple);
}
.review-item-author-title {
  margin: 0;
}
.review-item-stats {
  text-align: right;
}
.review-item-stats-count {
  margin: 0;
}
.review-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.5rem;
}
.review-item-content blockquote {
  margin: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.review-item-content blockquote p:last-child {
  margin-top: auto;
}
.review-item-content p:last-child {
  margin: 0;
}

.experience {
  padding: 7rem 0;
}
.experience p {
  position: relative;
  z-index: 2;
  color: var(--theme-orange-dark);
}
.experience p span {
  color: var(--theme-purple);
}
.experience-circles {
  position: absolute;
  top: 0;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  z-index: 1;
  pointer-events: none;
  padding: 1rem 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.experience-circles svg {
  display: block;
}
.experience-circles-left {
  left: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.experience-circles-left svg {
  width: 80%;
  fill: var(--theme-orange);
  -webkit-transform: translate(-62%, 0) rotate(-5deg);
          transform: translate(-62%, 0) rotate(-5deg);
}
@media screen and (max-width: 991px) {
  .experience-circles-left {
    display: none;
  }
}
.experience-circles-right {
  right: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.experience-circles-right svg {
  width: 100%;
  fill: var(--theme-creme);
  -webkit-transform: translate(50%, -15%);
          transform: translate(50%, -15%);
}
@media screen and (max-width: 991px) {
  .experience-circles-right {
    right: unset;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .experience-circles-right svg {
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0, 0) scale(1.75);
            transform: translate(0, 0) scale(1.75);
  }
}
.experience-alt {
  background-image: url("../img/doodles.png");
  background-repeat: no-repeat;
  background-position: 50% 85%;
  background-size: cover;
}

.main-footer {
  background-color: var(--theme-burgundy);
  color: var(--theme-creme);
  padding: 4rem 0;
}
.main-footer .logo svg {
  max-width: 140px;
}
.main-footer .logo svg:hover, .main-footer .logo svg:focus {
  fill: var(--theme-purple);
}
.main-footer ul li + li {
  margin-top: 0.4rem;
}
.main-footer ul a {
  color: var(--theme-white);
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.main-footer ul a:hover, .main-footer ul a:focus {
  color: var(--theme-purple);
}

@property --blink {
  syntax: "<number>";
  initial-value: 0;
  inherits: false;
}
.eyes {
  --eyeSize: 35px;
  --x: 0px;
  --y: 0px;
  --blinkColor: var(--theme-burgundy);
  --blink: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--eyeSize) * 1.4142135624 * 0.4);
}
.eyes .eye {
  position: relative;
  display: block;
  width: var(--eyeSize);
  height: var(--eyeSize);
  background-color: var(--theme-creme);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 90% 0 90% 0;
  overflow: hidden;
  outline: 1px solid var(--theme-burgundy);
}
.eyes .eye::before {
  --size: calc(var(--eyeSize) * 0.4);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(0) translate(calc(-50% + var(--x) * 0.5), calc(-50% + var(--y) * 0.5));
          transform: rotate(0) translate(calc(-50% + var(--x) * 0.5), calc(-50% + var(--y) * 0.5));
  width: var(--size);
  height: var(--size);
  background-color: #1c1d26;
  outline: calc(var(--size) * 0.5) solid var(--theme-purple);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.05s ease-out;
  transition: -webkit-transform 0.05s ease-out;
  transition: transform 0.05s ease-out;
  transition: transform 0.05s ease-out, -webkit-transform 0.05s ease-out;
}
.eyes .eye::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg) translateY(calc(var(--eyeSize) * 1.4142135624 * var(--blink) * -1));
          transform: translate(-50%, -50%) rotate(-45deg) translateY(calc(var(--eyeSize) * 1.4142135624 * var(--blink) * -1));
  border-radius: 0 0 100% 100%;
  -webkit-animation: blinkblink 4s ease forwards infinite;
          animation: blinkblink 4s ease forwards infinite;
  background-color: var(--blinkColor);
}

@-webkit-keyframes blinkblink {
  0%, 10%, 20%, 50%, 60%, 70%, 100% {
    --blink: 1;
  }
  15%, 55%, 65% {
    --blink: 0;
  }
}

@keyframes blinkblink {
  0%, 10%, 20%, 50%, 60%, 70%, 100% {
    --blink: 1;
  }
  15%, 55%, 65% {
    --blink: 0;
  }
}
.breadcrumbs {
  padding: 1rem 0;
  background-color: var(--theme-purple);
}
.breadcrumbs .breadcrumb {
  --bs-breadcrumb-divider-color: var(--theme-text);
  --bs-breadcrumb-item-active-color: var(--theme-text);
  margin: 0;
}
.breadcrumbs .breadcrumb a {
  color: var(--theme-text);
}

.author {
  --avatar-width: 150px;
  --avatar-padding: 2rem;
  position: relative;
  background-color: var(--theme-creme);
  color: var(--theme-text);
}
@media screen and (max-width: 991px) {
  .author {
    --avatar-width: 180px;
  }
}
@media screen and (max-width: 767px) {
  .author {
    --avatar-width: 120px;
  }
}
.author-circles {
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  overflow: hidden;
  z-index: 1;
}
.author-circles svg {
  display: block;
  width: 100%;
  max-width: 25vw;
  fill: var(--theme-purple);
  -webkit-transform: translateX(25%);
          transform: translateX(25%);
}
.author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .author-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.author-about {
  max-width: 68%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 68%;
          flex: 1 1 68%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
  padding-left: calc(var(--avatar-width) + var(--avatar-padding));
}
@media screen and (max-width: 991px) {
  .author-about {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .author-about {
    padding-left: 0;
  }
}
.author-profile {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-top: 1rem;
}
.author-avatar {
  position: absolute;
  top: 0%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  margin-left: calc(var(--avatar-width) * -1 - var(--avatar-padding));
}
@media screen and (max-width: 767px) {
  .author-avatar {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-left: 0;
  }
}
.author-avatar-inner {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-width: var(--avatar-width, 200px);
}
.author-avatar a {
  display: block;
  width: 100%;
}
.author-avatar-curve {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
          transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.author-avatar-curve path {
  fill: none;
  stroke: rgb(209, 125, 162);
  stroke-width: 32px;
}
.author-avatar-image {
  border-radius: 50%;
  overflow: hidden;
}
.author-metas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "adelle", sans-serif;
}
.author-metas p {
  margin: 0;
}
.author-verified-badge {
  font-family: "adelle-sans", sans-serif;
  background-color: var(--theme-gold);
  padding: 0.41rem 0.75rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.25rem;
}
.author-links {
  padding-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.author-description {
  padding-top: 1.5rem;
}
.author-products {
  max-height: 300px;
  overflow: hidden;
}
.author-products ul {
  padding: 0 0 0 1rem;
}
.author-products ul li a {
  color: var(--theme-burgundy);
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.author-products ul li a:hover, .author-products ul li a:focus {
  color: var(--theme-orange);
}
.author-reviews {
  max-width: 32%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 32%;
          flex: 1 1 32%;
}
@media screen and (max-width: 991px) {
  .author-reviews {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
    width: 100%;
  }
}
.author-reviews-box {
  border: 2px solid var(--theme-purple);
  border-radius: 1rem;
  padding: 1rem 1rem 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1199px) {
  .author-reviews-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .author-reviews-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.author-reviews-box p {
  margin: 0;
}
.author-reviews-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
}
.author-reviews-count {
  font-size: clamp(2.98rem, 1.89rem + 5.47vw, 5.99rem);
  line-height: 1;
}
.author-reviews-stars {
  margin: 0.5rem 0;
  font-size: clamp(1.52rem, 1.35rem + 0.85vw, 1.99rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.author-reviews-stats {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.author-reviews-stats ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  counter-reset: item 6;
}
@media screen and (max-width: 1199px) {
  .author-reviews-stats ol {
    padding: 1rem 0 0 0;
  }
}
.author-reviews-stats ol li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  counter-increment: item -1;
}
.author-reviews-stats ol li::before {
  content: counter(item);
  color: var(--theme-burgundy);
  font-weight: 600;
}
.author-reviews-progress {
  display: block;
  position: relative;
  border-radius: 1rem;
  background-color: var(--theme-white);
  width: 100%;
  height: 6px;
}
.author-reviews-progress::after {
  border-radius: inherit;
  height: inherit;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  background-color: var(--theme-gold);
}
.author-reviews-responsetime {
  margin-top: 1rem;
  border: 2px solid var(--theme-purple);
  border-radius: 1rem;
  padding: 1rem 1rem;
  font-size: 0.95rem;
}
.author-reviews-responsetime p {
  margin: 0;
}
.author-note {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 2px solid var(--theme-purple);
  text-align: center;
  margin-left: auto;
}

.stars {
  --max-stars: 5;
  --correction: 2%;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.stars-row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 0;
  color: var(--theme-white);
}
.stars-row.filled {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% * var(--star) / var(--max-stars) + var(--star) / var(--max-stars) * var(--correction));
  color: var(--theme-gold);
  overflow: hidden;
}

.whattheysay {
  background-color: var(--theme-gray);
}
.whattheysay .review-slider-progress-bar {
  background-color: var(--theme-white);
}
.whattheysay .review-slider-progress-bar .progress-fill {
  background-color: var(--theme-orange-dark);
}

.reviews-all {
  padding-top: 0;
}
.reviews-all .reviews-inner {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.reviews-business {
  background-color: var(--theme-gray);
  margin-top: 3rem;
  padding-top: 0;
}
.reviews-business .reviews-inner {
  border: none;
}
.reviews-business .reviews-counter-progress {
  background-color: var(--theme-white);
}
.reviews-business .reviews-counter-count {
  border-bottom-color: rgba(255, 255, 255, 0.75) !important;
}
.reviews-business .reviews-counter-count .reviews-counter-star .stars-row:not(.filled) {
  color: var(--theme-white);
}
.reviews-business .comments-recent-mention {
  border-bottom-color: rgba(255, 255, 255, 0.75) !important;
}
.reviews-business .comment-stars .stars-row:not(.filled) {
  color: var(--theme-white);
}
.reviews-inner {
  padding-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5rem;
}
@media screen and (max-width: 991px) {
  .reviews-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reviews-trust {
  position: relative;
  border: 2px solid var(--theme-purple);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 5rem;
  font-family: "adelle", sans-serif;
  font-size: 1rem;
}
.reviews-trust p {
  margin: 0;
  line-height: 1.6;
}
.reviews-trust a {
  color: var(--theme-burgundy);
  font-weight: 600;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 2px;
}
.reviews-trust::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1rem;
  background-image: url("../img/stars.png");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translateY(67%);
          transform: translateY(67%);
  width: 89px;
  height: 101px;
}
.reviews-counter {
  max-width: 33%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
}
@media screen and (max-width: 991px) {
  .reviews-counter {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
.reviews-counter-inner {
  position: sticky;
  top: calc(var(--navbarHeight) + 2rem);
}
.reviews-counter-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.reviews-counter-star {
  font-size: clamp(2.98rem, 1.89rem + 5.47vw, 5.99rem);
  line-height: 1;
}
.reviews-counter-star .stars-row:not(.filled) {
  color: var(--theme-gray-light);
}
.reviews-counter-content .specialfont {
  font-size: clamp(2.98rem, 1.89rem + 5.47vw, 5.99rem);
  line-height: 1;
}
.reviews-counter-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid var(--theme-burgundy);
  border-radius: 1rem;
  padding: 1rem 1rem 1.5rem 1rem;
  margin-top: 2rem;
}
.reviews-counter-stats ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  counter-reset: item 0;
}
.reviews-counter-stats ol li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1rem;
  counter-increment: item 1;
}
.reviews-counter-stats ol li .form-check {
  width: 1.5rem;
}
.reviews-counter-stats ol li .form-check .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
}
.reviews-counter-stats ol li .form-check + span {
  font-weight: 600;
}
.reviews-counter-stats ol li > span:last-child {
  width: 2.5rem;
}
.reviews-counter-progress {
  display: block;
  position: relative;
  border-radius: 1rem;
  background-color: var(--theme-gray-light);
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 6px;
}
.reviews-counter-progress::after {
  border-radius: inherit;
  height: inherit;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  background-color: var(--theme-gold);
}
.reviews .comments {
  max-width: 67%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 67%;
          flex: 1 1 67%;
}
@media screen and (max-width: 991px) {
  .reviews .comments {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
  }
}
.reviews .comments-search-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.reviews .comments-search-btns .btn {
  --bs-btn-padding-x: 2rem ;
}
.reviews .comments-recent-mention {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.reviews .comments-recent-mention-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.reviews .comments-recent-mention-list .btn {
  --bs-btn-padding-x: 2rem;
  pointer-events: none;
}
.reviews .comments-loop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}

.comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  font-family: "adelle", sans-serif;
}
.comment:not(:first-child) {
  padding-top: 3rem;
}
.comment:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 33%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
}
.comment-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
.comment-header time {
  font-family: "adelle", sans-serif;
}
.comment-title {
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
}
.comment-title a {
  color: var(--theme-burgundy);
  text-underline-offset: 0.4rem;
  text-decoration-thickness: 2px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.comment-title a:hover, .comment-title a:focus {
  color: var(--theme-purple);
}
.comment-title span {
  font-weight: 300;
  font-style: italic;
}
.comment-content {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  text-wrap: pretty;
}
.comment-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.comment-verified-badge {
  font-family: "adelle", sans-serif;
  background-color: var(--theme-gray);
  padding: 0.48rem 0.7rem 0.41rem 0.7rem;
  text-transform: lowercase;
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 400;
  border-radius: 0.25rem;
}
.comment-verified-badge p {
  margin: 0;
}
.comment-author {
  font-weight: 700;
  font-size: 1.35rem;
  margin-top: 0.5rem;
}
.comment-author span {
  font-weight: 400;
}
.comment-stars {
  font-size: 1.25rem;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.comment-stars .stars-row:not(.filled) {
  color: var(--theme-burgundy);
}
.comment-stars p {
  margin: 0 0 0.2rem 0;
  line-height: 1;
}
.comment-action {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.comment-action a {
  font-size: 0.85rem;
  text-transform: lowercase;
  color: var(--theme-burgundy);
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 1px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.comment-action a:hover, .comment-action a:focus {
  color: var(--theme-purple);
}
.comment-response {
  position: relative;
  padding-left: 8rem;
  padding-top: 2rem;
}
.comment-response .comment-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/curve.svg");
  background-repeat: no-repeat;
  -webkit-transform: translate(calc(-100% - 1rem), -78%);
          transform: translate(calc(-100% - 1rem), -78%);
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .comment-response {
    padding-left: 3.5rem;
  }
  .comment-response .comment-title::before {
    width: 3rem;
    height: 3rem;
    -webkit-transform: translate(calc(-100% - 0.5rem), -70%);
            transform: translate(calc(-100% - 0.5rem), -70%);
  }
}