@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --accent: #896845;
  --accent-bright: #D15C3C;
  --ass: #777777;
  --white: #ffffff;
  --black: #000000;
}

body .landing_section {
  width: 100%;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation-name: bgChange;
  animation-direction: alternate-reverse;
  animation-duration: 30s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-play-state: running;
  animation-timing-function: ease-in-out;
}
@keyframes bgChange {
  0% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7411764706), transparent), url(../Assets/LandingParallax/ACS.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  25% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7411764706), transparent), url(../Assets/LandingParallax/cctv.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  50% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7411764706), transparent), url(../Assets/LandingParallax/fss.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  75% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7411764706), transparent), url(../Assets/LandingParallax/rfidCard.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  100% {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7411764706), transparent), url(../Assets/LandingParallax/ACS.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
body .landing_section .container {
  width: 64%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
body .landing_section .container .header {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  position: relative;
}
body .landing_section .container .header::before {
  content: "";
  width: 100px;
  height: 4px;
  background: #daa164;
  position: absolute;
  top: 103%;
}
body .landing_section .container .sub_header {
  width: 80%;
  font-size: 1.3rem;
  color: var(--white);
}
body .products {
  width: 100%;
  min-height: 100vh;
  padding: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .products .header_texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .products .header_texts .header {
  font-size: 2rem;
  position: relative;
}
body .products .header_texts .header::before {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-bright));
  position: absolute;
  top: 0%;
}
body .products .header_texts .justifier {
  text-align: center;
}
body .products .listing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
body .products .listing .box {
  width: 230px;
  height: 230px;
  border-radius: 0.3rem;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4666666667);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
body .products .listing .box .name {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6509803922);
  -webkit-backdrop-filter: blur(0.3rem);
          backdrop-filter: blur(0.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: absolute;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s linear;
}
body .products .listing .box:hover .name {
  opacity: 1;
  transform: scale(1);
}
body .products .listing .box:nth-child(1) {
  background: url(../Assets/landingPageServiceImages/Access-Control-System.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .products .listing .box:nth-child(2) {
  background: url(../Assets/landingPageServiceImages/Biometric.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .products .listing .box:nth-child(3) {
  background: url(../Assets/landingPageServiceImages/Cards.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .products .listing .box:nth-child(4) {
  background: url(../Assets/landingPageServiceImages/CCTV-Cameras.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .products .listing .box:nth-child(5) {
  background: url(../Assets/landingPageServiceImages/Fire-Alarm-System.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .products .listing .box:nth-child(6) {
  background: url(../Assets/landingPageServiceImages/Locks-&-Accessories.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .kf_sec {
  width: 100%;
  min-height: 40vh;
  padding: 40px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
body .kf_sec .header_texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .kf_sec .header_texts .header {
  font-size: 2rem;
  position: relative;
}
body .kf_sec .header_texts .header::before {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--accent-bright));
  position: absolute;
  top: 0%;
}
body .kf_sec .header_texts .justifier {
  text-align: center;
}
body .kf_sec .container {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
body .kf_sec .container .content {
  width: 270px;
  height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #f3f3f3;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4666666667);
  border-top-right-radius: 0.7rem;
  border-bottom-left-radius: 0.7rem;
}
body .kf_sec .container .content img {
  width: 130px;
}
body .kf_sec .container .content p {
  text-transform: capitalize;
  color: var(--ass);
}
body .eye_catcher {
  width: 100%;
  height: calc(100vh - 120px);
  background: var(--black);
  padding: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  overflow: hidden;
}
body .eye_catcher .text {
  width: 50%;
  height: 100%;
  padding: 70px 0;
  overflow-y: scroll;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4rem;
  position: absolute;
  left: 160px;
}
body .eye_catcher .text .row .big {
  font-size: 7rem;
  font-weight: 600;
  line-height: 1;
}
body .eye_catcher .text .row .small {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.2rem;
  font-weight: 300;
}
body .eye_catcher ::-webkit-scrollbar {
  display: none;
}
body .eye_catcher .graphics video {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}

@media screen and (max-width: 999px) {
  body .landing_section {
    min-height: 70vh;
  }
  body .landing_section .container {
    width: 90%;
  }
  body .landing_section .container .header {
    font-size: 3.6rem;
    line-height: 1.3;
  }
  body .landing_section .container .sub_header {
    width: 100%;
  }
  body .products {
    padding: 70px 30px;
  }
  body .products .listing {
    gap: 1rem;
  }
  body .products .listing .box {
    width: 360px;
    height: 360px;
  }
  body .kf_sec {
    padding: 40px 30px;
  }
  body .kf_sec .container {
    padding: 30px 0;
    gap: 1rem;
  }
  body .kf_sec .container .content {
    width: 160px;
    height: 160px;
    padding: 10px;
  }
  body .kf_sec .container .content img {
    width: 80px;
  }
  body .eye_catcher .text {
    width: 100%;
    height: 50%;
    padding: 30px 0;
    overflow-y: scroll;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
    position: absolute;
    top: 50%;
    left: 10%;
  }
  body .eye_catcher .text .row .big {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
  }
  body .eye_catcher ::-webkit-scrollbar {
    display: none;
  }
  body .eye_catcher .graphics video {
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 1;
  }
}/*# sourceMappingURL=landing-styles.css.map */