@font-face {
  font-family: "PT Astra Fact regular";
  src: url(../fonts/PTAstraFact-Regular.ttf);
}

@font-face {
  font-family: "PT Astra Fact";
  src: url(../fonts/PTAstraFact-Bold.ttf);
}

html {
  scroll-padding-top: 55px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Astra Fact regular";
  /* outline: 1px solid red; */
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
  margin: 0;
}

body {
  overflow-x: hidden;
  background-color: #f7f8fb;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.locked {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.container-investors {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}
.title-investors {
  font-size: 40px;
}
@media (max-width: 950px) {
  .title-investors {
    font-size: 32px;
  }
}


.section-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 254px;
  height: 56px;
  padding: 16px;
  background-color: #23a1d8;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  transition: all .5s;
}

.section-link-icon {
  width: 24px;
  height: 24px;
  background: url("../img/blue-arrow.svg") center center/cover no-repeat;
}
.section-link:hover {
  background-color: #2779a0;
}
.section-link:hover .section-link-icon {
  width: 24px;
  height: 24px;
  background: url("../img/blue-arrow-hover.svg") center center/cover no-repeat;
}

/*header*/
.header {
  /* position: fixed; */
  position: sticky;
  top: 0;
  background-color: #ffffff;
  width: 100%;
  z-index: 5;
  max-width: 1920px;
  margin: 0 auto;
  box-shadow: 0px 12px 8px -4px rgba(0, 0, 0, 0.2);
}
.header-wrap {
  display: flex;
  flex-direction: column;
  /* position: relative; */
}
.header-top {
  padding: 14px 16px;
  border-bottom: 1px solid #dde3ed;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-top-link,
.header-menu-item:nth-child(6) .header-menu-link {
  font-size: 11px;
  color: #4eb9e5;
}
.header-top-link:last-of-type,
.header-menu-item:last-of-type .header-menu-link {
  display: flex;
  align-items: center;
  border: 1px solid #56637a;
  border-radius: 8px;
  padding: 8px 16px;
  gap: 8px;
  color: #01608f;
}
.header-bottom {
  padding: 16px 16px 4px 16px;
  /* border-bottom: 1px solid #dde3ed; */
  /* display: flex;
  justify-content: space-between; */
  /* box-shadow: 0 0 7px black; */
}
.header-menu-list {
  display: flex;
  gap: 36px;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.header-menu-link {
  font-size: 14px;
  color: #001b36;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-bottom: 16px;
  cursor: pointer;
}
.header-search {
  display: none;
}
.header-search-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.header-menu-item {
  /* position: relative; */
  /* padding-bottom: 16px; */
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid #fff;
}
/* .header-menu-item:hover {
  border-bottom: 3px solid #4eb9e5;
} */

.header-menu-link.active::after {
  transform: scaleX(1);
}

.header-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #4eb9e5;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.header-menu-link:hover::after {
  transform: scaleX(1);
}

.header-burger-icon {
  display: none;
}
.header-top-search {
  display: none;
}
.header-menu-item:last-of-type,
.header-menu-item:nth-child(6) {
  display: none;
}
.header-menu-dropdown-list {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  gap: 48px;
  /* background-color: #fff; */
  padding: 16px 0;
  width: 100%;
  z-index: 1;
  height: 66px;
}
.header-menu-dropdown-link {
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1050px) {
  .header-menu-dropdown-list {
    height: auto;
  }
  .header-menu-dropdown-link {
    color: #001b36;
    font-size: 13px;
  }
  .header-menu-link {
    padding-bottom: 0px;
  }
  .header-menu-dropdown-list {
    margin-top: 16px;
  }
  .header-menu-link::after {
    bottom: -10px;
  }
}
.header-menu-dropdown-link:hover {
  color: #4eb9e5;
}
.header-extra-bottom {
  display: none;
  padding: 16px 0;
  /* border-bottom: 1px solid #e4e9ed; */
  height: 58px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -59px;
  background-color: #4e5563;
}
.header-menu-link-icon {
  width: 12px;
  height: 12px;
  background: url("../img/grey-arrow.svg") center center/cover no-repeat;
}

.header-menu-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1050px) {
  .header-menu-link-icon {
    width: 12px;
    height: 12px;
    background: url("../img/grey-arrow-mobile.svg") center center/cover
      no-repeat;
  }
  .header-menu-link-icon.active {
    width: 12px;
    height: 12px;
    background: url("../img/blue-arrow-mobile.svg") center center/cover
      no-repeat;
  }
  .header-menu-dropdown-list {
    flex-direction: column;
    position: static;
    gap: 0;
    padding: 16px 24px;
    width: 100%;
    z-index: 1;
    background-color: #f5f6fa;
  }
  .header-menu-dropdown-item {
    padding: 18px 0;
    border-bottom: 1px solid #d9dde7;
  }
  .header-menu-dropdown-item:last-of-type {
    border-bottom: none;
  }
  .header-top-link,
  .header-top-link:last-of-type {
    display: none;
  }
  .header-menu-link {
    justify-content: space-between;
  }
  /* .header-top-search {
    display: block;
    cursor: pointer;
  } */
  .header-bottom {
    padding: 0;
  }
  .header-logo {
    position: relative;
    z-index: 11;
  }
  /* .header-menu-item:first-of-type {
    display: block;
  } */
  .header-menu-link:hover::after {
    transform: scaleX(0);
  }
  .header-menu-item:last-of-type,
  .header-menu-item:nth-child(6) {
    display: block;
  }
  .header-menu-item:nth-child(6) {
    margin-top: 150px;
    border-bottom: none;
  }
  .header-menu-item:last-of-type {
    border-bottom: none;
  }
  .header-menu-item:last-of-type .header-menu-link {
    align-items: center;
    justify-content: center;
  }
  .header-menu-item:nth-child(6) .header-menu-link {
    font-size: 14px;
  }

  .header-bottom {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* background-color: #fff; */
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    overflow-x: scroll;
  }
  .header-menu-dropdown-link {
    color: #262930;
  }
  .header-bottom.active {
    left: 0;
    margin-top: 0;
    margin-right: 0;
    z-index: 10;
  }
  .header-menu {
    background-color: #fff;
    width: 100%;
  }
  .header-menu-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    height: 100%;
    width: 100%;
    max-width: 508px;
    background-color: #fff;
    overflow: auto;
    margin: 0 auto;
    padding-top: 100px;
   padding-bottom: 60px;
  }

  .header-burger-icon {
    display: block;
    width: 26px;
    height: 18px;
    position: relative;
    z-index: 50;
    cursor: pointer;
    float: right;
  }
  .header-burger-icon span {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    background-color: #000000;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
  }
  .header-burger-icon span:first-child {
    top: 0;
  }

  .header-burger-icon span:last-child {
    top: auto;
    bottom: 0;
  }

  .header-menu-item {
    padding: 20px;
    width: 100%;
    border-bottom: 1px solid #f2f3f4;
    position: relative;
  }

  .header-burger-icon.active span {
    background-color: #000000;
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  .header-burger-icon.active span:first-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }

  .header-burger-icon.active span:last-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
  }
}
@media (max-width: 780px) {
  .header-menu-list {
    padding-top: 70px;
  }
  .header-menu-item:nth-child(6) {
    margin-top: 100px;
  }
}
/* @media (max-width: 500px) {
  .header-menu-list {
    width: 100%;
    padding-top: 50px;
  }
} */

/*first-section*/
.first-section {
  padding-top: 32px;
}
.first-section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.first-section-content {
  display: flex;
  /* justify-content: space-between; */
  gap: 32px;
}
.first-section-content-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 740px;
}

.first-section-content-top {
  display: flex;
  flex-direction: column;
  background-color: #d9dde7;
  border-radius: 20px;
  padding: 48px;
  height: 100%;
}

.first-section-content-title {
  font-size: 48px;
  color: #23a1d8;
  line-height: 1.5;
}
.first-section-content-subtitle {
  margin-top: 16px;
  color: #262930;
  font-size: 24px;
  line-height: 1.5;
}
.first-section-content-text {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.5;
  color: #262930;
}

.first-section-content-bottom {
  margin-top: 32px;
  background-color: #3a3f4a;
  border-radius: 16px;
  padding: 20px 24px;
  height: 98px;
}

.first-section-content-icon-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 156px;
  padding: 8px 8px 8px 12px;
  gap: 10px;
}
.first-section-content-icon {
  width: 21px;
  height: 12px;
}
.first-section-content-moex {
  font-size: 14px;
  color: #fff;
}
.first-section-content-astr-wrap {
  padding: 4px 8px;
  background-color: #fff;
  border-radius: 10px;
}
.first-section-content-astr {
  color: #3a3f4a;
  font-size: 14px;
}
.first-section-content-img-wrap {
  width: 100%;
  max-width: 548px;
  /* height: 346px; */
  height: fit-content;
}
.first-section-content-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.first-section-items {
  margin-top: 32px;
  display: flex;
  gap: 32px;
}
.first-section-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 32px;
  background-color: #003b5c;
  border-radius: 16px;
  width: 100%;
  max-width: 758px;
  overflow: hidden;
}
.first-section-item:first-of-type .first-section-item-content {
  width: 100%;
  max-width: 500px;
}
.first-section-item:last-of-type .first-section-item-content {
  width: 100%;
  /* max-width: 300px; */
}
.first-section-item:first-of-type {
  background: url("../img/item-shadow-1.png") center center/cover no-repeat;
}
.first-section-item:last-of-type {
  background: url("../img/item-shadow-2.png") center center/cover no-repeat;
  width: 100%;
  max-width: 640px;
  padding: 0 32px 0 0;
}
.first-section-item-img-tablet {
  display: none;
}
.first-section-item-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
/* .first-section-item-icon {
  width: 105px;
} */

.first-section-item-account {
  display: flex;
  gap: 20px;
  align-items: center;
}

.first-section-item-account-number {
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 111px;
}
.first-section-item:last-of-type .first-section-item-account-number {
  max-width: 134px;
}
/* .first-section-item:last-of-type .first-section-item-account-number {
  color: #001b36;
}
.first-section-item:last-of-type .first-section-item-account {
  width: 100%;
} */
.first-section-item-account-number-span {
  font-size: 24px;
  margin-left: 3px;
}

.first-section-item-account:last-of-type
  .first-section-item-account-number-span {
  margin-left: 0;
  margin-right: 3px;
}
.first-section-item:last-of-type
  .first-section-item-account
  .first-section-item-account-number-span {
  margin-left: 0;
  margin-right: 3px;
}
.first-section-item-account-text {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

/* .first-section-item-img {
  width: 184px;
  height: 227px;
} */
.first-section-content-icon-tablet {
  display: none;
}
.first-section-content-img-tablet {
  display: none;
}
.first-section-item-icon-tablet {
  display: none;
}
@media (max-width: 1150px) {
  .first-section-content {
    flex-direction: column;
    gap: 24px;
  }
  .first-section-content-info {
    max-width: 100%;
  }
  .first-section-content-bottom {
    margin-top: 24px;
  }
  .first-section-content-title {
    font-size: 40px;
    text-align: center;
  }
  .first-section-content-subtitle {
    font-size: 20px;
    text-align: center;
  }
  .first-section-content-bottom {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .first-section-content-img-tablet {
    display: flex;
    width: 100%;
    align-self: center;
  }
  .first-section-content-img-wrap {
    max-width: 100%;
  }
  .first-section-content-img {
    display: none;
  }
  .first-section-items {
    flex-direction: column;
  }
  .first-section-item {
    max-width: 100%;
    padding: 0 40px;
  }
  .first-section-item:last-of-type {
    max-width: 100%;
    padding: 0 40px;
    background: url("../img/item-shadow-2-tablet.png") center center/cover
      no-repeat;
  }
  .first-section-item:first-of-type {
    background: url("../img/item-shadow-1-tablet.png") center center/cover
      no-repeat;
  }

  .first-section-item-content {
    order: 1;
  }

  .first-section-item-img {
    order: 2;
  }
  .first-section-item-account {
    margin-left: 0;
  }
  /* .first-section-item-account:first-of-type,
  .first-section-item:first-of-type .first-section-item-account:nth-child(2) {
    margin-left: 16px;
  } */
  .first-section-item-icon {
    display: none;
  }
  .first-section-item-icon-tablet {
    display: block;
    order: 2;
  }
  .first-section-item:last-of-type .first-section-item-content {
    max-width: 100%;
  }
}

@media (max-width: 769px) {
  .first-section-item-icon-wrap {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
  .first-section-item-account-number {
    font-size: 28px;
  }
  .first-section-item-account-number-span {
    font-size: 20px;
    margin-left: 5px;
  }
  /* .first-section-item {
    padding: 40px 32px;
    position: relative;
    z-index: 5;
  } */

  /* .first-section-item:last-of-type {
    padding: 62px 32px;
    margin-top: -12px;
    position: relative;
    z-index: 0;
  } */
  /* .first-section-item-img {
    width: 128px;
    height: 67px;
  } */
  .first-section {
    padding: 32px 20px;
  }
  .first-section-content-top {
    padding: 48px 32px;
  }
  /* .first-section-content-info {
    max-width: 328px;
  } */
  .first-section-content-title {
    font-size: 40px;
  }
  .first-section-content-subtitle {
    margin-top: 16px;
    font-size: 20px;
  }
  .first-section-content-text {
    margin-top: 16px;
    text-align: center;
  }
  /* .first-section-content-icon-wrap {
    display: none;
  } */
  /* .first-section-content-img-wrap {
    max-width: 280px;
  } */
}
@media (max-width: 660px) {
  .first-section-item {
    flex-direction: column;
    padding: 48px 32px;
  }
  .first-section-item:last-of-type {
    max-width: 100%;
    padding: 48px 32px;
    background: url("../img/item-shadow-2-tablet.png") center center/cover
      no-repeat;
  }
  .first-section-item:first-of-type {
    background: url("../img/item-shadow-1-tablet.png") center center/cover
      no-repeat;
  }
  /* .first-section {
    padding: 47px 0 0 0;
  }
  .first-section-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 54px;
    padding: 0 20px;
  }

  .first-section-content-title {
    text-align: center;
  }
  .first-section-content-subtitle {
    text-align: center;
  }
  .first-section-content-text {
    text-align: center;
  }
  .first-section-content-img-wrap {
    max-width: 320px;
  }

  .first-section-items {
    margin-top: 80px;
    gap: 0;
  }
  .first-section-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .first-section-item:last-of-type {
    border-radius: 0;
  }
  .first-section-item-account {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 336px;
  }
  .first-section-item-account-number {
    font-size: 28px;
    text-align: center;
  }

  .first-section-item-account-number-span {
    font-size: 20px;
  }
  .first-section-item-account:first-of-type,
  .first-section-item:first-of-type .first-section-item-account:nth-child(2) {
    margin-left: 0;
  }
  .first-section-item-account-text {
    text-align: center;
  } */
}

@media (max-width: 420px) {
  .first-section-content-title {
    font-size: 28px;
  }
  .first-section-content-subtitle {
    font-size: 16px;
  }
  .first-section-content-text {
    font-size: 13px;
  }

  .first-section-item-account {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .first-section-item-account-number {
    width: auto;
  }
  .first-section-item-account-text {
    text-align: center;
  }
  .first-section-item-account-text {
    font-size: 12px;
  }
  .first-section-item-account-number {
    font-size: 24px;
  }
  .first-section-item {
    gap: 0px;
  }
  .container-investors {
    padding: 0px 10px;
  }
}
/*factors*/

.factors {
  padding: 100px 20px;
}
.factors-header {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  /* margin: auto; */
}
/* .factors-info {
  display: flex;
  gap: 40px;
  width: 100%;
} */
.factors-title {
  color: #003a5c;
  width: 100%;
  max-width: 416px;
}
.factors-aside {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 744px;
}
.factors-btns {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.factors-btn {
  width: 68px;
  height: 68px;
  background-color: #23a1d8;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.factors-btn-arrow {
  position: relative;
}

.factors-btn-arrow .factors-btn-next {
  position: relative;
  width: 14px;
  height: 2px;
  background-color: #fff;
  left: 0;
  display: block;
  /* background: url("../img/white-arrow.svg") center center/cover no-repeat;
  width: 18px;
  height: 18px; */
}
.factors-btn-arrow .factors-btn-next::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  top: -2.5px;
  right: -2px;
  background-color: #fff;
  transform: rotate(45deg);
}
.factors-btn-arrow .factors-btn-next::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  top: 2.5px;
  right: -2px;
  background-color: #fff;
  transform: rotate(-45deg);
}

.factors-btn-arrow .factors-btn-prev {
  position: relative;
  width: 14px;
  height: 2px;
  background-color: #fff;
  left: 0;
  display: block;
}
.factors-btn-arrow .factors-btn-prev::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  top: -2.5px;
  right: 8px;
  background-color: #fff;
  transform: rotate(-45deg);
}
.factors-btn-arrow .factors-btn-prev::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  top: 2.5px;
  right: 8px;
  background-color: #fff;
  transform: rotate(45deg);
}

.factors-btn.disabled {
  background-color: #fff;
  cursor: not-allowed;
}

.factors-btn-arrow .factors-btn-next.disabled,
.factors-btn-arrow .factors-btn-prev.disabled {
  background-color: #003a5c;
}

.factors-btn-arrow .factors-btn-next.disabled::after,
.factors-btn-arrow .factors-btn-next.disabled::before,
.factors-btn-arrow .factors-btn-prev.disabled::after,
.factors-btn-arrow .factors-btn-prev.disabled::before {
  background-color: #003a5c;
}

.factors-items {
  margin-top: 55px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 32px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.factors-item {
  background-color: #3a3f4a;
  border-radius: 24px;
  padding: 40px 60px;
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  justify-content: space-between;
  height: 500px;
  align-items: center;
}
.factors-item:nth-child(2),
.factors-item:nth-child(6) {
  background-color: #003b5c;
}
.factors-item:nth-child(3),
.factors-item:nth-child(5) {
  background-color: #01608f;
}
.factors-item:nth-child(4) {
  background-color: #262930;
}

.factors-item:first-of-type .factors-item-content {
  max-width: 440px;
}

.factors-item-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}
.factors-item-img {
  width: 100%;
  max-width: 500px;
  height: fit-content;
}
.factors-item:first-of-type .factors-item-wrap-img {
  border-radius: 20px;
  background-color: #4e5563;
  padding: 25px 40px;
}
.factors-item:first-of-type .factors-item-img {
  max-width: 496px;
}
.factors-item-title {
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
}
.factors-item-texts {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.factors-item-text {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.factors-item-text-span {
  font-weight: bold;
}
.factors-item-img-mobile {
  display: none;
}
.factors-item-img-tablet {
  display: none;
}
.factors-item-img-desc {
  margin-top: 16px;
  color: #ffffff;
  font-size: 8px;
  line-height: 1.5;
  display: flex;
  gap: 16px;
}
@media (max-width: 1240px) {
  .factors-header {
    flex-direction: column;
  }
  .factors-header {
    max-width: 100%;
  }

  .factors-title {
    max-width: 100%;
  }
  .factors-aside {
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .factors-item {
    flex-direction: column;
    height: auto;
  }
  .factors-item-content {
    max-width: 100%;
  }
  .factors-item-img {
    margin-top: 60px;
    width: 100%;
    max-width: 407px;
    height: fit-content;
  }
  .factors-item:first-of-type .factors-item-content {
    max-width: 100%;
  }
  .factors-item:first-of-type .factors-item-img {
    margin-top: 0;
  }
  .factors-item:first-of-type .factors-item-wrap-img {
    padding: 24px;
    margin-top: 48px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
  }
  .factors-item-wrap-img {
    align-self: center;
  }
}
@media (max-width: 950px) {
  .factors {
    padding: 72px 20px;
  }
  /* .factors-btns {
    display: none;
  } */
  .factors-info {
    width: 100%;
    justify-content: space-between;
  }
  /* .factors-items {
    margin-top: 40px;
    gap: 40px;
    flex-direction: column;
  } */
  .factors-item-img-tablet {
    margin-top: 40px;
    display: block;
    width: 100%;
    max-width: 332px;
    align-self: center;
  }
  .factors-item:last-of-type .factors-item-img,
  .factors-item:nth-child(2) .factors-item-img,
  .factors-item:nth-child(3) .factors-item-img,
  .factors-item:nth-child(4) .factors-item-img,
  .factors-item:nth-child(5) .factors-item-img {
    display: none;
  }
  .factors-item-title {
    text-align: center;
  }
  .factors-item-text {
    text-align: center;
  }
}
@media (max-width: 769px) {
  .factors-item {
    padding: 40px 32px;
    max-width: 568px;
  }

  .factors-item-text {
    font-size: 14px;
  }
  .factors-item-img {
    max-width: 327px;
  }
  .factors-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .factors-item-title {
    font-size: 20px;
  }
  .factors-link {
    max-width: 207px;
  }
  .factors-aside {
    justify-content: center;
    gap: 40px;
  }
  .factors-title {
    text-align: center;
  }
}
@media (max-width: 577px) {
  .factors {
    padding: 60px 20px;
  }
  .factors-header {
    flex-direction: column;
  }
  .factors-info {
    flex-direction: column;
    gap: 36px;
  }

  .factors-link {
    max-width: 100%;
  }
  .factors-aside {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .factors-item {
    padding: 40px 20px;
  }
  .factors-item-img-mobile {
    display: block;
    width: 100%;
  }
  .factors-item-img {
    max-width: 360px;
  }
  .factors-item:first-of-type .factors-item-img {
    display: none;
  }
  .factors-item-title {
    font-size: 24px;
  }
  /* .factors-item:first-of-type .factors-item-wrap-img {
    padding: 48px 20px;
  } */
  .factors-item-img-desc {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}
@media (max-width: 420px) {
  .factors {
    padding: 0px 0px 72px 0px;
  }

  .factors-item:first-of-type .factors-item-wrap-img {
    /* padding: 0px; */
    margin-top: 20px;
  }
  .factors-item-title {
    font-size: 15px;
    font-weight: bold;
  }
  .factors-item-text {
    font-size: 13px;
  }
  .factors-item-img-desc {
    margin-top: 0px;
  }
}
/*reports*/
.reports-wrap {
  padding: 56px 48px;
  background-color: #003a5c;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.reports-title {
  text-align: center;
  color: #fff;
}

.reports-items {
  margin-top: 56px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.reports-item {
  width: 100%;
  max-width: 288px;
  height: 110px;
  border-radius: 16px;
  background-color: #01608f;
}
.reports-item:hover {
  background-color: #4eb9e5;
  transition: all .5s;
}
.reports-item-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 28px 24px;
}
.reports-item-wrap-img {
  width: 31px;
  height: 40px;
  background: url("../img/pdf-icon.svg") center center/cover no-repeat;
}
.reports-item:hover .reports-item-wrap-img {
  width: 31px;
  height: 40px;
  background: url("../img/pdf-icon-hover.svg") center center/cover no-repeat;
}
.reports-item:nth-child(3) .reports-item-wrap-img {
  width: 31px;
  height: 40px;
  background: url("../img/XLS-icon.svg") center center/cover no-repeat;
}
.reports-item:nth-child(3):hover .reports-item-wrap-img {
  width: 31px;
  height: 40px;
  background: url("../img/XLS-icon-hover.svg") center center/cover no-repeat;
}
.reports-item:nth-child(4) .reports-item-wrap-img {
  width: 31px;
  height: 40px;
  background: url("../img/XLS-icon.svg") center center/cover no-repeat;
}
.reports-item:nth-child(4):hover .reports-item-wrap-img {
  width: 31px;
  height: 40px;
  background: url("../img/XLS-icon-hover.svg") center center/cover no-repeat;
}
.reports-item-download-icon-wrap {
  background-color: #ffffff;
  border-radius: 12px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reports-item:hover .reports-item-download-icon-wrap {
  background-color: #ffffff;
}
.reports-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.reports-item-footer-data {
  color: #fff;
  font-size: 14px;

}
.reports-item-download-icon {
  background: url("../img/white-arrow.svg") center center/cover no-repeat;
  width: 13px;
  height: 17px;
}
.reports-item:hover .reports-item-download-icon {
  background: url("../img/light-blue-arrow.svg") center center/cover no-repeat;
  width: 20px;
  height: 20px;
}
.reports-item-title {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
.reports-link {
  margin-top: 48px;
  align-self: center;
  transition: all .5s;
}
@media (max-width: 700px) {
  .reports-wrap {
    padding: 60px 32px;
  }
  .reports-items {
    margin-top: 40px;
  }
  .reports-item {
    max-width: 336px;
    height: 110px;
  }

  .reports-item-title {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
  }
  .reports-link {
    margin-top: 40px;
    align-self: center;
    max-width: 336px;
  }
}
/*indicators*/
.indicators {
  padding: 100px 0;
}
.indicators-wrap {
  padding: 60px 32px;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.indicators-header {
  display: flex;
  flex-direction: column;
}
.indicators-title {
  text-align: center;
  color: #003b5c;
}
.indicators-link {
  margin-top: 40px;
  align-self: center;
  max-width: 300px;
  transition: all .5s;
}
.indicators-items {
  margin-top: 60px;
  padding: 40px;
  background-color: #d9dde7;
  border-radius: 20px;
}
.indicators-item {
  /* padding: 24px 0; */
  display: flex;
  gap: 24px;
  width: 100%;
}

.indicators-item-info {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e4e9ed;
  padding: 24px 0;
  gap: 20px;
}
.indicators-item-list {
  display: flex;
  flex-direction: column;
  /* width: 80%; */
  width: 100%;
}
.indicators-item:first-of-type .indicators-item-info {
  border-bottom: none;
}
.indicators-item:nth-child(3) .indicators-item-nomination {
  font-family: "PT Astra Fact regular";
  font-weight: normal;
  padding-left: 26px;
  margin-top: 24px;
}

.indicators-item:nth-child(3)
  .indicators-item-list
  .indicators-item-info-wrap:first-of-type
  .indicators-item-nomination {
  font-family: "PT Astra Fact";
  font-weight: bold;
  padding-left: 0;
  margin-top: 0;
}

.indicators-item:nth-child(3)
  .indicators-item-list
  .indicators-item-info-wrap:first-of-type
  .indicators-item-results {
  font-family: "PT Astra Fact";
  font-weight: bold;
  margin-top: 0;
}
.indicators-item:nth-child(3) .indicators-item-results {
  font-family: "PT Astra Fact regular";
  font-weight: normal;
  margin-top: 24px;
}
.indicators-item:nth-child(3)
  .indicators-item-info-wrap:last-of-type
  .indicators-item-info {
  border-bottom: 1px solid #e4e9ed;
  padding-bottom: 24px;
}
.indicators-item:nth-child(3)
  .indicators-item-info-wrap:first-of-type
  .indicators-item-info {
  padding-top: 24px;
}
.indicators-item:nth-child(3) .indicators-item-info {
  padding: 0;
  border-bottom: none;
}
.indicators-item:first-of-type .indicators-item-info {
  padding: 24px 0 22px 0;
}
.indicators-item:last-of-type .indicators-item-info {
  border-bottom: none;
}
.indicators-item:first-of-type .indicators-item-changes {
  color: #2779a0;
  font-family: "PT Astra Fact regular";
  font-size: 14px;
  /* background-color: rgba(222, 243, 255, 0.5); */
  border-radius: 16px 16px 0 0;
  /* padding: 16px 32px 22px 32px; */
  width: 116px;
  border-bottom: none;
}
.indicators-item:first-of-type .indicators-item-changes-wrap {
  border-radius: 16px 16px 0 0;
}
.indicators-item:last-of-type .indicators-item-changes-wrap {
  border-radius: 0 0 16px 16px;
}
.indicators-item:last-of-type .indicators-item-changes {
  border-bottom: none;
}
.indicators-item:nth-child(3) .indicators-item-changes {
  /* width: 100%; */
  background-color: transparent;
  /* padding: 0 32px; */
  padding: 0 16px;
  border-bottom: none;
  font-family: "PT Astra Fact regular";
  margin-top: 24px;
}

.indicators-item:nth-child(3)
  .indicators-item-info-wrap:first-of-type
  .indicators-item-changes-wrap
  .indicators-item-changes {
  font-family: "PT Astra Fact";
  padding: 24px 16px 0 16px;
  margin-top: 0;
}
.indicators-item:nth-child(3)
  .indicators-item-info-wrap:last-of-type
  .indicators-item-changes-wrap
  .indicators-item-changes {
  padding-bottom: 24px;
  border-bottom: 1px solid #e4e9ed;
}
/* .indicators-item:nth-child(4)
  .indicators-item-extra-changes
  .indicators-item-changes-wrap {
  width: 100%;
  background-color: transparent;
  padding: 0;
} */
.indicators-item-changes-wrap {
  padding: 0 24px;
  /* width: 20%; */
  background-color: rgba(222, 243, 255, 0.5);
}
.indicators-item-changes {
  border-bottom: 1px solid #e4e9ed;
  padding: 24px 16px;
  /* width: 20%; */
  display: flex;
  gap: 8px;
  align-items: center;
  /* background-color: rgba(222, 243, 255, 0.5); */
  font-family: "PT Astra Fact";
  font-size: 16px;
  width: 116px;
}
/* .indicators-item-extra-changes {
  width: 20%;
  background-color: rgba(222, 243, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 32px;
} */
.indicators-item-changes-plus {
  color: #4eb9e5;
  font-size: 20px;
  font-weight: bold;
}
.indicators-item-period {
  font-size: 16px;
  color: #2779a0;
  width: 9%;
}
.indicators-item-period-mobile {
  display: none;
  font-size: 14px;
  color: #2779a0;
}
.indicators-item-results {
  width: 9%;
  font-size: 16px;
  color: #001b36;
  font-family: "PT Astra Fact";
}
.indicators-item-nomination {
  width: 67%;
  font-size: 15px;
  font-family: "PT Astra Fact";
  font-weight: bold;
  color: #001b36;
  position: relative;
  line-height: 1.5;
  display: flex;
}
.indicators-item-nomination-span {
  margin-left: 12px;
  color: #56637a;
  font-weight: normal;
  font-family: "PT Astra Fact regular";
}
.indicators-item-nomination-tooltip {
  display: block;
  margin-left: 12px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background: url("../img/tooltip-icon.svg") center center/cover no-repeat;
  cursor: pointer;
}
.indicators-item-nomination-tooltip:hover {
  background: url("../img/tooltip-icon-hover.svg") center center/cover no-repeat;
}
.indicators-item-nomination-tooltip.active {
  background: url("../img/tooltip-icon-hover.svg") center center/cover no-repeat;
}

.indicators-item:nth-child(3) .indicators-item-tooltip-content {
  top: -76px;
  left: -10px;
}
.indicators-item:last-of-type .indicators-item-tooltip-content {
  top: -148px;
  left: -10px;
}

.indicators-item-tooltip-content {
  display: none;
  /* width: 100%; */
  width: 320px;
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
  background-color: #3a3f4a;
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: normal;
  position: absolute;
  top: -135px;
  left: -10px;
}
/* .indicators-item-tooltip-content::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: #2779a0;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  rotate: 45deg;
  bottom: -12px;
} */
.indicators-link:hover {
  background-color: #4eb9e5;
}
/* .indicators-items-header {
  display: none;
} */
.indicators-item-changes-icon {
  width: 20px;
  height: 20px;
}
.indicators-item-info-wrap {
  display: flex;
  width: 100%;
  gap: 24px;
}
.indicators-item-changes-name {
  display: none;
}
.indicators-results-title {
  display: none;
  color: #fff;
  text-align: center;
}
.indicators-results {
  margin-top: 60px;
}
.indicators-results-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 24px;
}
.indicators-results-item {
  padding: 24px 24px 36px 24px;
  border-radius: 16px;
  background-color: #e9f5fc;
  display: flex;
  flex-direction: column;
}
.indicators-results-item:last-of-type {
  background-color: #003b5c;
}
.indicators-results-item:last-of-type .indicators-results-item-icon-wrap {
  background-color: #4eb9e5;
}
.indicators-results-item-icon-wrap {
  width: 40px;
  height: 40px;
  background-color: #c5e9f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indicators-results-item-number {
  margin-top: 54px;
  font-size: 32px;
  color: #003b5c;
}
.indicators-results-item:last-of-type .indicators-results-item-number {
  margin-top: 8px;
  color: #fff;
}
.indicators-results-item-number-span {
  font-size: 28px;
}
.indicators-results-item-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #001b36;
}
.indicators-results-item:last-of-type .indicators-results-item-desc {
  color: #fff;
}
.indicators-results-item:last-of-type
  .indicators-results-item-desc:last-of-type {
  margin-top: 4px;
}

.indicators-results-item-title {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 16px;
}
.indicators-results-item-header {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1100px) {
  .indicators-results-items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 2fr;
  }
  .indicators-results-item:last-of-type {
    grid-column: 1/4;
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (max-width: 900px) {
  .indicators {
    padding: 60px 0;
  }

  .indicators-item-tooltip-content {
    top: -76px;
    left: -20px;
  }
  .indicators-item:nth-child(3) .indicators-item-tooltip-content {
    top: -132px;
    left: -20px;
  }
  .indicators-item:last-of-type .indicators-item-tooltip-content {
    top: -153px;
    left: -20px;
  }
  .indicators-results-item {
    padding: 24px 24px 32px 24px;
  }

  .indicators-results-item-icon-wrap {
    width: 40px;
    height: 40px;
  }
  .indicators-results-item-number {
    margin-top: 20px;
    font-size: 28px;
  }
  .indicators-results-item-number-span {
    font-size: 18px;
  }
  .indicators-results-item-desc {
    margin-top: 10px;
    font-size: 12px;
  }

  .indicators-results-item-title {
    font-size: 20px;
  }
  .indicators-results-item:last-of-type {
    justify-content: space-between;
  }

  .indicators-results {
    margin-top: 0;
  }
  /* .indicators-results-title {
    display: block;
  } */
  .indicators-results-items {
    margin-top: 40px;
  }
  .indicators-header {
    flex-direction: column;
  }
  /* .indicators-title {
    text-align: start;
    color: #003a5c;
  } */
  /* .indicators-link {
    margin-top: 0;
    align-self: center;
    max-width: 240px;
  } */
  /* .indicators-items-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  } */
  /* .indicators-item:first-of-type {
    margin-top: 40px;
  } */
  /* .indicators-item:nth-child(2) .indicators-item-changes {
    font-size: 14px;
  } */
  .indicators-item-period {
    font-size: 14px;
    width: 100%;
    max-width: 56px;
    font-family: "PT Astra Fact regular";
  }
  .indicators-items {
    padding: 40px 32px;
  }
  .indicators-item,
  .indicators-item-info-wrap {
    justify-content: space-between;
  }
  .indicators-item-changes {
    padding: 19px 16px;
    font-size: 15px;
    gap: 4px;
  }
  .indicators-item-changes-icon {
    width: 16px;
    height: 16px;
  }
  .indicators-item-info {
    width: 100%;
    max-width: 100%;
    padding: 16px 0;
    justify-content: space-between;
  }
  .indicators-item-results {
    width: 100%;
    max-width: 56px;
    font-size: 15px;
  }
  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:first-of-type
    .indicators-item-info {
    padding-top: 16px;
  }
  /* .indicators-item-list {
    width: 100%;
    max-width: 414px;
  } */
  /* .indicators-item-extra-changes {
    width: 100%;
    max-width: 126px;
    gap: 16px;
    padding: 0 20px;
  } */
  .indicators-item-changes-wrap {
    padding: 0 20px;
    /* width: 100%;
    max-width: 126px; */
  }
  .indicators-item:first-of-type .indicators-item-info {
    padding: 16px 0;
  }
  .indicators-item-nomination {
    width: 100%;
    max-width: 238px;
  }
  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:first-of-type
    .indicators-item-changes-wrap
    .indicators-item-changes {
    padding-top: 16px;
  }
  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:last-of-type
    .indicators-item-changes-wrap
    .indicators-item-changes {
    padding-bottom: 16px;
  }
  .indicators-item:nth-child(3) .indicators-item-results {
    margin-top: 16px;
  }
  .indicators-item:nth-child(3) .indicators-item-nomination {
    padding-left: 16px;
    margin-top: 16px;
  }
  .indicators-item:nth-child(3) .indicators-item-changes {
    margin-top: 16px;
  }
  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:last-of-type
    .indicators-item-info {
    padding-bottom: 16px;
  }
}
/* @media (max-width: 673px) {
  .indicators-item-tooltip-content {
    top: -152px;
    left: -21px;
  }
  .indicators-item:nth-child(4) .indicators-item-tooltip-content {
    top: -75px;
    left: -21px;
  }
} */

@media (max-width: 769px) {
  .indicators-item-nomination {
    font-size: 14px;
  }
  .indicators-items {
    padding: 40px 20px;
  }

  .indicators-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .indicators-item-changes-icon {
    width: 16px;
    height: 16px;
    margin-left: 18px;
  }

  .indicators-item-results:last-of-type {
    border-bottom: none;
  }

  .indicators-item:nth-child(3)
    .indicators-item-list
    .indicators-item-info-wrap:first-of-type
    .indicators-item-info
    .indicators-item-results:first-of-type {
    margin-top: 24px;
  }

  .indicators-item:last-of-type .indicators-item-changes-wrap {
    border-radius: 12px;
  }
  .indicators-item:nth-child(3) .indicators-item-nomination {
    padding-left: 0;
  }
  .indicators-item-changes-wrap {
    padding: 0 16px;
  }
  .indicators-item:first-of-type .indicators-item-changes {
    width: 97px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
  }
  .indicators-item {
    gap: 16px;
    width: 100%;
  }
  .indicators-item-changes {
    width: 97px;
  }
  .indicators-item-info-wrap {
    gap: 16px;
  }

  .indicators-item-tooltip-content {
    left: 0px;
    width: 99%;
    top: -93px;
  }
  .indicators-item:nth-child(3) .indicators-item-tooltip-content {
    top: -72px;
    left: 0;
    width: 99%;
  }
  .indicators-item:last-of-type .indicators-item-tooltip-content {
    top: -148px;
    left: 0;
    width: 99%;
  }
}

@media (max-width: 670px) {
  .indicators-items {
    /* background-color: #fff; */
  }
  .indicators-item-nomination {
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .indicators-item:last-of-type .indicators-item-nomination {
    flex-direction: column;
  }
  .indicators-item:last-of-type .indicators-item-tooltip-content {
    top: -90px;
    left: 0;
    width: 99%;
  }
  .indicators-item:first-of-type {
    display: none;
  }
  .indicators-item {
    padding-bottom: 32px;
    border-bottom: 1px solid #e4e9ed;
  }
  .indicators-item,
  .indicators-item-info-wrap {
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
  }
  .indicators-item:nth-child(3) .indicators-item-info-wrap {
    padding: 32px 0;
  }
  .indicators-item:nth-child(3) {
    padding-bottom: 0;
  }
  .indicators-item:nth-child(3) .indicators-item-info-wrap {
    border-bottom: 1px solid #e4e9ed;
  }
  .indicators-item-changes {
    padding: 0 16px;
    font-size: 15px;
    gap: 4px;
    border-bottom: none;
  }
  .indicators-item-info {
    width: 100%;
    max-width: 100%;
    padding: 32px 0 0 0;
    border-bottom: none;
    gap: 0;
    flex-direction: column;
  }
  .indicators-item-results {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    display: flex;
    gap: 28px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .indicators-item-results:nth-child(2),
  .indicators-item:nth-child(4) .indicators-item-results:nth-child(2) {
    margin-top: 24px;
  }

  .indicators-item-period-mobile,
  .indicators-item-changes-name {
    display: block;
    width: 100%;
    max-width: 100px;
    font-size: 15px;
    color: #2779a0;
    font-weight: normal;
    text-align: center;
  }
  .indicators-item-changes-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 8px;
    display: flex;
    align-items: center;
    padding: 16px 12px;
    border-radius: 12px;
    flex-direction: column;
    gap: 8px;
  }

  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:first-of-type
    .indicators-item-changes-wrap
    .indicators-item-changes {
    padding-top: 0;
  }
  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:first-of-type
    .indicators-item-info {
    padding-top: 0;
  }
  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:last-of-type
    .indicators-item-changes-wrap
    .indicators-item-changes {
    padding-bottom: 0;
    border-bottom: none;
  }
  .indicators-item:nth-child(3) .indicators-item-changes {
    margin-top: 0;
    padding: 0 16px;
  }
  .indicators-item:nth-child(3) .indicators-item-nomination {
    padding-left: 0;
    margin-top: 0;
  }

  .indicators-item:nth-child(3)
    .indicators-item-info-wrap:last-of-type
    .indicators-item-info {
    padding-bottom: 0;
    border-bottom: none;
  }
  .indicators-item:nth-child(3) .indicators-item-results {
    margin-top: 0;
  }
  .indicators-item:nth-child(3)
    .indicators-item-list
    .indicators-item-info-wrap:first-of-type
    .indicators-item-results:nth-child(2) {
    margin-top: 24px;
  }
  .indicators-item-changes {
    text-align: center;
    width: auto;
  }
  .indicators-results-items {
    grid-template-columns: 1fr;
    grid-template-rows: 4fr;
  }
  .indicators-results-item:last-of-type {
    grid-column: 1/2;
    flex-direction: column;
    justify-content: space-around;
  }
}

@media (max-width: 457px) {
  .indicators-results-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  .indicators-item-period-mobile {
    max-width: 100%;
  }
  .indicators-item-tooltip-content {
    left: 0px;
    width: 100%;
    top: -152px;
  }
  .indicators-item:nth-child(3) .indicators-item-tooltip-content {
    top: -73px;
    left: 0;
    width: 100%;
  }
  .indicators-item:last-of-type .indicators-item-tooltip-content {
    top: -110px;
    left: 0;
    width: 100%;
  }
  .indicators-item-info {
    justify-content: center;
    align-items: center;
  }
  .indicators-wrap {
    padding: 60px 10px;
  }
  .indicators-link {
    width: 100%;
    max-width: 100%;
  }
  .title-investors {
    font-size: 22px;
    font-weight: bold;
  }
}

/*calendar*/
.calendar-wrap {
  display: flex;
}
.calendar-section {
  border-radius: 24px;
  width: 100%;
  background-color: #003b5c;
  padding: 60px 32px;
}
.calendar-section:last-of-type {
  padding: 40px 48px;
  background-color: #fff;
}
.calendar-section:first-of-type {
  max-width: 306px;
}
.calendar-section-header {
  display: flex;
  justify-content: space-between;
}
.calendar-section-header-title {
  color: #003a5c;
  font-size: 48px;
}
.calendar-section-icon {
  width: 48px;
  height: 48px;
}
.calendar-section-title {
  margin-top: 32px;
  color: #fff;
  line-height: 1.5;
  font-size: 32px;
}
.calendar-section-subtitle {
  margin-top: 24px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}
.calendar-section-line {
  width: 4px;
  height: 72px;
  background-color: #4eb9e5;
}
.calendar-section-items {
  margin-top: 48px;
  display: flex;
  gap: 24px;
}
.calendar-section-item {
  border: 1px solid #dde3ed;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 291px;
}
.calendar-section-item-header {
  display: flex;
  gap: 16px;
  align-items: center;
}
.calendar-section-item-desc {
  margin-top: 28px;
  color: #001b36;
  font-size: 15px;
  line-height: 1.5;
}
.calendar-section-item-date {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #001b36;
}
.calendar-section-item-date-span {
  font-size: 36px;
  color: #003a5c;
}
/* .calendar-section-link-mobile {
  display: none;
} */
@media (max-width: 1100px) {
  .calendar-wrap {
    display: flex;
    flex-direction: column;
  }
  .calendar-section:first-of-type {
    max-width: 100%;
    border-radius: 0 0 24px 24px;
  }
  .calendar-section:first-of-type {
    border-radius: 24px 24px 24px 24px;
  }
}
@media (max-width: 800px) {
  .calendar-section:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .calendar-section {
    padding: 40px 32px;
  }
  .calendar-section:last-of-type {
    padding: 48px 24px;
  }

  .calendar-section-header-title {
    font-size: 40px;
  }
  .calendar-section-icon {
    width: 40px;
    height: 40px;
  }

  .calendar-section-subtitle {
    margin-top: 12px;
    font-size: 15px;
  }
  .calendar-section-line {
    width: 4px;
    height: 82px;
  }
  .calendar-section-items {
    margin-top: 32px;
  }
  .calendar-section-item {
    padding: 32px 20px;
    max-width: 100%;
    display: flex;
    gap: 32px;
    /* align-items: center; */
    flex-direction: column;
  }

  .calendar-section-item-desc {
    margin-top: 0;
  }
  .calendar-section-item-date {
    font-size: 15px;
  }
  .calendar-section-item-date-span {
    font-size: 32px;
  }
  .calendar-section-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
  }
  .calendar-section-link {
    max-width: 320px;
  }
  /* .calendar-section-link-mobile {
    display: flex;
    margin-top: 32px;
    max-width: 100%;
  } */
}
@media (max-width: 670px) {
  .calendar-section-items {
    flex-direction: column;
  }
  .calendar-section-title {
    text-align: center;
  }
}
@media (max-width: 500px) {
  .calendar-section-item {
    gap: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
  .calendar-section-title {
    font-size: 23px;
  }
}
/*news*/
.news {
  padding: 100px 40px;
}
.news-wrap {
  display: flex;
  flex-direction: column;
}
.news-header {
  display: flex;
  justify-content: space-between;
}
.news-title {
  color: #003a5c;
}
.news-items {
  margin-top: 66px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.news-item-content {
  padding: 32px 24px;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
}
.news-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 418px;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0px 2px 8px rgba(6, 50, 77, 0.15);
}
.news-item-content-title {
  font-size: 20px;
  line-height: 1.5;
  color: #003a5c;
}
.news-item:hover .news-item-content-title {
  color: #4eb9e5;
}
.news-item-content-desc {
  margin-top: 16px;
  margin-bottom: 12px;
  color: #001b36;
  font-size: 14px;
  line-height: 1.5;
}
.news-item-content-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  /* border-top: 1px solid #dde3ed; */
}
.news-item-content-data-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-item-icon {
  width: 32px;
  height: 32px;
}
.news-item-content-data {
  font-size: 14px;
  color: #2d3d57;
}
.news-item-content-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #4eb9e5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-item-content-icon {
  width: 16px;
  height: 16px;
}
/* .news-item-img-mobile {
  display: none;
} */
/* .news-item-btn {
  display: none;
} */
@media (max-width: 1040px) {
  .news-items {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .news-item {
    /* flex-direction: row; */
    max-width: 400px;
  }
  /* .news-item-img {
    display: none;
  } */
  /* .news-item-img-mobile {
    display: block;
    width: 100%;
    max-width: 220px;
    height: 408px;
  } */
  .news-item-content {
    /* border-radius: 16px 0 0 16px; */
    padding: 32px;
  }
  .news-item-content-title {
    margin-top: 16px;
    font-size: 18px;
  }
  /* .news-item-content-desc {
    margin-top: 16px;
    margin-bottom: 0;
  } */
  /* .news-item-content-footer {
    padding-bottom: 16px;
    padding-top: 0;
    border-top: none;
    border-bottom: 1px solid #dde3ed;
  } */
  /* .news-item-content-icon-wrap {
    display: none;
  } */
  /* .news-item-btn {
    margin-top: 32px;
    order: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #eef8fd;
    border-radius: 14px;
    padding: 17px 20px;
    font-size: 14px;
    color: #4eb9e5;
  }
  .news-item-btn-icon {
    transform: rotate(90deg);
  } */
}
@media (max-width: 769px) {
  .news-header {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    justify-content: center;
  }
  .news-title {
    text-align: center;
  }
}
@media (max-width: 650px) {
  .news {
    padding: 60px 20px;
  }
  .news-header {
    flex-direction: column;
  }
  .news-link {
    margin-top: 40px;
    max-width: 360px;
  }
  .news-items {
    margin-top: 60px;
  }
  .news-item-content {
    border-radius: 16px 16px 0 0;
  }
  .news-item {
    flex-direction: column;
  }

  .news-item-img-mobile {
    display: none;
  }
  .news-item-img {
    display: block;
  }
}
@media (max-width: 420px) {
  .news-item-content-title {
    font-size: 16px;
  }
  .news-item-content {
    padding: 16px;
  }
}
/*footer*/
.footer-wrap {
  background-color: #262930;
  padding: 48px 40px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  flex-direction: column;
}
.footer-content {
  font-size: 11px;
  line-height: 1.5;
  color: #aeb6c5;
  margin-top: 40px;
}

.footer-content-section-inner {
  display: flex;
  gap: 80px;
}

.footer-content:first-of-type {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
}
.footer-content-logo {
  width: 157px;
  height: 44px;
}
.footer-content-cop {
  margin-top: 24px;
  font-size: 14px;
  color: #aeb6c5;
  line-height: 1.5;
}
.footer-content-link {
  margin-top: 66px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 15px 16px;
  font-size: 14px;
  color: #fff;
  width: 100%;
  max-width: 223px;
  gap: 12px;
  border: none;
  outline: none;
  background-color: #3A3F4A;
}
.footer-content-link-icon-wrap {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content-section {
  display: flex;
  flex-direction: column;
}
.footer-content-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-content-menu-item-link {
  font-size: 14px;
  color: #ffffff;
}
.footer-content-contacts {
  display: flex;
  flex-direction: column;
}
.footer-content-contacts-title {
  font-size: 14px;
  color: #aeb6c5;
}
.footer-content-tel {
  margin-top: 12px;
  font-size: 16px;
  color: #ffffff;
}
.footer-content-mail {
  margin-top: 8px;
  color: #4eb9e5;
  font-size: 14px;
}
.footer-content-social {
  margin-top: 62px;
}
.footer-content-social-title {
  font-size: 14px;
  color: #aeb6c5;
}
.footer-content-social-icons {
  display: flex;
  margin-top: 16px;
  gap: 10px;
}
.footer-content-social-link-wrap {
  width: 40px;
  height: 40px;
  background-color: #3a3f4a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content-social-link-wrap:hover {
  background-color: #4eb9e5;
}
.footer-content-social-link {
  width: 20px;
  height: 20px;
}
@media (max-width: 840px) {
  .footer-wrap {
    padding: 40px 32px;
  }
  .footer-content-section-inner {
    flex-direction: column;
  }
  .footer-content:first-of-type {
    flex-direction: column;
    gap: 0px;
  }
  .footer-content-section:first-of-type {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid #2d3d57;
  }
  .footer-content-link {
    margin-top: 0;
    max-width: 219px;
  }
  .footer-content-menu {
    margin-top: 48px;
    align-items: center;
    justify-content: center;
    padding-bottom: 32px;
    /* border-bottom: 1px solid #2d3d57; */
  }
  .footer-content-section:last-of-type {
    margin-top: 32px;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-content-social {
    margin-top: 0;
  }
}
@media (max-width: 510px) {
  .footer-wrap {
    padding: 40px 24px;
  }
  .footer-content-logo {
    width: 146px;
    height: 41px;
  }
  .footer-content-cop {
    margin-top: 20px;
  }
  .footer-content-section:first-of-type {
    flex-direction: column;
    justify-content: center;
  }
  .footer-content-section-inner {
    align-items: center;
  }
  .footer-content-link {
    margin-top: 32px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  .footer-content-menu {
    align-items: flex-start;
    padding-bottom: 0px;
  }
  .footer-content-section:last-of-type {
    flex-direction: column;
  }
  .footer-content-social {
    margin-top: 48px;
  }
  .footer-content-menu {
    align-items: center;
  }
  .footer-content-contacts-title, .footer-content-tel, .footer-content-mail,
  .footer-content-social-title {
    text-align: center;
  }
  .footer-content-menu-item-link {
    color: #aeb6c5;
  }
  .footer-content-section-inner {
    gap: 15px;
  }
  .footer-content-cop {
    text-align: center;
  }
}
