/*=================
  PRE SET
=================*/

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  font-family: var(--Helv-L);
  font-size: 15px;
  color: #000000;
  /*overflow-x: hidden;*/
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body.modal-open,
body.compensate-for-scrollbar {
  margin-right: 0 !important;
  padding-right: 0 !important;
}
ol,
ul {
  list-style: none;
}
textarea:active,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
[type="text"].form-control:focus,
[type="password"].form-control:focus,
[type="email"].form-control:focus,
[type="tel"].form-control:focus,
[contenteditable].form-control:focus,
select:focus {
  outline: 0 !important;
  -webkit-appearance: none;
  box-shadow: inset 0 -1px 0 #ddd !important;
  border: 1px solid #c4bed7;
}
label {
  outline: none !important;
  box-shadow: none !important;
  border-color: #000 !important;
}
input:focus::-webkit-input-placeholder {
  opacity: 0;
}
a,
input {
  outline: none !important;
  text-decoration: none !important;
}
:root {
  --Cocomat-B: "Cocomat-Bold", sans-serif;
  --Helv-T: "Helvetica-Neue-Cyr-Thin", sans-serif;
  --Helv-UL: "Helvetica-Neue-Cyr-Ultra-Light", sans-serif;
  --Helv-L: "HelveticaNeueCyr-Light", sans-serif;
  --Helv-B: "HelveticaNeueCyr-Bold", sans-serif;
  --Helv-R: "HelveticaNeueCyr-Roman", sans-serif;
  --Helv-BL: "Helvetica-Neue-Cyr-Black", sans-serif;
  --Helv-MI: "Helvetica-Neue-Cyr-Medium-Italic", sans-serif;
  --Helv-M: "Helvetica-Neue-Cyr-Medium", sans-serif;
}
/*----- placeholder style -----*/
::-webkit-input-placeholder {
  color: #301b6c;
  opacity: 0.4;
  text-align: center;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #301b6c;
  opacity: 0.4;
  text-align: center;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #301b6c;
  opacity: 0.4;
  text-align: center;
}
:-ms-input-placeholder {
  color: #301b6c;
  opacity: 0.4;
  text-align: center;
}

/* miscellaneous classes */

.main-content {
  min-height: calc(100vh - 120px);
}
.container {
  padding: 0 30px;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 800px) {
  .news-details .news-item-content__text img {
    width: 100% !important;
    height: auto !important;
  }
}

/* button default 1 */

.btn-global {
  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;
  text-transform: uppercase;
  position: relative;
  color: #ffffff;
  background-color: #132f7e;
  font-size: 12px;
  line-height: 1;
  font-family: var(--Helv-T);
  border-radius: 5px;
  width: 139px;
  height: auto;
  padding: 8px 33px 8px 15px;
}
.btn-global.bg-cl-red {
  background-color: #1750ed;
}
.inner-link-btn-dots {
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background-color: #ffffff;
}
.inner-link-btn-dots::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  top: 0;
  left: -4px;
  background-color: #ffffff;
}
.inner-link-btn-dots::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  top: 0;
  right: -4px;
  background-color: #ffffff;
}
.btn-global:hover {
  color: #ffffff;
}

/* button default 2 */

.btn-global-2 {
  color: #627499;
  text-transform: uppercase;
  font-family: var(--Helv-R);
  font-size: 15px;
  line-height: 1;
  min-width: 230px;
  min-height: 50px;
  padding: 15px 45px;
  border-radius: 3px;
  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;
  background-color: transparent;
  border: 2px solid #1750ed;
  letter-spacing: 1.05px;
  /*
    width: -moz-max-content;
    width: -webkit-max-content;
	width: -ms-max-content;
    width: fit-content;*/

  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn-global-2:hover {
  color: #132f7e;
}
.btn-global-2.bg-cl-blue {
  background-color: #1750ed;
}
.btn-global-2.bdr-cl-blue {
  border: 2px solid #1750ed;
  background-color: #1750ed;
  color: #fff;
}
.contact-block .btn-global-2 {
  border: 2px solid #1750ed;
  background-color: #1750ed;
  color: #fff;
}
/* title global */

.title-global {
  width: 100%;
}
.title-global h2 {
  color: #000000;
  font-family: var(--Helv-B);
  line-height: 1;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.title-global.cl-purple h2 {
  color: #132f7e;
}

/* title-nav tabs */

.title-tab-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 19px;
}
.title-global.title-tab-btn {
  width: auto;
  cursor: pointer;
}
.title-global.title-tab-btn h2 {
  color: #c1bbcf;
}
.title-global.title-tab-btn.active h2 {
  color: #301b6c;
}
.title-global.title-tab-btn:hover h2 {
  color: #301b6c;
}
.title-tab-btns span {
  position: relative;
  width: 3px;
  height: 3px;
  background-color: #aca7b8;
  margin: 0 16px;
}
.title-tab-btns span::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #aca7b8;
}
.title-tab-btns span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #aca7b8;
}

/* second header */

.second-header {
  line-height: 1;
  font-family: var(--Helv-B);
  font-size: 15px;
  color: #000000;
}

/* global link btn */

.link-to-target-page {
  color: #000000;
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--Helv-L);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 1.8px;
}
.link-to-target-page img {
  margin-left: 8px;
  width: 14px;
  height: 14px;
}
.link-to-target-page:hover {
  color: #000000;
}
.link-to-target-page.cl-purple {
  color: #132f7e;
}
.link-to-target-page.cl-purple:hover {
  color: #132f7e;
}

/* load more content on page button */

.load-more-btn-wrap {
  width: 100%;
}
.load-more-btn-wrap a {
  text-decoration: underline !important;
  color: #3d4984;
  font-size: 15px;
  line-height: 1;
  font-family: var(--Helv-L);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: fit-content;
}
.load-more-btn-wrap a img {
  width: 13px;
  height: 14px;
  display: block;
  margin-left: 10px;
  -webkit-transition: all linear 250ms;
  -o-transition: all linear 250ms;
  transition: all linear 250ms;
}
.load-more-btn-wrap a:hover {
  color: #3d4984;
  text-decoration: none !important;
}
.load-more-btn-wrap a:hover img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*=================
  END PRE SET
=================*/

/* MODAL SCREEN CALLBACK */

.close {
  width: 27px;
  height: 20px;
  margin-left: auto;
  outline: none;
}
.close:focus {
  outline: none;
}
.call-back__text {
  font-family: var(--OpenSans-L);
  font-size: 18px;
  line-height: 1;
  color: #1a1a1a;
}
.call-back-header-wrap {
  padding: 0 1rem;
}
.call-input {
  border: 1px solid #b3b3b3 !important;
  color: #1a1a1a !important;
}
.call-textarea {
  resize: none;
  border: 1px solid #b3b3b3 !important;
  width: 100%;
  height: 70px;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.call-textarea::placeholder {
  color: #515151 !important;
  opacity: 0.9;
}
.order-call {
  width: 100%;
  max-width: 150px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #b3b3b3;
  color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  background-color: unset;
}
.order-call:hover {
  color: #1a1a1a;
}
.order-call:focus {
  outline: none;
}
.modal-dialog--callback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  margin: 0;
  padding: 0 15px;
}

/* MODAL SCREEN CANCELLATION WARNING */

#cancellation-warning .modal-content {
  border: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3), -1px -1px 5px rgba(0, 0, 0, 0.3),
    inset 3px 3px 5px rgba(0, 0, 0, 0.08),
    inset -3px -3px 5px rgba(0, 0, 0, 0.08);
}
#cancellation-warning .event-card__sticker.cancelled {
  margin: 0 auto;
}
#cancellation-warning .modal-body h5 {
  width: 100%;
  text-align: center;
  line-height: 1.2;
  font-family: var(--Helv-L);
  font-size: 22px;
}

/* PAGE 404 */

.page-404-wrap {
  position: relative;
  height: calc(100vh - 168px);
}
.page-404-bg-wrap {
  width: auto;
  height: 100%;
  overflow: hidden;
}
.page-404-bg-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: 50% 50%;
  object-fit: cover;
}
.page-404-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
}
.page-404-content .container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.page-404-content h3 {
  font-size: 142px;
  line-height: 1;
  font-family: var(--Helv-BL);
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 9.94px;
}
.btn-404 {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-R);
  font-size: 15px;
  line-height: 1;
  width: 297px;
  height: 54px;
  border-radius: 3px;
  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;
  background-color: #fdc806;
  letter-spacing: 1.05px;
}
.btn-404:hover {
  color: #ffffff;
}

/* HEADER */

.header {
  background-color: #efefef;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 48px;
  z-index: 200;
}
.header .container {
  position: relative;
  height: inherit;
}
/* .header .container::after {
  content: "";
  position: absolute;
  right: -188px;
  top: 0;
  width: 397px;
  height: 115px;
  background: url("../img/header/header-decor.png") center / contain no-repeat;
  z-index: -1;
} */
.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: inherit;
}
.header-nav-btn {
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.header-close-nav-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.header-close-nav-btn svg {
  fill: #3c4884;
  width: 20px;
  height: 20px;
}
.header-nav-btn svg {
  fill: #3c4884;
  width: 30px;
  height: 30px;
}
.header-close-nav-btn:hover svg,
.header-nav-btn:hover svg {
  fill: #584c10;
}
.header-nav {
  height: inherit;
  margin-right: 54px;
}
.header-nav.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border-radius: unset;
}
.header-nav-ul {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-nav-ul__li {
  height: inherit;
}
.header-nav-ul__li:not(:last-child) {
  margin-right: 51px;
}
.header-nav-ul__li a {
  height: inherit;
  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;
  padding: 0 8px;
  position: relative;
  color: #132f7e;
  font-family: var(--Helv-R);
  line-height: 1;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.header-nav-ul__li a:hover::before,
.header-nav-ul__li a.active::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background-color: #132f7e;
}
.header-nav-ul__li a:hover::after,
.header-nav-ul__li a.active::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: "";
  background-color: #132f7e;
}
.header-nav-ul__li a:hover {
  color: #132f7e;
}
.header-search-block {
  height: inherit;
}
.search-block {
  height: inherit;
}
.search-form {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.search-form__input {
  width: 216px;
  height: 27px;
  border-radius: 5px;
  border: 1px solid #c4bed7;
  background-color: #ffffff;
  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;
  padding: 0 15px;
  font-size: 10px;
  font-family: var(--Helv-R);
  letter-spacing: 1.5px;
  margin-right: 14px;
  outline: none;
}
.search-form__submit {
  border: none;
  background-color: transparent;
  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;
  width: 15px;
  height: 20px;
  outline: none !important;
  padding-bottom: 3px;
}
.search-form__submit:hover {
}
.search-form__submit img {
  width: 15px;
  height: 15px;
  display: block;
}

/* FOOTER */

.footer {
  background-color: #132f7e;
  height: 100%;
  min-height: 120px;
  position: relative;
}
.footer .container {
  position: relative;
  height: inherit;
  min-height: inherit;
}
.footer-decor-element-left {
    display: none;
  position: absolute;
  left: -655px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-decor-element-right {
    display: none;
  position: absolute;
  right: -437px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: inherit;
  min-height: inherit;
}
.footer-content__logo {
  width: 100%;
  max-width: 222px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-content__logo img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
.footer-nav {
  text-align: right;
}
.footer-nav-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
}
.footer-nav-ul__li {
  height: inherit;
}
.footer-nav-ul__li:not(:last-child) {
  margin-right: 49px;
}
.footer-nav-ul__li a {
  height: inherit;
  min-height: inherit;
  display: block;
  padding: 48px 10px 28px;
  position: relative;
  text-transform: uppercase;
  color: #f7f7f7;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
}
.footer-nav-ul__li a.active,
.footer-nav-ul__li a:hover {
  color: #dadada;
}
.footer-nav-ul__li a.active::before,
.footer-nav-ul__li a:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #dadada;
}
.footer-nav__copyright {
}
.footer-nav__copyright p {
  color: #f7f7f7;
  font-family: var(--Helv-L);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 1.5px;
}

/* MAIN PAGE */

.main-content-inner {
  padding-top: 48px;
  /* overflow-x: hidden; */
}
.logo-block {
  position: absolute;
  left: 0;
  top: 90px;
  width: 100%;
  z-index: 5;
}
.logo-block .container {
  padding: 0;
}
.logo-on-banner {
  position: relative;
}
.logo-on-banner > a {
  display: block;
}
.logo-on-banner > a > img {
  max-width: 260px;
  min-width: 95px;
  max-height: 64px;
}
.logo-on-banner > a > img.big {
  max-width: 360px;
  min-width: 95px;
  max-height: 100px;
}
.logo-on-banner > a > img.logo-on-banner_s1 {
  margin-right: -14px;

  min-width: 40px;
  max-height: 72px;
  margin-right: 6px;
}
.logo-on-banner .logo-on-banner_s4 {
  position: absolute;
  left: 440px;
  bottom: 8px;
}
.logo-on-banner .logo-on-banner_s5 {
  position: absolute;
  left: 488px;
  bottom: 8px;
}
.logo-on-banner .logo-on-banner_s4 img {
  min-width: 36px;
}
.logo-on-banner .logo-on-banner_s5 img {
  min-width: 36px;
}
@media all and (max-width: 768px) {
  .logo-on-banner > a > img {
    max-width: 200px;
    max-height: 44px;
    min-width: 70px;
  }
  .logo-on-banner .logo-on-banner_s4 {
    position: absolute;
    left: 16px;
    bottom: -44px;
  }
  .logo-on-banner .logo-on-banner_s5 {
    position: absolute;
    left: 54px;
    bottom: -44px;
  }
  .logo-on-banner .logo-on-banner_s4 img {
    min-width: 28px;
  }
  .logo-on-banner .logo-on-banner_s5 img {
    min-width: 28px;
  }
}
@media all and (min-width: 768px) {
  .header-nav-ul .social-wrapper_b2 {
    display: none;
  }
}
/* banner slider */
.banner-slider {
}
.banner-slide {
  overflow: hidden;
}
.banner-slide-inner {
  position: relative;
}
.banner-slide-bg-wrap {
  height: 540px;
  position: relative;
  visibility: hidden;
}
.banner-slide-bg-wrap-inner {
  height: 540px;
  position: absolute;
  left: -359px;
  top: 0;
  z-index: 2;
  width: 1293px;
}
.banner-slide-bg-wrap img {
  display: block;
  width: auto;
  object-fit: cover;
  height: 100%;
  object-position: 50% 50%;
}
.banner-slide-content {
  width: 100%;
  /*padding: 28px 0;*/
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.banner-slide-content .container {
  position: relative;
  padding: 180px 0 28px;
  height: inherit;
}
.banner-slide-content-inner {
  width: 100%;
  max-width: 600px;
  z-index: 2;
  position: relative;
}
.banner-slide-content__logo {
  margin-bottom: 78px;
}
.banner-slide-content__logo img {
  max-width: 100%;
  display: block;
  width: initial !important;
}
.banner-slide-content__sticker {
  width: 83px;
  height: 24px;
  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;
  background-color: #1850ee;
  text-transform: uppercase;
  color: #ffffff;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1;
  margin-bottom: 8px;
  border-radius: 5px;
}
.banner-slide-content__date {
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1;
}
.banner-slide-content__title {
  margin-bottom: 5px;
}
.banner-slide-content__title h2 {
  text-transform: uppercase;
  color: #000000;
  font-family: var(--Cocomat-B);
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.8px;
}
.banner-slide-content__text {
  margin-bottom: 18px;
}
.banner-slide-content__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1;
  margin-bottom: 20px;
}
.banner-slide-content__text ul {
}
.banner-slide-content__text ul li {
  position: relative;
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1;
  padding-left: 18px;
  margin-bottom: 3px;
}
.banner-slide-content__text ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fdc806;
}
.banner-slide-content__link {
}
.slider-image {
  height: inherit;
  position: absolute;
  right: -380px;
  top: 0;
  display: block;
  z-index: 1;
  /*object-fit: none !important;
    object-position: right !important;
    width: unset !important;*/
}

.btn-presentation-slide {
  display: flex;
  background: #0d4cd3;
  color: #fff;
  width: 180px;
  justify-content: center;
  padding: 10px 6px 12px 6px;
  font-size: 18px;
  border-radius: 4px;
  margin-top: 18px;
}
.btn-presentation-slide:hover {
  color: #0d4cd3;
  background: #fff;
  border: 2px solid #0d4cd3;
}

/* banner slider dots */

.banner-slider .owl-dots {
  position: absolute;
  bottom: 13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1140px;
  text-align: right;
  padding: 0 15px;
}
.banner-slider .owl-dot {
  width: 9px;
  height: 9px;
  background-color: #ffffff !important;
  border: none;
  position: relative;
  outline: none;
}
.banner-slider .owl-dot.active {
  background-color: #3d4984 !important;
}
.banner-slider .owl-dot:not(:last-child) {
  margin-right: 6px;
}

/* about us block */

.about-us-block {
  position: relative;
}
.about-us-block .container {
  position: relative;
  padding-top: 134px;
  padding-bottom: 60px;
}
/* .about-us-block .container::after {
  content: "";
  position: absolute;
  left: 240px;
  top: -5px;
  width: 10000px;
  height: 5px;
  background: url("../img/main-page/about-block-decor-1.png") left / contain
    repeat-x;
  z-index: 1;
} */
/* .about-us-block .container::before {
  content: "";
  position: absolute;
  left: -400px;
  top: -90px;
  width: 652px;
  height: 202px;
  background: url("../img/main-page/about-block-decor-2.png") center / contain
    no-repeat;
  z-index: 2;
} */
.about-us-block-content {
  padding: 26px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("../img/main-page/about-block-bg.png") 5px 53px / auto
    no-repeat;
}
.about-us-facts {
  width: 20%;
}
.about-us-fact {
}
.about-us-facts:first-child > .about-us-fact:last-child {
  padding: 0 30px 0 0;
}
@media all and (max-width: 1200px) {
  .about-us-facts:first-child > .about-us-fact:last-child {
    padding: 0 20px 0 0;
  }
}
@media all and (max-width: 768px) {
  .about-us-facts:first-child > .about-us-fact:last-child {
    padding: 0;
  }
}
.about-us-fact:first-child p {
  font-size: 35px;
  line-height: 1;
}
.about-us-fact:first-child {
  height: 190px;
  margin-bottom: 62px;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-us-fact:last-child {
}
.about-us-fact p {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.cl-red {
  color: #1750ed !important;
}
.cl-yellow {
  color: #6d8bce !important;
}
.sz-20 {
  font-size: 20px !important;
}
.about-us-facts:first-child .about-us-fact:first-child {
  padding: 44px 25px 0 0;
}
.about-us-facts:nth-child(2) .about-us-fact:first-child {
  padding: 121px 27px 0 0;
}
.about-us-facts:nth-child(3) .about-us-fact:first-child {
  padding: 34px 10px 0 0;
}
.about-us-facts:nth-child(4) .about-us-fact:first-child {
  padding: 101px 0 0 0;
}
.about-us-facts:last-child .about-us-fact:first-child {
  padding: 48px 4px 0 0;
}

/* news block */

.news-block {
  background-color: #f5f5f5;
  position: relative;
}
.news-block > .container {
  position: relative;
}
.news-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -368px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 130px 370px 0 370px;
  border-color: #ffffff transparent transparent transparent;
}
.news-block > .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 160px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 89px 0 89px;
  border-color: #ffffff transparent transparent transparent;
}
.news-block > .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -320px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 88px 195px 0 301px;
  border-color: #ffffff transparent transparent transparent;
}
.news-block-decor-1 {
    display: none;
  position: absolute;
  top: -25px;
  left: 51%;
}
.news-block-decor-2 {
    display: none;
  position: absolute;
  left: -40px;
  top: 36%;
}
.news-block-decor-3 {
    display: none;
  position: absolute;
  right: -73px;
  bottom: 44%;
}
.news-block .container {
  padding-top: 85px;
  padding-bottom: 56px;
}
.news-block-content {
  padding-top: 25px;
  position: relative;
}
.to-target-page-wrap {
  position: absolute;
  top: -14px;
  right: 0;
}
.news-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.news-item {
  width: 31.4%;
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 50px;
}
.news-item:not(:nth-child(3n)),
.news-item:not(:last-child) {
  margin-right: 2.8%;
}
.news-item:nth-child(3n) {
  margin-right: 0;
}
.news-item__img {
  height: 248px;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  display: block;
}
.news-item__img img {
  height: 248px;
  width: 100%;
  display: block;
  z-index: 1;
  position: relative;
  object-fit: cover;
  object-position: top;
}
.news-item__img:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #301b6c;
  opacity: 0.2;
  z-index: 2;
}
.news-item__date {
  margin-bottom: 2px;
}
.news-item__date p {
  color: #132f7e;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1;
}
.news-item__title {
  width: 100%;
  max-width: 300px;
  margin-bottom: 5px;
  /*height: 55px;*/
  height: auto;
  overflow: hidden;
  display: block;
}
.news-item__title h3 {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 15px;
  line-height: 1.2;
}
.news-item__title:hover h3 {
  color: #132f7e;
  text-decoration: underline;
}
.news-item__text {
  height: 90px;
  overflow: hidden;
  margin-bottom: 20px;
}
.news-item__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1.2;
}
.news-item__link {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  width: 100%;
  height: 49px;
  border-radius: 3px;
  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;
  background-color: #3c4884;
  position: absolute;
  bottom: 0;
  z-index: 20;
}
.news-item__link:hover {
  color: #ffffff;
  background-color: #132f7e;
}
.news-item .btn-global-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* calendar block */

.calendar-block {
  background: url("../img/main-page/calendar-bg-new.jpg") top / cover no-repeat;
  position: relative;
  z-index: 2;
}
.calendar-block .container {
  padding-top: 76px;
  padding-bottom: 147px;
  position: relative;
}
.calendar-block-content {
  position: relative;
  padding-top: 35px;
}

/* старые стили главной новости блока календарь */

.main-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 341px;
  margin-bottom: 10px;
}
.main-event-info {
  height: inherit;
  width: 789px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  position: relative;
}
.main-event-info::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 24.4px;
  border-color: transparent transparent transparent #ffffff;
}
.main-event-img {
  width: 100%;
  max-width: 442px;
  height: inherit;
}
.main-event-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-postion: center;
}
.main-event-data {
  padding: 18px 18px 27px;
}
.main-event-info__sticker {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #dd5353;
  margin-bottom: 27px;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;

  display: inline-block;
  text-align: center;
}
.main-event-info__sticker p {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}
.main-event-info__title {
  height: 46px;
  overflow: hidden;
  margin-bottom: 14px;
  width: 100%;
  max-width: 250px;
}
.main-event-info__title h3 {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 14px;
  line-height: 1.2;
}
.main-event__date {
  margin-bottom: 32px;
}
.main-event__date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
}
.main-event__date-inner img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 3px;
}
.main-event__date-inner p {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-T);
  font-size: 14px;
  line-height: 1;
}

/* (конец) старые стили главной новости блока календарь */

/* новые стили главной новости блока календарь */
.main-event.no-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 257px;
  margin-bottom: 10px;
}
.main-event.no-details .main-event-info {
  height: inherit;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  position: relative;
}
.main-event.no-details .main-event-img {
  width: 100%;
  max-width: 387px;
  height: inherit;
}
.main-event.no-details .main-event-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.main-event.no-details .main-event-data {
  padding: 24px 18px 24px 50px;
  width: 100%;
}
.main-event.no-details .main-event-info__sticker {
  padding: 6px 15px;
  border-radius: 5px;
  background-color: #1750ed;
  margin-bottom: 15px;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;

  display: inline-block;
  text-align: center;
}
.main-event.no-details .main-event-info__sticker p {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}
.main-event.no-details .main-event-info__title {
  height: 60px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  max-width: unset;
}
.main-event.no-details .main-event-info__title h3 {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 18px;
  line-height: 1.2;
}
.main-event.no-details .main-event__date {
  margin-bottom: 32px;
}
.main-event.no-details .main-event__date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
}
.main-event.no-details .main-event__date-inner img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 3px;
}
.main-event.no-details .main-event__date-inner p {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-T);
  font-size: 14px;
  line-height: 1;
}
.main-event.no-details .btn-global.bg-cl-red,
.main-event.no-details .btn-global {
  justify-content: flex-start;
  background-color: transparent;
  color: #dd5353;
  padding-left: 0;
}
.main-event.no-details .btn-global .inner-link-btn-dots {
  background-color: #dd5353;
  right: 49px;
}
.main-event.no-details .inner-link-btn-dots::after,
.main-event.no-details .inner-link-btn-dots::before {
  background-color: #dd5353;
}
/* (конец) новые стили главной новости блока календарь */

.main-event__text {
  height: 80px;
  overflow: hidden;
  margin-bottom: 7px;
  width: 100%;
  max-width: 222px;
}
.main-event__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1.1;
}
.main-event-slider {
  background-color: rgba(40, 53, 121, 0.7);
  height: inherit;
  width: 100%;
  max-width: 350px;
  position: relative;
}
.main-event-slide {
  height: inherit;
}
.main-event-slide-content {
  height: inherit;
  overflow: hidden;
  padding: 30px 35px 60px;
}
.main-event-slide-content p {
  margin-bottom: 17px;
  color: #ffffff;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
}

/* main event slider dots */

.main-event-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  right: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-event-slider .owl-dot {
  width: 13px;
  height: 13px;
  background-color: #434b6e !important;
  border: none;
  position: relative;
  outline: none;
  border-radius: 50%;
  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;
}
.main-event-slider .owl-dot.active span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #8b95c8 !important;
}
.main-event-slider .owl-dot:not(:last-child) {
  margin-right: 6px;
}
.events-slider {
  height: 443px;
  position: relative;
}
.events-slide {
}
.events-slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.event-card {
  background-color: rgba(255, 255, 255, 0.7);
  width: 24%;
  height: 213px;
  padding: 22px 27px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.event-card:not(:last-child) {
  margin-right: 1.33%;
}
.event-card:nth-child(4n) {
  margin-right: 0;
}
.event-card__sticker {
  padding: 6px 9px;
  border-radius: 5px;
  background-color: #a9c0e9;
  margin-bottom: 7px;
  /*width: intrinsic;
    width: -moz-max-content;
    width: -webkit-max-content;*/
  width: 130px;
  display: inline-block;
  text-align: center;
}
.event-card__sticker.cancelled {
  background-color: #1750ed;
  margin-bottom: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-card__sticker.cancelled.cancelled--mod {
  margin-bottom: 7px;
  height: 24px;
}
.event-card__sticker p {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}
.event-card__title {
  height: 40px;
  overflow: hidden;
  margin-bottom: 8px;
  width: 100%;
  position: relative;
}
.event-card__title h3 {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 12px;
  line-height: 1.2;
}
/*
.event-card__title.active::before{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 85px;
	height: 14px;
	z-index: 3;
	background: rgba(255,255,255,0.64);
	background: -moz-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.95) 35%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,0.64)), color-stop(35%, rgba(255,255,255,0.95)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.95) 35%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.95) 35%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.95) 35%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.95) 35%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
}
.event-card__title.active::after{
	content: "...";
	position: absolute;
    bottom: 1px;
    right: 22px;
	width: 30px;
	height: 14px;
	z-index: 4;
	color: #000000;
}*/
.event-card__date {
  margin-bottom: 21px;
}
.event-card__date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
}
.event-card__date-inner img {
  width: 14px !important;
  height: 14px;
  display: block;
  margin-right: 3px;
}
.event-card__date-inner p {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-T);
  font-size: 14px;
  line-height: 1;
}

.event-card__hidden {
}
.event-card__text {
  height: 51px;
  overflow: hidden;
  margin-bottom: 5px;
  width: 100%;
}
.event-card__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1.1;
}
.event-card-visible {
  z-index: 0;
  position: relative;
}
.event-card-hidden {
  opacity: 0;
  height: 153px;
  overflow: hidden;
  transition: all linear 250ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  background-color: #ffffff;
  z-index: 1;
}
.event-card:nth-last-child(-n + 4) .event-card-hidden {
  height: 213px;
  top: unset;
  bottom: 0;
}
.event-card__img {
  margin-bottom: 15px;
  height: 103px;
  overflow: hidden;
}
.event-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.event-card.active {
  z-index: 2;
}
.event-card:hover:nth-last-child(-n + 4) .event-card-hidden,
.event-card:nth-last-child(-n + 4) .event-card-hidden.active,
.event-card-hidden.active {
  opacity: 1;
  height: 436px;
}
.event-card-hidden .btn-global,
.event-card-hidden .event-card__sticker {
  margin-left: 27px;
}
.event-card-hidden .event-card__date,
.event-card-hidden .event-card__title,
.event-card-hidden .event-card__text {
  padding-left: 27px;
  padding-right: 27px;
}
.calendar-decor-element {
    display: none;
  position: absolute;
  bottom: -179px;
  left: -1013px;
}
.calendar-decor-element-2 {
    display: none;
  position: absolute;
  top: 181px;
  right: -383px;
}

/* event slider nav btns */
.events-slider .owl-nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  outline: none !important;
}
.events-slider .owl-nav button img {
  width: 14px;
  height: 14px;
  display: block;
  opacity: 0.7;
}
.events-slider .owl-nav button:hover img {
  opacity: 1;
}
.events-slider .owl-nav button.owl-prev {
  left: -58px;
}
.events-slider .owl-nav button.owl-next {
  right: -58px;
}

/* projects block */

.projects-block {
  /* background: url("../img/main-page/projects-block-bg.png") top / cover no-repeat; */
  position: relative;
  z-index: 1;
}
.projects-block .container {
  position: relative;
  padding-top: 90px;
  padding-bottom: 112px;
}
.projects-block-content {
  position: relative;
}
.projects-slider {
  position: relative;
  padding-top: 44px;
}
.projects-slide {
  height: 388px;
  display: block;
  margin-bottom: 22px;
}
.projects-slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}
.projects-slide-content__img {
  width: 100%;
  max-width: 690px;
  height: inherit;
  position: relative;
  overflow: hidden;
}
.projects-slide-content__img img {
  width: 100%;
  height: inherit;
  display: block;
}
.projects-slide-info {
  background-color: #f7f7f7;
  padding: 55px 37px;
  width: 100%;
  max-width: 450px;
}
.projects-slide-info__title {
  margin-bottom: 50px;
}
.projects-slide-info__title h3 {
  color: #1750ed;
  font-family: var(--Helv-B);
  font-size: 25px;
  line-height: 1.3;
  width: 100%;
  max-width: 320px;
  text-transform: uppercase;
}
.projects-slide-info__text {
}
.projects-slide-info__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1.2;
}
.projects-slide-info__text p:not(:last-child) {
  margin-bottom: 18px;
}
.projects-bottom-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.project-bottom {
  width: 49%;
  display: block;
  background-color: #f7f7f7;
}
.project-bottom .projects-slide-content__img {
  width: 100%;
  height: 299px;
}
.project-bottom .projects-slide-content__img img {
  width: 100%;
  height: inherit;
  display: block;
}
.project-bottom .projects-slide-info {
  background-color: #f7f7f7;
  padding: 15px 15px;
  width: 100%;
  max-width: unset;
}
.project-bottom .projects-slide-info__title {
  margin-bottom: 20px;
  height: 25px;
  overflow: hidden;
}
.project-bottom .projects-slide-info__title h3 {
  color: #132e7d;
  font-family: var(--Helv-B);
  font-size: 25px;
  line-height: 1;
  max-width: unset;
}
.project-bottom .projects-slide-info__text {
  height: 55px;
  overflow: hidden;
}
.project-bottom .projects-slide-info__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1.2;
}

/* projects slider nav btns */
/*
.projects-slider .owl-nav button{
    position: absolute;
    top: 61%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: none !important;
}
.projects-slider .owl-nav button img{
    width: 14px;
    height: 14px;
    display: block;
    opacity: 0.7;
}
.projects-slider .owl-nav button:hover img{
    opacity: 1;
}
.projects-slider .owl-nav button.owl-prev{
    left: -58px;
}
.projects-slider .owl-nav button.owl-next{
    right: -58px;
}*/
.projects-slide .projects-slide-content__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 58px 121px 0 106px;
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
}
.projects-slide .projects-slide-content__img::after {
  content: "";
  position: absolute;
  top: -250px;
  left: -163px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 466px 208px 302px 47px;
  border-color: transparent rgba(255, 255, 255, 0.5) transparent transparent;
  -webkit-transform: rotate(-129deg);
  -ms-transform: rotate(-129deg);
  transform: rotate(-129deg);
}
.project-bottom:last-child .projects-slide-content__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 116px 0 0;
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
}
.project-bottom:last-child .projects-slide-content__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 70px 110px;
  border-color: transparent transparent rgba(255, 255, 255, 0.5) transparent;
}
.project-bottom:first-child .projects-slide-content__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 76px 0 0 78px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
}
.project-bottom:first-child .projects-slide-content__img::after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 91px 144px 75px 0;
  border-color: transparent rgba(255, 255, 255, 0.5) transparent transparent;
}

/* gallery block */

.gallery-block {
  background: url("../img/main-page/gallery-block-bg-new.jpg") center / cover
    no-repeat;
  position: relative;
  z-index: 1;
}
.gallery-block .load-more-btn-wrap {
  display: flex;
}
.gallery-block .container {
  position: relative;
  padding-top: 76px;
  padding-bottom: 136px;
}
.gallery-block-content {
  position: relative;
  padding-top: 29px;
}
.gallery-decor-element {
    display: none;
  position: absolute;
  bottom: -98px;
  right: -351px;
}
.gallery-slider {
}
.gallery-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gallery-slide__img {
  position: relative;
  width: 24%;
  height: 280px;
  margin-bottom: 1.33%;
  display: block;
}
.gallery-slide__img img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  object-fit: cover;
  object-position: center;
}
.gallery-img-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(19, 47, 127, 0.6);
  z-index: 1;
  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;

  opacity: 0;

  -webkit-transition: opacity linear 200ms;
  -o-transition: opacity linear 200ms;
  transition: opacity linear 200ms;
}
.gallery-img-mask img {
  display: block;
  width: 95px !important;
  height: 89px !important;
}
.gallery-slide__img:hover .gallery-img-mask {
  opacity: 1;
}
/*
.gallery-slide__img:hover::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(200, 50, 45, 0.4);
    z-index: 1;
}
.gallery-slide__img:hover::after{
    content: "";
    position: absolute;
    width: 95px;
    height: 89px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    background: url("../img/main-page/gallery-hover.png") center / auto no-repeat;
}*/
.gallery-slide__img:not(:last-child) {
  margin-right: 1.33%;
}
.gallery-slide__img:nth-child(4n) {
  margin-right: 0;
}

/* vue slider */
.gallery-slider {
  height: 573px;
}
.carousel-3d-container[data-v-c06c963c] {
  height: inherit !important;
  overflow: visible !important;
}
.carousel-3d-slider[data-v-c06c963c] {
  height: inherit !important;
  width: inherit !important;
}
.carousel-3d-slide {
  height: inherit !important;
  width: inherit !important;
  border: none !important;
  background-color: unset !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.carousel-3d-slide.current {
  opacity: 1 !important;
  pointer-events: initial !important;
}
.carousel-3d-controls[data-v-43e93932] {
  top: 100% !important;
  margin-top: 0 !important;
}
.next[data-v-43e93932],
.prev[data-v-43e93932] {
  top: unset !important;
  bottom: -50px !important;
}
.next[data-v-43e93932] {
  right: 40% !important;
}
.prev[data-v-43e93932] {
  left: 40% !important;
}

/* archive events block */

.archive-events-block {
  position: relative;
}
.archive-events-block .container {
  position: relative;
  padding-top: 50px;
}
.archive-events-content {
  position: relative;
  padding-top: 25px;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-archive-event {
  background-color: #eeedf2;
  width: 100%;
  max-width: 390px;
  padding: 10px 0 12px;
}
.main-archive-event__date {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 8px;
}
.main-archive-event__date p {
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 12px;
  color: #000;
}
.main-archive-event__title {
  padding-left: 30px;
  padding-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: underline !important;
  height: 30px;
  overflow: hidden;
  margin-bottom: 24px;
  color: #4a3091;
}
.main-archive-event__title:hover {
  text-decoration: none !important;
}
.main-archive-event__title img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 5px;
}
.main-archive-event__title h4 {
  font-family: var(--Helv-R);
  line-height: 1.2;
  font-size: 13px;
  color: #000;
  text-transform: uppercase;
}
.main-archive-event__img {
  width: 100%;
  height: 147px;
  overflow: hidden;
  margin-bottom: 15px;
  display: block;
}
.main-archive-event__img img {
  display: block;
  width: 100%;
  height: auto;
}
.main-archive-event__text {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 5px;
  height: 90px;
  overflow: hidden;
}
.main-archive-event__text p {
  padding: 0 18px;
  text-align: justify;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
  color: #000000;
}
.main-archive-event__link {
  padding-left: 30px;
  padding-right: 30px;
}
.main-archive-event__link .btn-global {
  background-color: transparent;
  color: #4a3091;
  font-family: var(--Helv-L);
  padding: 8px 33px 8px 4px;
}
.main-archive-event__link .inner-link-btn-dots {
  right: 24px;
}
.main-archive-event__link .inner-link-btn-dots,
.main-archive-event__link .inner-link-btn-dots::before,
.main-archive-event__link .inner-link-btn-dots::after {
  background-color: #4a3091;
}
.others-archive-events {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.other-archive-event {
  padding: 10px 15px 20px 30px;
  margin-bottom: 14px;
  position: relative;
  width: 100%;
  max-width: 360px;
  height: intrinsic;
  height: -moz-max-content;
  height: -webkit-max-content;
  height: fit-content;
}
.other-archive-event::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background-color: #eaeaea;
}
.other-archive-event__date {
  margin-bottom: 9px;
}
.other-archive-event__date p {
  color: #000;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
}
.other-archive-event__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: underline !important;
  height: 44px;
  overflow: hidden;
  margin-bottom: 0;
  color: #000000;
}
.other-archive-event__title:hover {
  text-decoration: none !important;
}
.other-archive-event__title img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 5px;
}
.other-archive-event__title h4 {
  font-family: var(--Helv-R);
  line-height: 1.1;
  font-size: 13px;
  color: #000000;
  text-transform: uppercase;
}
.other-archive-event__link {
}
.other-archive-event__link .btn-global {
  background-color: transparent;
  color: #1750ed;
  font-family: var(--Helv-L);
  padding: 8px 33px 8px 4px;
}
.other-archive-event__link .inner-link-btn-dots {
  right: 24px;
}
.other-archive-event__link .inner-link-btn-dots,
.other-archive-event__link .inner-link-btn-dots::before,
.other-archive-event__link .inner-link-btn-dots::after {
  background-color: #1750ed;
}

/* DOCUMENTS */

.documents-page {
  /* background: url("../img/documents/documents-bg.png") center / cover no-repeat; */
  min-height: calc(100vh - 168px);
}
.documents-page .container {
  padding-top: 60px;
  padding-bottom: 50px;
}
.documents-page-content {
  padding-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.documents-aside-nav {
  width: 100%;
  max-width: 280px;
}
.documents-aside-nav.active {
  left: 0;
}
.show-doc-nav {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 158px;
  left: 1px;
}
.show-doc-nav svg {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  animation: showAsideDocNav 1000ms 3;
  background-color: #f0f0f0;
  border-radius: 4px;
  transition: left linear 350ms;
}
@keyframes showAsideDocNav {
  0% {
    left: 0;
  }
  50% {
    left: -5px;
    fill: #183286;
  }
  100% {
    left: 2px;
  }
}
.hide-doc-nav {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  right: -32px;
  background-color: #f0f0f0;
}
.hide-doc-nav svg {
  fill: #f10000;
  width: 30px;
  height: 30px;
}
.documents-nav {
  width: 100%;
}
.documents-nav-ul {
  width: 100%;
}
.documents-nav-ul__li {
  width: 100%;
  padding: 20px 24px;
  background-color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  color: #2d2938;
  font-family: var(--Helv-R);
  position: relative;
  cursor: pointer;
}
.documents-nav-ul__li:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
}
.documents-nav-ul__li img {
}
.documents-nav-ul__li.active {
  background-color: #f0f0f0;
  color: #4f509a;
}
.documents-nav-ul__li:hover {
  color: #4f509a;
  background-color: #e7e7e7;
}
.documents-nav-ul__li.active::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 8px;
  background: url("../img/documents/documents-nav-arrow.png") center / contain
    no-repeat;
}
.documents-block {
  padding: 0 0 0 28px;
  width: calc(100% - 280px);
}
.documents-tab {
  display: none;
}
.documents-tab.active {
  display: block;
  animation: tabAnimation 550ms forwards;
}
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.documents-tab-content {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.document-item {
  width: 33%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 15px;
}
.document-item__img-wrap {
  width: 100%;
  max-width: 52px;
}
.document-item__img-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}
.document-item__desc {
  padding-left: 12px;
}
.document-item__desc h3 {
  font-size: 15px;
  line-height: 1.1;
  color: #2f3040;
  font-family: var(--Helv-R);
  margin-bottom: 5px;
}
.document-item__desc p {
  font-size: 15px;
  line-height: 1;
  color: #494da3;
  font-family: var(--Helv-R);
}
.document-item:hover .document-item__desc h3 {
  color: #494da3;
}

/* CONTACT PAGE */

.contact-page {
  position: relative;
  background-color: #eaeaea;
  min-height: 100vh;
  min-height: 50vh;
}
.contact-map-block {
  width: 100%;
  height: 580px;
  position: relative;
}
.contact-map-wrap {
  width: 100%;
  height: 580px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-map-wrap > ymaps,
.contact-map-wrap > ymaps > ymaps,
.contact-map-wrap > ymaps > ymaps > ymaps {
  width: 100vw !important;
}
.contact-map-block .container {
  padding-top: 80px;
}
.contact-content-wrap {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 460px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}
.contact-block {
  margin-top: 2px;
}
.contact-items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact-item {
  margin-bottom: 30px;
  width: 100%;
  padding-right: 10px;
}
.contact-items-wrap .contact-item {
  width: 50%;
}
.contact-item__title {
  margin-bottom: 15px;
}
.contact-item__title h3 {
  line-height: 1;
  font-size: 15px;
  font-family: var(--Helv-B);
  color: #000;
}
.contact-item__text {
  display: block;
}
.contact-item__text:hover p {
  color: #301b6c;
}
.contact-item__text p {
  line-height: 1;
  font-size: 15px;
  font-family: var(--Helv-L);
  color: #231f2d;
  cursor: pointer;
}
.social-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start !important;
  height: auto !important;
}
.contact-item svg {
  display: block;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  fill: #1750ed;
  transition: all linear 200ms;
}
.contact-item svg:hover {
  fill: #132f7e;
}
.social-block a {
  display: block;
  margin-right: 8px;
}
.press-centre-block {
  background-color: #eaeaea;
}
.press-centre-block .container {
  padding-top: 73px;
  padding-bottom: 73px;
}
.press-centre-block .contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.press-centre-btn-wrap {
  width: 100%;
}
.press-centre-block .contact-item {
  margin-bottom: 30px;
  width: auto;
  padding-right: 10px;
}
.press-centre-block .contact-items-wrap .contact-item {
  width: auto;
}

/* MEDIA PAGE */

.media-decor-1 {
    display: none;
  position: absolute;
  top: 150px;
  left: -150px;
}
.media-decor-2 {
    display: none;
  position: absolute;
  top: 416px;
  right: -213px;
  z-index: 1;
}
.media-decor-3 {
    display: none;
  position: absolute;
  left: -156px;
  top: 287px;
}
.media-decor-4 {
    display: none;
  position: absolute;
  top: 60%;
  left: -600px;
}
.media-decor-5 {
    display: none;
  position: absolute;
  right: -91px;
  bottom: 192px;
}
.media-page {
  background: #f0f0f0;
  position: relative;
  overflow-y: hidden;
  min-height: calc(100vh - 155px);
}
.media-page .container {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
}
.media-tabs-block {
  padding-top: 44px;
  position: relative;
  z-index: 2;
}
.media-tab {
  display: none;
}
.media-tab.active {
  display: block;
  animation: tabAnimation 550ms forwards;
}
.media-tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*padding-bottom: 35px;*/
}
.media-tab-item {
  /*width: 32%;*/
  width: 359px;
  height: 428px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 20px;
  margin-bottom: 20px;
}
.media-tab-item:nth-child(3n) {
  margin-right: 0;
}
.media-tab-item:not(:last-child) {
  margin-right: 20px;
}
.media-tab-item__img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.media-tab-item__img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: rgba(47, 46, 66, 0);
  background: -moz-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(47, 46, 66, 0)),
    color-stop(51%, rgba(47, 46, 66, 0.82)),
    color-stop(100%, rgba(47, 46, 66, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f2e42', endColorstr='#2f2e42', GradientType=0 );
}
.media-tab-item__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.media-tab-info {
  position: relative;
}
.media-tab-info__title {
  height: 31px;
  overflow: hidden;
  margin-bottom: 15px;
  display: block;
}
.media-tab-info__title h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-B);
}
.media-tab-info__title:hover h3 {
  color: #ffffff;
}
.media-tab-info .btn-global-2 {
  max-width: 315px;
  padding: 15px 15px;
  width: 100%;
  color: #ffffff;
  background-color: #1750ed;
}
.media-tab-info__date-volume {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.media-tab-info__date {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-family: var(--Helv-L);
}
.media-tab-info__volume {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-family: var(--Helv-L);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.media-tab-info__volume img {
  display: block;
  width: 21px;
  height: auto;
  margin-right: 10px;
}
.media-tab .load-more-btn-wrap {
  display: flex;
}

/* NEWS PAGE */

.news-page-decor-1 {
    display: none;
  position: absolute;
  left: -400px;
  top: 500px;
}
.news-page-decor-2 {
    display: none;
  position: absolute;
  right: -180px;
  top: 45%;
}
.news-page-decor-3 {
    display: none;
  position: absolute;
  right: -800px;
  bottom: 180px;
}
.news-page {
  /* background: url("../img/news/news-bg.png") center / cover no-repeat; */
  min-height: calc(100vh - 167px);
}
.news-page .container {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
}
.news-page-tabs-block {
  padding-top: 44px;
}
.news-page-tab {
  display: none;
}
.news-page-tab.active {
  display: block;
  animation: tabAnimation 550ms forwards;
}
.news-page-tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 35px;
  padding-top: 19px;
  position: relative;
}
.news-page-tab-content .news-item .btn-global-2 {
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}
.news-capital {
  padding-bottom: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.news-capital-vertical {
}
.news-capital-horizontal {
}
.capital-news-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 20px;
}
.capital-news-item.horizontal {
  width: 639px;
  height: 284px;
}
.capital-news-item.horizontal:not(:last-child) {
  margin-bottom: 14px;
}
.capital-news-item.vertical {
  width: 487px;
  height: 582px;
}
.capital-news-item-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.capital-news-item-img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 95%;
  background: rgba(47, 46, 66, 0);
  background: -moz-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(47, 46, 66, 0)),
    color-stop(51%, rgba(47, 46, 66, 0.82)),
    color-stop(100%, rgba(47, 46, 66, 1))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(47, 46, 66, 0) 0%,
    rgba(47, 46, 66, 0.82) 51%,
    rgba(47, 46, 66, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2f2e42', endColorstr='#2f2e42', GradientType=0 );
}
.capital-news-item-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.capital-news-item-info {
  position: relative;
}
.capital-news-item-info__title {
  /*height: 31px;*/
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  max-width: 310px;
}
.capital-news-item-info__title h3 {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-B);
}
.capital-news-item-info__title:hover h3 {
  color: #ffffff;
}
.capital-news-item-info__text {
  margin-bottom: 44px;
  width: 100%;
  max-width: 360px;
  height: 66px;
  overflow: hidden;
}
.capital-news-item-info__text,
.capital-news-item-info__text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-L);
}
.capital-news-item-info .btn-global-2 {
  max-width: 245px;
  height: 43px;
  padding: 15px 15px;
  font-size: 12px;
  font-family: var(--Helv-L);
  width: 100%;
  color: #ffffff;
  min-height: unset;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
}
.capital-news-item-info__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
}
.capital-news-item-info__date p {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-family: var(--Helv-L);
}

/* ABOUT PAGE */

.about-page {
  background: url("../img/about/about-bg.png") center / cover no-repeat;
  min-height: calc(100vh - 168px);
}
.about-page .container {
  padding-top: 70px;
  padding-bottom: 80px;
}
.about-content {
  position: relative;
  padding-top: 65px;
}
.about-tabs-nav {
  position: absolute;
  top: -28px;
  left: 144px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-tab-nav {
  width: 182px;
  height: 40px;
  border: 1px solid #adabcd;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  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;
}
.about-tab-nav:not(:last-child) {
  margin-right: 18px;
}
.about-tab-nav p {
  color: #2f3142;
  font-size: 12px;
  line-height: 1;
  font-family: var(--Helv-R);
  text-transform: uppercase;
}
.about-tab-nav.active,
.about-tab-nav:hover {
  border: 1px solid #dd5252;
  background-color: #dd5252;
}
.about-tab-nav.active p,
.about-tab-nav:hover p {
  color: #ffffff;
}
.about-tabs-block {
}
.about-tab {
  display: none;
}
.about-tab.active {
  display: block;
  animation: tabAnimation 550ms forwards;
}
.about-tab-content {
}
.counsel-block {
  padding: 45px 40px 5px 45px;
  background-color: #ffffff;
}
.counsel-block:not(:last-child) {
  margin-bottom: 35px;
}
.counsel-block__title {
  margin-bottom: 30px;
}
.counsel-block__title h3 {
  color: #262536;
  font-size: 16px;
  line-height: 1;
  font-family: var(--Helv-B);
  text-transform: uppercase;
}
.counsel-members-list {
}
.counsel-member {
  border-top: 1px solid #e5e5e5;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.counsel-member__name {
  width: 277px;
}
.counsel-member__name p {
  color: #262536;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-B);
}
.counsel-member__position {
  width: 765px;
}
.counsel-member__position p {
  color: #51529c;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-R);
}
.supervisory-committee {
  border-top: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 20px;
}
.supervisory-committee-regulation {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 10px;
  margin-bottom: 35px;
}
.supervisory-committee-regulation__icon {
  margin-right: 15px;
}
.supervisory-committee-regulation__icon img {
  display: block;
  width: 32px;
  height: 35px;
}
.supervisory-committee-regulation__link {
  text-decoration: underline !important;
  color: #3d4984;
  font-size: 12px;
  line-height: 1.1;
  font-family: var(--Helv-R);
}
.supervisory-committee-regulation__link:hover {
  text-decoration: none !important;
  color: #3d4984;
}
.management-main-content {
  margin-bottom: 10px;
  width: 100%;
}
.management-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 390px;
}
.management-main__img-wrap {
  height: inherit;
  width: 416px;
}
.management-main__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.management-main-info {
  background-color: #555498;
  padding: 40px 40px 85px;
  position: relative;
  height: inherit;
  overflow: hidden;
  width: 724px;
}
.management-main-info__title {
  margin-bottom: 18px;
}
.management-main-info__title h3 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  font-family: var(--Helv-B);
  text-transform: uppercase;
}
.management-main-info__subtitle {
  margin-bottom: 5px;
  height: 45px;
  overflow: hidden;
}
.management-main-info__subtitle h4 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-R);
}
.management-main-info__text {
  margin-bottom: 30px;
  height: 145px;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-L);
}
.management-main-info__text p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1;
  font-family: var(--Helv-L);
}
.management-main-info .btn-global-2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 166px;
  height: 39px;
  min-width: unset;
  min-height: unset;
  width: -moz-max-content;
  width: -webkit-max-content;
  width: fit-content;
  color: #ffffff;
  background-color: #f0a71b;
}
.management-main-info .btn-global-2 img {
  margin-left: 10px;
  padding-bottom: 2px;
}
.management-secondary-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.management-secondary {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 333px;
  background: url("../img/about/secondary-management-bg.png") center / cover
    no-repeat;
  margin-bottom: 2%;
}
.management-secondary:not(:last-child) {
  margin-right: 2%;
}
.management-secondary:nth-child(2n) {
  margin-right: 0;
}
.management-secondary__img-wrap {
  height: inherit;
  width: 45%;
}
.management-secondary__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.management-secondary-info {
  position: relative;
  padding: 30px 30px 85px;
  height: inherit;
  overflow: hidden;
  width: 55%;
}
.management-secondary-info__title {
  margin-bottom: 18px;
}
.management-secondary-info__title h3 {
  color: #301b6c;
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--Helv-B);
}
.management-secondary-info__subtitle {
  height: 140px;
  overflow: hidden;
}
.management-secondary-info__subtitle h4 {
  color: #312a44;
  font-size: 15px;
  line-height: 1.2;
  font-family: var(--Helv-L);
}
.management-secondary-info .btn-global-2 {
  position: absolute;
  left: 30px;
  bottom: 35px;
  min-width: unset;
  min-height: unset;
  width: 166px;
  height: 39px;
  border: 1px solid #dd5252;
  background-color: #dd5252;
  font-size: 12px;
  color: #ffffff;
}
.management-secondary-info .btn-global-2 img {
  margin-left: 10px;
  padding-bottom: 1px;
}

/* SEARCH PAGE */

.search-page {
  /* background: url("../img/about/about-bg.png") center / cover no-repeat; */
  background-color: #f0f0f0;
}
.search-page .container {
  padding-top: 95px;
  padding-bottom: 75px;
}
.search-page-form {
  width: 100%;
  margin-bottom: 55px;
}
.search-page-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
  height: 54px;
  overflow: hidden;
  border-radius: 5px;
}
.search-page-form-group input {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  flex-grow: 1;
  border: none;
}
/*----- placeholder style -----*/
.search-page-form-group input::-webkit-input-placeholder {
  color: #aeaeae;
  opacity: 1;
  text-align: left !important;
}
.search-page-form-group input:-moz-placeholder {
  color: #aeaeae;
  opacity: 1;
  text-align: left !important;
}
.search-page-form-group input::-moz-placeholder {
  color: #aeaeae;
  opacity: 1;
  text-align: left !important;
}
.search-page-form-group input:-ms-input-placeholder {
  color: #aeaeae;
  opacity: 1;
  text-align: left !important;
}
.search-page-form-group input[type="text"]:focus {
  outline: 0 !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  border: none !important;
}
.search-page-form-group button {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 166px;
  background-color: #4d50a0;
  border: none;
  color: #ffffff;
  font-family: var(--Helv-M);
  line-height: 1;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  outline: none;
}
.search-page-form-group button img {
  display: block;
  margin-left: 15px;
}
.search-results-block__title {
  margin-bottom: 50px;
}
.search-results-block__title h5 {
  color: #2e2d40;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 15px;
}
.search-result {
  margin-bottom: 40px;
  display: block;
}
.search-result:hover .search-result__title h3 {
  color: #183286;
}
.search-result:hover .search-result__text p {
  color: #2e2d40;
}
.search-result__title {
  margin-bottom: 20px;
}
.search-result__title h3 {
  color: #000000;
  font-family: var(--Helv-B);
  line-height: 1.1;
  font-size: 15px;
}
.search-result__text {
}
.search-result__text p {
  color: #000000;
  font-family: var(--Helv-L);
  line-height: 1.1;
  font-size: 15px;
}

/* POLICY PAGE */

.policy-page {
}
.policy-page .container {
  padding-top: 50px;
  padding-bottom: 65px;
}
.policy-block {
  padding-top: 38px;
}
.policy-block__title {
  margin-bottom: 20px;
}
.policy-block__title h3 {
  color: #000000;
  font-family: var(--Helv-B);
  line-height: 1.1;
  font-size: 15px;
}
.policy-block__text {
  margin-bottom: 20px;
}
.policy-block__text p {
  color: #000000;
  font-family: var(--Helv-L);
  line-height: 1.1;
  font-size: 15px;
}

/* PARTNERSHIP PAGE */

.partnership-page {
}
.partnership-form-block-outer .container {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
}
.partnership-form-block-outer {
  background: url("../img/partnership/partners-form-bg.png") no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
}
.partnership-form-wrap {
  padding-top: 44px;
}
.partnership-form {
  position: relative;
}
.partnership-form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.partnership-form-block:not(:last-child) {
  margin-bottom: 15px;
}
.partnership-form-group {
  width: 49%;
}
.partnership-form-group:not(:last-child) {
  margin-right: 2%;
}
.partnership-form-field-group {
  position: relative;
  width: 100%;
}
.partnership-form-field-group:not(:last-child) {
  margin-bottom: 15px;
}
.partnership-form-field-group input {
  width: 100%;
  height: 53px;
  border: 1px solid #e6e6e6;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 3px;
}
.partnership-form-field-group textarea {
  height: inherit;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  resize: none;
  border-radius: 3px;
}
/*----- placeholder style -----*/
.partnership-form-field-group input:focus::placeholder {
  color: transparent;
}
.partnership-form-field-group textarea::-webkit-input-placeholder,
.partnership-form-field-group input::-webkit-input-placeholder {
  opacity: 0.5;
  text-align: left !important;
}
.partnership-form-field-group textarea:-moz-placeholder,
.partnership-form-field-group input:-moz-placeholder {
  opacity: 0.5;
  text-align: left !important;
}
.partnership-form-field-group textarea::-moz-placeholder,
.partnership-form-field-group input::-moz-placeholder {
  opacity: 0.5;
  text-align: left !important;
}
.partnership-form-field-group textarea::-ms-input-placeholder,
.partnership-form-field-group input:-ms-input-placeholder {
  opacity: 0.5;
  text-align: left !important;
}
.partnership-form-field-group textarea:focus,
.partnership-form-field-group input:focus {
  outline: 0 !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
  border: 1px solid #e6e6e6;
}
.partnership-form-field-group.textarea {
  height: 100%;
}
.partnership-form-submit-group {
  margin-right: 1%;
  width: 24%;
}
.partnership-form-submit-group input {
  background-color: #4f4f9c;
  border: none;
  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;
  width: 100%;
  height: 53px;
  color: #ffffff;
  font-family: var(--Helv-R);
  line-height: 1;
  font-size: 12px;
  letter-spacing: 1.8px;
  border-radius: 3px;
  text-transform: uppercase;
}
.partnership-form-file-group {
  margin-right: 2%;
  width: 24%;
}
.partnership-form-file-group input {
  display: none;
}
.partnership-form-file-group label {
  background-color: #f5a50b;
  border: none;
  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;
  width: 100%;
  height: 53px;
  color: #ffffff;
  font-family: var(--Helv-R);
  line-height: 1;
  font-size: 12px;
  letter-spacing: 1.8px;
  border-radius: 3px;
  text-transform: uppercase;
  cursor: pointer;
}
.partnership-form-file-group label img {
  margin-right: 15px;
}
.partnership-form-checkbox-group {
  width: 49%;
}
.partnership-form-checkbox-group input {
  display: none;
}
.partnership-form-checkbox-group label {
  padding-left: 30px;
  color: #66657e;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
  position: relative;
}
.partnership-form-checkbox-group label a {
  color: #183286;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
  text-decoration: underline !important;
}
.partnership-form-checkbox-group label a:hover {
  color: #183286;
  text-decoration: none !important;
}
.partnership-form-checkbox-group label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  width: 21px;
  height: 21px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  cursor: pointer;
}
.partnership-form-checkbox-group input:checked + label::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: url("../img/partnership/checked-icon.png") center / contain
    no-repeat;
  z-index: 2;
}
.partnership-form-checkbox-group input:checked + label::before {
  background-color: #e98a1a;
  z-index: 1;
  border: none;
}
.partners-block {
  overflow: hidden;
}
.partners-block .container {
  padding-bottom: 50px;
  padding-top: 68px;
  position: relative;
}
.partners-content {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.partner-item {
  width: 20%;
  padding: 0 10px;
  margin-bottom: 40px;
}
.partner-item__img-wrap {
  height: 90px;
  width: 100%;
  margin-bottom: 20px;
}
.partner-item__img-wrap img {
  display: block;
  height: 100%;
  margin: 0 auto;
}
.partner-item__text {
}
.partner-item__text h3 {
  text-align: center;
  color: #24242a;
  font-family: var(--Helv-B);
  line-height: 1.1;
  font-size: 15px;
  text-transform: uppercase;
}
.partner-decor-1 {
    display: none;
  position: absolute;
  left: -263px;
  bottom: 110px;
}
.partner-decor-2 {
    display: none;
  position: absolute;
  bottom: 17px;
  right: -150px;
}
.partner-decor-3 {
    display: none;
  position: absolute;
  right: 0;
  bottom: -115px;
}
.partner-decor-4 {
    display: none;
  position: absolute;
  left: -170px;
  top: 378px;
}
.partner-decor-5 {
    display: none;
  position: absolute;
  right: -300px;
  top: 476px;
}

/* NEWS DETAILS */

.news-details-page {
  /* background: url("../img/news-details/news-details-bg.png") center / cover no-repeat; */
  min-height: calc(100vh - 168px);
}
.news-details-page .container {
  padding-top: 60px;
  padding-bottom: 88px;
}
.news-details-block .gallery-block {
  padding-top: 84px;
  background: none;
}
.news-details-block .gallery-block-content {
  padding-bottom: 74px;
}
.news-details {
  padding-top: 35px;
}
.news-container {
  background-color: #ffffff;
}
.news-item-banner {
  position: relative;
}
.news-item-banner__img-wrap {
  height: 447px;
  width: 100%;
  position: relative;
}
.news-item-banner__img-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0)),
    color-stop(43%, rgba(0, 0, 0, 0.58)),
    color-stop(70%, rgba(0, 0, 0, 0.72)),
    color-stop(100%, rgba(0, 0, 0, 0.88))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  z-index: 1;
}
.news-item-banner__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.news-item-banner-info {
  position: absolute;
  left: 45px;
  bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}
.news-item-banner-info__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px;
}
.news-item-banner-info__date p {
  color: #f6c139;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 20px;
  text-transform: uppercase;
}
.news-item-banner-info__date img {
  margin-right: 15px;
  display: block;
}
.news-item-banner-info__venue {
}
.news-item-banner-info__venue p {
  color: #ffffff;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 16px;
}
.news-item-content {
  padding: 40px 45px 20px;
}
.news-item-content__title {
  margin-bottom: 30px;
}
.news-item-content__title h3 {
  color: #000000;
  font-family: var(--Helv-B);
  line-height: 1.1;
  font-size: 15px;
  text-transform: uppercase;
}
.news-item-content__text {
}
.news-item-content__text p {
  color: #000000;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
  margin-bottom: 18px;
}
.news-item-content > a {
  display: block;
  width: 120px;
  height: auto;
  margin-top: 20px;
}
.news-item-content > a > img {
  max-width: 100%;
  display: block;
}
.news-details__video {
  padding: 20px 0;
}
.news-details__video > video {
  width: 100%;
}

/* EVENT DETAILS */

.event-details-page {
  /* background: url("../img/news-details/news-details-bg.png") center / cover no-repeat; */
}
.event-details-page .container {
  padding-top: 60px;
  padding-bottom: 88px;
}
.event-details-block .gallery-block {
  padding-top: 84px;
  background: none;
}
.event-details-block .gallery-block-content {
  padding-bottom: 74px;
}
.event-details {
  padding-top: 35px;
}
.event-container {
  background-color: #ffffff;
}
.event-item-banner {
  position: relative;
}
.event-item-banner__img-wrap {
  height: 447px;
  width: 100%;
  position: relative;
}
.event-item-banner__img-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0)),
    color-stop(43%, rgba(0, 0, 0, 0.58)),
    color-stop(70%, rgba(0, 0, 0, 0.72)),
    color-stop(100%, rgba(0, 0, 0, 0.88))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  z-index: 1;
}
.event-item-banner__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.event-item-banner-info {
  position: absolute;
  left: 45px;
  bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 2;
}
.event-item-banner-info__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 40px;
}
.event-item-banner-info__date p {
  color: #1750ed;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 20px;
}
.event-item-banner-info__date p span {
  font-size: 45px;
  height: 40px;
  display: inline-block;
}
.event-item-banner-info__date img {
  margin-right: 15px;
  display: block;
}
.event-item-banner-info__venue {
}
.event-item-banner-info__venue p {
  color: #ffffff;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 16px;
}
.event-item-content {
  padding: 40px 45px 20px;
}
.event-item-content__title {
  margin-bottom: 30px;
}
.event-item-content__title h3 {
  color: #000000;
  font-family: var(--Helv-B);
  line-height: 1.1;
  font-size: 15px;
  text-transform: uppercase;
}
.event-item-content__text {
}
.event-item-content__text p {
  color: #000000;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
  margin-bottom: 18px;
}

/* ALBUM DETAILS */

.album-details-page {
  background: url("../img/news-details/news-details-bg.png") center / cover
    no-repeat;
}
.album-details-page .container {
  padding-top: 60px;
  padding-bottom: 88px;
}
.album-details-block .gallery-block {
  padding-top: 84px;
  background: none;
}
.album-details-block .gallery-block-content {
  padding-bottom: 74px;
}
.album-details {
  padding-top: 35px;
}
.album-container {
  background-color: #ffffff;
}
.album-item-banner {
  position: relative;
}
.album-item-banner__img-wrap {
  height: 447px;
  width: 100%;
  position: relative;
}
.album-item-banner__img-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0);
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, rgba(0, 0, 0, 0)),
    color-stop(43%, rgba(0, 0, 0, 0.58)),
    color-stop(70%, rgba(0, 0, 0, 0.72)),
    color-stop(100%, rgba(0, 0, 0, 0.88))
  );
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.58) 43%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.88) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
  z-index: 1;
}
.album-item-banner__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.album-item-banner-info {
  position: absolute;
  left: 45px;
  bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 2;
}
.album-item-banner-info__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-right: 40px;
}
.album-item-banner-info__date p {
  color: #f6c139;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 20px;
}
.album-item-banner-info__date p span {
  font-size: 45px;
  height: 40px;
  display: inline-block;
}
.album-item-banner-info__date img {
  margin-right: 15px;
  display: block;
}
.album-item-banner-info__venue {
}
.album-item-banner-info__venue p {
  color: #ffffff;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 16px;
}
.album-item-content {
  padding: 40px 45px 20px;
}
.album-item-content__title {
  margin-bottom: 30px;
}
.album-item-content__title h3 {
  color: #000000;
  font-family: var(--Helv-B);
  line-height: 1.1;
  font-size: 15px;
  text-transform: uppercase;
}
.album-item-content__text {
}
.album-item-content__text p {
  color: #000000;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
  margin-bottom: 18px;
}
.gallery-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery-item {
  width: 24%;
  height: 250px;
  margin: 0 0.5% 1%;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

/* CALENDAR PAGE */

.calendar-page-decor-1 {
    display: none;
  position: absolute;
  left: -120px;
  top: 600px;
  z-index: 0;
}
.calendar-page-decor-2 {
    display: none;
  position: absolute;
  right: -191px;
  top: 12px;
  z-index: 0;
}
.calendar-page {
  background-color: #f5f5f5;
}
.calendar-page .container {
  padding-top: 55px;
  padding-bottom: 65px;
  position: relative;
}
.closest-event-wrap {
  padding-top: 35px;
  padding-bottom: 60px;
}
.calendar-wrap {
  padding-top: 20px;
  position: relative;
}

/* главное событие с подробностями */
.closest-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 341px;
  margin-bottom: 10px;
}
.closest-event-info {
  height: inherit;
  width: 789px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  position: relative;
}
.closest-event-info::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 24.4px;
  border-color: transparent transparent transparent #ffffff;
}
.closest-event-img {
  width: 100%;
  max-width: 442px;
  height: inherit;
}
.closest-event-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.closest-event-data {
  padding: 18px 18px 27px;
}
.closest-event-info__sticker {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #1750ed;
  margin-bottom: 27px;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
}
.closest-event-info__sticker p {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}
.closest-event-info__title {
  height: 46px;
  overflow: hidden;
  margin-bottom: 14px;
  width: 100%;
  max-width: 250px;
}
.closest-event-info__title h3 {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 14px;
  line-height: 1.2;
}
.closest-event__date {
  margin-bottom: 32px;
}
.closest-event__date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
}
.closest-event__date-inner img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 3px;
}
.closest-event__date-inner p {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-T);
  font-size: 14px;
  line-height: 1;
}

/* главное событие без подробностей */
.closest-event.no-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 257px;
  margin-bottom: 10px;
}
.closest-event.no-details .closest-event-info {
  height: inherit;
  width: 789px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
  position: relative;
}
.closest-event.no-details .closest-event-info::before {
  display: none;
}
.closest-event.no-details .closest-event-img {
  width: 100%;
  max-width: 387px;
  height: inherit;
}
.closest-event.no-details .closest-event-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.closest-event.no-details .closest-event-data {
  padding: 24px 18px 24px 50px;
  width: 100%;
}
.closest-event.no-details .closest-event-info__sticker {
  padding: 6px 15px;
  border-radius: 5px;
  background-color: #1750ed;
  margin-bottom: 15px;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
  display: inline-block;
  text-align: center;
}
.closest-event.no-details .closest-event-info__sticker p {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}
.closest-event.no-details .main-event-info__title,
.closest-event.no-details .closest-event-info__title {
  height: 61px;
  overflow: hidden;
  margin-bottom: 20px;
  width: 100%;
  max-width: unset;
}
.closest-event.no-details .main-event-info__title h3,
.closest-event.no-details .closest-event-info__title h3 {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 18px;
  line-height: 1.2;
}
.closest-event.no-details .closest-event__date {
  margin-bottom: 32px;
}
.closest-event.no-details .closest-event__date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6px;
}
.closest-event.no-details .closest-event__date-inner img {
  width: 14px;
  height: 14px;
  display: block;
  margin-right: 3px;
}
.closest-event.no-details .closest-event__date-inner p {
  color: #000000;
  text-transform: uppercase;
  font-family: var(--Helv-T);
  font-size: 14px;
  line-height: 1;
}
.closest-event.no-details.btn-global.bg-cl-red,
.closest-event.no-details .btn-global {
  justify-content: flex-start;
  background-color: transparent;
  color: #dd5353;
  padding-left: 0;
}
.closest-event.no-details .btn-global .inner-link-btn-dots {
  background-color: #dd5353;
  right: 49px;
}
.closest-event.no-details .inner-link-btn-dots::after,
.closest-event.no-details .inner-link-btn-dots::before {
  background-color: #dd5353;
}

.closest-event__text {
  height: 80px;
  overflow: hidden;
  margin-bottom: 7px;
  width: 100%;
  max-width: 222px;
}
.closest-event__text p {
  color: #000000;
  font-family: var(--Helv-L);
  font-size: 15px;
  line-height: 1.1;
}
.closest-event-slider {
  background-color: rgba(40, 53, 121, 0.9);
  height: inherit;
  width: 100%;
  max-width: 350px;
  position: relative;
}
.closest-event-slide {
  height: inherit;
}
.closest-event-slide-content {
  height: inherit;
  overflow: hidden;
  padding: 30px 35px 60px;
}
.closest-event-slide-content p {
  margin-bottom: 17px;
  color: #ffffff;
  font-family: var(--Helv-L);
  line-height: 1.2;
  font-size: 15px;
}

/* closest event slider dots */

.closest-event-slider .owl-dots {
  position: absolute;
  bottom: 25px;
  right: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.closest-event-slider .owl-dot {
  width: 13px;
  height: 13px;
  background-color: #434b6e !important;
  border: none;
  position: relative;
  outline: none;
  border-radius: 50%;
  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;
}
.closest-event-slider .owl-dot.active span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #8b95c8 !important;
}
.closest-event-slider .owl-dot:not(:last-child) {
  margin-right: 6px;
}

.calendar-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
  margin-bottom: 1px;
  position: relative;
}
.calendar-select-block {
  position: relative;
  margin-right: 10px;
}
.selected-value {
  width: 190px;
  height: 50px;
  background-color: #ffffff;
  border: none;
  padding: 0 24px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  color: #2e2e2e;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  line-height: 50px;
  position: relative;
  cursor: pointer;
}
.selected-value::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 5px;
  background: url("../img/calendar/down-arrow.png") center / contain no-repeat;
}
.ul-select {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background-color: #ffffff;
  width: 190px;
  z-index: 5;
  display: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
.ul-select li {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1;
  color: #2e2e2e;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}
.ul-select li:hover {
  background-color: #eeeeee;
}
.ul-select.active {
  display: block;
}
.calendar-select-block.months {
  margin-bottom: 20px;
  display: none;
}
.event-types-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.event-types {
  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;
  width: 370px;
  height: 56px;
  background-color: #ffffff;
  padding: 5px;
  cursor: pointer;
}
.event-types:not(:last-child) {
  margin-right: 1px;
}
.event-types p {
  color: #000;
  font-family: var(--Helv-B);
  line-height: 1;
  font-size: 12px;
  text-transform: uppercase;
}
.event-types.active p,
.event-types:hover p {
  color: #1750ed;
}
.event-types:hover > img,
.event-types.active > img {
  /*-webkit-filter: hue-rotate(-255deg) contrast(1.2);
            filter: hue-rotate(-255deg) contrast(1.2);*/
}
.event-types img {
  display: block;
  width: 16px;
  height: 14px;
  margin-left: 18px;
}
.download-calendar-link {
  background-color: transparent;
  height: 50px;
  line-height: 1;
  width: 190px;
  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;
  color: #1750ed;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  text-decoration: underline !important;

  position: absolute;
  right: 0;
  top: -55px;
}
.download-calendar-link:hover {
  color: #1750ed;
  text-decoration: none !important;
}
.calendar-events-wrap {
  padding: 28px 15px 0;
  background-color: #ffffff;
}
.calendar-months {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5px 35px;
}
.calendar-month {
  cursor: pointer;
  color: #2e2e2e;
  font-family: var(--Helv-B);
  line-height: 1;
  font-size: 14px;
  text-transform: uppercase;
}
.calendar-month.all {
  color: #132f7e;
}
.calendar-month:hover {
  color: #1750ed;
}

.calendar-events-content {
  display: none;
  height: inherit;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.calendar-events-content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  animation: tabAnimation 550ms forwards;
}
.calendar-event-card {
  background-color: #f5f5f5;
  width: 24%;
  height: 259px;
  /*padding: 22px 8px 28px 28px;*/
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.calendar-event-card:not(:last-child) {
  margin-right: 1.33%;
}
.calendar-event-card:nth-child(4n) {
  margin-right: 0;
}
.calendar-event-card__sticker {
  padding: 6px 9px;
  border-radius: 5px;
  background-color: #fdc806;
  margin-bottom: 7px;
  width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;
}
.calendar-event-card__sticker p {
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--Helv-L);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1px;
}
.calendar-event-card__text {
  margin-bottom: 5px;
  width: 100%;
  height: 99px;
  overflow: hidden;
  position: relative;
}
.calendar-event-card__text.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85px;
  height: 14px;
  z-index: 3;
  background: rgba(245, 245, 245, 0.64);
  background: -moz-linear-gradient(
    left,
    rgba(245, 245, 245, 0.64) 0%,
    rgba(245, 245, 245, 0.95) 35%,
    rgba(245, 245, 245, 1) 100%
  );
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(245, 245, 245, 0.64)),
    color-stop(35%, rgba(245, 245, 245, 0.95)),
    color-stop(100%, rgba(245, 245, 245, 1))
  );
  background: -webkit-linear-gradient(
    left,
    rgba(245, 245, 245, 0.64) 0%,
    rgba(245, 245, 245, 0.95) 35%,
    rgba(245, 245, 245, 1) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(245, 245, 245, 0.64) 0%,
    rgba(245, 245, 245, 0.95) 35%,
    rgba(245, 245, 245, 1) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(245, 245, 245, 0.64) 0%,
    rgba(245, 245, 245, 0.95) 35%,
    rgba(245, 245, 245, 1) 100%
  );
  background: linear-gradient(
    to right,
    rgba(245, 245, 245, 0.64) 0%,
    rgba(245, 245, 245, 0.95) 35%,
    rgba(245, 245, 245, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f5f5f5', GradientType=1 );
}
.calendar-event-card__text.active::after {
  content: "...";
  position: absolute;
  bottom: 4px;
  right: 42px;
  width: 30px;
  height: 14px;
  z-index: 4;
  color: #000000;
}
.calendar-event-card__text p {
  color: #383838;
  font-family: var(--Helv-B);
  font-size: 12px;
  line-height: 1.2;
}
.calendar-event-card__date {
  margin-bottom: 16px;
}
.calendar-event-card__date-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 16px;
  height: 28px;
}
.calendar-event-card__date-inner p {
  color: #000;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 14px;
}
.calendar-event-card__date-inner p span {
  font-size: 35px;
  height: 30px;
  display: inline-block;
}
.calendar-event-card__date-inner img {
  margin-right: 15px;
  display: block;
}
.calendar-event-card__venue {
  height: 24px;
}
.calendar-event-card__venue p {
  color: #606b9c;
  font-family: var(--Helv-L);
  line-height: 1;
  font-size: 12px;
}
.calendar-event-card-visible {
  z-index: 0;
  position: relative;
  padding: 22px 8px 28px 28px;
}
.calendar-event-card-hidden {
  opacity: 0;
  height: 153px;
  overflow: hidden;
  transition: all linear 250ms;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0 28px 0;
  z-index: 1;
  background-color: #f5f5f5;
}
.calendar-event-card:nth-last-child(-n + 4) .calendar-event-card-hidden {
  height: 213px;
  top: unset;
  bottom: 0;
}
.calendar-event-card__img {
  margin-bottom: 20px;
  width: 100%;
  height: 247px;
}
.calendar-event-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.calendar-event-card-hidden .calendar-event-card__text {
  height: 127px;
}
.calendar-event-card.active {
  z-index: 2;
}
.calendar-event-card:nth-last-child(-n + 4) .calendar-event-card-hidden.active,
.calendar-event-card-hidden.active {
  opacity: 1;
  height: 528px;
}
.calendar-event-card-hidden .btn-global {
  margin-left: 28px;
}
.calendar-event-card-hidden .calendar-event-card__date,
.calendar-event-card-hidden .calendar-event-card__text {
  padding-left: 27px;
  padding-right: 27px;
}

.call-back .partnership-form-checkbox-group {
  width: 100%;
}
.banner-slider-new {
  background: url("../img/banner-cover-new.png") 50% 0 no-repeat;
  background-size: cover;
}
.banner-slider-new .banner-slide-content .container {
  padding: 165px 0 28px;
}
.banner-slider-new .banner-slide-content__text,
.banner-slider-new .banner-slide-bg-wrap-inner {
  display: none;
}
.banner-slider-new .banner-slider-img-wrap {
  position: absolute;
  top: 45px;
  left: 510px;
  z-index: 2;
  right: 0;
  padding: 35% 0 0 0;
}
.banner-slider-new .slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-slider-new .banner-slide-content-inner {
  max-width: 500px;
}
.banner-slider-new.banner-slider .owl-dot:not(:last-child) {
  margin-right: 7px;
}
.banner-slider-new.banner-slider .owl-dot.active {
  background-color: #1850ee !important;
}
.banner-slider-new.banner-slider .owl-dots {
  text-align: left;
  max-width: 1200px;
  padding: 0 0 0 510px;
  bottom: 45px;
}
.banner-slider-new.banner-slider .owl-dot {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  overflow: hidden;
}
.banner-slider-new .banner-slide-content__title {
  min-height: 205px;
}

/* MEDIA QUERY */

@media all and (max-width: 1300px) {
  /* main page */

  .events-slider .owl-nav button.owl-next {
    right: -20px;
  }
  .events-slider .owl-nav button.owl-prev {
    left: -20px;
  }
}
@media all and (max-width: 1200px) {
  /*  header */

  .header-nav-ul__li:not(:last-child) {
    margin-right: 30px;
  }

  /* footer */

  .footer-content__logo {
    max-width: 220px;
  }
  .footer-nav-ul__li:not(:last-child) {
    margin-right: 20px;
  }

  /* main page */

  .banner-slide-content .slider-image {
    /*right: -523px;
		width: unset !important;*/
  }
  .banner-slider-new .banner-slide-content-inner {
    max-width: 420px;
  }
  .banner-slider-new .banner-slide-content__title h2 {
    font-size: 20px;
  }
  .banner-slider-new .banner-slider-img-wrap {
    left: 430px;
    padding: 40% 0 0 0;
  }
  .banner-slider-new .banner-slide-content__title {
    min-height: 168px;
  }
  .banner-slider-new.banner-slider .owl-dots {
    max-width: 960px;
    bottom: 80px;
    padding: 0 0 0 430px;
  }
  .about-us-block-content {
    background-position: 0 42px;
    background-size: 875px 160px;
  }
  .about-us-fact:first-child {
    height: 130px;
  }
  .about-us-block .container {
    padding-top: 95px;
  }

  .news-item__img {
    overflow: hidden;
  }
  .news-item__img img {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
  }

  .main-event-img img {
    object-position: 50% 50%;
    object-fit: cover;
  }
  .event-card__text {
    height: 85px;
  }
  .event-card:hover .event-card-hidden,
  .event-card:hover:nth-last-child(-n + 4) .event-card-hidden,
  .event-card:nth-last-child(-n + 4) .event-card-hidden.active,
  .event-card-hidden.active {
    height: 460px;
  }
  .event-card {
    height: 225px;
  }
  .events-slider {
    height: auto;
    position: relative;
  }
  .event-card__title {
    height: 50px;
  }

  .projects-slide-content__img img {
    height: 100%;
    object-position: 0 50%;
    object-fit: cover;
  }
  .project-bottom .projects-slide-info__title {
    height: auto;
  }

  .gallery-slide__img {
    height: 157px;
  }

  .gallery-slider {
    height: 453px;
  }

  .other-archive-event {
    max-width: 290px;
  }

  /* documents page */

  .document-item {
    width: 50%;
  }

  /* media page */

  .media-tab-item {
    width: 280px;
    height: 350px;
  }

  /* news page */

  .capital-news-item.vertical {
    width: 384px;
  }
  .capital-news-item.horizontal {
    width: 501px;
  }

  /* calendar page */

  .closest-event-img img {
    object-position: 50% 50%;
    object-fit: cover;
  }
  .download-calendar-link {
    width: 166px;
  }

  /* calendar page */

  .event-types {
    width: 270px;
  }
  .event-types p {
    text-align: center;
    width: 100%;
    max-width: 178px;
  }
  .event-types img {
    margin-left: 5px;
  }
  .calendar-select-block {
    margin-right: 5px;
  }
  .calendar-event-card-visible {
    padding: 22px 8px 28px 10px;
  }
  .calendar-event-card-hidden .calendar-event-card__date,
  .calendar-event-card-hidden .calendar-event-card__text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .calendar-event-card__date-inner p span {
    font-size: 30px;
    height: 27px;
  }
  .calendar-event-card__text {
    height: 58px;
  }
  .calendar-event-card-hidden .btn-global {
    margin-left: 10px;
  }
  .calendar-event-card {
    height: 215px;
  }
  .calendar-event-card:nth-last-child(-n + 4)
    .calendar-event-card-hidden.active,
  .calendar-event-card-hidden.active {
    opacity: 1;
    height: 440px;
  }
  .calendar-event-card__img {
    height: 157px;
  }
}
@media all and (max-width: 992px) {
  /* header */

  .header-nav-btn {
    display: block;
  }
  .header-close-nav-btn {
    display: block;
  }
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 0;
    left: 0;
    top: 0;
    -webkit-transition: all linear 250ms;
    -o-transition: all linear 250ms;
    transition: all linear 250ms;
    z-index: 201;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 50%;
  }
  .header-nav-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-nav-ul__li:not(:last-child) {
    margin-right: 0;
  }
  .header-nav-ul__li a.active,
  .header-nav-ul__li a {
    color: #3c4884;
    font-family: var(--Helv-B);
    font-size: 28px;
    padding: 30px 0;
    text-align: center;
    z-index: 5;
  }
  .header-nav-ul__li a:hover::after,
  .header-nav-ul__li a.active::after,
  .header-nav-ul__li a:hover::before,
  .header-nav-ul__li a.active::before {
    display: none;
  }

  /* footer */

  .footer-nav-ul__li a {
    font-size: 10px;
    text-align: center;
    padding: 48px 4px 28px;
  }
  .footer-nav-ul__li:not(:last-child) {
    margin-right: 5px;
  }

  /* main page */

  .slider-image {
    display: none !important;
  }
  .banner-slide-bg-wrap {
    visibility: visible;
  }
  .banner-slide-bg-wrap-inner {
    display: none;
  }
  .banner-slider-new .banner-slide-content-inner {
    max-width: 100%;
  }
  .banner-slider-new .banner-slide-content__title {
    min-height: auto;
    margin-bottom: 20px;
  }
  .banner-slider-new.banner-slider .owl-dots {
    max-width: 100%;
    padding: 0;
    bottom: 60px;
    text-align: center;
  }
  .banner-slider-new .banner-slider-img-wrap {
    display: none;
  }
  .banner-slider-new {
    background: none;
  }
  .about-us-fact:first-child p {
    font-size: 20px;
  }
  .sz-20 {
    font-size: 16px !important;
  }
  .about-us-facts:nth-child(2) .about-us-fact:first-child {
    padding: 95px 16px 0 0;
  }
  .about-us-facts:nth-child(4) .about-us-fact:first-child {
    padding: 78px 0 0 0;
  }
  .about-us-fact:first-child {
    margin-bottom: 33px;
  }
  .about-us-fact p {
    font-size: 12px;
  }
  .about-us-block-content {
    background-position: 0px 60px;
    background-size: 643px 114px;
  }

  .news-item {
    width: 47%;
  }
  .news-item:not(:last-child) {
    margin-right: 6%;
  }
  .news-item:not(:nth-child(3n)) {
    margin-right: unset;
  }
  .news-item:not(:nth-child(2n)) {
    margin-right: 6%;
  }

  .main-event-img {
    display: none;
  }
  .main-event.no-details .main-event-data {
    padding: 24px 18px 24px 18px;
  }
  .event-card {
    width: 32.3%;
  }
  .event-card:nth-child(8),
  .event-card:nth-child(4) {
    /*display: none;*/
  }
  .event-card {
    margin: 0 0.5% 1% !important;
  }
  .event-card:hover .event-card-hidden,
  .event-card:hover:nth-last-child(-n + 4) .event-card-hidden,
  .event-card:nth-last-child(-n + 4) .event-card-hidden.active,
  .event-card-hidden.active {
    height: 457px;
  }
  .event-card__text {
    height: 70px;
  }

  .projects-slide {
    height: auto;
  }
  .projects-slide .projects-slide-content__img img {
    object-position: 50% 50%;
  }
  .project-bottom .projects-slide-content__img {
    height: 180px;
  }

  .gallery-slider {
    height: 335px;
  }

  .archive-events-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .others-archive-events,
  .main-archive-event {
    width: 100%;
    max-width: unset;
  }
  .main-archive-event__title {
    margin-bottom: 10px;
    height: auto;
  }
  .main-archive-event__img {
    width: 300px;
    height: 100%;
    margin-bottom: 0;
    float: left;
  }
  .main-archive-event__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .other-archive-event {
    max-width: unset;
    width: 50%;
  }

  /* documents page */

  .document-item {
    width: 100%;
  }

  /* contacts page */

  .press-centre-block .contact-block {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .press-centre-block .contact-item {
    width: 33%;
  }

  /* media page*/

  .media-tab-item {
    width: 310px;
    height: 387px;
  }

  /* news page */

  .news-capital {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .capital-news-item {
    margin-bottom: 20px !important;
  }
  .capital-news-item.vertical {
    width: 100%;
    height: 340px;
  }
  .capital-news-item-info__text {
    margin-bottom: 20px;
  }
  .capital-news-item.horizontal {
    width: 100%;
  }
  .capital-news-item-img-wrap img {
    object-fit: cover;
    object-position: top;
  }
  .news-page-tab-content .news-item:not(:last-child) {
    margin-right: unset;
  }
  .news-page-tab-content .news-items {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  /* about page */

  .management-main-info {
    width: 60%;
  }
  .management-secondary {
    height: 300px;
  }
  .management-secondary-info {
    padding: 10px 10px 50px;
  }
  .management-secondary-info .btn-global-2 {
    left: 10px;
    bottom: 10px;
    width: 130px;
  }

  /* partnership page */

  .partnership-form-group:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .partnership-form-group {
    width: 100%;
  }
  .partnership-form-checkbox-group {
    width: 100%;
    margin-top: 2%;
  }
  .partnership-form-submit-group {
    margin-right: 2%;
    width: 49%;
  }
  .partnership-form-file-group {
    margin-right: 0;
    width: 49%;
  }
  .partner-item {
    width: 25%;
  }
  .partner-decor-3 {
    display: none;
  }

  /* calendar page */

  .closest-event-img {
    display: none;
  }
  .closest-event.no-details .closest-event-data {
    padding: 24px 18px 24px 18px;
  }
  .calendar-filters {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .event-types-wrap {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
  }
  .calendar-select-block {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 4px;
  }
  .download-calendar-link {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .event-types:not(:last-child) {
    margin-right: 0.3%;
  }
  .event-types {
    width: 49.9%;
  }

  .calendar-months {
    display: none;
  }
  .calendar-select-block.months {
    display: block;
  }
  .calendar-event-card:nth-child(4n) {
    margin-right: unset;
  }
  .calendar-event-card:not(:last-child) {
    margin-right: 2%;
  }
  .calendar-event-card:nth-child(3n) {
    margin-right: unset;
  }
  .calendar-event-card {
    width: 32%;
  }

  .calendar-event-card:nth-last-child(-n + 4) .calendar-event-card-hidden {
    top: 0;
    bottom: unset;
  }
  .calendar-event-card:nth-last-child(-n + 3) .calendar-event-card-hidden {
    top: unset;
    bottom: 0;
  }
  .calendar-event-card {
    height: 207px;
  }
  .calendar-event-card:nth-last-child(-n + 4)
    .calendar-event-card-hidden.active,
  .calendar-event-card-hidden.active {
    opacity: 1;
    height: 424px;
  }
  .calendar-event-card__img {
    height: 149px;
  }

  /* album details page */

  .gallery-item {
    width: 32%;
  }
}
@media all and (max-width: 768px) {
  /* header */

  .header-nav-ul__li a.active,
  .header-nav-ul__li a {
    padding: 18px 0;
  }

  /* footer */

  .footer-content__logo {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 15px;
  }
  .footer-nav {
    text-align: right;
    padding-bottom: 14px;
  }
  .footer-nav-ul {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-nav-ul__li:not(:last-child) {
    margin-right: 0;
  }
  .footer-nav-ul__li a {
    padding: 10px 0;
    font-size: 12px;
    text-align: end;
  }

  /* main page */

  .banner-slide-content .container {
    padding: 80px 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .banner-slider-new .banner-slide-content .container {
    padding: 80px 0 60px;
  }
  .banner-slider-new.banner-slider .owl-dots {
    text-align: right;
    padding: 0 15px;
    bottom: 20px;
  }
  .banner-slide-content__title h2 {
    font-size: 20px;
  }

  .about-us-block-content {
    background: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-us-facts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .about-us-fact:first-child {
    margin-bottom: 0 !important;
    padding: 0 !important;
    height: auto;
    width: 100px;
  }
  .about-us-fact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about-us-fact p {
    padding-right: 5px;
  }

  .main-event {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .main-event-info::before {
    display: none;
  }
  .main-event-info {
    width: 100%;
  }
  .main-event__text,
  .main-event-info__title {
    height: auto;
    max-width: 100%;
  }
  .main-event-slider {
    max-width: 100%;
  }
  .event-card {
    width: 49%;
  }
  .event-card:nth-child(3),
  .event-card:nth-child(7),
  .event-card:nth-child(8),
  .event-card:nth-child(4) {
    /*display: none;*/
  }
  .event-card {
    margin: 0 0.5% 1% !important;
  }
  .event-card:hover .event-card-hidden,
  .event-card:hover:nth-last-child(-n + 4) .event-card-hidden,
  .event-card:nth-last-child(-n + 4) .event-card-hidden.active,
  .event-card-hidden.active {
    height: 454px;
  }

  .projects-bottom-wrap,
  .projects-slide-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .projects-slide-content__img {
    max-width: 100%;
  }
  .projects-slide-info {
    padding: 25px 15px;
    max-width: 100%;
  }
  .projects-slide-info__title {
    margin-bottom: 17px;
  }
  .project-bottom {
    width: 100%;
    margin-bottom: 22px;
  }
  .projects-block .container {
    padding-bottom: 30px;
  }
  .project-bottom .projects-slide-content__img {
    height: 300px;
  }
  .project-bottom .projects-slide-info__text {
    height: auto;
  }

  .gallery-slide__img:nth-child(n + 5) {
    display: none;
  }
  .gallery-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .gallery-slide__img {
    width: 33%;
  }
  .gallery-slide__img img {
    height: 100%;
  }
  .gallery-slide__img:nth-child(2n) {
    margin-right: 0;
  }

  .other-archive-event {
    padding: 10px 15px 10px 30px;
    width: 100%;
  }
  .other-archive-event__title {
    height: auto;
  }
  .other-archive-event:last-child::before {
    display: none;
  }
  .main-archive-event__img {
    width: 160px;
    height: 120px;
  }
  .main-archive-event__img img {
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
  }

  /* documents page */

  .documents-aside-nav {
    position: fixed;
    left: -315px;
    z-index: 1;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    -webkit-transition: left linear 250ms;
    -o-transition: left linear 250ms;
    transition: left linear 250ms;
  }
  .show-doc-nav,
  .hide-doc-nav {
    display: block;
  }
  .documents-block {
    padding: 0 0 0 10px;
    width: 100%;
  }

  /* contacts page */

  .press-centre-block .contact-item {
    width: 50%;
  }

  /* media page*/

  .media-tab-item {
    width: 235px;
    height: 293px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .media-tab-item:not(:last-child) {
    margin-right: 5px;
  }
  .media-tab-info .btn-global-2 {
    min-width: unset;
  }
  .media-tab-item__img-wrap::before {
    height: 80%;
  }

  /* about page */

  .counsel-block {
    padding: 15px;
  }
  .counsel-block__title {
    margin-bottom: 15px;
  }
  .counsel-member {
    padding: 10px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .counsel-member__name {
    width: 100%;
    margin-bottom: 5px;
  }
  .counsel-member__position {
    width: 100%;
  }
  .supervisory-committee {
    padding-top: 15px;
  }
  .supervisory-committee-regulation {
    width: 100%;
    margin-bottom: 15px;
  }
  .management-secondary {
    width: 100%;
  }
  .management-secondary:not(:last-child) {
    margin-right: 0;
  }
  .management-main {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }
  .management-main__img-wrap {
    width: 100%;
  }
  .management-main-info {
    width: 100%;
  }
  .management-secondary-info {
    padding: 20px 20px 50px;
  }
  .management-secondary-info .btn-global-2 {
    left: 20px;
    bottom: 20px;
    width: 130px;
  }

  /* partnership page */

  .partner-item {
    width: 33%;
  }

  /* calendar event */

  .closest-event {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .closest-event-info::before {
    display: none;
  }
  .closest-event-info {
    width: 100%;
  }
  .closest-event__text,
  .closest-event-info__title {
    height: auto;
    max-width: 100%;
  }
  .closest-event-slider {
    max-width: 100%;
  }

  .calendar-event-card:nth-child(3n) {
    margin-right: unset;
  }
  .calendar-event-card:not(:last-child) {
    margin-right: 2%;
  }
  .calendar-event-card:nth-child(2n) {
    margin-right: 0;
  }
  .calendar-event-card {
    width: 49%;
  }

  .calendar-event-card:nth-last-child(-n + 3) .calendar-event-card-hidden {
    top: 0;
    bottom: unset;
  }
  .calendar-event-card:nth-last-child(-n + 2) .calendar-event-card-hidden {
    top: unset;
    bottom: 0;
  }

  /* album details page */

  .gallery-item {
    width: 49%;
  }
}
@media all and (max-width: 576px) {
  /* footer */

  .footer-nav__copyright {
    position: absolute;
    left: 0;
    bottom: 7px;
  }

  /* main page */

  .logo-block .container,
  .banner-slide-content .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-us-block .container::before {
    z-index: 2;
  }
  .about-us-facts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-us-fact:first-child {
    margin-bottom: 10px !important;
  }
  .about-us-block .container::after {
    right: 0;
  }

  .news-item {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px !important;
  }
  .link-to-target-page {
    letter-spacing: 1px;
  }

  .event-card__img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
  }
  .event-card:hover .event-card-hidden,
  .event-card:hover:nth-last-child(-n + 4) .event-card-hidden,
  .event-card:nth-last-child(-n + 4) .event-card-hidden.active,
  .event-card-hidden.active {
    height: 455px;
  }

  .header .container::after,
  .gallery-decor-element,
  .footer-decor-element-right {
    display: none;
  }
  .gallery-block {
    overflow: hidden;
  }
  .gallery-img-mask img {
    width: 60px !important;
    height: 57px !important;
  }
  .gallery-slide__img {
    width: 150px;
  }
  .gallery-block .container {
    padding-top: 60px;
    padding-bottom: 76px;
  }

  .archive-events-block .to-target-page-wrap {
    top: 3px;
  }

  .main-archive-event__img {
    display: none;
  }

  /* contact page */

  .contact-map-wrap {
    position: relative;
    top: unset;
    left: unset;
    height: 300px;
  }
  .contact-map-wrap > ymaps,
  .contact-map-wrap > ymaps > ymaps {
    height: 300px !important;
  }
  .contact-map-block {
    height: auto;
  }
  .contact-map-block .container {
    padding-top: 0;
  }
  .contact-content-wrap {
    padding: 30px 0;
    background-color: unset;
    width: auto;
    box-shadow: none;
  }
  .press-centre-block .contact-item {
    width: 100%;
  }
  .contact-items-wrap .contact-item {
    width: 100%;
  }

  /* news page */

  #main-news-tab {
    width: 85px;
  }
  #local-news-tab {
    width: 150px;
  }

  /* partnership page */

  .partner-item {
    width: 50%;
  }

  /* news details page */

  .news-item-banner__img-wrap {
    height: auto;
  }
  .news-item-content {
    padding: 15px;
  }
  .news-item-banner-info {
    left: 15px;
    bottom: 15px;
  }

  /* event details page */

  .event-item-banner__img-wrap {
    height: auto;
  }
  .event-item-content {
    padding: 15px;
  }
  .event-item-banner-info {
    left: 15px;
    bottom: 15px;
  }
  .event-item-banner-info__date p span {
    font-size: 20px;
    height: 20px;
  }

  /* album details page */

  .album-item-banner__img-wrap {
    height: auto;
  }
  .album-item-content {
    padding: 15px;
  }
  .album-item-banner-info {
    left: 15px;
    bottom: 15px;
  }
  .album-item-banner-info__date p span {
    font-size: 20px;
    height: 20px;
  }

  /* calendar page */

  .calendar-page-decor-1,
  .calendar-page-decor-2 {
    display: none;
  }
  .banner-slider-new .banner-slide-content .container {
    padding: 80px 15px 60px;
  }
}
@media all and (max-width: 540px) {
  /* media page */

  .media-tab-item {
    width: 290px;
    height: 362px;
    margin: 0 auto 10px !important;
  }
}
@media all and (max-width: 500px) {
  /* calendar page */

  .calendar-event-card:nth-child(2n) {
    margin-right: unset;
  }
  .calendar-event-card:not(:last-child) {
    margin-right: 0;
  }
  .calendar-event-card {
    width: 100%;
    margin-right: 0;
  }
  .calendar-event-card:nth-last-child(-n + 2) .calendar-event-card-hidden {
    top: 0;
    bottom: unset;
  }
  .calendar-event-card:nth-last-child(-n + 1) .calendar-event-card-hidden {
    top: unset;
    bottom: 0;
  }
}
@media all and (max-width: 450px) {
  /* footer */

  .footer-content__logo {
    max-width: 160px;
    padding-top: 8px;
  }

  /* main page */

  .events-slider {
    height: auto;
  }
  .event-card {
    width: 100%;
  }
  .event-card:nth-child(2),
  .event-card:nth-child(6),
  .event-card:nth-child(3),
  .event-card:nth-child(7),
  .event-card:nth-child(8),
  .event-card:nth-child(4) {
    /*display: none;*/
  }
  .event-card {
    margin: 0 0 10px !important;
  }
  .event-card__img {
    height: 120px;
    overflow: hidden;
  }
  .event-card:hover .event-card-hidden,
  .event-card:hover:nth-last-child(-n + 4) .event-card-hidden,
  .event-card:nth-last-child(-n + 4) .event-card-hidden.active,
  .event-card-hidden.active {
    height: 460px;
  }

  /* partnership page */

  .partnership-form-submit-group {
    margin-right: 0;
    width: 100%;
    order: 3;
    margin-bottom: 15px;
  }
  .partnership-form-file-group {
    width: 100%;
    margin-bottom: 15px;
    order: 1;
  }
  .partnership-form-checkbox-group {
    order: 2;
    margin-bottom: 15px;
  }

  /* calendar page */

  .calendar-select-block {
    width: 50%;
    margin-right: 0;
  }
  .ul-select,
  .selected-value {
    width: 100%;
  }
  .download-calendar-link {
    width: 50%;
  }
  .event-types:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1px;
  }
  .event-types-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .event-types {
    width: 100%;
  }
}
@media all and (max-width: 400px) {
  /* main page */

  .about-us-fact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-event.no-details .main-event-info__title h3 {
    font-size: 14px;
  }

  .gallery-slide__img {
    width: 130px;
    height: 130px;
  }
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }
  .gallery-slider {
    height: 274px;
  }

  /* about page */

  .management-secondary__img-wrap {
    height: 350px;
    width: 100%;
  }
  .management-secondary {
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .management-secondary-info {
    width: 100%;
  }
  .management-main-info {
    padding: 20px 20px 50px;
  }
  .management-main-info .btn-global-2 {
    bottom: 20px;
    left: 20px;
  }

  /* search page */

  .search-page-form-group input {
    flex-grow: unset;
    width: inherit;
  }

  /* event details */

  .event-item-banner-info {
    bottom: 5px;
    -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;
  }
  .event-item-banner-info__date {
    margin-bottom: 5px;
  }

  /* album details */

  .album-item-banner-info {
    bottom: 5px;
    -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;
  }
  .album-item-banner-info__date {
    margin-bottom: 5px;
  }

  .gallery-item {
    height: 180px;
  }
}
@media all and (max-width: 370px) {
  /* calendar page */

  .calendar-select-block {
    width: 60%;
  }
  .download-calendar-link {
    width: 40%;
    text-align: center;
  }
  .about-us-block .container::before {
    left: -440px;
  }
  .about-us-block .container::after {
    left: 205px;
  }
  .banner-slider-new.banner-slider .owl-dot:not(:last-child) {
    margin-right: 4px;
  }
  .banner-slider-new.banner-slider .owl-dots {
    bottom: 15px;
  }
  .banner-slide-content-inner {
    margin-top: 40px;
  }
  .banner-slide-content-inner {
    margin-top: 40px;
  }
}
@media all and (max-width: 350px) {
  /* header */

  .search-form__input {
    width: 190px;
  }
}

#solution_cookie {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding-bottom: 27px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
  z-index: 100;
}
#solution_cookie_btn {
  margin: 20px;
  padding: 14px 0 14px 0;
}
#solution_cookie .row__header-cookie {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 5px 30px rgba(137, 158, 180, 0.3);
  border-radius: 5px;
  background-color: #ffffff;
}

.wrapper__newsministr--inner {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 853px;
  margin: auto;
  background: url(/novosti-ministra/fon-news-ministr.png);
  background-size: cover;
  border-radius: 20px;
}
.wrapper__newsministr--text {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
.wrapper__newsministr--text h3 {
  color: #464343;
  text-transform: uppercase;
  font-family: var(--Helv-B);
  font-size: 24px;
  line-height: 40px;
  padding-right: 22px;
}
.wrapper__newsministr--text h4 {
  color: #464343;
  font-family: var(--Helv-B);
  font-size: 22px;
  line-height: 26px;
  padding-right: 22px;
}
.wrapper__newsministr--link {
  display: flex;
  justify-content: end;
  align-items: center;
  padding-right: 16px;
}
.wrapper__newsministr--link a {
  background-color: #0d4cd3;
  color: #fff;
  font-family: LatoWeb, sans-serif;
  font-weight: 500;
  font-size: 18px;
  padding: 11px 28px;
  border-radius: 8px;
  margin-right: 40px;
  margin-top: 36px;
}
.wrapper__newsministr--link div img {
  padding-top: 32px;
  width: 138px;
}
.wrapper__newsministr--foto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 26px 16px;
  margin-right: 50px;
}
.wrapper__newsministr--foto img {
  padding: 10px;
  position: absolute;
  top: -5px;
  left: -3px;
}
.wrapper__newsministr--foto__inner {
  background: #5e5a5a9c;
  border-radius: 140px;
  width: 186px;
  height: 186px;
  position: relative;
}
@media (max-width: 880px) {
  .wrapper__newsministr--foto img {
  }
  .wrapper__newsministr--text h3 {
    font-size: 20px;
  }
  .wrapper__newsministr--text h4 {
    font-size: 17px;
  }
}
@media (max-width: 580px) {
  .wrapper__newsministr--inner {
    flex-direction: column;
  }
  .wrapper__newsministr--text {
    text-align: center;
  }
  .wrapper__newsministr--text h3,
  .wrapper__newsministr--link {
    padding-right: 0;
  }
  .wrapper__newsministr--text h4 {
    padding: 0 10px;
  }
  .wrapper__newsministr--link {
    justify-content: center;
  }
  .wrapper__newsministr--link div img {
    display: none;
  }
  .wrapper__newsministr--link a {
    margin: 16px 6px;
  }
  .wrapper__newsministr--foto {
    margin-right: 0;
  }
}

a.btn {
  margin: 0 auto;
  align-items: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #0d4cd3;
  text-align: center;
  font-weight: 900;
  font-size: 0.75em;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.5s ease-in-out;
  border-bottom: 1px solid darken(#38cc70, 5%);
  &:before {
    font-size: 1.5em;
    line-height: 0.5em;
    float: left;
    transition: transform 0.3s ease-in-out;
  }
  &:hover {
    color: #cacfdb;
    background-color: darken(#dadddb, 10%);
  }
}

a.btn:focus span {
  transform: rotate(90deg);
}

.collapse {
  height: auto;
  overflow: hidden;
  max-height: 50em;
  transition: max-height 1s;

  @media screen and (min-width: 48em) {
    max-height: 15em;
    transition: max-height 0.5s;
  }
}

.card-header {
  padding: 1em;
  border: none;
  background-color: transparent;
}

.card-body {
  padding: 0em;
}

.accordion p {
  padding: 1em 2em 1em 0em;
}

.accordion {
  position: relative;
}

.desing-page .container {
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
}

.desing-page {
  /* background: url("../img/news/news-bg.png") center / cover no-repeat; */
  min-height: calc(100vh - 167px);
}

.desing-page-decor-1 {
    display: none;
  position: absolute;
  left: -120px;
  top: 600px;
  z-index: 0;
}
