@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;
  }
}
.contacts {
  margin-top: 40px;
}
.contacts-wrap {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 20px;
  display: flex;
  justify-content: space-around;
}
.contacts-container {
  width: 100%;
  max-width: 517px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contacts-name {
  font-size: 20px;
  color: #003b5c;
  line-height: 1.5;
  text-align: center;
}
.contacts-position {
  margin-top: 12px;
  color: #262930;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.contacts-mail {
  margin-top: 32px;
  color: #138ab4;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contacts-mail::after {
  content: "";
  background: url("../img/blue-arrow-up.svg") center center/cover no-repeat;
  display: block;
  width: 16px;
  height: 18px;
}
.contacts-mail:hover {
  color: #23a1d8;
}
.contacts-mail:hover::after {
  content: "";
  background: url("../img/blue-arrow-hover.svg") center center/cover no-repeat;
  display: block;
  width: 16px;
  height: 18px;
}
@media (max-width: 660px) {
  .contacts-wrap {
    flex-direction: column;
  }
  .contacts-container {
    padding-bottom: 40px;
    border-bottom: 1px solid #e7eaf1;
  }
  .contacts-container:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
    padding-top: 40px;
  }
}

/*social*/
.social {
  padding: 48px 0 60px 0;
}
.social-wrap {
  background-color: #ffffff;
  padding: 48px 60px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
}
.social-title {
  color: #003b5c;
  font-size: 28px;
  line-height: 1.5;
}
.social-items {
  display: grid;
  grid-template-columns: repeat(2, 395px);
  grid-template-rows: repeat(2, 168px);
  gap: 24px;
}
.social-item {
  padding: 16px 16px 36px 32px;
  background-color: #f5f6fa;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
.social-item-desc {
  margin-top: 24px;
  color: #262930;
  font-size: 15px;
}
.social-item-icon {
  width: 48px;
  height: 48px;
}
.social-item:first-of-type .social-item-icon {
  background: url("../img/pyls-icon.svg") center center/cover no-repeat;
}
.social-item:nth-child(2) .social-item-icon {
  background: url("../img/smartLab-icon.svg") center center/cover no-repeat;
}
.social-item:nth-child(3) .social-item-icon {
  background: url("../img/MP-icon.svg") center center/cover no-repeat;
}
.social-item:last-of-type .social-item-icon {
  background: url("../img/profit-icon.svg") center center/cover no-repeat;
}
.social-item-wrap-arrow {
  background-color: #c5e9f8;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-item-arrow {
  background: url("../img/blue-arrow-up.svg") center center/cover no-repeat;
  width: 14px;
  height: 14px;
}
.social-item-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.social-item:hover {
  background-color: #4eb9e5;
}
.social-item:hover .social-item-desc {
  color: #fff;
}

.social-item:hover:first-of-type .social-item-icon {
  background: url("../img/pyls-icon-hover.svg") center center/cover no-repeat;
}
.social-item:hover:nth-child(2) .social-item-icon {
  background: url("../img/smartLab-icon-hover.svg") center center/cover
    no-repeat;
}
.social-item:hover:nth-child(3) .social-item-icon {
  background: url("../img/MP-icon-hover.svg") center center/cover no-repeat;
}
.social-item:hover:last-of-type .social-item-icon {
  background: url("../img/profit-icon-hover.svg") center center/cover no-repeat;
}
.social-item:hover .social-item-wrap-arrow {
  background-color: #ffffff;
}
.social-item:hover .social-item-arrow {
  background: url("../img/blue-arrow-hover.svg") center center/cover no-repeat;
  width: 14px;
  height: 14px;
}
@media (max-width: 1190px) {
  .social-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .social-title {
    text-align: center;
  }
  .social-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 660px) {
  .social-wrap {
    padding: 48px;
  }
}
@media (max-width: 570px) {
  .social-wrap {
    padding: 36px 24px;
  }
  .social-items {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 168px);
    gap: 32px;
  }
}
