.--result {
  z-index: 10;
}

/* Background */

.main-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;

  display: flex;
  justify-content: center;

  height: var(--window-inner-height);
  background: rgba(0, 0, 0, 0.6);

  opacity: 0;
  transition: opacity 0.4s;

  overflow-y: hidden;
  pointer-events: none;
}

.main-background.-active {
  opacity: 1;
  pointer-events: auto;
}

/* Hover item */

.--hover-item {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

/* Copy item */

[data-copied-text] {
  position: relative;
}

[data-copied-text]:after {
  content: attr(data-copied-text);

  position: absolute;
  top: calc(100% + 5px);
  left: calc(100% - 5px);
  display: block;
  padding: 10px 15px;

  background-color: var(--white);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 0 10px 10px 10px;
  border-radius: 0 10px 10px 10px;

  font-family: "Basis Grotesque Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: var(--blue);

  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;

  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;

  -webkit-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

[data-copied-text].-copied:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* Mask item */

.--mask-item {
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--blue);

  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

/* Search result list */

.default-result-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;

  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;

  background-color: var(--white);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.12);
  -webkit-border-radius: 20px;
  border-radius: 20px;

  overflow-y: auto;
  overflow-x: hidden;

  -webkit-transition: height 0.4s, opacity 0.4s;
  transition: height 0.4s, opacity 0.4s;
}

.default-result-list:not(.-show) * {
  pointer-events: none !important;
}

.default-result-list .default-link {
  display: inline-block;
  white-space: normal;
}

/* Socials list */

.default-socials-list .socials-list__title {
  margin-bottom: 9px;
  opacity: 0.4;
}

.default-socials-list .socials-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.default-socials-list .socials-list > * {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  min-width: 40px;
  height: 40px;

  background-color: rgba(53, 53, 78, 0.1);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-user-select: none;
  user-select: none;

  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.default-socials-list .socials-list > * .--mask-item {
  display: block;
  width: 20px;
  height: 18px;

  -webkit-transition: opacity 0.4s, background-color 0.4s;
  transition: opacity 0.4s, background-color 0.4s;
}

.default-socials-list .socials-list > * + * {
  margin-left: 4px;
}

/* Form grid */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 45px;
  grid-row-gap: 21px;
}

/* Plus icon */

.plus-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
}

.plus-icon div {
  width: 100%;
  height: 2px;
  background-color: var(--blue);

  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.plus-icon div:nth-child(2) {
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.plus-icon.-border,
.plus-icon.-fill {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: var(--white);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.plus-icon.-border {
  border: 1px solid var(--blue);
  background-color: transparent;
}

.plus-icon.-border div,
.plus-icon.-fill div {
  width: 22px;
}

.plus-icon.-fill.-dark {
  background-color: var(--blue);
}

.plus-icon.-fill.-dark div {
  background-color: var(--white);
}

/* External rounding */

.--external-rounding {
  position: relative;
}

.--external-rounding:after,
.--external-rounding:before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--white);
  -webkit-mask: var(--10-border) no-repeat center;
  mask: var(--10-border) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.--external-rounding:before {
  right: 99.9%;
}

.--external-rounding:after {
  left: 99.9%;
}

/* Loading result */

.filter-result {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.filter-result.-loading {
  opacity: 0.4;
}

/* Reward slider */

.rewards-slider-block {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.rewards-slider-block .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 780px;
  padding: 0 45px;
}

.rewards-slider-block .rewards-slider__img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.rewards-slider-block .rewards-slider__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-select: none;
  user-select: none;
}

.rewards-slider-block .rewards-slider__img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #131313;
  opacity: 0.65;
  pointer-events: none;
}

.rewards-slider-block .rewards-slider__text-box {
  max-width: 48%;
}

.rewards-slider-block .rewards-slider__link {
  margin-top: 11px;
}

.rewards-slider-block .rewards-slider__slider-block {
  position: absolute;
  right: 0;
  width: 50vw;
  overflow: hidden;
}

.rewards-slider-block .rewards-slider__slider {
  width: 585px;
  margin-left: 0;
  overflow: visible;
}

.rewards-slider-block .rewards-slider__slider .swiper-wrapper {
  height: 314px;
}

.rewards-slider-block .rewards-slider__slider .swiper-slide {
  height: 134px;
}

.rewards-slider-block .rewards-slider__slide {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 5px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rewards-slider-block .rewards-slider__slider-block .swiper-slide:nth-child(2n + 2) {
  padding-top: 45px;
  height: 180px;
}

.rewards-slider-block .rewards-slider__slide .reward-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 113px;
  min-width: 113px;
  height: 113px;

  padding: 10px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.rewards-slider-block .rewards-slider__slide .reward-icon svg,
.rewards-slider-block .rewards-slider__slide .reward-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rewards-slider-block .rewards-slider__slide .reward-text-box {
  margin-left: 20px;
  margin-top: 9px;
}

.rewards-slider-block .rewards-slider__slide .reward-title {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rewards-slider-block .rewards-slider__slide .reward-text {
  margin-top: 17px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rewards-slider-block .swiper-scrollbar {
  position: static;
  display: flex;
  align-items: center;
  width: 100%;
  height: 12px;
  margin-top: 54px;

  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  overflow: visible;
}

.rewards-slider-block .swiper-scrollbar:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}

.rewards-slider-block .swiper-scrollbar-drag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
}

.rewards-slider-block .swiper-scrollbar-drag:after {
  content: "";
  display: block;
  width: 12px;
  min-width: 12px;
  height: 12px;

  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--white);
  cursor: pointer;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.rewards-slider-block .swiper-scrollbar-drag:before {
  content: "";
  display: block;
  position: absolute;
  width: 585px;
  right: 0;
  height: 2px;
  background-color: var(--white);
  pointer-events: none;
}

/* Fact grid */

.default-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}

.default-fact-grid .default-fact-card {
  height: auto;
  min-height: 172px;
  background-color: rgba(233, 233, 233, 0.1);
}

.default-fact-grid .default-fact-card .fact-card__text {
  margin-top: -5px;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.default-fact-grid .default-fact-card .fact-card__icon img {
  max-width: 205px;
  max-height: 128px;
}

.default-fact-grid .default-fact-card:nth-child(3n + 1) {
  grid-column: 1 span;
  grid-row: 2 span;

  align-items: flex-start;
  flex-direction: column;
}

.default-fact-grid .default-fact-card:nth-child(3n + 1) .fact-card__text-box {
  display: block;
  height: auto;
  margin-right: 0;
}

.default-fact-grid .default-fact-card:nth-child(3n + 1) .fact-card__icon {
  align-self: unset;
  margin-top: 20px;
}

.default-fact-grid .default-fact-card:nth-child(3n + 1) .fact-card__icon img {
  max-height: 157px;
  max-width: 100%;
}

/* Key indicator block */

.key-indicator-block {
  position: relative;
  padding-top: 69px;
  background-color: var(--blue);
}

.key-indicator-block .key-indicator__title {
  padding-bottom: 63px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .key-indicator-block .key-indicator__title br {
    display: none;
  }
}

.key-indicator-block .key-indicator__accordion {
  position: relative;

  height: 447px;
  overflow: hidden;

  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}

.key-indicator-block .key-indicator__accordion:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 93px;
  pointer-events: none;

  background: linear-gradient(to top, #35354e 0%, rgba(53, 53, 78, 0.875) 12.5%, rgba(53, 53, 78, 0) 100%);
}

.key-indicator-block .default-fact-grid {
  padding-bottom: 109px;
}

.key-indicator-block .key-indicator__more-button {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 25px;
}

.key-indicator-block .fact-card__text-box,
.key-indicator-block .fact-card__icon {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.key-indicator-block .default-fact-card .fact-card__title + .fact-card__text {
  margin-top: -5px;
}

.key-indicator-block:not(.-opened) .default-fact-card:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) .fact-card__text-box,
.key-indicator-block:not(.-opened) .default-fact-card:not(:nth-child(1)):not(:nth-child(2)):not(:nth-child(3)) .fact-card__icon {
  opacity: 0;
}

.key-indicator-block.-opened .default-fact-grid:nth-child(n) {
  opacity: 1;
}

.key-indicator-block.-opened .key-indicator__more-button div:nth-child(2) {
  opacity: 0;
}

/* Hidden cards section */

.hidden-cards-section {
  position: relative;
  z-index: 1;
  max-width: 100vw;

  -webkit-transition: height 0.4s;
  transition: height 0.4s;
}

.hidden-cards-section .hidden-cards-section__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 70px;
  text-align: center;
}

.hidden-cards-section .hidden-cards-section__title span {
  display: block;
  padding: 15px 23px 9px;

  border: 1px solid var(--blue);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.hidden-cards-section .hidden-cards-section__grid {
  padding: 24px 24px 27px;
  margin-left: -24px;
  margin-right: -24px;
  max-width: 100vw;

  background-color: var(--white);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.hidden-cards-section__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 5px;
  align-items: start;

  overflow: hidden;

  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.hidden-cards-section__grid.-loading {
  opacity: 0.5;
  pointer-events: none;
}

.hidden-cards-section__grid .rewards-slider-block .container {
  padding-right: 25px;
  padding-left: 25px;
}

.hidden-cards-section__grid .default-image-card,
.hidden-cards-section__grid .key-indicator-block,
.hidden-cards-section__grid .rewards-slider-block {
  grid-column: span 2;
}

.hidden-cards-section__grid .key-indicator-block,
.hidden-cards-section__grid .rewards-slider-block {
  margin-left: -24px;
  margin-right: -24px;
}

.hidden-cards-section__grid .key-indicator-block {
  margin-top: 19px;
  margin-bottom: 21px;
}

.hidden-cards-section__grid .default-info-card {
  margin-bottom: 20px;
}

.hidden-cards-section__grid .default-partner-card {
  padding-top: 12px;
}

.hidden-cards-section__grid .practices-tabs {
  padding-top: 48px;
  margin-bottom: 15px;
}

body.-inside-page .hidden-cards-section .hidden-cards-section__grid {
  padding-bottom: 55px;
}

/* Grid section */

.grid-section {
  overflow: hidden;
}

.grid-section .hidden-cards-section__grid {
  overflow: visible;
}

.grid-section .about-gallery-section {
  grid-column: span 2;
  margin-bottom: -5px;
}

.grid-section .hidden-cards-section__grid .career-cta-section {
  margin-top: -5px;
  margin-bottom: -5px;
}

.grid-section .hidden-cards-section__grid .career-cta-section,
.grid-section .hidden-cards-section__grid .key-indicator-block,
.grid-section .hidden-cards-section__grid .rewards-slider-block,
.grid-section .about-gallery-section {
  width: 100vw;
  margin-left: calc(((100vw - 1412px) / 2) * -1);
}

.grid-section .hidden-cards-section__grid > *:first-child {
  margin-top: 0;
}

.grid-section .hidden-cards-section__grid > *:last-child {
  margin-bottom: 0;
}

/* Number of list item */

.--number-of-list-item {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 60px;
  min-width: 60px;
  height: 60px;
  margin-right: 17px;

  border: 1px solid var(--blue);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.--white-text .--number-of-list-item {
  border-color: var(--white);
}

.--number-of-list-item.-fill {
  color: var(--blue);
  background-color: var(--white);
  border: none;
}

.--white-text .--number-of-list-item.-fill {
  color: var(--white);
  background-color: var(--blue);
}

.-apple .--number-of-list-item {
  padding-top: 1px;
}

/* Default info block */

.default-info-block {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1175px;
  padding-top: 22px;
  border-top: 1px solid var(--blue);
}

.default-info-block .info-block__title-box,
.default-info-block .info-block__text-box {
  width: calc(50% - 2.5px);
}

.default-info-block .info-block__title-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.default-info-block .info-block__title-box .--number-of-list-item {
  margin-top: -2px;
  margin-right: 17px;
}

.default-info-block .info-block__text-box {
  margin-top: 8px;
}

.default-info-block .info-block__text {
  opacity: 0.85;
}

.default-info-block .info-block__button {
  margin-top: 40px;
}

.default-info-block.-with-brochure {
  min-height: 775px;
}

/* Brochure */

.brochure-download {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.brochure-download .brochure-download__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 295px;
  max-height: 389px;

  filter: drop-shadow(10px 2px 81px rgba(0, 0, 0, 0.11));
  -webkit-border-radius: 20px;
  border-radius: 20px;

  -webkit-transform: scale(1);
  transform: scale(1);
  transform-origin: center bottom;

  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

.brochure-download .brochure-download__img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.brochure-download .brochure-download__button {
  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-top: 7px;
}

.brochure-download .brochure-download__button span {
  background-color: var(--blue);
  width: 22px;
  min-width: 22px;
  height: 22px;
  margin-right: 10px;
}

/* Recognition slider */

.recognition-slider-block {
  position: relative;
  padding: 111px 118px 130px;
  width: 100%;
  background-color: var(--blue);
  -webkit-border-radius: 20px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.recognition-slider-block:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  bottom: 0;
  width: 76px;
  background: linear-gradient(to left, var(--blue) 0%, rgba(12, 23, 65, 0) 100%);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.recognition-slider-block .recognition-slider__text-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.recognition-slider-block .recognition-slider__title {
  padding-top: 2px;
}

.professionals-slider-block .professionals-slider__title *,
.professionals-slider-block .professionals-slider__title,
.recognition-slider-block .recognition-slider__title *,
.recognition-slider-block .recognition-slider__title {
  line-height: 95%;
}

.recognition-slider-block .recognition-slider__slider {
  margin-top: 34px;
  width: 100%;
  overflow: visible;
}

.recognition-slider-block .recognition-slider__slide {
  width: 100%;
  min-height: 289px;
  height: 100%;
  padding: 32px 30px 30px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.recognition-slider-block .recognition-slider__slide > * {
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.recognition-slider-block .swiper-slide-next .recognition-slider__slide > *,
.recognition-slider-block .swiper-slide-active .recognition-slider__slide > * {
  opacity: 1;
}

.recognition-slider-block .swiper-slide {
  height: auto;
}

.professionals-slider-block .swiper-scrollbar,
.recognition-slider-block .swiper-scrollbar {
  position: static;
  display: flex;
  align-items: center;
  width: 100%;
  height: 20px;
  margin-top: 25px;

  background-color: transparent;
  -webkit-border-radius: 0;
  border-radius: 0;
  overflow: hidden;
}

.professionals-slider-block .swiper-scrollbar:before,
.recognition-slider-block .swiper-scrollbar:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  right: 2px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.professionals-slider-block .swiper-scrollbar-drag,
.recognition-slider-block .swiper-scrollbar-drag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  width: 100%;
}

.professionals-slider-block .swiper-scrollbar-drag:after,
.recognition-slider-block .swiper-scrollbar-drag:after {
  content: "";
  position: relative;
  right: -2px;
  display: block;
  width: 36px;
  height: 20px;
  background-color: var(--white);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='33' height='21' viewBox='0 0 33 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 10.5C31 15.1944 27.187 19 22.4835 19C17.78 19 9.87912 10.5 0 10.5C9.53846 10.5 17.78 2 22.4835 2C27.187 2 31 5.80558 31 10.5Z' fill='%2335354E'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 12C4.52681 12 8.68108 13.9502 12.4502 16.059C13.103 16.4243 13.7584 16.8026 14.4035 17.1751C15.5566 17.8407 16.6769 18.4875 17.6918 19.0071C19.2638 19.8119 20.9192 20.5 22.4835 20.5C28.0127 20.5 32.5 16.0256 32.5 10.5C32.5 4.97441 28.0127 0.5 22.4835 0.5C20.9238 0.5 19.2493 1.18485 17.6531 1.98829C16.5919 2.52245 15.4235 3.18704 14.222 3.87039C13.5964 4.22626 12.9617 4.58723 12.3287 4.93751C8.5032 7.05411 4.35318 9 0 9V12ZM13.7811 7.56249C11.9346 8.58411 9.88545 9.64488 7.68171 10.473C9.95408 11.3085 12.0432 12.3937 13.915 13.441C14.6568 13.856 15.3503 14.2567 16.0082 14.6369C17.105 15.2706 18.1025 15.847 19.059 16.3367C20.6 17.1256 21.6961 17.5 22.4835 17.5C26.3614 17.5 29.5 14.3633 29.5 10.5C29.5 6.63675 26.3614 3.5 22.4835 3.5C21.6915 3.5 20.572 3.87765 19.0019 4.66796C18.0043 5.17014 16.9554 5.76713 15.8044 6.42219C15.1644 6.78645 14.4929 7.16865 13.7811 7.56249Z' fill='%2335354E'/%3E%3C/svg%3E%0A") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg width='33' height='21' viewBox='0 0 33 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31 10.5C31 15.1944 27.187 19 22.4835 19C17.78 19 9.87912 10.5 0 10.5C9.53846 10.5 17.78 2 22.4835 2C27.187 2 31 5.80558 31 10.5Z' fill='%2335354E'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 12C4.52681 12 8.68108 13.9502 12.4502 16.059C13.103 16.4243 13.7584 16.8026 14.4035 17.1751C15.5566 17.8407 16.6769 18.4875 17.6918 19.0071C19.2638 19.8119 20.9192 20.5 22.4835 20.5C28.0127 20.5 32.5 16.0256 32.5 10.5C32.5 4.97441 28.0127 0.5 22.4835 0.5C20.9238 0.5 19.2493 1.18485 17.6531 1.98829C16.5919 2.52245 15.4235 3.18704 14.222 3.87039C13.5964 4.22626 12.9617 4.58723 12.3287 4.93751C8.5032 7.05411 4.35318 9 0 9V12ZM13.7811 7.56249C11.9346 8.58411 9.88545 9.64488 7.68171 10.473C9.95408 11.3085 12.0432 12.3937 13.915 13.441C14.6568 13.856 15.3503 14.2567 16.0082 14.6369C17.105 15.2706 18.1025 15.847 19.059 16.3367C20.6 17.1256 21.6961 17.5 22.4835 17.5C26.3614 17.5 29.5 14.3633 29.5 10.5C29.5 6.63675 26.3614 3.5 22.4835 3.5C21.6915 3.5 20.572 3.87765 19.0019 4.66796C18.0043 5.17014 16.9554 5.76713 15.8044 6.42219C15.1644 6.78645 14.4929 7.16865 13.7811 7.56249Z' fill='%2335354E'/%3E%3C/svg%3E%0A") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  cursor: pointer;

  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.professionals-slider-block .swiper-scrollbar-drag:before,
.recognition-slider-block .swiper-scrollbar-drag:before {
  content: "";
  display: block;
  position: absolute;
  right: 31px;
  width: 100vw;
  height: 3px;
  background-color: var(--white);
  pointer-events: none;

  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

/* Practices slider block */

.professionals-slider-block {
  overflow: hidden;
  padding: 60px 118px 71px;
  background-color: var(--gray);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.professionals-slider-block .professionals-slider__text-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 49px;
}

.professionals-slider-block .professionals-slider__slider {
  overflow: visible;
}

.professionals-slider-block .swiper-scrollbar:before {
  background-color: rgba(53, 53, 78, 0.2);
}

.professionals-slider-block .swiper-scrollbar-drag:after {
  background-color: var(--blue);
}

.professionals-slider-block .swiper-scrollbar-drag:before {
  background-color: var(--blue);
}

/* Hidden search */

.hidden-search-container {
  width: 100%;
}

.hidden-search-box {
  width: 56px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-color: var(--gray);
  overflow: hidden;

  -webkit-transition: width 1s, background-color 0.4s, opacity 0.4s;
  transition: width 1s, background-color 0.4s, opacity 0.4s;
}

.hidden-search-box form {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 56px;
}

.hidden-search-box button {
  position: absolute;
  left: 0;
  background: none;
  border: none;
  padding: 20px;
  width: 56px;
  min-width: 56px;
  height: 56px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.hidden-search-box button span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--blue);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;

  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.hidden-search-box input {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 56px);
  padding-left: 10px;
  padding-right: 20px;

  background: none;
  border: none;

  font-family: "Basis Grotesque Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 170.6%;
  color: var(--blue);

  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.hidden-search-box button.-active {
  pointer-events: none;
}

.hidden-search-container.-showed .hidden-search-box {
  width: 100%;
}

.hidden-search-container.-showed .hidden-search-box input {
  opacity: 1;
  pointer-events: auto;
}

/* Default editor */

.default-editor > ol *,
.default-editor > ul *,
.default-editor > p *,
.default-editor > p,
.default-editor {
  font-family: "Basis Grotesque Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 32px;
  color: var(--blue);
}

.default-editor > ol strong,
.default-editor > ul strong,
.default-editor > p strong,
.default-editor strong {
  font-weight: 700;
}

.default-editor > ol em,
.default-editor > ul em,
.default-editor > p em,
.default-editor em {
  font-style: italic;
}

.default-editor:not(:first-child) {
  margin-top: 56px;
}

.default-info-block .info-block__text ul:not(:first-child),
.default-info-block .info-block__text p:not(:first-child),
.default-editor > ul:not(:first-child),
.default-editor > p:not(:first-child) {
  margin-top: 32px;
}

.default-info-block .info-block__text ul li,
.default-editor > ul li {
  position: relative;
  padding-left: 40px;
}

.default-info-block .info-block__text ul li:before,
.default-editor > ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  display: block;
  width: 5px;
  height: 5px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: var(--blue);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.default-editor > p > video,
.default-editor > p > img,
.default-editor > video,
.default-editor > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 525px;
  margin: 48px auto;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.default-editor > a,
.default-editor > p a {
  text-decoration: underline;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

/* Most read block */

.most-read-block .most-read__title {
  margin-bottom: 9px;
}

.most-read-block .most-read__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  grid-gap: 5px;
}

.most-read-block .default-card {
  height: auto;
  min-height: 186px;
  padding: 15px 31px 30px 15px;
  background-color: var(--white);
}

.most-read-block .default-card .card__title-box {
  margin-top: 20px;
  margin-right: 0;
}

.most-read-block .default-card a.card__title {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

/* Speaker block */

.speaker-block {
  width: 100%;
  max-width: 1175px;
  padding: 74px 0 88px;
  margin: 0 auto;
}

.speaker-block .speaker__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
}

.speaker-block .speaker__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}

.speaker-block .speaker {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px;

  background-color: var(--gray);
  -webkit-border-radius: 15px;
  border-radius: 15px;

  -webkit-transition: box-shadow 0.4s, opacity 0.4s;
  transition: box-shadow 0.4s, opacity 0.4s;
}

.speaker-block .speaker__photo {
  width: 84px;
  min-width: 84px;
  height: 84px;
}

.speaker-block .speaker__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.speaker-block .speaker__text {
  margin-top: 16px;
  padding-left: 20px;
}

.speaker-block .speaker__position {
  margin-top: 5px;
}

/* Swiper slider block */

.speaker-slider-block {
  position: relative;
  padding-top: 74px;
  max-width: 1175px;
  height: 770px;
  overflow: hidden;
}

.speaker-slider-block .speaker-slider__title {
  position: absolute;
  z-index: 2;
  top: 75px;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.speaker-slider-block .speaker-slider {
  height: 100%;
}

.speaker-slider-block .speaker-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #e4e4e4;
}

.speaker-slider-block .speaker-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  mix-blend-mode: darken;
}

.speaker-slider-block .speaker-slide__info {
  position: absolute;
  right: 236px;
  bottom: 250px;

  width: 284px;
  padding: 24px;

  background: rgba(199, 199, 199, 0.45);
  -webkit-backdrop-filter: blur(47px);
  backdrop-filter: blur(47px);
  border-radius: 20px;
}

.speaker-slider-block .speaker-slide__position {
  margin-top: 6px;
}

.speaker-slider-block .speaker-slider__navigation {
  position: absolute;
  z-index: 2;
  top: 83px;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.speaker-slider-block .speaker-slider__slider-arrow {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.speaker-slider-block .speaker-slider__slider-arrow.-left {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 7px;
}

.speaker-slider-block .speaker-slider__slider-pagination {
  position: absolute;
  right: calc(100% + 27px);
  left: auto;
  bottom: 2px;
  width: max-content;
}

.speaker-slider-block .speaker-slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none;
}

/* Vacancy section */

.vacancy-section.-slider {
  padding-top: 86px;
  padding-bottom: 113px;
  background-color: #ffe7e7;
}

.vacancy-section .vacancy-section__title {
  margin-bottom: 65px;
  text-align: center;
}

.vacancy-section .vacancy-section__slider {
  overflow: visible;
}

.vacancy-section .vacancy-section__slider .swiper-slide {
  width: 100%;
  max-width: 585px;
}

.vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card__tag,
.vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card-container {
  opacity: 0.6;
  box-shadow: none;
}

.vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card__button {
  opacity: 0;
}

.vacancy-section.-slider .vacancy-card .vacancy-card__subtitle {
  position: absolute;
  top: 100%;
}

.vacancy-section .vacancy-section__slider .swiper-scrollbar {
  position: static;
  width: 100%;
  max-width: 585px;
  height: 2px;
  margin-top: 102px;
  margin-left: auto;
  margin-right: auto;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.vacancy-section .vacancy-section__slider .swiper-horizontal > .swiper-scrollbar {
  position: static;
  width: 100%;
  height: 2px;
  background-color: #d0d0d0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.vacancy-section .vacancy-section__slider .swiper-scrollbar-drag {
  background-color: var(--blue);
  -webkit-border-radius: 0;
  border-radius: 0;
  cursor: pointer;
}

.vacancy-section .vacancy-section__button {
  display: none;
}

.vacancies__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 5px;
}
.vacancy-card.--full-col {
  grid-column: span 2;
}

.vacancies__grid .vacancy-card-container {
  opacity: 1;
  box-shadow: none;
}

.vacancies__grid .vacancy-card__button {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.vacancies__grid.-hover .vacancy-card:hover .vacancy-card__button {
  opacity: 1;
}

.vacancies__grid.-hover .vacancy-card:hover .vacancy-card-container {
  box-shadow: 0 4px 101px rgba(0, 0, 0, 0.19);
}

.vacancies__grid.-hover .vacancy-card:not(:hover) .vacancy-card__tag,
.vacancies__grid.-hover .vacancy-card:not(:hover) .vacancy-card-container {
  opacity: 0.6;
}

@media screen and (max-width: 1460px) {
  .grid-section .hidden-cards-section__grid .career-cta-section,
  .grid-section .hidden-cards-section__grid .key-indicator-block,
  .grid-section .hidden-cards-section__grid .rewards-slider-block,
  .grid-section .about-gallery-section {
    margin-left: -24px;
  }
}

@media screen and (max-width: 1024px) {
  /* Fact grid */

  .default-fact-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }

  .default-fact-grid .default-fact-card {
    min-height: 155px;
    padding: 10px 12px;
  }

  .default-fact-grid .default-fact-card .fact-card__text {
    margin-top: -3px;
  }

  .default-fact-grid .default-fact-card .fact-card__title {
    font-size: 50px;
    line-height: 94.3%;
  }

  .default-fact-grid .default-fact-card .fact-card__icon {
    align-self: flex-end;
  }

  .default-fact-grid .default-fact-card .fact-card__icon img {
    max-width: 154px;
    max-height: 84px;
  }

  .default-fact-grid .default-fact-card:nth-child(3n + 1) {
    grid-column: 1 span;
    grid-row: 1 span;
    min-height: 260px;
  }

  .default-fact-grid .default-fact-card:nth-child(3n + 1) .fact-card__icon img {
    max-height: 130px;
    max-width: 100%;
  }

  /* Key indicator block */

  .key-indicator-block {
    padding-top: 40px;
  }

  .key-indicator-block .key-indicator__title {
    padding-bottom: 50px;
  }

  .key-indicator-block .key-indicator__accordion {
    height: 713px;
  }

  .key-indicator-block .key-indicator__more-button {
    bottom: 30px;
  }

  .key-indicator-block .default-fact-card .fact-card__title + .fact-card__text {
    margin-top: -3px;
  }

  /* Hidden cards section */

  .hidden-cards-section .hidden-cards-section__title *,
  .hidden-cards-section .hidden-cards-section__title {
    line-height: 28px;
  }

  .hidden-cards-section .hidden-cards-section__title {
    margin-bottom: 32px;
  }

  .hidden-cards-section .hidden-cards-section__title span {
    padding: 9px 16px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
  }

  .hidden-cards-section {
    padding: 10px 20px 0;
    margin-right: -20px;
    margin-left: -20px;
  }

  .hidden-cards-section__grid {
    /* grid-template-columns: 1fr; */
    grid-row-gap: 10px;
  }
  .-homepage .hidden-cards-section__grid {
    grid-template-columns: auto auto;
  }

  .hidden-cards-section__grid .rewards-slider-block .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hidden-cards-section__grid .key-indicator-block,
  .hidden-cards-section__grid .rewards-slider-block {
    margin-left: -20px;
    margin-right: -20px;
  }

  .hidden-cards-section__grid .default-image-card,
  .hidden-cards-section__grid .key-indicator-block,
  .hidden-cards-section__grid .rewards-slider-block {
    grid-column: span 1;
  }

  .-homepage .hidden-cards-section__grid .default-partner-card,
  .-homepage .hidden-cards-section__grid .default-partner-card + .default-card.-with-img,
  .-homepage .hidden-cards-section__grid .default-info-card,
  .-homepage .hidden-cards-section__grid .key-indicator-block,
  .-homepage .hidden-cards-section__grid .rewards-slider-block {
    grid-column: span 2;
  }
  .hidden-cards-section .hidden-cards-section__button {
    bottom: 20px;
  }

  /* Grid section */

  .grid-section .about-gallery-section {
    grid-column: span 1;

    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 46px;
  }

  .grid-section .about-gallery-section .container {
    padding: 0;
    margin-bottom: 10px;
  }

  .grid-section .about-gallery-section {
    margin-bottom: -10px;
  }

  .grid-section .hidden-cards-section__grid .career-cta-section {
    width: auto;
    margin-top: -10px;
    margin-bottom: -10px;
    margin-right: -20px;
  }

  .grid-section .hidden-cards-section__grid .career-cta-section,
  .grid-section .hidden-cards-section__grid .key-indicator-block,
  .grid-section .hidden-cards-section__grid .rewards-slider-block,
  .grid-section .about-gallery-section {
    margin-left: -20px;
    /*margin-right: -20px;*/
  }

  .grid-section .hidden-cards-section__grid .career-cta-section .container,
  .grid-section .hidden-cards-section__grid .key-indicator-block .container,
  .grid-section .hidden-cards-section__grid .rewards-slider-block .container,
  .grid-section .about-gallery-section .container {
    width: 100%;
  }

  /* Brochure */

  .brochure-download {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin-top: 36px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .brochure-download .brochure-download__img {
    max-width: 130px;
    max-height: 170px;

    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .brochure-download .brochure-download__img img {
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .brochure-download .brochure-download__button {
    margin-top: 0;
  }

  /* Recognition slider */

  .recognition-slider-block {
    position: relative;
    padding: 48px 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    box-shadow: none;
  }

  .recognition-slider-block:after {
    display: none;
  }

  .recognition-slider-block .recognition-slider__slider {
    margin-top: 24px;
  }

  .recognition-slider-block .recognition-slider__slide {
    min-height: 230px;
    height: 100%;
    padding: 32px 20px;
  }

  .recognition-slider-block .recognition-slider__slide br {
    display: none;
  }

  .professionals-slider-blocks .swiper-scrollbar,
  .recognition-slider-block .swiper-scrollbar {
    width: 100%;
    height: 17px;
    margin-top: 20px;
  }

  .professionals-slider-block .swiper-scrollbar-drag:after,
  .recognition-slider-block .swiper-scrollbar-drag:after {
    width: 26px;
    height: 16px;
    right: -1px;
  }

  .professionals-slider-block .swiper-scrollbar-drag:before,
  .recognition-slider-block .swiper-scrollbar-drag:before {
    right: 18px;
  }

  /* Practices slider block */

  .professionals-slider-block {
    padding: 40px 20px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .professionals-slider-block .professionals-slider__text-box {
    margin-bottom: 20px;
  }

  .professionals-slider-block .swiper-scrollbar {
    margin-top: 10px;
  }

  /* Default info block */

  .default-info-block {
    display: block;
    padding-top: 19px;
  }

  .default-info-block .info-block__title-box,
  .default-info-block .info-block__text-box {
    width: 100%;
  }

  .default-info-block .info-block__text-box {
    margin-top: 24px;
  }

  .default-info-block .info-block__button {
    margin-top: 32px;
  }

  /* Default editor */

  .default-editor > ol *,
  .default-editor > ul *,
  .default-editor > p *,
  .default-editor > p,
  .default-editor {
    font-size: 20px;
    line-height: 26px;
  }

  .default-info-block .info-block__text ul:not(:first-child),
  .default-info-block .info-block__text p:not(:first-child),
  .default-editor > ul:not(:first-child),
  .default-editor > p:not(:first-child),
  .default-editor:not(:first-child) {
    margin-top: 26px;
  }

  .default-editor > p > video,
  .default-editor > p > img,
  .default-editor > video,
  .default-editor > img {
    height: 350px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  /* Speaker block */

  .speaker-block {
    padding: 0;
  }

  .speaker-block .speaker__title {
    margin-bottom: 25px;
  }

  .speaker-block .speaker__list {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .speaker-block .speaker {
    min-height: 104px;
  }

  /* Speaker slider block */

  .speaker-slider-block {
    overflow: visible;
    padding: 15px 15px 0;
    height: 480px;
    background-color: #e4e4e4;
    -webkit-border-radius: 10px;
    border-radius: 10px;
  }

  .speaker-slider-block .speaker-slider__title {
    position: static;
  }

  .speaker-slider-block .speaker-slider {
    height: 321px;
    margin-top: auto;
    margin-top: 84px;
    overflow: hidden;
  }

  .speaker-slider-block .speaker-slide__info {
    width: 222px;
    padding: 19px 45px 17px 20px;

    bottom: 20px;
    left: 0;
    right: auto;
  }

  .speaker-slider-block .speaker-slide__position {
    margin-top: 22px;
  }

  .speaker-slider-block .speaker-slider__navigation {
    top: calc(100% + 20px);
    left: 15px;
    right: 15px;
    justify-content: space-between;
  }

  .speaker-slider-block .speaker-slider__slider-pagination {
    position: static;
  }

  .speaker-slider-block .speaker-slider__slider-arrow.-left {
    margin: 0;
  }

  /* Vacancy section */

  .vacancy-section.-slider {
    padding: 0;
    background-color: transparent;
  }

  .vacancy-section .vacancy-section__title {
    margin-bottom: 30px;
  }

  .vacancy-section .vacancy-section__slider .swiper-wrapper,
  .vacancy-section .vacancy-section__slider {
    display: block;
  }

  .vacancy-section .vacancy-section__slider .swiper-wrapper {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }

  .vacancy-section .vacancy-section__slider .swiper-wrapper.-loading {
    pointer-events: none;
    opacity: 0.6;
  }

  .vacancy-section .vacancy-section__slider .swiper-slide {
    max-width: none;
  }

  .vacancy-section .vacancy-section__slider .swiper-slide + .swiper-slide {
    margin-top: 10px;
  }

  .vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card {
    opacity: 1;
    box-shadow: 0 4px 101px rgba(0, 0, 0, 0.19);
  }

  .vacancy-section .vacancy-section__slider .vacancy-card {
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
  }

  .vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card__tag,
  .vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card-container,
  .vacancy-section .vacancy-section__slider .swiper-slide:not(.swiper-slide-active) .vacancy-card__button {
    opacity: 1;
  }

  .vacancy-section.-slider .vacancy-card .vacancy-card__subtitle {
    position: static;
  }

  .vacancy-section .vacancy-section__slider .swiper-scrollbar {
    display: none;
  }

  .vacancy-section .vacancy-section__button {
    display: flex;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  .vacancies__grid {
    grid-gap: 10px;
  }

  .vacancies__grid .vacancy-card-container {
    box-shadow: 0px 4px 101px rgba(0, 0, 0, 0.19);
  }

  .vacancies__grid .vacancy-card__button {
    opacity: 1;
  }
}

@media screen and (max-width: 759px) {
  .-homepage .hidden-cards-section__grid {
    grid-template-columns: 1fr;
  }
  .-homepage .hidden-cards-section__grid .default-partner-card,
  .-homepage .hidden-cards-section__grid .default-partner-card + .default-card.-with-img,
  .-homepage .hidden-cards-section__grid .default-info-card,
  .-homepage .hidden-cards-section__grid .key-indicator-block,
  .-homepage .hidden-cards-section__grid .rewards-slider-block {
    grid-column: span 1;
  }
  .hidden-cards-section__grid {
    grid-template-columns: 1fr;
  }
  .vacancy-card.--full-col {
    grid-column: auto;
  }
  /* Form grid */
  .vacancies__grid {
    grid-template-columns: 1fr;
  }
  .default-fact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 34px;
  }

  /* Reward slider */

  .rewards-slider-block .container {
    padding: 30px 10px 48px;
  }

  /* Hidden cards section */

  .hidden-cards-section .hidden-cards-section__grid {
    padding-left: 10px;
    padding-right: 10px;
    margin-right: -10px;
    margin-left: -10px;
    padding-top: 10px;
  }

  .hidden-cards-section__grid .rewards-slider-block .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hidden-cards-section__grid .key-indicator-block,
  .hidden-cards-section__grid .rewards-slider-block {
    margin-left: -10px;
    margin-right: -10px;
  }

  /* Grid section */

  .grid-section .about-gallery-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-section .hidden-cards-section__grid .career-cta-section,
  .grid-section .hidden-cards-section__grid .key-indicator-block,
  .grid-section .hidden-cards-section__grid .rewards-slider-block,
  .grid-section .about-gallery-section {
    margin-left: -10px;
    margin-right: -10px;
  }

  /* Recognition slider */

  .recognition-slider-block .swiper-slide {
    width: 303px;
    max-width: calc(100vw - 40px);
  }

  .recognition-slider-block .recognition-slider__slide br {
    display: none;
  }

  /* Practices slider block */

  .professionals-slider-block {
    margin-left: -10px;
    width: 100vw;
    padding: 0 10px;
    background-color: transparent;
    -webkit-border-radius: 0;
    border-radius: 0;
  }

  .professionals-slider-block .swiper-slide {
    width: 293px;
  }

  /* Most read block */

  .most-read-block .most-read__grid {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .most-read-block .most-read__title {
    margin-bottom: 15px;
  }

  .most-read-block .default-card {
    min-height: 208px;
    padding: 15px 15px 10px;
  }

  .default-editor > p > video,
  .default-editor > p > img,
  .default-editor > video,
  .default-editor > img {
    height: 181px;
    margin: 32px 0;
  }
}

.post-section-container__content img{
  max-width: 100%;
}