* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', 'Helvetica', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

input,
textarea {
  border: none;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #51595f7a;
  font-weight: 700;
  font-size: 16px;
}

textarea::placeholder {
  font-size: 20px;
}

.gradient-button {
  border: none;
  outline: none;
  width: max-content;
  color: #fff;
  padding: 12px 24px;
  font-size: inherit;
  font-weight: 400;
  transition: all 0.3s linear;
  background: linear-gradient(120deg, #80b13e 0%, #449c53 100%);
}
.gradient-button:hover {
  background: linear-gradient(120deg, #449c53 0%, #80b13e 100%);
}

.page-head {
  width: 100vw;
  height: 370px;
  background: url('../assets/graphene_background.webp') no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-head::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1b1bc2;
  z-index: 2;
}
.page-head_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .page-head_content {
    padding-bottom: 30px;
  }
}
.page-head_icon {
  height: 120px;
  width: 120px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .page-head_icon {
    height: 100px;
    width: 100px;
  }
}
.page-head_title {
  font-size: 68px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1024px) {
  .page-head_title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .page-head_title {
    font-size: 46px;
  }
}
.page-gradient-head {
  width: 100vw;
  height: 280px;
  background: url('../assets/graphene_background.webp') no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.page-gradient-head::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(84, 89, 95, 0.95) 100%
  );
  z-index: 2;
}
.page-gradient-head_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  .page-gradient-head_content {
    padding-bottom: 30px;
  }
}
.page-gradient-head_title {
  font-size: 68px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1024px) {
  .page-gradient-head_title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .page-gradient-head_title {
    font-size: 56px;
  }
}
.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.form_field {
  display: flex;
  margin: 0 -10px;
}
.form_label {
  padding: 5px 10px;
  width: 100%;
}
.form_input {
  border-bottom: 1px solid #51595f;
  resize: none;
  padding: 8px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  color: #7a7a7a;
}
.form_input::placeholder {
  text-transform: uppercase;
}
.form textarea.form_input {
  font-size: 20px;
}
.form_actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}
.form_policy {
  font-size: 14px;
  color: #51595f;
}
.form_policy a {
  color: #449c53;
}

.title {
  color: #80b13e;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
}

.error-wrapper {
  height: 100%;
  min-height: 100vh;
}

.error {
  height: 100%;
  padding: 80px 0;
  border-bottom: 1px solid #a6a6a6;
}
.error_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.error_title {
  font-size: 40px;
  font-weight: 600;
  color: #f51e0e;
  font-family: 'Arvo', sans-serif;
}
.error_text {
  font-size: 32px;
  font-weight: 700;
}

.contact-us_content {
  display: flex;
  margin: -10px;
}

.contact-us_title {
  width: 50%;
  padding: 10px;
  font-size: 32px;
  color: #80b13e;
}

.contact-us_right-side {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.center-item {
  display: flex;
  justify-content: center;
}

.title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.title-block_title {
  text-transform: uppercase;
  color: #80b13e;
  font-size: 16px;
  font-weight: 600;
}
.title-block_subtitle {
  font-size: 30px;
  text-align: justify;
  color: #54595f;
  font-weight: 700;
  max-width: 780px;
}
.title-block_link {
  text-transform: uppercase;
  transition: all 0.3s linear;
}

.card {
  display: block;
  width: calc(100% / 3);
  padding: 15px;
  color: #80b13e;
  height: 100%;
  width: 100%;
}
.card_conent {
  height: 100%;
  transition: all 0.3s linear;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
  overflow: hidden;
}
.card_conent:hover {
  box-shadow: 0 5px 15px #00000034;
}
.card_img {
  width: 100%;
  height: 0;
  padding-bottom: 61%;
  position: relative;
  overflow: hidden;
}
.card_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s linear;
}
.card_img img:hover {
  transform: scale(1.1);
  color: #51595f;
}
.card_text-block {
  display: flex;
  flex-direction: column;
  padding: 25px;
  gap: 20px;
}
.card_title {
  font-size: 25px;
  color: inherit;
  font-weight: 400;
}
.card_tag {
  display: flex;
  align-items: center;
  gap: 5px;
}
.card_tag img {
  width: 20px;
  height: 15px;
  object-fit: contain;
}

.hero {
  width: 100vw;
  height: 100vh;
  background: url('../assets/graphene_background.webp') no-repeat center
    center/cover;
  z-index: 2;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1b1bc2;
}
.hero_content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero_content-top {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .hero_content-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.hero_content-top img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.hero_title {
  font-size: 40px;
  font-weight: 400;
  font-family: 'Arvo', serif;
}
.hero_content-text {
  font-size: 32px;
  max-width: 560px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .hero_content-text {
    font-weight: 500;
  }
}

.header.header-scrolled,
.header.visible {
  position: fixed;
  background-color: rgba(50, 52, 54, 0.479);
  backdrop-filter: saturate(180%) blur(20px);
}
.header_content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header_logo-text {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  font-family: 'Arvo', serif;
}
.header_logo img {
  height: 55px;
  height: 55px;
  object-fit: contain;
}
.header_nav-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header_nav-list {
    display: none;
  }
}

.header_nav-subitems {
  display: none;
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translate(-50%, 0);
  width: max-content;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 4px 4px #00000025;
  border-radius: 4px;
  overflow: hidden;
}

.header_nav-subitem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_nav-subitem-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-transform: uppercase;
  font: inherit;
  color: #1b1b1b;
  padding: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s linear;
}

a.header_nav-subitem-link:hover {
  color: #fff;
  background-color: #80b13e;
}

/* Mobile menu */
.header_btn {
  border: none;
  outline: none;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: max-content;
  display: none;
}

.header_btn img {
  width: 26px;
  height: 26px;
}

@media screen and (max-width: 768px) {
  .header_btn {
    display: flex;
  }
}

.header_mobile-menu {
  position: fixed;
  width: 300px;
  height: 100vh;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 5;
  background-color: #80b13e;
  padding: 20px;
  transform: translateX(100%);
  transition: all 0.4s linear;
}

.header_mobile-menu.visible {
  transform: translateX(0);
}

.header_mobile-menu-mask {
  position: absolute;
  background-color: rgba(50, 52, 54, 0.479);
  backdrop-filter: saturate(180%) blur(20px);
  width: calc(100vw - 300px);
  height: 100vh;
  top: 0;
  right: 100%;
  z-index: 2;
  font-size: 0;
  font-weight: 0;
  line-height: 0;
  transform: translateX(100%);
  transition: all 0.4s linear 0.4;
}

.header_mobile-menu.visible .header_mobile-menu-mask {
  transform: translateX(0);
}

.header_mobile-menu-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.header_mobile-menu-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.header_mobile-menu-logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-decoration: none;
}

.header_mobile-menu-logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.header_mobile-menu-logo h6 {
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  font-family: 'Arvo', serif;
}

.header_mobile-nav-list {
  display: flex;
  flex-direction: column;
}

.header_mobile-nav-list-item {
  padding: 13px;
  list-style: none;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_mobile-nav-link {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(
    120deg,
    rgba(128, 177, 62, 0.8),
    rgba(68, 156, 83, 0.8)
  );
  z-index: 1;
}
.footer-bg {
  position: absolute;
  background-image: url('../assets/graphene_background.webp');
  background-repeat: no-repeat;
  background-size: cover;
  height: 200%;
  width: 100%;
  z-index: 0;
  top: -40%;
  left: 0;
  right: 0;
}
.footer_content {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.footer_content-top {
  display: flex;
  flex-wrap: wrap;
}
.footer_content-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #fff;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.footer_logo {
  display: flex;
  align-items: center;
}
.footer_logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
@media screen and (max-width: 425px) {
  .footer_logo-img {
    width: 80px;
    height: 80px;
  }
}
.footer_logo-text {
  font-size: 50px;
  font-weight: 400;
  color: #fff;
  font-family: 'Arvo', sans-serif;
}
@media screen and (max-width: 425px) {
  .footer_logo-text {
    font-size: 32px;
  }
}
.footer_column {
  width: 23%;
  max-width: 285px;
}
@media screen and (max-width: 768px) {
  .footer_column {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
}
.footer_column--large {
  width: auto;
  flex-grow: 1;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .footer_column--large {
    width: 100%;
    max-width: none;
    margin-bottom: 20px;
  }
}
.footer_column-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer_column-title {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  font-family: 'Arvo', serif;
  text-transform: uppercase;
}
.footer_column-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 2px;
}
.footer_column-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s linear;
  transform-origin: left;
}
.footer_column-link:hover {
  transform: scale(1.1);
}

.main_bottom {
  padding: 20px 0;
}

.main_bottom-content {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .main_bottom-content {
    flex-wrap: wrap;
  }
}

.main_bottom-img {
  display: block;
  width: 36%;
  padding: 10px;
  height: auto;
  min-width: 300px;
}

@media screen and (max-width: 768px) {
  .main_bottom-img {
    width: 100%;
  }
}

.main_bottom-img img {
  width: 80%;
  object-fit: contain;
}

.main_bottom-texts {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 10px;
  width: 64%;
}

@media screen and (max-width: 768px) {
  .main_bottom-texts {
    width: 100%;
  }
}

.main_bottom-text {
  font-size: 12px;
  color: #7a7a7a;
}

.about-block_cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

.about-block_card {
  width: 50%;
  padding: 10px;
}
@media (max-width: 768px) {
  .about-block_card {
    width: 100%;
  }
}
.about-block_card-conent {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #54595f;
}

.about-block_card-conent:hover {
  box-shadow: 0 5px 15px #00000034;
}

.about-block_card-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.about-block_card-title {
  font-size: 30px;
  font-weight: 700;
}

.news-events_content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.news-events_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -15px;
  align-items: stretch;
}
@media screen and (max-width: 925px) {
  .news-events_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .news-events_cards {
    grid-template-columns: 1fr;
  }
}
.infrastructure {
  padding-bottom: 120px;
  border-bottom: 1px solid #1b1b1b;
}
@media screen and (max-width: 1024px) {
  .infrastructure {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .infrastructure {
    padding: 80px 0;
  }
}
.infrastructure_content,
.infrastructure_title-block {
  display: flex;
  flex-direction: column;
  color: #1b1b1b;
}
.infrastructure_subtitle {
  text-transform: uppercase;
  color: #39c842;
  font-size: 20px;
  font-weight: 500;
}
.infrastructure_title {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
}
.infrastructure_text {
  font-size: 20px;
  font-weight: 300;
  max-width: 1400px;
}
.infrastructure_inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
}
.omero_link {
  color: #449c53;
  transition: color 0.3s linear;
}

.omero_link:hover {
  color: #80b13e;
}
@media screen and (max-width: 1024px) {
  .infrastructure_inner {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .infrastructure_inner {
    margin-top: 80px;
  }
}
.infrastructure_inner-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: -24px -18px;
}

.infrastructure_card {
  padding: 24px 18px;
  width: 369px;
  height: 302px;
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
.infrastructure_card-text {
  width: 320px;
}
.infrastructure_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 283px;
  height: 72px;
  font-size: 22px;
  color: #1b1b1b;
  font-weight: 500;
  background: linear-gradient(180deg, #d9d9d800 0%, #a1a1a12f 100%);
  border-radius: 10px;
  box-shadow: 0 4px 4px #00000025;
  padding: 20px;
  text-align: center;
  transition: background 0.3s linear;
}
.infrastructure_link--large {
  height: 180px;
}
.infrastructure_link:hover {
  color: #fff;
  background: linear-gradient(180deg, #6cac55 0%, #4b7a3b 100%);
}

.materials {
  padding: 50px 0;
}
.materials_content {
  display: flex;
  position: relative;
}
.materials_text-block {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .materials_text-block {
    width: 100%;
  }
}
.materials_image {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .materials_image {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
}
.materials_image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .materials_image img {
    opacity: 0.02;
  }
}
.materials_title {
  color: #80b13e;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin-bottom: 10px;
}
.materials_subtitle {
  font-size: 20px;
  margin-bottom: 10px;
  color: #80b13e;
  font-weight: 400;
}
.materials_text {
  color: #54595f;
  margin-bottom: 14px;
}

.pathway {
  padding: 50px 0;
  background-color: #f3f3f3;
  position: relative;
  z-index: 2;
}
.pathway_content {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .pathway_content {
    flex-direction: column;
  }
}
.pathway_what-is-accords-title {
  width: 100%;
  max-width: 310px;
}
@media (max-width: 768px) {
  .pathway_what-is-accords-title {
    max-width: none;
  }
}
.pathway_pathway_block-clock {
  display: flex;
  flex-direction: column;
}
.pathway_blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pathway_block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: #7a7a7a;
  position: relative;
}
.pathway_block::after,
.pathway_block::before {
  content: '';
  background-color: #54595f;
  position: absolute;
  z-index: 0;
  width: 1px;
  height: 50%;
  left: 20px;
}
.pathway_block::after {
  bottom: -15px;
}
.pathway_block::before {
  top: -15px;
}
.pathway_block:first-child::before {
  display: none;
}
.pathway_block:last-child::after {
  display: none;
}
.pathway_block-clock {
  width: 40px;
  min-width: 40px;
  height: 40px;
  background-color: #e2e2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.pathway_block-clock img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.pathway_block-content {
  padding: 30px;
  border-radius: 5px;
  border: 1px solid #dadada;
  display: flex;
  flex-direction: column;
  gap: 13px;
  max-width: 680px;
  width: 100%;
}
.pathway_block-content-tag {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}
.pathway_block-content-text {
  color: #54595f;
  font-weight: 800;
  font-size: 18px;
}

.assume {
  padding: 50px 0;
  border-bottom: 1px solid #a6a6a6;
}
.assume_preview {
  color: #7a7a7a;
  margin-bottom: 30px;
}
.assume_content {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .assume_content {
    flex-direction: column;
  }
}
.assume_what-is-accords-title {
  width: 100%;
  max-width: 310px;
}
@media (max-width: 768px) {
  .assume_what-is-accords-title {
    max-width: none;
  }
}
.assume_blocks {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid #a6a6a6;
}
.assume_block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #7a7a7a;
}
.assume_block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.assume_block-title {
  font-size: 20px;
  font-weight: 700;
  color: #80b13e;
}
.assume_block-text {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 10px;
}
.assume_block-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.assume_block-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.messages {
  padding: 50px 0;
  border-bottom: 1px solid #a6a6a6;
}
.messages_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.message {
  padding: 0 0 20px 20px;
  color: #7a7a7a;
  border-left: 2px solid #80b13e;
}

.team-head {
  padding: 50px 0;
}
.team-head_content {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .team-head_content {
    flex-wrap: wrap;
  }
}
.team-head_img {
  width: 33%;
  min-width: 33%;
  height: 0;
  padding-bottom: 33%;
  position: relative;
}
@media (max-width: 768px) {
  .team-head_img {
    width: 100%;
    padding-bottom: 100%;
  }
}
.team-head_img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team-head_inner {
  display: flex;
  flex-direction: column;
  color: #7a7a7a;
}
.team-head_description {
  margin-bottom: 20px;
}
.team-head_title {
  margin-bottom: 20px;
}
.team-head_members {
  display: flex;
  flex-direction: column;
}
.team-head_member {
  font-size: 20px;
}

.statistic {
  padding: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.statistic::after,
.statistic::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.statistic::before {
  background-image: url('../assets/graphene_background.webp');
  z-index: 0;
}
.statistic::after {
  z-index: 1;
  background-color: #d1d1d1ef;
}
.statistic .statistic_content {
  position: relative;
  z-index: 4;
}
.statistic .statistic_numbers {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.statistic .statistic_number {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .statistic .statistic_number {
    width: 100%;
  }
}
.statistic_number-value {
  font-size: 69px;
  font-weight: 700;
  color: #80b13e;
  margin-bottom: 5px;
}
.statistic_number-text {
  color: #7a7a7a;
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.statistic_number-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.statistic_number-description {
  color: #7a7a7a;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
}

.partners {
  padding: 50px 0;
  border-bottom: 1px solid #a6a6a6;
}
.partners_cards {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}
.partners_card {
  padding: 20px;
  width: 50%;
  height: auto;
  min-height: 100%;
}
.partners_card-content {
  padding: 40px;
  min-height: 100%;
  border: 1px solid #a6a6a6;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.partners_card-content:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.26);
}
.partners_card-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners_card-link:hover img {
  transform: scale(1.05);
}
.partners_card-link img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: all 0.3s linear;
}
.partners_card-link--small img {
  max-height: 90px;
}
.partners_card-title {
  font-size: 32px;
  text-align: center;
}
.partners_card-text {
  font-size: 16px;
  color: #7a7a7a;
}

.privacy {
  padding: 50px 0;
  border-bottom: 1px solid #a6a6a6;
}
.privacy_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.privacy_content::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 0;
  width: 50%;
  min-width: 600px;
  min-height: 600px;
  height: auto;
  background-image: url('../assets/graphene_structure.webp');
  background-position: center;
  background-size: contain;
  opacity: 0.05;
}
.privacy_text-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.privacy_title,
.privacy_subtitle {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  color: #80b13e;
  font-family: 'Arvo', 'Open-sans', sans-serif;
}
.privacy_subtitle {
  text-transform: none;
}
.privacy_text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #7a7a7a;
}
.privacy_list {
  list-style: disc;
  padding-left: 30px;
  color: #7a7a7a;
}
.privacy_list li {
  color: inherit;
  list-style: inherit;
}
.privacy_list li ul {
  padding-left: 30px;
}
.privacy_list li a {
  color: inherit;
}
.privacy_list li a:hover {
  text-decoration: underline;
}

.template {
  height: 100%;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.main {
  flex-grow: 1;
  background-color: #fff;
}

.block {
  padding: 80px 0;
  border-bottom: 1px solid #a6a6a6;
}

/*# sourceMappingURL=index.css.map */
