
.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #000000;
  background-color: var(--background-color);
  font-family: 'AlbertSans-Regular';
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

span {
  color: #45133A;
}

p {
  font-size: 18px;
  color: #FFFFFF;
}

h1 {
  font-size: 37px;
  font-family: 'AlbertSans-Bold';
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
}

h2,
h3,
h4,
h5,
h6 {
  color: #FFFFFF;
  font-family: 'AlbertSans-Bold';
  font-weight: 700;

}

h2 {
  font-size: 44px;
}

@font-face {
  font-family: AlbertSans-Regular;
  src: url(../font/AlbertSans-Regular.ttf);
}

@font-face {
  font-family: AlbertSans-Medium;
  src: url(../font/AlbertSans-Medium.ttf);
}

@font-face {
  font-family: AlbertSans-Bold;
  src: url(../font/AlbertSans-Bold.ttf);
}

@font-face {
  font-family: AlbertSans-ExtraBold;
  src: url(../font/AlbertSans-ExtraBold.ttf);
}

.installation-img img {
    height: 700px;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.navbar-mini {
    width: 100%;
}
.navbar-mini .navbar-left, .navbar-mini .navbar-right {
    flex-direction: unset;
}
.navbar-main.middle-box-menu {
    width: 100%;
}
.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    display: block;
}
.navbar-nav {
    flex-direction: unset;
}
a.dropdown-toggle span {
    display: none;
}
.dropdown-menu {
    position: absolute !important;
}
header>.navbar {
    padding-bottom: 0;
    padding-top: 0;
}
.hero-image img {
    width: 100%;
    height: 100%;
}

i.icon, .fullpage-menu .active i, .datepicker-panel > ul > li.picked, .datepicker-panel > ul > li.picked:hover, .navbar-nav.subheader-bootstrap .sub, footer h4, .box-menu-inner .icon-box i, .caption-bottom p, div.adv-img .caption-bottom p, .mi-menu li .fa, .advs-box-top-icon.boxed .icon, .fullpage-arrow.arrow-circle .arrow i, .accordion-list .list-group-item > a i .adv-img h2, .main-color, .adv-img-classic-box h2, .mega-menu .fa-ul .fa-li, .adv-circle.adv-circle-center i, .mi-menu a > .fa, li.panel-item .fa-li, header .social-group a i, .icon-menu .navbar-collapse ul.nav i, .side-menu i, .side-menu i, .side-menu ul a i, .bs-menu li:hover > a, .bs-menu li.active > a, .hamburger-button:hover, .img-box.adv-circle i, .advs-box-side .icon, .advs-box-side-icon i, .tag-row i, .tag-row a i.circle, .social-group i.circle, .social-button i.circle, .niche-box-testimonails h5, .pricing-table .pricing-price, .pricing-table h3, .title-icon i, i, .fullpage-menu.white li.active a i, ul.list-texts li b, .timeline > li > .timeline-label h4, .footer-center .footer-title, .accordion-list .list-group-item > a.active, header .social-group a i.fa, footer p, footer li {
    color: #fafafa !important;
}

.btn-group.social-group i {
    color: #bf1b23 !important;
}

.copy-row {
    background: #313131;
    padding: 10px;
    font-weight: 600;
    text-align: center;
}

.copy-row .copy-text {
    font-size: 14px;
    color: #d0d0d0;
    margin: 0;
}

@media screen and (max-width:767.98px) {
   
    header>.navbar {
        padding-top: 0;
    }
    .navbar-main.middle-box-menu {
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0;
    }
    .navbar-toggle>i {
        color: #fff;
    }
    .navbar-nav {
        flex-direction: column;
    }
    
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color:#1B1B1B;
}

.navmenu ul {
  margin: 0;
}

.navmenu ul li {
  list-style: none;
}

.navmenu ul li a {
  background-color: #B31010;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 8px;
  font-size: 20px;
}

.header .logo img {
  max-height: 72px;
  padding: 10px 0px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #B31010;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(#8E2167), transparent 20%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.bi-arrow-up-short::before{
  color: #fff;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* hero  */

.hero-section {
  position: relative;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  background-color:#1B1B1B;
}

.hero-background img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-overlay {
    margin-top: -163px;
    margin-left: 60px;
    margin-right: 60px;
  position: relative;
  background-color: #2F2F2F;
  margin-bottom: 50px;
}


@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

#installation{
  background-color: #2F2F2F;
}
#executed,
#perimeter,
#comprehensive,
#installation-second,
#features{
  background-color: #1B1B1B;
}

#installation-second{
  background-image:url(../img/Img_BG.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


#intrusion {
  background-color: #000000;
}


.sub-title{
  text-transform: none;
}

#yoursecurity{
  background-image: url('../img/Brochure BG.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.btn-get-started{
  background-color: #B31010;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 20px;

}

.installation-content{
  padding-right: 50px;
}



.right-arrow-executed {
  position: absolute;
  top: -13%;
  right: 0;
}
.left-arrow-executed {
  position: absolute;
  right: 4%;
  top: -13%;
}


.icons img {
  width: 28px;
  margin-right: 10px;
}


.prestigious-box {
  width: 100%;
  margin: 10px;
}

.card-custom {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.red-button-mobile a{
  color: #fff;
  background-color: #B31010;
  padding: 10px 20px;
  margin-left: -17px;
}

.blue-button-mobile a{
  color: #fff;
  background-color: #374395;
  padding: 10px 20px;
  margin-left: -17px;

}

.green-button-mobile a{
  color: #fff;
  background-color: #008735;
  padding: 10px 20px;
  margin-left: -17px;

}

.yellow-button-mobile a{
  color: #fff;
  background-color: #E3AD15;
  padding: 10px 20px;
  margin-left: -17px;

}

/* Make sure slider container is relative for dot positioning */
.insta-main {
  position: relative;
}



#executed .card-custom {
  margin: 15px;
}

#detection .card-custom {
  margin: 15px;
}

#perimeter .card-custom {
  margin: 15px;
}

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

.card{
  border: none;
}

.card-img-overlay {
  position: absolute;
  top: 79%;
  left: 0;
  width: 100%;
  background: #000000B2;
  color: white;
  padding: 20px;
  transition: 0.8s ease;
  border-radius: unset;
}

.card-title {
  margin-bottom: 10px;
  opacity: 1;
}

.card-text {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.8s ease;
}


.card-img-overlay:hover .card-title {
  margin-top: 20px;
}

.card-custom:hover .card-img-overlay {
  top: 0%;
  transition: 0.8s ease;
}

.card-custom:hover .card-text {
  opacity: 1;
  transform: translateY(0);
}

.information {
  background-color: #C62127;
}

#unicopromise{
  position: relative;
}

.unicopromise{
  background-color: #FFFFFF;
}

.unicopromise h2{
  color: #B31010;
}

.red-button{
  position: absolute;
    top: 30%;
    bottom: 0%;
    left: 13%;
}

.red-button::after{
  content: '';
  position: absolute;
  top: 5%;
  left: 96%;
  height: 1px;
  width: 133px;
  background-color: #B31010;
  margin-left: 5px;
}

.red-button::before {
  content: '';
  position: absolute;
  top: 5%;
  left: calc(92% + 150px);
  height: 118px;
  width: 1px;
  background-color:#B31010;
}

.blue-button{
  position: absolute;
  top: 30%;
  right: 14%;
  bottom: 0;
}

.blue-button::after {
  content: '';
    position: absolute;
    top: 6%;
    right: 96%;
    width: 48px;
    height: 1px;
    background-color: #2e3e94;
    margin-right: 5px;
}

.blue-button::before {
  content: '';
  position: absolute;
  top: 11%;
  right: calc(100% + 40px);
  height: 56px;
  width: 1px;
  background-color: #2e3e94;
  transform: translateY(-50%);
}

.green-button{
  position: absolute;
  bottom: 20%;
  left: 13%;
}

.green-button::after {
  content: '';
    position: absolute;
    top: 43%;
    left: 98%;
    height: 1px;
    width: 94px;
    background-color: #008735;
    margin-left: 5px;
}

.yellow-button{
  position: absolute;
    bottom: 20%;
    right: 13%;
}

.yellow-button::before {
  content: '';
  position: absolute;
  bottom: 50%;
  right: 126%;
  height: 128px;
  width: 1px;
  background-color: #E3AD15;
}


.yellow-button::after {
  content: '';
    position: absolute;
    top: calc(-14% + 39px);
    left: -26%;
    width: 84px;
    height: 1px;
    background-color: #E3AD15;
}

.red-button a{
  background-color: #B31010;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.red-button a:hover{
  text-decoration: underline;
}

.blue-button a:hover{
  text-decoration: underline;
}

.green-button a:hover{
  text-decoration: underline;
}

.yellow-button a:hover{
  text-decoration: underline;
}

.blue-button a{
  background-color: #374395;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.green-button a{
  background-color: #008735;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.yellow-button a{
  background-color: #E3AD15;
  padding: 10px 20px;
  margin-left: -17px;
  color: #fff;
}

.number {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex;
  padding-top: 10px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: -23px;
}

.number a {
  margin: 0;
  padding: 30px 0px;
  color: #ffffff !important;
}

.fix-interested-button {
  position: fixed;
  right: -8px;
  top: 50%;
  transform: translate(100%, 100%) rotate(-90deg);
  transform-origin: left 40px;
}

.btn-get-stky {
  background-color: #B31010;
  text-transform: uppercase;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 10px 10px 0 0;
}

.yoursecurity-main {
  width: 80%;
  margin: 0 auto;
}
.phoneicon img{
  max-width: 50px;
}

/* features */

#features .nav-pills .nav-link.active,
#features .nav-pills .show>.nav-link {
  background-color: #B31010;
  padding-left: 40px;
}

#features .nav-pills .nav-link.active p {
  color: #fff;
   font-style: italic;
}

#features .nav-link p {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
#features .f-new-tab{
  background: #2F2F2F;
  padding: 30px;
  margin-right: -5px;
}

#features p{
  color: #000000;
}

#features .tab-content {
  background-color: #fff;
  padding: 30px;
  margin-left: -5px;
  height: 100%;
}

#features .nav-pills .nav-link {
  position: relative;
  color: #b30000;
  font-weight: bold;
 
  padding: 20px 20px;
  /* space for line */
  display: flex;
  border-bottom: 1px solid #404040;
  border-radius: unset;
}

.feature-main h3{
  color: #B31010;
}

/* Show red line only when tab is active */
#features .nav-pills .nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  /* line length */
  height: 3px;
  /* line thickness */
  background-color: #fff;
  margin-left: 10px;
}
.feature-title{
  gap: 10px;
}
.feature-title h4{
  margin: 0;
}
.features-title-box p{
  color: #504f4f;
}
.feature-benefits{
  gap: 10px;
}
.benefits{
  font-family:'AlbertSans-Bold';
  font-size: 22px;
}
/* --------------------------- */
#entrance-control,
#detection{
  background: #000000;
}
.entrance-control-main p{
  color: #000000;
}
.entrance-control-main {
  width: 100%;
}
.entrance-control-box {
  padding: 10px;
}
.box-body{
  background-color: #fff;
  padding: 10px;
  border-radius: 0 0 10px 10px;
  border: 1px solid #BFBFBF;
  border-top: none;
}
.box-body h5,h6{
  color: #000000;
}
.entrance-control-box img{
  border-radius: 10px 10px 0 0;
}
.entrance-control .box-body{
  min-height: 240px;
}
.diffret-control-main .box-body{
  min-height: 200px;
}
#diffret-control{
  background-color: #2f2f2f;
}
.entrance-control-box p{
  color: #000000;
}
#n-diffret-control{
  background: #1b1b1b;
}

.yoursecurity-title {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-bottom: 30px;
}

.yoursecurity-title::after {
  content: "";
  position: absolute;
  bottom: -10px; /* distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #B31010;
  border-radius: 2px;
}

#trust.trust-section {
  background-color: #1c1c1c;
}


#trust .trust-feature-box .col-md-2 {
  font-size: 14px;
  color: #fff;
}

#trust .trust-feature-box {
    background: #2b2b2b;
    border-radius: 6px;
    margin-top: -70px;
    color: #fff !important;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
}

#trust span{
  color: #fff !important;
}

#trust .trust-btn {
  background-color: #e60000;
  border: none;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 4px;
}
#trust .trust-btn:hover {
  background-color: #cc0000;
}

.insta-main-img {
    position: relative;
}

.insta-main-img video {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 271px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}
.insta-main .slick-dots{
  bottom: 14px !important;
}
.slick-dots li button:before{
  font-size: 10px;
}
.insta-main .slick-dots li button:before{
  color: #C62127 !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.hero-overlay .content-box {
    padding-bottom: 30px !important;
}

.fade {
    opacity: 2;
}
.feature-main {
    background: #fff !important;
}
.section-title h2 {
    color: #fff !important;
}
h5.product-title {
    font-size: 20px;
    margin-top: 10px;
}
h6.product-subtitle.mb-2 {
    font-size: 18px;
}
h5.card-title {
    font-size: 20px;
}
.feature-main h3 {
    font-size: 28px;
}

/* Screen size 75% */
@media screen and (max-width: 2150px) and (min-width: 1949px){
  .red-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 96%;
    height: 1px;
    width: 133px;
    background-color: #B31010;
    margin-left: 5px;
  }
  .red-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 125px);
    height: 118px;
    width: 1px;
    background-color: #B31010;
  }
  .red-button {
    position: absolute;
    top: 20%;
    bottom: unset;
    left: 22%;
  }
  .green-button {
    position: absolute;
    bottom: 23%;
    left: 23%;
  }
  .blue-button {
    position: absolute;
    top: 18%;
    right: 23%;
    bottom: 0;
  }
  .yellow-button {
    position: absolute;
    bottom: 23%;
    right: 22%;
  }
  
}

/* Screen size 80% */
@media screen and (max-width: 1950px) and (min-width: 1750px){

.red-button::before {
  top: 5%;
  left: calc(87% + 150px);
  height: 132px;
}

.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 11%;
  height: 58px;
}

.green-button::after {
  width: 105px;
}

.yellow-button::after {
  left: -9%;
  width: 34px;
}

.yellow-button::before {
  right: 109%;
  height: 132px;
}

.yellow-button {
  right: 23%;
}

.red-button {
  left: 20%;
}

.blue-button {
  right: 22%;
}

.green-button {
  left: 20%;
}
}
/* Screen size 90% */
@media screen and (max-width: 1750px) and (min-width: 1550px){

  .red-button::before {
    top: 5%;
    left: calc(87% + 150px);
    height: 132px;
}
.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 11%;
        height: 58px;
}
.green-button::after {
  width: 105px;
}
.yellow-button::after {
  left: -9%;
  width: 34px;
}
.yellow-button::before {
  right: 109%;
  height: 128px;
}

.yellow-button {
  right: 20%;
}
.red-button {
  left: 16%;
}
.blue-button {
  right: 18%;
}
.green-button {
  left: 16%;
}
}

/* Screen size 125% */
@media screen and (max-width: 1500px) {
  .red-button::before {
    top: 5%;
    left: calc(87% + 150px);
    height: 96px;
}
.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 9%;
  height: 35px;
}
.green-button::after {
  width: 47px;
}
.yellow-button::after {
  left: -9%;
  width: 34px;
}
.yellow-button::before {
  right: 109%;
  height: 128px;
}

.yellow-button {
  right: 8%;
}
.red-button {
  left: 8%;
}
.blue-button {
  right: 9%;
  bottom: 0;
}
.green-button {
  left: 8%;
}

}

/* Screen size 110% */
@media only screen and (max-width: 1399px) and (min-width: 1300px) {
  .red-button::before {
    top: 5%;
    left: calc(87% + 150px);
    height: 97px;
}
.red-button::after{
  width: 119px;
}

.blue-button::before {
  top: 9%;
  height: 35px;
}
.green-button::after {
  width: 47px;
}
.yellow-button::after {
  left: -9%;
  width: 34px;
}
.yellow-button::before {
  right: 109%;
  height: 128px;
}

.yellow-button {
  right: 13%;
}
.red-button {
  left: 13%;
}
.blue-button {
  right: 14%;
}
.green-button {
  left: 13%;
}
}

/* iPad Pro */
@media screen and (max-width: 1199.98px) {
  .hero {
    min-height: 30vh;
  }

  .hero p {
    padding-top: 0;
    font-size: 22px;
    line-height: normal;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 34px;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  .card-img-overlay {
    padding: 10px;
  }


  p,
  a {
    font-size: 20px;
    line-height: 1.3;

  }

  .left-arrow {
    bottom: 13%;
    left: 46%;
  }

  .right-arrow {
    bottom: 13%;
    right: 45%;
  }

  .about_blog p {
    padding-bottom: 0px;
  }


}

/* iPad Mini */
@media screen and (max-width: 991.98px) {

  .hero h1 {
    font-size: 32px;
  }

  .hero {
    min-height: 40vh;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  .welcome::before {
    padding-left: 10px;
  }

  .card-img-overlay {
    padding: 10px;
  }

  p,
  a {
    font-size: 16px;
  }

  .left-arrow-executed {
    right: 6%;
  }

  .hero p {
    font-size: 20px;
    line-height: normal;
  }

  h2 {
    font-size: 30px;
  }


  section {
    padding: 30px 0;
  }

  .hero h3 {
    font-size: 30px;
  }

  .icontext {
    margin-bottom: 10px;
  }

  .iconnumber {
    margin-top: 10px;
  }

.yoursecurity-main {
  width: 70%;
}
.hero-overlay{
    margin-left: 20px;
    margin-right: 20px;
}
#features .f-new-tab{
      padding: 10px;
}
#trust .trust-feature-box{
  margin-top: -100px;
}

}

/* Mobile */
@media screen and (max-width:767.98px) {

  .navmenu ul li a,
  .btn-get-stky {
    padding: 10px 15px;
    font-size: 16px;
  }
  
  .installation-img img {
    height: unset;
    object-fit: unset;
  }
  
  .navbar-default .navbar-brand {
    margin-left: 20px;
  }

  section {
    padding: 30px 0;
  }

  h2 {
    font-size: 24px;
  }


  h3 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  p,
  a {
    font-size: 15px;
  }


  .header .logo img {
    max-height: 50px;
  }

  .card {
    margin-top: 10px;
  }

  .card-custom:hover .card-img-overlay {
    top: 0%;
  }

  .iconnumber {
    margin-top: 10px;
  }


  .yoursecurity-main {
    width: 100%;
  }

  .assessment-main {
    width: 100%;
  }

  .welcome {
    margin: 10px 0;
    padding: 10px 0;
  }

  .welcome::before {
    padding-left: 0px;
  }

  .zcwf_title h2 {
    font-size: 24px !important;
  }

  .zcwf_lblLeft .zcwf_col_fld input[type=text] {

    font-size: 15px !important;
  }

  .zcwf_lblLeft .zcwf_col_fld_slt {
    font-size: 15px !important;
  }

  .left-arrow-executed {
    right: 11%;
    top: -13%;
  }
 .installation-content{
  padding: 15px;
 }
 .hero-overlay {
    margin-top: -163px;
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    background-color: #2F2F2F;
    margin-bottom: 50px;
  }


.entrance-control-box img{
  height: 190px;
}
.insta-main-img video{
  height: 190px;
}
#features .accordion-button {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        padding:20px;
    }
    #features .accordion-button:not(.collapsed) {
        color: #B31010;
        background-color: #fff;
        font-style: italic;
        box-shadow: none;
    }
    #features .accordion-body {
        background: #fff;
        padding: 0px 20px 20px 20px;
        border-radius: 10px;
    }
    #features .feature-benefits {
        gap: 10px;
        margin-top: 10px;
    }
    #features .benefits {
        font-size: 18px;
        font-weight: 600;
        margin-top: 10px;
    }
}












