@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.home-secA {
  background: var(--gray);
  height: 60vh;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home-secA {
    height: auto;
  }
}
@media only screen and (max-width: 675px) {
  .home-secA {
    height: auto;
  }
}
.home-secA::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 980px;
  height: 100%;
  background: url("../../images/vector/bg_shape.svg") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 1366px) {
  .home-secA::before {
    width: 800px;
  }
}
@media only screen and (max-width: 1280px) {
  .home-secA::before {
    width: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA::before {
    width: 680px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA::before {
    width: 100%;
    opacity: 0.6;
  }
}
.home-secA .container {
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .home-secA .container {
    height: auto;
  }
}
.home-secA .grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 545px 1fr;
  align-items: center;
  gap: 50px;
  height: 100%;
}
@media only screen and (max-width: 540px) {
  .home-secA .grid > * {
    text-align: center;
    gap: 0;
  }
}
.home-secA .grid .item-content h1 {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .home-secA .grid .item-content {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .grid .item-content {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .grid .item-content .btn {
    margin: 0 auto;
    display: inline-flex;
  }
}
.home-secA .grid .item-media {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-secA .grid .item-media li {
  position: absolute;
  width: 340px;
  height: auto;
}
.home-secA .grid .item-media li img {
  width: 100%;
}
.home-secA .grid .item-media li.cctv {
  top: 0;
  left: 50%;
}
.home-secA .grid .item-media li.cpu {
  bottom: 10%;
  left: 15%;
}
.home-secA .grid .item-media li.laptop {
  bottom: 10%;
  right: -34%;
  width: 450px;
}
@media only screen and (max-width: 1366px) {
  .home-secA .grid {
    grid-template-columns: 480px 1fr;
    gap: 40px;
  }
  .home-secA .grid .item-media li {
    width: 240px;
  }
  .home-secA .grid .item-media li.laptop {
    right: 0%;
    width: 300px;
  }
}
@media only screen and (max-width: 1280px) {
  .home-secA .grid {
    grid-template-columns: 440px 1fr;
    gap: 35px;
  }
  .home-secA .grid .item-media li {
    width: 220px;
  }
  .home-secA .grid .item-media li.laptop {
    right: 0;
    width: 320px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secA .grid {
    grid-template-columns: 330px 1fr;
    gap: 30px;
  }
  .home-secA .grid .item-media {
    min-height: 260px;
  }
  .home-secA .grid .item-media li {
    width: 180px;
  }
  .home-secA .grid .item-media li.cctv {
    top: 0;
    left: 45%;
  }
  .home-secA .grid .item-media li.cpu {
    bottom: 0;
    left: 0;
  }
  .home-secA .grid .item-media li.laptop {
    bottom: 0;
    right: 0;
    width: 260px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secA .grid {
    grid-template-columns: 260px 1fr;
    gap: 20px;
  }
  .home-secA .grid .item-media {
    min-height: 220px;
  }
  .home-secA .grid .item-media li {
    width: 150px;
  }
  .home-secA .grid .item-media li.cctv {
    left: 40%;
  }
  .home-secA .grid .item-media li.cpu {
    bottom: 0;
  }
  .home-secA .grid .item-media li.laptop {
    bottom: 0;
    right: 0;
    width: 210px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secA .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-secA .grid .item-media {
    width: 100%;
    min-height: 180px;
    margin: 0 auto;
  }
  .home-secA .grid .item-media li {
    width: 44%;
    max-width: 180px;
  }
  .home-secA .grid .item-media li.cctv {
    display: none;
  }
  .home-secA .grid .item-media li.cpu {
    top: auto;
    bottom: 5%;
    left: 0;
  }
  .home-secA .grid .item-media li.laptop {
    top: auto;
    bottom: 5%;
    left: auto;
    right: 0;
    width: 54%;
    max-width: 220px;
  }
}
@media only screen and (max-width: 400px) {
  .home-secA .grid .item-media {
    min-height: 150px;
  }
  .home-secA .grid .item-media li {
    width: 42%;
  }
  .home-secA .grid .item-media li.laptop {
    width: 52%;
  }
}

.home-secB {
  padding: 70px 0 0;
}
@media only screen and (max-width: 1280px) {
  .home-secB {
    padding: 60px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secB {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB {
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB {
    padding: 30px 0 0;
  }
}
.home-secB .logoSlider .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
  gap: 50px;
}
.home-secB .logoSlider .swiper-wrapper .swiper-slide {
  width: auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-secB .logoSlider .swiper-wrapper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 991px) {
  .home-secB .logoSlider .swiper-wrapper {
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secB .logoSlider .swiper-wrapper {
    gap: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secB .logoSlider .swiper-wrapper {
    gap: 30px;
  }
  .home-secB .logoSlider .swiper-wrapper .swiper-slide {
    height: 75px;
  }
}

.home-secC {
  padding: 70px 0;
}
@media only screen and (max-width: 1280px) {
  .home-secC {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC {
    padding: 30px 0;
  }
}
.home-secC .heading {
  margin-bottom: 50px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .home-secC .heading {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .heading {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .heading {
    margin-bottom: 24px;
  }
}
.home-secC .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .home-secC .grid {
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.home-secC .grid .card {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  border: 1px solid var(--border);
  gap: 24px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1280px) {
  .home-secC .grid .card {
    gap: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .grid .card {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .grid .card {
    gap: 12px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid .card {
    gap: 12px;
  }
}
.home-secC .grid .card .card-img {
  width: 185px;
  height: 165px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 1366px) {
  .home-secC .grid .card .card-img {
    width: 160px;
    height: 145px;
  }
}
@media only screen and (max-width: 1280px) {
  .home-secC .grid .card .card-img {
    width: 145px;
    height: 130px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secC .grid .card .card-img {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .home-secC .grid .card .card-img {
    width: 100%;
    height: 160px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secC .grid .card .card-img {
    width: 100%;
    height: 150px;
  }
}
.home-secC .grid .card .card-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.home-secC .grid .card .card-content p {
  margin: 10px 0 25px;
}
.home-secC .grid .card:hover {
  border: 1px solid var(--primary);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
}
.home-secC .grid .card:hover .card-content a {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.home-secD {
  background: var(--gray);
  padding: 70px 0;
}
@media only screen and (max-width: 1280px) {
  .home-secD {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secD {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD {
    padding: 40px 0;
  }
}
.home-secD .heading {
  text-align: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.home-secD .heading h3 {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .home-secD .heading {
    max-width: 340px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .heading {
    max-width: 100%;
  }
}
.home-secD .thirdSilder {
  margin-top: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-secD .thirdSilder {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .thirdSilder {
    margin-top: 2rem;
  }
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card {
  position: relative;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card {
    height: 340px;
  }
}
@media only screen and (max-width: 991px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card {
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card {
    height: 280px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card {
    height: 300px;
  }
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .card-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .card-img h5 {
  position: absolute;
  left: 24px;
  bottom: 34px;
  color: var(--white);
}
@media only screen and (max-width: 768px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .card-img h5 {
    left: 16px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .card-img h5 {
    left: 16px;
    bottom: 16px;
  }
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: -100%;
  background: var(--white);
  padding: 30px;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content {
    padding: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content {
    padding: 20px;
  }
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content .nums {
  color: var(--primary);
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content p {
  margin: 12px 0 24px;
}
@media only screen and (max-width: 991px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content p {
    margin: 10px 0 18px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secD .thirdSilder .swiper-wrapper .swiper-slide .card .hover-content p {
    margin: 8px 0 14px;
  }
}
.home-secD .thirdSilder .swiper-wrapper .swiper-slide .card:hover .hover-content {
  bottom: 0;
}

.home-secE {
  padding: 70px 0 0;
}
@media only screen and (max-width: 1280px) {
  .home-secE {
    padding: 60px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secE {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secE {
    padding: 40px 0 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE {
    padding: 40px 0 0;
  }
}
.home-secE .heading {
  text-align: center;
}
.home-secE .swiper-wrap {
  position: relative;
  margin-top: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .swiper-wrap {
    margin-top: 2rem;
  }
}
.home-secE .swiper-wrap .swiper-group {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
@media only screen and (max-width: 675px) {
  .home-secE .swiper-wrap .swiper-group {
    display: none;
  }
}
.home-secE .swiper-wrap .swiper-group button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  background: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.home-secE .swiper-wrap .swiper-group button.swiper-button-lock, .home-secE .swiper-wrap .swiper-group button.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap .swiper-group button {
    width: 35px;
    height: 35px;
  }
}
.home-secE .swiper-wrap .swiper-group button svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 991px) {
  .home-secE .swiper-wrap .swiper-group button svg {
    width: 16px;
    height: 16px;
  }
}
.home-secE .swiper-wrap .swiper-group button svg path {
  fill: var(--primary);
}
.home-secE .swiper-wrap .swiper-group button:hover {
  opacity: 0.8;
}
.home-secE .swiper-wrap .swiper-group .thirdSilder-next {
  transform: rotate(270deg);
}
.home-secE .swiper-wrap .swiper-group .thirdSilder-prev {
  transform: rotate(90deg);
}
.home-secE .swiper-wrap .thirdSilder {
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  .home-secE .swiper-wrap .thirdSilder {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secE .swiper-wrap .thirdSilder {
    margin: 0;
  }
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.home-secE .swiper-wrap .thirdSilder .swiper-wrapper .card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-secF {
  padding: 70px 0;
}
@media only screen and (max-width: 1280px) {
  .home-secF {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .home-secF {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF {
    padding: 40px 0;
  }
}
.home-secF .heading {
  text-align: center;
}
.home-secF .trustedSlider {
  margin-top: 4rem;
}
@media only screen and (max-width: 991px) {
  .home-secF .trustedSlider {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF .trustedSlider {
    margin-top: 2.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .trustedSlider {
    margin-top: 2rem;
  }
}
.home-secF .trustedSlider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.home-secF .trustedSlider .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .home-secF .trustedSlider .swiper-wrapper .swiper-slide img {
    max-width: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .home-secF .trustedSlider .swiper-wrapper .swiper-slide img {
    max-width: 100px;
  }
}
@media only screen and (max-width: 540px) {
  .home-secF .trustedSlider .swiper-wrapper .swiper-slide img {
    max-width: 80px;
  }
}/*# sourceMappingURL=home.css.map */