@charset "UTF-8";
/*!
Theme Name: Trpti
Author: Ziya
Description: Description
Version: 1.0.0
Text Domain: trpti
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready


*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:800,600,400,700");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100..800&display=swap");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --header-height: 100px;
}

::selection {
  color: #fff;
  background-color: #002b3d;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-thumb {
  background-color: #04a0b8;
  border-radius: 6px;
}

*::-webkit-scrollbar-track {
  background-color: #2c363f;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}
@media (min-width: 1024px) {
  body.is-nav-open {
    overflow: unset;
    touch-action: unset;
  }
}

.header {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  background: #fff;
}

body {
  padding-top: var(--header-height);
}

.header__logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.container {
  display: flex;
  width: 100%;
  max-width: 1552px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.nav-container {
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 60px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #005274;
  z-index: 210;
}
.nav-toggle:focus-visible {
  outline: 2px solid #04a0b8;
  outline-offset: 2px;
}

.nav-toggle__line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentcolor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.is-nav-open .nav-toggle .nav-toggle__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.is-nav-open .nav-toggle .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle .nav-toggle__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.nav {
  display: flex;
  gap: 80px;
}
.nav .nav-link {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  color: #002b3d;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
}
.nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: linear-gradient(180deg, #168893 0%, #1963dc 100%);
  opacity: 0;
  filter: blur(30px);
  transition: opacity 4s;
}
.nav .nav-link:hover::before {
  opacity: 0.8;
}

@media (max-width: 1023px) {
  :root {
    --header-height: 72px;
  }
  .header {
    height: var(--header-height);
  }
  .logo {
    height: 44px;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 180;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  body.is-nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 190;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 88px 24px 32px;
    background: linear-gradient(165deg, #0b0f15 0%, #10212f 50%, #122639 100%);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav .nav-link {
    font-size: 20px;
    line-height: 1.4;
    padding: 16px 0;
    border-bottom: 1px solid rgba(4, 160, 184, 0.25);
    color: #fcf8fb;
    text-decoration: none;
  }
  .nav .nav-link::before {
    display: none;
  }
  .nav .nav-link:hover, .nav .nav-link:focus-visible {
    color: #04a0b8;
  }
  body.is-nav-open .nav {
    transform: translateX(0);
  }
  .science-res-header {
    flex-direction: column;
  }
  .science-res-header .science-res-header__right-side {
    display: flex;
    justify-content: center;
  }
}
.main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 285px;
  padding-bottom: 255px;
  position: relative;
  overflow: hidden;
  background-color: #000001;
}
.section-hero .container {
  flex-direction: column;
  justify-content: center;
}
.section-hero .hero-elements {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  z-index: 20;
  gap: 64px;
}
.section-hero .hero-elements .hero-label {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
  letter-spacing: 0;
  color: #fff;
}

.gradient-btn {
  position: relative;
  border: none;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(180deg, #057fdb 0%, #03a9af 100%);
}

.gradient-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #168893 0%, #1963dc 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gradient-btn:hover::before {
  opacity: 1;
}

.gradient-btn span {
  position: relative;
  z-index: 1;
}

.outlined-btn {
  border: 2px solid #005274;
  color: #005274;
  background-color: transparent;
  margin-top: 64px;
  transition: all 0.4s;
}
.outlined-btn:hover {
  background-color: #005274;
  color: #fff;
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  opacity: 1;
  gap: 10px;
  padding: 16px 48px;
  border-radius: 75px;
  cursor: pointer;
}
.learn-btn:hover, .learn-btn:focus, .learn-btn:active, .learn-btn:visited {
  text-decoration: none;
}

.bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  transform-origin: right center;
  filter: brightness(0.8) contrast(1.1);
  transition: opacity 2s ease;
}

.bg::before {
  background-image: url("assets/img/hero-bg-2.png");
  opacity: 1;
  animation: bgMove 20s ease-in-out infinite alternate;
}

@keyframes bgMove {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.08) translateY(-15px);
  }
}
@keyframes fade1 {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade2 {
  0%, 45% {
    opacity: 0;
  }
  50%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.section-about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 152px;
  position: relative;
  overflow: hidden;
}
.section-about .about-left-elements {
  display: flex;
  flex-direction: column;
  max-width: 844px;
  align-items: flex-start;
}
.section-about .about-left-elements .about-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #04a0b8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-about .about-left-elements .about-title-mark span {
  display: block;
  background-color: #04a0b8;
  width: 24px;
  height: 1.2px;
}
.section-about .about-left-elements .about-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #005274;
  margin-top: 20px;
}
.section-about .about-left-elements .about-text {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #002b3d;
  margin-top: 32px;
}
.section-about .about-right-image {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
  perspective: 900px;
}
.section-about .about-right-image .about-img-bg,
.section-about .about-right-image .about-img-struct {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.section-about .about-right-image .about-img-bg {
  z-index: 0;
}
.section-about .about-right-image .about-img-struct {
  z-index: 1;
  animation: structMove 15s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes structMove {
  0% {
    transform: translate(0, 0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  20% {
    transform: translate(2px, -1px) rotateX(8deg) rotateY(-2deg) rotateZ(2deg);
  }
  40% {
    transform: translate(-1px, 2px) rotateX(-2deg) rotateY(1deg) rotateZ(-2deg);
  }
  60% {
    transform: translate(1px, 1px) rotateX(6deg) rotateY(2deg) rotateZ(3deg);
  }
  80% {
    transform: translate(-2px, -1px) rotateX(-9deg) rotateY(-2deg) rotateZ(1deg);
  }
  100% {
    transform: translate(0, 0) rotateX(0deg) rotateY(-2deg) rotateZ(-3deg);
  }
}
@keyframes peerBgBreathe {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.section-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 152px;
  overflow: hidden;
  position: relative;
}
.section-benefits::after {
  content: "";
  position: absolute;
  background-size: contain;
  background: var(--benefits-after-bg, url("assets/img/big-struct.png")) no-repeat center center;
  z-index: -2;
  rotate: -50deg;
  scale: 1.1;
  filter: brightness(0.6) blur(3px) contrast(800%);
  inset: -1000px;
  animation: structMove 20s ease-in-out infinite alternate;
}
.section-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(47deg, #00060e -1.8%, #002b54 49.35%, #005a70 102.04%);
  opacity: 0.85;
  z-index: -1;
}
.section-benefits .container {
  flex-direction: column;
  align-items: center;
}

.benefits-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.benefits-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #39e6bd;
  display: flex;
  align-items: center;
  gap: 4px;
}
.benefits-title-mark span {
  display: block;
  background-color: #39e6bd;
  width: 24px;
  height: 1.2px;
}

.benefits-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fcf8fb;
  text-align: center;
  padding-top: 20px;
}

.benefits-container {
  display: flex;
  padding-top: 104px;
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-img {
  width: 490px;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background-repeat: no-repeat;
}

.benefit-description {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0;
  text-align: center;
  color: #fcf8fb;
  margin-top: 32px;
  max-width: 442px;
}

.benefit-description-sub {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fcf8fb;
  max-width: 442px;
  margin-top: 20px;
}

.section-benefits .gradient-btn {
  margin-top: 48px;
}

.section-news {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 152px;
  position: relative;
  overflow: hidden;
}
.section-news .container {
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.news-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #04a0b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-title-mark span {
  display: block;
  background-color: #04a0b8;
  width: 24px;
  height: 1.2px;
}

.news-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0;
  color: #005274;
  text-align: center;
}

.buttons-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: flex-end;
}
.buttons-container .buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}
.buttons-container .buttons .slide-btn {
  aspect-ratio: 1;
  width: 32px;
  border-radius: 100%;
}
.buttons-container .buttons .prev-btn,
.buttons-container .buttons .next-btn {
  transition: 1s;
}
.buttons-container .buttons .prev-btn:hover,
.buttons-container .buttons .next-btn:hover {
  background: rgba(4, 160, 184, 0.12);
}
.buttons-container .buttons .prev-btn {
  rotate: 180deg;
}

.news-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 28px;
}
.news-slider .owl-stage {
  overflow: visible;
  margin: 10px 0;
}

.news-carousel.owl-carousel .owl-dots {
  display: none;
}

.news-item {
  position: relative;
  border-radius: 24px;
  max-width: 748px;
  padding: 40px 32px;
  background: linear-gradient(135.22deg, rgba(116, 226, 191, 0.1) 0%, rgba(0, 142, 201, 0.1) 285.55%);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1019607843);
}

.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(139.4deg, #74e2bf, #005274, #008ec9);
  background-size: 200% 200%;
  animation: borderFlow 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.news-item__title {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0;
  color: #005274;
  margin: 0;
}

.news-item__date {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  color: #002b3d;
  margin-top: 8px;
}

.news-item__content {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  height: 108px;
  color: #002b3d;
  margin-top: 24px;
  overflow: hidden;
  white-space: wrap;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  flex: 1;
}

.news-item__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  height: 88px;
  gap: 16px;
  margin-top: 8px;
}

.news-item__link {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #04a0b8;
  cursor: pointer;
  text-underline-offset: 3px;
}
.news-item__link:hover {
  color: #005274;
}

.news-item__logo-container {
  max-width: 234px;
  display: flex;
  height: 100%;
  align-items: flex-end;
}
.news-item__logo-container .news-item__logo {
  width: auto;
  object-fit: contain;
  object-position: bottom;
}

.news-btn {
  margin-top: 80px;
  border: 2px solid #005274;
  color: #005274;
  background-color: #fff;
  transition: background-color 0.35s, color 0.35s;
}
.news-btn:hover {
  background-color: #005274;
  color: #fff;
}

.section-science-res {
  padding-top: 104px;
  padding-bottom: 152px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-science-res::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: url("assets/img/science-bg.png") no-repeat center center;
  background-size: cover;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
}
.section-science-res .container {
  flex-direction: column;
}

.science-res-header {
  display: flex;
  padding-bottom: 80px;
  gap: 140px;
}
.science-res-header .science-res-header__left-side {
  display: flex;
  flex-direction: column;
}
.science-res-header .science-res-header__left-side .science-res-header__title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
}
.science-res-header .science-res-header__left-side .science-res-header__read-more {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #39e6bd;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: auto;
  padding-bottom: 48px;
  padding-top: 16px;
}
.science-res-header .science-res-header__right-side {
  padding: 0 36px;
}
.science-res-info-table-wrapper {
  padding-bottom: 48px;
}
.science-res-info-table-wrapper > svg, .science-res-info-table-wrapper > img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1023px) {
  .science-res-info-table-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .science-res-info-table-wrapper > svg, .science-res-info-table-wrapper > img {
    width: 50%;
    margin: auto;
  }
}
.science-res-chart-caption {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  max-width: 50%;
}

.science-res-glossary {
  padding-top: 48px;
  padding-bottom: 48px;
}
.science-res-glossary__heading {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  color: #39e6bd;
  padding-top: 16px;
  padding-bottom: 24px;
}
.science-res-glossary__list {
  margin: 0;
}
.science-res-glossary__row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  gap: 24px 32px;
  margin-top: 16px;
}
.science-res-glossary__row:first-child {
  margin-top: 0;
}
.science-res-glossary__term {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #39e6bd;
  margin: 0;
}
.science-res-glossary__explanation {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
}

.science-res-bottom .science-res-results {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  color: #39e6bd;
  padding-top: 16px;
  padding-bottom: 24px;
}

.science-res-info__list li {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fff;
  margin-top: 16px;
}
.science-res-info__list li:first-child {
  margin-top: 0;
}
.science-res-info__list li strong {
  font-weight: 800;
  color: #39e6bd;
}
.science-res-info__list li span {
  font-style: italic;
}

.news-page .section-news {
  padding-top: 104px;
  padding-bottom: 152px;
  background: url("assets/img/news-list-bg.png") no-repeat center center;
  background-size: cover;
}
.news-page .section-news .container {
  gap: 64px;
}
.news-page .section-news .news-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.news-page .section-news .news-year {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
}
.news-page .section-news .news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.news-page .section-news .news-list .news-item {
  background: linear-gradient(0deg, #e9f8ff, #edfffa), linear-gradient(135.22deg, rgba(116, 226, 191, 0.1) 0%, rgba(0, 142, 201, 0.1) 285.55%);
}
@media (max-width: 767px) {
  .news-page .section-news .news-list {
    grid-template-columns: 1fr;
  }
}

.section-peer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 298px;
  padding-bottom: 298px;
  overflow: hidden;
  position: relative;
  background-color: #050a10;
}
.section-peer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/img/peer-bg.png") no-repeat center center;
  background-size: cover;
  transform-origin: center center;
  animation: peerBgBreathe 12s ease-in-out infinite alternate;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .section-peer::before {
    animation: none;
  }
}
.section-peer .container {
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: flex-start;
}
.section-peer .learn-btn {
  margin-top: 64px;
}

.peer-particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.peer-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #39e6bd;
  display: flex;
  align-items: center;
  gap: 8px;
}
.peer-title-mark span {
  display: block;
  background-color: #39e6bd;
  width: 24px;
  height: 1.2px;
}

.peer-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0;
  color: #fcf8fb;
  margin-top: 20px;
}

.peer-description {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fcf8fb;
  margin-top: 32px;
  max-width: 666px;
}

.section-applications {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 152px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background-color: #fff;
}
.section-applications .container {
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.applications-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #04a0b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.applications-title-mark span {
  display: block;
  background-color: #04a0b8;
  width: 24px;
  height: 1.2px;
}

.applications-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0;
  color: #005274;
  text-align: center;
}

.applications-buttons {
  margin-top: 28px;
}

.applications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px 48px;
  width: 100%;
  max-width: 1200px;
  margin-top: 80px;
}
.applications-list.is-slider {
  display: block;
  margin-top: 28px;
}
.applications-list.is-slider .owl-stage {
  overflow: visible;
  margin: 10px 0;
}

.applications-carousel.owl-carousel .owl-dots {
  display: none;
}
.applications-carousel.owl-carousel:not(.owl-loaded) {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 48px;
  opacity: 1;
}

.application-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  width: 140px;
  max-width: 100%;
}

.application-img__wrapper {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
  background: #fcf8fb;
  flex-shrink: 0;
}

.application-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.application-label {
  margin-top: 20px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #005274;
}

.section-products {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 152px;
  overflow: hidden;
  position: relative;
}
.section-products .container {
  flex-direction: column;
  align-items: center;
}

.products-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #04a0b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.products-title-mark span {
  display: block;
  background-color: #04a0b8;
  width: 24px;
  height: 1.2px;
}

.products-title {
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 78px;
  letter-spacing: 0;
  color: #005274;
  text-align: center;
  margin-top: 20px;
}

.products-list {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}

.products-page .section-products {
  padding-top: 104px;
  padding-bottom: 152px;
  background: url("assets/img/products-bg.png") no-repeat top center;
  background-size: cover;
}
.products-page .section-products .learn-btn, .products-page .section-products .products-title-mark, .products-page .section-products .products-title {
  display: none;
}
.products-page .product-link {
  color: #39e6bd;
}
.products-page .product-name, .products-page .product-text {
  color: #fff;
}
.products-page .product-img__wrapper {
  background: url("assets/img/product-bg-dark.png") no-repeat center center;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.product-img__wrapper {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 529px;
  background: url("assets/img/product-item-bg.png") no-repeat center center;
  background-size: cover !important;
}

.product-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 50%;
  max-height: 50%;
  position: relative;
  filter: drop-shadow(18px 18px 14px rgba(0, 0, 0, 0.2));
}

.product-name {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #2c363f;
  margin-top: 48px;
}

.product-text {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: #005274;
}

.product-link {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 130%;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #04a0b8;
  text-align: right;
}

.section-why {
  padding-top: 104px;
  padding-bottom: 152px;
  position: relative;
  isolation: isolate;
  z-index: 0;
}
.section-why .container {
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.section-why .why-bg {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.section-why .why-bg:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
}
.section-why .why-bg:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(4px);
}

.why-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #39e6bd;
  display: flex;
  align-items: center;
  gap: 4px;
}
.why-title-mark span {
  display: block;
  background-color: #39e6bd;
  width: 24px;
  height: 1.2px;
}

.why-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fcf8fb;
  text-align: start;
  padding-top: 20px;
}

.why-description {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fcf8fb;
  padding-top: 24px;
  padding-bottom: 40px;
  max-width: 50%;
}

.why-main-card {
  width: 100%;
  gap: 40px;
  border-radius: 32px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6392156863);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-main-card__left-side {
  border-left: 2px solid #39e6bd;
  padding-left: 32px;
  min-width: 0;
}
.why-main-card__left-side .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.why-main-card__left-side .wrapper h3 {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.why-main-card__left-side .wrapper p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0;
  font-style: italic;
  overflow-wrap: break-word;
  word-break: break-word;
}

.why-main-card__right-side {
  min-width: 0;
}
.why-main-card__right-side ul {
  list-style: none;
  padding: 0;
}
.why-main-card__right-side ul li {
  position: relative;
  padding-left: 22px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.why-main-card__right-side ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #39e6bd;
  font-size: 12px;
}
.why-main-card__right-side ul li strong {
  font-weight: 600;
}
.why-main-card__right-side ul li span {
  font-weight: 500;
  color: #39e6bd;
}

.center {
  padding-top: 64px;
  padding-bottom: 32px;
}
.center .why-title {
  text-align: center;
  font-size: 48px;
}

.why-second-cards {
  display: flex;
  gap: 40px;
}

.regular-card {
  border-radius: 24px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6392156863);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  border: 1px solid transparent;
}
.regular-card h4 {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
}
.regular-card p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fff;
}

.trpti-card {
  border-radius: 24px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6392156863);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  border: 1px solid #39e6bd;
}
.trpti-card h4 {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #39e6bd;
}
.trpti-card p {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #fff;
}

.section-regular {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 152px;
  position: relative;
  overflow: hidden;
}
.section-regular .regular-left-elements {
  display: flex;
  flex-direction: column;
  max-width: 844px;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
.section-regular .regular-left-elements .regular-title-mark {
  font-family: "JetBrains Mono", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #04a0b8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-regular .regular-left-elements .regular-title-mark span {
  display: block;
  background-color: #04a0b8;
  width: 24px;
  height: 1.2px;
}
.section-regular .regular-left-elements .regular-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  color: #005274;
  margin-top: 20px;
}
.section-regular .regular-left-elements .regular-text {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0;
  color: #002b3d;
  margin-top: 32px;
}
.section-regular .regular-right-image {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  margin-left: auto;
  margin-right: auto;
  perspective: 900px;
}
.section-regular .regular-right-image .regular-img-bg,
.section-regular .regular-right-image .regular-img-struct {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.section-regular .regular-right-image .regular-img-bg {
  z-index: 0;
}
.section-regular .regular-right-image .regular-img-struct {
  z-index: 1;
  animation: structMove 15s ease-in-out infinite alternate;
  transform-origin: center center;
}

.footer {
  background: linear-gradient(153.43deg, #0b0f15 3.32%, #10212f 134.34%, #122639 269.31%);
  padding-top: 104px;
}
.footer .container {
  flex-direction: column;
  align-items: center;
}

.footer-img {
  height: 190px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 107px;
  border-top: 1px solid #04a0b8;
  padding: 40px 0;
  margin-top: 45px;
}

.footer-nav__item {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0;
  color: #04a0b8;
  text-decoration: none;
  cursor: pointer;
}
.footer-nav__item:hover {
  color: #fcf8fb;
}

.footer-divider {
  background: #04a0b8;
  height: 1px;
  width: 773px;
}

.social-links {
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 104px;
}

.social-link {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  border-radius: 100%;
  text-decoration: none;
  aspect-ratio: 1;
  width: 64px;
}
.social-link img {
  transition: all 0.5s ease-in-out;
  border-radius: 100%;
}
.social-link:hover img {
  background-color: rgba(6, 39, 44, 0.8);
}

.footer-bottom {
  background: rgba(252, 248, 251, 0.1019607843);
  width: 100%;
}

.bottom-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fcf8fb;
}

.bottom-items__links {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.bottom-items__links a {
  color: #fcf8fb;
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 120px;
}
@media (max-width: 1512px) and (min-width: 1024px) {
  section[id] {
    scroll-margin-top: 92px;
  }
}
@media (max-width: 1023px) {
  section[id] {
    scroll-margin-top: 88px;
  }
}

@media (max-width: 1512px) and (min-width: 1024px) {
  :root {
    --header-height: 76px;
  }
  .container {
    max-width: min(1552px, 100vw * 1552px / 1920px);
  }
  .section-hero {
    padding-top: 152px;
    padding-bottom: 104px;
  }
  .section-peer {
    padding-top: 152px;
    padding-bottom: 152px;
  }
  .section-about,
  .section-benefits,
  .section-news,
  .section-products,
  .section-regular,
  .section-why,
  .section-science-res,
  .news-page .section-news,
  .products-page .section-products {
    padding-top: 72px;
    padding-bottom: 112px;
  }
  .logo {
    height: 46px;
  }
  .nav {
    gap: 48px;
  }
  .nav .nav-link {
    font-size: 18px;
    line-height: 28px;
  }
  .learn-btn {
    font-size: 18px;
    line-height: 36px;
    padding: 12px 32px;
  }
  .outlined-btn {
    margin-top: 48px;
  }
  .section-hero .hero-elements {
    gap: 48px;
  }
  .section-hero .hero-elements .hero-label {
    font-size: 42px;
  }
  .section-about .about-left-elements {
    max-width: 648px;
  }
  .section-about .about-left-elements .about-title {
    font-size: 48px;
  }
  .section-about .about-left-elements .about-text {
    font-size: 15px;
  }
  .section-about .about-right-image {
    max-width: 430px;
  }
  .section-regular .regular-left-elements {
    max-width: 648px;
  }
  .section-regular .regular-left-elements .regular-title {
    font-size: 48px;
  }
  .section-regular .regular-left-elements .regular-text {
    font-size: 15px;
  }
  .section-regular .regular-right-image {
    max-width: 430px;
  }
  .section-benefits .benefits-title {
    font-size: 48px;
  }
  .section-benefits .benefits-container {
    padding-top: 72px;
  }
  .section-benefits .benefit-img {
    width: 380px;
  }
  .section-benefits .benefit-description {
    font-size: 30px;
    line-height: 40px;
  }
  .section-benefits .benefit-description-sub {
    font-size: 16px;
  }
  .section-benefits .gradient-btn {
    margin-top: 32px;
  }
  .section-news .news-title {
    font-size: 48px;
    line-height: 60px;
  }
  .section-applications .applications-title {
    font-size: 48px;
    line-height: 60px;
  }
  .buttons-container,
  .news-slider {
    max-width: 920px;
  }
  .news-item {
    max-width: 575px;
    padding: 28px 24px;
  }
  .news-item__title {
    font-size: 24px;
    line-height: 36px;
  }
  .news-item__date,
  .news-item__content,
  .news-item__link {
    font-size: 18px;
    line-height: 28px;
  }
  .news-btn {
    margin-top: 48px;
  }
  .science-res-header {
    padding-bottom: 48px;
    gap: 72px;
  }
  .science-res-header .science-res-header__title {
    font-size: 48px;
  }
  .science-res-header .science-res-header__read-more {
    font-size: 24px;
    padding-bottom: 40px;
  }
  .science-res-glossary__heading {
    font-size: 24px;
  }
  .science-res-chart-caption {
    font-size: 15px;
  }
  .news-page .section-news .container {
    gap: 48px;
  }
  .news-page .section-news .news-year {
    font-size: 48px;
  }
  .section-peer .learn-btn {
    margin-top: 48px;
  }
  .section-peer .peer-title {
    font-size: 48px;
    line-height: 60px;
  }
  .section-peer .peer-description {
    max-width: 510px;
    font-size: 15px;
  }
  .section-products .products-title {
    font-size: 48px;
    line-height: 60px;
  }
  .products-list {
    padding-top: 48px;
  }
  .product-img__wrapper {
    width: 405px;
  }
  .product-name {
    font-size: 22px;
    margin-top: 32px;
  }
  .product-text {
    font-size: 15px;
  }
  .product-link {
    font-size: 22px;
  }
  .section-why .why-title {
    font-size: 48px;
  }
  .section-why .why-description {
    font-size: 15px;
    padding-top: 20px;
    padding-bottom: 32px;
  }
  .section-why .why-main-card {
    padding: 28px;
    gap: 28px;
  }
  .section-why .why-main-card .wrapper h3 {
    font-size: 24px;
  }
  .section-why .why-main-card .wrapper p {
    font-size: 16px;
  }
  .section-why .center .why-title {
    font-size: 36px;
  }
  .section-why .why-main-card__right-side ul li {
    font-size: 15px;
  }
  .why-second-cards {
    gap: 28px;
  }
  .regular-card,
  .trpti-card {
    padding: 28px;
  }
  .regular-card h4,
  .regular-card p,
  .trpti-card h4,
  .trpti-card p {
    font-size: 15px;
  }
  .footer {
    padding-top: 72px;
  }
  .footer-img {
    height: 145px;
  }
  .footer-nav {
    gap: 64px;
    padding: 28px 0;
    margin-top: 32px;
  }
  .footer-nav__item {
    font-size: 24px;
    line-height: 36px;
  }
  .social-links {
    gap: 64px;
    padding: 32px 0;
  }
  .social-link {
    width: 48px;
  }
  .bottom-items {
    font-size: 15px;
    line-height: 28px;
    padding: 20px 0;
  }
  .about-title-mark,
  .applications-title-mark,
  .regular-title-mark,
  .benefits-title-mark,
  .news-title-mark,
  .peer-title-mark,
  .products-title-mark,
  .why-title-mark {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {
  .section-hero {
    padding-top: 112px;
    padding-bottom: 72px;
  }
  .section-peer {
    padding-top: 112px;
    padding-bottom: 112px;
  }
  .section-about,
  .section-benefits,
  .section-news,
  .section-products,
  .section-regular,
  .section-why,
  .section-science-res,
  .news-page .section-news,
  .products-page .section-products {
    padding-top: 64px;
    padding-bottom: 80px;
  }
  .learn-btn {
    font-size: clamp(18px, 2.8vw, 22px);
    line-height: 1.35;
    padding: 14px 36px;
  }
  .section-hero .hero-elements {
    gap: clamp(32px, 6vw, 48px);
  }
  .section-hero .hero-elements .hero-label {
    font-size: clamp(28px, 6vw, 44px);
  }
  .section-hero .hero-elements .hero-label br {
    display: none;
  }
  .bg::before,
  .bg::after {
    background-position: center center;
    background-size: cover;
    transform-origin: center center;
  }
  .section-about > .container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .section-about .about-left-elements {
    max-width: none;
  }
  .section-about .about-left-elements .about-title {
    font-size: clamp(36px, 7vw, 52px);
  }
  .section-about .about-left-elements .about-text {
    font-size: 18px;
  }
  .section-about .about-right-image {
    max-width: min(420px, 100%);
  }
  .section-regular > .container {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .section-regular .regular-left-elements {
    max-width: none;
  }
  .section-regular .regular-left-elements .regular-title {
    font-size: clamp(36px, 7vw, 52px);
  }
  .section-regular .regular-left-elements .regular-text {
    font-size: 18px;
  }
  .section-regular .regular-right-image {
    max-width: min(420px, 100%);
  }
  .section-benefits::after {
    inset: -400px;
  }
  .section-benefits .benefits-title {
    font-size: clamp(36px, 7vw, 52px);
  }
  .section-benefits .benefits-container {
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
    gap: 48px;
    width: 100%;
  }
  .section-benefits .benefit-img {
    width: min(100%, 420px);
  }
  .section-benefits .benefit-description {
    font-size: clamp(22px, 4.5vw, 32px);
    line-height: 1.35;
  }
  .section-news .news-title {
    font-size: clamp(36px, 7vw, 52px);
    line-height: 1.15;
  }
  .section-applications .applications-title {
    font-size: clamp(36px, 7vw, 52px);
    line-height: 1.15;
  }
  .news-item {
    padding: 28px 22px;
    max-width: none;
  }
  .news-item__title {
    font-size: clamp(22px, 4vw, 28px);
    line-height: 1.35;
  }
  .news-item__date,
  .news-item__content,
  .news-item__link {
    font-size: 18px;
    line-height: 1.45;
  }
  .news-item__content {
    height: auto;
    min-height: 0;
    -webkit-line-clamp: 5;
  }
  .news-item__footer {
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    align-items: center;
  }
  .news-btn {
    margin-top: 48px;
  }
  .section-peer::before {
    background-position: center top;
  }
  .section-peer .peer-title {
    font-size: clamp(36px, 7vw, 52px);
    line-height: 1.15;
  }
  .section-peer .peer-description {
    font-size: 18px;
  }
  .section-products .products-title {
    font-size: clamp(36px, 7vw, 52px);
    line-height: 1.15;
  }
  .section-why .why-title {
    font-size: clamp(36px, 7vw, 52px);
    line-height: 1.15;
  }
  .section-why .why-description {
    max-width: none;
    font-size: 18px;
    padding-bottom: 32px;
  }
  .section-why .why-main-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
  .section-why .why-main-card__left-side {
    padding-left: 24px;
  }
  .section-why .why-main-card__left-side .wrapper h3 {
    font-size: clamp(24px, 4.5vw, 32px);
  }
  .section-why .center {
    padding-top: 48px;
    padding-bottom: 24px;
  }
  .section-why .center .why-title {
    font-size: clamp(28px, 5.5vw, 40px);
  }
  .section-why .why-second-cards {
    flex-direction: column;
    gap: 24px;
  }
  .section-why .regular-card,
  .section-why .trpti-card {
    padding: 32px;
  }
  .section-why .regular-card h4,
  .section-why .regular-card p,
  .section-why .trpti-card h4,
  .section-why .trpti-card p {
    font-size: 18px;
  }
  .products-list {
    padding-top: 48px;
    flex-direction: column;
    gap: 64px;
  }
  .product-img__wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    background-size: contain !important;
  }
  .footer {
    padding-top: 64px;
  }
  .footer-img {
    height: auto;
    max-height: 140px;
    width: auto;
    max-width: 100%;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 20px 32px;
    padding: 28px 0;
  }
  .footer-nav__item {
    font-size: clamp(18px, 3.5vw, 26px);
    line-height: 1.35;
  }
  .footer-divider {
    width: min(100%, 773px);
    max-width: 100%;
  }
  .social-links {
    flex-wrap: wrap;
    gap: 20px;
    padding: 32px 0;
  }
}
@media (max-width: 767px) {
  .section-hero,
  .section-about,
  .section-benefits,
  .section-news,
  .section-peer,
  .section-products,
  .section-regular,
  .section-why,
  .section-science-res,
  .news-page .section-news,
  .products-page .section-products {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .applications-buttons {
    display: none;
  }
  .buttons-container {
    justify-content: center;
    position: absolute;
    bottom: 152px;
  }
  .bottom-items {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
  }
  .outlined-btn {
    margin-top: 40px;
    width: 100%;
    align-self: center;
  }
  .section-about .outlined-btn {
    align-self: stretch;
    max-width: none;
  }
  .section-regular .outlined-btn {
    align-self: stretch;
    max-width: none;
  }
  .news-btn {
    width: 100%;
  }
  .section-benefits .gradient-btn,
  .section-peer .gradient-btn {
    width: 100%;
  }
  .section-hero .gradient-btn {
    width: 100%;
  }
  .section-why .why-title {
    font-size: clamp(28px, 8vw, 36px);
    padding-top: 16px;
  }
  .section-why .why-description {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .section-why .why-main-card {
    padding: 24px 20px;
    gap: 24px;
    border-radius: 24px;
  }
  .section-why .why-main-card__left-side {
    padding-left: 20px;
  }
  .section-why .why-main-card__left-side .wrapper h3 {
    font-size: clamp(20px, 5.5vw, 24px);
  }
  .section-why .why-main-card__left-side .wrapper p {
    font-size: 15px;
  }
  .section-why .why-main-card__right-side ul li {
    font-size: 16px;
    padding-left: 18px;
  }
  .section-why .center {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .section-why .center .why-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .section-why .why-second-cards {
    gap: 16px;
  }
  .section-why .regular-card,
  .section-why .trpti-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .section-why .regular-card h4,
  .section-why .regular-card p,
  .section-why .trpti-card h4,
  .section-why .trpti-card p {
    font-size: 16px;
  }
  .news-item__logo-container {
    height: auto;
    max-height: 100px;
  }
  .news-item__logo-container .news-item__logo {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100px;
  }
  .social-link {
    width: initial;
  }
  .social-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .science-res-header .science-res-header__right-side img {
    width: 100%;
  }
  .science-res-glossary__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .science-res-glossary__heading {
    font-size: clamp(22px, 5vw, 28px);
  }
  .science-res-chart-caption {
    max-width: none;
    font-size: 16px;
  }
}
.section-policy {
  padding: clamp(48px, 8vw, 120px) 0;
}
.section-policy .container {
  flex-direction: column;
}

.policy-article {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  color: #002b3d;
  font-family: Montserrat, sans-serif;
}

.policy-header {
  margin-bottom: 32px;
}

.policy-title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: 0;
  color: #005274;
}

.policy-content {
  font-size: 18px;
  line-height: 1.7;
}
.policy-content h2 {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  color: #005274;
  margin: 40px 0 16px;
}
.policy-content h3 {
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.35;
  color: #005274;
  margin: 32px 0 12px;
}
.policy-content p {
  margin-bottom: 16px;
}
.policy-content ul,
.policy-content ol {
  margin: 0 0 16px 24px;
}
.policy-content ul li,
.policy-content ol li {
  margin-bottom: 8px;
}
.policy-content ul li {
  list-style: disc;
}
.policy-content ol li {
  list-style: decimal;
}
.policy-content a {
  color: #04a0b8;
  text-decoration: underline;
}
.policy-content a:hover {
  text-decoration: none;
}
.policy-content strong {
  font-weight: 700;
}
.policy-content em {
  font-style: italic;
}
.policy-content blockquote {
  border-left: 4px solid #04a0b8;
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-style: italic;
  color: #005274;
}
.policy-content img {
  max-width: 100%;
  height: auto;
  margin: 16px 0;
}

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