@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-investors {
  width: 100%;
  max-width: 1134px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-top {
  padding: 40px 0;
  background-color: #ffffff;
}
.section-top-topic {
  color: #626b7d;
  font-size: 14px;
  text-align: center;
}
.section-top-title {
  margin-top: 24px;
  color: #262930;
  font-size: 40px;
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin: auto;
}
@media (max-width: 769px) {
  .section-top-title {
    font-size: 32px;
    max-width: 660px;
  }
}

/*docs*/
.docs {
  padding: 48px 0;
}
.docs-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.docs-section {
  padding: 28px 32px;
  background-color: #ffffff;
  border-radius: 24px;
  cursor: pointer;
}
.docs-section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.docs-section-title {
  font-size: 20px;
  color: #003b5c;
  line-height: 1.5;
}
.docs-items {
  margin-top: 32px;
  display: none;
  flex-direction: column;
  gap: 20px;
}
.docs-item {
  padding: 23px 24px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.docs-item-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.docs-item-desc {
  font-size: 14px;
  color: #262930;
  line-height: 1.5;
}
.docs-item-arrow-wrap {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  background-color: #23a1d8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.docs-section-arrow-wrap {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  background-color: #e9f5fc;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.docs-section-arrow.active {
  transform: rotate(90deg);
}
@media (max-width: 769px) {
  .docs-section {
    padding: 36px 56px;
  }
}
@media (max-width: 577px) {
  .docs-section {
    padding: 36px 20px;
  }
}

/*extra-info*/
.extra-info {
  padding: 80px 0;
  background-color: #ffffff;
}
.extra-info-wrap {
  border-radius: 20px;
  border: 1px solid #e4e7ec;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.extra-info-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: #e9f5fc;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.extra-info-desc-title {
  font-size: 28px;
  color: #003b5c;
  line-height: 1.5;
}
.extra-info-desc-text {
  font-size: 20px;
  color: #3a3f4a;
  line-height: 1.5;
}
.extra-info-link {
  padding: 16px;
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  background-color: #23a1d8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #ffffff;
}
@media (max-width: 1040px) {
  .extra-info-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .extra-info-desc-title {
    text-align: center;
    font-size: 28px;
    color: #003b5c;
    line-height: 1.5;
  }
  .extra-info-desc-text {
    margin-top: 8px;
    text-align: center;
    font-size: 20px;
    color: #3a3f4a;
    line-height: 1.5;
  }
}
@media (max-width: 769px) {
  .extra-info-desc-title {
    font-size: 20px;
  }
  .extra-info-desc-text {
    font-size: 14px;
  }
  .extra-info-link {
    max-width: 240px;
  }
}
