body {
  background: #ffffff;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #3c3c3b;
  box-sizing: border-box; 
}

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #8994b3; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.menu-button {
  background: #003060;
  width: 56px;
  height: 56px;
}

.head-line {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  border-bottom: 1px solid #003060;
  position: fixed;
  z-index: 10;
  background: #fff;
}

.head-block {
  display: grid;
  grid-template-columns: 120px 1fr auto;
}

.head-icons {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  margin-right: 20px;
}

.main-logo img {
  width: 120px;
}

.main-logo {
  margin: 0 20px;
}

.head-text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A88B6D;
  font-size: 20px;
}

.head-text span {
  color: #A88B6D;
  font-size: 20px;
  font-weight: 600;
}

.lang {
  display: flex;
  flex-direction: row;
  background: transparent;
  transition: 0.2s;
  padding: 2px 8px;
  gap: 10px;
}

.lang a {
    font-weight: 400;
    color: #003060;
    text-decoration: none;
    transition: 0.2s;
    font-size: 18px;
}

.lang a:hover {
    color: #A88B6D;
}

.lang a.active-link {
    color: #A88B6D;
    text-decoration: underline;
}

.search i {
    color: #003060;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.search:hover i {
    color: #A88B6D;
}

.pdf i {
    color: #003060;
    font-weight: 600;
    font-size: 20px;
    transition: 0.2s;
}

.pdf:hover i {
    color: #A88B6D;
}

.burger {
    position: relative;
    top: 0px;
    right: 0px;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
    padding: 0;
    width: 56px;
    height: 56px;
    border: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: transparent;
    display: block;
}

.burger span {
  display: block;
  position: absolute;
  top: 28px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: #fff;
}

.burger:hover span {
  background: #A88B6D;
}

.burger.open span {
  background: 0 0 transparent;
  transform: rotate(90deg);
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  -o-transition: all 0s ease;
  -webkit-transition-delay: 0s,0s;
  transition-delay: 0s,0s;
}

.burger span::after,
.burger span::before {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  content: "";
  border-radius: 5px;
}

.burger:hover span::after,
.burger:hover span::before {
  background-color: #A88B6D;
}

.burger span::before {
  top: -8px;
  -webkit-transition-property: top,-webkit-transform;
  transition-property: top,transform;
}

.burger span::after {
  bottom: -8px;
  -webkit-transition-property: bottom,-webkit-transform;
  transition-property: bottom,transform;
}

.burger.open span::after,
.burger.open span::before {
  -webkit-transition-delay: 0s,.1s;
  transition-delay: 0s,.1s;
  background-color: #fff;
}

.burger.open span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.open span::after {
  bottom: 1px; /* Fix for codepen, set to zero for normal use */
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger.open {
  background: #A88B6D;
}

.main-menu.open {
    height: 100vh;
    overflow-y: auto;
}

.main-bg {
  width: 100%;
}

.main-bg img {
  width: 100%;
}

.menu {
  display: none;
  position: fixed;
  left: 56px;
  top: 57px;
  background: #fff;
  border-right: 1px solid rgba(0,48,96,1.0);
  z-index: 200;
  height: 100vh;
}

.header-placeholder {
  height: 56px;
  width: 100%;
}

.main-page .menu {
  left: 0px;
}

.menu.open {
  display: block;
}

.menu-item {
  width: 100%;
  border-bottom: 1px solid rgba(0,48,96,0.2);
  padding: 20px 30px;
  background: transparent;
  transition: 0.2s;
  box-sizing: border-box;
  font-size: 16px;
  color: #333;
  height: 60px;
}

.menu-item i {
  color: rgba(0,48,96,0.2);
  font-size: 18px;
  margin-right: 5px;
}

.chapter-item {
  font-weight: 600;
}

.menu-item:hover {
  background: rgba(0,48,96,1.0);
  color: #fff;
}

.menu-item:hover i {
  color: #fff;
}

.menu-parent {
  position: relative;
  display: block;
}

.menu-parent:hover .menu-item {
  background: rgba(0,48,96,1.0);
  color: #fff;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 400px;
  background: #fff;
  border-left: 1px solid rgba(0, 48, 96, 0.2);
  border-right: 1px solid rgba(0, 48, 96, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
  height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.menu-parent:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub-menu-item {
  padding: 20px 30px;
  font-size: 16px;
  color: #333;
  background: #fff;
  border-bottom: 1px solid rgba(0, 48, 96, 0.2);
  transition: 0.2s;
  min-height: 60px;
}

.sub-menu-item i {
  font-size: 14px;
  color: #333;
  transition: 0.2s;
}

.sub-menu-item:hover {
  background: rgba(0, 48, 96, 1.0);
  color: #fff;
}

.sub-menu-item:hover i {
  color: #fff;
}

.menu-parent > a > .menu-item.chapter-item {
  position: relative;
  z-index: 11;
}

.m-1 {
  top: -180px;
}

.m-2 {
  top: -240px;
}

.m-3 {
  top: -300px;
}

.m-4 {
  top: -360px;
}

.m-5 {
  top: -420px;
}

.m-6 {
  top: -480px;
}

.content {
  width: 100%;
  margin: 0 auto;
  padding: 40px 80px;
}

.mission-main-text {
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 30px;
}

.gold-2 {
  color: #765742;
}

.divider {
  width: 100%;
  background: #B2ACAC;
  height: 1px;
}

.space-10 {
  height: 10px;
}

.space-20 {
  height: 20px;
}

.space-40 {
  height: 40px;
}

.space-60 {
  height: 60px;
}

.dir-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
}

.dir-grid-photo img {
  width: 100%;
  border-radius: 0 0 100px 0;
}

.main-title {
  color: rgba(0,48,96,1.0);
  font-size: 42px;
  line-height: 60px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-subtitle {
  color: rgba(0,48,96,1.0);
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.dir-grid-name {
  margin-top: 40px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.dir-grid-pos {
  margin-top: 10px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 60px;
}

.button {
  border: 2px solid rgba(0,48,96,1.0);
  padding: 16px 62px;
  font-size: 18px;
  color: rgba(0,48,96,1.0);
  display: inline-block;
  background: transparent;
  transition: 0.2s;
}

.button i {
  font-size: 14px;
  color: rgba(0,48,96,1.0);
  transition: 0.2s;
}

.button:hover {
  border: 2px solid rgba(168,139,109,1.0);
  color: #fff;
  background: rgba(168,139,109,1.0);
}

.button:hover i {
  color: #fff;
}

.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.num-grid-item {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(168,139,109,1.0);
  padding: 25px 20px;
}

.num-grid-dif {
  position: absolute;
  border: 1px solid rgba(168,139,109,1.0);
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999em;
  right: -10px;
  top: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(168,139,109,1.0);
  font-size: 11px;
}

.num-grid-title {
  color: rgba(168,139,109,1.0);
  font-size: 14px;
  font-weight: 600;
}

.num-grid-value {
  color: rgba(168,139,109,1.0);
  font-size: 48px;
  font-weight: 600;
  margin: 20px 0;
}

.num-grid-value span {
  color: rgba(168,139,109,1.0);
  font-size: 48px;
  font-weight: 600;
}

.num-grid-prev {
  color: rgba(168,139,109,1.0);
  font-size: 14px;
  margin-top: 10px;
}

sup {
  font-size: 11px;
}

.sup {
  font-size: 12px;
}

.num-grid sup {
  color: rgba(168,139,109,1.0);
}

.num-grid-value sup {
  font-size: 20px;
}

sub {
  font-size: 11px;
}

.num-grid sub {
  color: rgba(168,139,109,1.0);
}

.logo-slider-section {
  padding: 40px 0;
  width: 100%;
}

.logo-slider-wrapper {
  max-width: 1130px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper {
  width: 100%;
  overflow: visible;
}

.swiper-wrapper {
  display: flex !important;
  align-items: center !important;
}

.swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 140px;
  box-sizing: border-box;
  padding: 20px 0;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
}

.swiper-slide:hover {
  border-bottom: 2px solid rgba(168,139,109,1.0);
}

.swiper-slide img {
  display: block;
  max-height: 70px;
  width: auto;
  max-width: 80%;
  margin: 0 auto;
  object-fit: contain;
}

.swiper-slide img:hover {
  filter: grayscale(0%);
}

.slider-arrow {
  border-radius: 50%;
  background: #fff;
  color: #144aa4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  user-select: none;
}

.slider-arrow i {
  font-size: 32px;
  color: #144aa4;
  transition: 0.2s;
}

.slider-arrow:hover i {
  color: rgba(168,139,109,1.0);
}

.slider-arrow.left {
  left: -100px;
}

.slider-arrow.right {
  right: -100px;
}

.swiper-button-next, .swiper-button-prev { display: none !important; }
@media (max-width: 1100px) {
  .logo-slider-wrapper {
    max-width: 98vw;
  }
  .slider-arrow.left { left: -35px; }
  .slider-arrow.right { right: -35px; }
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  margin: 20px 0;
}

.nav-grid-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.2s;
}

.nav-grid-img img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #003060;
}

.nav-grid-item:hover .nav-grid-number {
  color: rgba(168,139,109,1.0);
}

.nav-grid-item:hover .nav-grid-title {
  color: rgba(168,139,109,1.0);
}

.nav-grid-item:hover .nav-grid-img img {
  border: 1px solid rgba(168,139,109,1.0);
}

.nav-grid-number {
  color: rgba(0,48,96,0.5);
  font-size: 72px;
  font-weight: 300;
}

.nav-grid-title {
  color: rgba(0,48,96,1.0);
  font-size: 28px;
  font-weight: 400;
}

.nav-block-single {
  color: rgba(0,48,96,1.0);
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 10px;
  transition: 0.2s;
}

.nav-block-single:hover {
  color: rgba(168,139,109,1.0);
}

.footer {
  background: rgba(0,48,96,1.0);
  padding: 30px 25px;
  height: 80px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
}

.copyright {
  color: #fff;
  font-size: 14px;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.contacts-text {
  color: #fff;
  font-size: 14px;
}

.contacts-text a {
  color: #fff;
  font-size: 14px;
  transition: 0.2s;
}

.contacts-text a:hover {
  color: rgba(168,139,109,1.0);
  font-size: 14px;
}

.footer-soc {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.footer-soc a i {
  color: #fff;
  font-size: 18px;
  transition: 0.2s;
}

.footer-soc a:hover i {
  color: rgba(168,139,109,1.0);
}

.page-nav {
  width: 56px;
  height: 100%;
  box-sizing: border-box;
  border-right: 1px solid rgba(0,48,96,1.0);
  background: #fff;
  position: relative;
}

.page-nav-fixed {
  position: fixed;
  width: 56px;
}

.scrollup {
  width: 56px;
  height: 56px;
  position: relative;
  bottom: 0px;
  left: 0;
  display: none;
  background: transparent;
  text-align: center;
  transition: 0.2s;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 48, 96, 0.3);
}

.scrollup i {
  font-size: 24px;
  color: rgba(0, 48, 96, 1.0);
  transition: 0.2s;
}

.scrollup:hover i {
  color: rgba(168,139,109,1.0);
}

.contact-flex {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
}

.contact-flex-icon i {
  color: rgba(168,139,109,1.0);
  font-size: 26px;
}

.contact-flex-text {
  font-size: 16px;
}

.contact-flex-text a {
  font-size: 16px;
  color: rgba(0, 48, 96, 1.0);
  transition: 0.2s;
  text-decoration: underline;
}

.contact-flex-text a:hover {
  color: rgba(168,139,109,1.0);
}

.content-grid {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0px;
}

.page-01 .page-bg {
  background-image: url(../img/chapter-1.jpg);
  background-position: left center;
}

.page-02 .page-bg {
  background-image: url(../img/chapter-2.jpg);
  background-position: left top;
}

.page-03 .page-bg {
  background-image: url(../img/chapter-3.jpg);
  background-position: center center;
}

.page-04 .page-bg {
  background-image: url(../img/chapter-4.jpg);
  background-position: left center;
}

.page-05 .page-bg {
  background-image: url(../img/chapter-5.jpg);
  background-position: center bottom;
}

.page-06 .page-bg {
  background-image: url(../img/chapter-6.jpg);
  background-position: left center;
}

.page-bg {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.chapter-bg {
  height: calc(100vh - 56px);
  width: 100%;
  max-width: 480px;
  min-height: 700px;
  background: rgba(0,48,96,0.9);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chapter-title {
  font-size: 36px;
  color: #fff;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
}

.chapter-title:after {
  content: '';
  width: 60px;
  height: 3px;
  background: #fff;
  bottom: -15px;
  left: 0;
  position: absolute;
}

.chapter-menu {
  max-height: 520px;
  overflow-y: auto;
}

.chapter-menu-item {
  font-size: 14px;
  color: #fff;
  line-height: 18px;
  font-weight: 400;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: 0.2s;
}

.chapter-menu-item i {
  font-size: 14px;
  color: #fff;
  transition: 0.2s;
}

.chapter-menu-item:hover {
  color: rgba(168,139,109,1.0);
}

.chapter-menu-item:hover i {
  color: rgba(168,139,109,1.0);
}

.page-nav-item {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(0,48,96,0.3);
}

.page-nav-item i {
  font-size: 24px;
  color: rgba(0,48,96,1.0);
  transition: 0.2s;
}

.page-nav-item:hover i {
  color: rgba(168,139,109,1.0);
}

.content p {
  font-size: 16px;
  line-height: 22px;
  color: #333;
  margin-bottom: 20px;
}

.content p strong {
  font-size: 16px;
  line-height: 22px;
  color: #333;
  font-weight: 600;
}

.bold {
  font-weight: 600;
}

.blue {
  color: rgba(0,48,96,1.0) !important;
}

.f-s-18 {
  font-size: 18px;
}

.f-s-20 {
  font-size: 20px;
}

.f-s-22 {
  font-size: 22px;
}

h1 {
  color: rgba(0, 48, 96, 1.0);
  font-size: 42px;
  line-height: 60px;
  font-weight: 700;
}

h2 {
  color: rgba(0, 48, 96, 1.0);
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
}

h3 {
  color: rgba(0, 48, 96, 1.0);
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

h4 {
  color: rgba(0, 48, 96, 1.0);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

h5 {
  color: rgba(168, 139, 109, 1.0);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.content p a,
.content li a {
  color: rgba(0, 48, 96, 1.0);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.2s;
}

.content p a:hover,
.content li a:hover {
  color: rgba(168, 139, 109, 1.0);
}

.akcent {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 48, 96, 1.0);
  font-size: 20px;
  color: rgba(0, 48, 96, 1.0);
  margin-bottom: 20px;
}

.akcent p {
  font-size: 20px;
  color: rgba(0, 48, 96, 1.0);
}

.akcent ul li {
  font-size: 20px;
  color: rgba(0, 48, 96, 1.0);
}

.mission {
  background: rgba(0, 48, 96, 1.0);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  padding: 30px;
}

.mission-flex {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}

.mission-title {
  font-size: 28px;
  font-weight: 600;
  color: rgba(168,139,109,1.0);
  margin-bottom: 10px;
}

.mission-text {
  font-size: 16px;
  color: #fff;
}

.mission-img img {
  width: 100%;
}

.goals {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.goals-item {
  background: #e6e9ed;
  padding: 20px 30px;
  border-radius: 20px;
}

.grid-icon {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
}

.grid-icon-img {
  width: 70px;
}

.grid-icon-img img {
  width: 100%;
}

.gold {
  color: rgba(168, 139, 109, 1.0);
}

.goals-item-content {
  margin-top: 20px;
}

.goals-item-content p {
  font-size: 16px;
}

.goals-item-content ul li {
  font-size: 16px;
}

ul {
  margin-left: 20px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

ol {
  margin-left: 20px;
  padding-left: 0;
  margin-bottom: 20px;
}

ul li,
ol li {
  line-height: 22px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  margin-bottom: 10px;
}

ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(168, 139, 109, 1.0);
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
}

.assets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.assets-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.assets-img {
  width: 100%;
}

.assets-img img {
  width: 100%;
  border-radius: 10px;
}

.assets-item-top {
  position: relative;
}

.assets-logo {
  position: absolute;
  left: 0;
  top: 20px;
  width: 250px;
  border-radius: 0 999em 999em 0;
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
}

.assets-logo img {
  width: 100%;
  max-height: 50px;
}

.assets-link {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 5px 20px;
  border-radius: 10px 10px 0 0;
  font-size: 12px;
  display: inline-block;
  left: 50%;
  transform: translate(-50%);
}

.assets-item-bottom {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(168, 139, 109, 1.0);
  margin-top: 30px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.assets-item-subtitle {
  color: rgba(0, 48, 96, 1.0);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.assets-item-number {
  font-size: 56px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.assets-item-number span {
  font-size: 56px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.assets-item-value {
  font-size: 16px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.assets-item-title {
  font-size: 22px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.img {
  width: 100%;
}

.img img {
  width: 100%;
}

.zoom {
  cursor: zoom-in;
}

.key-block {
  padding: 30px;
  border: 1px solid rgba(168, 139, 109, 1.0);
  border-radius: 20px;
  display: inline-block;
}

.key-gorizontal {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 600px;
  width: 100%;
}

.key-vertical {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  width: fit-content;
}

.key-item {
  width: 100%;
}

.key-number {
  font-size: 56px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.key-number span {
  font-size: 56px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.key-value {
  font-size: 16px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
}

.key-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: rgba(168, 139, 109, 1.0);
  text-transform: uppercase;
}

.rating {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
}

.rating-item {
  background: #e6e9ed;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  border-radius: 20px;
}

.rating-logo img {
  max-width: 160px;
}

.rating-mark {
  color: rgba(0, 48, 96, 1.0);
  font-size: 58px;
  font-weight: 600;
}

.rating-text {
  color: rgba(0, 48, 96, 1.0);
  font-size: 20px;
  font-weight: 600;
}

.rating-title {
  color: rgba(168, 139, 109, 1.0);
  font-size: 20px;
  font-weight: 600;
}

.table {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  margin-top: 10px;
  border-bottom: 2px solid rgba(168, 139, 109, 1.0);
}

table th {
  background: #fff;
  color: rgba(0, 48, 96, 1.0);
  padding: 8px 8px;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid rgba(0, 48, 96, 1.0);
}

table th:last-child {
  border-right: none;
}

table td {
  color: #5a5f65;
  padding: 8px 8px;
  text-align: right;
  border-bottom: 1px solid rgba(168, 139, 109, 1.0);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.3px;
  min-width: 160px;
}

table td:last-child {
  border-right: none;
}

table th:first-child,
table td:first-child {
  text-align: left;
}

table tr:last-child {
  border-bottom: 1px solid #9c9c9c;
}

.cel-blue {
  background: #e6e9ed;
}

.bg-block {
  position: relative;
  width: 100%;
}

.bg-img {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  border-radius: 20px;
}

.bg-img img {
  width: 100%;
  border-radius: 20px;
}

.bg-logo {
  position: absolute;
  left: 0;
  top: 40px;
  border-radius: 0 999em 999em 0;
  background: #fff;
  padding: 20px;
}

.bg-text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 18px;
  background: rgba(0, 48, 96, 0.7);
  margin: 10px;
}

.mix {
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: 200px 1fr;
}

.mix-img {
  width: 100%;
  padding: 40px;
  border-radius: 0 20px 20px 0;
  border-right: 1px solid rgba(168, 139, 109, 1.0);
  border-top: 1px solid rgba(168, 139, 109, 1.0);
  border-bottom: 1px solid rgba(168, 139, 109, 1.0);
}

.mix-img img {
  width: 100%;
}

.mix-text {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 48, 96, 1.0);
  font-size: 20px;
  color: rgba(0, 48, 96, 1.0);
}

.qr-block {
  padding: 30px 30px 30px 100px;
  border: 1px solid rgba(168, 139, 109, 1.0);
  max-width: 600px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  height: 200px;
  display: flex;
  align-items: center;
  margin-left: 50px;
}

.qr {
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(168, 139, 109, 1.0);
  padding: 5px;
  background: #fff;
  border-radius: 5px;
}

.qr img {
  width: 120px;
}

.qr-text {
  font-size: 18px;
  color: rgba(0, 48, 96, 1.0);
}

.qr-text a {
  font-size: 18px;
  color: rgba(0, 48, 96, 1.0);
  transition: 0.2s;
}

.qr-text a:hover {
  color: rgba(168, 139, 109, 1.0);
}

.directors-top {
  display: grid;
  align-items: center;
  grid-template-columns: 350px 1fr;
  gap: 30px;
}

.directors-photo {
  width: 100%;
  border-bottom: 6px solid rgba(168, 139, 109, 1.0);
}

.directors-photo img {
  width: 100%;
  display: block;
}

.directors {
  margin: 20px 0;
}

.directors-title {
  color: rgba(0, 48, 96, 1.0);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}

.directors-bottom {
  margin-top: 20px;
}

.directors-top .divider {
  margin-bottom: 10px;
}

.directors-name {
  color: rgba(168, 139, 109, 1.0);
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}

.directors-date {
  color: rgba(0, 48, 96, 1.0);
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
}

.center {
  text-align: center;
}

.esg table td img {
  width: 80px;
}

.esg table td {
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.esg table th {
  text-align: left;
}

.table-left table tr th,
.table-left table tr td {
  text-align: left;
  vertical-align: top;
  padding-left: 40px;
}

.table-left table tr th:first-child,
.table-left table tr td:first-child {
  padding-left: 8px;
}

.italic {
  font-style: italic;
}

.img-akcent {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}

.img-akcent img {
  width: 100%;
}

.img-akcent-text {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 48, 96, 1.0);
  font-size: 20px;
  color: rgba(0, 48, 96, 1.0);
  margin-bottom: 20px;
}

mark {
  background: yellow;
  color: black;
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

#searchInput {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  box-sizing: border-box;
}

.results-box div {
  margin-bottom: 10px;
  font-size: 16px;
}

.results-box a {
  font-weight: bold;
  color: #003060;
  text-decoration: none;
}

.results-box mark {
  background-color: yellow;
}

.modal-box h2 {
  margin-bottom: 10px;
}

@media (max-width: 1280px) {

  .nav-grid-title {
    font-size: 22px;
  }

  .dir-grid-pos {
    font-size: 16px;
  }

  .num-grid-title {
    font-size: 13px;
  }

  .num-grid-value {
    font-size: 38px;
  }

}

@media (max-width: 1200px) {

  .nav-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {

  .menu {
    left: 0;
    top: 57px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-right: none;
    border-left: none;
    box-shadow: 0 0 0 1px rgba(0,48,96,0.1) inset;
  }

  .menu-parent {
    position: static;
  }

  .sub-menu {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    border: 0;
    border-top: 1px solid rgba(0,48,96,0.15);
    background: #fff;
  }

  .menu-parent:hover > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .sub-menu-item {
    padding-left: 40px;
    min-height: 56px;
  }

  .menu-item {
    height: auto;
    padding: 16px 20px;
  }

  .menu-item.chapter-item {
    position: static;
    z-index: auto;
    font-weight: 600;
    background: #f9fbfe;
  }

  .m-1, .m-2, .m-3, .m-4, .m-5, .m-6 
  { top: auto !important; }

  .menu a { display: block; }
}


@media (max-width: 768px) {

  .head-text {
      font-size: 16px;
  }

  .head-text span {
      font-size: 16px;
  }

  .inner-page 

  .content {
    padding: 40px 40px;
  }

  .dir-grid {
      grid-template-columns: 180px 1fr;
  }

  .main-title {
    font-size: 30px;
    line-height: 46px;
  }

  .dir-grid-name {
    font-size: 18px;
  }

  .mission-main-text {
    font-size: 18px;
  }

  .num-grid {
    grid-template-columns: 1fr 1fr;
  }

  .slider-arrow.left {
      left: -20px;
  }

  .slider-arrow.right {
      right: -20px;
  }

  .nav-block-single {
    font-size: 18px;
  }

  .mission {
    grid-template-columns: 1fr;
  }

  .goals {
    grid-template-columns: 1fr;
  }

  .assets {
    grid-template-columns: 1fr;
  }

  .key-vertical {
    grid-template-columns: 1fr 1fr;
  }

  .rating {
    grid-template-columns: 1fr;
  }

  .table {
    overflow-x: scroll;
  }

  table td {
    min-width: 0;
  }

  .bg-logo img {
    max-width: 160px; 
    max-height: 70px;
  }

  .bg-text {
    font-size: 15px;
  }

  .directors-top {
    grid-template-columns: 250px 1fr;
  }

}

@media (max-width: 567px) {

  .head-block {
    display: flex;
    gap: 0px;
    justify-content: space-between; 
  }

  .head-icons {
    display: grid;
    grid-template-columns: 22px 22px 1fr;
    align-items: center;
    gap: 12px;
  }

  .lang {
    padding: 0;
  }

  .main-logo img {
    width: 100px;
  }

  .head-text {
      display: none;
  }

  .content {
    padding: 40px 20px;
    overflow-x: hidden;
  }

  .dir-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dir-grid-name {
    margin-top: 20px;
  }

  .dir-grid-pos {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 40px;
  }

  .num-grid {
      grid-template-columns: 1fr;
  }

  .num-grid-value {
      font-size: 58px;
  }

  .nav-grid-item {
    grid-template-columns: 180px 1fr;
  }

  .nav-grid-number {
    font-size: 52px;
  }

  .nav-grid-title {
    font-size: 18px;
  }

  .nav-block-single {
      font-size: 16px;
  }

  .lang a {
    font-size: 16px;
  }

  .search i {
    font-size: 18px;
  }

  .pdf i {
    font-size: 18px;
  }

  .main-logo {
    margin: 0;
    padding-left: 10px;
  }

  .footer {
    padding: 30px 15px;
  }

  .copyright {
    display: none;
  }

  .contacts {
    justify-items: center;
    gap: 40px;
  }

  .footer-grid {
    justify-content: center;
  }

  h1 {
    font-size: 28px;
    line-height: 40px;
  }

  h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h3 {
    font-size: 18px;
    line-height: 30px;
  }

  .slider-arrow.left {
    left: -6px;
  }

  .slider-arrow.right {
    right: -6px;
  }

  .main-subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .mission-flex {
    grid-template-columns: 50px 1fr;
    gap: 10px;
  }

  .mission-title {
    font-size: 26px;
  }

  .mission-text {
    font-size: 14px;
  }

  .inner-page .content {
    padding: 40px 20px;
  }

  .akcent {
    font-size: 18px;
  }

  .grid-icon {
    grid-template-columns: 60px 1fr;
    gap: 10px;
  }

  .grid-icon-img {
    width: 60px;
  }

  .f-s-20 {
    font-size: 18px;
  }

  .assets-item-number {
    font-size: 46px;
  }

  .key-vertical {
    grid-template-columns: 1fr;
  }

  .key-gorizontal {
    grid-template-columns: 1fr;
  }

  .chapter-title {
    font-size: 26px;
  }

  .rating {
    gap: 20px;
  }

  .table table {
    min-width: 700px;
  }

  .table {
    margin-bottom: 20px;  
  }

  .table table td {
    min-width: 100px;
  }

  .bg-text {
    position: relative;
    border-radius: 0 0 20px 20px;
    border: none;
    background: rgba(0, 48, 96, 1.0);
    margin: -20px 0 0 0;
  }

  .mix {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .mix-img {
    width: 100%;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(168, 139, 109, 1.0);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mix-img img {
    max-width: 160px;
  }

  .mix-text {
    font-size: 16px;
  }

  .qr img {
    width: 80px;
  }

  .qr-block {
    padding: 30px 30px 30px 60px;
    height: 200px;
    max-width: 270px;
  }

  .qr-text {
    font-size: 14px;
  }

  .directors-top {
      grid-template-columns: 1fr;
  }

  .key-block {
    width: 100%;
  }

}

