@charset "UTF-8";
:root {
  --grey: #a9a9a9;
  --color-placeholder: gray;
}

.dark-theme,
body {
  --theme-color-text: #FEFEFE;
  --theme-color-bg-main: #0E0F11;
  --theme-color-bg-top-menu-link: #212122;
  --theme-color-text-top-menu-link: #fff;
}

.light-theme,
body.light-theme {
  --theme-color-text: #0E0F11;
  --theme-color-bg-main: #FEFEFE;
  --theme-color-bg-top-menu-link: #F8F8F8;
  --theme-color-text-top-menu-link: #0E0F11;
}

/*
$type -- для условия
         1 -- только если ширина окна меньше контейнера
         2 -- только если ширина окна больше контейнера
         0 -- всегда
*/
:root {
  --grey: #a9a9a9;
  --color-placeholder: gray;
}

.dark-theme,
body {
  --theme-color-text: #FEFEFE;
  --theme-color-bg-main: #0E0F11;
  --theme-color-bg-top-menu-link: #212122;
  --theme-color-text-top-menu-link: #fff;
}

.light-theme,
body.light-theme {
  --theme-color-text: #0E0F11;
  --theme-color-bg-main: #FEFEFE;
  --theme-color-bg-top-menu-link: #F8F8F8;
  --theme-color-text-top-menu-link: #0E0F11;
}

.swiper-pagination-bullets {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .swiper-pagination-bullets {
    margin-top: 60px;
  }
}

.swiper-pagination-bullet {
  --size: 8px;
  --color-bullet: #121185;
  width: var(--size);
  height: var(--size);
  background-color: var(--color-bullet);
  opacity: 0.6;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.swiper-pagination-bullet:last-child, .swiper-pagination-bullet:first-child {
  opacity: 0.2;
}
.swiper-pagination-bullet:has(+ .swiper-pagination-bullet-active) {
  opacity: 0.6;
}

.light-theme .swiper-pagination-bullet-active {
  background-color: var(--color-bullet);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-bullet);
  opacity: 1 !important;
}
.swiper-pagination-bullet-active + .swiper-pagination-bullet {
  opacity: 0.6;
}

.slider-navigation-right-type {
  --sizeBtn: 32px;
  display: inline-flex;
  align-items: center;
  gap: 27px;
}
.slider-navigation-right-type .swiper-button-prev, .slider-navigation-right-type .swiper-button-next {
  padding: 0;
  position: static;
  background: none;
  background-image: url("../images/icon-arrow-slider-right-type.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: opacity 0.3s ease;
}
.slider-navigation-right-type .swiper-button-prev {
  transform: rotate(180deg);
}
.slider-navigation-right-type .swiper-button-next {
  transform: rotate(0deg);
}

.swiper-button-prev, .swiper-button-next {
  width: var(--sizeBtn);
  height: var(--sizeBtn);
  border-radius: 50%;
  border: none;
  background-color: #fbfbfd;
}
.swiper-button-prev.swiper-button-disabled svg, .swiper-button-next.swiper-button-disabled svg {
  fill: rgba(0, 1, 21, 0.5);
}
.swiper-button-prev:hover svg, .swiper-button-next:hover svg {
  transform: translateX(-3px);
}
.swiper-button-prev svg, .swiper-button-next svg {
  --size: 35px;
  width: var(--size);
  height: var(--size);
  fill: #000115;
  transition: all 0.3s ease;
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
.swiper-button-next {
  transform: rotate(180deg);
}

.swiper-grid {
  --mBlock: 15px;
}
.swiper-grid .swiper-wrapper {
  flex-direction: row !important;
  row-gap: 0 !important;
}
.swiper-grid .swiper-slide {
  height: auto !important;
  margin-block: var(--mBlock) !important;
}

.swiper .swiper-slide {
  height: auto;
}
.swiper .swiper-slide > * {
  height: 100%;
}

.swiper [data-animate-text] {
  opacity: 0;
  transition: opacity 0.2s ease-out, transform 0.6s ease-out;
}
.swiper [data-animate-text=bottom] {
  transform: translate3d(0, 15px, 0);
}
.swiper [data-animate-bg] {
  opacity: 0.8;
  transition: opacity 0.2s cubic-bezier(0.73, -0.01, 0.33, 0.99), transform 1.5s cubic-bezier(0.73, -0.01, 0.33, 0.99);
}
.swiper [data-animate-bg=scale-right] {
  transform: scale(1.2);
}
@media only screen and (min-width: 768px) {
  .swiper [data-animate-bg=scale-right] {
    transform: scale(1.2) translate3d(50px, 0, 0);
  }
}
.swiper .swiper-slide-active [data-animate-text] {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
}
.swiper .swiper-slide-active [data-animate-text]:nth-child(1) {
  transition-delay: 0.3s !important;
}
.swiper .swiper-slide-active [data-animate-text]:nth-child(2) {
  transition-delay: 0.6s !important;
}
.swiper .swiper-slide-active [data-animate-text].btn, .swiper .swiper-slide-active [data-animate-text].link-to-more {
  transition-delay: 1s !important;
  transition: opacity 0.5s ease-out transform 0.5s ease-out !important;
}
.swiper .swiper-slide-active [data-animate-bg] {
  opacity: 1;
  transform: none;
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.73, -0.01, 0.33, 0.99) !important;
}

.swiper.is-touch-device [data-animate-text] {
  opacity: 1;
}
.swiper.is-touch-device [data-animate-text=bottom] {
  transform: translate3d(0, 0, 0);
}

.swiper-fade .swiper-slide {
  opacity: 0 !important;
}
.swiper-fade .swiper-slide-active {
  opacity: 1 !important;
}

.section-review.page-careers {
  padding-top: calc(210rem / 16);
}
@media (max-width: 1728px) {
  .section-review.page-careers {
    padding-top: calc(45rem / 16 + 165 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-review.title-center .section-review__top-text-wrapper {
  text-align: center;
  max-width: 615px;
}
.section-review__top-text-wrapper {
  padding-bottom: calc(115rem / 16);
}
@media (max-width: 1728px) {
  .section-review__top-text-wrapper {
    padding-bottom: calc(50rem / 16 + 65 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.section-review__wrapper {
  position: relative;
  max-width: 340px;
}
@media only screen and (min-width: 576px) {
  .section-review__wrapper {
    max-width: 1266px;
  }
}
.section-review.light-theme {
  background-color: rgb(254, 254, 254);
}

.page-service .section-review {
  padding-top: calc(125rem / 16);
  margin-top: -1px;
}
@media (max-width: 1728px) {
  .page-service .section-review {
    padding-top: calc(45rem / 16 + 80 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.page-service .section-review.section-light {
  background-color: #f8f8f8;
}
.page-service .section-review__top-text-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) {
  .page-service .section-review__top-text-wrapper {
    display: block;
  }
}

.slider-review .swiper-slide {
  height: auto;
}
@media only screen and (min-width: 768px) {
  .slider-review .swiper-slide {
    min-height: 400px;
  }
}
@media only screen and (min-width: 1025px) {
  .slider-review .swiper-slide {
    min-height: 510px;
  }
}
.slider-review__nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .slider-review__nav {
    --sizeBtn: 55px;
    --mInlineArrow: 120px;
    display: block;
    position: absolute;
    width: 90%;
    top: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) and (min-width: 1400px) {
  .slider-review__nav {
    --sizeBtn: 66px;
    top: calc(50% - 43px);
    width: calc(100% + var(--mInlineArrow));
  }
}
@media only screen and (min-width: 768px) and (min-width: 1500px) {
  .slider-review__nav {
    --mInlineArrow: 200px;
  }
}

.card-review {
  --wContent: 100%;
  --wLogo: 30%;
  --wText: 600px;
  --bg-content: #292b2e;
  --bg-logo: #255be3;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 462px;
}
@media only screen and (min-width: 768px) {
  .card-review {
    flex-direction: row;
    height: 100%;
  }
}
.card-review.with-logo, .card-review.with-bg-image {
  --wContent: 100%;
  --wLogo: 100%;
  --wBgImg: 100%;
  --wText: 500px;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .card-review.with-logo, .card-review.with-bg-image {
    --wContent: 57%;
    --wLogo: 43%;
    --wBgImg: 43%;
    flex-direction: row;
  }
}
.card-review__content {
  height: 100%;
  width: var(--wContent);
  background-color: var(--bg-content);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 20px 25px 40px;
}
@media only screen and (min-width: 576px) {
  .card-review__content {
    padding: 45px 30px 45px 45px;
  }
}
@media only screen and (min-width: 768px) {
  .card-review__content {
    padding: 45px 20px 45px 35px;
    gap: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  .card-review__content {
    padding: 55px 30px 55px 58px;
  }
}
.card-review__text {
  font-size: calc(22rem / 16);
  letter-spacing: 0.01em;
  max-width: var(--wText);
}
@media (max-width: 1728px) {
  .card-review__text {
    font-size: calc(18rem / 16 + 4 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (min-width: 768px) {
  .card-review__text {
    letter-spacing: 0.02em;
  }
}
.card-review__bg-image {
  width: var(--wBgImg);
  background-color: var(--bg-content);
  overflow: hidden;
}
.card-review__bg-image img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.card-review__bg-image, .card-review__logo {
  height: 165px;
  min-height: 165px;
}
@media only screen and (min-width: 576px) {
  .card-review__bg-image, .card-review__logo {
    height: 200px;
    min-height: 200px;
  }
}
@media only screen and (min-width: 768px) {
  .card-review__bg-image, .card-review__logo {
    height: inherit;
  }
}
.card-review__logo {
  width: var(--wLogo);
  background-color: var(--bg-logo);
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-review__logo img {
  max-width: 20%;
  max-height: 80px;
}
@media only screen and (min-width: 768px) {
  .card-review__logo img {
    max-width: 30%;
    max-height: 100px;
  }
}

.author {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .author {
    gap: 29px;
  }
}
.author__avatar {
  --size: 51px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
}
@media only screen and (min-width: 576px) {
  .author__avatar {
    --size: 61px;
  }
}
@media only screen and (min-width: 768px) {
  .author__avatar {
    --size: 84px;
  }
}
.author__name {
  font-size: calc(22rem / 16);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1728px) {
  .author__name {
    font-size: calc(14rem / 16 + 8 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
.author__profesion {
  font-size: calc(18rem / 16);
  letter-spacing: 0.02em;
}
@media (max-width: 1728px) {
  .author__profesion {
    font-size: calc(14rem / 16 + 4 / 16 * (100vw - 390rem / 16) / (1338 / 16));
  }
}
@media only screen and (max-width: 767px) {
  .author__profesion {
    line-height: 1.2;
  }
}
/*# sourceMappingURL=section-review.min.css.map */
