/*
 sm     =   small   =   phone-small     = 576px     = 36em;
 md     =   medium  =   phone-large     = 768px     = 48em;
 lg     =   large   =   phone-tablet    = 992px     = 62em;
 xl     =   xlarge  =   desktop         = 1200px    = 75em;
 xxl    =   xxl     =   big desktop     = 1400px    = 87.5em;

 1em = 16px;
*/
/*
When using MAX and Desktop first approach the biggest screen size
shall be on top for right cascading of styles(smallest shall be last)
*/
/*
When using MIN and Mobile first approach the smalles screen size
shall be on top for right cascading of styles(bigest shall be last)
*/
* {
  margin: 0;
  padding: 0;
}

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

*:focus:not(:focus-visible) {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

@media screen and (max-width: 47.9em) {
  html {
    font-size: 90%;
  }
}

@media screen and (max-width: 35.9em) {
  html {
    font-size: 80%;
  }
}

body {
  color: #010c17;
}

img {
  max-width: 100%;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  color: #a6a6a6;
}

@font-face {
  font-family: 'Sofia';
  src: url(../fonts/sofia/SofiaSans-Regular.woff);
  font-weight: normal;
  font-variant: normal;
}

@font-face {
  font-family: 'Sofia';
  src: url(../fonts/sofia/SofiaSans-Medium.woff);
  font-weight: 500;
  font-variant: normal;
}

@font-face {
  font-family: 'Sofia';
  src: url(../fonts/sofia/SofiaSans-SemiBold.woff);
  font-weight: 600;
  font-variant: normal;
}

@font-face {
  font-family: 'Sofia';
  src: url(../fonts/sofia/SofiaSans-Bold.woff);
  font-weight: 700;
  font-variant: normal;
}

@font-face {
  font-family: 'Sofia';
  src: url(../fonts/sofia/SofiaSans-Black.woff);
  font-weight: 800;
  font-variant: normal;
}

body {
  font-family: 'Sofia', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: normal;
  text-rendering: geometricPrecision;
}

h1,
h2,
h3 {
  text-transform: none;
  font-weight: 700;
}

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

.section-title {
  font-weight: 800;
  font-size: 4.75rem;
  line-height: 1;
}

.section-title span {
  color: #010c17;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}

.page-title {
  font-size: 3.5rem;
  letter-spacing: -0.5px;
  line-height: 4rem;
  margin-bottom: 15px;
}

.form-title {
  text-transform: uppercase;
  font-size: 0.9rem;
}

@media screen and (max-width: 47.9em) {
  .page-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

.u-btn,
.page-content button:not([class]) {
  display: inline-block;
  padding: 5px 20px;
  border-color: transparent;
  border-radius: 1.5rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  background-color: #010c17;
}

.u-btn:hover, .u-btn:focus,
.page-content button:not([class]):hover,
.page-content button:not([class]):focus {
  color: white;
}

.u-btn--yellow,
.page-content button:not([class])--yellow {
  color: #323940;
  background-color: #c79800;
}

.u-btn--yellow:hover, .u-btn--yellow:focus,
.page-content button:not([class])--yellow:hover,
.page-content button:not([class])--yellow:focus {
  background-color: black;
  color: white;
}

.u-btn--blue,
.page-content button:not([class])--blue {
  color: white;
  background-color: #606699;
}

.u-btn--blue:hover, .u-btn--blue:focus,
.page-content button:not([class])--blue:hover,
.page-content button:not([class])--blue:focus {
  background-color: #2b3377;
  color: white;
}

.u-btn--blue:link,
.page-content button:not([class])--blue:link {
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  border-radius: 24px;
}

.u-blue {
  color: #2b3377;
}

.u-btn-share {
  width: 40px;
  height: 40px;
  background: url(../images/svg/share.svg) center no-repeat;
  background-size: 40px;
}

.u-btn-share:hover, .u-btn-share:focus, .u-btn-share:focus-within, .u-btn-share.active {
  background: url(../images/svg/share-hover.svg) center no-repeat;
  background-size: 40px;
}

.u-btn-mail {
  width: 40px;
  height: 40px;
  background: url(../images/svg/mail.svg) center no-repeat;
}

.u-btn-mail:hover, .u-btn-mail:focus {
  background: url(../images/svg/mail-hover.svg) center no-repeat;
  background-size: 40px;
}

.u-btn-print {
  width: 40px;
  height: 40px;
  background: url(../images/svg/print.svg) center no-repeat;
}

.u-btn-print:hover, .u-btn-print:focus {
  background: url(../images/svg/print-hover.svg) center no-repeat;
  background-size: 40px;
}

.u-label {
  width: 100%;
  color: #6d7278;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.u-label-data {
  font-size: 1.25rem;
  line-height: 1.4;
}

.u-label-data span {
  display: block;
}

.u-btn-rss {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 2.5px;
  background: url(../images/svg/rss.svg) center no-repeat;
  background-size: cover;
}

.label-invalid {
  color: #ff0000;
  font-size: 0.87rem;
  padding-left: 0.87rem;
}

.leaflet-attribution-flag {
  display: none !important;
  opacity: 0;
}

.u-btn-euro {
  width: 160px;
  height: 82px;
  background-size: contain;
}

.u-btn-euro:link {
  display: block;
}

.u-btn-euro--5 {
  background-image: url(../images/svg/5.svg);
}

.u-btn-euro--10 {
  background-image: url(../images/svg/10.svg);
}

.u-btn-euro--20 {
  background-image: url(../images/svg/20.svg);
}

.u-btn-euro--50 {
  background-image: url(../images/svg/50.svg);
}

.u-btn-euro--100 {
  background-image: url(../images/svg/100.svg);
}

.u-btn-euro--200 {
  background-image: url(../images/svg/200.svg);
}

.u-btn-euro--500 {
  background-image: url(../images/svg/500.svg);
}

form label {
  font-weight: 700;
}

form input,
form .form-control,
form .form-select,
form .form-check-input {
  border-radius: 8px;
  border-color: #6d7278;
}

form .form-check-input {
  width: 1.5rem;
  height: 1.5rem;
}

form .form-floating > .form-select {
  padding-top: 10px;
  padding-left: 70px;
}

form .form-floating > .form-select ~ label {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
  font-weight: 700;
}

form .form-check.check-terms > label {
  font-weight: 500;
  line-height: 1.2;
  padding-left: 10px;
}

.main-nav {
  background-color: #2b3377;
  position: relative;
  z-index: 1;
}

.main-nav__container {
  margin-left: auto;
  margin-right: auto;
}

.main-nav__link {
  display: block;
  padding: 12px 20px;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
}

.main-nav__link--home {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url(../images/svg/icon-home-hover.svg) center no-repeat;
}

.main-nav__link[href='/en'], .main-nav__link--lang {
  color: white;
}

.main-nav__link[href='/en']:hover, .main-nav__link[href='/en']:focus, .main-nav__link--lang:hover, .main-nav__link--lang:focus {
  color: white;
}

.main-nav__search {
  margin-right: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav__right {
  margin-right: 20px;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav--fixed {
  position: fixed;
  top: 0;
}

.subnav-toggle {
  width: 100%;
  background-color: transparent;
  border: none;
  padding-right: 25px;
}

.subnav-toggle[aria-expanded='false'] + .subnav--1,
.subnav-toggle[aria-expanded='false'] + .subnav--2 {
  display: none;
}

.subnav-toggle[aria-expanded='true'] + .subnav--1,
.subnav-toggle[aria-expanded='true'] + .subnav--2 {
  display: block;
}

.subnav-toggle[aria-expanded='true'] + .subnav--2 {
  position: static;
}

.subnav-toggle[aria-expanded='false'] {
  background: url(../images/svg/chevron-down-white.svg) right 5px center no-repeat;
  background-size: 8px;
}

.subnav-toggle[aria-expanded='true'] {
  background: url(../images/svg/chevron-up-blue.svg) right 5px center no-repeat;
  background-size: 8px;
}

.subnav {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
  background-color: #eaebf8;
  z-index: 1;
}

.subnav__item {
  display: inline-block;
  width: 100%;
}

.subnav__item a,
.subnav__item button {
  display: block;
  padding: 10px;
  padding-left: calc(10px + 10px);
  width: 100%;
  color: #2b3377;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.subnav__item:has(.subnav):hover, .subnav__item:has(.subnav):focus,
.subnav__item:has(.subnav) .subnav,
.subnav__item a:hover,
.subnav__item a:focus,
.subnav__item a .subnav,
.subnav__item button:hover,
.subnav__item button:focus,
.subnav__item button .subnav {
  position: relative;
}

.subnav__item:has(.subnav):hover::before, .subnav__item:has(.subnav):focus::before,
.subnav__item:has(.subnav) .subnav::before,
.subnav__item a:hover::before,
.subnav__item a:focus::before,
.subnav__item a .subnav::before,
.subnav__item button:hover::before,
.subnav__item button:focus::before,
.subnav__item button .subnav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  height: 100%;
  background-color: #606699;
}

.subnav--2 {
  background-color: white;
}

.subnav .subnav-toggle[aria-expanded='false'] {
  background: url(../images/svg/chevron-down-blue.svg) right 5px center no-repeat;
  background-size: 8px;
}

@media screen and (min-width: 62em) {
  .main-nav__header {
    position: relative;
    display: none;
  }
  .main-nav__header .main-nav__link--home {
    display: none;
  }
  .main-nav__item {
    position: relative;
    z-index: 0;
  }
  .main-nav__item:hover:before {
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #9398c2;
  }
  .main-nav__item:focus, .main-nav__item:focus-within, .main-nav__item:has(.subnav-toggle[aria-expanded='true']), .main-nav__item.active {
    -webkit-filter: drop-shadow(0px 12.52155px 10.01724px rgba(43, 51, 119, 0.07)) drop-shadow(0px 41.77761px 33.42209px rgba(43, 51, 119, 0.07));
            filter: drop-shadow(0px 12.52155px 10.01724px rgba(43, 51, 119, 0.07)) drop-shadow(0px 41.77761px 33.42209px rgba(43, 51, 119, 0.07));
  }
  .main-nav__item:focus:before, .main-nav__item:focus-within:before, .main-nav__item:has(.subnav-toggle[aria-expanded='true']):before, .main-nav__item.active:before {
    display: none;
  }
  .main-nav__item:focus .main-nav__link, .main-nav__item:focus-within .main-nav__link, .main-nav__item:has(.subnav-toggle[aria-expanded='true']) .main-nav__link, .main-nav__item.active .main-nav__link {
    color: #2b3377;
    background-color: #eaebf8;
  }
  .main-nav__item:focus:has(.subnav-toggle[aria-expanded='false']) .main-nav__link, .main-nav__item:focus-within:has(.subnav-toggle[aria-expanded='false']) .main-nav__link {
    color: #2b3377;
    background: url(../images/svg/chevron-down-blue.svg) right 5px center no-repeat;
    background-color: #eaebf8;
    background-size: 8px;
  }
  .main-nav__item:has(.subnav-toggle[aria-expanded='true']) .main-nav__link {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .main-nav__item:has(.main-nav__link--home):hover::before, .main-nav__item:has(.main-nav__link--lang):hover::before, .main-nav__item:has(.main-nav__search):hover::before {
    display: none;
  }
  .main-nav__item:has(.main-nav__link--home), .main-nav__item:has(.main-nav__link--lang) {
    background-color: transparent;
  }
  .subnav {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 170px;
    border-radius: 2px;
    border-top-left-radius: 0px;
  }
  .subnav__item a,
  .subnav__item button {
    font-weight: 600;
  }
  .subnav__item a:hover, .subnav__item a:focus, .subnav__item a:focus-within,
  .subnav__item button:hover,
  .subnav__item button:focus,
  .subnav__item button:focus-within {
    background-color: rgba(147, 152, 194, 0.2);
  }
}

@media screen and (max-width: 87.4em) {
  .main-nav .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-nav__right {
    margin-top: 10px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subnav {
    padding: 12px 0;
  }
}

@media screen and (max-width: 61.9em) {
  .navbar-toggler {
    background-size: 64px;
  }
  .navbar-toggler[aria-expanded='false'] {
    background: url(../images/svg/menu-toggler-normal.svg) center no-repeat;
    background-size: 64px;
  }
  .navbar-toggler[aria-expanded='true'] {
    background: url(../images/svg/menu-toggler-active.svg) center no-repeat;
    background-size: 64px;
  }
  .main-nav__header {
    width: 100%;
    -ms-flex-item-align: start;
        align-self: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -ms-grid-columns: 50px 100% 50px 50px;
        grid-template-columns: 50px 100% 50px 50px;
  }
  .main-nav__header .navbar-toggler {
    margin-left: 10px;
    margin-right: auto;
    width: 42px;
    height: 42px;
    background-size: 32px;
  }
  .main-nav__header .main-nav__link--home {
    display: block;
  }
  .main-nav__right {
    padding-top: 20px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-nav {
    z-index: 9999;
  }
  .main-nav__list .main-nav__link--home {
    display: none;
  }
  .main-nav__container {
    width: 100%;
    margin: 0;
  }
  .main-nav__item > .subnav-toggle[aria-expanded='true'] {
    color: white;
    background-image: url(../images/svg/chevron-up-white.svg);
  }
  .main-nav__link {
    color: white;
    text-align: left;
  }
  .main-nav__link:hover, .main-nav__link:focus {
    color: white;
  }
}

.search {
  position: relative;
}

.search__toggle {
  position: relative;
  display: block;
  top: 0px;
  right: -5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  z-index: 10;
}

.search__toggle[aria-expanded='true'], .search__toggle[aria-expanded='true']:hover, .search__toggle[aria-expanded='true']:focus {
  background: url(../images/svg/icon-search-hover.svg) center no-repeat;
  background-color: #2b3377;
}

.search__toggle[aria-expanded='false'] {
  background: url(../images/svg/icon-search-hover.svg) center no-repeat;
}

.search__toggle[aria-expanded='false']:hover, .search__toggle[aria-expanded='false']:focus {
  background: url(../images/svg/icon-search-normal.svg) center no-repeat;
  background-color: white;
}

.search__input {
  position: relative;
  width: 100%;
  padding: 10px 24px;
  border: 0px;
  border-radius: 32px !important;
  background-color: #caccdd;
  z-index: 0;
}

.search__input::-webkit-input-placeholder {
  color: #2b3377;
  font-weight: 700;
}

.search__input:-ms-input-placeholder {
  color: #2b3377;
  font-weight: 700;
}

.search__input::-ms-input-placeholder {
  color: #2b3377;
  font-weight: 700;
}

.search__input::placeholder {
  color: #2b3377;
  font-weight: 700;
}

.search__input:focus, .search__input:focus-visible {
  background-color: #eaebf8;
  color: #2b3377;
  font-weight: 700;
}

.search__form {
  width: 0%;
  display: none;
  position: absolute;
  top: 0;
  right: -5px;
}

.search__form--open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(70vw);
  max-width: calc(760px - 40px);
}

@media screen and (max-width: 61.9em) {
  .search__form {
    right: 0;
  }
  .search__form--open {
    width: calc(100vw - 40px);
  }
  .search__input {
    padding-right: 30px;
  }
  .search__toggle {
    width: 32px;
    height: 32px;
    background-size: 16px;
  }
}

.search-result {
  display: block;
  margin-bottom: 10px;
}

.search-result__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.search-result__thumb {
  margin-bottom: 10px;
  width: 100%;
  min-width: 80px;
  border-radius: 4px;
  background-color: #9398c2;
}

.search-result__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.search-result__excerpt {
  font-size: 1.125rem;
  color: #707070;
}

.search-result strong {
  color: black;
  font-weight: 800;
}

@media screen and (min-width: 75em) {
  .search-result__thumb {
    max-height: 56px;
  }
}

@media screen and (min-width: 36em) {
  .search-result__thumb {
    width: 100%;
    height: unset;
    aspect-ratio: 80 / 56;
  }
}

.social {
  text-align: right;
}

.social__title {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
}

.social__link {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 2.5px;
  background-size: contain;
  background-repeat: no-repeat;
}

.social__link--facebook {
  background-image: url(../images/svg/facebook-bw.svg);
}

.social__link--instagram {
  background-image: url(../images/svg/instagram-bw.svg);
}

.social__link--twitter {
  background-image: url(../images/svg/twitter-bw.svg);
}

.social__link--linkedin {
  background-image: url(../images/svg/linkedin-bw.svg);
}

.social__link--tiktok {
  background-image: url(../images/svg/tiktok-bw.svg);
}

.social__link:first-of-type {
  margin-left: 0;
}

.social__link:last-of-type {
  margin-right: 0;
}

.logo {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  line-height: 1.1;
  padding-left: 7rem;
  height: 5rem;
  background: url(../images/svg/mf-logo.svg) left center no-repeat;
  background-size: contain;
}

.logo span {
  display: block;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo--bnb {
  background: url(../images/svg/logo-bnb.svg) left center no-repeat;
  background-size: contain;
}

.offcanvas__title {
  font-size: 2.5rem;
  font-weight: 700;
}

.offcanvas--leuro {
  width: 60vw;
  border-left: 0;
  -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
          box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.offcanvas--leuro .container {
  max-width: 70%;
  margin-left: 40px;
}

@media screen and (max-width: 47.9em) {
  .offcanvas--leuro .container {
    margin: 0;
    padding: 10px;
    max-width: unset;
  }
}

@media screen and (max-width: 47.9em) {
  .offcanvas--leuro {
    width: 100%;
  }
  .offcanvas--leuro .container {
    padding-bottom: 100px;
  }
}

.modal-backdrop.show {
  opacity: 0.3;
}

.counter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.counter__title {
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: none;
}

.counter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.counter__list li {
  padding: 0 10px;
  border-right: 1px solid #010c17;
  color: #6d7278;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
}

.counter__list li span {
  display: block;
  color: #010c17;
  font-size: 2rem;
  font-weight: 800;
}

.counter__list li:last-child {
  border-right: 0;
}

@media screen and (max-width: 47.9em) {
  .counter {
    margin-right: auto;
  }
  .counter__title {
    font-size: 0.875rem;
  }
  .counter__list li {
    font-size: 0.8rem;
  }
  .counter__list li span {
    font-size: 1.2rem;
  }
}

.calculator {
  position: relative;
}

.calculator__input {
  position: relative;
  width: 100%;
  height: 98px;
  margin-bottom: 20px;
  padding: 20px 180px 14px 50px;
  border-color: transparent;
  border-radius: 3.35rem;
  line-height: 1;
  color: #2b3377;
  font-size: 4rem;
  font-weight: 700;
  z-index: 0;
}

.calculator__input::-webkit-input-placeholder {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.calculator__input:-ms-input-placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.calculator__input::-ms-input-placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.calculator__input::placeholder {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.calculator__label {
  position: absolute;
  top: 0;
  right: 110px;
  width: 50px;
  height: 98px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #9398c2;
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.1;
  z-index: 1;
}

.calculator small {
  display: block;
  font-size: 0.92rem;
}

.video-carousel .carousel-caption {
  position: unset;
}

.video-carousel .carousel-indicators {
  top: -30px;
  left: unset;
  bottom: unset;
  margin-left: unset;
  margin-right: unset;
}

.video-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 1;
}

.video-carousel .carousel-indicators .active {
  position: relative;
}

.video-carousel .carousel-indicators .active:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid white;
}

.video-carousel__title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}

.video-carousel__content {
  text-align: left;
}

.video-js {
  margin-right: auto;
  margin-left: auto;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1920 / 1080;
}

.vjs-tech,
.vjs-poster {
  border-radius: 16px;
}

.vjs-control-bar {
  border-radius: 0 0 16px 16px;
}

.video-js .vjs-big-play-button {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.vjs-poster {
  background-size: cover !important;
}

.doc-link {
  display: block;
  padding: 40px;
  height: 100%;
}

.doc-link__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.doc-link__descr {
  display: block;
  color: #6d7278;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.doc-link__meta {
  display: inline-block;
  color: #6d7278;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.doc-link__meta:after {
  content: "";
  margin-right: 5px;
  padding-left: 2px;
  border-right: 2px solid #caccdd;
}

.doc-link__meta:last-of-type:after {
  display: none;
}

.doc-grid > div[class*="col"] {
  border-bottom: 2px solid #caccdd;
}

.doc-grid > div[class*="col"]:hover {
  background-color: #eaebf8;
  color: #606699;
}

.doc-grid > div[class*="col"]:hover a {
  color: inherit;
}

@media screen and (min-width: 48em) {
  .doc-grid > div[class*="col"] {
    border-right: 2px solid #caccdd;
  }
  .doc-grid > div[class*="col"]:nth-child(2),
  .doc-grid > div[class*="col"]:nth-child(4),
  .doc-grid > div[class*="col"]:nth-child(6) {
    border-right: 0;
  }
  .doc-grid > div[class*="col"]:nth-child(5),
  .doc-grid > div[class*="col"]:nth-child(6) {
    border-bottom: 0;
  }
  .doc-grid:last-of-type {
    border-bottom: 0;
  }
}

@media screen and (min-width: 62em) {
  .doc-grid > div[class*="col"] {
    border-right: 2px solid #caccdd;
  }
  .doc-grid > div[class*="col"]:nth-child(3),
  .doc-grid > div[class*="col"]:nth-child(6) {
    border-right: 0;
  }
  .doc-grid > div[class*="col"]:nth-child(2),
  .doc-grid > div[class*="col"]:nth-child(4) {
    border-right: 2px solid #caccdd;
  }
  .doc-grid > div[class*="col"]:nth-child(4),
  .doc-grid > div[class*="col"]:nth-child(5),
  .doc-grid > div[class*="col"]:nth-child(6) {
    border-bottom: 0;
  }
}

.tabs {
  --tabsWidth: 100%;
  --tabOffset: 0;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eaebf8;
  margin-bottom: 0 !important;
}

.tabs:before {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  display: block;
  width: 50%;
  width: var(--tabsWidth);
  left: var(--tabOffset);
  height: 100%;
  border-radius: 2.25rem;
  background-color: #2b3377;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.tabs--right:before {
  content: '';
  position: absolute;
  top: 10px;
  left: var(--tabOffset);
  background-color: #2b3377;
}

.tabs__container {
  padding: 10px;
  border-radius: 2.25rem;
  background-color: #eaebf8;
  margin-bottom: 20px;
}

.tabs__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--tabsWidth);
          flex: 0 0 var(--tabsWidth);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2.25rem;
}

.tabs__btn {
  width: 100%;
  color: #2b3377;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.tabs__btn:focus, .tabs__btn:hover {
  color: #2b3377;
}

.tabs__btn.active {
  color: white;
}

.tab-pane {
  height: 100%;
}

@media screen and (max-width: 61.9em) {
  .tabs {
    display: block;
    padding: 0;
    border-radius: 0;
  }
  .tabs:before {
    width: calc(100% - 20px);
    top: var(--tabOffset);
    height: calc(var(--tabsWidth));
    left: 10px;
    -webkit-transition: top 0.5s ease;
    transition: top 0.5s ease;
  }
  .tabs__item {
    min-height: 50px;
  }
}

@media screen and (max-width: 35.9em) {
  .tabs__container {
    border-radius: 0;
  }
}

.accord__item {
  margin-bottom: 5px;
}

.accord__btn {
  width: 100%;
  padding: 16px 2.25rem;
  padding-right: 3.75rem;
  font-size: 1.125rem;
  text-align: left;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 2.25rem;
  background: url(../images/svg/plus.svg) right 1.5rem center no-repeat;
  background-size: 26px;
}

.accord__btn:not(.collapsed) {
  background: url(../images/svg/close.svg) right 1.5rem center no-repeat;
  background-size: 26px;
}

.accord__btn:focus, .accord__btn:hover, .accord__btn:not(.collapsed) {
  background-color: #eaebf8;
  -webkit-box-shadow: 5px 17px 10px -10px #d9d9d9;
          box-shadow: 5px 17px 10px -10px #d9d9d9;
}

.accord__content {
  scroll-margin: 60px;
  padding: 20px;
}

.timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
}

.timeline:before {
  position: absolute;
  content: '';
  width: 130%;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #2b3377;
}

.timeline__container {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.timeline__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 12px);
  height: 100%;
}

.timeline__prev, .timeline__next {
  position: absolute;
  border: 0;
  border-radius: 0;
  height: 100%;
  width: 15vw;
  z-index: 1;
  background-repeat: no-repeat;
}

.timeline__prev {
  top: 0;
  left: 0;
  background-position: left 20px center, left center;
  background-image: url(../images/svg/timeline-prev.svg), -webkit-gradient(linear, left top, right top, from(#eaebf8), to(rgba(234, 235, 248, 0)));
  background-image: url(../images/svg/timeline-prev.svg), linear-gradient(90deg, #eaebf8 0%, rgba(234, 235, 248, 0) 100%);
}

.timeline__next {
  top: 0;
  right: -12px;
  background-position: right 20px center, right center;
  background-image: url(../images/svg/timeline-next.svg), -webkit-gradient(linear, right top, left top, from(#eaebf8), to(rgba(234, 235, 248, 0)));
  background-image: url(../images/svg/timeline-next.svg), linear-gradient(270deg, #eaebf8 0%, rgba(234, 235, 248, 0) 100%);
}

.timeline__col {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr 1fr 1fr 1fr;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 318px;
  min-height: 520px;
  margin-left: 82px;
}

.timeline__item {
  position: relative;
  margin: 10px 0;
  width: 318px;
  height: 130px;
}

.timeline__item:before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #2b3377;
}

.timeline__item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-11px);
          transform: translateX(-11px);
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid #eaebf8;
  background-color: #caccdd;
}

.timeline__item:nth-child(1):before, .timeline__item:nth-child(3):before {
  display: none;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-3px, 100%);
          transform: translate(-3px, 100%);
}

.timeline__item:nth-child(2):before, .timeline__item:nth-child(4):before {
  display: none;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-3px, -100%);
          transform: translate(-3px, -100%);
}

.timeline__item:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
}

.timeline__item:nth-child(3):before {
  height: calc(80px + 130px);
}

.timeline__item:nth-child(3):after {
  bottom: -230px;
}

.timeline__item:nth-child(1) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
  margin-bottom: 40px;
}

.timeline__item:nth-child(1):before {
  height: 40px;
}

.timeline__item:nth-child(1):after {
  bottom: -51px;
}

.timeline__item:nth-child(2) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
  margin-top: 40px;
}

.timeline__item:nth-child(2):before {
  height: 40px;
}

.timeline__item:nth-child(2):after {
  top: -51px;
}

.timeline__item:nth-child(4) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  grid-row: 4/5;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

.timeline__item:nth-child(4):before {
  height: calc(60px + 130px);
}

.timeline__item:nth-child(4):after {
  top: -200px;
}

.timeline__item:hover, .timeline__item:focus {
  cursor: pointer;
}

.timeline__item:hover *, .timeline__item:focus * {
  background-color: #2b3377 !important;
  color: white !important;
}

.timeline__item:hover *:after, .timeline__item:focus *:after {
  background-color: #2b3377 !important;
  color: white !important;
}

.timeline__item:hover:before, .timeline__item:focus:before {
  display: block;
}

.timeline__btn {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 0;
  background-color: #caccdd;
  border: 16px;
  border-radius: 16px;
}

.timeline__btn__title {
  padding: 10px 20px;
  color: #2b3377;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 16px 16px 0 0;
}

.timeline__btn__content {
  position: relative;
  width: 100%;
  height: 3.75rem;
  margin-bottom: auto;
  padding: 0 20px;
  font-weight: 500;
  font-size: 0.87rem;
  line-height: 1.4;
  overflow: hidden;
}

.timeline__btn__content:after {
  position: absolute;
  right: 9px;
  bottom: 7px;
  color: #010c17;
  content: '...';
  font-size: 0.87;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #caccdd;
}

.timeline__btn__content:focus, .timeline__btn__content:hover {
  color: white;
  background-color: #2b3377;
}

.timeline__btn__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2rem;
  width: 318px;
  padding: 5px 20px;
  background-color: #dbdcf3;
  border-radius: 0 0 16px 16px;
}

.timeline__btn__category small {
  font-size: 0.62rem;
  font-weight: 700;
  vertical-align: middle;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timeline__modal {
  background-color: rgba(255, 255, 255, 0.7);
}

.timeline__modal .modal-dialog {
  max-width: 992px;
}

.timeline__modal .modal-content {
  padding: 0 10px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  background-color: #caccdd;
  border: 0;
}

.timeline__modal .modal-header {
  border: 0;
}

.timeline__modal__title span.date {
  display: block;
  margin-bottom: 15px;
  color: #2b3377;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}

.timeline__modal__title span.label {
  display: block;
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.timeline__modal__title span.institution {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.timeline__item--empty:before {
  display: none !important;
}

.timeline__item--empty:after {
  display: none !important;
}

@media screen and (max-width: 47.9em) {
  .timeline__nav {
    display: none;
  }
}

.modal-backdrop.show {
  display: none;
}

.widget {
  position: fixed;
  bottom: 150px;
  right: -170px;
  z-index: 9990;
}

.widget__toggle {
  position: absolute;
  bottom: 0;
  right: 180px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: url(../images/svg/widget-calc-2.svg) center no-repeat;
  background-color: #c79800;
  background-size: 39px;
  -webkit-animation: pulsate-fwd 1s ease-in-out infinite both;
          animation: pulsate-fwd 1s ease-in-out infinite both;
  z-index: 9990;
}

.widget__toggle--open {
  background: url(../images/svg/widget-calc-hover.svg) center no-repeat;
  background-color: #2b3377;
  background-size: 39px;
  -webkit-animation: none;
          animation: none;
}

.widget__calculator {
  display: none;
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #c79800;
  -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 44.1349px 33.4103px rgba(0, 0, 0, 0.0499905), 0px 25.7867px 18.0192px rgba(0, 0, 0, 0.0410016), 0px 16.0263px 10.2401px rgba(0, 0, 0, 0.0339535), 0px 9.49547px 5.52897px rgba(0, 0, 0, 0.0270553), 0px 4.4092px 2.34303px rgba(0, 0, 0, 0.0185875);
          box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 44.1349px 33.4103px rgba(0, 0, 0, 0.0499905), 0px 25.7867px 18.0192px rgba(0, 0, 0, 0.0410016), 0px 16.0263px 10.2401px rgba(0, 0, 0, 0.0339535), 0px 9.49547px 5.52897px rgba(0, 0, 0, 0.0270553), 0px 4.4092px 2.34303px rgba(0, 0, 0, 0.0185875);
}

.widget__calculator .calculator {
  width: 65%;
  margin-left: 20px;
  padding-top: 260px;
  background: url(../images/png/calc.png) center top -25px no-repeat;
  background-size: 340px;
}

.widget__calculator .calculator small {
  font-size: 0.75rem;
}

.widget__calculator .calculator input {
  margin-bottom: 5px;
  padding-left: 23;
  padding-right: 10px;
  height: 4.5rem;
  font-size: 2rem;
}

.widget__calculator .calculator input::-webkit-input-placeholder {
  font-size: 2rem;
}

.widget__calculator .calculator input:-ms-input-placeholder {
  font-size: 2rem;
}

.widget__calculator .calculator input::-ms-input-placeholder {
  font-size: 2rem;
}

.widget__calculator .calculator input::placeholder {
  font-size: 2rem;
}

.widget__calculator .calculator__label {
  right: 40px;
  font-size: 1.75rem;
  height: 77px;
}

.widget__calculator--open {
  display: block;
  width: 600px;
  height: 600px;
  opacity: 1;
  -webkit-animation: scale-in-br 0.3s;
          animation: scale-in-br 0.3s;
}

.widget__title {
  text-align: right;
  margin-right: 30px;
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 47.9em) {
  .widget__calculator--open {
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  /* .widget__title {
    opacity: 0;
  } */
  .widget__toggle {
    bottom: -10%;
  }
}

@-webkit-keyframes scale-in-br {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
}

@keyframes scale-in-br {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    opacity: 1;
  }
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.chatbot {
  display: none;
  position: fixed;
  bottom: 230px;
  right: -170px;
  z-index: 9990;
}

.chatbot__toggle {
  position: absolute;
  bottom: 0;
  right: 180px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: url(../images/svg/chatbot.svg) center no-repeat;
  background-color: #f86521;
  background-size: 39px;
  z-index: 9990;
}

.share-toggle {
  display: none;
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 230px;
  padding: 30px;
  background-color: #eaebf8;
  border-radius: 16px;
  -webkit-box-shadow: 0px 100px 80px rgba(1, 12, 23, 0.07), 0px 41.7776px 33.4221px rgba(43, 51, 119, 0.0503198), 0px 22.3363px 17.869px rgba(43, 51, 119, 0.0417275), 0px 12.5216px 10.0172px rgba(43, 51, 119, 0.035), 0px 6.6501px 5.32008px rgba(43, 51, 119, 0.0282725), 0px 2.76726px 2.21381px rgba(43, 51, 119, 0.0196802);
          box-shadow: 0px 100px 80px rgba(1, 12, 23, 0.07), 0px 41.7776px 33.4221px rgba(43, 51, 119, 0.0503198), 0px 22.3363px 17.869px rgba(43, 51, 119, 0.0417275), 0px 12.5216px 10.0172px rgba(43, 51, 119, 0.035), 0px 6.6501px 5.32008px rgba(43, 51, 119, 0.0282725), 0px 2.76726px 2.21381px rgba(43, 51, 119, 0.0196802);
  z-index: 0;
}

.share-toggle__container {
  position: relative;
}

.share-toggle__title {
  width: 100%;
  color: #2b3377;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.share-toggle__btn {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  padding-left: 32px;
  white-space: nowrap;
  font-weight: 700;
  text-align: center;
  border-radius: 18px;
}

.share-toggle__btn--fb {
  background: url(../images/svg/facebook-bw.svg) left 5px center no-repeat;
  background-size: 18px;
}

.share-toggle__btn--fb:hover, .share-toggle__btn--fb:focus {
  background: url(../images/svg/facebook-white.svg) left 5px center no-repeat;
  background-size: 18px;
}

.share-toggle__btn--tw {
  background: url(../images/svg/x-bw.svg) left 5px center no-repeat;
  background-size: 18px;
}

.share-toggle__btn--tw:hover, .share-toggle__btn--tw:focus {
  background: url(../images/svg/x-white.svg) left 5px center no-repeat;
  background-size: 18px;
}

.share-toggle__btn--ln {
  background: url(../images/svg/linkedin-bw.svg) left 8px center no-repeat;
  background-size: 16px;
}

.share-toggle__btn--ln:hover, .share-toggle__btn--ln:focus {
  background: url(../images/svg/linkedin-white.svg) left 8px center no-repeat;
  background-size: 16px;
}

.share-toggle__btn:hover, .share-toggle__btn:focus {
  color: white;
  text-align: right;
  background-color: #2b3377;
}

.share-toggle__btn--share {
  padding-left: 10px;
}

.share-toggle__btn--share:hover, .share-toggle__btn--share:focus {
  padding-left: 10px;
}

.share-toggle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.u-btn-share {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 47.9em) {
  .share-toggle {
    right: -200%;
  }
}

.news {
  display: block;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(transparent, white 16px);
  border-radius: 16px;
  -webkit-box-shadow: 0px -4px 80px rgba(0, 0, 0, 0.04), 0px -1.6711px 34.5863px rgba(0, 0, 0, 0.0296068), 0px -0.89345px 19.6887px rgba(0, 0, 0, 0.0254884), 0px -0.50086px 11.9107px rgba(0, 0, 0, 0.0223136), 0px -0.266px 6.87347px rgba(0, 0, 0, 0.0189663), 0px -0.11069px 3.11447px rgba(0, 0, 0, 0.0142185);
          box-shadow: 0px -4px 80px rgba(0, 0, 0, 0.04), 0px -1.6711px 34.5863px rgba(0, 0, 0, 0.0296068), 0px -0.89345px 19.6887px rgba(0, 0, 0, 0.0254884), 0px -0.50086px 11.9107px rgba(0, 0, 0, 0.0223136), 0px -0.266px 6.87347px rgba(0, 0, 0, 0.0189663), 0px -0.11069px 3.11447px rgba(0, 0, 0, 0.0142185);
  -webkit-transition: -webkit-box-shadow 1s ease;
  transition: -webkit-box-shadow 1s ease;
  transition: box-shadow 1s ease;
  transition: box-shadow 1s ease, -webkit-box-shadow 1s ease;
}

.news:hover, .news:focus {
  -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
          box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
}

.news__thumb {
  height: 220px;
  width: 100%;
  background: url(../images/svg/news-default.svg) center no-repeat;
  background-color: #606699;
  border-radius: 16px 16px 0 0;
}

.news__thumb img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.news__content {
  color: #010c17;
  padding: 20px;
  border-radius: 0 0 16px 16px;
}

.news__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}

.news__meta {
  color: #6d7278;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
}

.news__excerpt {
  margin-bottom: 0;
  padding: 10px 0;
  font-size: 1.125rem;
}

.news.video-thumb {
  border: none;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news--feature .news__thumb {
  height: unset;
  max-height: 380px;
  aspect-ratio: 2/1;
}

.news--feature .news__thumb .video-js {
  border-radius: 16px 16px 0 0;
}

.news--feature .news__thumb .vjs-tech,
.news--feature .news__thumb .vjs-poster {
  border-radius: 16px 16px 0 0;
}

.event {
  position: relative;
  display: block;
  height: 100%;
  padding-left: 20px;
  padding-bottom: 60px;
}

.event:hover, .event:focus {
  color: black;
}

.event__date {
  color: #2b3377;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.event__date span {
  color: #6d7278;
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
}

.event__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.event__meta {
  font-weight: 800;
}

.event:has(.event__date:nth-child(2)) .event__date:first-child {
  position: relative;
}

.event:has(.event__date:nth-child(2)) .event__date:first-child::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #2b3377;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

.event--passed {
  opacity: 0.5;
}

.event--passed:focus, .event--passed:hover {
  opacity: 1;
}

.events-calendar {
  width: 100%;
  padding-top: 0;
}

.events-calendar__wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

.events-calendar .vanilla-calendar-header {
  min-height: 40px;
}

.events-calendar .vanilla-calendar-month {
  color: #2b3377;
  font-size: 1.125rem;
}

.events-calendar .vanilla-calendar-week__day {
  color: #2b3377;
}

.events-calendar .vanilla-calendar-day__btn {
  font-size: 0.875rem;
}

.events-calendar .vanilla-calendar-day__btn_today {
  background-color: #d9d9d9;
  color: #2b3377;
}

.events-calendar .vanilla-calendar-day__btn_today:hover, .events-calendar .vanilla-calendar-day__btn_today:focus {
  background-color: #caccdd;
  color: inherit;
}

.events-calendar .vanilla-calendar-day__btn_weekend {
  color: #c79800;
}

.events-calendar .vanilla-calendar-day__btn_weekend:hover, .events-calendar .vanilla-calendar-day__btn_weekend:focus {
  background-color: #fbefc0;
}

.events-calendar .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_today {
  color: #2b3377;
}

.events-calendar .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected, .events-calendar .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_selected, .events-calendar .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_selected:hover, .events-calendar .vanilla-calendar-day__btn_weekend.vanilla-calendar-day__btn_holiday.vanilla-calendar-day__btn_selected:hover {
  background-color: #d5c798;
  color: #2b3377;
}

.events-calendar .vanilla-calendar-day__btn_selected {
  background-color: #2b3377;
}

.events-calendar .vanilla-calendar-day__btn_selected, .events-calendar .vanilla-calendar-day__btn_selected:hover, .events-calendar .vanilla-calendar-day__btn_selected:focus {
  background-color: #2b3377;
}

.event-carousel__btn {
  width: 12%;
}

.event-carousel__btn.carousel-control-next {
  right: -12%;
}

.event-carousel__btn.carousel-control-prev {
  left: -12%;
}

@media (max-width: 1659px) {
  .event-carousel__btn {
    width: 50px;
  }
  .event-carousel__btn.carousel-control-next {
    right: -40px;
  }
  .event-carousel__btn.carousel-control-prev {
    left: -40px;
  }
}

@media screen and (max-width: 87.4em) {
  .event-carousel__btn {
    width: 50px;
  }
  .event-carousel__btn.carousel-control-next {
    right: -25px;
  }
  .event-carousel__btn.carousel-control-prev {
    left: -25px;
  }
}

@media screen and (max-width: 61.9em) {
  .event__date {
    font-size: 2rem;
  }
  .event-carousel__btn {
    background-color: rgba(255, 255, 255, 0.09);
    width: 50px;
  }
  .event-carousel__btn.carousel-control-next {
    right: 0px;
  }
  .event-carousel__btn.carousel-control-prev {
    left: 0px;
  }
  .events-calendar__wrapper {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 47.9em) {
  .event-carousel__btn {
    display: none;
  }
}

.download-link {
  display: block;
  padding: 10px;
  padding-left: calc(32px + 20px);
  background: url(../images/svg/download-link.svg) left 5px top 7px no-repeat;
  background-size: 32px;
}

.download-link__list {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.download-link__list li {
  border-bottom: 1px solid #e0e1e2;
}

.download-link__list li:first-child {
  border-top: 1px solid #e0e1e2;
}

.download-link__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
}

.download-link__title span {
  color: #6d7278;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: right;
}

.download-link__title span:first-child {
  margin-left: auto;
}

.download-link__title span:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
}

.download-link:hover, .download-link:focus {
  color: #2b3377;
}

.download-links__container .download-link__list li:first-child {
  border-top: none;
}

.brand {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 0;
  height: 0;
  background-image: url(../images/svg/euro-logo.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 100px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.brand--rise {
  opacity: 1;
  visibility: visible;
  width: 400px;
  aspect-ratio: 131/40;
  background-color: transparent;
  -webkit-animation: 0.3s linear brand-rise;
          animation: 0.3s linear brand-rise;
}

.brand:hover, .brand:focus {
  color: inherit;
}

@-webkit-keyframes brand-rise {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 79px;
  }
}

@keyframes brand-rise {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 79px;
  }
}

.brand-video {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: white;
  opacity: 0;
}

.brand-video .video-js,
.brand-video .vjs-tech {
  -webkit-clip-path: inset(2px 2px);
          clip-path: inset(2px 2px);
  border-radius: 0;
  border: 0;
  background-color: white;
}

.brand-video .video-js * > *,
.brand-video .vjs-tech * > * {
  border: transparent;
  border: 0;
  background-color: transparent;
  outline: 0;
  outline: none;
}

.brand-video .vjs-control-bar,
.brand-video .vjs-loading-spinner,
.brand-video .vjs-big-play-button,
.brand-video .vjs-modal-dialog,
.brand-video .vjs-error-display,
.brand-video .vjs-big-play-button,
.brand-video .vjs-text-track-display,
.brand-video .vjs-poster {
  display: none;
}

.brand-video--opacity {
  opacity: 1;
}

.brand-video--dismissed {
  display: none;
  -webkit-animation: 0.2s linear hide-video;
          animation: 0.2s linear hide-video;
}

@-webkit-keyframes hide-video {
  0% {
    top: unset;
    bottom: 0;
    display: block;
    opacity: 1;
  }
  100% {
    top: unset;
    bottom: 0;
    height: 0;
    opacity: 0;
    display: none;
  }
}

@keyframes hide-video {
  0% {
    top: unset;
    bottom: 0;
    display: block;
    opacity: 1;
  }
  100% {
    top: unset;
    bottom: 0;
    height: 0;
    opacity: 0;
    display: none;
  }
}

html[lang*='bg'] .brand {
  background-image: url(../images/svg/euro-logo.svg);
}

html[lang*='en'] .brand {
  background-image: url(../images/svg/euro-logo-en.svg);
}

.banner-card {
  width: 100%;
  height: 100%;
}

.banner-card a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.banner-card a img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.banner-card__title {
  margin-top: 10px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-color: transparent;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.sitemap {
  list-style: none;
  margin-bottom: 0;
  padding: 0 5px 10px 5px;
}

.sitemap__title {
  font-size: 1.1rem;
  color: #2b3377;
  margin-top: 10px;
  margin-left: 5px;
  margin-right: 5px;
}

.sitemap__title a {
  text-decoration: none !important;
}

.sitemap__link {
  color: #010c17 !important;
  font-weight: 700;
}

.sitemap__link:hover, .sitemap__link:focus {
  color: #c79800;
}

.sitemap a {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  line-height: 1.1;
  text-decoration: none !important;
}

.sitemap li ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.sitemap li ul li:before {
  display: none !important;
}

.sitemap li ul > li > a {
  padding-left: 20px;
  background: url(../images/svg/dots-9-grey.svg) left center no-repeat;
  font-weight: 400 !important;
}

.sitemap__table {
  margin-top: 60px;
  margin-bottom: 60px;
}

.sitemap__table div[class*='col'] {
  border-top: 1px solid #e0e1e2;
}

@media screen and (min-width: 48em) {
  .sitemap__table div[class*='col'] {
    border-top: 1px solid #e0e1e2;
    border-left: 1px solid #e0e1e2;
  }
  .sitemap__table div[class*='col']:nth-child(-n + 2) {
    border-top: 1px solid #e0e1e2;
  }
  .sitemap__table div[class*='col']:nth-child(odd) {
    border-left: 1px solid #e0e1e2;
  }
}

@media (min-width: 768px) and (max-width: 991.5px) {
  .sitemap__table div[class*='col']:nth-child(even) {
    border-right: 1px solid #e0e1e2;
  }
  .sitemap__table div[class*='col']:last-child, .sitemap__table div[class*='col']:nth-last-child(2) {
    border-bottom: 1px solid #e0e1e2;
  }
}

@media screen and (min-width: 62em) {
  .sitemap__table div[class*='col'] {
    border-top: none;
    border-left: none;
    border-right: 1px solid #e0e1e2;
    border-bottom: 1px solid #e0e1e2;
  }
  .sitemap__table div[class*='col']:nth-child(-n + 4) {
    border-top: 1px solid #e0e1e2;
  }
  .sitemap__table div[class*='col']:nth-child(odd) {
    border-left: none;
  }
  .sitemap__table div[class*='col']:nth-child(4n + 5), .sitemap__table div[class*='col']:first-child {
    border-left: 1px solid #e0e1e2;
  }
}

.partners {
  width: 100%;
}

.partners__title {
  font-size: 1.3rem;
  font-weight: 800;
}

.partners__link {
  display: block;
  width: 100%;
  height: 70px;
}

.partners__link--kzp {
  background: url(../images/png/kzp-logo.png) left center no-repeat;
  background-size: 150px;
}

.partners__link--kfn {
  background: url(../images/png/noback-logo.png) center no-repeat;
  background-size: 150px;
}

.partners__link--nap {
  height: 150px;
  background: url(../images/png/nra-logo.svg) center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 61.9em) {
  .partners__link {
    display: block;
    width: 100%;
    height: 100px;
  }
  .partners__link--kzp {
    background: url(../images/png/kzp-logo.png) left center no-repeat;
    background-size: 150px;
  }
  .partners__link--kfn {
    background: url(../images/png/noback-logo.png) left center no-repeat;
    background-size: 150px;
  }
  .partners__link--nap {
    background: url(../images/png/nra-logo.svg) left center no-repeat;
    background-size: contain;
  }
}

.header {
  position: relative;
  padding-top: 5px;
  z-index: 2;
  background-color: white;
}

.header > .row {
  padding: 20px;
}

.header video,
.header .video-js {
  background-color: transparent;
}

.header__contacts {
  margin-top: -5px;
  line-height: 1;
}

.header__contacts label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.header__contacts .header__phone {
  display: block;
  color: #010c17;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.header__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  min-height: 79px;
}

.header__nav {
  width: 100%;
}

.header .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 10px;
}

.header .social__link {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 2.5px;
  background-size: contain;
  background-repeat: no-repeat;
}

.header .social__link--facebook {
  background-image: url(../images/svg/facebook-white.svg);
}

.header .social__link--instagram {
  background-image: url(../images/svg/instagram-white.svg);
}

.header .social__link--twitter {
  background-image: url(../images/svg/x-white.svg);
}

.header .social__link--linkedin {
  background-image: url(../images/svg/linkedin-white.svg);
}

.header .social__link--tiktok {
  background-image: url(../images/svg/tiktok-white.svg);
}

main {
  background-color: white;
  position: relative;
  -webkit-box-shadow: 0px 100px 80px rgba(43, 51, 119, 0.07), 0px 41.7776px 33.4221px rgba(43, 51, 119, 0.0503198), 0px 22.3363px 17.869px rgba(43, 51, 119, 0.0417275), 0px 12.5216px 10.0172px rgba(43, 51, 119, 0.035), 0px 6.6501px 5.32008px rgba(43, 51, 119, 0.0282725), 0px 2.76726px 2.21381px rgba(43, 51, 119, 0.0196802);
          box-shadow: 0px 100px 80px rgba(43, 51, 119, 0.07), 0px 41.7776px 33.4221px rgba(43, 51, 119, 0.0503198), 0px 22.3363px 17.869px rgba(43, 51, 119, 0.0417275), 0px 12.5216px 10.0172px rgba(43, 51, 119, 0.035), 0px 6.6501px 5.32008px rgba(43, 51, 119, 0.0282725), 0px 2.76726px 2.21381px rgba(43, 51, 119, 0.0196802);
  z-index: 1;
}

.banners-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  z-index: 0;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eaebf8;
}

.footer__title {
  padding-left: 112px;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: none;
}

.footer__title span {
  color: #2b3377;
  font-weight: 800;
  display: block;
}

.footer a:not(.logo) {
  color: #2b3377;
}

.footer a:not(.logo):hover, .footer a:not(.logo):focus {
  color: inherit;
}

.footer .logo:hover, .footer .logo:focus {
  color: #2b3377;
}

.contact {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.87rem;
  letter-spacing: -0.1px;
  line-height: 1.4;
  padding-left: 100px;
  background-size: 85px;
  background-repeat: no-repeat;
  background-position: left top;
}

.contact__header {
  font-size: 0.87rem;
  margin-bottom: auto;
  text-transform: unset;
  font-weight: 700;
}

.contact__data {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.contact__data--tel {
  display: inline-block;
}

.contact__data--tel:after {
  content: ' | ';
}

.contact__data--mail {
  display: inline-block;
  color: #2b3377;
}

.contact__web {
  font-weight: 700;
  color: #2b3377;
}

.contact--mf {
  background-image: url(../images/svg/mf-logo.svg);
  background-size: 100px;
  background-position: left -5px top;
}

.contact--bnb {
  background-image: url(../images/svg/logo-bnb.svg);
}

.copyrights {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.1px;
}

.copyrights p {
  margin-bottom: 0;
}

.copyrights a {
  display: inline-block;
  margin-left: 2.5px;
  text-decoration: underline;
}

@media screen and (min-width: 62em) {
  .container-lg-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: unset;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 47.9em) {
  .header__title {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header__contacts {
    display: none;
  }
  .footer {
    position: static;
    padding-bottom: 40px;
  }
  .footer .logo {
    margin-bottom: 20px;
  }
  .copyrights {
    margin-top: 20px;
    text-align: left;
  }
}

.dark {
  color: white;
  background-color: #2b3377;
}

.dark a {
  color: inherit;
}

.dark a:hover, .dark a:focus {
  color: inherit;
}

.dark .section-title {
  color: white !important;
}

.dark .home-section__more {
  border-radius: 16px;
  background: url(../images/svg/arrow-right-white.svg) right 15px center no-repeat;
  background-size: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.dark .home-section__more:focus, .dark .home-section__more:hover {
  color: #2b3377;
  background: url(../images/svg/arrow-right-blue.svg) right 15px center no-repeat;
  background-size: 10px;
  background-color: white;
}

.medium {
  color: white;
  background-color: #606699;
}

.medium a {
  color: inherit;
}

.medium a:hover, .medium a:focus {
  color: inherit;
}

.medium .section-title {
  color: white !important;
}

.medium .home-section__more {
  border-radius: 16px;
  background: url(../images/svg/arrow-right-white.svg) right 15px center no-repeat;
  background-size: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.medium .home-section__more:focus, .medium .home-section__more:hover {
  color: #2b3377;
  background: url(../images/svg/arrow-right-blue.svg) right 15px center no-repeat;
  background-size: 10px;
  background-color: white;
}

.light {
  color: #2b3377;
  background-color: #caccdd;
}

.light a {
  color: inherit;
}

.light a:hover, .light a:focus {
  color: inherit;
}

.light .section-title {
  color: #caccdd;
}

.light .home-section__more {
  border-radius: 16px;
  background: url(../images/svg/arrow-right-blue.svg) right 15px center no-repeat;
  background-size: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.light .home-section__more:focus, .light .home-section__more:hover {
  color: #2b3377;
  background: url(../images/svg/arrow-right-blue.svg) right 15px center no-repeat;
  background-size: 10px;
  background-color: white;
}

.white {
  color: #2b3377;
  background-color: white;
}

.white a {
  color: inherit;
}

.white a:hover, .white a:focus {
  color: inherit;
}

.white .home-section__more {
  border-radius: 16px;
  background: url(../images/svg/arrow-right-white.svg) right 15px center no-repeat;
  background-size: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.white .home-section__more:focus, .white .home-section__more:hover {
  color: white;
  background: url(../images/svg/arrow-right-blue.svg) right 15px center no-repeat;
  background-size: 10px;
  background-color: #2b3377;
}

.home-section {
  padding-top: 100px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home-section .section-title {
  color: #2b3377;
}

.home-section .section-title-2 {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
  margin-bottom: 0;
}

.home-section .section-title-2 span {
  font-weight: 500;
  font-size: 1.8rem;
}

.home-section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1rem;
}

.home-section__more {
  display: block;
  margin-bottom: 22px;
  padding: 5px 20px;
  padding-right: 30px;
  color: #606699;
  font-weight: 700;
  font-size: 1rem;
  line-height: 0.9;
  border-radius: 16px;
  background: url(../images/svg/arrow-right-blue.svg) right 15px center no-repeat;
  background-size: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.home-section__more:focus, .home-section__more:hover {
  color: white;
  background: url(../images/svg/arrow-right-white.svg) right 15px center no-repeat;
  background-size: 10px;
  background-color: #2b3377;
}

.home-section--news {
  background-color: #2b3377;
  padding-top: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home-section--video {
  background: url(../images/svg/fillm.svg) center no-repeat;
  background-size: cover;
  background-color: #606699;
}

.home-section--video .section-title {
  color: white;
}

.home-section--events {
  background-color: #606699;
}

.home-section--events a:hover {
  color: inherit;
}

.home-section #pills-events {
  min-height: 45rem;
}

.home-section--calculator {
  background-color: #c79800;
}

.home-section--calculator .container {
  position: relative;
}

.home-section--calculator .section-title {
  color: white;
  opacity: 0.5;
  z-index: 0;
}

.home-section--calculator .calculator__container {
  position: relative;
  padding-bottom: 60px;
  z-index: 1;
}

.home-section--calculator .calculator__container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40vw;
  height: 700px;
  background: url(../images/png/calc.png) right top no-repeat;
  background-size: 720px;
  z-index: 1;
}

.home-section--calculator .calculator__container:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 200%;
  border-radius: 16px;
  background: radial-gradient(71.46% 71.46% at 50% 50%, #ffe879 0%, #fbc11d 100%);
  -webkit-box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
          box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802);
  z-index: -1;
}

.home-section--calculator .calculator {
  margin: 100px 0 50px 0;
}

.home-section--timeline {
  background-color: #eaebf8;
}

.home-section--timeline .section-title {
  font-size: 2.5rem;
  text-align: center;
}

.home-section--themes {
  margin-top: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home-section--themes .home-section__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-section--themes .header__contacts {
  text-align: right;
}

.home-section--themes .header__contacts p {
  margin-bottom: 0;
  font-size: 1.25;
  font-weight: 700;
  line-height: 1.2;
}

.home-section--middle {
  display: block;
  text-align: center;
  background-color: #d5c798;
  background-image: radial-gradient(#fbefc0 0%, #d5c798 75%);
}

.home-section--middle p {
  font-size: 1.2rem;
}

.big-hero {
  --headerHeight: 0px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding-top: 0;
  overflow: hidden;
  background-color: #2b3377;
}

.big-hero__title {
  position: relative;
  margin-bottom: 8.75rem;
  font-size: 4.5rem;
  font-weight: 500;
  text-align: center;
  text-transform: none;
  line-height: 1;
}

.big-hero__title span {
  position: absolute;
  display: block;
  color: #2b3377;
  font-size: 8.75rem;
  font-weight: 800;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: fade-in 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.big-hero__background {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  z-index: 0;
}

.big-hero__background svg {
  height: 100%;
}

.big-hero__background video,
.big-hero__background img {
  width: 100%;
}

.big-hero__background video {
  border-radius: 0;
}

.big-hero__background img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.big-hero__background .vjs-poster {
  background-size: cover !important;
}

.big-hero__background .vjs-big-play-button {
  display: none;
}

.big-hero__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(43, 51, 119, 0.24);
}

.big-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: auto;
  padding-bottom: 60px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  background-color: #2b3377;
  z-index: 1;
}

.big-hero__content p {
  max-width: 700px;
  margin: 40px auto 40px auto;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.home-section:has(.image-banner) {
  padding-top: 50px;
  padding-bottom: 50px;
}

.image-banner {
  width: 100%;
}

.image-banner img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 61.9em) {
  .home-section .big-hero__title {
    margin-bottom: 10%;
    font-size: 2rem;
  }
  .home-section .big-hero__title span {
    font-size: 2.5rem;
  }
  .home-section .big-hero__content {
    padding-bottom: 20px;
  }
  .home-section .big-hero__content p {
    font-size: 1.2rem;
    width: 90%;
  }
  .home-section .big-hero__background svg {
    left: -15%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1550px) {
  .home-section--calculator .calculator__container::before {
    top: -50px;
    width: 50%;
    height: 60vh;
    background-size: contain;
    background-position: right 0px top 0px;
  }
}

@media screen and (max-width: 74.9em) {
  .home-section .section-title {
    font-size: 2.8rem;
  }
  .big-hero__background {
    overflow: hidden;
  }
  .big-hero__background svg {
    height: 100%;
  }
}

@media screen and (max-width: 61.9em) {
  .home-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .home-section .section-title {
    font-size: 2.2rem;
  }
  .home-section--calculator .calculator__input {
    font-size: 2.5rem;
    height: unset;
    padding: 20px 100px 14px 50px;
  }
  .home-section--calculator .calculator__label {
    right: 10px;
    width: unset;
    height: unset;
    font-size: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .home-section--calculator .calculator__container::before {
    top: -130px;
    width: 80vw;
    height: 250px;
    background-size: contain;
    background-position: right 0px top -20px;
  }
}

@media screen and (min-width: 75em) {
  .big-hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: calc(100vh - var(--headerHeight));
    overflow: hidden;
  }
  .big-hero__background {
    position: absolute;
  }
  .big-hero__content {
    background-color: transparent;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-header {
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2b3377;
  padding-top: 80px;
  padding-bottom: 40px;
}

.page-header__title {
  width: 100%;
  font-weight: 800;
  color: #2b3377;
  font-size: 4.5rem;
  text-align: center;
}

.page-header__title span {
  display: block;
  font-size: 0.87rem;
  font-weight: 500;
}

.page-breadcrumbs {
  --bs-breadcrumb-divider: '/';
  color: #2b3377;
}

.page-breadcrumbs__link {
  display: inline-block;
  color: inherit;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

.page-section {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-section__title {
  color: #2b3377;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 20px;
}

.page-nav {
  padding-top: 10px;
  padding-bottom: 40px;
}

.page-nav__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px;
  border-radius: 32px;
  background-color: #eaebf8;
}

.page-nav__list .page-item:last-child .page-link, .page-nav__list .page-item:first-child .page-link {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-color: transparent;
}

.page-nav__list .page-item:last-child .page-link:hover, .page-nav__list .page-item:last-child .page-link:focus, .page-nav__list .page-item:first-child .page-link:hover, .page-nav__list .page-item:first-child .page-link:focus {
  background-color: #eaebf8;
  color: white;
}

.page-nav__list .page-item:not(:first-child) .page-link {
  margin-left: 0;
}

.page-nav__list .page-item .page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  font-weight: 700;
  border-radius: 50%;
  background-color: #eaebf8;
  border: 0px solid transparent;
}

.page-nav__list .page-item .page-link:hover, .page-nav__list .page-item .page-link:focus {
  background-color: #2b3377;
  color: white;
}

.page-nav__list .page-item .page-active {
  background-color: #2b3377;
  color: white;
}

.page-nav__list .page-item .page-prev {
  background: url(../images/svg/timeline-prev.svg) center no-repeat;
  background-size: cover;
}

.page-nav__list .page-item .page-prev:focus, .page-nav__list .page-item .page-prev:hover {
  background: url(../images/svg/timeline-prev-active.svg) center no-repeat;
  background-size: cover;
}

.page-nav__list .page-item .page-next {
  background: url(../images/svg/timeline-next.svg) center no-repeat;
  background-size: cover;
}

.page-nav__list .page-item .page-next:focus, .page-nav__list .page-item .page-next:hover {
  background: url(../images/svg/timeline-next-active.svg) center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 87.4em) {
  .page-header {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .page-header__title {
    font-size: 3.2rem;
    text-align: center;
  }
}

@media screen and (max-width: 47.9em) {
  .page-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .page-header__title {
    font-size: 2.5rem;
  }
  .page-header + .g-5 {
    --bs-gutter-x: 0;
  }
  .page-section {
    margin-top: 0;
    padding-top: 0;
  }
}

.article {
  --article-gallery-nav-offset: 66.66%;
  --article-gallery-nav-width: 33.33%;
  margin-top: 60px;
  padding-top: 5px;
  padding-bottom: 60px;
}

.article__title {
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.article__meta {
  padding: 20px 0;
}

.article__meta p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.article__subtitle {
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
}

.article-header {
  top: 0;
  padding-right: 5vw;
}

.article-header .article__title {
  font-weight: 700;
  border-bottom: 2px solid #caccdd;
}

.article-header__subcontainer .article__meta {
  padding: 0;
}

.article-header__subcontainer .article-tools {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-content p {
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.75;
}

.article-section {
  margin-top: 40px;
}

.article-section__title {
  margin-bottom: 15px;
  color: #6d7278;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-media {
  margin-bottom: 20px;
}

.article-media:has(li[class='tabs__item']:only-child) .article-media__nav {
  display: none;
}

.article-media:has(li[class='tabs__item']:only-child) .article-media__content .vjs-tect,
.article-media:has(li[class='tabs__item']:only-child) .article-media__content .video-js,
.article-media:has(li[class='tabs__item']:only-child) .article-media__content .vjs-poster,
.article-media:has(li[class='tabs__item']:only-child) .article-media__content img {
  border-radius: 16px 16px 16px 16px;
}

.article-media .tabs {
  position: relative;
  min-height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 2.25rem 2.25rem;
  background-color: #caccdd;
}

.article-media .tabs:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--article-gallery-nav-width);
  height: 100%;
  border-radius: 0 0 0 2.25rem;
  background-color: #2b3377;
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.article-media .tabs:has(.tabs__item:only-child)::before {
  border-radius: 0 0 2.25rem 2.25rem;
}

.article-media .tabs--right:before {
  content: '';
  position: absolute;
  top: 0px;
  left: var(--article-gallery-nav-offset);
  border-radius: 0 0 2.25rem 0;
  background-color: #2b3377;
}

.article-media .tabs--center:before {
  content: '';
  position: absolute;
  top: 0px;
  left: var(--article-gallery-nav-offset);
  border-radius: 0 0 0 0;
  background-color: #2b3377;
}

.article-media .tabs__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--article-gallery-nav-width);
          flex: 0 0 var(--article-gallery-nav-width);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.article-media .tabs__btn {
  text-align: center;
  width: 100%;
  color: #2b3377;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-media .tabs__btn:focus, .article-media .tabs__btn:hover {
  color: #2b3377;
}

.article-media .tabs__btn.active {
  color: white;
}

.article-media__content {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.article-media__content img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-media__content .carousel,
.article-media__content .carousel-item,
.article-media__content .carousel-inner {
  height: 100%;
}

.article-media__content .vjs-tech,
.article-media__content .vjs-poster,
.article-media__content .video-js {
  border-radius: 16px 16px 0 0;
}

.article-media__content .vjs-control-bar {
  border-radius: 0;
}

.map {
  height: 300px;
}

aside .page-section__title {
  font-size: 1.5rem;
}

aside .news {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: unset;
}

aside .news__content {
  padding: 10px 0;
}

aside .news:hover, aside .news:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

aside div[class*='sticky'] {
  top: 120px;
}

@media screen and (max-width: 47.9em) {
  .article {
    margin-top: 0;
  }
  .article-media__content {
    width: 100%;
    height: unset;
    overflow: hidden;
  }
  .article-media__content img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#prevEvents .page-section__title,
#nextEvents .page-section__title {
  margin-left: 20px;
}

.about .header {
  background-color: #d5c798;
}

.euro-notes {
  max-width: 700px;
  padding-left: 0;
  margin: 0 auto;
}

.euro-notes li {
  display: inline-block;
  margin: 5px;
  width: 160px;
  height: 82px;
}

.euro-coins {
  position: relative;
  margin: 0 auto;
  max-width: 80%;
  aspect-ratio: 120 / 50;
}

.euro-coins__background {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/jpg/euro-coins-multiply.jpeg);
  background-repeat: no-repeat;
  background-position: center top -50px;
  background-size: 100%;
  mix-blend-mode: multiply;
}

.euro-coins:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/png/euro-coins-transparent.png);
  background-repeat: no-repeat;
  background-position: center top -50px;
  background-size: 100%;
  mix-blend-mode: normal;
}

#euroNotes1 .carousel-item img,
#euroNotes2 .carousel-item img {
  aspect-ratio: 120 / 62;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

.infograph {
  position: relative;
  display: block;
  max-width: 640px;
  aspect-ratio: 1280/800;
  background: url(../images/jpg/infograph-crop.jpg) center no-repeat;
  background-size: contain;
}

.infograph:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.infograph:hover:after {
  content: '';
  background-image: url(../images/svg/icon-search-hover.svg);
  background-size: 10%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  border: 2px solid #d9d9d9;
}

.roadmap-modal {
  height: 100vh;
  overflow-y: auto;
}

.fade:not(.show) {
  opacity: 0;
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}

.roadmap-modal {
  height: 100vh;
  overflow-y: auto;
}

.roadmap-modal:after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  height: 300px;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(70%, rgba(255, 255, 255, 0.9)));
  background-image: linear-gradient(180deg, transparent 10%, rgba(255, 255, 255, 0.9) 70%);
}

.roadmap-modal .modal-content {
  padding: 0;
  background-color: transparent;
}

.roadmap-modal .modal-header {
  border-bottom: 1px solid transparent;
}

@media screen and (min-width: 567px) {
  .roadmap-modal .modal-dialog {
    max-width: 800px;
  }
}

.roadmap-modal .modal-content {
  border-color: transparent;
}

.roadmap-modal__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}

.modal-backdrop.show {
  background-color: white;
  opacity: 0.8;
  z-index: 1;
}

.page-section .banner-card a {
  color: #2b3377;
}

.page-content,
.article-content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-content p:last-of-type:not(:first-of-type),
.article-content p:last-of-type:not(:first-of-type) {
  margin-bottom: 0;
}

.page-content h2:not([class]),
.page-content h3:not([class]),
.article-content h2:not([class]),
.article-content h3:not([class]) {
  color: #2b3377;
  font-weight: 800;
  margin-top: 20px;
}

.page-content h3:not([class]),
.page-content h4:not([class]),
.article-content h3:not([class]),
.article-content h4:not([class]) {
  color: #2b3377;
}

.page-content h3:not([class]),
.article-content h3:not([class]) {
  font-size: 1.5rem;
}

.page-content h4:not([class]),
.article-content h4:not([class]) {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.page-content h2:not([class]),
.page-content h3:not([class]),
.page-content h4:not([class]),
.article-content h2:not([class]),
.article-content h3:not([class]),
.article-content h4:not([class]) {
  color: #2b3377;
  margin-top: 20px;
}

.page-content a:not([class]),
.article-content a:not([class]) {
  color: #2b3377;
  font-weight: 700;
  text-decoration: underline;
}

.page-content a:not([class]):hover, .page-content a:not([class]):focus, .page-content a:not([class]):visited,
.article-content a:not([class]):hover,
.article-content a:not([class]):focus,
.article-content a:not([class]):visited {
  color: #c79800;
}

.page-content ul:not([class]),
.article-content ul:not([class]) {
  list-style: none;
}

.page-content ul:not([class]) li,
.article-content ul:not([class]) li {
  position: relative;
}

.page-content ul:not([class]) li:before,
.article-content ul:not([class]) li:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 12px;
  display: block;
  width: 4px;
  height: 5px;
  background-color: #010c17;
  border-radius: 50%;
}

.page-content table,
.page-content .table,
.article-content table,
.article-content .table {
  width: 100%;
  font-size: 0.875rem;
  line-height: 2;
}

.page-content table > :not(caption) > * td,
.page-content table > :not(caption) > * th,
.page-content .table > :not(caption) > * td,
.page-content .table > :not(caption) > * th,
.article-content table > :not(caption) > * td,
.article-content table > :not(caption) > * th,
.article-content .table > :not(caption) > * td,
.article-content .table > :not(caption) > * th {
  border-width: 2px;
  border-color: transparent;
}

.page-content table > :not(caption) > *:hover,
.page-content .table > :not(caption) > *:hover,
.article-content table > :not(caption) > *:hover,
.article-content .table > :not(caption) > *:hover {
  background-color: rgba(234, 235, 248, 0.3);
}

.page-content table > :not(caption) > * > *,
.page-content .table > :not(caption) > * > *,
.article-content table > :not(caption) > * > *,
.article-content .table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: #010c17;
}

.page-content table > tbody,
.page-content .table > tbody,
.article-content table > tbody,
.article-content .table > tbody {
  vertical-align: inherit;
}

.page-content table > thead,
.page-content .table > thead,
.article-content table > thead,
.article-content .table > thead {
  color: #2b3377;
  vertical-align: bottom;
  border-bottom: 1px solid #d9d9d9;
  text-transform: uppercase;
  line-height: 2;
}

.page-content table > thead tr:hover,
.page-content .table > thead tr:hover,
.article-content table > thead tr:hover,
.article-content .table > thead tr:hover {
  background-color: transparent;
}

.page-content table > thead th,
.page-content .table > thead th,
.article-content table > thead th,
.article-content .table > thead th {
  color: #2b3377;
  background-color: rgba(234, 235, 248, 0.5);
  border-color: white;
}

.page-content table .video-js,
.page-content .table .video-js,
.article-content table .video-js,
.article-content .table .video-js {
  height: unset;
  aspect-ratio: 16/9;
}

.error {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}

.error__title {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.error__title:before {
  content: '';
  display: block;
  margin-bottom: 20px;
  height: 304px;
  width: 100%;
}

.error p {
  font-size: 1.25rem;
  font-weight: 800;
}

.error ul {
  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;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6d7278;
  font-size: 1.25rem;
  line-height: 1.8;
}

.error--404 .error__title:before {
  background: url(../images/svg/error-404.svg) center no-repeat;
}

.error--500 .error__title:before {
  height: 180px;
  background: url(../images/svg/error-500.svg) center no-repeat;
}

@media print {
  img,
  svg,
  video,
  .main-nav,
  .accessibility-controls,
  .a11y-tools,
  .widget,
  .article-media,
  .article-tools,
  .page-section,
  .map,
  .btn:not(.accord__btn[aria-expanded="true"], .tabs__btn),
  .footer,
  .home-section--news,
  .home-section--video,
  .home-section--timeline,
  .home-section--calculator,
  .big-hero__content,
  #documents {
    display: none !important;
  }
  .home-section {
    min-height: unset;
  }
  .home-section .section-title {
    font-size: 1.5rem;
  }
  .home-section .tabs__btn {
    font-size: 1.2rem;
  }
  .article__title {
    font-size: 1.5rem;
  }
  .article-content {
    font-size: 1rem;
    line-height: 1.5;
  }
  .header * {
    font-size: 1rem;
  }
  .header * span,
  .header * .header__phone,
  .header * .counter__list li span {
    font-size: 1.2rem;
  }
  .article {
    border-top: none;
    margin-top: 0;
  }
  main {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .col-md-4 {
    width: 33%;
  }
  @page {
    size: A4;
  }
  @page :left {
    margin-left: 2cm;
  }
  @page :right {
    margin-left: 2cm;
  }
}
/*# sourceMappingURL=main.css.map */