.header .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__link {
  text-decoration: none;
}

.header-top {
  padding: 10px 0;
  background-color: #ffffff;
}

.logo {
  display: flex;
  align-items: center;
}
.logo .logo__img {
  object-fit: contain;
}
.logo .logo-title {
  font-family: "GrapalatBold", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 30px;
  color: #212121;
}
.logo .logo-title .logo-title__theme_reg {
  font-family: "GrapalatRegular", sans-serif;
}

.search .search__input {
  border-radius: 4px 0 0 4px;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-right: 0;
  outline: none;
  font-size: 16px;
}
.search .search__button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0 4px 4px 0;
  padding: 6px 10px 5px 0;
  border-left: 0;
  outline: none;
  cursor: pointer;
}

.mobile-search {
  display: none;
}

.input-group {
  display: flex;
  align-items: center;
}

.search-icon .search-icon__img {
  width: 16px;
  height: 16px;
}

.navbar {
  background-color: #F6F6F6;
}
.navbar .navbar__container {
  display: flex;
  justify-content: space-between;
}
.navbar .navbar__list {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.navbar .navbar__item {
  font-family: "GrapalatRegular", sans-serif;
  font-size: 14px;
  cursor: pointer;
  color: #666666;
  margin-right: 50px;
  padding: 10px 0;
  text-transform: uppercase;
}
.navbar .navbar__item:hover .navbar-menu {
  display: block;
}
.navbar .navbar__item:hover {
  color: #212121;
}
.navbar .navbar__item-ex {
  text-decoration: none;
  color: #666666;
}
.navbar .navbar__item-ex:hover {
  color: #212121;
}

.navbar-menu {
  position: absolute;
  display: none;
  list-style-type: none;
  z-index: 2;
  font-family: "GrapalatRegular", sans-serif;
  font-size: 14px;
  line-height: 25px;
  margin-top: 10px;
  padding: 10px 20px 10px;
  background-color: #F6F6F6;
  box-shadow: 2px 3px 6px -2px #ccc;
}
.navbar-menu .navbar-menu__link {
  text-decoration: none;
  text-transform: none;
  color: #212121;
}
.navbar-menu .navbar-menu__link:hover {
  text-decoration: underline;
}

.navbar-inner {
  position: absolute;
  height: 100%;
  width: 80%;
  top: 0;
  left: -85%;
  background-color: #fff;
  z-index: 1;
  overflow: auto;
  box-shadow: 1px 1px 13px 2px #606060;
  transition: ease-in-out 0.3s;
  display: none;
}
.navbar-inner.navbar-inner_opened {
  left: 0;
}
.navbar-inner .navbar-inner__menu {
  position: relative;
  display: block;
  max-width: 195px;
}

.linear-flag {
  position: relative;
  height: 5px;
}
.linear-flag .linear-flag__img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-switcher {
  display: flex;
}
.lang-switcher .bootstrap-select div.dropdown-menu {
  position: absolute;
  width: 65px;
  height: 72px;
  display: none;
  z-index: 2;
  margin-top: 10px;
  padding: 10px;
  background-color: #dddddd5e;
  box-shadow: 2px 3px 6px -2px #ccc;
}
.lang-switcher .bootstrap-select .dropdown-menu.open {
  display: block;
}
.lang-switcher .bootstrap-select .dropdown-menu.inner {
  margin: 0;
}
.lang-switcher .bootstrap-select .dropdown-menu.inner li a {
  font-family: "GrapalatRegular", sans-serif;
  font-size: 14px;
  outline: none;
}
.lang-switcher .flag-icon {
  width: 22px;
  height: 17px;
}
.lang-switcher .button {
  margin: 4px 0 4px 4px;
}
.lang-switcher .dropdown-menu {
  list-style-type: none;
}
.lang-switcher .dropdown-menu ul {
  padding: 0;
}
.lang-switcher li {
  cursor: pointer;
  outline: none;
}
.lang-switcher select {
  display: none;
}
.lang-switcher button {
  background: transparent;
  padding: 11px 0 0;
  border: 0;
  cursor: pointer;
  outline: none;
}
.lang-switcher button span {
  font-family: "GrapalatRegular", sans-serif;
}

.hamburger {
  position: relative;
  width: 36px;
  height: 55px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
}
.hamburger .hamburger__item {
  position: absolute;
  height: 3px;
  width: 36px;
  background: #212121;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger .hamburger__item:nth-child(1) {
  top: 18px;
}
.hamburger .hamburger__item:nth-child(2) {
  top: 27px;
}
.hamburger .hamburger__item:nth-child(3) {
  top: 36px;
}

.hamburger_toggled .hamburger__item:nth-child(1) {
  top: 28px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.hamburger_toggled .hamburger__item:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hamburger_toggled .hamburger__item:nth-child(3) {
  top: 28px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.slider-section {
  margin-top: 90px;
}

.slider {
  position: relative;
  max-height: 420px;
}
.slider .slider__mask-left {
  left: 0;
}
.slider .slider__mask-right {
  right: 0;
}
.slider .slider__wrapper {
  display: flex;
  height: 100%;
}
.slider .slider__wrapper .slick-list {
  padding-bottom: 10px !important;
}

.mask {
  position: absolute;
  top: 0;
  min-height: 420px;
  height: 440px;
  width: 190px;
  background-color: #fff;
  z-index: 1;
  opacity: 0.5;
}

.modal {
  position: fixed;
  top: 0;
  display: none;
  z-index: 1;
  padding: 100px 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.modal .modal__close-btn {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}
.modal .modal__img {
  margin: auto;
  display: block;
  width: 600px;
  min-width: 400px;
  max-width: 600px;
  min-height: 320px;
  max-height: 355px;
  object-fit: cover;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.modal_opened {
  display: block;
}

.modal-gallery {
  max-width: 880px;
  margin: 30px auto 0;
}
.modal-gallery .single-img {
  min-width: 105px;
  max-width: 115px;
  margin: 0 15px 10px;
}
.modal-gallery .single-img .single-img__item {
  width: 115px;
  height: 95px;
}
.modal-gallery .modal-gallery__row {
  flex-wrap: wrap;
  justify-content: center;
}

.sc-modal--gallery {
  position: absolute;
  bottom: 10%;
  padding-top: 50px;
}
.sc-modal--gallery .sc-modal--gallery---img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 0 5px;
}
.sc-modal--gallery .sc-modal--gallery---img:hover {
  opacity: 0.7;
}

.latest-news {
  position: relative;
  display: flex !important;
  box-shadow: 2px 2px 4px 0 #CACACA;
  margin: 0 20px;
  outline: none;
  height: 430px;
}
.latest-news .latest-news__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 100%;
}
.latest-news .latest-news__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.latest-news .latest-news__info {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 95%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  padding: 5px 30px 30px 25px;
}
.latest-news .latest-news__title {
  font-family: "GrapalatBold", sans-serif;
  margin-top: 0;
}
.latest-news .latest-news__desc {
  font-family: "GrapalatRegular", sans-serif;
  color: #737373;
}

.bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  margin-bottom: 15px;
}
.bottom-info .bottom-info__date {
  font-size: 13px;
  color: #737373;
}
.bottom-info .bottom-info__src {
  font-family: "GrapalatRegular", sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: #337ab7;
}
.bottom-info .bottom-info__src:hover {
  text-decoration: underline;
}
.bottom-info .bottom-info__btn {
  background-color: #212121;
  color: #fff;
  margin: auto 0 5px;
}

.default-info .default-info__title {
  color: #212121;
}

.news-card {
  display: flex;
  height: 210px;
  min-height: 150px;
  max-height: 210px;
  margin: 0 10px 20px;
  box-shadow: 2px 2px 4px 0 #CACACA;
  font-family: "GrapalatBold", sans-serif;
}
.news-card .news-card__img {
  width: 100%;
  min-width: 150px;
}
.news-card .news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card .news-card__info {
  display: flex;
  flex-direction: column;
  padding: 5px 10px 15px;
  width: 100%;
}
.news-card .news-card__title {
  font-size: 16px;
  color: #212121;
}
.news-card .news-card__title h4 {
  margin-top: 0;
}
.news-card .bottom-info {
  margin-bottom: 0;
}
.news-card .bottom-info .bottom-info__date {
  margin-bottom: 0;
}
.news-card .bottom-info .bottom-info__src {
  font-size: 12px;
  margin-top: auto;
}

.single-page .single-page__row {
  align-items: flex-start;
}

.single-img {
  width: 100%;
  min-width: 250px;
  max-width: 270px;
  max-height: 200px;
  margin: 0 15px;
}
.single-img:hover {
  transition: 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0.7;
}
.single-img .single-img__item {
  width: 100%;
  height: 320px;
  max-height: 320px;
  object-fit: cover;
}

.single-info {
  font-family: "GrapalatRegular", sans-serif;
  margin: 0 15px;
}
.single-info .single-info__title {
  margin: 10px 0;
  color: #212121;
  font-size: 24px;
}
.single-info .single-info__text {
  font-size: 16px;
  line-height: 24px;
}

.singlePage-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
  width: 100%;
  justify-content: center;
}
.singlePage-gallery .single-img {
  margin-bottom: 20px;
}

.history-text {
  font-family: "GrapalatRegular", sans-serif;
}
.history-text .history-text__prg {
  font-size: 16px;
  line-height: 24px;
  margin: 10px 0;
  color: #737373;
}

.history-images {
  margin: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
}
.history-images .history-img {
  position: relative;
  width: 48%;
  margin: 0 8px 15px;
}
.history-images .history-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.38);
  width: 100%;
  height: 100%;
}
.history-images .history-img .history-img__title {
  position: absolute;
  bottom: 25px;
  left: 25px;
  font-size: 28px;
  color: #ffffff;
  z-index: 2;
  margin: 0;
}
.history-images .history-img .history-img__item {
  width: 100%;
  height: 100%;
}

.session {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.session .news-card {
  max-width: 100%;
}
.session .news-card .news-card__img {
  max-width: 280px;
}
.session .news-card .news-card__title {
  text-transform: uppercase;
}
.session .session__link {
  text-decoration: none;
}

.sessions-section .form-control {
  border: 1px solid #0065B2;
  color: #0065B2;
  font-size: 16px;
  padding: 6px 0;
  width: 97px;
  font-family: "GrapalatRegular", sans-serif;
  float: right;
  background-image: none;
}
.sessions-section select {
  outline: 1px solid #0065B2;
  background-color: white;
}
.sessions-section .sessions-section__row-top {
  display: flex;
  align-items: center;
}
.sessions-section .sessions-section__row-bottom {
  margin-top: 50px;
  flex-direction: column;
}
.sessions-section .sessions-section__title {
  margin-bottom: 0;
}

.info-section .info-section__row {
  margin-top: 50px;
}

.law-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.law-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 15px 30px 15px 30px;
  box-shadow: 2px 2px 4px 0 #CACACA;
}
.law-item .law-item__info {
  display: flex;
  font-size: 16px;
  color: #212121;
}
.law-item .law-item__title {
  margin: 0 0 0 10px;
}

.download-set {
  display: flex;
  align-items: center;
}
.download-set .download-set__link {
  font-family: "GrapalatRegular", sans-serif;
  font-size: 12px;
  color: #0065B2;
  letter-spacing: 1px;
  margin-left: 10px;
  text-decoration: none;
}

.pressReleases-section h4 {
  text-transform: uppercase;
}

.members {
  font-family: "GrapalatBold", sans-serif;
}
.members .members__row {
  display: grid;
  grid-template: 1fr 1fr/1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.members .members__link {
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.members .members__link.members__link_big {
  grid-column: 1/3;
  grid-row: 1/3;
  max-width: initial;
}
.members .members__link.members__link_big .member__img {
  max-height: 415px;
  height: 415px;
}

.member {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.member .member__img {
  width: 100%;
  min-height: 150px;
  max-height: 165px;
  object-fit: cover;
}
.member .member__info {
  max-height: 150px;
  margin: 10px 0;
  padding: 0 0 0 15px;
}
.member .member__title {
  color: #212121;
  margin: 0 0 10px;
  line-height: 21px;
}
.member .member__text {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
}
.member:hover {
  box-shadow: 2px 2px 4px 0 #CACACA;
}

.staff-list {
  list-style-type: none;
}
.staff-list .staff-list__item {
  position: relative;
  border-bottom: 1px solid #eaebef;
  transition: 0.2s ease-in-out;
}
.staff-list .staff-list__item:before, .staff-list .staff-list__item:after {
  background-color: #2d58c6;
  bottom: 0;
  content: "";
  height: 2px;
  margin: 28px 0;
  position: absolute;
  top: 0;
  width: 12px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -moz-transition: transform 0.2s ease, -moz-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -moz-transform 0.2s ease;
}
.staff-list .staff-list__item:before {
  left: 1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.staff-list .staff-list__item:after {
  left: 9px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.staff-list .staff-list__item:hover {
  border-color: #2d58c6;
}

.staff-member .staff-member__title {
  margin: 0;
  color: #2d58c6;
  cursor: pointer;
  padding: 15px 35px;
}
.staff-member .staff-member__info {
  display: none;
  margin: 35px 0 0 50px;
}
.staff-member .staff-member__img {
  height: 150px;
  width: 150px;
}
.staff-member .staff-member__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-member .staff-member__info-block {
  max-width: 800px;
  margin: 0 0 0 100px;
}
.staff-member .staff-member__name {
  font-size: 30px;
  color: #212121;
  font-weight: bold;
}
.staff-member .staff-member__contacts {
  display: flex;
  margin: 20px 0;
}
.staff-member .staff-member__contacts-info {
  color: #2d58c6;
  font-size: 18px;
  margin-right: 35px;
}
.staff-member .staff-member__description {
  margin-bottom: 30px;
  font-weight: bolder;
  color: gray;
}
.staff-member .staff-member__info-block.staff-member__info-block_no-description {
  width: 100%;
  margin: 0;
}

.staff-list__item.staff-list__item_opened:before {
  transform: rotate(-45deg);
}

.staff-list__item.staff-list__item_opened:after {
  transform: rotate(45deg);
}

.staff-list__item_opened .staff-member__info {
  display: flex;
}

.home-section {
  margin: 70px 0 80px;
}

.pagination {
  text-align: center;
  margin-top: 30px;
}
.pagination span {
  padding: 5px 9px;
  margin: 0 2px;
  cursor: pointer;
}
.pagination span a {
  color: #212121 !important;
  text-decoration: none;
}
.pagination .first, .pagination .last {
  display: none;
}
.pagination .previous, .pagination .next, .pagination .page, .pagination .current {
  font-size: 16px;
  font-weight: bold;
}
.pagination .page {
  border: 1px solid;
  border-radius: 2px;
  padding: 4px 5px 4px 9px;
}
.pagination .page:hover {
  background-color: #0f0f0f;
}
.pagination .page:hover a {
  color: white !important;
}
.pagination .current {
  color: white;
  background-color: #0f0f0f;
  border-radius: 2px;
}

.map-section .map-section__row {
  flex-direction: column;
}
.map-section .map-section__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #eeeeee;
  padding: 10px 20px 10px;
  margin-bottom: 20px;
  box-shadow: 1px 2px #f4f4f4;
  width: 100%;
}
.map-section .map-section__item-title {
  color: #212121;
  text-align: left;
  margin: 0;
}
.map-section .map-section__item-link {
  font-family: "GrapalatRegular", sans-serif;
  font-size: 14px;
  color: #212121;
  cursor: pointer;
  line-height: 25px;
  text-decoration: none;
}
.map-section .map-section__item-link:hover {
  text-decoration: underline;
}
.map-section .map-section__item-title_single {
  color: #212121;
  text-decoration: none;
  font-weight: bold;
}
.map-section .map-section__item-title_single:hover {
  text-decoration: underline;
}

.search-section .search-section__row {
  flex-wrap: wrap;
  justify-content: center;
}
.search-section .search-section__core-item {
  text-decoration: none;
  margin-bottom: 30px;
}

.search-item {
  padding: 15px 30px;
  box-shadow: 2px 2px 4px 0 #CACACA;
}
.search-item .search-item__title {
  color: #212121;
  text-align: left;
}
.search-item .search-item__date {
  font-size: 12px;
}
.search-item .search-item__src {
  font-size: 12px;
  color: #337ab7;
}

.footer {
  background-color: #212121;
  color: #666666;
  font-size: 13px;
  line-height: 25px;
  padding: 25px 0 15px;
}
.footer * {
  padding: 0;
  margin: 0;
}
.footer .footer__link {
  text-decoration: none;
}
.footer .footer__link:hover {
  text-decoration: underline;
}
.footer .footer__row {
  justify-content: space-between;
}
.footer .row__elem {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 10px;
}
.footer .row__elem.row__elem_size_l {
  max-width: 950px;
}

.company-name {
  width: 130px;
}

.contacts {
  text-align: right;
}

.company-link {
  color: #666666;
}

.row-bottom {
  padding-top: 35px;
}

.coat-logo {
  align-items: center;
}
.coat-logo .coat-logo__img {
  width: 100px;
  object-fit: scale-down;
}

.media-icons, .mobile-media {
  display: flex;
  justify-content: flex-end;
}
.media-icons .media-icons__img, .mobile-media .media-icons__img {
  margin-left: 20px;
}

.mobile-media {
  display: none;
}

/*Subscription styles*/
.sbc-form {
  display: flex;
  align-items: center;
  margin: 45px 0 15px;
}
.sbc-form .sbc-form__input {
  background: transparent;
  border: 0;
  padding: 3px 5px;
  border-bottom: 2px solid #fff;
  color: #ffffff;
  outline: none;
}
.sbc-form button {
  text-transform: uppercase;
  background-color: #fff;
  color: #212121;
  font-family: GrapalatBold, Sans-Serif;
  padding: 10px 32px;
  margin-left: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.sbc-form button:hover {
  background-color: rgba(75, 75, 75, 0.78);
  color: #fff;
}

/*The End of the Subscription styles*/
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease 0s;
}

.scroll_disabled {
  overflow: hidden;
}

.main-content {
  flex-grow: 1;
}

.text-white {
  color: #ffffff;
}

.text-gray {
  color: #737373;
}

.title {
  margin: 0 auto 30px;
  text-align: center;
  color: #737373;
  text-transform: uppercase;
}

.section {
  margin: 60px 0 70px;
}

.container {
  max-width: 1550px;
  padding: 0 7vw;
  margin: 0 auto;
}
.container.container_small {
  max-width: 1200px;
}

.row {
  display: flex;
  align-items: center;
}

.btn {
  text-decoration: none;
  font-family: "GrapalatRegular", sans-serif;
  padding: 12px 48px;
  font-size: 14px;
}

.collection .collection__row {
  flex-wrap: wrap;
}
.collection .collection__core-item {
  text-decoration: none;
  width: 50%;
}

.youtube-video {
  margin-top: 80px;
  width: 800px;
  max-width: 700px;
  height: auto;
  min-height: 450px;
}
.youtube-video iframe {
  width: 100%;
  height: 500px;
}

@font-face {
  font-family: GrapalatBold;
  src: url("../fonts/GHEAGpalatBld.otf");
}
@font-face {
  font-family: GrapalatRegular;
  src: url("../fonts/GHEAGrpalatReg.otf");
}
/*Exceptional styles*/
@media (max-width: 1386px) {
  .navbar .navbar__item {
    margin-right: 30px;
    font-size: 13.5px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 10px;
  }

  .latest-news .latest-news__info {
    padding-right: 20px;
  }

  .bottom-info .bottom-info__src {
    font-size: 13px;
  }

  .home-section .home-section__core-item:nth-child(odd) {
    margin-right: 20px;
  }
}
@media (max-width: 1245px) {
  .navbar .navbar__item {
    font-size: 13px;
  }

  .btn {
    padding: 8px 35px;
  }
}
/*The End of the Exceptional styles*/
@media (max-width: 1199.98px) {
  .navbar .navbar__item {
    font-size: 11.7px;
    margin-right: 10px;
  }
}
@media (max-width: 991.98px) {
  .header .header__container {
    justify-content: center;
  }

  .search {
    display: none;
  }

  .linear-flag .linear-flag__img {
    object-fit: fill;
  }

  .navbar .navbar__container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar .navbar__list {
    display: none;
  }

  .navbar__container {
    align-items: center;
  }

  .hamburger {
    display: block;
  }

  .lang-switcher {
    display: none;
  }

  .navbar-inner .navbar__item-ex {
    text-decoration: underline;
  }
  .navbar-inner .navbar-inner__list {
    position: absolute;
    top: 30px;
    left: 55px;
    display: block;
  }
  .navbar-inner .navbar-inner__lang-switcher {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
  }
  .navbar-inner .navbar-inner__link {
    line-height: 22px;
  }

  .mobile-search, .navbar-inner {
    display: block;
  }

  .mobile-search .search__button {
    padding: 7px 10px 6px 0;
    margin-left: -2px;
    box-shadow: inset 0 2px 0 rgba(209, 209, 209, 0.8);
  }

  .slider-section {
    display: none;
  }

  .collection .collection__row {
    flex-direction: column;
  }
  .collection .collection__core-item {
    width: 100% !important;
    margin: 0 !important;
  }

  .news-card {
    height: auto;
  }
  .news-card .news-card__img {
    min-width: 140px;
  }
  .news-card .news-card__title h4 {
    font-size: 14px;
  }
  .news-card .bottom-info .bottom-info__date {
    display: none;
  }

  .history-images .history-img {
    width: 47%;
  }
  .history-images .history-img .history-img__title {
    bottom: 20px;
    left: 20px;
    font-size: 22px;
  }

  .members .members__row {
    grid-template: none;
  }
  .members .members__link.members__link_big .member__img {
    height: initial;
  }

  .map-section .map-section__item {
    width: 95%;
  }

  .youtube-video {
    width: 100%;
    height: 450px;
  }
  .youtube-video iframe {
    height: 100%;
  }

  .sessions-section .sessions-section__row-top {
    flex-direction: column;
  }
  .sessions-section .sessions-section__title {
    margin-bottom: 20px;
  }

  .footer {
    font-size: 12px;
  }
  .footer .contacts {
    display: none;
  }
  .footer .footer__row {
    flex-direction: column;
  }
  .footer .row__elem {
    align-items: center;
    margin-bottom: 10px;
  }
  .footer .row__elem.row__elem_size_l {
    display: none;
  }
  .footer .media-icons {
    display: none;
  }
  .footer .mobile-media {
    display: block;
    margin-top: 10px;
  }
  .footer .mobile-media .media-icons__img:first-child {
    margin: 0;
  }
  .footer .council-mail {
    padding-top: 10px;
  }
  .footer .row-bottom {
    padding-top: 0;
    margin-top: -10px;
  }
  .footer .coat-logo__img {
    display: none;
  }
  .footer .company-name {
    width: auto;
  }
  .footer .sbc-form {
    flex-direction: column;
    margin-top: 20px;
  }
  .footer .sbc-form .input-group {
    margin: -25px 0 0;
  }
  .footer .sbc-form button {
    margin: 25px 0 15px;
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .logo .logo-title {
    font-size: 12px;
  }
  .logo .logo__img {
    width: 55px;
  }

  .navbar-inner .navbar-inner__list {
    top: 10px;
    left: 10px;
  }

  .single-page .single-page__row {
    flex-direction: column;
    align-items: center;
  }
  .single-page .single-img {
    pointer-events: none;
  }

  .single-info {
    width: 100%;
  }
  .single-info .single-info__title {
    text-align: center;
    font-size: 18px;
  }
  .single-info .single-info__date {
    text-align: center;
  }

  .history-images {
    justify-content: center;
  }
  .history-images .history-img {
    width: 100%;
    margin-bottom: 8px;
  }
  .history-images .history-img .history-img__title {
    bottom: 15px;
    left: 15px;
    font-size: 20px;
  }

  .news-card {
    max-height: 150px;
  }

  .session .news-card {
    flex-direction: column;
    max-height: 100%;
  }
  .session .news-card .news-card__img {
    width: 100%;
  }
  .session .news-card .news-card__info {
    width: auto;
  }
  .session .news-card .news-card__title {
    font-size: 14px;
  }

  .law-item {
    flex-direction: column;
  }
  .law-item .download-set {
    margin: 20px 0 10px;
  }
}

/*# sourceMappingURL=app.css.map */
