@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.block-wrapper {
  margin-bottom: 80px;
  position: relative;
}
.block-wrapper .anchor {
  position: absolute;
  top: -80px;
}
.block-wrapper .block {
  width: 1280px;
  margin: auto;
  padding: 0 60px;
}
.block-wrapper .block .block-title {
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: 0em;
  color: #282828;
  padding-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid #C3C3C3;
  margin-bottom: 40px;
}
.block-wrapper .wide {
  padding: 0;
}

.header-wrapper {
  width: 100%;
  height: 60px;
  background-color: #468966;
  position: fixed;
  top: 0;
  z-index: 2;
}
.header-wrapper .header {
  width: 1280px;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrapper .header .logo {
  width: 164px;
  height: 34px;
}
.header-wrapper .header .logo img {
  width: 100%;
  height: 100%;
}
.header-wrapper .header .menu-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-wrapper .header .menu-wrapper .menu-item {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: white;
}
.header-wrapper .header .menu-wrapper .menu-icon {
  width: 22px;
  height: 22px;
}
.header-wrapper .header .mobile {
  display: none;
}

.hero-wrapper {
  background-image: url("/static/images/hero_image.png");
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 780px;
  margin-top: 60px;
  margin-bottom: 80px;
}
.hero-wrapper .hero {
  width: 1280px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  margin: auto;
}
.hero-wrapper .hero h1 {
  font-family: Montserrat;
  font-size: 96px;
  font-weight: 700;
  line-height: 117px;
}
.hero-wrapper .hero h2 {
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 500;
  line-height: 49px;
}

.our-mission .block-body {
  display: flex;
  gap: 30px;
}
.our-mission .block-body img {
  width: 367px;
  height: 551px;
  border-radius: 10px;
}
.our-mission .block-body .mobile {
  display: none;
}
.our-mission .block-body .text {
  padding: 30px;
  border-radius: 10px;
  background-color: #ECF0F9;
  height: 551px;
}
.our-mission .block-body .text p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #282828;
}

.solutions .block-body {
  display: flex;
  gap: 30px;
}
.solutions .block-body .item {
  width: 366px;
}
.solutions .block-body .item img {
  width: 366px;
  height: 366px;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
}
.solutions .block-body .item .text {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #282828;
}

.separator .block {
  background-color: #282828;
  padding: 40px 60px;
  border-radius: 10px;
}
.separator .block .block-body p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: white;
}

.people .block-body {
  display: flex;
  gap: 30px;
}
.people .block-body .item {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  width: 166px;
}
.people .block-body .item img {
  width: 168px;
  height: 168px;
  border-radius: 90px;
  margin-bottom: 30px;
}
.people .block-body .item .name-wrapper {
  min-height: 100px;
}
.people .block-body .item .name-wrapper .name {
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
.people .block-body .item .name-wrapper .title {
  color: #468966;
}
.people .block-body .item .bullets {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  list-style-position: inside;
}
.people .block-body .item .bullets li {
  margin-bottom: 5px;
}

.for-investors .block-body img {
  width: 1160px;
  height: 360px;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: scale-down;
}
.for-investors .block-body .text {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #282828;
}

.contacts .block-body {
  padding: 40px 60px;
  margin: 0 -60px;
  border-radius: 10px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
  background-color: #468966;
}
.contacts .block-body h4 {
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  color: white;
}
.contacts .block-body p {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: white;
}

.footer-wrapper {
  width: 100%;
  height: 74px;
  background-color: #282828;
}
.footer-wrapper .footer {
  width: 1280px;
  padding: 0 60px;
  margin: auto;
  height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wrapper .footer img {
  width: 164px;
  height: 34px;
}
.footer-wrapper .footer p {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: white;
}

@media (max-width: 1300px) {
  .header-wrapper .header {
    width: 888px;
  }
  .header-wrapper .header .menu-wrapper {
    gap: 15px;
  }
  .block-wrapper .anchor {
    position: absolute;
    top: -80px;
  }
  .block-wrapper .block {
    width: 888px;
  }
  .hero-wrapper {
    height: 406px;
  }
  .hero-wrapper .hero {
    width: 888px;
  }
  .hero-wrapper .hero h1 {
    font-size: 70px;
    line-height: 88px;
  }
  .hero-wrapper .hero h2 {
    font-size: 30px;
  }
  .our-mission .block-body img {
    width: 243px;
    height: 364px;
  }
  .our-mission .block-body .text {
    height: auto;
  }
  .solutions .block-body .item {
    width: 236px;
  }
  .solutions .block-body .item img {
    width: 236px;
    height: 236px;
  }
  .people .block-body {
    flex-wrap: wrap;
  }
  .people .block-body .item {
    width: 236px;
  }
  .people .block-body .item img {
    width: 236px;
    height: 236px;
    border-radius: 120px;
  }
  .for-investors .block-body img {
    width: 768px;
  }
  .contacts .block-body h4 {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }
  .contacts .block-body p {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }
  .footer-wrapper .footer {
    width: 888px;
  }
}
@media (max-width: 950px) {
  .block-wrapper {
    margin-bottom: 40px;
  }
  .block-wrapper .block {
    width: 375px;
    padding: 0 15px;
  }
  .block-wrapper .block .block-title {
    font-family: Montserrat;
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .header-wrapper {
    height: 52px;
  }
  .header-wrapper .header {
    width: 375px;
  }
  .header-wrapper .header .logo {
    width: auto;
    height: 30px;
  }
  .header-wrapper .header .desktop {
    display: none;
  }
  .header-wrapper .header .mobile {
    display: block;
  }
  .header-wrapper .header .mobile-menu-wrapper {
    position: absolute;
    width: 250px;
    height: calc(100vh - 52px);
    top: 52px;
    right: -250px;
    transition: right 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    gap: 20px;
    flex-direction: column;
    background: hsla(222, 52%, 95%, 0.96);
  }
  .header-wrapper .header .mobile-menu-wrapper .menu-item {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    color: #282828;
  }
  .header-wrapper .header .mobile-menu-wrapper .menu-icon {
    filter: brightness(0%);
  }
  .header-wrapper .header .open {
    right: 0px;
  }
  .hero-wrapper {
    height: 375px;
    margin-top: 52px;
    margin-bottom: 50px;
  }
  .hero-wrapper .hero {
    width: 375px;
  }
  .hero-wrapper .hero h1 {
    font-size: 52px;
    line-height: 63px;
  }
  .hero-wrapper .hero h2 {
    font-size: 21px;
  }
  .our-mission .block-body {
    flex-direction: column;
    gap: 20px;
  }
  .our-mission .block-body img {
    width: 100%;
    height: 230px;
    object-fit: cover;
  }
  .our-mission .block-body .desktop {
    display: none;
  }
  .our-mission .block-body .mobile {
    display: block;
  }
  .our-mission .block-body .text {
    height: auto;
  }
  .solutions .block-body {
    flex-direction: column;
    gap: 40px;
  }
  .solutions .block-body .item {
    width: 100%;
  }
  .solutions .block-body .item img {
    width: 345px;
    height: 345px;
    margin-bottom: 20px;
  }
  .separator .block .block-body p {
    color: white;
    padding: 30px 15px;
  }
  .people .block-body {
    flex-wrap: wrap;
  }
  .people .block-body .item {
    width: 157px;
  }
  .people .block-body .item img {
    width: 156px;
    height: 157px;
  }
  .for-investors .block-body img {
    width: 345px;
  }
  .contacts .block-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 15px 30px;
    margin: 0 -30px;
  }
  .contacts .block-body h4 {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }
  .contacts .block-body p {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }
  .footer-wrapper {
    height: 70px;
  }
  .footer-wrapper .footer {
    width: 375px;
    height: 70px;
    padding: 0 15px;
  }
}