.hardware-software {
/*   max-width: 1440px; */
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.hardware-software .main-box {
  height: 480px;
  background-color: #4b4b4b;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8%;
  width: 66.66667%;
}
@media screen and (max-width: 992px) {
  .hardware-software .main-box {
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .hardware-software .main-box {
    height: auto;
  }
}
.hardware-software .main-box h2 {
  color: #fff;
}
.hardware-software .main-box h1 {
  margin-bottom: 16px;
}
.hardware-software .box {
  box-shadow: 0 0 1px #c2bfbb;
  height: 480px;
  width: 33.33333%;
  position: relative;
  display: block;
  transition: all 0.3s ease;
}
@media screen and (max-width: 992px) {
  .hardware-software .box {
    width: 50%;
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .hardware-software .box {
    height: auto;
    padding-top: 50%;
  }
}
.hardware-software .box:hover {
  background-color: #f7f7f7;
}
.hardware-software .box:hover .icon {
  opacity: 1;
}
.hardware-software .box img {
  max-width: 68%;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .hardware-software .box img {
    max-width: 40%;
  }
}
.hardware-software .box h3 {
  padding: 10%;
  position: absolute;
  bottom: 0;
  color: #ff8034;
}
@media screen and (max-width: 767px) {
  .hardware-software .box h3 {
    padding: 3%;
  }
}
.hardware-software .box .icon {
  position: absolute;
  top: 16px;
  right: 16px;
  opacity: 0;
  transition: all 0.3s ease;
}
.hardware-software .box .icon::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/offices.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.hardware-software .more-box {
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3%;
}
.hardware-software .more-box h2 {
  margin-top: 22px;
  color: #585858;
}
.hardware-software .more-box .icon {
  opacity: 1;
}
.hardware-software .more-box .icon::after {
  background-image: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/arrow-angle-b.png");
}
.hardware-software.more-single-products {
  height: auto !important;
}
.hardware-software.more-single-products .box {
  width: 25%;
}
@media screen and (max-width: 992px) {
  .hardware-software.more-single-products .box {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .hardware-software.more-single-products .box {
    width: 100%;
  }
}
.hardware-software.more-single-products .box h3 span {
  display: block;
  color: #585858;
  font-size: 16px;
}

.product-container {
  overflow: hidden;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.product-container .product-info {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: slideUp 0.5s ease-in-out;
}
@media screen and (max-width: 992px) {
  .product-container .product-info {
    flex-wrap: wrap;
    margin: 50px auto;
  }
}
.product-container .product-info .desc {
  flex: 0 0 49%;
}
@media screen and (max-width: 992px) {
  .product-container .product-info .desc {
    flex: 0 0 100%;
    order: 2;
  }
}
.product-container .product-info .desc h2 {
  color: #585858;
  margin: 16px 0;
}
.product-container .product-info .desc .btn {
  width: max-content;
  padding: 0 32px;
  margin-top: 20px;
}
@media screen and (max-width: 992px) {
  .product-container .product-info .desc .btn {
    width: 100%;
  }
}
.product-container .product-info .img-holder {
  flex: 0 0 49%;
}
@media screen and (max-width: 992px) {
  .product-container .product-info .img-holder {
    flex: 0 0 100%;
    order: 1;
  }
}
.product-container .product-info .img-holder .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-container .product-info ul {
  color: #585858;
}
.product-container .product-info ul li {
  margin-bottom: 7px;
  display:block;
}
.product-container .product-info ul li::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff8034;
  font-size: 12px;
}
@media screen and (max-width: 992px) {
  .product-container .product-info:nth-child(1) .img-holder {
    order: 1;
  }
  .product-container .product-info:nth-child(1) .desc {
    order: 2;
  }
}
.product-container .product-info:nth-child(2) {
  animation: slideLeft 0.5s ease-in-out;
}

@keyframes slideUp {
  0% {
    transform: translateY(30%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(30%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.software-product {
  display: flex;
  align-items: stretch;
  gap: 87px;
}
@media screen and (max-width: 992px) {
  .software-product {
    flex-direction: column;
    gap: 0;
  }
}
.software-product .product-info {
  padding: 55px;
  background-color: #4b4b4b;
  width: 41.66667%;
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 992px) {
  .software-product .product-info {
    width: 100%;
    padding: 40px 25px;
    height: auto;
  }
}
.software-product .product-info p {
  color: #fff;
}
.software-product .monitor {
  position: relative;
  flex: 1;
}
@media screen and (max-width: 992px) {
  .software-product .monitor {
    width: 70%;
    margin: 0 auto;
  }
}
.software-product .monitor .monitor-holder {
  background-image: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/desktop.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  padding-top: 73.53%;
  position: relative;
  margin-top: -25%;
  z-index: 9;
}
@media screen and (max-width: 992px) {
  .software-product .monitor .monitor-holder {
    margin-top: -70px;
  }
}
.software-product .monitor .monitor-holder img {
  position: absolute;
  top: 11.9%;
  width: 80.6%;
  left: 9.9%;
}

.product-navigation {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
  .product-navigation {
    border: 0;
  }
}
.product-navigation button {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  padding: 24px 40px 20px;
  font-weight: 600;
  gap: 20px;
  position: relative;
  text-transform: uppercase;
  border-right: 1px solid #ededed;
}
@media screen and (max-width: 992px) {
  .product-navigation button {
    border-bottom: 1px solid #ededed;
    width: 100%;
  }
}
.product-navigation button:first-child {
  border-left: 1px solid #ededed;
}
@media screen and (max-width: 992px) {
  .product-navigation button:first-child {
    border-top: 1px solid #ededed;
  }
}
.product-navigation button .icon-holder {
  position: relative;
  display: inline-block;
}
.product-navigation button .icon-holder img {
  width: 29px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  transition: all 0.2s;
}
.product-navigation button .icon-holder img.active {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.product-navigation button.active {
  color: #ff8034;
}
.product-navigation button.active img.not-active {
  opacity: 0;
}
.product-navigation button.active img.active {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}

.nav-btn-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .nav-btn-holder {
    flex-direction: column;
  }
}

.swiper-software .title {
  font-weight: 800;
  font-size: 34px;
  color: #4b4b4b;
}
.swiper-software .subtitle {
  font-weight: 800;
  font-size: 24px;
  color: #ff8034;
}
.swiper-software .feature {
  font-size: 20.8px;
  font-weight: 600;
  color: #4b4b4b;
  margin: 16px 0;
}
.swiper-software ul {
  list-style-type: disc;
  margin-left: 18px;
}

.product-sliders-holder {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .product-sliders-holder {
    flex-direction: column;
    gap: 0;
  }
}
.product-sliders-holder .swiper-container {
  flex: 0 0 48%;
  min-width: 0;
}
@media screen and (max-width: 992px) {
  .product-sliders-holder .swiper-container {
    flex: 0 0 100%;
  }
}
.product-sliders-holder .right-slide-container {
  flex: 0 0 48%;
  min-width: 0;
}
@media screen and (max-width: 992px) {
  .product-sliders-holder .right-slide-container {
    flex: 0 0 70%;
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .product-sliders-holder .right-slide-container {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.product-sliders-holder .monitor-holder {
  height: 0;
  padding-bottom: 58.824%;
  width: 80%;
  background: url("https://26208195.fs1.hubspotusercontent-eu1.net/hubfs/26208195/desktop.png") no-repeat;
  -moz-background -size: cover;
  background-size: cover;
  position: relative;
  margin: 0 auto;
  display: block;
  transform-style: preserve-3d;
  transform: rotateY(0);
  backface-visibility: hidden;
  z-index: 5;
}
.product-sliders-holder .monitor-holder .right-slider {
  top: 11.9%;
  width: 80.8%;
  padding-bottom: 45.5%;
  overflow: hidden;
  display: block;
  transform-style: preserve-3d;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
}
.product-sliders-holder .product-nav-btn {
  width: 45px;
  height: 45px;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 992px) {
  .product-sliders-holder .product-nav-btn {
    width: 32px;
    height: 32px;
  }
}
.product-sliders-holder .product-nav-btn:hover {
  transform: scale(1.2);
}
.product-sliders-holder .product-nav-btn.swiper-button-prev {
  transform: rotate(180deg);
  left: -20px;
}
.product-sliders-holder .product-nav-btn.swiper-button-prev:hover {
  transform: rotate(180deg) scale(1.2);
}
.product-sliders-holder .product-nav-btn.swiper-button-next {
  right: -20px;
}

.contact-software {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 70px;
}
.contact-software h1 {
  text-align: center;
  color: #4b4b4b;
  margin-bottom: 80px;
  flex: 0 0 100%;
}
.contact-software img {
  width: 45%;
  height: auto;
  flex: 0 0 45%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contact-software img {
    width: 100%;
    flex: 0 0 100%;
  }
}
.contact-software .contact-form-holder {
  flex: 0 0 45%;
}
@media screen and (max-width: 767px) {
  .contact-software .contact-form-holder {
    width: 100%;
    flex: 0 0 100%;
  }
}
.contact-software .contact-form-holder .btn {
  width: 100%;
}

.scroll-control {
  position: fixed;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
@media screen and (max-width: 992px) {
  .scroll-control {
    display: none;
  }
}
.scroll-control span {
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin: 10px 0;
  background: transparent;
  border: 2px solid #858585;
  transition: all 0.3s ease-in-out;
}
.scroll-control span:hover {
  background: #ff8034;
  border-color: #ff8034;
}
.scroll-control span.active {
  background: #ff8034;
  border-color: #ff8034;
}

.product-img-holder {
  position: relative;
}
.product-img-holder .plus {
  position: absolute;
}
.product-img-holder .plus .plus-img {
  width: 36px;
  height: 36px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.product-img-holder .plus .plus-content {
  position: relative;
}
@media screen and (max-width: 992px) {
  .product-img-holder .plus .plus-content.active .plus-img {
    transform: rotate(225deg);
    z-index: 9;
  }
  .product-img-holder .plus .plus-content.active .block {
    opacity: 1;
    visibility: visible;
    z-index: 8;
  }
}
@media screen and (min-width: 992px) {
  .product-img-holder .plus .plus-content:hover .plus-img {
    transform: rotate(225deg);
    z-index: 9;
  }
  .product-img-holder .plus .plus-content:hover .block {
    opacity: 1;
    visibility: visible;
    z-index: 7;
    transition: all 0.3s ease-in-out;
  }
}
.product-img-holder .plus .plus-content .block {
  width: 350px;
  position: absolute;
  left: -20px;
  top: 20px;
  background-color: #4b4b4b;
  padding: 32px 32px 16px;
  opacity: 0;
  visibility: hidden;
}
.product-img-holder .plus .plus-content .block h3 {
  color: #ff8034;
}
.product-img-holder .plus .plus-content .block p {
  margin-top: 8px;
  color: white;
}

.flip_section {
    order: 2;
}

.product-info li {
  display: flex;
}

model-viewer{
  height:100vh;
  width:100%;
  
}

@media screen and (max-width: 992px) {
  model-viewer{
  height:500px;
    margin: 0 auto;
}
}