@charset "UTF-8";
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/Inter_Tight/InterTight-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/Inter_Tight/InterTight-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/Inter_Tight/InterTight-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter18pt-Light.woff2") format("woff2"), url("../fonts/Inter/Inter24pt-Light.woff2") format("woff2"), url("../fonts/Inter/Inter28pt-Light.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter18pt-Regular.woff2") format("woff2"), url("../fonts/Inter/Inter24pt-Regular.woff2") format("woff2"), url("../fonts/Inter/Inter28pt-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter18pt-Medium.woff2") format("woff2"), url("../fonts/Inter/Inter24pt-Medium.woff2") format("woff2"), url("../fonts/Inter/Inter28pt-Medium.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
:root {
  /*Inter*/
  --font-family-main: Inter, sans-serif;
  /*Inter Tight*/
  --font-family-tight: "Inter Tight", sans-serif;
  /*font-weight*/
  --font-weight-s: 300;
  --font-weight-m: 400;
  --font-weight-l: 500;
  --transition-duration: 0.2s;
  --max-screen-size: 1920px;
  --min-screen-size: 360px;
  --max-screen-size-num: 1920;
  --min-screen-size-num: 360;
  /*Colors*/
  --black: #1c1c1c;
  --error: #99002b;
  --bg: #f6f6f6;
  --light-bg: #f9f9f9;
  --blue-bg-primary: #d8e1ee;
  --blue-bg-secondary: #ebeef5;
  --blue-hover: #6282b1;
  --blue600: #23559a;
  --dark-blue: #465873;
  --brand-color: #04528f;
  --white: #ffffff;
  --block-border: #eeeeee;
  --black: #222222;
  --gray: #595959;
  --light-gray: #f2f2f2;
  --gray-border: #eae8e8;
  --gray-border-light: #e0e0e0;
  --gray-border-secondary: #dcdcdc;
  --sparkit-color: #f67239;
  --main-color_indigo: #04528f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  --paragraphMarginBottom: 24px;
  --paragraphMarginBottomInTable: 4px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

table p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottomInTable);
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  position: relative;
  margin-inline: auto;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}

:root {
  /*Inter*/
  --font-family-main: Inter, sans-serif;
  /*Inter Tight*/
  --font-family-tight: "Inter Tight", sans-serif;
  /*font-weight*/
  --font-weight-s: 300;
  --font-weight-m: 400;
  --font-weight-l: 500;
  --transition-duration: 0.2s;
  --max-screen-size: 1920px;
  --min-screen-size: 360px;
  --max-screen-size-num: 1920;
  --min-screen-size-num: 360;
  /*Colors*/
  --black: #1c1c1c;
  --error: #99002b;
  --bg: #f6f6f6;
  --light-bg: #f9f9f9;
  --blue-bg-primary: #d8e1ee;
  --blue-bg-secondary: #ebeef5;
  --blue-hover: #6282b1;
  --blue600: #23559a;
  --dark-blue: #465873;
  --brand-color: #04528f;
  --white: #ffffff;
  --block-border: #eeeeee;
  --black: #222222;
  --gray: #595959;
  --light-gray: #f2f2f2;
  --gray-border: #eae8e8;
  --gray-border-light: #e0e0e0;
  --gray-border-secondary: #dcdcdc;
  --sparkit-color: #f67239;
  --main-color_indigo: #04528f;
}

/*SCREEN SIZE*/
:root {
  /*Inter*/
  --font-family-main: Inter, sans-serif;
  /*Inter Tight*/
  --font-family-tight: "Inter Tight", sans-serif;
  /*font-weight*/
  --font-weight-s: 300;
  --font-weight-m: 400;
  --font-weight-l: 500;
  --transition-duration: 0.2s;
  --max-screen-size: 1920px;
  --min-screen-size: 360px;
  --max-screen-size-num: 1920;
  --min-screen-size-num: 360;
  /*Colors*/
  --black: #1c1c1c;
  --error: #99002b;
  --bg: #f6f6f6;
  --light-bg: #f9f9f9;
  --blue-bg-primary: #d8e1ee;
  --blue-bg-secondary: #ebeef5;
  --blue-hover: #6282b1;
  --blue600: #23559a;
  --dark-blue: #465873;
  --brand-color: #04528f;
  --white: #ffffff;
  --block-border: #eeeeee;
  --black: #222222;
  --gray: #595959;
  --light-gray: #f2f2f2;
  --gray-border: #eae8e8;
  --gray-border-light: #e0e0e0;
  --gray-border-secondary: #dcdcdc;
  --sparkit-color: #f67239;
  --main-color_indigo: #04528f;
}

/*SCREEN SIZE*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 48rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 48.0625rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (max-width: 80rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 80.0625rem) {
  .visible-tablet {
    display: none !important;
  }
}

.container {
  padding-inline: 1.25rem;
  margin-inline: auto;
}
@media (min-width: 48.0625rem) {
  .container {
    padding-inline: 2.125rem;
  }
}
@media (min-width: 80.0625rem) {
  .container {
    padding-inline: 3.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .container {
    padding-inline: 3.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .container {
    padding-inline: 4.375rem;
  }
}

.container-content,
.container-template {
  padding-inline: 1.25rem;
  margin-inline: auto;
  margin-bottom: 60px;
}
@media (min-width: 48.0625rem) {
  .container-content,
  .container-template {
    padding-inline: 2.125rem;
  }
}
@media (min-width: 80.0625rem) {
  .container-content,
  .container-template {
    padding-inline: 3.125rem;
    margin-bottom: 80px;
  }
}
@media (min-width: 90.0625rem) {
  .container-content,
  .container-template {
    padding-inline: 3.125rem;
    margin-bottom: 100px;
  }
}
@media (min-width: 120.0625rem) {
  .container-content,
  .container-template {
    padding-inline: 4.375rem;
  }
}

.container-promo {
  padding-inline: 1.25rem;
  margin-inline: auto;
  margin-top: 40px;
}
@media (min-width: 48.0625rem) {
  .container-promo {
    padding-inline: 2.125rem;
  }
}
@media (min-width: 80.0625rem) {
  .container-promo {
    padding-inline: 3.125rem;
    margin-top: 80px;
  }
}
@media (min-width: 90.0625rem) {
  .container-promo {
    padding-inline: 3.125rem;
    margin-top: 100px;
  }
}
@media (min-width: 120.0625rem) {
  .container-promo {
    padding-inline: 4.375rem;
  }
}

.burger-menu {
  min-height: 100%;
  display: flex;
  pointer-events: none;
  padding-top: 3.75rem;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: var(--white);
  transform: translateY(-150%);
  opacity: 0;
  transition: transform 0.4s ease-in-out;
  box-shadow: 0 4px 8px var(--gray-border);
  height: -webkit-fill-available;
  overflow-y: auto;
}
.burger-menu::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.burger-menu::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.burger-menu::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .burger-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-menu::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
@media (max-width: 80rem) {
  .burger-menu {
    padding-block: 0.875rem 3.125rem;
  }
}
@media (max-width: 48rem) {
  .burger-menu {
    padding-block: 0.875rem 2.5rem;
  }
}
.burger-menu__controller {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 5rem;
}
@media (max-width: 80rem) {
  .burger-menu__controller {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .burger-menu__controller {
    margin-bottom: 2.5rem;
  }
}
.burger-menu__logo {
  flex-shrink: 0;
  margin-right: 3.75rem;
}
@media (max-width: 120rem) {
  .burger-menu__logo {
    margin-right: 1.875rem;
  }
}
.burger-menu__btn-close {
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  margin-right: 3.75rem;
  background-color: var(--brand-color);
  border: none;
  position: relative;
  transition: 0.3s ease-out;
  flex-shrink: 0;
  cursor: pointer;
}
@media (hover: hover) {
  .burger-menu__btn-close:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-menu__btn-close:active {
    background-color: var(--blue-hover);
  }
}
.burger-menu__btn-close:after, .burger-menu__btn-close:before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.125rem;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.burger-menu__btn-close:before {
  transform: rotate(-45deg);
}
.burger-menu__btn-close:after {
  transform: rotate(45deg);
}
@media (max-width: 80rem) {
  .burger-menu__btn-close {
    border: 1px solid var(--gray-border-secondary);
    background-color: var(--white);
    margin-left: auto;
    margin-right: 0;
  }
  .burger-menu__btn-close:after, .burger-menu__btn-close:before {
    background-color: var(--black);
  }
}
.burger-menu__glasses {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-color);
  margin-right: 1.25rem;
}
@media (hover: hover) {
  .burger-menu__glasses:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-menu__glasses:active {
    color: var(--blue-hover);
  }
}
.burger-menu__language-list {
  color: var(--brand-color);
  display: flex;
  margin-right: 1.875rem;
}
@media (max-width: 48rem) {
  .burger-menu__language-list {
    margin-right: auto;
  }
}
.burger-menu__language-list-item {
  display: flex;
}
@media (hover: hover) {
  .burger-menu__language-list-item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-menu__language-list-item:active {
    color: var(--blue-hover);
  }
}
.burger-menu__language-list-item:not(:last-child):after {
  content: "/";
  display: block;
  margin-inline: 0.5rem;
  color: var(--brand-color);
}
.burger-menu__search {
  flex-basis: 60%;
  margin-left: auto;
  min-width: 18.75rem;
  height: 3rem;
}
.burger-menu__search .search__body {
  height: 100%;
}
.burger-menu__search .search__field {
  font-size: 1.125rem;
  height: 100%;
  border: none;
  border-bottom: 1px solid var(--gray-border);
}
@media (hover: hover) {
  .burger-menu__search .search__field:hover {
    border: none;
    border-bottom: 1px solid var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-menu__search .search__field:active {
    border: none;
    border-bottom: 1px solid var(--blue-hover);
  }
}
.burger-menu__search .search__field:has(.search__input:focus) {
  border: none;
  border-bottom: 1px solid var(--black);
}
.burger-menu__search .search__btn {
  height: 100%;
  max-width: 12.5rem;
}
.burger-menu__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.125rem;
  height: 100%;
}
@media (max-width: 80rem) {
  .burger-menu__content {
    flex-direction: row;
    height: auto;
  }
}
@media (max-width: 48rem) {
  .burger-menu__content {
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.burger-menu__body {
  height: 100%;
  position: relative;
}
@media (min-width: 80.0625rem) {
  .burger-menu__body {
    min-height: 26.875rem;
  }
}
.burger-menu__footer-body {
  display: flex;
  padding-bottom: 40px;
}
@media (max-width: 80rem) {
  .burger-menu__footer-body {
    padding-block: 0.875rem 4rem;
  }
}
@media (max-width: 48rem) {
  .burger-menu__footer-body {
    padding-block: 0;
  }
}
.burger-menu__contacts {
  flex-basis: 60%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 80rem) {
  .burger-menu__contacts {
    flex-basis: initial;
  }
}
@media (max-width: 48rem) {
  .burger-menu__contacts {
    margin-left: 0;
  }
}
.burger-menu__title {
  font-family: var(--font-family-tight);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.burger-menu__contacts-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr));
  grid-column-gap: 3.125rem;
  grid-row-gap: 1.875rem;
}
@media (max-width: 80rem) {
  .burger-menu__contacts-body {
    grid-template-columns: minmax(auto, 13.75rem);
  }
}
.burger-menu__footer-phones {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.875rem;
}
@media (max-width: 80rem) {
  .burger-menu__footer-phones {
    flex-direction: column;
    align-items: flex-start;
  }
}
.burger-menu__socials-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
}
.burger-menu__socials-list-item {
  cursor: pointer;
  background-color: var(--brand-color);
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .burger-menu__socials-list-item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-menu__socials-list-item:active {
    color: var(--blue-hover);
  }
}

.burger-list {
  font-family: var(--font-family-tight);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--brand-color);
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (max-width: 80rem) {
  .burger-list {
    font-size: 1.25rem;
    gap: 1.5rem;
  }
}
.burger-list .menu-item {
  cursor: default;
}
.burger-list .menu-item .link {
  cursor: pointer;
}
.burger-list .menu-item > .link {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media (hover: hover) {
  .burger-list .menu-item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-list .menu-item:active {
    color: var(--blue-hover);
  }
}
.burger-list .menu-item-has-children .container {
  padding: 0px;
}
.burger-list .menu-item-has-children > .link {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.burger-list .menu-item-has-children > .link:after {
  margin-left: 16px;
}
.burger-list .menu-item-has-children > .link:after {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/plus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.burger-list .menu-item-has-children > .link-no-after:after {
  display: none !important;
}
.burger-list .menu-item-has-children.active > .link {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
@media (hover: hover) {
  .burger-list .menu-item-has-children.active > .link:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-list .menu-item-has-children.active > .link:active {
    color: var(--blue-hover);
  }
}
.burger-list .menu-item-has-children.active > .link:after {
  margin-left: 16px;
}
.burger-list .menu-item-has-children.active > .link:after {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/minus.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.burger-list .menu-item-has-children.active > .link-no-after {
  justify-content: flex-start;
}
@media (hover: hover) {
  .burger-list .menu-item-has-children.active > .link-no-after:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-list .menu-item-has-children.active > .link-no-after:active {
    color: var(--blue-hover);
  }
}
.burger-list .menu-item-has-children.active > .link-no-after:after {
  display: none !important;
}
.burger-list .menu-item-has-children .sub-menu {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 40%;
}
.burger-list .menu-item-has-children .sub-menu::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.burger-list .menu-item-has-children .sub-menu::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.burger-list .menu-item-has-children .sub-menu::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .burger-list .menu-item-has-children .sub-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-list .menu-item-has-children .sub-menu::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
@media (min-width: 80.0625rem) {
  .burger-list .menu-item-has-children .sub-menu {
    width: 60%;
  }
}
@media (max-width: 80rem) {
  .burger-list .menu-item-has-children .sub-menu {
    position: static;
    margin-top: 1.875rem;
    gap: 1rem;
  }
}
.burger-list .menu-item-has-children .sub-menu .menu-item .link {
  font-size: 1.125rem;
  color: var(--black);
  font-weight: 400;
}
@media (hover: hover) {
  .burger-list .menu-item-has-children .sub-menu .menu-item .link:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-list .menu-item-has-children .sub-menu .menu-item .link:active {
    color: var(--blue-hover);
  }
}
.burger-list .menu-item-has-children.active .sub-menu {
  display: flex;
}

.burger-footer-list {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.header:has(#burgerButtonOpen.open) .burger-menu {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0%);
}

.page-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 2.5rem;
}
@media (min-width: 48.0625rem) {
  .page-layout {
    gap: 3.75rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-layout {
    gap: 5rem;
    flex-direction: row;
  }
}
@media (min-width: 90.0625rem) {
  .page-layout {
    gap: 6.25rem;
  }
}
@media (min-width: 120.0625rem) {
  .page-layout {
    gap: 7.5rem;
  }
}
.page-layout__left-block {
  max-width: 20rem;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 48.0625rem) {
  .page-layout__left-block {
    max-width: 21.25rem;
    gap: 2.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-layout__left-block {
    gap: 3.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .page-layout__left-block {
    max-width: 20rem;
  }
}
@media (min-width: 120.0625rem) {
  .page-layout__left-block {
    max-width: 26.875rem;
    gap: 3.75rem;
  }
}
.page-layout__right-block {
  flex-basis: 100%;
}
@media (min-width: 80.0625rem) {
  .page-layout__right-block {
    padding-bottom: 5rem;
  }
}
@media (min-width: 90.0625rem) {
  .page-layout__right-block {
    padding-bottom: 5rem;
  }
}
@media (min-width: 120.0625rem) {
  .page-layout__right-block {
    padding-bottom: 6.25rem;
  }
}
.page-layout__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 0.875rem;
}
@media (min-width: 48.0625rem) {
  .page-layout__img {
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-layout__img {
    margin-bottom: 1rem;
  }
}
.page-layout__img:last-of-type {
  margin-bottom: 1.25rem;
}
@media (min-width: 48.0625rem) {
  .page-layout__img:last-of-type {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-layout__img:last-of-type {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .page-layout__img:last-of-type {
    margin-bottom: 2.5rem;
  }
}

.department-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (min-width: 80.0625rem) {
  .department-content-wrapper {
    gap: 2.5rem;
  }
}

.page-header {
  padding-block: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--white);
  background-image: url("../icons/Group6077.svg");
  background-repeat: no-repeat;
  background-position: top 1.25rem right -2.34375rem;
  background-size: 9.375rem 9.375rem;
}
@media (min-width: 48.0625rem) {
  .page-header {
    padding-block: 2.5rem 2.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-header {
    padding-block: 3.75rem 5rem;
  }
}
@media (min-width: 90.0625rem) {
  .page-header {
    padding-block: 3.75rem 5rem;
  }
}
@media (min-width: 120.0625rem) {
  .page-header {
    padding-block: 3.75rem 6.25rem;
  }
}
@media (min-width: 48.0625rem) {
  .page-header {
    background-position: top 1.25rem right -2.8125rem;
    background-size: 11.25rem 11.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-header {
    background-position: top 1.25rem right -3.125rem;
    background-size: 12.5rem 12.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .page-header {
    background-position: top 1.25rem right -3.90625rem;
    background-size: 15.625rem 15.625rem;
  }
}

.sidebar {
  max-height: 26.25rem;
  overflow-y: auto;
}
@media (min-width: 80.0625rem) {
  .sidebar {
    max-height: 34.375rem;
  }
}
@media (min-width: 120.0625rem) {
  .sidebar {
    max-height: 47.5rem;
  }
}
.sidebar::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.sidebar::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.sidebar::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .sidebar::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .sidebar::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
.sidebar__list {
  color: var(--black);
  width: 100%;
}
.sidebar__item {
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--gray-border);
  padding-inline: 1.25rem 1.25rem;
}
@media (min-width: 48.0625rem) {
  .sidebar__item {
    padding-inline: 1.875rem 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .sidebar__item {
    padding-inline: 1.875rem 1.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .sidebar__item {
    padding-inline: 1.875rem 1.875rem;
  }
}
@media (min-width: 120.0625rem) {
  .sidebar__item {
    padding-inline: 2.5rem 2.5rem;
  }
}
@media (hover: hover) {
  .sidebar__item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .sidebar__item:active {
    color: var(--blue-hover);
  }
}
.sidebar__link {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .sidebar__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .sidebar__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .sidebar__link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .sidebar__link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .sidebar__link {
    font-size: 1.125rem;
  }
}
.sidebar__item.active {
  color: var(--brand-color);
}
.sidebar_shadow {
  position: relative;
}
.sidebar_shadow:after {
  content: "";
  display: block;
  width: 100%;
  height: 3.75rem;
  position: sticky;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.scrollable-block {
  max-height: 26.25rem;
  overflow-y: auto;
}
@media (min-width: 80.0625rem) {
  .scrollable-block {
    max-height: 34.375rem;
  }
}
@media (min-width: 120.0625rem) {
  .scrollable-block {
    max-height: 47.5rem;
  }
}
.scrollable-block::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.scrollable-block::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.scrollable-block::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .scrollable-block::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .scrollable-block::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
.scrollable-block__list {
  color: var(--black);
  width: 100%;
}
.scrollable-block__item {
  padding-block: 1.25rem;
  padding-inline: 1.25rem 1.25rem;
}
.scrollable-block__item:not(:last-child) {
  border-bottom: 1px solid var(--gray-border);
}
@media (min-width: 48.0625rem) {
  .scrollable-block__item {
    padding-inline: 1.875rem 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .scrollable-block__item {
    padding-inline: 1.875rem 1.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .scrollable-block__item {
    padding-inline: 1.875rem 1.875rem;
  }
}
@media (min-width: 120.0625rem) {
  .scrollable-block__item {
    padding-inline: 2.5rem 2.5rem;
  }
}

.accordion__item {
  overflow: hidden;
}
.accordion__item .content-text:last-of-type {
  margin-bottom: 0;
}
.accordion__item.open .accordion__item-label {
  color: var(--brand-color);
}
.accordion__item.open .accordion__item-label:after {
  width: 1.125rem;
  height: 1.125rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/accordion-icon-hover.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.accordion__item.open .accordion__drop-content {
  margin-top: 0.625rem;
  max-height: none;
  height: auto;
  padding-block: 1.25rem 1.25rem;
}
@media (min-width: 48.0625rem) {
  .accordion__item.open .accordion__drop-content {
    padding-block: 1.875rem 1.875rem;
  }
}
.accordion__item-label {
  cursor: pointer;
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--light-bg);
  padding-block: 1.25rem 1.25rem;
  padding-inline: 1.25rem 1.25rem;
}
@media (max-width: 48rem) {
  .accordion__item-label {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .accordion__item-label {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .accordion__item-label {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .accordion__item-label {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .accordion__item-label {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .accordion__item-label {
    padding-inline: 1.5rem 1.5rem;
  }
}
@media (hover: hover) {
  .accordion__item-label:hover {
    background-color: var(--bg);
    color: var(--brand-color);
  }
}
@media (hover: none) {
  .accordion__item-label:active {
    background-color: var(--bg);
    color: var(--brand-color);
  }
}
.accordion__item-label:after {
  width: 1.125rem;
  height: 1.125rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/accordion-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.accordion__drop-content {
  background-color: var(--light-bg);
  width: 100%;
  max-height: 0;
  height: 100%;
  padding-block: 0;
  padding-inline: 1.25rem 1.25rem;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 48.0625rem) {
  .accordion__drop-content {
    padding-inline: 1.5rem 1.5rem;
  }
}

.important-block {
  border-left: 4px solid var(--blue600);
  padding-left: 1.25rem;
}
@media (min-width: 48.0625rem) {
  .important-block {
    padding-left: 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .important-block {
    padding-left: 1.875rem;
  }
}
.important-block .content-sub-title:has(:first-child) {
  margin-top: 0;
}

.employee-info {
  display: flex;
  flex-direction: column;
}
.employee-info__name {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
@media (max-width: 48rem) {
  .employee-info__name {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .employee-info__name {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .employee-info__name {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .employee-info__name {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .employee-info__name {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .employee-info__name {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .employee-info__name {
    margin-bottom: 1.5rem;
  }
}
.employee-info__text {
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
@media (max-width: 48rem) {
  .employee-info__text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .employee-info__text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .employee-info__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .employee-info__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .employee-info__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .employee-info__text {
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .employee-info__text {
    margin-bottom: 1rem;
  }
}
.employee-info__text:last-child {
  margin-bottom: 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  margin-bottom: 2.5rem;
}
.table-container {
  width: 100%;
  overflow-x: auto;
}
.table-container::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.table-container::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.table-container::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .table-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .table-container::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
.table th, .table td {
  border: 1px solid var(--gray-border);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  padding: 1.25rem;
  min-width: 9.0625rem;
}
.table-caption-title {
  text-align: start;
  margin-bottom: 1.5rem;
}
.table .table-sub-title {
  text-align: start;
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .table .table-sub-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .table .table-sub-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 80.0625rem) {
  .table .table-sub-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .table .table-sub-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .table .table-sub-title {
    font-size: 1.125rem;
  }
}
.table .table-header-text {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .table .table-header-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .table .table-header-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .table .table-header-text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .table .table-header-text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .table .table-header-text {
    font-size: 1.125rem;
  }
}
.table .table-body-text {
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .table .table-body-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .table .table-body-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .table .table-body-text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .table .table-body-text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .table .table-body-text {
    font-size: 1rem;
  }
}
.title-style {
  font-family: var(--font-family-tight);
}

.text-style {
  font-family: var(--font-family-main);
  font-weight: 300;
  line-height: 1.5;
}

.page-title {
  color: var(--brand-color);
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .page-title {
    font-size: 1.75rem;
  }
}
@media (min-width: 48.0625rem) {
  .page-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 80.0625rem) {
  .page-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 90.0625rem) {
  .page-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 120.0625rem) {
  .page-title {
    font-size: 4rem;
  }
}

.content-title {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
@media (max-width: 48rem) {
  .content-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .content-title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .content-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .content-title {
    font-size: 3.25rem;
  }
}
@media (min-width: 48.0625rem) {
  .content-title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-title {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .content-title {
    margin-bottom: 3.125rem;
  }
}

.content-sub-title {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-block: 1.875rem 1.25rem;
}
@media (max-width: 48rem) {
  .content-sub-title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .content-sub-title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-sub-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .content-sub-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .content-sub-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .content-sub-title {
    margin-block: 1.875rem 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-sub-title {
    margin-block: 1.875rem 1.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .content-sub-title {
    margin-block: 2.5rem 1.5rem;
  }
}
.content-sub-title_line {
  margin-block: 0;
}

.name-text {
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
@media (max-width: 48rem) {
  .name-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .name-text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .name-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .name-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .name-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .name-text {
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .name-text {
    margin-bottom: 1rem;
  }
}

.content-text {
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.875rem;
}
@media (max-width: 48rem) {
  .content-text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .content-text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .content-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .content-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .content-text {
    margin-bottom: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-text {
    margin-bottom: 1rem;
  }
}
.content-text:last-of-type {
  margin-bottom: 1.25rem;
}
@media (min-width: 48.0625rem) {
  .content-text:last-of-type {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .content-text:last-of-type {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .content-text:last-of-type {
    margin-bottom: 2.5rem;
  }
}
.content-text_line {
  margin-bottom: 0;
}
.content-text_line:last-of-type {
  margin-bottom: 0;
}
.content-text_cursive {
  font-style: italic;
  quotes: "“" "”";
}
.content-text_cursive:before {
  content: open-quote;
}
.content-text_cursive:after {
  content: close-quote;
}

.content-text-signature {
  color: var(--gray);
  font-family: var(--font-family-main);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

.text-list {
  margin-bottom: 1.875rem;
}
@media (min-width: 48.0625rem) {
  .text-list {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .text-list {
    margin-bottom: 2.5rem;
  }
}
.text-list_circle > li::before {
  content: url("../icons/circle-list.svg");
  display: inline-block;
  margin-right: 0.875rem;
}
.text-list_decimal {
  list-style: none;
  counter-reset: list-counter;
}
.text-list_decimal > li {
  counter-increment: list-counter;
}
.text-list_decimal > li::before {
  color: var(--brand-color);
  content: counter(list-counter) ". ";
  display: inline-block;
  margin-right: 0.875rem;
}

.file-text {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 48rem) {
  .file-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .file-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .file-text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .file-text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .file-text {
    font-size: 1.125rem;
  }
}
.file-text:not(:last-child) {
  margin-bottom: 0.875rem;
}
@media (min-width: 48.0625rem) {
  .file-text:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.file-text:before {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/file-download.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.file-text__size {
  color: var(--gray);
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
}

.committee-img-wrapper {
  max-width: 20rem;
  height: 26.25rem;
  width: 100%;
  margin-bottom: 1.875rem;
}
@media (min-width: 48.0625rem) {
  .committee-img-wrapper {
    max-width: 21.5625rem;
    height: 31.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .committee-img-wrapper {
    max-width: 23.125rem;
    height: 31.25rem;
  }
}
@media (min-width: 90.0625rem) {
  .committee-img-wrapper {
    max-width: 25.625rem;
    height: 37.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .committee-img-wrapper {
    max-width: 37.8125rem;
    height: 50rem;
  }
}
@media (min-width: 48.0625rem) {
  .committee-img-wrapper {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .committee-img-wrapper {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .committee-img-wrapper {
    margin-bottom: 2.5rem;
  }
}
.committee-img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.link {
  font-family: var(--font-family-tight);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
}
@media (hover: hover) {
  .link:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .link:active {
    color: var(--blue-hover);
  }
}
@media (max-width: 48rem) {
  .link {
    font-size: 0.875rem;
  }
}
.link_white {
  color: var(--white);
}
@media (hover: hover) {
  .link_white:hover {
    color: var(--blue-bg-primary);
  }
}
@media (hover: none) {
  .link_white:active {
    color: var(--blue-bg-primary);
  }
}
.link_blue {
  color: var(--brand-color);
}
@media (hover: hover) {
  .link_blue:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .link_blue:active {
    color: var(--blue-hover);
  }
}
.link_underline {
  text-decoration: underline;
}

.social-link {
  line-height: 0;
}

.link-phone {
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  color: var(--brand-color);
}
@media (hover: hover) {
  .link-phone:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .link-phone:active {
    color: var(--blue-hover);
  }
}
@media (min-width: 48.0625rem) {
  .link-phone {
    font-size: 1rem;
  }
}

.link-text {
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  color: var(--brand-color);
}
@media (max-width: 48rem) {
  .link-text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .link-text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .link-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .link-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .link-text {
    font-size: 1.125rem;
  }
}
.link-text_underline {
  text-decoration: underline;
}
@media (hover: hover) {
  .link-text:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .link-text:active {
    color: var(--blue-hover);
  }
}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--gray-border-secondary);
  position: relative;
}
@media (hover: hover) {
  .burger-button:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .burger-button:active {
    background-color: var(--blue-hover);
  }
}
.burger-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 50%;
  height: 2px;
  border-radius: 5px;
  box-shadow: 0 -4px, 0 4px;
}
@media (hover: hover) {
  .burger-button:hover::after {
    box-shadow: 0 -4px var(--white), 0 4px var(--white);
  }
}
@media (hover: none) {
  .burger-button:active::after {
    box-shadow: 0 -4px var(--white), 0 4px var(--white);
  }
}
@media (max-width: 48rem) {
  .burger-button {
    width: 2rem;
    height: 2rem;
    aspect-ratio: 1;
  }
}

.btn {
  padding: 0;
  background-color: transparent;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 0.75rem;
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-family-main);
  font-style: 1rem;
  line-height: 1.5;
}
@media (hover: hover) {
  .btn:hover {
    background-color: var(--blue-hover);
    color: var(--white);
  }
}
@media (hover: none) {
  .btn:active {
    background-color: var(--blue-hover);
    color: var(--white);
  }
}
.btn_primary {
  background-color: var(--brand-color);
  color: var(--white);
}
.btn_secondary {
  border: 1px solid var(--gray-border-secondary);
  background-color: var(--white);
}
.btn_direction {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--brand-color);
  cursor: pointer;
  padding: 0;
}
.btn_direction > a {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.btn_direction > a {
  width: 100%;
  height: 100%;
  background-size: auto;
}
@media (hover: hover) {
  .btn_direction:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .btn_direction:active {
    background-color: var(--blue-hover);
  }
}
@media (max-width: 90rem) {
  .btn_direction {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
  }
}

.play {
  display: flex;
  align-items: center;
  justify-content: center;
}
.play__btn {
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1;
  position: absolute;
  background-color: var(--white);
  border-radius: 50%;
  background-image: url("../icons/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  z-index: 2;
}
@media (hover: hover) {
  .play__btn:hover {
    background-color: var(--bg);
  }
}
@media (hover: none) {
  .play__btn:active {
    background-color: var(--bg);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
}
.contact-card__label {
  font-family: var(--font-family-tight);
  margin-bottom: 1.25rem;
}
@media (max-width: 80rem) {
  .contact-card__label {
    margin-bottom: 1rem;
  }
}
@media (max-width: 48rem) {
  .contact-card__label {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .contact-card__label {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .contact-card__label {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .contact-card__label {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .contact-card__label {
    font-size: 1.125rem;
  }
}
.contact-card__comment {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
}
.contact-card__text {
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .contact-card__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .contact-card__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .contact-card__text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .contact-card__text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .contact-card__text {
    font-size: 1rem;
  }
}
.contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer {
  padding-block: 3.75rem;
  padding-bottom: 0px !important;
  background-color: var(--bg);
}
@media (max-width: 120rem) {
  .footer {
    padding-block: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .footer {
    padding-block: 2.5rem;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.footer__header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__direction-btn-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__direction-text {
  font-weight: 300;
}
@media (max-width: 48rem) {
  .footer__direction-text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .footer__direction-text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .footer__direction-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .footer__direction-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .footer__direction-text {
    font-size: 1.125rem;
  }
}
.footer__navigation-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 80rem) {
  .footer__navigation-body {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 3.75rem;
  }
}
@media (max-width: 48rem) {
  .footer__navigation-body {
    grid-template-columns: 1fr;
    grid-row-gap: 3.75rem;
  }
}
.footer__navigation-title {
  margin-bottom: 1.875rem;
}
@media (max-width: 48rem) {
  .footer__navigation-title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .footer__navigation-title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .footer__navigation-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .footer__navigation-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .footer__navigation-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 80rem) {
  .footer__navigation-title {
    margin-bottom: 1.5rem;
  }
}
.footer__navigation-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 48rem) {
  .footer__navigation-column .link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .footer__navigation-column .link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .footer__navigation-column .link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .footer__navigation-column .link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .footer__navigation-column .link {
    font-size: 1.125rem;
  }
}
.footer__socials-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
}
.footer__socials-list-item {
  cursor: pointer;
  background-color: var(--brand-color);
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .footer__socials-list-item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .footer__socials-list-item:active {
    color: var(--blue-hover);
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
}
.footer__contacts-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__phones-body {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
  min-width: 22.5rem;
}
@media (max-width: 48rem) {
  .footer__phones-body {
    min-width: auto;
  }
}
.footer__phones-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.75rem;
}
@media (max-width: 48rem) {
  .form {
    gap: 2.5rem;
  }
}
.form .btn {
  z-index: 2;
}
.form__title {
  font-family: var(--font-family-tight);
}
@media (max-width: 48rem) {
  .form__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 48.0625rem) {
  .form__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .form__title {
    font-size: 2rem;
  }
}
@media (min-width: 90.0625rem) {
  .form__title {
    font-size: 2rem;
  }
}
@media (min-width: 120.0625rem) {
  .form__title {
    font-size: 2.625rem;
  }
}
.form__fields-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 80rem) {
  .form__fields-container {
    flex-direction: row;
    gap: 1.25rem;
  }
}
@media (max-width: 48rem) {
  .form__fields-container {
    gap: 1.5rem;
  }
}
.form__action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
@media (max-width: 80rem) {
  .form__action-container {
    flex-direction: row;
    gap: 20px;
  }
}
@media (max-width: 48rem) {
  .form__action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
  }
}
.form__action-text {
  color: var(--gray);
  font-family: var(--font-family-main);
  font-weight: 300;
  line-height: 1.4;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
@media (max-width: 48rem) {
  .form__action-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .form__action-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .form__action-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .form__action-text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .form__action-text {
    font-size: 1rem;
  }
}
@media (max-width: 80rem) {
  .form__action-text {
    text-align: start;
  }
}

.field {
  width: 100%;
}
.field__container {
  width: 100%;
  font-family: var(--font-family-main);
  max-width: 28.125rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.field__input-label {
  font-size: 1rem;
  color: var(--black);
  font-weight: 300;
}
.field__input {
  color: var(--black);
  padding-block: 0.875rem;
  width: 100%;
  height: 3.125rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--gray-border-light);
  border-radius: 0.0625rem;
  font-size: 0.875rem;
}
.field__input::-moz-placeholder {
  color: var(--gray);
}
.field__input::placeholder {
  color: var(--gray);
}
.field:has(.field__input:focus) .field__input {
  border-bottom: 1px solid var(--black);
}
.field:hover .field__input {
  color: var(--black);
  border-bottom: 1px solid var(--blue-hover);
}
.field.field_error .field__input {
  color: var(--error);
  border-bottom: 1px solid var(--error);
}
.field__error-text {
  font-size: 0.875rem;
  color: var(--error);
  display: none;
  margin-top: 0.25rem;
}
.field.field_error .field__error-text {
  display: block;
}

.form__error-text {
  font-size: 0.875rem;
  color: var(--error);
  margin-top: 0.25rem;
}

.search {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
}
.search__body {
  flex: 1;
  font-weight: 300;
  line-height: 120%;
}
.search__field {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-border);
  background-color: var(--white);
}
@media (hover: hover) {
  .search__field:hover {
    border: 1px solid var(--blue-hover);
  }
}
@media (hover: none) {
  .search__field:active {
    border: 1px solid var(--blue-hover);
  }
}
.search__field:has(.search__input:focus) {
  border: 1px solid var(--black);
}
.search__search-icon {
  margin-right: 16px;
  cursor: pointer;
}
.search__search-icon {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url(../icons/VectorSearch.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.search__input {
  flex-grow: 1;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  width: 100%;
}
.search__input::-moz-placeholder {
  color: var(--gray);
}
.search__input::placeholder {
  color: var(--gray);
}
.search__icon-clear {
  margin-left: 0.625rem;
  font-size: 1.125rem;
  color: var(--black);
  cursor: pointer;
}
.search__btn {
  max-width: 17.5rem;
}
.search.error .form-field-error-text {
  display: block;
  color: var(--error);
}
.search.error .search__field {
  color: var(--error);
  border: 1px solid var(--error);
}
.search.error .search__input::-moz-placeholder {
  color: var(--error);
}
.search.error .search__input::placeholder {
  color: var(--error);
}
.search__btn {
  flex-shrink: 0;
  max-width: 17.5rem;
}
@media (max-width: 48rem) {
  .search__btn {
    max-width: none;
  }
}

.form-field-error-text {
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  margin-top: 0.625rem;
  display: none;
}

.filters {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 2.5rem;
}
@media (min-width: 48.0625rem) {
  .filters {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 48.0625rem) {
  .filters {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.filters__field {
  flex: 1;
  min-width: 25%;
  padding-block: 0.75rem 0.75rem;
}
.filters__field:not(:last-child) {
  border-bottom: 1px solid var(--gray-border);
}
@media (min-width: 48.0625rem) {
  .filters__field {
    padding-block: 1.125rem 1.125rem;
  }
}
@media (min-width: 80.0625rem) {
  .filters__field {
    padding-block: 1.75rem 1.75rem;
  }
}
@media (min-width: 90.0625rem) {
  .filters__field {
    padding-block: 1.75rem 1.75rem;
  }
}
@media (min-width: 120.0625rem) {
  .filters__field {
    padding-block: 3rem 3rem;
  }
}
@media (min-width: 48.0625rem) {
  .filters__field {
    padding-inline: 0.625rem 0.625rem;
  }
}
@media (min-width: 80.0625rem) {
  .filters__field {
    padding-inline: 1.625rem 1.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .filters__field {
    padding-inline: 1.625rem 1.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .filters__field {
    padding-inline: 2.875rem 2.875rem;
  }
}
.filters__field:first-child {
  flex: 2;
  min-width: 100%;
}
@media (min-width: 80.0625rem) {
  .filters__field:first-child {
    min-width: 50%;
  }
}
@media (min-width: 48.0625rem) {
  .filters__field:not(:last-child) .select {
    border-right: 1px solid var(--gray-border);
  }
}
.filters__news-field {
  flex-basis: 50%;
}
.filters .search .search__field {
  border: none;
}
@media (min-width: 80.0625rem) {
  .filters .search .search__field {
    border-right: 1px solid var(--gray-border);
  }
}
.filters .search .search__input::-webkit-search-decoration, .filters .search .search__input::-webkit-search-cancel-button, .filters .search .search__input::-webkit-search-results-button, .filters .search .search__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  height: 1.5rem;
  width: 1.5rem;
  background: url("../icons/close.svg") no-repeat center;
  background-size: cover;
  cursor: pointer;
}

.select {
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  color: var(--black);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  background-color: var(--white);
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.select:after {
  margin-left: 6px;
}
.select:after {
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/vector1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.select:hover:after {
  background-image: url("../icons/vector1_hover.svg");
}
@media (min-width: 48.0625rem) {
  .select {
    font-size: 1rem;
  }
}
.select__selected-value {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select__options-list {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  padding: 1.25rem;
  max-height: 21.875rem;
  width: 100%;
  min-width: 12.5rem;
  overflow: auto;
  bottom: 0;
  left: 0;
  translate: 0 calc(100% + 10px);
  z-index: 5;
  background-color: inherit;
  box-shadow: 0 4px 4px 0 rgba(217, 217, 217, 0.4);
  border: 1px solid var(--bg);
}
.select__options-list::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.select__options-list::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.select__options-list::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .select__options-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .select__options-list::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
@media (min-width: 90.0625rem) {
  .select__options-list {
    padding: 1.875rem;
    gap: 1.875rem;
    max-height: 28.125rem;
  }
}
.select.open:after {
  transform: rotate(180deg);
}
.select.open .select__options-list {
  display: flex;
}
.select.open .select__selected-value {
  color: var(--blue-hover);
}
.select__option.selected {
  color: var(--brand-color);
}

.administration {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-gap: 1.25rem;
}
@media (max-width: 80rem) {
  .administration {
    grid-template-columns: 1fr;
  }
}

.administration-card {
  background: var(--bg);
  padding-block: 1.5rem 1.5rem;
  padding-inline: 1.5rem 1.5rem;
}
@media (min-width: 48.0625rem) {
  .administration-card {
    padding-block: 2.5rem 2.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card {
    padding-block: 2.5rem 2.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card {
    padding-block: 2.5rem 2.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card {
    padding-block: 3.75rem 3.75rem;
  }
}
@media (min-width: 48.0625rem) {
  .administration-card {
    padding-inline: 2.5rem 2.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card {
    padding-inline: 2.5rem 2.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card {
    padding-inline: 2.5rem 2.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card {
    padding-inline: 3.75rem 3.75rem;
  }
}
.administration-card__img {
  max-width: 5rem;
  height: 6.25rem;
  width: 100%;
  margin-bottom: 1.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 48.0625rem) {
  .administration-card__img {
    max-width: 7.5rem;
    height: 9.375rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card__img {
    max-width: 7.5rem;
    height: 9.375rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card__img {
    max-width: 7.5rem;
    height: 9.375rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card__img {
    max-width: 9.375rem;
    height: 12.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .administration-card__img {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card__img {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card__img {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card__img {
    margin-bottom: 3.75rem;
  }
}
.administration-card__name {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brand-color);
  margin-bottom: 1.25rem;
}
@media (max-width: 48rem) {
  .administration-card__name {
    font-size: 1.25rem;
  }
}
@media (min-width: 48.0625rem) {
  .administration-card__name {
    font-size: 1.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card__name {
    font-size: 2rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card__name {
    font-size: 2rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card__name {
    font-size: 2.625rem;
  }
}
@media (min-width: 48.0625rem) {
  .administration-card__name {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card__name {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card__name {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card__name {
    margin-bottom: 2.5rem;
  }
}
.administration-card__detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.administration-card__detail-row {
  font-family: var(--font-family-main);
  font-style: normal;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
@media (max-width: 48rem) {
  .administration-card__detail-row {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .administration-card__detail-row {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .administration-card__detail-row {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .administration-card__detail-row {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .administration-card__detail-row {
    font-size: 1.125rem;
  }
}
.administration-card__detail-title {
  white-space: nowrap;
  font-family: var(--font-family-main);
  font-weight: 400;
}
@media (max-width: 48rem) {
  .administration-card__detail-title {
    white-space: wrap;
  }
}
.administration-card__detail-value {
  font-family: var(--font-family-main);
  font-weight: 300;
}

.header__search-area {
  z-index: 2 !important;
}
.header__top-body {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  padding-block: 0.5rem;
  background-color: var(--brand-color);
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  margin-right: 0.625rem;
  word-break: break-all;
}
.header__link-map {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 0.875rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header__link-map:before {
  margin-right: 6px;
}
.header__link-map:before {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/map-pin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.header__link-map:hover:before {
  background-image: url("../icons/map_pin_hover.svg");
}
@media (max-width: 80rem) {
  .header__link-map {
    display: none;
  }
}
.header__link-phone-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__link-phone {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 0.875rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.header__link-phone:before {
  margin-right: 6px;
}
.header__link-phone:before {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/ph_phone.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.header__link-phone:hover:before {
  background-image: url("../icons/ph_phone_hover.svg");
}
.header__controllers {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header__glasses {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  margin-right: 1.25rem;
}
@media (hover: hover) {
  .header__glasses:hover {
    color: var(--blue-bg-primary);
  }
}
@media (hover: none) {
  .header__glasses:active {
    color: var(--blue-bg-primary);
  }
}
.header__language-list {
  color: var(--white);
  display: flex;
  margin-right: 1.875rem;
}
@media (max-width: 48rem) {
  .header__language-list {
    margin-right: auto;
  }
}
.header__language-list-item {
  display: flex;
}
@media (hover: hover) {
  .header__language-list-item:hover {
    color: var(--blue-bg-primary);
  }
}
@media (hover: none) {
  .header__language-list-item:active {
    color: var(--blue-bg-primary);
  }
}
.header__language-list-item:not(:last-child):after {
  content: "/";
  display: block;
  margin-inline: 0.5rem;
  color: var(--white);
}
.header__socials-list {
  color: var(--brand-color);
  display: flex;
  gap: 0.625rem;
}
.header__socials-list-item {
  cursor: pointer;
  background-color: var(--white);
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .header__socials-list-item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .header__socials-list-item:active {
    color: var(--blue-hover);
  }
}
.header__main-body {
  display: flex;
  align-items: center;
  height: 5.25rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--gray-border);
  background-color: var(--white);
  position: relative;
}
@media (max-width: 120rem) {
  .header__main-body {
    height: 5rem;
  }
}
@media (max-width: 80rem) {
  .header__main-body {
    padding-block: 0.625rem;
  }
}
@media (max-width: 48rem) {
  .header__main-body {
    height: 3.75rem;
    justify-content: space-between;
  }
}
.header__logo {
  margin-right: 3.75rem;
}
@media (max-width: 120rem) {
  .header__logo {
    margin-right: 1.875rem;
  }
}
.header__menu {
  font-size: 0.875rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.1875rem;
}
@media (max-width: 120rem) {
  .header__menu {
    gap: 1.5rem;
  }
}
.header__search-icon {
  line-height: 0;
}
@media (hover: hover) {
  .header__search-icon:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .header__search-icon:active {
    color: var(--blue-hover);
  }
}
@media (max-width: 48rem) {
  .header__search-icon {
    order: -1;
  }
}
.header:has(.header__search-icon.open) .header__search-area {
  display: block;
}
.header__btn {
  max-width: 15rem;
  line-height: 150%;
  margin-left: auto;
  display: none;
}
@media (min-width: 90.0625rem) {
  .header__btn {
    display: inline-flex;
  }
}

.footer {
  padding-block: 3.75rem;
  padding-bottom: 0px !important;
  background-color: var(--bg);
}
@media (max-width: 120rem) {
  .footer {
    padding-block: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .footer {
    padding-block: 2.5rem;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.footer__header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__direction-btn-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__direction-text {
  font-weight: 300;
}
@media (max-width: 48rem) {
  .footer__direction-text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .footer__direction-text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .footer__direction-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .footer__direction-text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .footer__direction-text {
    font-size: 1.125rem;
  }
}
.footer__navigation-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 80rem) {
  .footer__navigation-body {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 3.75rem;
  }
}
@media (max-width: 48rem) {
  .footer__navigation-body {
    grid-template-columns: 1fr;
    grid-row-gap: 3.75rem;
  }
}
.footer__navigation-title {
  margin-bottom: 1.875rem;
}
@media (max-width: 48rem) {
  .footer__navigation-title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .footer__navigation-title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .footer__navigation-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .footer__navigation-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .footer__navigation-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 80rem) {
  .footer__navigation-title {
    margin-bottom: 1.5rem;
  }
}
.footer__navigation-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 48rem) {
  .footer__navigation-column .link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .footer__navigation-column .link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .footer__navigation-column .link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .footer__navigation-column .link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .footer__navigation-column .link {
    font-size: 1.125rem;
  }
}
.footer__socials-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
}
.footer__socials-list-item {
  cursor: pointer;
  background-color: var(--brand-color);
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .footer__socials-list-item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .footer__socials-list-item:active {
    color: var(--blue-hover);
  }
}
.footer__contacts {
  display: flex;
  flex-direction: column;
}
.footer__contacts-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__phones-body {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
  min-width: 22.5rem;
}
@media (max-width: 48rem) {
  .footer__phones-body {
    min-width: auto;
  }
}
.footer__phones-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.search-drop-down {
  display: none;
  font-size: 1rem;
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  padding-block: 3.75rem;
  background-color: var(--white);
  box-shadow: 0 4px 4px 0 rgba(217, 217, 217, 0.4);
  z-index: 1;
}
@media (max-width: 80rem) {
  .search-drop-down {
    padding-block: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .search-drop-down {
    padding-block: 2.5rem;
  }
}

.filter-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 48rem) {
  .filter-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.filter-list > li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.filter-list__btn {
  padding: 0;
  background-color: transparent;
  border: none;
  padding: 0.625rem 1.25rem;
  width: 100%;
  background-color: var(--light-gray);
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .filter-list__btn:hover {
    background-color: var(--blue-hover);
    color: var(--white);
  }
}
@media (hover: none) {
  .filter-list__btn:active {
    background-color: var(--blue-hover);
    color: var(--white);
  }
}
.filter-list__btn.active {
  color: var(--white);
  background-color: var(--brand-color);
}

.navigation-menu {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.1875rem;
}
@media (max-width: 120rem) {
  .navigation-menu {
    gap: 1.5rem;
  }
}
.navigation-menu > .menu-item {
  display: block;
  height: 100%;
  cursor: default;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation-menu > .menu-item .link {
  font-size: 1.125rem;
  font-weight: 400;
}
@media (max-width: 120rem) {
  .navigation-menu > .menu-item .link {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .navigation-menu > .menu-item:hover {
    color: var(--blue-hover);
  }
  .navigation-menu > .menu-item:hover:before {
    content: "";
    display: block;
    height: 0.75rem;
    background-color: inherit;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
  }
  .navigation-menu > .menu-item:hover > .sub-menu {
    display: grid;
  }
}
@media (hover: none) {
  .navigation-menu > .menu-item:active {
    color: var(--blue-hover);
  }
  .navigation-menu > .menu-item:active:before {
    content: "";
    display: block;
    height: 0.75rem;
    background-color: inherit;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
  }
  .navigation-menu > .menu-item:active > .sub-menu {
    display: grid;
  }
}
.navigation-menu > .menu-item.menu-item-has-children {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.navigation-menu > .menu-item.menu-item-has-children:after {
  margin-left: 6px;
}
.navigation-menu > .menu-item.menu-item-has-children:after {
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/vector1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.navigation-menu > .menu-item.menu-item-has-children:hover:after {
  background-image: url("../icons/vector1_hover.svg");
}
.navigation-menu .sub-menu {
  color: var(--black);
  font-size: 1.125rem;
  display: none;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column dense;
  gap: 1rem;
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 0;
  padding-block: 1.5rem;
  background-color: var(--white);
  box-shadow: 0 4px 4px 0 rgba(217, 217, 217, 0.4);
}

.pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media (max-width: 48rem) {
  .pagination {
    gap: 1.75rem;
    justify-content: center;
  }
}
.pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}
.pagination .page-numbers, .pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  background-color: var(--bg);
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 48rem) {
  .pagination .page-numbers, .pagination__btn {
    width: 2rem;
    height: 2rem;
    aspect-ratio: 1;
  }
}
@media (hover: hover) {
  .pagination .page-numbers:hover, .pagination__btn:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .pagination .page-numbers:active, .pagination__btn:active {
    color: var(--blue-hover);
  }
}
.pagination .page-numbers.current, .pagination .page-numbers:active, .pagination .page-numbers:active, .pagination__btn.current, .pagination__btn:active, .pagination__btn:active {
  background-color: var(--brand-color);
  color: var(--white);
}
.pagination .page-numbers.prev, .pagination__btn.prev {
  margin-right: 20px;
  position: relative;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.prev::after, .pagination__btn.prev::before, .pagination__btn.prev::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.0625rem;
  height: 0.5rem;
  background-color: var(--black);
}
@media (hover: hover) {
  .pagination .page-numbers.prev:hover:after, .pagination .page-numbers.prev:hover:before, .pagination__btn.prev:hover:after, .pagination__btn.prev:hover:before {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .pagination .page-numbers.prev:active:after, .pagination .page-numbers.prev:active:before, .pagination__btn.prev:active:after, .pagination__btn.prev:active:before {
    background-color: var(--blue-hover);
  }
}
.pagination .page-numbers.prev::before, .pagination__btn.prev::before {
  top: calc(50% - 2.8268551237px);
  transform: rotate(45deg);
}
.pagination .page-numbers.prev::after, .pagination__btn.prev::after {
  top: calc(50% + 2.8268551237px);
  transform: rotate(-45deg);
}
.pagination .page-numbers.next, .pagination__btn.next {
  margin-left: 20px;
  position: relative;
}
.pagination .page-numbers.next::before, .pagination .page-numbers.next::after, .pagination__btn.next::before, .pagination__btn.next::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0.0625rem;
  height: 0.5rem;
  background-color: var(--black);
}
@media (hover: hover) {
  .pagination .page-numbers.next:hover:after, .pagination .page-numbers.next:hover:before, .pagination__btn.next:hover:after, .pagination__btn.next:hover:before {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .pagination .page-numbers.next:active:after, .pagination .page-numbers.next:active:before, .pagination__btn.next:active:after, .pagination__btn.next:active:before {
    background-color: var(--blue-hover);
  }
}
.pagination .page-numbers.next::before, .pagination__btn.next::before {
  top: calc(50% - 2.8268551237px);
  transform: rotate(-45deg);
}
.pagination .page-numbers.next::after, .pagination__btn.next::after {
  top: calc(50% + 2.8268551237px);
  transform: rotate(45deg);
}
.pagination .page-numbers.prev:active, .pagination .page-numbers.next:active, .pagination__btn.prev:active, .pagination__btn.next:active {
  background-color: var(--brand-color);
}
.pagination .page-numbers.prev:active:before, .pagination .page-numbers.prev:active:after, .pagination .page-numbers.next:active:before, .pagination .page-numbers.next:active:after, .pagination__btn.prev:active:before, .pagination__btn.prev:active:after, .pagination__btn.next:active:before, .pagination__btn.next:active:after {
  background-color: var(--white);
}

.animate-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 80rem) {
  .animate-item {
    padding-right: 40px;
  }
}
@media (hover: hover) {
  .animate-item:hover {
    color: var(--blue-hover);
  }
  .animate-item:hover .animate-item__icon-wrapper {
    color: var(--blue-hover);
  }
  .animate-item:hover .animate-item__icon-main {
    opacity: 0;
  }
  .animate-item:hover .animate-item__icon-arrow {
    transform: translate(0, 0);
  }
}
@media (hover: hover) and (max-width: 80rem) {
  .animate-item:hover .animate-item__icon-arrow {
    transform: translate(-100%);
  }
  .animate-item:hover .animate-item__icon-main {
    opacity: 1;
  }
}
@media (hover: none) {
  .animate-item:active {
    color: var(--blue-hover);
  }
  .animate-item:active .animate-item__icon-wrapper {
    color: var(--blue-hover);
  }
  .animate-item:active .animate-item__icon-main {
    opacity: 0;
  }
  .animate-item:active .animate-item__icon-arrow {
    transform: translate(0, 0);
  }
}
@media (hover: none) and (max-width: 80rem) {
  .animate-item:active .animate-item__icon-arrow {
    transform: translate(-100%);
  }
  .animate-item:active .animate-item__icon-main {
    opacity: 1;
  }
}
.animate-item__icon-wrapper {
  color: var(--brand-color);
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}
.animate-item__icon-arrow {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0, 100%);
  transition: 0.3s ease-in-out;
}
@media (max-width: 80rem) {
  .animate-item__icon-arrow {
    left: 100%;
    transform: translate(-100%);
  }
}

.card-item {
  padding-block: 1.5rem 1.5rem;
  display: flex;
  gap: 1.875rem;
  background: var(--white);
}
.card-item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 48rem) {
  .card-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (hover: hover) {
  .card-item__img:hover {
    opacity: 0.85;
  }
}
@media (hover: none) {
  .card-item__img:active {
    opacity: 0.85;
  }
}
@media (max-width: 48rem) {
  .card-item__img {
    width: 100%;
    max-width: 20rem;
    height: 11.875rem;
  }
}
.card-item__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 0 0;
}
.card-item__title {
  font-family: var(--font-family-tight);
  color: var(--black);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  max-width: 20px;
  display: contents;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .card-item__title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .card-item__title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .card-item__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .card-item__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .card-item__title {
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .card-item__title:hover {
    color: var(--blue-hover);
  }
  .card-item__title:hover > a {
    display: flex;
    align-items: center;
  }
  .card-item__title:hover > a:before {
    width: 1.875rem;
    height: 1.875rem;
    aspect-ratio: 1;
    content: "";
    display: block;
    background-image: url("../icons/arrow-right-hover.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: inherit;
  }
  .card-item__title:hover > a span {
    transition: 0.2s ease;
    transform: translateX(1rem);
  }
}
@media (hover: none) {
  .card-item__title:active {
    color: var(--blue-hover);
  }
  .card-item__title:active > a {
    display: flex;
    align-items: center;
  }
  .card-item__title:active > a:before {
    width: 1.875rem;
    height: 1.875rem;
    aspect-ratio: 1;
    content: "";
    display: block;
    background-image: url("../icons/arrow-right-hover.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    color: inherit;
  }
  .card-item__title:active > a span {
    transition: 0.2s ease;
    transform: translateX(1rem);
  }
}
.card-item__text {
  color: var(--gray);
  font-family: var(--font-family-main);
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .card-item__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .card-item__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .card-item__text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .card-item__text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .card-item__text {
    font-size: 1rem;
  }
}

.patient-map-card {
  width: 100%;
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  background-color: var(--white);
}
@media (hover: hover) {
  .patient-map-card:hover {
    background-color: var(--bg);
    cursor: pointer;
  }
}
@media (hover: none) {
  .patient-map-card:active {
    background-color: var(--bg);
    cursor: pointer;
  }
}
@media (max-width: 80rem) {
  .patient-map-card {
    padding: 1.875rem;
  }
}
@media (max-width: 48rem) {
  .patient-map-card {
    padding: 1.5rem;
    gap: 1.875rem;
  }
}
.patient-map-card__icon {
  width: 7.5rem;
  height: 7.5rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  /*background-image: url("url to img");*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 90rem) {
  .patient-map-card__icon {
    width: 6.25rem;
    height: 6.25rem;
    aspect-ratio: 1;
  }
}
.patient-map-card__title {
  font-family: var(--font-family-tight);
}
@media (max-width: 48rem) {
  .patient-map-card__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 48.0625rem) {
  .patient-map-card__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 80.0625rem) {
  .patient-map-card__title {
    font-size: 2rem;
  }
}
@media (min-width: 90.0625rem) {
  .patient-map-card__title {
    font-size: 2rem;
  }
}
@media (min-width: 120.0625rem) {
  .patient-map-card__title {
    font-size: 2.625rem;
  }
}
.patient-map-card__text {
  font-family: var(--font-family-main);
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .patient-map-card__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .patient-map-card__text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .patient-map-card__text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .patient-map-card__text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .patient-map-card__text {
    font-size: 1rem;
  }
}
.patient-map-card__link {
  font-family: var(--font-family-main);
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .patient-map-card__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .patient-map-card__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .patient-map-card__link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .patient-map-card__link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .patient-map-card__link {
    font-size: 1.125rem;
  }
}

.vacancy {
  border-bottom: 1px solid var(--gray-border);
  border-top: 1px solid var(--gray-border);
}
.vacancy__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3.125rem 3.125rem;
  color: var(--black);
  gap: 40px;
}
@media (min-width: 48.0625rem) {
  .vacancy__row {
    padding-block: 3.125rem 3.125rem;
  }
}
@media (min-width: 80.0625rem) {
  .vacancy__row {
    padding-block: 5rem 5rem;
  }
}
@media (min-width: 90.0625rem) {
  .vacancy__row {
    padding-block: 5rem 5rem;
  }
}
@media (min-width: 120.0625rem) {
  .vacancy__row {
    padding-block: 6.25rem 6.25rem;
  }
}
@media (max-width: 80rem) {
  .vacancy__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.vacancy__requirement {
  flex: 1;
}
.vacancy__info {
  flex: 1;
}
.vacancy__name {
  flex: 1;
  color: var(--brand-color);
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .vacancy__name {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .vacancy__name {
    font-size: 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .vacancy__name {
    font-size: 1.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .vacancy__name {
    font-size: 1.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .vacancy__name {
    font-size: 1.75rem;
  }
}
.vacancy__title {
  font-family: var(--font-family-tight);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
@media (max-width: 48rem) {
  .vacancy__title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .vacancy__title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .vacancy__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .vacancy__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .vacancy__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .vacancy__title {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .vacancy__title {
    margin-bottom: 1.5rem;
  }
}
.vacancy__text {
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .vacancy__text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .vacancy__text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .vacancy__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .vacancy__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .vacancy__text {
    font-size: 1.125rem;
  }
}
.vacancy__text:not(:last-child) {
  margin-bottom: 1rem;
}
.vacancy__sub-text {
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}

.sticky-container {
  max-width: var(--max-screen-size);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  margin: 0 auto;
  display: flex;
  position: relative;
}
.sticky-container:not(.sticky-container_reverse) {
  border-top: 1px solid var(--gray-border);
}
@media (max-width: 80rem) {
  .sticky-container {
    flex-direction: column;
  }
  .sticky-container_reverse {
    flex-direction: column-reverse;
  }
  .sticky-container.sticky-container_reverse .sticky-container__left {
    border-top: 1px solid var(--gray-border);
  }
}
.sticky-container__left {
  flex: 1;
  border-right: 1px solid var(--gray-border);
}
.sticky-container__right {
  padding-top: 3.75rem;
  padding-bottom: 12.5rem;
  flex-basis: 33.3%;
  height: -moz-min-content;
  height: min-content;
  position: sticky;
  top: 0;
}
@media (max-width: 80rem) {
  .sticky-container__right {
    position: static;
    padding-top: 3.125rem;
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 48rem) {
  .sticky-container__right {
    padding-top: 2.5rem;
  }
}
.sticky-container__icon {
  width: 12.375rem;
  height: 12.125rem;
  background-image: url("../icons/Group6077.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  pointer-events: none;
}

.news-card {
  padding: 1.25rem;
  max-width: 22.5rem;
  cursor: pointer;
}
@media (hover: hover) {
  .news-card:hover {
    background-color: var(--bg);
  }
}
@media (hover: none) {
  .news-card:active {
    background-color: var(--bg);
  }
}
.news-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
}
@media (max-width: 120rem) {
  .news-card__content {
    gap: 1.875rem;
  }
}
.news-card__detail {
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.news-card__detail-data {
  font-family: var(--font-family-main);
  color: var(--dark-blue);
  font-size: 0.875rem;
}
.news-card__detail-title {
  font-family: var(--font-family-tight);
}
@media (max-width: 48rem) {
  .news-card__detail-title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .news-card__detail-title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .news-card__detail-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .news-card__detail-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .news-card__detail-title {
    font-size: 1.5rem;
  }
}
.news-card__link {
  font-family: var(--font-family-main);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}

.news-big-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.news-big-card__wrapper {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background-color: var(--white);
  position: absolute;
  left: 1.25rem;
  bottom: 1.0625rem;
}
.news-big-card__detail {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}
.news-big-card__detail-data {
  font-family: var(--font-family-main);
  color: var(--dark-blue);
}
@media (max-width: 48rem) {
  .news-big-card__detail-data {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .news-big-card__detail-data {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .news-big-card__detail-data {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .news-big-card__detail-data {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .news-big-card__detail-data {
    font-size: 1rem;
  }
}
.news-big-card__detail-title {
  font-family: var(--font-family-tight);
}
@media (max-width: 48rem) {
  .news-big-card__detail-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .news-big-card__detail-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .news-big-card__detail-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 90.0625rem) {
  .news-big-card__detail-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .news-big-card__detail-title {
    font-size: 1.75rem;
  }
}
.news-big-card__img {
  position: relative;
  max-width: 36.25rem;
}
.news-big-card__link {
  font-family: var(--font-family-main);
  margin-top: 1.25rem;
  font-size: 1.125rem;
}
@media (max-width: 48rem) {
  .news-big-card__link {
    font-size: 0.875rem;
  }
}

.notification {
  width: 20rem;
  height: 4.625rem;
  position: absolute;
  top: 20%;
  left: 1.25rem;
  background-color: var(--brand-color);
  transform: translateX(calc(-100% - 1.25rem));
  transition: 0.3s ease;
  z-index: 2;
}
.notification__icon {
  width: 2.75rem;
  height: 3.125rem;
  flex-shrink: 0;
  background-image: url("../icons/Frame6042.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.notification__wrapper {
  height: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  overflow: hidden;
  position: relative;
}
.notification__gradient {
  pointer-events: none;
  position: absolute;
  width: 12.5rem;
  height: 100%;
  background: radial-gradient(130% 80% at 15% 50%, rgba(255, 255, 255, 0.6) -20%, rgba(255, 255, 255, 0) 65%);
  animation: gradientMove 10s linear infinite;
  animation-delay: 1s;
  transform: translate(-150%, 0%) rotate(-45deg);
}
.notification__body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  color: var(--white);
}
.notification__title {
  font-size: 1rem;
  font-weight: 500;
}
.notification__text {
  font-size: 0.875rem;
}
.notification__close-btn {
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.375rem;
  right: 0.375rem;
  flex-shrink: 0;
  background-color: transparent;
  cursor: pointer;
}
.notification__close-btn:after, .notification__close-btn:before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.125rem;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.notification__close-btn:before {
  transform: rotate(-45deg);
}
.notification__close-btn:after {
  transform: rotate(45deg);
}
.notification.open {
  transform: translateX(0%);
}

@keyframes gradientMove {
  0% {
    transform: translate(-150%, 0%) rotate(-45deg);
  }
  20% {
    transform: translate(150%, 0%) rotate(-45deg);
  }
  100% {
    transform: translate(150%, 0%) rotate(-45deg);
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.breadcrumb__item:not(:last-child) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-items: baseline;
}
.breadcrumb__item:not(:last-child):after {
  margin-left: 10px;
}
.breadcrumb__item:not(:last-child):after {
  width: 0.625rem;
  height: 0.625rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/vector1.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.breadcrumb__item:not(:last-child):hover:after {
  background-image: url("../icons/vector1_hover.svg");
}
@media (hover: hover) {
  .breadcrumb__item:hover {
    color: var(--blue-hover);
  }
}
@media (hover: none) {
  .breadcrumb__item:active {
    color: var(--blue-hover);
  }
}
.breadcrumb__item:after {
  transform: rotate(-90deg);
}
.breadcrumb__item.active {
  color: var(--brand-color);
}
.breadcrumb__link {
  font-family: var(--font-family-tight);
}
@media (max-width: 48rem) {
  .breadcrumb__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .breadcrumb__link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .breadcrumb__link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .breadcrumb__link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .breadcrumb__link {
    font-size: 1.125rem;
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 48rem) {
  .logo__img {
    width: 7.875rem;
    height: 3.125rem;
  }
}

.page-template {
  display: flex;
  flex-direction: column-reverse;
}
.page-template .page-template__sidebar {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
}
.page-template .page-template__sidebar .homepage-widget-block {
  list-style-type: none;
}
.page-template .page-template__sidebar .sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-height: 100%;
}
.page-template .page-template__sidebar .sidebar__title {
  color: var(--black);
  /* title-sm_360 */
  font-family: var(--font-family-main);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
}
.page-template .page-template__sidebar .menu, .page-template .page-template__sidebar ul {
  margin-bottom: 20px;
}
.page-template .page-template__sidebar .menu li, .page-template .page-template__sidebar ul li {
  color: var(--black);
  border-bottom: 1px solid var(--gray-border);
  /* title-sm_360 */
  font-family: var(--font-family-tight);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
.page-template .page-template__sidebar .menu .current_page_item, .page-template .page-template__sidebar ul .current_page_item {
  color: var(--brand-color);
}
@media (min-width: 48.0625rem) {
  .page-template .page-template__sidebar {
    width: 360px;
  }
  .page-template .page-template__sidebar .menu, .page-template .page-template__sidebar ul {
    margin-bottom: 40px;
  }
  .page-template .page-template__sidebar .menu li, .page-template .page-template__sidebar ul li {
    padding: 20px 30px;
  }
}
@media (min-width: 120.0625rem) {
  .page-template .page-template__sidebar .menu, .page-template .page-template__sidebar ul {
    margin-bottom: 60px;
  }
  .page-template .page-template__sidebar .menu li, .page-template .page-template__sidebar ul li {
    padding: 20px 40px;
  }
  .page-template .page-template__sidebar .sidebar__title {
    font-size: 28px;
  }
}
.page-template .page__content {
  overflow-x: auto;
  overflow-y: hidden;
}
.page-template .page__content::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.page-template .page__content::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.page-template .page__content::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .page-template .page__content::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .page-template .page__content::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
.page-template .page-template__content {
  overflow-x: auto;
  overflow-y: hidden;
}
.page-template .page-template__content::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.page-template .page-template__content::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.page-template .page-template__content::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .page-template .page-template__content::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .page-template .page-template__content::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
.page-template .page-template__content h2 {
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 40px;
  /* h2_360 */
  font-family: var(--font-family-tight);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 28.8px */
}
.page-template .page-template__content h2:first-child {
  margin-top: 0;
}
.page-template .page-template__content h3 {
  color: var(--black);
  margin-bottom: 20px;
  margin-top: 40px;
  /* title-md_360 */
  font-family: var(--font-family-tight);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.page-template .page-template__content h3:first-child {
  margin-top: 0;
}
.page-template .page-template__content p {
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 16px;
}
.page-template .page-template__content p:last-child {
  margin-bottom: 40px;
}
.page-template .page-template__content a {
  color: var(--main-color_indigo);
  /* text-base_360 */
  font-family: var(--font-family-main);
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
}
.page-template .page-template__content ul {
  margin-bottom: 30px;
}
.page-template .page-template__content ul li {
  color: var(--black);
  /* text-base_360 */
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: start;
}
.page-template .page-template__content ul li.no-marker {
  list-style: none;
}
.page-template .page-template__content ul li.no-marker::before {
  content: none;
}
.page-template .page-template__content ul li::before {
  content: "•"; /* Adding a bullet point */
  color: var(--brand-color); /* Coloring the bullet point blue */
  margin-right: 14px; /* Adding a left margin of 8px */
  font-size: 30px;
  margin-top: 1px;
}
.page-template .page-template__content ol {
  margin-bottom: 30px;
  counter-reset: section;
  list-style-type: none;
}
.page-template .page-template__content ol li {
  counter-increment: section;
  color: var(--black);
  font-family: var(--font-family-main);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 24px */
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: start;
}
.page-template .page-template__content ol li::before {
  content: counter(section) ". ";
  color: var(--brand-color);
  margin-right: 14px;
  font-weight: 400;
}
.page-template .page-template__content img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}
.page-template .page-template__content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.page-template .page-template__content img.alignleft {
  float: left;
  margin-right: 20px;
}
.page-template .page-template__content img.alignright {
  float: right;
  margin-left: 20px;
}
.page-template .page-template__content iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
}
.page-template .page-template__content table {
  color: var(--black, #1c1c1c);
  /* text-sm_360 */
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%; /* 21px */
  border: 1px solid var(--gray-border);
}
.page-template .page-template__content table tr, .page-template .page-template__content table td, .page-template .page-template__content table th {
  border-color: var(--gray-border);
  border-style: solid;
  border-width: 1px;
  padding: 20px;
}
.page-template .page-template__content table tr p, .page-template .page-template__content table td p, .page-template .page-template__content table th p {
  margin-bottom: 0px !important;
}
.page-template .page-template__content table tr p[align=center], .page-template .page-template__content table td p[align=center], .page-template .page-template__content table th p[align=center] {
  text-align: center;
}
.page-template .page-template__content table tr p[align=left], .page-template .page-template__content table td p[align=left], .page-template .page-template__content table th p[align=left] {
  text-align: left;
}
.page-template .page-template__content table tr p[align=right], .page-template .page-template__content table td p[align=right], .page-template .page-template__content table th p[align=right] {
  text-align: right;
}
@media (min-width: 48.0625rem) {
  .page-template .page-template__content h2 {
    font-size: 32px;
  }
  .page-template .page-template__content ul, .page-template .page-template__content ol {
    margin-bottom: 30px;
  }
  .page-template .page-template__content ul li, .page-template .page-template__content ol li {
    margin-bottom: 17px;
  }
}
@media (min-width: 80.0625rem) {
  .page-template .page-template__content h2 {
    font-size: 42px;
  }
  .page-template .page-template__content h3 {
    font-size: 18px;
  }
  .page-template .page-template__content p {
    font-size: 18px;
  }
  .page-template .page-template__content table {
    font-size: 16px;
  }
  .page-template .page-template__content table tr {
    font-size: 16px;
  }
  .page-template .page-template__content table td {
    font-size: 16px;
  }
}
@media (min-width: 90.0625rem) {
  .page-template .page-template__content h2 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .page-template .page-template__content p {
    font-size: 18px;
  }
}
@media (min-width: 120.0625rem) {
  .page-template .page-template__content h2 {
    font-size: 52px;
  }
  .page-template .page-template__content h3 {
    font-size: 24px;
  }
  .page-template .page-template__content ul, .page-template .page-template__content ol {
    margin-bottom: 40px;
  }
  .page-template .page-template__content ul li, .page-template .page-template__content ol li {
    font-size: 18px;
  }
  .page-template .page-template__content table tr {
    padding: 30px;
  }
  .page-template .page-template__content table td {
    padding: 30px;
  }
}
@media (min-width: 80.0625rem) {
  .page-template {
    flex-direction: row;
    justify-content: space-between;
  }
  .page-template .page-template__sidebar {
    flex-basis: 26%;
  }
  .page-template .page-template__content, .page-template .page__content {
    flex-basis: 74%;
    margin-left: 80px;
  }
}
@media (min-width: 90.0625rem) {
  .page-template .page-template__content, .page-template .page__content {
    margin-left: 100px;
  }
}
@media (min-width: 120.0625rem) {
  .page-template .page-template__content, .page-template .page__content {
    margin-left: 120px;
  }
}

.search-results-list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-family-tight);
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .search-results-list {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .search-results-list {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .search-results-list {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .search-results-list {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .search-results-list {
    font-size: 1.5rem;
  }
}

.search-result-item {
  padding: 10px 15px;
  border-bottom: 1px solid var(--gray);
  font-family: var(--font-family-tight);
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .search-result-item {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .search-result-item {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .search-result-item {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .search-result-item {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .search-result-item {
    font-size: 1.5rem;
  }
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item a {
  color: var(--black);
  text-decoration: none;
}
.search-result-item a:hover {
  color: var(--blue);
}

.search-no-results,
.search-error {
  padding: 20px;
  text-align: center;
  color: var(--gray);
}

.loading {
  position: relative;
  min-height: 200px;
  font-family: var(--font-family-tight);
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .loading {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .loading {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .loading {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .loading {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .loading {
    font-size: 1.5rem;
  }
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid var(--gray);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.search-results {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 0.25rem;
  padding: 1.25rem;
  max-height: 25rem;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
}
.search-results::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
.search-results::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
.search-results::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  .search-results::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  .search-results::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}
.search-results-list {
  display: grid;
  gap: 1.25rem;
}
.search-results .search-result-item {
  padding: 1.25rem;
  background: var(--light-gray);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  border: none;
}
.search-results .search-result-item:hover {
  background: var(--blue-light);
}
.search-results .search-result-item a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-family-tight);
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .search-results .search-result-item a {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .search-results .search-result-item a {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .search-results .search-result-item a {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .search-results .search-result-item a {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .search-results .search-result-item a {
    font-size: 1.25rem;
  }
}
.search-results .search-result-item a:hover {
  color: var(--blue);
}
.search-results .search-result-item p {
  margin-top: 0.625rem;
  color: var(--gray);
  font-family: var(--font-family-tight);
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 48rem) {
  .search-results .search-result-item p {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .search-results .search-result-item p {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .search-results .search-result-item p {
    font-size: 0.875rem;
  }
}
@media (min-width: 90.0625rem) {
  .search-results .search-result-item p {
    font-size: 0.875rem;
  }
}
@media (min-width: 120.0625rem) {
  .search-results .search-result-item p {
    font-size: 1rem;
  }
}
.search-results .loading {
  padding: 2.5rem;
  text-align: center;
  color: var(--gray);
  font-family: var(--font-family-tight);
}
.search-results .loading::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  margin: 1.25rem auto 0;
  border: 0.125rem solid var(--gray);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s infinite linear;
}
.search-results .no-results,
.search-results .search-error {
  padding: 2.5rem;
  text-align: center;
  color: var(--gray);
  font-family: var(--font-family-tight);
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .search-results .no-results,
  .search-results .search-error {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .search-results .no-results,
  .search-results .search-error {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .search-results .no-results,
  .search-results .search-error {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .search-results .no-results,
  .search-results .search-error {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .search-results .no-results,
  .search-results .search-error {
    font-size: 1.125rem;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.main-block {
  background-image: url("../img/landingPicture.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 48rem) {
  .main-block {
    background-color: rgba(255, 255, 255, 0.8);
    background-blend-mode: lighten;
  }
}
.main-block__content {
  font-family: var(--font-family-tight);
  padding-block: 10.625rem 11.5625rem;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  max-width: 60.625rem;
  width: 100%;
}
@media (max-width: 120rem) {
  .main-block__content {
    padding-block: 9.375rem 10.3125rem;
    max-width: 49.6875rem;
  }
}
@media (max-width: 80rem) {
  .main-block__content {
    padding-block: 5rem 4.375rem;
    max-width: 43.75rem;
    gap: 3.75rem;
  }
}
@media (max-width: 48rem) {
  .main-block__content {
    padding-block: 3.75rem 4.375rem;
    gap: 3.125rem;
  }
}
.main-block__title-body {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.main-block__subtitle {
  color: var(--dark-blue);
  font-weight: 400;
}
@media (max-width: 48rem) {
  .main-block__subtitle {
    font-size: 1.125rem;
  }
}
@media (min-width: 48.0625rem) {
  .main-block__subtitle {
    font-size: 1.25rem;
  }
}
@media (min-width: 80.0625rem) {
  .main-block__subtitle {
    font-size: 1.25rem;
  }
}
@media (min-width: 90.0625rem) {
  .main-block__subtitle {
    font-size: 1.5rem;
  }
}
@media (min-width: 120.0625rem) {
  .main-block__subtitle {
    font-size: 1.75rem;
  }
}
.main-block__title {
  font-weight: 500;
  color: var(--brand-color);
}
@media (max-width: 48rem) {
  .main-block__title {
    font-size: 1.75rem;
  }
}
@media (min-width: 48.0625rem) {
  .main-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 80.0625rem) {
  .main-block__title {
    font-size: 3.25rem;
  }
}
@media (min-width: 90.0625rem) {
  .main-block__title {
    font-size: 3.25rem;
  }
}
@media (min-width: 120.0625rem) {
  .main-block__title {
    font-size: 4rem;
  }
}
.main-block__option-list {
  color: var(--black);
  font-family: var(--font-family-tight);
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column dense;
  gap: 1.4375rem;
  width: 100%;
}
@media (max-width: 120rem) {
  .main-block__option-list {
    font-size: 1.125rem;
  }
}
@media (max-width: 80rem) {
  .main-block__option-list {
    grid-template-columns: repeat(1, auto);
    grid-template-rows: auto;
    grid-auto-flow: row dense;
    gap: 1.25rem;
    max-width: 26.4375rem;
    margin-left: auto;
  }
}
@media (max-width: 48rem) {
  .main-block__option-list {
    font-size: 1rem;
    grid-template-columns: repeat(1, auto);
    grid-template-rows: auto;
    grid-auto-flow: row dense;
    gap: 1.25rem;
  }
}

.cards-block__content {
  padding-block: 6.25rem 6.25rem;
}
@media (max-width: 90rem) {
  .cards-block__content {
    padding-block: 5rem 5rem;
  }
}
@media (max-width: 80rem) {
  .cards-block__content {
    padding-block: 3.75rem 3.75rem;
  }
}
.cards-block__title-wrapper {
  font-family: var(--font-family-tight);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.75rem;
}
@media (max-width: 80rem) {
  .cards-block__title-wrapper {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .cards-block__title-wrapper {
    margin-bottom: 2.5rem;
  }
}
.cards-block__title {
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .cards-block__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .cards-block__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .cards-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .cards-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .cards-block__title {
    font-size: 3.25rem;
  }
}
@media (max-width: 48rem) {
  .cards-block__view-link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .cards-block__view-link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .cards-block__view-link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .cards-block__view-link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .cards-block__view-link {
    font-size: 1.125rem;
  }
}
@media (max-width: 80rem) {
  .cards-block__list {
    border-bottom: 1px solid var(--gray-border);
  }
}
.cards-block__list-item {
  margin-bottom: 0px !important;
}
.cards-block__list-item:not(:first-child) {
  border-top: 1px solid var(--gray-border);
}

.health-school {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.5rem;
}
@media (max-width: 48rem) {
  .health-school {
    gap: 1.875rem;
  }
}
.health-school__title {
  color: var(--brand-color);
}
@media (max-width: 48rem) {
  .health-school__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .health-school__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .health-school__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .health-school__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .health-school__title {
    font-size: 3.25rem;
  }
}
.health-school__text-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.health-school__text {
  color: var(--gray);
}
@media (max-width: 48rem) {
  .health-school__text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .health-school__text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .health-school__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .health-school__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .health-school__text {
    font-size: 1.125rem;
  }
}
.health-school__btn {
  max-width: 21.25rem;
}

.patient-portal {
  background: var(--blue-bg-primary);
  padding-block: 6.25rem 6.25rem;
}
@media (max-width: 90rem) {
  .patient-portal {
    padding-block: 5rem 6.25rem;
  }
}
@media (max-width: 80rem) {
  .patient-portal {
    padding-block: 3.75rem 5rem;
  }
}
@media (max-width: 48rem) {
  .patient-portal {
    padding-block: 3.125rem 4.375rem;
  }
}
.patient-portal__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.75rem;
}
@media (max-width: 48rem) {
  .patient-portal__content {
    gap: 2.5rem;
  }
}
.patient-portal__title {
  font-family: var(--font-family-tight);
  color: var(--brand-color);
}
@media (max-width: 48rem) {
  .patient-portal__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .patient-portal__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .patient-portal__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .patient-portal__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .patient-portal__title {
    font-size: 3.25rem;
  }
}
.patient-portal__cards-body {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}
@media (max-width: 48rem) {
  .patient-portal__cards-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.patient-portal__icon1 {
  background-image: url("../icons/blockInformation_location.svg");
}
.patient-portal__icon2 {
  background-image: url("../icons/blockInformation_timetable.svg");
}

.about-us {
  padding-block: 7.5rem;
  background: var(--white);
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 120rem) {
  .about-us {
    padding-block: 6.25rem;
  }
}
@media (max-width: 90rem) {
  .about-us {
    padding-block: 5rem;
  }
}
@media (max-width: 80rem) {
  .about-us {
    padding-block: 3.75rem;
    flex-direction: column;
    gap: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .about-us {
    padding-block: 3.125rem 3.75rem;
    gap: 2.5rem;
    flex-direction: column;
  }
}
.about-us__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (max-width: 48rem) {
  .about-us__content {
    gap: 2.5rem;
  }
}
.about-us__content-text {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 90%;
}
.about-us__title {
  color: var(--black);
}
@media (max-width: 48rem) {
  .about-us__title {
    font-size: 2rem;
  }
}
@media (min-width: 48.0625rem) {
  .about-us__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .about-us__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .about-us__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .about-us__title {
    font-size: 3.25rem;
  }
}
.about-us__text {
  color: var(--gray);
}
@media (max-width: 48rem) {
  .about-us__text {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .about-us__text {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .about-us__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .about-us__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .about-us__text {
    font-size: 1.125rem;
  }
}
.about-us__statistic-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 48rem) {
  .about-us__statistic-wrapper {
    flex-direction: column;
  }
}
.about-us__statistic-card {
  max-width: 15rem;
  width: 100%;
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  background-color: var(--bg);
}
@media (max-width: 48rem) {
  .about-us__statistic-card {
    max-width: none;
  }
}
.about-us__statistic-card-title {
  color: var(--black);
}
@media (max-width: 48rem) {
  .about-us__statistic-card-title {
    font-size: 1rem;
  }
}
@media (min-width: 48.0625rem) {
  .about-us__statistic-card-title {
    font-size: 1rem;
  }
}
@media (min-width: 80.0625rem) {
  .about-us__statistic-card-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 90.0625rem) {
  .about-us__statistic-card-title {
    font-size: 1.125rem;
  }
}
@media (min-width: 120.0625rem) {
  .about-us__statistic-card-title {
    font-size: 1.5rem;
  }
}
.about-us__statistic-card-count {
  color: var(--brand-color);
  line-height: 1.3;
}
@media (max-width: 48rem) {
  .about-us__statistic-card-count {
    font-size: 2.625rem;
  }
}
@media (min-width: 48.0625rem) {
  .about-us__statistic-card-count {
    font-size: 2.625rem;
  }
}
@media (min-width: 80.0625rem) {
  .about-us__statistic-card-count {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .about-us__statistic-card-count {
    font-size: 3.25rem;
  }
}
@media (min-width: 120.0625rem) {
  .about-us__statistic-card-count {
    font-size: 3.75rem;
  }
}
.about-us__video-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us__video-play-btn {
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1;
  position: absolute;
  background-color: var(--white);
  border-radius: 50%;
  background-image: url("../icons/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
}

.video {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 12.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 48.0625rem) {
  .video {
    max-height: 25rem;
  }
}
@media (min-width: 80.0625rem) {
  .video {
    max-height: 31.25rem;
  }
}
@media (min-width: 120.0625rem) {
  .video {
    max-height: 37.5rem;
  }
}
.video img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.slider {
  height: 56.25rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 120rem) {
  .slider {
    height: 50rem;
  }
}
@media (max-width: 80rem) {
  .slider {
    height: 31.25rem;
  }
}
@media (max-width: 48rem) {
  .slider {
    height: 28.125rem;
  }
}
.slider__line {
  display: flex;
  transition: all 1s ease;
  height: 100%;
}
.slider__item {
  width: 100%;
  flex-shrink: 0;
}
@media (max-width: 48rem) {
  .slider__item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }
}
.slider__img1 {
  background: url(../img/landingPicture2.png) center/cover no-repeat;
}
.slider__img2 {
  background: url(../img/landingPicture3.png) center/cover no-repeat;
}
.slider__img3 {
  background: url(../img/landingPicture4.png) center/cover no-repeat;
}
.slider__card {
  max-width: 38.75rem;
  width: 100%;
  padding: 2.5rem 3.75rem 3.75rem 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 11.458%;
}
@media (max-width: 80rem) {
  .slider__card {
    padding: 1.875rem 2.5rem 2.5rem 2.5rem;
    max-width: 31.25rem;
  }
}
@media (max-width: 48rem) {
  .slider__card {
    padding: 1.5rem;
    position: static;
    transform: translateY(0%);
  }
}
.slider__card-icon {
  width: 7.5rem;
  height: 7.5rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 2.5rem;
}
@media (max-width: 80rem) {
  .slider__card-icon {
    width: 6.25rem;
    height: 6.25rem;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .slider__card-icon {
    width: 5rem;
    height: 5rem;
    aspect-ratio: 1;
    margin-bottom: 1.25rem;
  }
}
.slider__card-icon1 {
  background-image: url(../icons/disp.svg);
}
.slider__card-icon2 {
  background-image: url(../icons/vac.svg);
}
.slider__card-icon3 {
  background-image: url(../icons/Frame6121.svg);
}
.slider__card-title {
  margin-bottom: 1.875rem;
  color: var(--brand-color);
}
@media (max-width: 48rem) {
  .slider__card-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .slider__card-title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .slider__card-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .slider__card-title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .slider__card-title {
    font-size: 3.25rem;
  }
}
@media (max-width: 80rem) {
  .slider__card-title {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 48rem) {
  .slider__card-title {
    margin-bottom: 1rem;
  }
}
.slider__card-text {
  margin-bottom: 6.25rem;
}
@media (max-width: 48rem) {
  .slider__card-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .slider__card-text {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .slider__card-text {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .slider__card-text {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .slider__card-text {
    font-size: 1rem;
  }
}
@media (max-width: 120rem) {
  .slider__card-text {
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 80rem) {
  .slider__card-text {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 48rem) {
  .slider__card-text {
    margin-bottom: 1.875rem;
  }
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 48rem) {
  .slider__controls {
    justify-content: space-around;
    align-items: flex-start;
  }
}
.slider__arrow {
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  aspect-ratio: 1;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid var(--light-gray);
  background: var(--white);
  cursor: pointer;
  pointer-events: auto;
  z-index: 1;
}
@media (max-width: 80rem) {
  .slider__arrow {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1;
    display: flex;
  }
}
.slider__arrow_prev:before {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.slider__arrow_next:after {
  transform: rotate(180deg);
}
.slider__arrow_next:after {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  content: "";
  display: block;
  background-image: url("../icons/chevron.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}
.slider__dots {
  padding-bottom: 2.5rem;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  z-index: 1;
  pointer-events: auto;
}
@media (max-width: 80rem) {
  .slider__dots {
    padding-bottom: 0.625rem;
  }
}
.slider__dots .swiper-pagination-bullet-active {
  background-color: var(--white) !important;
  transform: scale(1.3);
}
.slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  pointer-events: auto;
}
@media (hover: hover) {
  .slider__dot:hover {
    background: var(--white);
    opacity: 1;
    transform: scale(1.3);
  }
}
@media (hover: none) {
  .slider__dot:active {
    background: var(--white);
    opacity: 1;
    transform: scale(1.3);
  }
}

.gallery-block {
  padding: 6.25rem 0rem 7.5rem;
  background-color: var(--brand-color);
}
@media (max-width: 120rem) {
  .gallery-block {
    padding: 5rem 0 6.25rem;
  }
}
@media (max-width: 80rem) {
  .gallery-block {
    padding: 3.125rem 0 3.75rem;
  }
}
.gallery-block__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.gallery-block__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-block__title {
  color: var(--white);
}
@media (max-width: 48rem) {
  .gallery-block__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .gallery-block__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .gallery-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .gallery-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .gallery-block__title {
    font-size: 3.25rem;
  }
}
@media (max-width: 48rem) {
  .gallery-block__view-link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .gallery-block__view-link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .gallery-block__view-link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .gallery-block__view-link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .gallery-block__view-link {
    font-size: 1.125rem;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(26.875rem, 1fr));
  grid-template-rows: auto;
  grid-row-gap: 1.25rem;
  grid-column-gap: 1.25rem;
}
@media (max-width: 120rem) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}
@media (max-width: 90rem) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  }
}
@media (max-width: 80rem) {
  .gallery {
    grid-template-columns: repeat(2, minmax(17.5rem, 1fr));
  }
}
@media (max-width: 48rem) {
  .gallery {
    grid-template-columns: repeat(1, minmax(20rem, 1fr));
    grid-row-gap: 0.625rem;
    grid-column-gap: 0.625rem;
  }
}
.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 48rem) {
  .gallery-column {
    gap: 0.625rem;
  }
}
@media (max-width: 48rem) {
  .gallery-column2, .gallery-column4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 2fr;
    gap: 0.625rem;
  }
}
@media (max-width: 80rem) {
  .gallery-column3 {
    order: 1;
  }
}
.gallery-column1__img1, .gallery-column1__img2, .gallery-column3__img1, .gallery-column3__img2 {
  flex-basis: 50%;
}
.gallery-column2__img1, .gallery-column2__img2, .gallery-column4__img1, .gallery-column4__img2 {
  flex-basis: 30%;
}
.gallery-column2__img3, .gallery-column4__img3 {
  flex-basis: 40%;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*до 768*/
@media screen and (max-width: 768px) {
  .gallery-column2__img1,
  .gallery-column4__img1 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-column2__img2,
  .gallery-column4__img2 {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-column2__img3,
  .gallery-column4__img3 {
    grid-column: span 2;
    grid-row: span 1;
  }
}
.news-block {
  padding: 6.25rem 0 7.5rem;
}
@media (max-width: 90rem) {
  .news-block {
    padding: 5rem 0;
  }
}
@media (max-width: 48rem) {
  .news-block {
    padding: 3.75rem 0;
  }
}
.news-block__title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.75rem;
}
.news-block__title-wrapper a:nth-of-type(1) {
  margin-left: auto;
}
@media (max-width: 80rem) {
  .news-block__title-wrapper {
    gap: 0.75rem;
  }
}
.news-block h2 {
  cursor: pointer;
}
.news-block__title {
  color: var(--gray-border-secondary);
}
@media (max-width: 48rem) {
  .news-block__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .news-block__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .news-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .news-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .news-block__title {
    font-size: 3.25rem;
  }
}
.news-block__title.active-tab {
  color: var(--black);
}
.news-block__view-link {
  margin-left: auto;
}
@media (max-width: 48rem) {
  .news-block__view-link {
    font-size: 0.875rem;
  }
}
@media (min-width: 48.0625rem) {
  .news-block__view-link {
    font-size: 0.875rem;
  }
}
@media (min-width: 80.0625rem) {
  .news-block__view-link {
    font-size: 1rem;
  }
}
@media (min-width: 90.0625rem) {
  .news-block__view-link {
    font-size: 1rem;
  }
}
@media (min-width: 120.0625rem) {
  .news-block__view-link {
    font-size: 1.125rem;
  }
}
.news-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
}
@media (max-width: 80rem) {
  .news-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}
@media (max-width: 48rem) {
  .news-container {
    grid-template-columns: 1fr;
  }
}
.news-container .news-big-card {
  grid-column: span 1;
  grid-row: span 2;
}
@media (max-width: 80rem) {
  .news-card, .news-big-card {
    max-width: none;
    background-color: var(--bg);
  }
}

.single-news {
  border-bottom: 1px solid var(--gray-border);
  margin-bottom: 40px;
}
.single-news__date {
  color: var(--dark-blue);
  font-family: var(--font-family-main);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  /* 28.8px */
  margin-bottom: 20px;
  display: block;
}
.single-news__btn {
  color: var(--white) !important;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100% !important;
  background-color: var(--brand-color) !important;
  transition: background-color 0.3s ease;
  padding: 14px !important;
  display: block;
  margin-top: 40px;
  margin-bottom: 40px;
}
.single-news__btn:hover {
  background-color: var(--blue-hover) !important;
}
@media (min-width: 48.0625rem) {
  .single-news__btn {
    width: -moz-fit-content !important;
    width: fit-content !important;
    padding: 14px 80px !important;
    font-size: 16px;
  }
}
@media (min-width: 80.0625rem) {
  .single-news__date {
    font-size: 20px;
  }
  .single-news__btn {
    font-size: 18px;
  }
}
@media (min-width: 90.0625rem) {
  .single-news__btn {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media (min-width: 120.0625rem) {
  .single-news__date {
    font-size: 24px;
  }
  .single-news__btn {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}

.related-news__title {
  color: var(--black);
  /* title-lg_1920 */
  font-family: var(--font-family-tight) !important;
  font-size: 20px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 120% !important; /* 33.6px */
  margin-bottom: 20px !important;
}
.related-news .news-card {
  margin-bottom: 20px;
}
@media (min-width: 80.0625rem) {
  .related-news__list {
    display: flex;
  }
  .related-news .news-card {
    flex: 1 0;
    margin-right: 20px;
    margin-bottom: 0px;
  }
}
@media (min-width: 120.0625rem) {
  .related-news__title {
    font-size: 28px !important;
  }
}

.contacts-block {
  padding: 6.25rem 0 7.5rem;
  background-color: var(--light-gray);
}
@media (max-width: 90rem) {
  .contacts-block {
    padding: 5rem 0;
  }
}
@media (max-width: 48rem) {
  .contacts-block {
    padding: 3.75rem 0;
  }
}
.contacts-block__content {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (max-width: 90rem) {
  .contacts-block__content {
    gap: 3.125rem;
  }
}
@media (max-width: 48rem) {
  .contacts-block__content {
    gap: 2.5rem;
  }
}
@media (max-width: 48rem) {
  .contacts-block__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 48.0625rem) {
  .contacts-block__title {
    font-size: 2rem;
  }
}
@media (min-width: 80.0625rem) {
  .contacts-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 90.0625rem) {
  .contacts-block__title {
    font-size: 2.625rem;
  }
}
@media (min-width: 120.0625rem) {
  .contacts-block__title {
    font-size: 3.25rem;
  }
}
.contacts-block__body {
  display: flex;
  gap: 3.75rem;
}
@media (max-width: 80rem) {
  .contacts-block__body {
    gap: 2.5rem;
  }
}
@media (max-width: 48rem) {
  .contacts-block__body {
    flex-direction: column;
    gap: 0;
  }
}
.contacts-block__phones-wrapper {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(2, 1fr);
  grid-row-gap: 2.5rem;
  grid-column-gap: 3.75rem;
}
@media (max-width: 80rem) {
  .contacts-block__phones-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 1.875rem;
  }
}
@media (max-width: 48rem) {
  .contacts-block__phones-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row-gap: 1.875rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-border);
  }
}
.contacts-block__address-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 2.5rem;
  width: 100%;
  max-width: 21.25rem;
}
@media (max-width: 48rem) {
  .contacts-block__address-wrapper {
    padding-top: 2.5rem;
    gap: 1.875rem;
    padding-left: 0;
    max-width: 100%;
  }
}

.brand-block {
  padding-block: 12.5rem;
  border-bottom: 1px solid var(--gray-border);
}
@media (max-width: 120rem) {
  .brand-block {
    padding-block: 7.5rem;
  }
}
@media (max-width: 90rem) {
  .brand-block {
    padding-block: 5rem;
  }
}
@media (max-width: 80rem) {
  .brand-block {
    padding-block: 3.75rem;
  }
}
.brand-block__card {
  width: 100%;
}
.brand-block__card img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
 /* filter: grayscale(100%);*/
}
@media (hover: hover) {
  .brand-block__card:hover img {
    filter: none;
  }
}
@media (hover: none) {
  .brand-block__card:active img {
    filter: none;
  }
}

.brand-slider {
  width: 100%;
  overflow: hidden;
}

.copyright {
  padding-block: 5rem 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media (max-width: 120rem) {
  .copyright {
    padding-block: 3.75rem 2.5rem;
  }
}
.copyright__text {
  flex-shrink: 0;
}
.copyright__text_orange {
  color: var(--sparkit-color);
}
.copyright__sign {
  flex-shrink: 0;
}

.promo-block {
  overflow: hidden;
}
.promo-block__card {
  border-radius: 0.25rem;
  overflow: hidden;
}
.promo-block__card img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100px;
  display: block;
  transition: transform 0.3s ease;
}
.promo-block__card img:hover {
  transform: scale(1.05);
}
.promo-slider .swiper-button-next,
.promo-slider .swiper-button-prev {
  color: var(--blue);
}
.promo-slider .swiper-button-next::after,
.promo-slider .swiper-button-prev::after {
  font-size: 1.5rem;
}
.promo-slider .swiper-button-next:hover,
.promo-slider .swiper-button-prev:hover {
  opacity: 0.8;
}
.promo-slider .swiper-pagination {
  bottom: -1.875rem;
}
.promo-slider .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--gray);
  opacity: 1;
}
.promo-slider .swiper-pagination-bullet-active {
  background: var(--blue);
}
.promo-slider .swiper-slide {
  height: auto;
}

.news-page-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto 1fr;
  grid-gap: 1.25rem;
}
@media (max-width: 80rem) {
  .news-page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 48rem) {
  .news-page-content {
    grid-template-columns: 1fr;
  }
}

.contacts-page {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.contacts-page__item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.contacts-page__combined-item {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media (min-width: 80.0625rem) {
  .contacts-page__combined-item {
    flex-direction: row;
    gap: 3.75rem;
  }
}

.paid-services {
  border-block: 1px solid var(--gray-border);
}

.useful-page-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto 1fr;
  grid-gap: 1.25rem;
}
@media (max-width: 80rem) {
  .useful-page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 48rem) {
  .useful-page-content {
    grid-template-columns: 1fr;
  }
}

.notranslate img {
  display: none;
}

body {
  overflow-y: auto;
}
body::-webkit-scrollbar {
  width: 0.25rem;
  height: 0.25rem;
}
body::-webkit-scrollbar-track {
  background-color: var(--gray-border-light);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--brand-color);
  border-radius: 0.625rem;
}
@media (hover: hover) {
  body::-webkit-scrollbar-thumb:hover {
    background-color: var(--blue-hover);
  }
}
@media (hover: none) {
  body::-webkit-scrollbar-thumb:active {
    background-color: var(--blue-hover);
  }
}

.medicine {
  margin-top: 40px;
  background: #D8E1EE;
  padding: 50px 0px;
}
@media (min-width: 1280px) {
  .medicine {
    margin-top: 80px;
    padding: 80px 0px;
  }
}
@media (min-width: 1440px) {
  .medicine {
    padding: 100px 0px;
  }
}
.medicine .medicine__title {
  color: var(--main-color_indigo, #04528F);
  font-family: "Inter Tight";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .medicine .medicine__title {
    margin-bottom: 50px;
  }
}
@media (min-width: 1280px) {
  .medicine .medicine__title {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .medicine .medicine__title {
    font-size: 52px;
    margin-bottom: 60px;
  }
}
.medicine .medicine__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) {
  .medicine .medicine__list {
    gap: 0px;
  }
}
.medicine .medicine__item {
  background: #FFF;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
@media (min-width: 1280px) {
  .medicine .medicine__item {
    padding: 40px;
  }
}
.medicine .medicine__item-img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .medicine .medicine__item-img {
    width: 100px;
    height: 100px;
  }
}
@media (min-width: 1440px) {
  .medicine .medicine__item-img {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
  }
}
.medicine .medicine__item-title {
  color: var(--black, #222);
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 38.4px */
  font-size: 18px;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .medicine .medicine__item-title {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .medicine .medicine__item-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.medicine .medicine__item-subtitle {
  color: #595959;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .medicine .medicine__item-subtitle {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .medicine .medicine__item-subtitle {
    margin-bottom: 32px;
  }
}
.medicine .medicine__item-more {
  margin-top: auto;
}
@media (min-width: 1440px) {
  .medicine .medicine__item-more {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .medicine .medicine__item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .medicine .medicine__item:nth-child(2n) {
    margin-right: 0px;
  }
}
@media (min-width: 1280px) {
  .medicine .medicine__item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .medicine .medicine__item:nth-child(2n) {
    margin-right: 20px;
  }
  .medicine .medicine__item:nth-child(3n) {
    margin-right: 0px;
  }
  .medicine .medicine__item:nth-child(4n) {
    margin-right: 20px;
    width: calc((100% - 20px) / 2);
  }
  .medicine .medicine__item:nth-child(5n) {
    width: calc((100% - 20px) / 2);
    margin-right: 0px;
  }
}

.cards-service {
  padding: 40px 0px;
}
@media (min-width: 1280px) {
  .cards-service {
    padding: 80px 0px;
  }
}
@media (min-width: 1440px) {
  .cards-service {
    padding: 100px 0px;
  }
}
.cards-service__head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 1280px) {
  .cards-service__head {
    margin-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  .cards-service__head {
    margin-bottom: 60px;
  }
}
.cards-service__title {
  color: #222;
  font-family: "Inter Tight";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (min-width: 1280px) {
  .cards-service__title {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .cards-service__title {
    font-size: 52px;
  }
}
@media (min-width: 1440px) {
  .cards-service__link {
    font-size: 18px;
  }
}
.cards-service .services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) {
  .cards-service .services {
    gap: 0px;
  }
}
.cards-service .services .service {
  background: var(--bg, #F6F6F6);
  width: 100%;
}
.cards-service .services .service__img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1440px) {
  .cards-service .services .service__img {
    height: 300px;
  }
}
.cards-service .services .service__title {
  padding: 30px 20px 20px 20px;
  color: var(--black, #222);
  font-family: "Inter Tight";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (min-width: 768px) {
  .cards-service .services .service__title {
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  .cards-service .services .service__title {
    font-size: 24px;
  }
}
.cards-service .services .service__link {
  display: flex;
  padding: 0px 20px 30px 20px;
}
@media (min-width: 768px) {
  .cards-service .services .service {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .cards-service .services .service:nth-child(2n) {
    margin-right: 0px;
  }
}
@media (min-width: 1280px) {
  .cards-service .services .service {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .cards-service .services .service:nth-child(2n) {
    margin-right: 20px;
  }
  .cards-service .services .service:nth-child(3n) {
    margin-right: 0px;
  }
}

.feedback-block {
  background: #EBF3FF;
  padding: 40px 0px;
}
@media (min-width: 1280px) {
  .feedback-block {
    padding: 80px 0px;
  }
}
@media (min-width: 1440px) {
  .feedback-block {
    padding: 100px 0px;
  }
}
.feedback-block__title {
  color: #04528F;
  font-family: "Inter Tight";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 40px;
}
@media (min-width: 1280px) {
  .feedback-block__title {
    font-size: 32px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  .feedback-block__title {
    font-size: 52px;
    margin-bottom: 60px;
  }
}
.feedback-block .feedbacks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 768px) {
  .feedback-block .feedbacks {
    gap: 0px;
  }
}
.feedback-block .feedbacks .feedback {
  background: #FFF;
  padding: 20px;
  width: 100%;
}
.feedback-block .feedbacks .feedback:nth-child(2n) .feedback__img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .feedback-block .feedbacks .feedback {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .feedback-block .feedbacks .feedback:nth-child(2n) {
    margin-right: 0px;
  }
}
@media (min-width: 1440px) {
  .feedback-block .feedbacks .feedback {
    padding: 40px;
    width: calc((100% - 60px) / 3);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .feedback-block .feedbacks .feedback:nth-child(2n) {
    margin-right: 20px;
  }
  .feedback-block .feedbacks .feedback:nth-child(3n) {
    margin-right: 0px;
  }
}
.feedback-block .feedbacks .feedback__img {
  width: 100%;
  margin-bottom: 20px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .feedback-block .feedbacks .feedback__img {
    height: 350px;
  }
}
@media (min-width: 1280px) {
  .feedback-block .feedbacks .feedback__img {
    height: 350px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1440px) {
  .feedback-block .feedbacks .feedback__img {
    height: 500px;
  }
}
.feedback-block .feedbacks .feedback__title {
  color: #222;
  font-family: "Inter Tight";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}
@media (min-width: 1280px) {
  .feedback-block .feedbacks .feedback__title {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .feedback-block .feedbacks .feedback__title {
    font-size: 32px;
  }
}
.feedback-block .feedbacks .feedback__link {
  display: flex;
}
@media (min-width: 1440px) {
  .feedback-block .feedbacks .feedback__link {
    font-size: 18px;
  }
}
.feedback-block .feedback-form h5 {
  color: #222;
  font-family: "Inter Tight";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 20px;
}
.feedback-block .feedback-form p {
  color: var(--black, #222);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 40px;
}
.feedback-block .feedback-form p:last-child {
  margin-bottom: 0px;
}
.feedback-block .feedback-form label {
  color: #222;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.feedback-block .feedback-form input,
.feedback-block .feedback-form textarea {
  color: #222;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  padding: 14px 0px;
  border: none;
  border-bottom: 1px solid #B4BFD0;
}
.feedback-block .feedback-form input::-moz-placeholder, .feedback-block .feedback-form textarea::-moz-placeholder {
  color: var(--gray, #595959);
}
.feedback-block .feedback-form input::placeholder,
.feedback-block .feedback-form textarea::placeholder {
  color: var(--gray, #595959);
}
.feedback-block .feedback-form input:focus, .feedback-block .feedback-form input:active,
.feedback-block .feedback-form textarea:focus,
.feedback-block .feedback-form textarea:active {
  outline: none;
}
.feedback-block .feedback-form textarea {
  height: 100px;
  max-height: 100px;
  resize: none;
  min-height: 100px;
}
.feedback-block .feedback-form input[type=submit] {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: 100%;
  background-color: #04528F;
  display: flex;
  height: 52px;
  padding: 12px 0px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin-top: 40px;
  margin-bottom: 30px;
}
.promo-block .promo-slider {
  position: relative;
}
.promo-block__nav-prev, .promo-block__nav-next {
  opacity: 0.4;
  width: 40px;
  height: 40px;
  background: var(--light-gray, #F2F2F2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-block__nav-prev:after, .promo-block__nav-next:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #222;
  border-right: 2px solid #222;
  transform: rotate(-45deg);
}
.promo-block__nav-prev:hover, .promo-block__nav-next:hover {
  opacity: 1;
}
.promo-block__nav-prev {
  left: 0;
  transform: rotate(180deg);
}
.promo-block__nav-next {
  right: 0;
}/*# sourceMappingURL=style.css.map */