.network {
  width: 100%;
  min-width: var(--min-width);
  height: 100dvh;
  padding: 0 clamp(1.6rem, 3vw, 4rem);
  background-color: var(--background-color);
  color: var(--whtie);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.network-container {
  width: 100%;
  height: 100%;
  padding: 14rem 0 7rem;
}
.global-title {
  position: relative;
  z-index: 3;
}
.video-wrapper {
  width: 100%;
  height: 100dvh;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-wrapper::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 20%;
  height: 100dvh;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(0.1rem);
}
.video-wrapper::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 20%;
  height: 100dvh;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  backdrop-filter: blur(0.1rem);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.network-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.export-desc {
  width: 100%;
  font-weight: 200;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.9rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8.5rem;
}
.logo-science,
.is,
.export-desc p {
  font-family: "Inter", sans-serif;
  font-style: normal;
}

.logo-alphabet,
.logo-science {
  font-weight: 600;
  font-size: 3.6rem;
  line-height: 4.4rem;
  color: var(--white);
}
.export-desc p,
.is {
  font-weight: 200;
  font-size: clamp(1.3rem, 1.6vw, 2rem);
  line-height: 2.5rem;
}

.gap {
  padding-bottom: 1.9rem;
}
.export-country {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  font-size: clamp(1rem, 1.5vw, 1.6rem);
  background: linear-gradient(
    180deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0) 119.23%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: right;
}

@media (max-width: 768px) {
  .network {
    background: url("/home_assets/img/ir/global-mobile.png") no-repeat
        bottom/cover,
      var(--background-color);
    justify-content: flex-start;
  }

  .network-container {
    padding-top: 0;
  }
  .network-container .video-wrapper {
    display: none;
  }
  .global-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .network-content {
    flex-direction: column;
    justify-content: space-between;
    gap: 9.5rem;
    height: auto;
  }
  .largePRP {
    top: 0;
  }
  .largePRP span {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(1.4rem, 1vw, 1.6rem);
    line-height: 1.9rem;
    color: var(--sub-font-color);
  }
  .export-desc {
    width: 100%;
    color: var(--sub-font-color);
    padding-top: clamp(5rem, 10vh, 11.4rem);
    /* gap: 1.9rem; */
    font-weight: 200;
    line-height: 1.6rem;
    padding-bottom: 0;
  }
  .gap {
    padding-bottom: 1rem;
  }
  .logo-alphabet,
  .logo-science,
  .is {
    position: static;
  }
  .logo-alphabet {
    font-family: "Inter", sans-serif;
    -webkit-text-stroke: 0;
  }
  .export-country {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .export-country li {
    padding-left: 0.5rem;
  }
}
