@charset "UTF-8";

/*-------------- Fonts -----------------*/

/*---------- Reset styles --------------*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 100%;
  font-size: 62.5%;
  font-weight: 400;
}

body {
  color: #00244f;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: inherit;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

/*-------------- Body ------------------*/

body {
  font-size: 1.6rem;
}

body._lock {
  overflow: hidden;
}

/*------------- Wrapper ----------------*/

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper > main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/*------------ Container ---------------*/

[class*=__container] {
  max-width: 120rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/*--------------- ibg ------------------*/

[class*=_ibg] {
  position: relative;
}

[class*=_ibg] img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*-------------- Forms ------------------*/

/*--------------- UI -------------------*/

body._touch .menu__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body._touch .menu__list > li._active {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

body._touch .menu__list > li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: all;
}

body._touch .menu__list > li._active .menu__arrow {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

body._touch .menu__link {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

body._touch .menu__arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 1rem solid #fff;
  margin-left: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

body._touch .menu__arrow_footer {
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 1rem solid #00244f;
  margin-left: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.menu__icon {
  display: none;
}

.menu__icon._active span {
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
}

.menu__icon._active::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.menu__icon._active::after {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-column-gap: 1.6rem;
  -moz-column-gap: 1.6rem;
  column-gap: 1.6rem;
  white-space: nowrap;
}

.menu__list > li {
  position: relative;
  font-weight: 500;
}

.menu__list > li::after {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  height: 0.2rem;
  width: 0;
  background-color: #00244f;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__list > li._active .menu__sub-list {
  display: block;
}

.menu__link {
  cursor: pointer;
  font-size: 1.8rem;
}

.menu__sub-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #00244f;
  padding: 1.5rem;
  min-width: 29rem;
  z-index: 20;
}

.menu__sub-list > li:not(:last-child) {
  margin-bottom: 10px;
}

.menu__sub-link {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
}

.menu__arrow {
  display: none;
}

.menu__appointment {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 23rem;
  min-height: 4rem;
  padding: 0 0.8rem;
  text-align: center;
  color: #00244f;
  background-color: transparent;
  border: 0.1rem solid #00244f;
  border-radius: 1rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 2;
}

.menu__appointment span {
  display: none;
}

.menu__low-vision {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 4rem;
  flex: 0 0 4rem;
  height: 4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #000000;
  z-index: 2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.title {
  font-weight: 700;
}

.title_h1 {
  font-size: 3.6rem;
}

.title_h2 {
  text-transform: uppercase;
  font-size: 2.8rem;
}

.title_h3 {
  font-size: 2.4rem;
}

.title_h4 {
  text-transform: uppercase;
  font-size: 2.2rem;
}

.title_h5 {
  font-size: 2rem;
}

.title_h6 {
  font-size: 1.8rem;
}

#map {
  width: 50rem;
  height: 50rem;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.accordion__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100%;
  overflow: hidden;
}

.accordion__title.accordion__title:has(> .accordion__button[aria-expanded=true]) + .accordion__content .accordion__inner_grid {
  padding: 1rem;
}

.accordion__button {
  min-height: 6.2rem;
  border: 0.1rem solid #00244f;
  font-size: 1.8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: #00244f;
  background: transparent;
}

.accordion__button[aria-expanded=true] {
  border-radius: 1rem 1rem 0rem 0rem;
}

.accordion__button[aria-expanded=true] span {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.accordion__button[aria-expanded=true] span::before,
.accordion__button[aria-expanded=true] span::after {
  background-color: #fff;
}

.accordion__button[aria-expanded=false] {
  border-radius: 1rem;
}

.accordion__button span {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
  width: 2rem;
  height: 2rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accordion__button span::before,
.accordion__button span::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.4rem;
  background-color: #00244f;
}

.accordion__button span::before {
  top: 0.8rem;
  left: 0;
}

.accordion__button span::after {
  left: 0;
  bottom: 0.8rem;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.accordion__button:focus-visible {
  outline: 0.2rem solid red;
  outline-offset: 0.2rem;
}

.accordion__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.25s ease, padding 0.2s ease, border-color 0.2s ease;
  transition: grid-template-rows 0.25s ease, padding 0.2s ease, border-color 0.2s ease;
  transition: grid-template-rows 0.25s ease, padding 0.2s ease, border-color 0.2s ease, -ms-grid-rows 0.25s ease;
  border: 0.1rem solid transparent;
  border-radius: 0 0 1rem 1rem;
  padding: 0;
  overflow: hidden;
  margin: 0 0 1.2rem 0;
}

.accordion__title:has(> .accordion__button[aria-expanded=true]) + .accordion__content {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  border-color: #00244f;
  padding: 1.2rem 1.2rem 1.4rem;
  border-top: none;
}

.accordion__inner {
  min-height: 0;
  overflow: hidden;
}

.accordion__inner_grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 2rem;
}

.accordion__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 36, 79, 0.25);
  box-shadow: 0px 0px 8px 0px rgba(0, 36, 79, 0.25);
  border-radius: 1rem;
  min-height: 14rem;
  line-height: 120%;
}

.accordion__card img {
  max-width: 4.8rem;
  height: auto;
  display: none;
}

.accordion__department {
  /* додаткові стилі за потреби */
}

.accordion__button[aria-expanded=true] {
  background: #00244f;
  color: #fff;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion__button[aria-expanded=true] ~ .accordion__content {
  padding: 1rem;
}

.article {
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 36, 79, 0.25);
  box-shadow: 0px 0px 8px 0px rgba(0, 36, 79, 0.25);
  border-radius: 1rem;
  overflow: hidden;
}

.article__top {
  overflow: hidden;
}

.article__image {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.article__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 2rem 3rem 2rem;
}

.article__text {
  line-height: 120%;
}

.article-main__body h5 {
  font-size: 2rem;
}

.article-main__body h6 {
  font-size: 1.8rem;
}

.article-main__body :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 2rem;
  font-weight: 700;
}

.article-main__body p {
  margin-bottom: 1.6rem;
}

.article-main__body ul {
  margin-bottom: 1.6rem;
}

.article-main__body ul li {
  list-style: disc;
  margin-left: 1em;
}

.article-main__body ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.8rem;
}

.pagination__icon {
  font-size: 2.4rem;
}

.pagination__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0.1rem solid #00244f;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagination__item_active {
  background-color: #00244f;
  color: #fff;
}

.pagination__number {
  font-size: 1.8rem;
}

.content-page {
  padding: 2rem 0rem 3rem 0rem;
  font-size: 1.8rem;
  line-height: 130%;
}

.content-page_article p {
  margin-bottom: 0.8rem;
}

.content-page_article ul li {
  list-style: disc;
  margin-left: 1em;
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.content-page_article ul li:not(:last-child) {
  margin-bottom: 1rem;
}

[role=tablist] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

[aria-selected=true] {
  color: #00244f;
  background-color: lightgrey;
}

/*------------- Header ------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9rem;
  backdrop-filter: blur(1rem);
  background: rgba(255, 255, 255, 0.6);
  z-index: 10;
  -webkit-transition: all 0.6s ease 0.2s;
  transition: all 0.6s ease 0.2s;
}

.header._scroll {
  height: 7rem;
}

.header._scroll .header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5rem;
  flex: 0 0 5rem;
  height: 5rem;
}

.header._scroll .menu__body::before {
  height: 7rem;
}

.header__body {
  padding: 0.8rem 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 7rem;
  flex: 0 0 7rem;
  height: 7rem;
  -webkit-transition: all 0.6s ease 0.2s;
  transition: all 0.6s ease 0.2s;
  z-index: 2;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.footer__content {
  padding: 3rem 0rem;
  border-top: 0.1rem solid #e5e4e4;
}

.footer__content_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 4rem;
}

.footer__logo {
  height: 7rem;
  width: 7rem;
}

.footer__copyright {
  font-weight: 500;
}

.list-footer__title {
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.list-footer__sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.list-footer__sub-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body._pc li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body._pc .list-footer__title {
  margin-bottom: 1.4rem;
}

body._touch .footer__links {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

body._touch .list-footer__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}

body._touch .list-footer__title._active .menu__arrow_footer {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

body._touch .list-footer__sub-list {
  display: none;
}

body._touch .list-footer__sub-list li:not(:last-child) {
  margin-bottom: 1.4rem;
  line-height: 120%;
}

body._touch .list-footer__sub-list._active {
  display: block;
}

/*-------------- Main ------------------*/

.main {
  padding-top: 9rem;
}

.main__departments {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.main__news {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.main__faq {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.main__privacy-policy {
  padding-bottom: 6rem;
}

.hero-main__title {
  position: absolute;
  padding-top: 50%;
  left: 20%;
  -webkit-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
  color: #fff;
  line-height: 150%;
  z-index: 5;
}

.hero-main__body {
  padding-bottom: 52.0833333333%;
}

.departments-main__title {
  text-align: center;
  margin-bottom: 3rem;
}

.addresses-main__title {
  text-align: center;
  margin-bottom: 4rem;
}

.addresses-main__map {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 5rem;
  z-index: 1;
}

.map__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  max-height: 50rem;
  overflow: auto;
  padding: 1rem;
}

.buttons-map__button {
  text-align: left;
  color: #00244f;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 0.8rem 0 rgba(0, 36, 79, 0.25);
  box-shadow: 0 0 0.8rem 0 rgba(0, 36, 79, 0.25);
  background-color: rgb(255, 255, 255);
  padding: 2rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.buttons-map__button._active {
  background-color: rgba(0, 36, 79, 0.8);
  color: #fff;
}

.buttons-map__title {
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.news-main__title {
  text-align: center;
  margin-bottom: 4rem;
}

.news-main__content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  margin-bottom: 5rem;
  gap: 4rem;
}

.news-main__footer {
  text-align: center;
}

.news-main__button {
  font-size: 1.8rem;
  font-weight: 500;
  color: #00244f;
  border: 0.1rem solid #00244f;
  min-width: 18rem;
  min-height: 4rem;
  border-radius: 1rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq-main__title {
  margin-bottom: 4rem;
  text-align: center;
}

.faq-main__accordion {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
}

.accordion__text {
  font-size: 1.8rem;
  line-height: 120%;
}

.news-main__articles {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.article-main__header {
  background-color: #dfdfdf;
  margin-bottom: 5rem;
}

.article-main__header__body {
  padding: 2rem;
}

.article-main .header-article__container {
  padding: 5rem;
}

.article-main .header-article__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.article-main .header-article__date {
  margin-bottom: 2rem;
}

.article-main .header-article__title {
  margin-bottom: 3rem;
}

.article-main .header-article__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.article-main .header-article__image {
  width: 100%;
  height: 33rem;
  border-radius: 1rem;
  overflow: hidden;
}

.article-main .article-author__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 5rem;
  flex: 0 0 5rem;
  height: 6rem;
  overflow: hidden;
}

.article-main .privacy-policy__title_main {
  margin-bottom: 3rem;
  text-align: center;
}

.article-main .privacy-policy__title_secondary {
  margin-bottom: 1rem;
}

.article-main .privacy-policy__text {
  line-height: 120%;
  margin-bottom: 2rem;
}

.contacts-main__title {
  margin-bottom: 0.4rem;
}

.contacts-main__title_center {
  text-align: center;
}

.contacts-main__content ul {
  margin-bottom: 2rem;
}

.contacts-main__content ul li:not(:last-child) {
  margin-bottom: 0.8rem;
}

.contacts-main__email {
  display: inline-block;
  margin-bottom: 2rem;
}

.contacts-main__form {
  max-width: 50rem;
  margin: 0 auto;
}

.contacts-main .form-contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
  padding: 1.6rem 0rem 1rem 0rem;
}

.contacts-main .form-contacts__item {
  padding: 1.6rem;
  border: 0.1rem solid #00244f;
  border-radius: 1rem;
}

.contacts-main .form-contacts__input {
  font-size: 1.6rem;
  width: 100%;
}

.contacts-main .form-contacts__textarea {
  width: 100%;
  font-size: 1.8rem;
  resize: vertical;
}

.contacts-main .form-contacts__checkbox {
  margin-bottom: 3rem;
}

.contacts-main .form-contacts__checkbox a {
  border-bottom: 0.15rem solid #00244f;
}

.contacts-main .form-contacts__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 100%;
  min-height: 6rem;
  color: #00244f;
  border: 0.1rem solid #00244f;
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.public-main__title {
  margin-bottom: 3rem;
}

.tabs__list li {
  padding: 2rem;
  border-radius: 1rem 1rem 0 0;
}

.tabs__body {
  background-color: lightgray;
  padding: 10rem;
}

@media (min-width: 29.998em) {
  .menu__appointment span {
    display: block;
  }
}

@media (min-width: 47.998em) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .footer__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7rem;
    flex: 0 0 7rem;
    width: auto;
  }
}

@media (min-width: 61.998em) {
  body._touch .menu__arrow {
    border-top: 10px solid #00244f;
  }

  .menu__list > li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.6rem 0rem;
  }

  .menu__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .menu__sub-list {
    -webkit-transform: translate(0px, 10%);
    transform: translate(0px, 10%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .accordion__inner_grid {
    text-align: right;
  }

  .accordion__card img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .accordion__card {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 3rem;
  }

  .addresses-main__map {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .faq-main__accordion {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .article-main .header-article__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .article-main .header-article__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 75rem) {
  .menu__link {
    font-size: calc(2.4rem + -0.6 * (100vw - 37.5rem) / 82.5);
  }

  .menu__sub-link {
    font-size: calc(2rem + -0.4 * (100vw - 37.5rem) / 82.5);
  }

  .menu__appointment {
    font-size: calc(1.5rem + 0.1 * (100vw - 37.5rem) / 82.5);
  }

  .menu__appointment {
    min-width: calc(15rem + 8 * (100vw - 37.5rem) / 82.5);
  }

  .title_h3 {
    font-size: calc(1.8rem + 0.6 * (100vw - 37.5rem) / 82.5);
  }

  .title_h6 {
    font-size: calc(1.6rem + 0.2 * (100vw - 37.5rem) / 82.5);
  }

  #map {
    width: calc(35rem + 15 * (100vw - 37.5rem) / 82.5);
  }

  #map {
    height: calc(35rem + 15 * (100vw - 37.5rem) / 82.5);
  }

  .accordion__inner_grid {
    gap: calc(1rem + 1 * (100vw - 37.5rem) / 82.5);
  }

  .accordion__card {
    min-height: calc(13rem + 1 * (100vw - 37.5rem) / 82.5);
  }

  .article-main__body h6 {
    font-size: calc(1.6rem + 0.2 * (100vw - 37.5rem) / 82.5);
  }

  .header__content {
    gap: calc(1rem + 1 * (100vw - 37.5rem) / 82.5);
  }

  .main__departments {
    padding-top: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .main__departments {
    padding-bottom: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .main__news {
    padding-top: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .main__news {
    padding-bottom: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .main__faq {
    padding-top: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .main__faq {
    padding-bottom: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .main__privacy-policy {
    padding-bottom: calc(2rem + 4 * (100vw - 37.5rem) / 82.5);
  }

  .addresses-main__title {
    margin-bottom: calc(2rem + 2 * (100vw - 37.5rem) / 82.5);
  }

  .addresses-main__map {
    gap: calc(2rem + 3 * (100vw - 37.5rem) / 82.5);
  }

  .map__buttons {
    gap: calc(1rem + 1 * (100vw - 37.5rem) / 82.5);
  }

  .buttons-map__button {
    padding: calc(1.6rem + 0.4 * (100vw - 37.5rem) / 82.5);
  }

  .buttons-map__title {
    margin-bottom: calc(0.4rem + 1.2 * (100vw - 37.5rem) / 82.5);
  }

  .news-main__title {
    margin-bottom: calc(2rem + 2 * (100vw - 37.5rem) / 82.5);
  }

  .news-main__articles {
    gap: calc(1.6rem + 2.4 * (100vw - 37.5rem) / 82.5);
  }

  .news-main__articles {
    margin-bottom: calc(2rem + 2 * (100vw - 37.5rem) / 82.5);
  }

  .article-main__header {
    margin-bottom: calc(3rem + 2 * (100vw - 37.5rem) / 82.5);
  }

  .article-main .header-article__container {
    padding: calc(1rem + 4 * (100vw - 37.5rem) / 82.5);
  }

  .article-main .header-article__title {
    margin-bottom: calc(2rem + 1 * (100vw - 37.5rem) / 82.5);
  }

  .article-main .header-article__image {
    height: calc(20rem + 13 * (100vw - 37.5rem) / 82.5);
  }
}

@media (max-width: 61.998em) {
  .menu__icon {
    display: block;
    width: 30px;
    height: 18px;
    position: relative;
    z-index: 5;
    cursor: pointer;
  }

  .menu__icon::before,
  .menu__icon::after {
    content: "";
  }

  .menu__icon span,
  .menu__icon::before,
  .menu__icon::after {
    position: absolute;
    left: 0;
    height: 18%;
    width: 100%;
    background-color: #00244f;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .menu__icon::before {
    top: 0;
  }

  .menu__icon::after {
    bottom: 0;
  }

  .menu__icon span {
    top: 50%;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 12rem 1.5rem 1.5rem 3rem;
    overflow: auto;
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
  }

  .menu__body._active {
    left: 0;
  }

  .menu__body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 9rem;
    background-color: #fff;
    z-index: 21;
  }

  .menu__list > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .menu__link {
    color: #fff;
  }

  .menu__sub-list > li {
    color: #00244f;
  }

  .menu__sub-list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    position: relative;
    background-color: #fff;
    padding: 2rem;
    margin-top: 2rem;
    display: none;
  }

  .menu__sub-link {
    color: #00244f;
  }

  .map__buttons {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .article-main .header-article__author {
    margin-bottom: 3rem;
  }
}

@media (max-width: 61.998em) and (max-width: 75rem) {
  .article-main .header-article__author {
    margin-bottom: calc(2rem + 1 * (100vw - 37.5rem) / 82.5);
  }
}

@media (any-hover: hover) {
  body._pc .menu__list > li:hover .menu__sub-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  .menu__list > li:hover::after {
    width: 100%;
  }

  .menu__sub-link:hover {
    text-decoration: underline;
  }

  .menu__appointment:hover {
    color: #fff;
    background-color: #00244f;
  }

  .article:hover .card-news__image {
    -webkit-transform: scale(110%);
    transform: scale(110%);
  }

  .pagination__item:hover {
    background-color: #00244f;
    color: #fff;
  }

  .buttons-map__button:hover {
    background-color: rgba(0, 36, 79, 0.8);
    color: #fff;
  }

  .news-main__button:hover {
    border: 0.1rem solid transparent;
    background-color: #00244f;
    color: #fff;
  }

  .contacts-main .form-contacts__submit:hover {
    color: #fff;
    border: 0.1rem solid transparent;
    background-color: #00244f;
  }
}

@media (prefers-reduced-motion: reduce) {
  .accordion__content {
    -webkit-transition: none;
    transition: none;
  }
}