@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;
  }
}

/*events*/
.events {
  padding: 48px 0 60px 0;
}
.events-wrap {
  padding: 48px 40px;
  background-color: #ffffff;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.events-tabs {
  display: flex;
  padding: 6px;
  border: 1px solid #e7eaf1;
  background-color: #e7eaf1;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  margin: auto;
}
.events-tab {
  padding: 12px 16px;
  width: 100%;
  text-align: center;
  color: #3a3f4a;
  font-size: 14px;
  border-radius: 12px;
  cursor: pointer;
}
.events-tab.active {
  color: #23a1d8;
  background-color: #ffffff;
}
.events-content {
  /* margin-top: 60px; */
  display: flex;
  flex-direction: column;
}
.events-content-title {
  font-size: 40px;
  color: #003b5c;
  text-align: center;
  margin-top: 60px;
}
.events-items {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr); */
  gap: 32px;
}
.events-item {
  padding: 32px 24px;
  border: 1px solid #d9dde7;
  border-radius: 16px;
  width: 100%;
  max-width: 286px;
}
.events-item-top {
  display: flex;
  gap: 20px;
  align-items: center;
}
.events-item-line {
  width: 4px;
  height: 82px;
  background-color: #4eb9e5;
}
.events-item-text {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #262930;
}
.events-item-text-span {
  font-size: 40px;
  color: #003b5c;
}
.events-item-desc {
  margin-top: 24px;
  font-size: 16px;
  color: #262930;
  line-height: 1.5;
}
.events-select {
  position: relative;
  margin-top: 40px;
}

.events-select-button {
  margin: auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 640px;

  background-color: transparent;
  /* background: #ffffff; */
  border: 1px solid #c5c9d2;
  border-radius: 12px;
  height: 60px;
  padding: 22px 16px;
  font-size: 14px;

  cursor: pointer;
}
.events-select-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../img/grey-arrow.svg") center center/cover no-repeat;
  pointer-events: none;
}

.events-select-list {
  display: none;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 63px;

  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 1px solid #c5c9d2;
  background: #ffffff;
  /* box-shadow: 0px 4px 8px rgba(171, 191, 125, 0.26); */
  overflow: hidden;

  border-radius: 6px;
  width: 100%;
  max-width: 640px;
  margin: auto;
  z-index: 1;
}
.events-select-list.visible {
  display: block;
}

.events-select-list-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #c5c9d2;
  border-bottom: 0px;
  padding: 13px 20px;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.events-select-list-item:first-child {
  border-radius: 6px 6px 0 0;
}

.events-select-list-item:last-child {
  border-radius: 0 0 6px 6px;
}

.events-select-input-hidden {
  display: none;
}

.events-select-list.visible {
  display: block;
}
.events-item-docs-wrap {
  margin-top: 24px;
  border: 1px solid #d9dde7;
  border-radius: 12px;
  color: #262930;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
}
.events-item-arrow-wrap {
  width: 24px;
  height: 24px;
  background-color: #e9f5fc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events-item-arrow {
  background: url("../img/blue-arrow.svg") center center/cover no-repeat;
  width: 8px;
  height: 8px;
}
.events-item-docs-wrap:hover {
  border: 1px solid #abb2bd;
}
.events-item-docs-wrap:hover .events-item-arrow-wrap {
  background-color: #4eb9e5;
}
.events-item-docs-wrap:hover .events-item-arrow {
  background: url("../img/white-arrow.svg") center center/cover no-repeat;
}
/* @media (max-width: 1150px) {
  .events-items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .events-items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
} */
@media (max-width: 1350px) {
  .events-item {
    padding: 32px 20px;
    max-width: 272px;
  }
}
@media (max-width: 1000px) {
  .events-wrap {
    padding: 36px 56px;
  }
  .events-item-text-span {
    font-size: 32px;
    color: #003b5c;
  }
  .events-item-desc {
    font-size: 14px;
  }
  /* .events-items {
    justify-content: center;
  } */
}
@media (max-width: 730px) {
  .events-items {
    justify-content: center;
  }
  .events-item {
    padding: 32px 20px;
    max-width: 320px;
  }
  .events-wrap {
    padding: 36px 20px;
  }
}
@media (max-width: 450px) {
  .events-tab {
    padding: 12px 10px;
    font-size: 12px;
  }
}
