main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: 'KmrApparat', sans-serif;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 570px;
  overflow: hidden;
}

#hero > div {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#hero > div.no-transition {
  transition: none;
}

#hero #media-0 {
  left: 0;
}

#hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .text {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 80px;
  color: rgb(26, 26, 26);
}
#hero > div:has(a.dark) .text {
  color: #fff;
}
@media (min-width: 1440px) {
  #hero .text {
    width: 1400px;
    left: 50%;
    right: auto;
    bottom: 120px;
    transform: translateX(-50%);
  }
}

#hero .text .progress {
  width: 200px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 809px) {
  #hero .text .progress {
    width: 250px;
  }
}
@media (min-width: 1440px) {
  #hero .text .progress {
    width: 300px;
  }
}

#hero .text .progress .current,
#hero .text .progress .next {
  font-size: 11px;
  font-weight: 600;
  min-width: 30px;
}

#hero .text .progress .track {
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: rgba(26, 26, 26, 0.2);
  border-radius: 2px;
  overflow: hidden;
  line-height: 3px;
}
#hero > div:has(a.dark) .text .progress .track {
  background-color: rgba(255, 255, 255, 0.3);
}

#hero .text .progress .bar {
  display: inline-block;
  width: 0;
  height: 100%;
  background-color: rgb(37, 99, 235);
  transition: width 0.1s ease-out;
  border-radius: 2px;
  vertical-align: top;
}

#hero .text .progress .next {
  opacity: 0.7;
}

#hero .text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 130%;
  letter-spacing: -1.6px;
}
@media (min-width: 809px) {
  #hero .text h1 {
    margin-top: 24px;
    font-size: 55px;
  }
}
@media (min-width: 1440px) {
  #hero .text h1 {
    font-size: 64px;
  }
}

#hero .text p {
  display: none;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 32px;
  opacity: 0.8;
  font-weight: 400;
}
@media (min-width: 809px) {
  #hero .text p {
    display: block;
    font-size: 17px;
  }
}
@media (min-width: 1440px) {
  #hero .text p {
    font-size: 20px;
  }
}

#hero .text a {
  padding: 9px 24px;
  font-size: 16px;
}

.our-product h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  word-break: keep-all;
}
@media (min-width: 809px) {
  .our-product h2 {
    font-size: 40px;
  }
}

.our-product a {
  display: block;
  transition: background-color 0.18s ease-in-out;;
}
.our-product a:hover {
  background-color: rgb(241, 242, 244);
}

.our-product a .content-wrap {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 809px) {
  .our-product a .content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.our-product .text-group {
  color: var(--text-primary);
}
@media (min-width: 809px) {
  .our-product .text-group {
    width: 30%;
  }
}

.our-product h3 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
}
@media (min-width: 809px) {
  .our-product h3 {
    font-size: 48px;
  }
}

.our-product h3 img {
  height: 40px;
}
@media (min-width: 809px) {
  .our-product h3 img {
    height: 55px;
  }
}

.our-product .sub-title {
  margin: 16px 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -1.236px;
}
@media (min-width: 809px) {
  .our-product .sub-title {
    font-size: 28px;
  }
}

.our-product .sub-title b {
  font-weight: 600;
  background: linear-gradient(90deg, #15BEFC 0%, #5736FB 49.04%, #FF7F1D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.our-product .drawx .sub-title b {
  background-image: linear-gradient(90deg, #AF73E3 0%, #676DFF 49.04%, #9DC2FF 100%);
}

.our-product .text {
  margin: 0 0 32px;
  font-size: 16px;
  color: var(--text-secondary);
}
@media (min-width: 809px) {
  .our-product .text {
    margin-bottom: 0;
    font-size: 20px;
  }
}

.our-product .media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 832 / 505;
  border-radius: 21px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 809px) {
  .our-product .media {
    width: 60%;
    border-radius: 45px;
  }
}

.our-product .media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-product .media img {
  position: relative;
  border-radius: 8px;
  width: 82%;
  transition: width 0.4s ease-in-out;
}
.our-product a:hover .media img {
  width: 85%;
}
@media (min-width: 809px) {
  .our-product .media img {
    border-radius: 17px;
  }
}

#industry {
  margin: 100px 0 0;
}
@media (min-width: 809px) {
  #industry {
    margin-top: 160px;
  }
}

#industry .content-wrap {
  padding-bottom: 160px;
}

#industry h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  word-break: keep-all;
}
@media (min-width: 809px) {
  #industry h2 {
    font-size: 40px;
  }
}

#industry ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  overflow: auto;
}
@media (min-width: 809px) {
  #industry ul {
    margin-top: 64xpx;
  }
}

#industry a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  max-width: 358px;
  width: 80vw;
  padding: 20px 37px;
  overflow: hidden;
  border-radius: 24px;
}

#industry .area,
#industry h3 {
  position: relative;
  z-index: 1;
}
#industry .area {
  color: #fff;
  opacity: 0.7;
}
#industry h3 {
  color: #fff;
  font-size: 24px;
  margin: 0;
}

#industry img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: height 0.18s ease-in-out;
}
#industry a:hover img,
#industry a:focus img {
  height: 110%;
}
#industry a:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  content: " ";
  background: linear-gradient(rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}

#main-closing {
  position: relative;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  height: 560px;
}

#main-closing.side-video {
  height: auto;
}
@media (min-width: 650px) {
  #main-closing.side-video {
    height: 437px;
  }
}

#main-closing .content-wrap {
  height: auto;
  display: flex;
  align-items: start;
  flex-direction: column;
}
@media (min-width: 650px) {
  #main-closing .content-wrap {
    height: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

#main-closing .text-group {
  position: relative;
  z-index: 1;
}

#main-closing h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}
@media (min-width: 809px) {
  #main-closing h2 {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  #main-closing h2 {
    font-size: 52px;
  }
}

#main-closing p {
  margin: 25px 0 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.7;
}
@media (min-width: 809px) {
  #main-closing p {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  #main-closing p {
    font-size: 20px;
  }
}

#main-closing video {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  object-position: 50% 50%;
  margin-top: 24px;
  filter: contrast(1.46);
}
@media (min-width: 650px) {
  #main-closing video {
    margin-top: 0;
    width: 50%;
    max-height: 400px;
  }
}
