* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "Inter Tight", "Inter", "Onest", "Ubuntu";
}

header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.header__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 120px;
  border-bottom: 1px solid #f0f0f0;
}
.ht__links {
  display: flex;
  gap: 30px;
}
.ht__links a {
  font-family: "Ubuntu";
  color: #656565;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}
.ht__links a:hover {
  color: #0b7cef;
}
.ht__contacts {
  display: flex;
  gap: 25px;
}
.htc__number {
  font-family: "Ubuntu";
  display: flex;
  gap: 10px;
  align-items: center;
  color: #656565;
  transition: 0.3s ease-in-out;
  font-weight: 400;
}
.htc__number svg {
  height: 20px;
  width: 20px;
}
/* .htc__number svg g path {
} */
.htc__number:hover {
  color: #0b7cef;
}
.htc__number__active {
  color: #0b7cef;
}

.header__main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 120px;
  align-items: center;
}
.hm__catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.hm__mobile {
  display: flex;
  gap: 10px;
}
.hm__catalog .logo__img {
  height: 45px;
  margin-right: 40px;
}
.hmc__btn {
  height: 50px;
  padding: 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background: #0b7cef;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid #0b7cef;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.hmc__btn:hover {
  background: #0b72d8;
}
.hmc__btn svg {
  width: 18px;
  height: 18px;
}

.hmc__inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hmci__input {
  height: 50px;
  width: 700px;
  border: 1px solid #f0f0f0;
  padding: 10px 20px;
  padding-right: 35px;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-family: "Ubuntu";
}
.hmci__input::placeholder {
  font-family: "Ubuntu";
  color: #d3d3d3;
}
.hmc__inputs svg {
  position: absolute;
  right: 15px;
  cursor: pointer;
}

.hm__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hmb__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  height: 50px;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
  color: #000;
}
.hmb__link img {
  width: 25px;
  height: 25px;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}
.hmb__link:hover {
  opacity: 1;
}
.hmb__link:hover img {
  opacity: 1;
}
.hm__catalog .bar__img {
  display: none;
}

.header__sticky {
  z-index: 999;
  position: fixed;
  top: -1500px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 50px 30px;
}
.header__sticky .icon {
  width: 100%;
  text-align: right;
  color: #0b72d8;
  font-size: 20px;
}
.hs__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  gap: 24px;
  font-weight: 600;
  color: #000;
  margin-top: 50px;
}

@media (max-width: 1600px) {
  .hmci__input {
    width: 600px;
  }
}
@media (max-width: 1475px) {
  .hmci__input {
    width: 500px;
  }
  .header__main {
    padding: 20px 80px;
  }
  .header__top {
    padding: 20px 80px;
  }
}
@media (max-width: 1300px) {
  .hmci__input {
    width: 400px;
  }
  .header__main {
    padding: 20px 60px;
  }
  .header__top {
    padding: 20px 60px;
  }
}
@media (max-width: 1150px) {
  .hmci__input {
    width: 300px;
    height: 35px;
  }
  .hmci__input::placeholder {
    font-size: 14px;
  }
  .hmc__inputs svg {
    height: 12px;
  }
  .header__main {
    padding: 20px 60px;
  }
  .header__top {
    padding: 20px 60px;
  }
  .hm__catalog .logo__img {
    margin-right: 20px;
  }
  .ht__links {
    gap: 20px;
  }
  .ht__links a {
    font-size: 14px;
  }
  .htc__number {
    font-size: 14px;
  }
  .htc__number svg {
    height: 15px;
    width: 15px;
  }
  .hmb__link {
    font-size: 14px;
  }
  .hmb__link img {
    width: 20px;
    height: 20px;
  }
  .hmc__btn {
    font-size: 14px;
    height: 35px;
  }
  .hmc__btn svg {
    width: 14px;
    height: 14px;
  }
  .hm__catalog .logo__img {
    height: 35px;
  }
  .hmb__link {
    height: 35px;
  }
}
@media (max-width: 1000px) {
  .header__main {
    padding: 15px 40px;
  }
  .header__top {
    padding: 15px 40px;
  }
  .hm__btns {
    gap: 10px;
  }
  .hmb__link {
    font-size: 12px;
  }
  .hmb__link img {
    width: 15px;
    height: 15px;
  }
  .hmc__btn {
    padding: 15px 10px;
  }
  .hm__catalog {
    gap: 10px;
  }
  .hmc__btn {
    font-size: 12px;
  }
  .ht__links a {
    font-size: 12px;
  }
  .htc__number {
    font-size: 12px;
  }
}
@media (max-width: 840px) {
  .hm__btns {
    display: none;
  }
  .hm__catalog {
    width: 100%;
    justify-content: flex-start;
  }
  .hmci__input {
    width: 400px;
  }
}
@media (max-width: 780px) {
  .hmci__input {
    width: 300px;
  }
  .ht__links a {
    font-size: 10px;
  }
  .htc__number {
    font-size: 10px;
  }
  .htc__number svg {
    height: 12px;
    width: 12px;
  }
  .ht__links {
    gap: 10px;
  }
  .header__main {
    padding: 10px 20px;
  }
  .header__top {
    padding: 10px 20px;
  }
}
@media (max-width: 650px) {
  .hm__mobile {
    width: 100%;
  }
  .header__top {
    display: none;
  }
  .header__main {
    padding-top: 30px;
  }
  .hm__catalog {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }
  .hm__catalog .bar__img {
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    height: 18px;
    width: 18px;
  }
  .header__sticky__active {
    top: 0;
  }
  .hmc__btn {
    width: 120px;
  }
  .hmc__inputs {
    width: calc(100% - 120px);
  }
  .hmci__input {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .hmc__btn {
    width: 80px;
  }
  .hmc__inputs {
    width: calc(100% - 80px);
  }
}

.container {
  padding: 20px;
  overflow-x: hidden;
}

.main {
  width: 100%;
  min-height: 80vh;
  padding: 85px 0px 60px 180px;
  background: #f4f4f4;
  border-radius: 20px;
  overflow: hidden;
  z-index: 10;
  margin-bottom: 150px;
  padding-bottom: 150px;
  position: relative;
}

/* CHAP — TEXT   |   O‘NG — VIDEO */
.main__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  /* overflow: hidden; */
}

.main__text {
  /* max-width: 500px; */
  display: flex;
  flex-direction: column;
  z-index: 98;
}
.mobile__main {
  display: flex;
  flex-direction: column;
}
.main__video {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  /* width: 1000px; video hajmini o‘zing belgilaysan */
  height: 600px;
  /* border-radius: 20px; */
  overflow: hidden;
}

.main__video video {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* ====== Sening eski style’laring o‘zgarmagan ====== */

.main__title {
  font-size: 64px;
  font-family: "Onest";
  font-weight: 500;
  line-height: 56px;
  margin-bottom: 120px;
}

.main__desc {
  font-family: "Inter";
  font-size: 20px;
  font-weight: 400;
  width: 380px;
  margin-bottom: 90px;
}

.main__raschitat {
  width: 430px;
  padding: 14px 20px;
  border-radius: 15px;
  background: linear-gradient(93.64deg, #0b7cef 0.35%, #0b53ef 99.65%);
  border: none;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  margin-bottom: 100px;
}

.main__raschitat:hover {
  background: linear-gradient(93.64deg, #0b6adf 0.35%, #0b3de7 99.65%);
  transform: translateY(-5px);
}

.mr__svg {
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mr__svg img {
  height: 14px;
}

.main__warning {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 600px;
  position: relative;
}
.main__warning img {
  position: absolute;
  left: -40px;
  top: 0;
}

.main__warning .mw__text {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(50%);
  font-family: "Inter";
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.main__scrolling {
  position: absolute;
  /* margin-top: 50px; */
  z-index: 98;
  bottom: 0;
  left: 0;
  width: 100%;
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid red; */
}
.ms__icon {
  transition: 0.3s ease-in-out;
  z-index: 98;
  padding: 10px;
  backdrop-filter: blur(3px);
  border-radius: 10px;
}
.ms__icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}

@media (max-width: 1350px) {
  .main {
    padding: 60px 0px 60px 100px;
    padding-bottom: 140px;
  }
}
@media (max-width: 1150px) {
  .main {
    padding: 40px 0px 40px 60px;
    padding-bottom: 120px;
  }
  .main__video {
    right: -300px;
    bottom: -100px;
    height: 550px;
  }
  .main__title {
    font-size: 56px;
  }
  .main__warning {
    backdrop-filter: blur(15px);
    border-radius: 20px;
  }
  .main__desc {
    margin-bottom: 40px;
  }
}
@media (max-width: 1000px) {
  .main {
    padding: 0px 0px 40px 20px;
    /* border: 1px solid red; */
    padding-bottom: 130px;
  }
  .main__title {
    font-size: 44px;
    line-height: 44px;
  }
  .main__desc {
    font-size: 18px;
  }
  .main__video {
    right: -200px;
    bottom: -40px;
    height: 400px;
  }
}
@media (max-width: 700px) {
  .main__scrolling {
    position: static;
  }
  .main__warning img {
    position: static;
  }
  .main__warning .mw__text {
    position: static;
    transform: none;
  }
  .main__warning {
    /* border: 1px solid red; */
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .main {
    background: #fff;
    padding: 0px;
    margin-bottom: 100px;
    /* padding-bottom: 190px; */
  }
  .main__text {
    height: 740px;
    justify-content: space-between;
  }
  .mobile__main {
    align-items: center;
    gap: 15px;
  }
  .mobile__main__reverse {
    flex-direction: column-reverse;
  }
  .main__title {
    text-align: center;
    font-size: 36px;
    line-height: 36px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .main__desc {
    font-size: 18px;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }
  .main__raschitat {
    margin-bottom: 0;
    width: 90%;
  }
  .main__warning {
    width: 90%;
    padding: 10px 10px;
  }
  .main__warning .mw__text {
    font-size: 18px;
  }
  .main__video {
    /* top: 00px; */
    left: -300px;
    /* right: 0px; */
    bottom: -20px;
    height: 780px;
  }
}
@media (max-width: 520px) {
  .main {
    margin-bottom: 50px;
  }
  .main__title {
    font-size: 24px;
    line-height: 24px;
  }
  .main__desc {
    font-size: 16px;
  }
  .main__warning .mw__text {
    font-size: 14px;
  }
  .main__warning img {
    height: 40px;
  }
  .main__raschitat {
    font-size: 16px;
  }
  .mr__svg {
    height: 20px;
    width: 20px;
  }
  .mr__svg img {
    height: 10px;
  }
  .main__video {
    top: 50px;
    left: -400px;
    right: 0px;
    bottom: -20px;
    height: 600px;
  }
  .main__text {
    height: 650px;
    justify-content: space-between;
  }
}

.section__title {
  background: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 30px;
  gap: 15px;
}
.st__title {
  font-size: 44px;
  font-family: "Inter Tight";
  font-weight: 500;
  text-align: center;
}
.st__desc {
  font-size: 16px;
  font-family: "Inter Tight";
  width: 900px;
  text-align: center;
}

.solutions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
  /* height: 600px; */
}
.solutions__card {
  width: 80%;
  background: #f5f5f5;
  border-radius: 25px;
  padding: 45px 55px;
  display: flex;
  flex-direction: column;

  /* position: absolute; 
  top: 0;
  left: 15%; 
  transition: transform 0.3s ease; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.solutions__card__last {
  margin-bottom: 150px;
}
.sc__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.sc__statuses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}
.scc__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
}
.scct__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scct__icon svg {
  width: 20px;
  height: 20px;
}
.scct__title {
  font-weight: 500;
  font-family: "Inter Tight";
  font-size: 28px;
}
.scct__desc {
  font-weight: 400;
  font-family: "Inter Tight";
  font-size: 18px;
  color: #00000099;
}
.scc__video {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scc__video video {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
.scs__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.scs__item svg {
  height: 30px;
  width: 30px;
}
.scs__text {
  color: #000000cc;
  font-weight: 300;
  width: 90%;
  font-family: "Inter Tight";
}

.roads {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  padding: 0 100px;
  padding-bottom: 50px;
}
.road__content {
  width: 100%;
  height: 400px;
  display: flex;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  background: #efefef;
  border-radius: 20px;
}
.road__content img {
  width: 100%;
}
.road__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.road__step {
  padding: 15px;
  width: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 20px;
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.road__step:hover {
  transition: 0.3s ease-in-out;
  background: #0b7cef1a;
  border: 1px solid #0b7cef;
}
.rs__icon {
  transition: 0.3s ease-in-out;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rs__icon svg {
  width: 18px;
  height: 18px;
}
.road__step:hover .rs__icon {
  background: #0b6adf;
}
.road__step .rs__icon svg path {
  transition: 0.3s ease-in-out;
}
.road__step:hover .rs__icon svg path {
  fill: white;
}
.rs__title {
  font-weight: 500;
  font-family: "Inter Tight";
  font-size: 20px;
}
.rs__desc {
  font-weight: 400;
  font-family: "Inter Tight";
  font-size: 16px;
  color: #00000099;
}

.demonstration {
  width: 100%;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 0;
}
.demonstration__media {
  height: 330px;
  width: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}
.demonstration__media video {
  height: 100%;
}
.demonstration__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 700px;
  gap: 12px;
}
.dc__title {
  font-size: 28px;
  font-weight: 500;
  font-family: "Inter Tight";
}
.dc__decs {
  font-size: 16px;
  color: #000;
  font-weight: 300;
}
.dc__premium {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  border-radius: 15px;
  background: #0b7cef1a;
  padding: 15px 20px;
  width: 60%;
  margin-bottom: 20px;
}
.dcp__text {
  color: #0b53ef;
}
.demonstration__content .main__raschitat {
  margin-top: 24px;
  margin-bottom: 0;
  width: 380px;
}

.automation {
  width: 100%;
  display: flex;
  /* overflow-x: auto !important; */
  margin: 60px 0;
  scroll-behavior: smooth;
}
.automation__section {
  /* flex: 0 0 1000px; */
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.as__content {
  width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 20px;
  height: 330px;
}
.as__content img {
  height: 90%;
}
.as__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 750px;
}
.ast__title {
  font-size: 44px;
  font-weight: 500;
  font-family: "Inter Tight";
}
.ast__desc {
  font-size: 16px;
  color: #000000;
  margin-top: 20px;
  font-weight: 300;
}
.automation__boxes {
  min-width: 1400px;
  padding-top: 30px;
  /* padding-right: 120px; */

  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-start;
  justify-content: flex-start;
  /* border: 1px solid red; */
  /* height: 100vh; */
}
.automation__box {
  min-height: 650px;
  padding: 25px 35px;
  border-radius: 20px;
  background: #efefef;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.ab__number {
  width: 35px;
  height: 35px;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 80px;
}
.abn {
  color: #000000;
  font-size: 18px;
}
.ab__media {
  width: 350px;
  height: 220px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 80px;
  overflow: hidden;
}
.ab__media img {
  height: 100%;
}
.ab__title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Inter Tight";
}
.ab__desc {
  font-size: 18px;
  color: #000000;
  margin-top: 10px;
  font-weight: 300;
  width: 350px;
}

.produce {
  /* display: flex; */
  /* width: 100%;
  padding: 40px 100px; */

  display: flex; /* 👈 bolalarini yonma-yon qo'yamiz */
  width: 100%;
  gap: 80px;
  padding: 40px 100px;
  overflow: hidden; /* ortiqcha chiqib ketmasin */
  position: relative; /* pin uchun yaxshi */
}
.produce__main {
  flex: 0 0 100%; /* har biri butun ekran kengligi */
  /* qolgan stylingingni qoldiramiz */

  width: 100vw;
  border-radius: 20px;
  background: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
}
.produce__main:nth-child(2) {
  /* border: 1px solid red; */
  margin-right: 300px;
}
.produce__main__first {
  width: 100%;
  /* border-radius: 20px; */
  background: #f5f5f5;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 10px;
}
.pm__info {
  width: 60%;
  min-height: 300px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  padding: 25px;
  justify-content: flex-start;
}
.pmi__title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.pmit__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6e6e6;
}
.pmit__icon svg {
  height: 22px;
  width: 22px;
}
.pmit {
  font-weight: 500;
  font-size: 32px;
  width: 70%;
  font-family: "Inter Tight";
  /* margin-bottom: 20px; */
}
.pmi__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  width: 80%;
  align-items: flex-start;
  justify-content: flex-start;
}
.pmi__option {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #00000033;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.pmio__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0b7cef1a;
}
.pmio__icon svg {
  height: 16px;
  width: 16px;
}
.pmio__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pmiot__name {
  font-size: 12px;
  color: #000000;
  font-weight: 300;
  margin-bottom: 3px;
}
.pmiot__desc {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}
.pmi__quota {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.pmiq {
  margin-top: 25px;
}
.pmi__author {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pmia {
  display: flex;
  flex-direction: column;
}
.pmia__name {
  font-weight: 500;
  font-size: 16px;
}
.pmia__text {
  font-weight: 400;
  font-size: 14px;
}
.produce__content {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pc__media {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
}
.pc__media video {
  width: 100%;
}
.pc__time {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 25px;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
.pct {
  font-size: 22px;
  margin-bottom: 15px;
}
.pct__diagramms {
  width: 100%;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.pctd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(-400px);
}
.pctd img {
  width: 100%;
}

.view__cont {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view {
  width: 80%;
  padding: 45px 55px;
  display: flex;
  background: #f5f5f5;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.view__title {
  font-weight: 500;
  font-size: 36px;
  width: 40%;
  margin-bottom: 15px;
}
.view__desc {
  font-weight: 300;
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}
.view .main__raschitat {
  width: 440px;
}
.view__gallery {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 500px;
  width: 600px; /* galereya eni */
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  align-items: center;
}

.vg__item {
  position: relative;
  width: 280px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
}

.vg__item1 {
  margin-left: 20px;
}
.vg__item5 {
  margin-right: 20px;
}

.vg__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vg__center {
  width: 340px; /* markazdagi katta rasm */
  height: 180px;
}

.vg__caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 12px;
  font-size: 16px;
  color: #fff;
  border-radius: 12px;
  max-width: 70%;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px); /* blur effekt */
}
.view .main__raschitat {
  margin-bottom: 0;
}

.statistic__cont {
  width: 100%;
  padding: 40px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.statistic {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.st__top {
  display: flex;
  width: 100%;
  gap: 15px;
}
.st__card {
  padding: 25px;
  background: #f5f5f5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.st__top__card1 {
  width: 40%;
}
.st__top__card2 {
  width: 60%;
}
.st__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.st__head svg {
  width: 40px;
  height: 40px;
}
.st__head__text {
  font-size: 36px;
  font-weight: 500;
}
.st__head__paragraph {
  font-size: 18px;
}
.st__center {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.stc__title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 20px;
}
.stc {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.st__middle {
  width: 100%;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
}
.stm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.stm svg {
  height: 25px;
  width: 25px;
}
.stm__text {
  width: 150px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}
.stm__diagram {
  height: 50px;
  padding-right: 15px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.stm__diagram p {
  font-weight: 500;
  font-size: 18px;
}
.stmd__blue {
  width: 150px;
  background: #0b7cef;
  color: #fff;
}
.stmd__red {
  width: 500px;
  background: #ff6384;
  color: #fff;
}
.stmd__yellow {
  width: 250px;
  background: #ff9f63;
  color: #fff;
}
.stmd__gray {
  width: 100px;
  background: #1ebda2;
  color: #fff;
}
.st__bottom {
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  background: #f5f5f5;
  border-radius: 20px;
}
.st__bottom .main__raschitat {
  margin-bottom: 0;
  width: 200px;
}
.stb__tz {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
}
.stb__tz img {
  height: 45px;
}
.stbt__text {
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1400px) {
  .rc__desc {
    font-size: 14px;
  }
  .road__step {
    min-height: 280px;
  }
  .rs__title {
    font-size: 18px;
  }
}
@media (max-width: 1350px) {
  .rc__desc {
    font-size: 14px;
  }
  .road__step {
    min-height: 280px;
  }
  .rs__title {
    font-size: 18px;
  }
  .demonstration__content {
    width: 550px;
  }
  .dc__premium {
    width: 80%;
  }
  .automation__boxes {
    min-width: 105vw;
  }
}
@media (max-width: 1300px) {
  .road__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .solutions__card {
    width: 90%;
  }
  .as__text {
    width: 600px;
  }
  .dc__title {
    font-size: 24px;
  }
  .demonstration__media {
    width: 450px;
  }
  .vg__item {
    width: 200px;
    height: 100px;
  }
  .vg__center {
    width: 280px;
    height: 150px;
  }
  .view__gallery {
    width: 450px;
    height: 380px;
  }
  .vg__caption {
    font-size: 12px;
    min-width: 80%;
  }
  .view__title {
    font-size: 30px;
  }
  .statistic {
    width: 90%;
  }
  .road__content {
    height: 300px;
  }
  .automation__boxes {
    min-width: 115vw;
  }
  .view {
    width: 90%;
  }
}
.mobile__pc__media {
  display: none;
}
@media (max-width: 1200px) {
  .st__title {
    font-size: 36px;
  }
  .st__desc {
    width: 900px;
  }
  .road__steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .road__content {
    height: 250px;
  }
  .produce {
    padding: 20px 20px;
  }
  .statistic__cont {
    padding: 20px 20px;
  }
  .statistic {
    width: 100%;
  }
  .view {
    width: 100%;
  }
  .view__cont {
    height: 700px;
  }
  .solutions__card {
    width: 100%;
  }
  .roads {
    padding: 0 20px;
  }
  .as__content {
    width: 350px;
  }
  .ast__title {
    font-size: 32px;
  }
  .as__text {
    width: 400px;
  }
  .automation__boxes {
    min-width: 1400px;
  }

  .pc__media {
    display: none;
  }
  .mobile__pc__media {
    display: flex;
    height: 250px;
  }
  .pct__diagramms {
    flex-direction: column;
  }

  .pm__info {
    width: 100%;
  }
  .produce__content {
    width: 0%;
  }
  .pc__media {
    height: auto;
  }
  .pct {
    font-size: 18px;
  }
  .pmit {
    width: 100%;
  }

  .vg__item {
    width: 200px;
    height: 160px;
  }
  .vg__center {
    width: 280px;
    height: 150px;
  }
  .view__gallery {
    width: 450px;
    height: 600px;
  }
  .vg__caption {
    font-size: 12px;
    min-width: 80%;
  }
}
@media (max-width: 1100px) {
  .demonstration__content {
    width: 400px;
  }
  .dc__premium {
    width: 100%;
  }
  .dc__decs {
    font-size: 14px;
  }
  .demonstration__content .main__raschitat {
    margin-top: 10px;
  }
  .dc__premium {
    margin-bottom: 10px;
  }
  .demonstration__media {
    width: 400px;
  }
}
.mobile__demonstration__media {
  display: none;
}
@media (max-width: 1000px) {
  .ast__title {
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
  }
  .ast__desc {
    margin-top: 10px;
    font-size: 14px;
  }
  .st__title {
    font-size: 28px;
  }
  .st__desc {
    width: 95%;
  }
  .produce__main {
    padding: 20px;
  }
  .pm__info {
    width: 100%;
  }
  .view__gallery {
    height: 500px;
  }
}
@media (max-width: 950px) {
  .vg__item {
    display: none;
  }
  .vg__center {
    display: block;
    width: 100%;
    height: 320px;
  }
  .view__gallery {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    width: 100%;
  }
  .view {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 25px;
  }
  .vg__caption {
    font-size: 14px;
  }
  .view__title {
    width: 100%;
  }
  .view .main__raschitat {
    width: 100%;
  }
}

.mobile__scc__video,
.mobile__as__content {
  display: none;
}

@media (max-width: 1000px) {
  .automation__boxes {
    min-width: 1400px;
  }
}
@media (max-width: 900px) {
  .demonstration__media {
    display: none;
  }
  .mobile__demonstration__media {
    display: flex;
  }
  .demonstration__content {
    width: 100%;
  }
  .demonstration__content .main__raschitat {
    width: 100%;
  }
  .demonstration__media {
    width: 100%;
  }
  .demonstration__media video {
    border-radius: 10px;
  }
  .dc__title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .automation__box {
    min-height: 500px;
  }
  .ab__number,
  .ab__media {
    margin-bottom: 20px;
  }
  .automation__boxes {
    height: 50vh;
  }
  .as__content {
    display: none;
  }
  .mobile__as__content {
    display: flex;
  }
  .automation__section {
    flex-direction: column;
  }
  .as__text {
    width: 90%;
  }
  .as__content {
    width: 90%;
  }
  .scc__video {
    display: none;
  }
  .mobile__scc__video {
    display: flex;
  }
  .sc__statuses {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc__content {
    grid-template-columns: repeat(1, 1fr);
  }

  .solutions__card {
    padding: 25px;
  }
  .sc__content {
    font-size: 24px;
  }
  .scct__icon {
    height: 35px;
    width: 35px;
  }
  .scct__desc {
    font-size: 16px;
  }
  .scc__video {
    height: 300px;
  }
  .pmi__options {
    width: 100%;
  }
}

@media (max-width: 850px) {
  .st__top {
    flex-direction: column;
  }
  .st__top__card1,
  .st__top__card2 {
    width: 100%;
  }
  .stc {
    grid-template-columns: repeat(2, 1fr);
  }
  .stm svg {
    height: 18px;
    width: 18px;
  }
  .stm__text {
    font-size: 14px;
  }
  .stm__diagram {
    height: 30px;
    padding-right: 10px;
  }
  .stm__diagram p {
    font-size: 14px;
  }
  .stmd__blue {
    width: 75px;
  }
  .stmd__yellow {
    width: 125px;
  }
  .stmd__red {
    width: 250px;
  }
  .stmd__gray {
    width: 50px;
  }
  .st__head__text {
    font-size: 28px;
  }
  .st__head svg {
    height: 25px;
    width: 25px;
  }
  .st__head__paragraph {
    font-size: 16px;
  }
  .stbt__text {
    font-size: 16px;
  }
  .stb__tz {
    margin-bottom: 10px;
  }
  .scc__text {
    gap: 10px;
  }
  .scct__title {
    font-size: 22px;
  }
  .scs__item svg {
    height: 20px;
    width: 20px;
  }
  .scs__text {
    width: 100%;
    font-size: 14px;
  }
  .sc__statuses {
    margin-top: 20px;
    gap: 10px;
  }
  .automation__boxes {
    min-width: 1350px;
  }
}
@media (max-width: 750px) {
  .br__nonoe__mobile {
    display: none;
  }
  .dc__title {
    font-size: 22px;
  }
  .dcp__text {
    font-size: 14px;
  }
  .view .main__raschitat .mr__svg img {
    height: 10px;
  }
  .view .main__raschitat .mr__svg {
    width: 24px;
    height: 24px;
  }
  .view .main__raschitat {
    font-size: 14px;
  }
  .view__title {
    font-size: 24px;
  }
  .produce__main__first {
    flex-direction: column;
    gap: 10px;
  }
  .pm__info {
    min-height: 100px;
  }

  .pmi__option {
    padding: 4px;
  }
  .pmiot__name {
    font-size: 10px;
  }
  .pmiot__desc {
    font-size: 12px;
    font-weight: 400;
  }
  .pmi__options {
    gap: 5px;
  }
  .pmit {
    font-size: 28px;
  }
  .produce {
    padding: 0 0;
  }
}
@media (max-width: 780px) {
  .pmiq,
  .pmia__name {
    font-size: 14px;
  }
  .pmia__text {
    font-size: 12px;
  }

  .road__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .automation__boxes {
    min-width: 1350px;
  }
}
@media (max-width: 650px) {
  .scc__video {
    height: 200px;
    border-radius: 20px;
  }
  .road__content {
    height: 150px;
  }
  .st__title {
    font-size: 24px;
  }
  .st__desc {
    font-size: 14px;
  }
  .pmit {
    font-size: 24px;
  }
  .vg__center {
    height: 260px;
  }
  .st__bottom .main__raschitat {
    width: 100%;
  }
  .st__bottom {
    padding: 0;
  }
  .stb__tz {
    padding: 25px;
  }
  .automation__boxes {
    min-width: 1340px;
  }
}
@media (max-width: 610px) {
  .stm__text {
    width: 60px;
    font-size: 10px;
  }
  .stm__diagram {
    height: 20px;
    padding-right: 10px;
  }
  .stm__diagram p {
    font-size: 11px;
  }
  .stmd__blue {
    width: 50px;
  }
  .stmd__yellow {
    width: 83px;
  }
  .stmd__red {
    width: 166px;
  }
  .stmd__gray {
    width: 33px;
  }
  .statistic__cont,
  .produce,
  .roads {
    padding: 10px 0;
  }
  .pctd {
    width: 100%;
  }
}
@media (max-width: 530px) {
  .road__steps {
    grid-template-columns: repeat(1, 1fr);
  }
  .road__step {
    min-height: 170px;
  }
  .dc__title {
    text-align: center;
  }
  .scct__title {
    font-size: 18px;
  }
  .scct__desc {
    font-size: 14px;
  }
  .scc__video {
    height: 180px;
  }
  .scs__text {
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .produce {
    display: block;
    padding: 20px 16px;
    overflow: visible; /* overflow hidden kerak emas */
  }

  .produce__main {
    flex: 1 1 auto;
    width: 100%;
    margin-top: 20px;
  }
}

.expertiza__cont {
  width: 100%;
  padding: 40px 200px;
}
.expertiza {
  width: 100%;
  padding: 45px 55px;
  background: #f5f5f5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ex__title {
  font-size: 44px;
  font-family: "Inter Tight";
  font-weight: 600;
  text-align: center;
}
.ex__diagramms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ex__diagramm {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-250px) scale(0.1);
}
.ex__diagramm img {
  width: 100%;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .expertiza__cont {
    padding: 20px 20px;
  }
  .expertiza {
    padding: 25px;
  }
  .ex__title {
    font-size: 36px;
  }
}
@media (max-width: 930px) {
  .produce {
    padding: 0;
  }
  .ex__title {
    font-size: 30px;
  }
  .ex__diagramms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 680px) {
  .ex__title {
    font-size: 30px;
  }
  .ex__diagramms {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
@media (max-width: 610px) {
  .expertiza__cont {
    padding: 20px 0px;
  }
}

.kontakt__cont {
  width: 100%;
  padding: 40px 200px;
  border-radius: 20px;
  background: #f5f5f5;
}
.kontakt {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
}
.kontakt__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 15px;
}
.ki__head__title {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 20px;
}
.ki__premium {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  border-radius: 20px;
  background: #0b7cef1a;
  padding: 15px 20px;
}
.ki__premium img {
  height: 40px;
}
.kip__text {
  color: #0b7cef;
}
.ki__title {
  margin: 20px 0;
  font-size: 32px;
  font-weight: 500;
}
.ki__kontakt {
  display: flex;
  width: 100%;
  align-items: center;
  font-weight: 300;
  margin: 5px 0;
  color: #000;
}
.ki__kontakt span {
  font-weight: 500;
  padding-right: 10px;
}
.ki__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.kontakt__form {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kform {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.kform-modal {
  position: relative;
  width: 600px;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.kform-modal .kform__title {
  margin-top: 25px;
}
.kform-modal-xmark {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.kform-modal-xmark .icon {
  transition: 0.3s ease-in-out;
  transform: rotate(45deg);
  font-size: 16px;
  color: red;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.kform-modal-xmark:hover .icon {
  color: #f5f5f5;
  transform: translate(-50%, -50%) rotate(405deg);
}
.kform-modal-xmark:hover {
  background: red;
}
.kform__title {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 20px;
}
.kform__double {
  margin: 10px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.kform__one {
  margin: 10px 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.kform__input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}
.kform__input label {
  color: #000;
  font-size: 14px;
}
.kform__input input {
  width: 100%;
  outline: none;
  border-radius: 10px;
  background: #f4f4f4;
  padding: 20px;
  border: none;
  font-size: 16px;
}
.kform__inputFile input {
  display: none;
}
.kform__inputFile label {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px dashed #0b7cef;
  background: #0b7cef1a;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #0b7cef;
}
.kform__input textarea {
  width: 100%;
  height: 150px;
  resize: none;
  outline: none;
  border-radius: 10px;
  background: #f4f4f4;
  padding: 20px;
  border: none;
  font-size: 16px;
}
.kform__input select {
  width: 100%;
  outline: none;
  border-radius: 10px;
  background: #f4f4f4;
  padding: 20px;
  border: none;
  font-size: 16px;
}
.kform__terms {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.kform__terms input {
  height: 18px;
  width: 18px;
}
.kform__terms p a {
  text-decoration: underline;
}
.kform__btn {
  width: 100%;
  margin: 15px 0;
  border: none;
  background: linear-gradient(93.64deg, #0b7cef 0.35%, #0b53ef 99.65%);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  transition: 0.3s ease-in-out;
}
.kform-modal .kform__btn {
  margin-bottom: 0;
}
.kform__btn:hover {
  transition: 0.3s ease-in-out;
  background: linear-gradient(-93.64deg, #0b7cef 0.35%, #0b53ef 99.65%);
  cursor: pointer;
  transform: translateY(-5px);
}
.kformbtn__icon {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}
.kformbtn__icon img {
  height: 12px;
  transition: 0.3s ease-in-out;
}
.kform__btn:hover .kformbtn__icon img {
  transform: translateY(-2px) translateX(2px);
}
.mobile__kontakt__form {
  display: none;
}
@media (max-width: 1350px) {
  .kform__title {
    width: 100%;
  }
  .ki__head__title {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .kform__title {
    width: 100%;
  }
  .ki__head__title {
    font-size: 36px;
  }
  .kontakt__cont {
    padding: 20px 20px;
  }
  .kontakt {
    gap: 15px;
  }
  .kip__text {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .kontakt__info {
    width: 100%;
  }
  .kontakt__form {
    display: none;
  }
  .mobile__kontakt__form {
    display: flex;
  }
  .kontakt__form {
    width: 100%;
    margin: 20px 0;
  }
}
@media (max-width: 700px) {
  .kform__btn {
    font-size: 16px;
  }
  .kformbtn__icon {
    height: 25px;
    width: 25px;
  }
  .kformbtn__icon img {
    height: 10px;
  }
  .kform__double {
    gap: 10px;
  }
  .kform__input {
    gap: 5px;
  }
  .kform__input input {
    padding: 15px 20px;
    font-size: 14px;
  }
  .kform__input select {
    padding: 15px 20px;
    font-size: 14px;
  }
  .kform__terms p {
    font-size: 14px;
  }
  .kform__title {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .kform__double {
    grid-template-columns: repeat(1, 1fr);
  }
  .ki__head__title {
    font-size: 28px;
  }
  .ki__title {
    margin-top: 0;
  }
}

/* MODALS */
.modal-bg {
  opacity: 0;
  overflow-y: auto;
  position: fixed;
  top: -3000px;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 100;
  background: #000000bd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-in-out;
}

.modal-bg-active {
  opacity: 1;
  transition: 0.1s ease-in-out;
  top: 0;
}

/*  */

/* Video fallback rasm */
.video-fallback-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* defaultda yashirin */
}

/* fallback yoqilganda */
.video-fallback-wrap.is-fallback video {
  display: none;
}
.video-fallback-wrap.is-fallback .video-fallback-img {
  display: block;
}

/* roads + demonstration uchun vaqtincha wrapper */
.rd-wrap {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
}

.rd-wrap > .roads,
.rd-wrap > .demonstration {
  flex: 0 0 100vw; /* har biri ekran kengligicha panel bo‘lsin */
}
