@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  --hr-colors-dark-blue: #0c1f33;
	--hr-colors-blue: #275ec7;
	--hr-colors-light-blue: #3893ff;
	--hr-colors-aquamarine: #66d3c8;
	--hr-colors-turquoise: #27c791;
	--hr-colors-green: #1fb94b;
  --hr-colors-green-new: #57CCD3;
	--hr-colors-orange: #ff4500;
	--hr-colors-pink: #fa1975;
	--hr-colors-gray: #e6eaee;
	--palette-background: #e6eaee;
	--palette-white-main: #fff;
	--palette-black-main: #222;
	--palette-red: #ef6161;
	--palette-red-error: #f00;
	--palette-dark-bg: #020f28;
}

/* NORMALIZE */
/* @font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf");
  src: url(OpenSans-Regular.ttf) format(ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf");
  src: url(OpenSans-Medium.ttf) format(ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-SemiBold.ttf");
  src: url(OpenSans-SemiBold.ttf) format(ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf");
  src: url(OpenSans-Bold.ttf) format(ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-ExtraBold.ttf");
  src: url(OpenSans-ExtraBold.ttf) format(ttf);
  font-weight: 800;
} */

* {
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: var(--hr-colors-dark-blue);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html.scroll-hidden {
  overflow: hidden;
}
html.scroll-hidden body {
  overflow-y: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}
body {
  width: 100%;
  color: var(--black-main);
  background-color: var(--hr-colors-dark-blue);
  overflow-x: hidden;
}
.container {
  width: 1440px;
  margin: 0 auto;
}

a,
span,
p,
b,
h1,
h2,
h3,
h4,
h5 {
  color: #fff;
}
h1 {
  font-weight: 700;
  font-size: 96px;
  line-height: 110%;
}
h2 {
  font-weight: 600;
  font-size: 80px;
  line-height: 120%;
}
h3 {
  font-weight: 700;
  font-size: 46px;
  line-height: 120%;
}
h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;  
  color: #fff;
}
h5 {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
}
h5._primary {
  color: var(--hr-colors-turquoise);
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul li {
  list-style: none;
}

button {
  border: none;
}
/* END NORMALIZE */

/* const */
.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-56 {
  margin-top: 56px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-200 {
  margin-top: 200px;
}
/* preloader */
#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--hr-colors-dark-blue);
  z-index: 200;
  animation: preloaderAnim .7s cubic-bezier(0.78,-0.01, 1, 1) forwards;
  }
#preloader-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--hr-colors-turquoise);
  box-shadow: 0 0 6px 2px #27C79166;
  animation: preloaderLineAnim .5s cubic-bezier(0.78,-0.01, 1, 1) forwards;
}
@keyframes preloaderAnim {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes preloaderLineAnim {
  0% {
    width: 0vw;
  }
  70% {
    width: 100vw;
  }
  100% {
    width: 100vw;
  }
}
/* swiper buttons */
.swiper-button-prev, .swiper-button-next {
  width: auto !important;
  height: auto !important;
  position: relative !important;
  top: 0 !important;
  margin-top: 0 !important;
  left: auto !important;
  right: auto !important;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: '' !important;
  display: block;
  background-image: url('../../img/hr/swiper-button.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px; 
}
.swiper-button-prev:hover::after, .swiper-button-next:hover::after {
  background-image: url('../../img/hr/swiper-button-hover.svg');
}
.swiper-button-prev._dark::after, .swiper-button-next._dark::after {
  background-image: url('../../img/hr/swiper-button-dark.svg');
}
.swiper-button-prev._dark:hover::after, .swiper-button-next._dark:hover::after {
  background-image: url('../../img/hr/swiper-button-dark-hover.svg');
}
.swiper-button-next::after, .swiper-button-next._dark::after {
  transform: rotate(180deg);
}
/* buttons */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  color: var(--hr-colors-turquoise);
  outline: 1px solid var(--hr-colors-turquoise);
  border-radius: 45px;
  cursor: pointer;
}
.button.disabled {
  opacity: .35;
  cursor: default;
}
.button._primary {
  outline: none;
  background: var(--hr-colors-turquoise);
  color: #fff;
  transition: all .15s ease-in-out;
}
._secondary {
  color: var(--palette-white-main);
  outline: 1px solid var(--palette-white-main);
  border-radius: 50%;
  transition: transform .2s ease;
}
._secondary:hover {
  outline: 2px solid var(--palette-white-main);
}
.button._dashed {
  outline: 1px dashed var(--hr-colors-turquoise);
  transition: all .15s ease-in-out;
}
.button._dashed:hover {
  outline: 1px dashed var(--hr-colors-turquoise) !important;
  background: rgba(39, 199, 145, 0.05);
}
.button:not(._primary):hover {
  outline: 2px solid var(--hr-colors-turquoise);
}
.button._primary:not(.disabled):hover {
  background: #19B480;
}
.button img {
  position: relative;
  transition: all .2s ease-in-out;
  will-change: auto;
}
.button:hover > img {
  transform: rotate(45deg) translateX(4px) translateY(-3px);
}

/* FORM VALIDATE ERRORS */
.error-msg {
  color: var(--palette-red-error);
  font-size: 12px;
}

/* INPUTS */
input, textarea {
  padding: 13px 0px 6px 0px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--palette-white-main);
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  transition: all .2s ease;
  resize: none;
}
input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  transition: color .2s ease;
  transition: all .2s ease;
}
input:hover::placeholder, textarea:hover::placeholder {
  color: rgba(255, 255, 255, 1);
}
input.error, textarea.error {
  color: var(--palette-red-error);
  border-color: var(--palette-red-error);
}

.form-item__hidden{
	display: none; 
}

input._primary, textarea._primary {
  border-color: var(--hr-colors-turquoise);
  color: var(--hr-colors-turquoise);
}
.modal__wrapper._light input._primary, .modal__wrapper._light textarea._primary {
  border-color: var(--hr-colors-light-blue);
  color: var(--hr-colors-light-blue);
}
input._primary::placeholder, textarea._primary::placeholder {
  color: var(--hr-colors-turquoise);
  opacity: .5;
}
.modal__wrapper._light input._primary::placeholder, .modal__wrapper._light textarea._primary::placeholder {
  color: var(--hr-colors-light-blue);
  opacity: .5;
}
input._primary:hover::placeholder, textarea._primary:hover::placeholder {
  opacity: 1;
}
.modal__wrapper._light input._primary:hover::placeholder, textarea._primary:hover::placeholder {
  opacity: 1;
}
/* remove arrows on number input */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* CUSTOM CHECKBOX */
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: initial;
  -moz-appearance: initial;
  border: none !important;
  padding: 0 !important;
}
.custom-checkbox-container {
  cursor: pointer;
}
.custom-checkbox-input {
  position: absolute;
  height: 0;
  width: 0;
}
.custom-checkbox-container label {
  font-size: 16px;
}
.custom-checkbox-input::before {
  content: "";
  background-image: url("../../img/hr/checkbox-default.svg");
  display: flex;
  position: relative;
  width: 24px;
  height: 24px;
  top: 3px;
  transition: all 0.2s ease;
}
.custom-checkbox-container:hover .custom-checkbox-input::before {
  background-image: url("../../img/hr/checkbox-hover.svg");
}
.custom-checkbox-input:checked::before {
  background-image: url("../../img/hr/checkbox-active.svg");
}
.custom-checkbox-container:hover .custom-checkbox-input:checked:before {
  background-image: url("../../img/hr/checkbox-active.svg");
}
.custom-checkbox-container label {
  padding-left: 24px;
}
/* CUSTOM RADIO */
.custom-radio-input {
  position: absolute;
  height: 0;
  width: 0;
  cursor: pointer;
}
.custom-radio-input::before {
  content: "";
  background-image: url("../../img/hr/radio.svg");
  display: flex;
  position: relative;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  transition: all 0.2s ease;
}
.custom-radio-container:hover .custom-radio-input::before {
  background-image: url("../../img/hr/radio-hover.svg");
}
.custom-radio-input:checked::before {
  background-image: url("../../img/hr/radio-active.svg");
}
.custom-radio-container:hover .custom-radio-input:checked:before {
  background-image: url("../../img/hr/radio-active.svg");
}
.custom-radio-container label {
  padding-left: 32px;
  font-size: 16px;
  cursor: pointer;
  color: var(--palette-white-main);
}
.custom-checkbox-container label {
  position: relative;
  top: 1px;
  margin-left: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #fff;
}
.custom-checkbox-container label a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--hr-colors-turquoise);
}

/* modal default */
.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -5 !important;
}
.modal.active {
  z-index: 10 !important;
}
.modal__wrapper {
  position: relative;
  display: flex;
  opacity: 0;
  flex-direction: column;
  margin: auto;
  z-index: 2;
  transform: scale(.5) !important;
  transition: all .2s ease;
  border-radius: 24px;
  box-shadow: 0 0 6px 2px rgba(198, 198, 198, 0.05);
  max-height: calc(100% - 50px);
  padding: 32px;
}
.modal__wrapper._dark {
  background: var(--palette-dark-bg);
}
.modal__wrapper._light {
  background: #E6EAEE;
}
.modal__wrapper.active {
  overflow: auto;
  transform: scale(1) !important;
  opacity: 1;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 36, 69, 0.5);
  opacity: 0;
  z-index: 1;
  transition: none;
}
.modal.active .modal__bg {
  opacity: 1;
  transition: opacity .3s ease;
}
.modal__close-btn {
  position: absolute;
  background: transparent;
  top: 32px;
  right: 32px;
  cursor: pointer;
}

/* Hover */
.card-hover {
  transition: all .3s cubic-bezier(0,0,.4,1);
}
.card-hover:hover {
  transform: scale(1.01) !important;
}

header {
  width: 1440px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: var(--palette-dark-bg);
  border-radius: 45px;
  transition: all .6s ease;
}
header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  border-radius: 0 0 24px 24px;
}
header .header-wrapper {
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .6s ease;
}
header.fixed .header-wrapper {
  padding-top: 18px;
  padding-left: 18px;
  margin: auto;
}
.header__logo {
  display: flex;
}
header nav ul {
  display: flex;
  gap: 32px;
}
header nav ul li a {
  font-size: 16px;
	transition: color .15s ease;
}
header nav ul li a:hover {
	color: var(--hr-colors-turquoise) !important;
}
header .contacts {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: end;
}
header .contacts a {
  font-size: 16px;
  font-weight: 600;
  transition: color .2s ease;
}
header .contacts a:hover {
	color: var(--hr-colors-turquoise);
}
.menu-burger, .mobile-menu {
  display: none;
}
header._white {
  background-color: #fff;
}
header._white nav ul li a {
  color: var(--hr-colors-dark-blue);
}
header._white .contacts a {
  color: var(--hr-colors-dark-blue);
}
header._white .contacts a:hover {
  color: var(--hr-colors-turquoise);
}

.animate {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  transition: all .6s ease-in-out;
 
}
.animate.animate-started {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  transition-delay: .4s;
}


/* banner */
.banner {
  position: relative;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}
#animation-container svg {
  position: absolute;
  top: 0;
}
.banner .container {
  position: relative;
  z-index: 2;
}
.banner video {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.main-banner {
  height: 828px;
}
.main-banner-mob {
  display: none;
}
.main-banner__title {
  padding-top: 139px;
}
.main-banner__subtitle {
  margin-top: 32px;
  font-size: 20px;
  max-width: 760px;
}
/* marquee */
.items-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
}
.items {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.item {
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 10px 0;
  transition: all 0.1s ease-in-out;
}
.item::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  background-color: var(--hr-colors-turquoise);
  border-radius: 50%;
  margin-right: 20px;
}

.marquee {
  animation: scroll 25s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}


/* eltex-info */
.eltex-info {
  margin-top: 146px;
}
.eltex-info__cards {
  display: grid;
  grid-template-columns: 1fr .5fr .5fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.eltex-info__cards-main {
  grid-row-start: 1;
  grid-row-end: 3;
  padding: 102px 48px 32px 32px;
  height: fit-content;
  background: linear-gradient(47deg, #27c791 -40%, #062535 65%, #020f28 90%);
  border-radius: 24px;
}
.eltex-info__cards-main p {
  margin-top: 32px;
  font-size: 20px;
}
.eltex-info__cards-main a {
  padding-left: 20px;
  margin-top: 32px;
  width: fit-content;
}
.eltex-info__cards-sub {
  height: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--palette-dark-bg);
  border-radius: 24px;
}

/* BENEFITS */
.benefits.container {
  overflow: visible;
  position: relative;
}
/* .benefits-manul  {
  display: none;
} */
.benefits-manul {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.benefits-manul .body {
  position: absolute;
  top: 154px;
  right: 24px;
  z-index: -1;
}
.benefits-manul .paw-1 {
  position: absolute;
  top: 240px;
  right: 66px;
  z-index: 5;
}
.benefits-manul .paw-2 {
  position: absolute;
  top: 240px;
  right: 160px;
  transform: scale(-1, 1);
  z-index: 5;
}
.benefits-grid {
  margin-top: 62px;
  display: grid;
  grid-template-rows: 2fr 1fr;
  gap: 16px;
}
.benefits-grid__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.benefits-grid__top-left {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.benefits-grid__top-left-row1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefits-grid__top-left-row2 {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 16px;
}
.benefits-grid__top-right {
  display: flex;
}
.benefits-grid__top-right .benefits-card {
  max-height: calc(100% - 100px);
  align-self: flex-end;
}
.benefits-grid__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.benefits-card {
  padding: 24px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid;
  border-radius: 24px;
  background: var(--palette-dark-bg);
  overflow: hidden;
}
.benefits-card h5 {
  z-index: 2;
}
.benefits-card p {
  font-size: 16px;
  margin-top: 51px;
  z-index: 2;
}
.benefits-card a {
  font-size: 16px;
  color: var(--hr-colors-orange);
}
.benefits-card .bg-gradient {
  position: absolute;
  bottom: -200px;
  right: -250px;
  width: 350px;
  height: 400px;
  border-radius: 50%;
  transform: rotate(-150deg);
  filter: blur(150px);
  opacity: .2;
  transition: all .25s ease;
}
.benefits-card:hover .bg-gradient {
  bottom: 100px;
  right: -300px;
  opacity: .3;
}

/* PRACTICE */
.practice__wrapper {
  position: relative;
  padding: 24px 150px 24px 24px;
  background: var(--palette-dark-bg);
  border-radius: 24px;
  overflow: hidden;
}
.practice__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.practice__content-text {
  max-width: 710px;
  z-index: 2;
}
.practice__content-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: var(--hr-colors-turquoise);
  z-index: 2;
}
.practice__content-bullets li {
  color: var(--palette-dark-bg);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.practice__content-bullets li::before {
  content: '';
  display: block;
  margin-top: -2px;
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  background: var(--palette-dark-bg);
  border-radius: 50%;
}
.practice__wrapper button {
  position: relative;
  z-index: 2;
}
.practice__bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
/* practice modal */
.practice-modal__wrapper {
  max-width: 724px;
  height: 800px;
}
.practice-modal__wrapper .scroll {
  height: 100%;
  padding-bottom: 32px;
}
.practice-modal__title.web {
  display: block;
}
.practice-modal__title.mob {
  display: none;
}
.practice-modal__progress {
  display: flex;
  align-items: center;
  gap: 8px;
}
.first-mark::after, .first-mark-school::after {
  content: '1';
  opacity: 1;
  transition: opacity .2s ease;
}
.second-mark::after, .second-mark-school::after {
  content: '2';
  opacity: 1;
  transition: opacity .2s ease;
}
.third-mark::after, .third-mark-school::after {
  content: '3';
  opacity: 1;
  transition: opacity .2s ease;
}
.first-mark._done::after, .first-mark-school._done::after {
  opacity: 0;
}
.second-mark._done::after, .second-mark-school._done::after {
  opacity: 0;
}
.third-mark._done::after, .third-mark-school._done::after {
  opacity: 0;
}
.practice-modal__progress .mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #27C79166;
  color: var(--palette-white-main);
  font-weight: 600;
  transition: all .2s ease;
}
.practice-modal__wrapper._light .practice-modal__progress .mark {
  background: #3893FF66;
}
.practice-modal__progress .mark._active {
  background: var(--hr-colors-turquoise);
}
.practice-modal__wrapper._light .practice-modal__progress .mark._active {
  background: var(--hr-colors-light-blue);
}
.practice-modal__progress .mark._done {
  background-image: url('../../img/hr/mark-done.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--hr-colors-green);
}
.practice-modal__wrapper._light .practice-modal__progress .mark._done {
  background-image: url('../../img/hr/mark-done.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--hr-colors-green);
}
.practice-modal__progress .mark-divider {
  width: 60px;
  height: 1px;
  background: #27C79166;
}
.practice-modal__progress .mark-divider._active {
  background: var(--hr-colors-turquoise);
}
.practice-modal__wrapper._light .practice-modal__progress .mark-divider {
  background: #3893FF66;
}
.practice-modal__wrapper._light .practice-modal__progress .mark-divider._active {
  background: var(--hr-colors-light-blue);
}
.practice-modal .form-step {
  flex-direction: column;
  justify-content: space-between;
  width: 660px;

  height: 100%;
  grid-template-columns: 1fr;
  display: none;
}
.practice-modal .form-step.visible {
  display: grid;
}
.practice-modal .form-step .form-wrapper {
  padding: 32px 40px;
  background: var(--hr-colors-dark-blue);
  border-radius: 24px;
  height: fit-content;
}
.practice-modal__wrapper._light .form-step .form-wrapper {
  box-shadow: 0 0 16px 8px rgba(77, 92, 100, 0.1);
  background: #fff;
}
.form-title {
  font-size: 20px;
  font-weight: 600;
}
.form-content {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  gap: 16px;

}
.form-content .row-100 {
  display: grid;
  grid-template-columns: 1fr;
}
.form-content .row-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-content .input {
  display: flex;
  flex-direction: column;
}
.form-content .input-descr {
  font-size: 16px;
  font-weight: 600;
  color: var(--palette-white-main);
}
.practice-modal__wrapper._light .input-descr {
  color: var(--hr-colors-dark-blue);
}
.form-list__item {
  display: flex;
  align-items: flex-start;
  height: 24px;
}
.form-navigation-buttons {
  /* margin-top: 32px; */
  padding: 32px 0 0;
  display: flex;
  align-self: flex-end;
  justify-content: flex-end;
  gap: 24px;
}
.form-navigation-buttons .button.prev-form {
  color: #fff !important;
  outline-color: #fff !important;
}
.practice-modal__success-wrapper, .practice-modal__alert-wrapper {
  align-items: center;
}
.practice-modal__success-wrapper p {
  text-align: center;
}
.practice-modal__success .icon, .practice-modal__alert .icon {
  width: 80px;
  height: 80px;
  background-color: var(--hr-colors-turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.practice-modal__alert .icon {
	background-color: #FFAF38;
}
.practice-modal__success .icon img, .practice-modal__alert .icon img {
  width: 48px;
  height: 48px;
}

/* FEEDbACK */
.main-feedback.container {
  overflow: visible;
}
.main-feedback__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-feedback__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: -24px;
}
.main-feedback__list-item.swiper-slide {
  position: relative;
  width: 420px;
  height: 480px;
  overflow: hidden;
}
.main-feedback__list-item.swiper-slide img {
  position: relative;
  border-radius: 16px;
}
.main-feedback__list-item-info {
  position: absolute;
  padding: 24px;
  z-index: 2;
  top: 0;
  left: 0;
  transition: all .3s ease;
}
.main-feedback__list-item-info .title {
  color: #fff;
  transition: all .2s ease;
}
.main-feedback__list-item-info .text {
  margin-top: 10px;
  font-size: 16px;
  overflow: hidden;
  transition: all .3s ease;
  opacity: 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 15;
  align-self: stretch;
}
.main-feedback__list-item-info .text.-short {
  -webkit-line-clamp: 11;
}
.main-feedback__list-item-info .read-more {
  display: block;
  margin-top: 11px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;  
  cursor: pointer;
}
.main-feedback__list-item-info .read-more img {
  transition: all .2s ease;
}
.main-feedback__list-item-info .read-more:hover img {
  transform: rotate(45deg) translateX(4px) translateY(-3px);
}
.main-feedback__list-item img.web {
  display: block;
}
.main-feedback__list-item img.mob {
  display: none;
}
.main-feedback__list-item .bg-gradient {
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 40%;
  z-index: 1;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(2,15,40,1) 0%, rgba(2,15,40,0) 100%);
  transition: all .5s ease;
  opacity: 1;
}
.main-feedback__list-item .bg-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--palette-dark-bg);
  border-radius: 16px;
  transition: all .3s ease;
  opacity: 0;
}
.main-feedback-modal.swiper {
  display: flex;
  position: fixed;
}
.main-feedback-modal__mob-panel {
  display: none;
}
.main-feedback-modal__list {
  width: 100%;
  height: 100%;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  pointer-events: none;
}
.main-feedback-modal__list .swiper-wrapper {
  position: relative;
  z-index: 11;
}
.main-feedback__modal-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-feedback__modal-author p {
  opacity: .5;
}
.main-feedback__modal-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.main-feedback-modal .modal__wrapper {
  max-width: 952px;
  height: fit-content;
  pointer-events: all;
}
.main-feedback-modal .modal__wrapper * {
  color: var(--palette-dark-bg);
}
.main-feedback__list-item:hover .main-feedback__list-item-info {
  transform: translateY(0) !important;
}
.main-feedback__list-item:hover .main-feedback__list-item-info .title {
  color: #767676;
}
.main-feedback__list-item:hover .main-feedback__list-item-info .text {
  opacity: 1;
}
.main-feedback__list-item:hover .bg-gradient {
  opacity: 0;
}
.main-feedback__list-item:hover .bg-fill {
  opacity: 1;
}

.gallery.container {
  overflow: visible;
}
.gallery__list-item.swiper-slide {
  border-radius: 24px;
  overflow: hidden;
  height: 700px;
  width: 100%;
}
.gallery__list-item div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gallery__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* footer */
footer {
  position: relative;
  background: var(--palette-dark-bg);
  border-radius: 24px 24px 0 0;
}
footer._white {
  background: var(--palette-white-main);
}
footer._white .button, footer._white .button:hover {
  color: var(--hr-colors-dark-blue);
  outline-color: var(--hr-colors-dark-blue);
}
footer._white svg {
  opacity: .2;
  z-index: -1;
}
footer a {
	transition: color .15s ease;
}
footer a:hover {
	color: var(--hr-colors-turquoise);
}
footer svg {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: -32px;
  opacity: .1;
  z-index: -1;
}
footer a svg {
	height: 50px;
    width: 50px;
    opacity: 1;
    position: relative;
    bottom: unset;
}
footer a svg path {
	height: 50px;
    width: 50px;
}
.footer-wrapper {
  position: relative;
  padding-top: 48px;
  padding-bottom: 32px;
  background: var(--palette-dark-bg);
  z-index: 2;
  border-radius: 24px 24px 0 0;
}
footer._white .footer-wrapper {
  background: var(--palette-white-main);
}
.footer-wrapper > div {
  position: relative;
  z-index: 2;
}
.footer-wrapper__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrapper-nav {
  display: flex;

}
.footer-wrapper-nav li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-wrapper-nav li:first-of-type {
  margin-right: 180px;
}
.footer-wrapper-nav li:last-of-type {
  margin-left: 197px;
}
.footer-wrapper-contacts {
  display: flex;
  gap: 89px;
}
.footer-wrapper-contacts__links {
  display: flex;
  gap: 16px;
}
.footer-wrapper-contacts .button {
  height: fit-content;
  color: #fff;
  outline-color: #fff;
  padding-top: 11px;
  padding-bottom: 11px;
}
.footer-wrapper-contacts .button:hover {
  outline-color: #fff;
}
.footer-wrapper__second-row {
  display: flex;
  justify-content: space-between;
  margin-top: 187px;
}
.footer-manul {
  position: absolute;
  top: -30%;
  right: 461px;
  z-index: 1;
}

/* pagination component */
.pagination {
  width: fit-content;
  max-width: 387px;
  height: 32px;
  display: flex;
  align-items: center;
  margin: 32px auto 0;
  /*grid-template-columns: repeat(12, 1fr);*/
}
.pagination > * {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
}
.pagination-number {
  width: 32px;
  height: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.pagination-number:hover {
  font-weight: 600;
}
.pagination-number.active {
  content: '';
  /*width: 100%;*/
  height: 100%;
  border-radius: 50%;
  font-weight: 600;
}
.pagination-number.active._turquoise {
  background-color: var(--hr-colors-turquoise);
}
.pagination-number.active._green {
  background-color: #57CCD3;
}
.pagination-number.active._blue {
  background-color: #3893FF;
}
.pagination__prev:hover > svg path, .pagination__next:hover > svg path {
  stroke-width: 2;
}

/* 404 */
.wrapper404 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper404__content {
  max-width: 750px;
  text-align: center;
  margin-top: -120px;
  z-index: 2;
}
.wrapper404__content p {
  font-size: 16px;
}
.wrapper404__content a {
  width: fit-content;
  margin: 60px auto 0;
}
.wrapper404__gradient {
  width: 100vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.wrapper404__manul {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 1920px) {
  .banner video {
    max-width: 1920px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 24px 24px;
  }
}

@media screen and (max-width: 1440px) {
  .container {
    width: 1200px;
  }
  header nav ul {
    gap: 16px;
  }
  .main-banner {
    height: 770px;
  }
  .banner video {
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
  }
  .eltex-info__cards-main {
    padding: 32px;
  }
  .footer-wrapper-nav li:first-of-type {
    margin-right: 120px;
  }
  .footer-wrapper-nav li:last-of-type {
    margin-left: 120px;
  }
  .footer-manul {
    right: 230px;
  }
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 72px;
  }
  h3 {
    font-size: 38px;
  }
  .container {
    width: 100%;
    padding: 0 40px;
  }
  header {
    width: 100%;
    padding: 0 40px;
  }
  header.fixed {
    padding: 0;
    border-radius: 0 0 24px 24px;
  }
  header .container {
    padding: 18px 0;
  }
  header.fixed .container {
    padding: 18px 40px;
  }
  .header__logo, .header__logo img {
    width: 140px;
  }
  header .contacts {
    flex-direction: column;
    gap: 4px;
  }
  header .contacts a {
    font-size: 14px;
  }
  header nav ul {

gap: 20px;
  }
  .eltex-info__cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr .5fr .5fr;
  }
  .eltex-info__cards-main {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: auto;
    grid-row-end: auto;
  }
  .eltex-info__cards-sub {
    gap: 24px;
  }
  .sticky-wrapper {
    width: 100%;
  }
  .footer-wrapper-contacts {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .footer-wrapper-nav li {
    gap: 24px;
  }
  .footer-manul {
    top: -25%;
    right: 170px;
  }
}

@media screen and (max-width: 992px) {
  h2 {
    font-size: 60px;
  }
  .container {
    width: 100%;
    padding: 0 20px;
  }
  header {
    padding: 0 0;
    position: fixed;
    top: 0;
    width: 100%;
    border-radius: 0 0 24px 24px;
  }
  header .container {
    padding: 24px 20px;
  }
  header.fixed .container {
    padding: 24px 20px;
  }
  header .navbar, header .contacts {
    display: none;
  }
  .header__logo, .header__logo img {
    height: 24px;
    width: auto;
  }
  .menu-burger {
    display: block;
    height: 24px;
  }
  .mobile-menu {
    display: block;
    z-index: 20;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 20px;
  }
  .mobile-menu.closed {
    z-index: -1;
  }
  .mobile-menu._white .mobile-menu__wrapper{
    background: var(--palette-white-main);
  }
  .mobile-menu__wrapper {
    position: relative;
    padding: 24px;
    width: 100%;
    height: 100%;
    border-radius: 24px 0 0 24px;
    background: var(--palette-dark-bg);
    transform: translateX(0);
    opacity: 1;
    transition: all .2s ease;
    z-index: 2;
  }
  .mobile-menu.closed .mobile-menu__wrapper{
    transform: translateX(110%);
    opacity: 0;
  }
  .mobile-menu__top-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu__navbar {
    margin-top: 48px;
  }
  .mobile-menu__navbar ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
  .mobile-menu__navbar ul li a {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
	color: #fff;
  }
  .mobile-menu .mobile-menu__bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: all .5s ease;
  }
  .mobile-menu.closed .mobile-menu__bg {
    opacity: 0;
  }
  .main-banner {
    height: 668px;
  }
  .eltex-info {
    margin-top: 56px;
  }

  .benefits-wrapper {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
    background: var(--palette-dark-bg);
  }
  .benefits-grid {
    margin-top: 32px;
    gap: 24px;
    grid-template-rows: unset;
  }
  .benefits-grid__top {
    gap: 24px;
    grid-template-rows: unset;
    grid-template-columns: unset;
  }
  .benefits-grid__top-left {
    gap: 24px;
    grid-template-rows: unset;
  }
  .benefits-grid__top-left-row1 {
    gap: 24px;
    grid-template-columns: unset;
  }
  .benefits-grid__top-left-row2 {
    gap: 24px;
    grid-template-columns: unset;
  }
  .benefits-grid__top-right {
    display: block;
  }
  .benefits-grid__top-right .benefits-card {
    max-height: unset;
  }
  .benefits-grid__bottom {
    gap: 24px;
    grid-template-columns: unset;
  }
  .benefits-card {
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .benefits-card p {
    margin-top: 8px;
  }
  .benefits-card .bg-gradient {
    display: none;
  }
  .eltex-info__cards-sub p {
    font-size: 16px;
  }
  .practice__content-text p {
    font-size: 16px;
  }

  .footer-wrapper-nav li:fi.main-feedback__list-item-info .title {
  color: #767676;
}rst-of-type {
    margin-right: 52px;
  }
  .footer-wrapper-nav li:last-of-type {
    margin-left: 52px;
  }
}

@media screen and (max-width: 768px) {
  h1 {font-size: 72px;}
  h2 {font-size: 42px;}

  .footer-wrapper__second-row {
    margin-top: 120px;
  }
  footer svg {
    display: none;
  }
  footer a svg {
    display: block;
  }
  .footer-wrapper__row {
    flex-direction: column;
    gap: 38px;
  }
  .footer-wrapper-nav {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .footer-wrapper-nav li {
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-items: center;
    gap: 24px;
  }
  .footer-wrapper-nav li a {
    font-size: 18px;
  }
  .footer-wrapper-contacts {
    flex-direction: column;
    gap: 38px;
  }
  .footer-wrapper__second-row {
    margin-top: 38px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-wrapper__second-row p, .footer-wrapper__second-row a {
    font-size: 14px;
    opacity: 0.5;
  }
  .footer-manul {
    top: -13%;
    right: 30px;
    width: 150px;
  }
}

@media screen and (max-width: 480px) {
  * {
    font-size: 16px;
  }
  .sm-mt-0 {
    margin-top: 0;
  }
  .sm-mt-4 {
    margin-top: 4px;
  }
  .sm-mt-16 {
    margin-top: 16px;
  }
  .sm-mt-24 {
    margin-top: 24px;
  }
  .sm-mt-32 {
    margin-top: 32px;
  }
  .sm-mt-60 {
    margin-top: 60px;
  }
  .sm-mt-156 {
    margin-top: 156px;
  }
  
  h1 {font-size: 36px;}
  h2 {font-size: 32px;}
  h3 {font-size: 24px;}
  h4 {font-size: 20px;}
  h5 {font-size: 20px;font-weight: 600;}

  .swiper-button-next:after, .swiper-button-prev:after {
    width: 40px;
    height: 40px;
  }
  .swiper-button-prev:hover::after, .swiper-button-next:hover::after {
    background-image: url('../../img/hr/swiper-button.svg');
  }
  .swiper-button-prev._dark:hover::after, .swiper-button-next._dark:hover::after {
    background-image: url('../../img/hr/swiper-button-dark.svg');
  }

  .custom-checkbox-container, .custom-radio-container {
    position: relative;
  }
  .custom-checkbox-container {
    display: flex;
    align-items: flex-start;
  }
  .custom-checkbox-input::before {
    top: 9px;
  }
  
  .modal__wrapper {
    max-height: none;
    border-radius: 0;
    padding: 20px;
  }
  
  .main-banner {
    height: 681px;
    background: linear-gradient(0deg, #27c7914D 0%, #0c1f334D 100%);
  }
	#animation-container svg {
		display: none;
	}
  .banner video {
    display: none;
  }
  .main-banner-mob {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
  }
  .main-banner__title {
    padding-top: 120px;
  }
  .main-banner__subtitle {
    font-size: 16px;
    position: relative;
    z-index: 2;
  }

  .marquee {
    animation: scroll 20s linear infinite;
  }

  .eltex-info {
    margin-top: 60px;
  }
  .eltex-info__cards {
    grid-template-columns: 1fr;
  }
  .eltex-info__cards-main {
    padding: 16px;
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .eltex-info__cards-main p {
    margin-top: 8px;
    font-size: 16px;
  }
  .eltex-info__cards-main a {
    width: 100%;
  }

  .benefits {
    position: relative;
  }
  .benefits.container {
    height: auto;
  }
  .benefits-manul .body {
    top: -100px;
  }
  .benefits-manul .paw-1 {
    top: -20px;
  }
  .benefits-manul .paw-2 {
    top: -20px;
  }
  .sticky-wrapper {
    position: relative;
    height: auto;
  }
  .benefits-card a {
    color: var(--hr-colors-turquoise);
  }
  .benefits__scroll .swiper-wrapper {
    flex-direction: column;
  }
  .benefits__scroll .swiper-wrapper a {
    display: block;
    display: flex;
    align-items: center;
    outline-color: #fff;
    color: #fff;
  }
  
  .benefits__scroll .swiper-wrapper a:hover {
    outline: 1px solid #fff;
  }
  .benefits__scroll-line {
    display: none;
  }
  .benefits__scroll .swiper-wrapper {
    gap: 24px;
  }
  .benefits__scroll-item {
    width: auto !important;
  }
  .benefits__scroll-item h5 {
    font-size: 20px;
  }
  .benefits__scroll-item p {
    margin-top: 8px;
    font-size: 16px;
  }
  .benefits__photo {
    display: none;
  }

  .practice__wrapper {
    padding: 24px;
  }
  .practice__content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
  /* .practice__content-bullets {
    background: none;
    padding: 0;
  }
  .practice__content-bullets li {
    color: #fff;
  }
  .practice__content-bullets li::before {
    background: var(--hr-colors-turquoise);
  } */
  .practice__content-bullets li::before {
    margin-top: 1px;
  }
	.practice-modal .form-step {
		width: 100%;
	}
  .practice-modal__wrapper {
    height: 100%;
    width: 100%;
    padding: 0;
  }
  .practice-modal__wrapper .scroll {
    overflow: auto;
  }
  .practice-modal__title.web {
    display: none;
  }
  .practice-modal__title.mob {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .practice-modal__progress {
    width: 100%;
    margin-top: 0;
    padding: 20px;
    background-color: var(--hr-colors-dark-blue);
    box-shadow: 0 0 6px 2px rgba(198, 198, 198, 0.05);
  }
  .practice-modal__progress .mark-divider {
    width: 40px;
  }
  .practice-modal form {
    width: 100%;
    height: auto;
    padding: 0 20px;
  }
  .practice-modal form .form-wrapper {
    width: 100%;
    padding: 32px 40px;
  }
  .form-content .sm-row-100 {
    grid-template-columns: 1fr;
  }
  .form-navigation-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
  .form-navigation-buttons .button:last-of-type {
    margin-bottom: 42px;
  }
  .practice-modal__success-wrapper {
    height: 100%;
    justify-content: center;
    text-align: center;
  }
  .practice-modal__close {
    right: 20px;
    top: 28px;
    bottom: 28px;
    width: 24px;
    height: 24px;
  }
  .practice-modal__wrapper._light form .form-wrapper {
    box-shadow: 0 0 16px 8px rgba(77, 92, 100, 0.1);
  }
  .practice-modal__wrapper._light .practice-modal__progress {
    background: #fff;
    box-shadow: 1px 2px 8px 0 rgba(51, 51, 51, 0.1), 0 0 4px 0 rgba(154, 154, 154, 0.08);
  }
  
  .main-feedback__list-item.swiper-slide {
    width: calc(100% - 32px);
    height: 405px;
    overflow: hidden;
    padding: 24px;
    border-radius: 24px;
    background: var(--palette-dark-bg);
  }
  .main-feedback__list-item.swiper-slide img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  .main-feedback__list-item.swiper-slide h5 {
    font-size: 20px;
  }
  .main-feedback__list-item-info {
    margin-top: 8px;
    position: relative;
    transform: translateY(0) !important;
    height: 100%;
    top: 0;
    background-color: var(--palette-dark-bg);
    padding: 0;
  }
  .main-feedback__list-item-info .title {
    font-size: 14px;
    color: #9b9b9b;
  }
	#feedback-4 .text {
    	-webkit-line-clamp: 11;
	}
  .main-feedback__list-item-info .text {
    opacity: 1;
    font-size: 14px;
    color: #fff;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 12;
    align-self: stretch;
  }

  .main-feedback__list-item-info .read-more {
    display: none;
  }
  .main-feedback__list-item .bg-gradient, .main-feedback__list-item .bg-fill  {
    display: none;
  }
  .main-feedback-modal .modal__wrapper {
    height: 100%;
  }
  /*.main-feedback-modal .modal__wrapper:nth-child(5) .main-feedback-modal__content{
    height: calc(100vh + 48px);
  }*/
  .main-feedback__buttons, .gallery__buttons {
    gap: 8px;
  }
  .main-feedback__buttons {
    margin-bottom: -30px;
  }
  .main-feedback__list-item img.web {
    display: none;
  }
  .main-feedback__list-item img.mob {
    display: block;
  }
  .main-feedback__list-item .bg-gradient {
    display: none;
  }

  .gallery__list-item.swiper-slide {
    width: calc(100% - 32px);
    height: 244px;
  }

  .wrapper404 {
    overflow: hidden;
    display: block;
  }
  .wrapper404__content {
    padding: 0 20px;
    margin-top: 120px;
  }
  .wrapper404__content a {
    margin: 40px auto 0;
  }
  .wrapper404__manul {
    width: 120%;
  }

  .main-feedback-modal.swiper {
    display: flex;
    position: fixed;
  }
  .main-feedback-modal__list {
    width: 100%;
    height: 100%;
	padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .main-feedback-modal__mob-panel {
    display: none;
  }
  .main-feedback-modal.active .main-feedback-modal__mob-panel {
    padding: 16px 20px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    box-shadow: 1px 2px 8px 0 rgba(51, 51, 51, 0.1), 0 0 4px 0 rgba(154, 154, 154, 0.08);
    background: var(--palette-white-main);
    z-index: 3;
	pointer-events: all;
  }
  .main-feedback-modal__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .main-feedback-modal__mob-panel .main-feedback-modal__close {
    position: relative;
    top: auto;
    right: auto;
    height: 24px;
  }
  .main-feedback-modal__list .swiper-wrapper {
    height: 100% !important;
    z-index: 2;
    height: fit-content;
	pointer-events: all;
  }
  .main-feedback-modal-wrapper {
    height: 100%;
    border-radius: 0;
    overflow-y: auto;
    max-height: none;
    margin: 0;
    padding: 0;
  }
  .main-feedback-modal-wrapper-scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 32px 16px;
  }
  .main-feedback-modal-wrapper h5, .main-feedback-modal-wrapper p {
    color: var(--hr-colors-dark-blue);
  }
  .main-feedback-modal-wrapper p {
    font-size: 16px;
  }
  .main-feedback-modal-wrapper .main-feedback-modal__content {
    height: fit-content;
	padding: 0 0 80px;
  }
  .main-feedback__modal-author-info p {
    font-size: 14px;
    opacity: .5;
  }
  .main-feedback-modal-wrapper .main-feedback-modal__close {
    display: none;
  }
  .main-feedback__modal-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .main-feedback__modal-author img {
    width: 60px;
    height: 60px;
  }
}

