@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem;
}

.scene {
  width: 160px;
  height: 240px;
  position: relative;
  perspective: 550px;
  border: 2px solid #f0f0f0;
}

.carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transform: translateZ(288px) rotate(180deg) rotateX(180deg) rotateY(0deg);
  transition: transform 0.3s;
}
.carousel__cell {
  position: absolute;
  width: 190px;
  height: 160px !important;
  height: 160px;
  top: 60px;
  margin-bottom: 80px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.3s;
  backface-visibility: hidden;
  overflow: hidden;
}
.carousel__cell:nth-child(1) {
  overflow: hidden;
  background: url("../assests/carousel-img1.png");
}
.carousel__cell:nth-child(2) {
  overflow: hidden;
  background: url("../assests/carousel-img2.png");
}
.carousel__cell:nth-child(3) {
  overflow: hidden;
  background: url("../assests/carousel-img3.png");
}
.carousel__cell:nth-child(4) {
  overflow: hidden;
  background: url("../assests/carousel-img4.jpeg");
}
.carousel__cell:nth-child(5) {
  overflow: hidden;
  background: url("../assests/carousel-img5.jpg");
}
.carousel__cell:nth-child(6) {
  overflow: hidden;
  background: url("../assests/carousel-img6.jpg");
}
.carousel__cell:nth-child(7) {
  overflow: hidden;
  background: url("../assests/carousel-img7.jpg");
}
.carousel__cell:nth-child(8) {
  overflow: hidden;
  background: url("../assests/carousel-img8.jpg");
}
.carousel__cell:nth-child(9) {
  overflow: hidden;
  background: url("../assests/blog-one-img1.png");
}
.carousel__cell:nth-child(1) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(0deg) translateZ(-288px);
}
.carousel__cell:nth-child(2) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-40deg) translateZ(-288px);
}
.carousel__cell:nth-child(3) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-80deg) translateZ(-288px);
}
.carousel__cell:nth-child(4) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-120deg) translateZ(-288px);
}
.carousel__cell:nth-child(5) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-160deg) translateZ(-288px);
}
.carousel__cell:nth-child(6) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-200deg) translateZ(-288px);
}
.carousel__cell:nth-child(7) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-240deg) translateZ(-288px);
}
.carousel__cell:nth-child(8) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-280deg) translateZ(-288px);
}
.carousel__cell:nth-child(9) {
  background-size: contain;
  transform: rotate(180deg) rotateX(180deg) rotateY(-320deg) translateZ(-288px);
}

.navbar {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: rgba(14, 3, 7, 0.8392156863);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  height: 88px;
  width: 10%;
}
.navbar .navbar-brand .navbar-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.navbar .navbar-brand a img {
  display: flex;
}
.navbar .navbar-menu {
  display: flex;
  align-items: center;
  width: 90%;
  justify-content: space-evenly;
}
.navbar .navbar-menu .navbar-links {
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  width: 70%;
}
.navbar .navbar-menu .navbar-links li {
  margin-left: 1rem;
}
.navbar .navbar-menu .navbar-links li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: background 0.3s;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  height: 88px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
}
.navbar .navbar-menu .navbar-links li a:hover {
  border-bottom: 3px solid #FFFFFF;
}
.navbar .navbar-menu .navbar-links .active {
  border-bottom: 3px solid white;
}
.navbar .navbar-menu .navbar-contacts {
  width: 30%;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .navbar-menu .navbar-contacts a,
.navbar .navbar-menu .navbar-contacts span {
  margin: 0.5rem 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
}
.navbar .navbar-menu .navbar-contacts span {
  cursor: default;
}
.navbar .navbar-menu .navbar-contacts a {
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar .navbar-brand {
    width: 100%;
    justify-content: space-between;
  }
  .navbar .navbar-brand .navbar-toggler {
    display: inline-block;
  }
  .navbar .navbar-menu {
    width: 100%;
    flex-direction: column;
    display: none;
  }
  .navbar .navbar-menu.active {
    display: flex;
  }
  .navbar .navbar-menu .navbar-links {
    flex-direction: column;
    width: 100%;
  }
  .navbar .navbar-menu .navbar-links li {
    width: 100%;
    margin: 0;
  }
  .navbar .navbar-menu .navbar-links li a {
    width: 100%;
    font-size: 12px;
    height: 48px;
    padding: 0;
  }
  .navbar .navbar-menu .navbar-contacts {
    margin-left: 0;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
  }
  .navbar .navbar-menu .navbar-contacts a,
  .navbar .navbar-menu .navbar-contacts span {
    font-size: 12px;
  }
  .navbar .navbar-menu .navbar-contacts img {
    width: 16px;
    height: 16px;
  }
}

.website-body {
  position: relative;
  top: 88px;
}

.hero-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section img {
  height: 806px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.counts-section {
  background-color: #FF0909;
}
.counts-section .light-images {
  position: relative;
}
.counts-section .light-images .left-light,
.counts-section .light-images .right-light {
  position: absolute;
}
.counts-section .light-images .left-light {
  left: 4%;
}
.counts-section .light-images .right-light {
  right: 4%;
}
.counts-section .count-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 4%;
  padding-top: 32px;
  padding-bottom: 48px;
}
.counts-section .count-head {
  display: flex;
  justify-content: center;
}
.counts-section .count-head span {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  color: #FFFFFF;
  width: 88%;
}
.counts-section .counts-body {
  padding: 0 4%;
  display: flex;
  gap: 200px;
}
.counts-section .counts-body .count-box {
  display: flex;
  flex-direction: column;
}
.counts-section .counts-body .count-box span {
  text-align: center;
  color: #FFFFFF;
}
.counts-section .counts-body .count-box .counts {
  font-size: 52px;
  font-weight: 400;
  line-height: 96px;
}
.counts-section .counts-body .count-box .count-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 27px;
}

.about-section {
  background: linear-gradient(to right, #110E1E 70%, rgba(17, 14, 30, 0) 100%);
  height: 730px;
  position: relative;
}
.about-section .absolute-bg-img {
  position: relative;
  z-index: -1;
}
.about-section .absolute-bg-img img {
  width: 100%;
  height: 730px;
}
.about-section .about-body {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 6%;
  display: flex;
}
.about-section .about-body .about-left {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  gap: 34px;
}
.about-section .about-body .about-left .about-left-content {
  width: 332px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.about-section .about-body .about-left .about-text {
  font-size: 32px;
  font-weight: 500;
  line-height: 27px;
  text-align: left;
  color: #FFFFFF;
}
.about-section .about-body .about-left .product-name {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.about-section .about-body .about-left .product-name .pixel-img img,
.about-section .about-body .about-left .product-name .power-img img {
  height: 66px;
}
.about-section .about-body .about-left .product-name .pixel-img img {
  width: 250px;
}
.about-section .about-body .about-left .product-name .power-img img {
  width: 332px;
}
.about-section .about-body .about-right {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
}
.about-section .about-body .about-right .about-para {
  margin: 0;
  width: 70%;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  color: #FFFFFF;
}
.about-section .about-body .about-right .about-points {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-section .about-body .about-right .about-points .point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.about-section .about-body .about-right .about-points .point span {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: left;
  color: #FFFFFF;
}

.services-section {
  padding: 0 6%;
  background: #FCFCFC;
}
.services-section .services-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0 88px 0;
}
.services-section .services-content .service-head {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  color: #050505;
  margin-bottom: 52px;
}
.services-section .services-content .service-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.services-section .services-content .service-cards-wrap .service-cards-row {
  display: flex;
  gap: 40px;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card {
  height: 401px;
  width: 348px;
  box-shadow: 0px 4px 22px 3px rgba(255, 9, 9, 0.0784313725);
  border-radius: 10px;
  position: relative;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-img {
  height: 50%;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-img img {
  width: 100%;
  border-radius: 10px;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-img {
  position: absolute;
  height: 50%;
  width: 100%;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 25px;
  gap: 8px;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text .card-head {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #050505;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text .card-para {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: #050505;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-one,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-three,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-four,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-five,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-six,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-nine {
  height: 47%;
}
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-two,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-seven,
.services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-eight {
  height: 52%;
}

.gallery-section {
  background: url("../assests/gallery-bg.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
}
.gallery-section .gallery-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 6%;
  padding-top: 62px;
  padding-bottom: 57px;
}
.gallery-section .gallery-text .gallery-head {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  color: #000000;
}
.gallery-section .gallery-text .gallery-para {
  width: 60%;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  color: #000000;
}
.gallery-section .gallery-corousel {
  padding-bottom: 88px;
  width: 100%;
  overflow: hidden;
}

.blog-section {
  padding: 0 6%;
  padding-top: 62px;
  padding-bottom: 62px;
}
.blog-section .blog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-section .blog-content .blog-head {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  text-align: center;
  color: #050505;
  margin-bottom: 48px;
}
.blog-section .blog-content .blog-cards-wrap {
  display: flex;
  gap: 48px;
  padding-bottom: 90px;
}
.blog-section .blog-content .blog-cards-wrap a {
  text-decoration: none;
}
.blog-section .blog-content .blog-cards-wrap .blog-card {
  height: 401px;
  width: 348px;
  box-shadow: 0px 4px 22px 3px rgba(255, 9, 9, 0.0784313725);
  border-radius: 10px;
  position: relative;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-img {
  height: 50%;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-img img {
  width: 100%;
  border-radius: 10px;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text-img {
  position: absolute;
  height: 50%;
  width: 100%;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 25px;
  gap: 16px;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text .card-head {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #050505;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text .card-para {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
  color: #050505;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text-nine {
  height: 52%;
  padding-right: 10px;
}
.blog-section .blog-content .blog-cards-wrap .blog-card .card-text-two {
  height: 52%;
}

.form-section {
  background: url("../assests/form-bg.png");
  height: 680px;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 100%;
}
.form-section .form-content {
  display: flex;
}
.form-section .form-left {
  background: linear-gradient(to right, rgba(10, 0, 34, 0.8509803922) 70%, rgba(17, 14, 30, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 680px;
  width: 50%;
}
.form-section .form-left .form-title {
  width: 516px;
  font-size: 44.63px;
  font-weight: 500;
  line-height: 55.78px;
  text-align: left;
  color: #FFFFFF;
}
.form-section .form-left .form-title .red-text {
  font-size: 44.63px;
  font-weight: 600;
  line-height: 55.78px;
  text-align: left;
  color: #FF0909;
}
.form-section .form-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section .form-right .form-container-parent {
  background: #fff;
  border-radius: 10px;
  width: 569px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.form-section .form-right .form-container-parent .input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-section .form-right .form-container-parent .input-field label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #050505;
}
.form-section .form-right .form-container-parent .input-field input, .form-section .form-right .form-container-parent .input-field textarea {
  width: 100%;
  padding: 10px 14px 10px 14px;
  height: 44px;
  border: 1px solid #D9DDE2;
  background: #FFFFFF;
  border-radius: 8px;
  resize: none;
  font-size: 14px;
  color: #050505;
}
.form-section .form-right .form-container-parent .input-field textarea {
  min-height: 140px;
}
.form-section .form-right .form-container-parent .input-field input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #A1A1A1;
  font-family: poppins;
}
.form-section .form-right .form-container-parent .input-field input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #A1A1A1;
  font-family: poppins;
}
.form-section .form-right .form-container-parent .input-field textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #A1A1A1;
  font-family: poppins;
  letter-spacing: normal;
}
.form-section .form-right .form-container-parent .input-field textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #A1A1A1;
  font-family: poppins;
  letter-spacing: normal;
}
.form-section .form-right .form-container-parent .submit-btn {
  display: flex;
  justify-content: flex-end;
  height: 43px;
  align-items: center;
  position: relative;
}
.form-section .form-right .form-container-parent .submit-btn button {
  border: none;
  border-radius: 10px;
  background-color: #FF0909;
  padding: 8px 16px 8px 16px;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  text-align: center;
  color: #FFFFFF;
}
.form-section .form-right .form-container-parent .resMessage {
  display: none;
  position: absolute;
  left: 0;
}
.form-section .form-right .form-container-parent .resMessage span {
  text-align: left;
  color: green;
}

.footer-section {
  background-color: #FF0909;
}
.footer-section .footer-content {
  padding: 0 4%;
}
.footer-section .footer-content .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
.footer-section .footer-content .footer-top .lg-screen {
  display: block;
}
.footer-section .footer-content .footer-top .sm-screen {
  display: none;
}
.footer-section .footer-content .footer-top ul {
  display: flex;
  gap: 59px;
}
.footer-section .footer-content .footer-top ul a {
  text-decoration: none;
}
.footer-section .footer-content .footer-top ul a li {
  list-style: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}
.footer-section .footer-content .divider {
  margin-top: 16px;
  border: 0.5px solid #FFFFFF;
}
.footer-section .footer-content .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 36px 0;
}
.footer-section .footer-content .footer-bottom .ft-bottom-left {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
.footer-section .footer-content .footer-bottom .ft-bottom-right {
  width: 180px;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1200px) and (max-width: 1479px) {
  .gallery-section {
    background-size: contain;
  }
  .container {
    padding: 3rem;
  }
  .about-section {
    height: 620px;
  }
  .scene {
    border: none;
  }
  .blog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blog-section .blog-content .blog-cards-wrap {
    padding-bottom: 40px;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .navbar .navbar-menu .navbar-links li a {
    font-size: 14px;
  }
  .navbar .navbar-menu .navbar-contacts {
    width: 37%;
    margin-left: 0rem;
  }
  .navbar .navbar-menu .navbar-contacts a, .navbar .navbar-menu .navbar-contacts span {
    font-size: 14px;
  }
  .hero-section img {
    -o-object-fit: contain;
       object-fit: contain;
    height: unset;
  }
  .counts-section .light-images .left-light img, .counts-section .light-images .right-light img {
    width: 65%;
  }
  .counts-section .light-images .right-light {
    right: 0;
  }
  .counts-section .count-head span {
    font-size: 22px;
  }
  .counts-section .counts-body {
    gap: 100px;
  }
  .counts-section .counts-body .count-box .counts {
    font-size: 44px;
    line-height: 70px;
  }
  .counts-section .counts-body .count-box .count-name {
    font-size: 22px;
  }
  .about-section {
    height: 560px;
  }
  .about-section .about-body .about-left {
    width: 40%;
  }
  .about-section .about-body .about-left .about-left-content {
    width: 285px;
  }
  .about-section .about-body .about-left .product-name .pixel-img img {
    width: 170px;
  }
  .about-section .about-body .about-left .product-name .pixel-img img, .about-section .about-body .about-left .product-name .power-img img {
    height: 44px;
    width: unset;
  }
  .about-section .about-body .about-right {
    width: 60%;
    gap: 18px;
  }
  .about-section .about-body .about-right .about-para {
    width: 85%;
    font-size: 16px;
    line-height: 26px;
  }
  .about-section .about-body .about-right .about-points {
    width: 85%;
    gap: 24px;
  }
  .about-section .about-body .about-right .about-points .point span {
    font-size: 16px;
    line-height: 26px;
  }
  .services-section .services-content {
    padding: 40px 0 54px 0;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card {
    height: 340px;
    width: 270px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text .card-head {
    font-size: 18px;
    line-height: 24px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text .card-para {
    font-size: 12px;
    line-height: 18px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-img {
    height: 40%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-img {
    height: 40%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-one, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-two, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-three, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-seven, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-nine {
    height: 60%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-eight {
    height: 55%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-four, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-five {
    height: 52%;
  }
  .gallery-section {
    background-size: cover;
  }
  .gallery-section .gallery-corousel {
    padding-bottom: 40px;
  }
  .gallery-section .gallery-text {
    padding-bottom: 0;
    padding-top: 32px;
  }
  .gallery-section .gallery-text .gallery-para {
    width: 85%;
  }
  .gallery-section .scene {
    border: none;
  }
  .container {
    padding: 0rem;
  }
  .blog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .blog-section .blog-content .blog-cards-wrap {
    padding-bottom: 0;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card {
    height: 340px;
    width: 270px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text {
    gap: 10px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text .card-head {
    font-size: 18px;
    line-height: 26px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text-two {
    height: 56%;
    padding: 20px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text-nine {
    padding-right: 0;
    padding: 20px;
    height: 62%;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-img {
    height: 40%;
  }
  .form-section {
    background-size: unset;
  }
  .form-section .form-left .form-title {
    width: 80%;
    font-size: 36px;
    line-height: 46px;
  }
  .form-section .form-left .form-title .red-text {
    font-size: 36px;
    line-height: 46px;
  }
  .form-section .form-right .form-container-parent {
    width: 430px;
  }
}
@media (min-width: 280px) and (max-width: 768px) {
  .navbar .navbar-brand {
    height: 60px;
    justify-content: flex-start;
  }
  .navbar .navbar-brand a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .navbar .navbar-brand a img {
    height: 60px;
  }
  .website-body {
    top: 60px;
  }
  .hero-section img {
    width: 100%;
    height: 100%;
  }
  .about-section {
    height: 100%;
    background: linear-gradient(to bottom, #110E1E 70%, rgba(17, 14, 30, 0) 100%);
  }
  .about-section .about-body {
    flex-direction: column;
  }
  .about-section .about-body .about-left {
    display: block;
    width: 100%;
    height: unset;
  }
  .about-section .about-body .about-left .product-name {
    gap: 13px;
  }
  .about-section .about-body .about-left .product-name .pixel-img img, .about-section .about-body .about-left .product-name .power-img img {
    height: 35px;
  }
  .about-section .about-body .about-left .product-name .pixel-img img {
    width: 133px;
  }
  .about-section .about-body .about-left .product-name .power-img img {
    width: 176px;
  }
  .about-section .about-body .about-left .about-left-content {
    gap: 18px;
    width: 100%;
    padding-top: 55px;
    padding-bottom: 40px;
  }
  .about-section .about-body .about-right {
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
  }
  .about-section .about-body .about-right .about-para {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .about-section .about-body .about-right .about-points {
    width: 100%;
  }
  .about-section .about-body .about-right .about-points .point span {
    font-size: 16px;
    line-height: 27px;
  }
  .about-section .absolute-bg-img {
    height: 100%;
  }
  .about-section .absolute-bg-img img {
    height: 804px;
  }
  .counts-section .light-images .left-light {
    left: 0;
  }
  .counts-section .light-images .left-light img {
    height: 50%;
    width: 50%;
  }
  .counts-section .light-images .right-light {
    right: 0;
  }
  .counts-section .light-images .right-light img {
    position: relative;
    right: -45px;
    height: 50%;
    width: 50%;
  }
  .counts-section .count-head span {
    font-size: 22px;
    line-height: 29px;
    font-weight: 400;
    width: 100%;
  }
  .counts-section .counts-body {
    flex-direction: column;
    gap: 40px;
  }
  .counts-section .counts-body .count-box .counts {
    font-size: 32px;
    line-height: 54px;
    font-weight: 400;
  }
  .counts-section .counts-body .count-box .count-name {
    font-size: 22px;
    font-weight: 400;
  }
  .counts-section .count-text-wrap {
    padding-top: 60px;
  }
  .services-section .services-content {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  .services-section .services-content .service-head {
    margin-bottom: 23px;
    font-size: 24px;
    line-height: 36px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row {
    flex-direction: column;
    gap: 32px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card {
    width: 100%;
    height: 340px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text .card-head {
    font-size: 18px;
    line-height: 27px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text .card-para {
    font-size: 13px;
    line-height: 19px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-one, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-three, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-four, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-five, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-six, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-nine {
    height: 52%;
  }
  .gallery-section {
    background: url("../assests/gallery-bg-mb.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .gallery-section .scene {
    border: none;
  }
  .gallery-section .gallery-text {
    padding-top: 24px;
    padding-bottom: 0;
  }
  .gallery-section .gallery-text .gallery-head {
    font-size: 24px;
    line-height: 36px;
  }
  .gallery-section .gallery-text .gallery-para {
    width: 100%;
    font-size: 14px;
    line-height: 21px;
  }
  .gallery-section .container {
    padding: 0rem;
  }
  .gallery-section .gallery-corousel {
    padding-bottom: 48px;
  }
  .blog-section {
    padding-top: 24px;
    padding-bottom: 35px;
  }
  .blog-section .blog-content .blog-head {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 23px;
  }
  .blog-section .blog-content .blog-cards-wrap {
    flex-direction: column;
    padding-bottom: 0;
    gap: 32px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card {
    width: 100%;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text .card-head {
    font-size: 18px;
    line-height: 27px;
  }
  .form-section {
    height: 100%;
    background: none;
  }
  .form-section .form-content {
    flex-direction: column;
  }
  .form-section .form-left {
    display: none;
  }
  .form-section .form-right {
    background: url("../assests/form-bg.png");
    padding: 24px 16px 34px;
    width: 100%;
  }
  .form-section .form-right .form-container-parent {
    padding: 32px 16px;
  }
  .form-section .form-right .form-container-parent .input-field input, .form-section .form-right .form-container-parent .input-field textarea {
    font-size: 14px;
    height: 32px;
    border-radius: 5px;
  }
  .form-section .form-right .form-container-parent .input-field textarea {
    min-height: 62px;
  }
  .form-section .form-right .form-container-parent .input-field input::-moz-placeholder {
    font-size: 12px;
    line-height: 24px;
  }
  .form-section .form-right .form-container-parent .input-field input::placeholder {
    font-size: 12px;
    line-height: 24px;
  }
  .form-section .form-right .form-container-parent .input-field textarea::-moz-placeholder {
    font-size: 12px;
    line-height: 24px;
  }
  .form-section .form-right .form-container-parent .input-field textarea::placeholder {
    font-size: 12px;
    line-height: 24px;
  }
  .form-section .form-right .form-container-parent .submit-btn {
    height: 32px;
  }
  .form-section .form-right .form-container-parent .submit-btn button {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 24px;
  }
  .footer-section .footer-content .footer-top {
    flex-direction: column;
    gap: 16px;
  }
  .footer-section .footer-content .footer-top ul {
    flex-direction: column;
    gap: 18px;
  }
  .footer-section .footer-content .footer-top ul a li {
    font-size: 14px;
    line-height: 21px;
  }
  .footer-section .footer-content .divider {
    margin-top: 19px;
  }
  .footer-section .footer-content .footer-bottom {
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px 0;
    gap: 8px;
  }
  .footer-section .footer-content .footer-bottom .ft-bottom-left {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
  }
  .lg-screen {
    display: none !important;
  }
  .sm-screen {
    display: flex !important;
    justify-content: space-around;
    width: 100%;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  .about-section .absolute-bg-img img {
    height: 650px;
  }
  .services-section {
    padding: 0 20%;
  }
  .services-section .services-content {
    padding-bottom: 40px;
  }
  .services-section .services-content .service-cards-wrap {
    gap: 32px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row {
    align-items: center;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card {
    height: 400px;
    width: 75%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-img {
    height: 40%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-img {
    height: 60%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text {
    padding: 16px;
  }
  .blog-section {
    padding-bottom: 40px;
  }
  .blog-section .blog-content .blog-cards-wrap a {
    display: flex;
    justify-content: center;
  }
  .blog-section .blog-content .blog-cards-wrap a .blog-card {
    height: 400px;
    width: 75%;
  }
  .blog-section .blog-content .blog-cards-wrap a .blog-card .card-text-nine {
    padding-right: unset;
    height: 50%;
  }
  .blog-section .blog-content .blog-cards-wrap a .blog-card .card-text {
    padding: 20px;
  }
  .blog-section .blog-content .blog-cards-wrap a .blog-card .card-text-img {
    height: 40%;
  }
  .form-section .form-right {
    padding: 30px 16px 30px;
  }
}
@media (min-width: 340px) and (max-width: 399px) {
  .about-section .absolute-bg-img img {
    height: 870px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-img {
    height: 40%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-two, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-seven, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-eight {
    height: 57%;
  }
}
@media (min-width: 280px) and (max-width: 339px) {
  .about-section .absolute-bg-img img {
    height: 950px;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-img {
    height: 40%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-img {
    height: 60%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-two, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-seven, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-eight, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-four, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-five {
    height: 62%;
  }
  .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-one, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-three, .services-section .services-content .service-cards-wrap .service-cards-row .service-card .card-text-nine {
    height: 65%;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card {
    height: 340px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text {
    padding-right: unset;
    padding: 16px;
    gap: 12px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text .card-head {
    font-size: 16px;
    line-height: 24px;
  }
  .blog-section .blog-content .blog-cards-wrap .blog-card .card-text .card-para {
    font-size: 14px;
    line-height: 18px;
  }
}/*# sourceMappingURL=style.css.map */