@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: 1360px;
  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;
}
@media (max-width: 769px) {
  .section-top-title {
    font-size: 32px;
  }
}

/*faq*/
.faq {
  padding: 48px 0 60px 0;
}
.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  padding: 28px 32px;
  background-color: #ffffff;
  border-radius: 20px;
  cursor: pointer;
}
.faq-item-top {
  display: flex;
  justify-content: space-between;
  color: #003b5c;
  font-size: 20px;
  line-height: 1.5;
}
.faq-item-wrap-arrow {
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  background-color: #e9f5fc;
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq-item-arrow.active {
  transform: rotate(90deg);
}
.faq-item-content {
  margin-top: 28px;
  display: none;
  flex-direction: column;
  width: 95%;
  gap: 20px;
}
.faq-item-content.active {
  display: flex;
}
.faq-item-desc,
.faq-item-list-desc {
  color: #262930;
  font-size: 14px;
  line-height: 1.5;
}
.faq-item-link {
  color: #138ab4;
  display: inline-flex;
  gap: 6px;
}
.faq-item-link::after {
  content: "";
  background: url("../img/blue-arrow-right.svg") center center/cover no-repeat;
  display: block;
  width: 14px;
  height: 16px;
}
.faq-item-link:hover {
  color: #23a1d8;
}
.faq-item-link:hover::after {
  background: url("../img/blue-arrow-right-hover.svg") center center/cover
    no-repeat;
}
.faq-item-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item-list-desc::before {
  content: "";
  background: url("../img/list-arrow.svg") center center/cover no-repeat;
  display: block;
  max-width: 20px;
  min-width: 20px;
  height: 24px;
}
.faq-item-list-desc {
  display: flex;
  gap: 24px;
}
@media (max-width: 769px) {
  .faq-item-top {
    font-size: 18px;
    gap: 20px;
  }
  .faq-item {
    padding: 28px 24px;
  }
}
