.hero__content {
  position: relative;
}
.hero__block {
  position: relative;
  z-index: 2;
}
.hero__header {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 991px) {
  .hero__header {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 2.25rem;
    gap: 1.25rem;
  }
}
.hero__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}
.hero__heading {
  max-width: 53.8125rem;
}
@media (max-width: 991px) {
  .hero__heading {
    max-width: 35rem;
  }
}
.hero__paragraph {
  margin-left: auto;
  max-width: 17rem;
  max-width: 17rem;
}
@media (max-width: 991px) {
  .hero__paragraph {
    margin-left: 0;
  }
}
.hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .hero__footer {
    margin-top: 2.25rem;
    height: 14rem;
  }
  .hero__footer video {
    height: 14rem;
  }
}
.hero__services {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-color-brand);
  transition: 0.3s all;
}
.hero__services.hero__services--mobile {
  display: none;
  margin: 0.75rem auto 0.75rem;
}
@media (max-width: 767px) {
  .hero__services.hero__services--mobile {
    display: flex;
  }
}
.hero__services:hover {
  color: var(--text-color-brand-accent);
}
@media (max-width: 767px) {
  .hero .google {
    display: none;
  }
}

.advantages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .advantages__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.advantages-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background-color: var(--bg-secondary);
  min-height: 11.375rem;
  width: 19.17%;
}
@media (max-width: 1279px) {
  .advantages-item {
    width: 19%;
  }
}
@media (max-width: 991px) {
  .advantages-item {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .advantages-item {
    width: 100%;
    height: auto;
    min-height: auto;
    gap: 1rem;
  }
}
.advantages-item:nth-child(8n+6), .advantages-item:nth-child(8n+7), .advantages-item:nth-child(8n+8) {
  width: 32.5%;
}
@media (max-width: 991px) {
  .advantages-item:nth-child(8n+6), .advantages-item:nth-child(8n+7), .advantages-item:nth-child(8n+8) {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .advantages-item:nth-child(8n+6), .advantages-item:nth-child(8n+7), .advantages-item:nth-child(8n+8) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .advantages-item:nth-child(8n+7), .advantages-item:nth-child(8n+8) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.hero-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 3.25rem;
}
@media (max-width: 767px) {
  .hero-advantages {
    display: flex;
    flex-direction: column;
  }
}
.hero-advantages .advantages-item {
  width: 100%;
  min-height: 10.75rem;
  gap: 1rem;
}
@media (max-width: 767px) {
  .hero-advantages .advantages-item {
    min-height: auto;
  }
}

.services__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  gap: 0.75rem;
  grid-auto-flow: dense;
}
@media (max-width: 991px) {
  .services__list {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .services__list {
    gap: 0.5rem;
  }
}
.services-item {
  overflow: hidden;
  grid-column: span 2;
}
.services-item:nth-child(8n+1), .services-item:nth-child(8n+2) {
  grid-column: span 3;
}
.services-item__link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 21.9375rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: var(--bg-secondary);
  transition: 0.3s all;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .services-item__link {
    min-height: auto;
  }
}
.services-item__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/dots-white.webp");
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: 0.3s all;
}
.services-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 2rem;
}
.services-item__box {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.services-item__number {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--text-color-brand-accent);
  transition: 0.3s all;
}
.services-item__footer {
  position: relative;
  z-index: 2;
}
.services-item__icon img {
  max-width: 4.25rem;
}
.services .heading {
  transition: 0.3s all;
}
.services .button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all;
}
@media (max-width: 1279px) {
  .services .button {
    display: none;
  }
}
.services .paragraph {
  transition: 0.3s all;
}
.services-item__link:hover::after {
  opacity: 0.5;
}
@media (min-width: 1280px) {
  .services-item__link:hover {
    background-color: var(--bg-brand);
  }
  .services-item__link:hover .services-item__number {
    color: var(--text-color-primary-on-brand);
  }
  .services-item__link:hover .heading {
    color: var(--text-color-primary-on-brand);
  }
  .services-item__link:hover .button {
    pointer-events: visible;
    opacity: 1;
    transform: translateY(0%);
  }
  .services-item__link:hover .paragraph {
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  .services-item__icon {
    width: 3.5rem;
  }
}
.services-item__link-text-wrapper {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-top: -1.5rem;
}
@media (max-width: 1279px) {
  .services-item__link-text-wrapper {
    display: flex;
  }
}
.services-item__link-text {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-color-brand-accent);
}

.invest {
  border-radius: 2rem;
  padding: 7.25rem 5rem 3.5rem;
  background-color: var(--bg-brand-accent);
  position: relative;
}
@media (max-width: 991px) {
  .invest {
    padding: 2.75rem 1.25rem 2.25rem;
  }
}
.invest__inner {
  position: relative;
  z-index: 2;
}
.invest__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .invest__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.invest__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.invest__col .subheading {
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .invest__col:first-child .heading {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .invest__col.invest__col--center-mob {
    align-items: center;
  }
}
.invest-advantages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .invest-advantages {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .invest-advantages {
    display: flex;
    flex-direction: column;
  }
}
.invest-advantages .advantages-item {
  gap: 2.75rem;
  width: 100%;
}
@media (max-width: 767px) {
  .invest-advantages .advantages-item {
    gap: 1rem;
  }
}
.invest-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
  margin: 6rem 0 3.5rem;
}
@media (max-width: 767px) {
  .invest-table {
    margin: 4rem 0 2.25rem;
  }
}
.invest-table__header {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  border-radius: var(--main-border-radius);
  backdrop-filter: blur(0.25rem);
  background-color: rgba(255, 255, 255, 0.3);
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .invest-table__header {
    grid-template-columns: 1fr;
  }
  .invest-table__header .invest-table__col {
    display: none;
  }
  .invest-table__header .invest-table__col:first-child {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .invest-table__header .invest-table__col:first-child .invest-table__subheading {
    text-align: center;
  }
}
.invest-table__header .invest-table__subheading {
  text-align: center;
}
.invest-table__header .invest-table__col:first-child .invest-table__subheading {
  text-align: left;
}
.invest-table__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.25rem;
}
.invest-table__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
}
.invest-table__col:first-child {
  align-items: flex-start;
}
.invest-table__col:first-child .invest-table__heading {
  text-align: left;
}
.invest-table__subheading {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-color-primary-on-brand);
  text-align: center;
}
.invest-table__body__subheading:first-child {
  text-align: left;
}
.invest-table__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  border-radius: var(--main-border-radius);
  padding: 2rem 0;
  background-color: var(--color-white);
}
.invest-table__row .invest-table__col {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .invest-table__row .invest-table__col {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .invest-table__row {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .invest-table__row .invest-table__col:first-child {
    padding: 0 0 1rem;
    margin: 0 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.invest-table__row:first-child .invest-table__col:first-child .invest-table__heading {
  color: var(--text-color-secondary);
}
@media (max-width: 767px) {
  .invest-table__body .invest-table__col:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 767px) {
  .invest-table__header .invest-table__col {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.invest-table__header.invest-table__header--mob {
  display: none;
}
@media (max-width: 767px) {
  .invest-table__header.invest-table__header--mob {
    margin-top: 0.5rem;
    display: flex;
  }
  .invest-table__header.invest-table__header--mob .invest-table__col {
    padding: 0 1.5rem;
    border: none;
  }
}
.invest-table__row .invest-table__col:first-child .invest-table__heading {
  color: var(--text-color-brand);
}
.invest-table__row:last-child .invest-table__col:first-child .invest-table__heading {
  color: var(--text-color-brand-accent);
}
.invest-table__heading {
  font-family: var(--font-family-second);
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: -0.06em;
  color: var(--text-color-primary);
  text-align: center;
}
@media (max-width: 767px) {
  .invest-table__heading {
    font-size: 1.25rem;
  }
}
.invest-table__text {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-color-secondary);
}
.invest .img-dots {
  transform: translateY(0%);
}
.invest-mob__heading {
  display: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-txt-secondary);
}
@media (max-width: 767px) {
  .invest-mob__heading {
    display: flex;
  }
}
.invest__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .invest__footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.invest__footer .button {
  padding: 1.25rem 1.75rem;
  color: var(--text-color-brand);
  background-color: var(--color-white);
  width: 100%;
}
.invest__footer .button:hover {
  color: var(--color-white);
}
.invest__footer .button:hover [data-role=circle-btn] {
  width: 1000px;
  height: 1000px;
}

.testimonials__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .section__header {
  max-width: 50rem;
}
.testimonials-slider {
  width: 100%;
}
.testimonials-slider__wrapper {
  display: flex;
}
.testimonials-slide {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  height: auto;
  padding: 1.5rem;
  background-color: var(--bg-secondary);
  border-radius: var(--main-border-radius);
}
.testimonials-slide__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials-slide__col {
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-slide__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.testimonials-slide__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.testimonials-slide__paragraph {
  margin-top: auto;
}
.testimonials-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
}
.testimonials-navigation__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--bg-brand-accent);
  transition: 0.3s all;
}
.testimonials-navigation__arrow svg {
  width: 1.5rem;
}
.testimonials-navigation__arrow::after {
  display: none;
}
.testimonials-navigation__arrow.swiper-button-next, .testimonials-navigation__arrow.swiper-button-prev {
  position: static;
}

/*# sourceMappingURL=services-page.css.map */
