/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}


.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}


/*--------------------------------------------------------------
# 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: #B31010;
}

p {
  font-size: 18px;
}

h1 {
  font-size: 42px;
  font-family: AlbertSans-Bold;
  color: #fff;
}

h2,
h3,
h4,
h5,
h6 {
  color: #B31010;
  font-family: AlbertSans-Bold;
}

h2 {
  font-size: 38px;
}

@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);
}

/*--------------------------------------------------------------
# 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;
}
.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;
}

.tab-content > .active {
    opacity: 1;
}

@media screen and (max-width:767.98px) {
   
    header>.navbar {
        padding-top: 0;
    }
    .navbar-main.middle-box-menu {
        padding-left: 10px;
        padding-right: 10px;
    }
    .navbar-toggle>i {
        color: #fff;
    }
    .navbar-nav {
        flex-direction: column;
    }
    
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;

}

.navmenu ul {
  margin: 0;
}

.navmenu ul li {
  list-style: none;
}

.navmenu ul li a {
  background-color: #C62127;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 8px;
}

.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: #C62127;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(#B31010), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-banner {
  height: 100%;
}

#hero {
    margin-top: 105px;
}

#hero .slick-list {
  height: 100%;
}

.hero-main {
  height: 100%;
}

#hero .hero-image {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.hero .container {
  position: relative;
}

.hero-title {
  position: absolute;
  top: 30%;
  bottom: 0;
  left: 8%;
  right: 0;
}

.hero-title h1 {
  margin: 0;
}

.hero-title p {
  color: #fff;
  font-size: 24px;
  line-height: normal;
}

.btn-get-started {
  color: #fff;
  background: #C62127;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 8px;
  text-transform: uppercase;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

#security {
  background-color: #F2F2F2;
}

.why-box h3 {
  color: #000000 !important;
  min-height: 70px;
  margin-top: 15px;
}

.why-box {
  padding: 0 25px;
}

.note {
  background-color: #ECECEC;
  width: fit-content;
  margin: 0 auto;
}

.note p {
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
}

#project {
  background-color: #000000;
}

.project-img img {
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;

}

#project .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #aaa;
  /* Inactive dot color */
  opacity: 1;
  /* transition: background-color 0.3s; */
}

#project .slick-dots li.slick-active button {
  background-color: #fff;
  /* Active dot color */
  width: 16px;
  height: 16px;
}

#project .slick-dots li button:before {
  color: unset;
}

#project .slick-dots li.slick-active button:before {
  color: unset;
}

#project .slick-dots {
  bottom: -50px;
}

#a1from {
  border-bottom: 15px solid #B31010;
}

.prestigious-box {
  width: 100%;
  margin: 20px;
}

.fix-interested-button {
  position: fixed;
  right: -8px;
  top: 50%;
  transform: translate(100%, 100%) rotate(-90deg);
  transform-origin: left 40px;
}

.btn-get-stky {
  background-color: #df1529;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 10px 10px 0 0;
  text-transform: uppercase;
}

.left-arrow,
.right-arrow {
  cursor: pointer;
}

.information {
  background-color: #000000;
}

.phoneicon img {
  max-width: 50px;
}

.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;
}

/* features */

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #fff;
  padding-left: 40px;
}

.nav-pills .nav-link.active p {
  color: #B31010;
   font-style: italic;
}

.nav-link p {
  font-size: 21px;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-align: left;
}

.feature-title h4 {
    font-size: 24px;
}

.card-box-title h5 {    
    font-size: 22px;
}

#features .row {
  padding: 30px;
  background-color: #F2F2F2;
  border-radius: 20px;
}

.tab-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 18px;
}

.nav-pills .nav-link {
  position: relative;
  color: #b30000;
  font-weight: bold;
 
  padding: 20px 20px;
  /* space for line */
  display: flex;
  border-bottom: 1px solid #CDCDCD;
  border-radius: unset;
}

/* Show red line only when tab is active */
.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: #b30000;
  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;
  margin-top: 15px;
}
/* --------------------------- */
.project p{
  color: #fff;
  margin-top: 10px;
  font-size: 22px;
}
.project img{
  border-radius: 10px;
}
.card-box-title h5{
  color: #000 !important;
}
.yoursecurity-main {
  width: 70%;
  margin: 0 auto;
}
.welcome {
    margin-bottom: 30px;
}


/* iPad Pro */
@media screen and (max-width: 1199.98px) {
  #hero {
    height: 100%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 34px;
  }

  p,
  a {
    font-size: 20px;
    line-height: 1.3;

  }

  .left-arrow {
    bottom: 13%;
    left: 46%;
  }

  .right-arrow {
    bottom: 13%;
    right: 45%;
  }



}

/* iPad Mini */
@media screen and (max-width: 991.98px) {
  #hero {
    height: 100%;
  }

  .iconnumber {
    margin-top: 10px;
  }
  .hero-title{
    top: 15%;
  }
  .hero-title p{
    font-size: 20px;
  }
  p,
  a {
    font-size: 16px;
  }

  h2 {
    font-size: 30px;
  }

  section {
    padding: 30px 0;
  }
 #features .row{
    padding: 10px;
  }
  .nav-pills .nav-link{
    padding: 15px 10px;
  }

}

/* Mobile */
@media screen and (max-width:767.98px) {
  #hero {
    height: 100%;
  }
  
  .hero-title{
    top:4%;
  }
  .hero-title p{
    font-size: 20px;
  }
  .navmenu ul li a {
    padding: 8px;
  }

  h1 {
    font-size: 30px;
  }

  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: 60px;
  }

  .card {
    margin-top: 10px;
  }
  .about h2{
    margin-top: 15px;
  }
  .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;
  }

  .btn-get-started {
    padding: 10px 20px;
    font-size: 16px;
  }

  .navmenu ul li a {
    padding: 10px 15px;
    font-size: 16px;
  }

  .btn-get-stky {
    padding: 10px 20px;
    font-size: 16px;
  }

  .why-box h3 {
    min-height: min-content;
  }

}